From 738d98006f92a81db4333afe756fc26e7a403f69 Mon Sep 17 00:00:00 2001 From: Peter Kruse Date: Sat, 26 Oct 2024 11:51:31 +0200 Subject: [PATCH] data update --- simc_support/game_data/Instance.py | 14 ++++++++++++++ simc_support/game_data/Season.py | 1 + simc_support/game_data/Trinket.py | 1 + .../data_files/trees/death_knight_blood.json | 2 +- .../data_files/trees/death_knight_frost.json | 2 +- .../data_files/trees/demon_hunter_havoc.json | 2 +- .../data_files/trees/demon_hunter_vengeance.json | 2 +- .../game_data/data_files/trees/druid_balance.json | 2 +- .../game_data/data_files/trees/druid_feral.json | 2 +- .../game_data/data_files/trees/druid_guardian.json | 2 +- .../data_files/trees/druid_restoration.json | 2 +- .../data_files/trees/evoker_augmentation.json | 2 +- .../data_files/trees/evoker_devastation.json | 2 +- .../data_files/trees/evoker_preservation.json | 2 +- .../data_files/trees/hunter_beast_mastery.json | 2 +- .../data_files/trees/hunter_marksmanship.json | 2 +- .../data_files/trees/hunter_survival.json | 2 +- .../game_data/data_files/trees/mage_arcane.json | 2 +- .../game_data/data_files/trees/mage_fire.json | 2 +- .../game_data/data_files/trees/mage_frost.json | 2 +- .../data_files/trees/monk_brewmaster.json | 2 +- .../data_files/trees/monk_mistweaver.json | 2 +- .../data_files/trees/monk_windwalker.json | 2 +- .../game_data/data_files/trees/paladin_holy.json | 2 +- .../data_files/trees/paladin_protection.json | 2 +- .../data_files/trees/paladin_retribution.json | 2 +- .../data_files/trees/priest_discipline.json | 2 +- .../game_data/data_files/trees/priest_holy.json | 2 +- .../trees/raw_raidbots_talent_information.json | 2 +- .../data_files/trees/rogue_assassination.json | 2 +- .../game_data/data_files/trees/rogue_outlaw.json | 2 +- .../game_data/data_files/trees/rogue_subtlety.json | 2 +- .../data_files/trees/shaman_elemental.json | 2 +- .../data_files/trees/shaman_enhancement.json | 2 +- .../data_files/trees/shaman_restoration.json | 2 +- .../data_files/trees/warlock_affliction.json | 2 +- .../game_data/data_files/trees/warrior_arms.json | 2 +- .../game_data/data_files/trees/warrior_fury.json | 2 +- .../data_files/trees/warrior_protection.json | 2 +- simc_support/game_data/data_files/trinkets.json | 2 +- simc_support/update/trinkets.py | 4 ++-- 41 files changed, 55 insertions(+), 39 deletions(-) diff --git a/simc_support/game_data/Instance.py b/simc_support/game_data/Instance.py index dc80196..35ff45f 100644 --- a/simc_support/game_data/Instance.py +++ b/simc_support/game_data/Instance.py @@ -78,6 +78,9 @@ class Instance(int, enum.Enum): AMIRDRASSIL_THE_DREAMS_HOPE = 1207 NERUBAR_PALACE = 1273 + ## event raids + BLACKROCK_DEPTHS_EVENT = 1301 + class RaidTier(int, enum.Enum): UNKNOWN = enum.auto() @@ -104,6 +107,9 @@ def get_raid_tier_from_encounter_id(encounter_id: int) -> "RaidTier": # Nerub-ar Palace 2607, # Ulgrax the Devourer 2611, # The Bloodbound Horror + # Blackrock Depths (event) + 2663, # Lord Roccor + 2664, # Bael'Gar ): return RaidTier.LOW elif encounter_id in ( @@ -118,6 +124,9 @@ def get_raid_tier_from_encounter_id(encounter_id: int) -> "RaidTier": # Nerub-ar Palace 2599, # Sikran, Captain of the Sureki 2609, # Rasha'nan + # Blackrock Depths (event) + 2666, # Golem Lord Argelmach + 2667, # The Seven ): return RaidTier.MID elif encounter_id in ( @@ -133,6 +142,9 @@ def get_raid_tier_from_encounter_id(encounter_id: int) -> "RaidTier": # Nerub-ar Palace 2612, # Broodtwister Ovi'nax 2601, # Nexus-Princess Ky'veza + # Blackrock Depths (event) + 2669, # Ambassador Flamelash + 2668, # General Angerforge ): return RaidTier.HIGH elif encounter_id in ( @@ -145,6 +157,8 @@ def get_raid_tier_from_encounter_id(encounter_id: int) -> "RaidTier": # Nerub-ar Palace 2608, # The Silken Court 2602, # Queen Ansurek + # Blackrock Depths (event) + 2670, # Emperor Dagran Thaurissan ): return RaidTier.HIGHER return RaidTier.UNKNOWN diff --git a/simc_support/game_data/Season.py b/simc_support/game_data/Season.py index cee9974..641c72e 100644 --- a/simc_support/game_data/Season.py +++ b/simc_support/game_data/Season.py @@ -98,6 +98,7 @@ def get_seasons_from_instance( Instance.GRIM_BATOL, # raids Instance.NERUBAR_PALACE, + Instance.BLACKROCK_DEPTHS_EVENT, ) if instance in tww_s1_instances: diff --git a/simc_support/game_data/Trinket.py b/simc_support/game_data/Trinket.py index 8bb827a..5b22114 100644 --- a/simc_support/game_data/Trinket.py +++ b/simc_support/game_data/Trinket.py @@ -548,6 +548,7 @@ def raid_tier(self) -> typing.Optional[RaidTier]: Instance.ABERUS_THE_SHADOWED_CRUCIBLE, Instance.AMIRDRASSIL_THE_DREAMS_HOPE, Instance.NERUBAR_PALACE, + Instance.BLACKROCK_DEPTHS_EVENT, ): return None diff --git a/simc_support/game_data/data_files/trees/death_knight_blood.json b/simc_support/game_data/data_files/trees/death_knight_blood.json index 0734a88..306191c 100644 --- a/simc_support/game_data/data_files/trees/death_knight_blood.json +++ b/simc_support/game_data/data_files/trees/death_knight_blood.json @@ -1 +1 @@ -{"traitTreeId": 750, "className": "Death Knight", "classId": 6, "specName": "Blood", "specId": 250, "classNodes": [{"id": 76081, "name": "Icebound Fortitude", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76045], "prev": [], "entries": [{"id": 96210, "definitionId": 101212, "maxRanks": 1, "type": "active", "name": "Icebound Fortitude", "spellId": 48792, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 76071, "name": "Death Strike", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76067], "prev": [], "entries": [{"id": 96200, "definitionId": 101202, "maxRanks": 1, "type": "active", "name": "Death Strike", "spellId": 49998, "icon": "spell_deathknight_butcher2", "index": 100}], "freeNode": true}, {"id": 76072, "name": "Raise Dead", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76073], "prev": [], "entries": [{"id": 96201, "definitionId": 101203, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46585, "icon": "inv_pet_ghoul", "index": 100}]}, {"id": 76045, "name": "Runic Attenuation", "type": "single", "posX": 3000, "posY": 1800, "maxRanks": 1, "next": [76084, 76044, 76046], "prev": [76081], "entries": [{"id": 96173, "definitionId": 101175, "maxRanks": 1, "type": "passive", "name": "Runic Attenuation", "spellId": 207104, "icon": "boss_odunrunes_blue", "index": 100}]}, {"id": 76067, "name": "Improved Death Strike", "type": "single", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [76046, 76074, 76069], "prev": [76071], "entries": [{"id": 96196, "definitionId": 101198, "maxRanks": 1, "type": "passive", "name": "Improved Death Strike", "spellId": 374277, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76073, "name": "Cleaving Strikes", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [76069, 76059, 76060], "prev": [76072], "entries": [{"id": 96202, "definitionId": 101204, "maxRanks": 1, "type": "passive", "name": "Cleaving Strikes", "spellId": 316916, "icon": "spell_shadow_deathanddecay", "index": 100}]}, {"id": 76084, "name": "Mind Freeze", "type": "single", "posX": 2400, "posY": 2400, "maxRanks": 1, "next": [76083, 101708], "prev": [76045], "entries": [{"id": 96213, "definitionId": 101215, "maxRanks": 1, "type": "active", "name": "Mind Freeze", "spellId": 47528, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 76044, "name": "Blinding Sleet", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [101708], "prev": [76045], "entries": [{"id": 96172, "definitionId": 101174, "maxRanks": 1, "type": "active", "name": "Blinding Sleet", "spellId": 207167, "icon": "spell_frost_chillingblast", "index": 100}]}, {"id": 76046, "name": "Anti-Magic Barrier", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [101708, 76066, 76068], "prev": [76045, 76067], "entries": [{"id": 96174, "definitionId": 101176, "maxRanks": 1, "type": "passive", "name": "Anti-Magic Barrier", "spellId": 205727, "icon": "spell_shadow_antimagicshell", "index": 100}]}, {"id": 76074, "name": "March of Darkness", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [76068], "prev": [76067], "entries": [{"id": 96203, "definitionId": 101205, "maxRanks": 1, "type": "passive", "name": "March of Darkness", "spellId": 391546, "icon": "ability_argus_deathfog", "index": 100}]}, {"id": 76069, "name": "Unholy Ground", "type": "single", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [76068, 76075, 76061], "prev": [76073, 76067], "entries": [{"id": 96198, "definitionId": 101200, "maxRanks": 1, "type": "passive", "name": "Unholy Ground", "spellId": 374265, "icon": "ability_deathknight_desecratedground", "index": 100}]}, {"id": 76059, "name": "Control Undead", "type": "single", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [76061], "prev": [76073], "entries": [{"id": 96188, "definitionId": 101190, "maxRanks": 1, "type": "active", "name": "Control Undead", "spellId": 111673, "icon": "inv_misc_bone_skull_01", "index": 100}]}, {"id": 76060, "name": "Enfeeble / Sacrificial Pact", "type": "choice", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [76061, 102006], "prev": [76073], "entries": [{"id": 96189, "definitionId": 101191, "maxRanks": 1, "type": "passive", "name": "Enfeeble", "spellId": 392566, "icon": "ability_creature_poison_01", "index": 100}, {"id": 125608, "definitionId": 130440, "maxRanks": 1, "type": "active", "name": "Sacrificial Pact", "spellId": 327574, "icon": "spell_shadow_corpseexplode", "index": 200}]}, {"id": 76083, "name": "Coldthirst", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084], "entries": [{"id": 96212, "definitionId": 101214, "maxRanks": 1, "type": "passive", "name": "Coldthirst", "spellId": 378848, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 101708, "name": "Proliferating Chill", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084, 76046, 76044], "entries": [{"id": 125606, "definitionId": 130438, "maxRanks": 1, "type": "passive", "name": "Proliferating Chill", "spellId": 373930, "icon": "spell_frost_chainsofice", "index": 100}]}, {"id": 76066, "name": "Permafrost", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [76085, 76065], "prev": [76046], "entries": [{"id": 96195, "definitionId": 101197, "maxRanks": 1, "type": "passive", "name": "Permafrost", "spellId": 207200, "icon": "achievement_zone_frostfire", "index": 100}]}, {"id": 76068, "name": "Veteran of the Third War", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [76065], "prev": [76069, 76046, 76074], "entries": [{"id": 96197, "definitionId": 101199, "maxRanks": 1, "type": "passive", "name": "Veteran of the Third War", "spellId": 48263, "icon": "spell_misc_warsongfocus", "index": 100}]}, {"id": 76075, "name": "Death Pact", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [76065, 76076], "prev": [76069], "entries": [{"id": 96204, "definitionId": 101206, "maxRanks": 1, "type": "active", "name": "Death Pact", "spellId": 48743, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 76061, "name": "Brittle", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [76076], "prev": [76060, 76069, 76059], "entries": [{"id": 96190, "definitionId": 101192, "maxRanks": 1, "type": "passive", "name": "Brittle", "spellId": 374504, "icon": "ability_bosskilrogg_deaththroes", "index": 100}]}, {"id": 102006, "name": "Death's Reach", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [76076, 76063], "prev": [76060], "entries": [{"id": 126014, "definitionId": 130845, "maxRanks": 1, "type": "passive", "name": "Death's Reach", "spellId": 276079, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 76085, "name": "Icy Talons", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76086, 76052, 76064], "prev": [76066, 101708, 76083], "entries": [{"id": 96214, "definitionId": 101216, "maxRanks": 1, "type": "passive", "name": "Icy Talons", "spellId": 194878, "icon": "spell_deathknight_icytalons", "index": 100}]}, {"id": 76065, "name": "Anti-Magic Zone", "type": "single", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76064, 76048, 76077], "prev": [76068, 76075, 76066], "entries": [{"id": 96194, "definitionId": 101196, "maxRanks": 1, "type": "active", "name": "Anti-Magic Zone", "spellId": 51052, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76076, "name": "Unholy Bond", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76077, 76057, 76063], "prev": [76075, 102006, 76061], "entries": [{"id": 96205, "definitionId": 101207, "maxRanks": 1, "type": "passive", "name": "Unholy Bond", "spellId": 374261, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 76086, "name": "Ice Prison", "type": "single", "posX": 2400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96215, "definitionId": 101217, "maxRanks": 1, "type": "passive", "name": "Ice Prison", "spellId": 454786, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76052, "name": "Gloom Ward", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96180, "definitionId": 101182, "maxRanks": 1, "type": "passive", "name": "Gloom Ward", "spellId": 391571, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 76064, "name": "Asphyxiate", "type": "single", "posX": 3600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087, 76078], "prev": [76085, 76065], "entries": [{"id": 96193, "definitionId": 101195, "maxRanks": 1, "type": "active", "name": "Asphyxiate", "spellId": 221562, "icon": "ability_deathknight_asphixiate", "index": 100}]}, {"id": 76048, "name": "Assimilation", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078], "prev": [76065], "entries": [{"id": 96176, "definitionId": 101178, "maxRanks": 1, "type": "passive", "name": "Assimilation", "spellId": 374383, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76077, "name": "Wraith Walk", "type": "single", "posX": 4800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078, 76058], "prev": [76065, 76076], "entries": [{"id": 96206, "definitionId": 101208, "maxRanks": 1, "type": "active", "name": "Wraith Walk", "spellId": 212552, "icon": "inv_helm_plate_raiddeathknight_p_01", "index": 100}]}, {"id": 76057, "name": "Grip of the Dead", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076], "entries": [{"id": 96186, "definitionId": 101188, "maxRanks": 1, "type": "passive", "name": "Grip of the Dead", "spellId": 273952, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 76063, "name": "Soul Reaper", "type": "single", "posX": 6000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076, 102006], "entries": [{"id": 96192, "definitionId": 101194, "maxRanks": 1, "type": "active", "name": "Soul Reaper", "spellId": 343294, "icon": "ability_deathknight_soulreaper", "index": 100}]}, {"id": 76087, "name": "Suppression", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76088, 76051], "prev": [76052, 76086, 76064], "entries": [{"id": 96216, "definitionId": 101218, "maxRanks": 1, "type": "passive", "name": "Suppression", "spellId": 374049, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 76078, "name": "Blood Scent", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76051, 76055], "prev": [76048, 76064, 76077], "entries": [{"id": 96207, "definitionId": 101209, "maxRanks": 1, "type": "passive", "name": "Blood Scent", "spellId": 374030, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 76058, "name": "Unholy Endurance", "type": "single", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76055, 76056], "prev": [76057, 76063, 76077], "entries": [{"id": 96187, "definitionId": 101189, "maxRanks": 1, "type": "passive", "name": "Unholy Endurance", "spellId": 389682, "icon": "spell_deathknight_subversion", "index": 100}]}, {"id": 76088, "name": "Osmosis", "type": "single", "posX": 2400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079], "prev": [76087], "entries": [{"id": 96217, "definitionId": 101219, "maxRanks": 1, "type": "passive", "name": "Osmosis", "spellId": 454835, "icon": "spell_nature_rune", "index": 100}]}, {"id": 76051, "name": "Insidious Chill", "type": "single", "posX": 3600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079, 76080], "prev": [76078, 76087], "entries": [{"id": 96179, "definitionId": 101181, "maxRanks": 1, "type": "passive", "name": "Insidious Chill", "spellId": 391566, "icon": "ability_racial_wardoftheloafrost", "index": 100}]}, {"id": 76055, "name": "Runic Protection", "type": "single", "posX": 4800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76080, 76054], "prev": [76058, 76078], "entries": [{"id": 96183, "definitionId": 101185, "maxRanks": 1, "type": "passive", "name": "Runic Protection", "spellId": 454788, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 76056, "name": "Blood Draw", "type": "single", "posX": 6000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76054], "prev": [76058], "entries": [{"id": 96184, "definitionId": 101186, "maxRanks": 1, "type": "passive", "name": "Blood Draw", "spellId": 374598, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 76079, "name": "Rune Mastery", "type": "single", "posX": 3000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102008, 76050], "prev": [76051, 76088], "entries": [{"id": 96208, "definitionId": 101210, "maxRanks": 2, "type": "passive", "name": "Rune Mastery", "spellId": 374574, "icon": "ability_deathknight_hungeringruneblade", "index": 100}]}, {"id": 76080, "name": "Subduing Grasp", "type": "single", "posX": 4200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76050, 76049, 102007], "prev": [76055, 76051], "entries": [{"id": 96209, "definitionId": 101211, "maxRanks": 1, "type": "passive", "name": "Subduing Grasp", "spellId": 454822, "icon": "spell_nature_elementalshields", "index": 100}]}, {"id": 76054, "name": "Will of the Necropolis", "type": "single", "posX": 5400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102007, 76053], "prev": [76055, 76056], "entries": [{"id": 96182, "definitionId": 101184, "maxRanks": 2, "type": "passive", "name": "Will of the Necropolis", "spellId": 206967, "icon": "achievement_boss_kelthuzad_01", "index": 100}]}, {"id": 102008, "name": "Null Magic", "type": "single", "posX": 2400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76079], "entries": [{"id": 126016, "definitionId": 130847, "maxRanks": 1, "type": "passive", "name": "Null Magic", "spellId": 454842, "icon": "spell_shadow_detectinvisibility", "index": 100}]}, {"id": 76050, "name": "Unyielding Will", "type": "single", "posX": 3600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76079], "entries": [{"id": 96178, "definitionId": 101180, "maxRanks": 1, "type": "passive", "name": "Unyielding Will", "spellId": 457574, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 76049, "name": "Abomination Limb", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080], "entries": [{"id": 96177, "definitionId": 101179, "maxRanks": 1, "type": "active", "name": "Abomination Limb", "spellId": 383269, "icon": "ability_maldraxxus_deathknight", "index": 100}]}, {"id": 102007, "name": "Death's Echo", "type": "single", "posX": 4800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76054], "entries": [{"id": 126015, "definitionId": 130846, "maxRanks": 1, "type": "passive", "name": "Death's Echo", "spellId": 356367, "icon": "inv_fabric_ebonweave", "index": 100}]}, {"id": 76053, "name": "Vestigial Shell", "type": "single", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76054], "entries": [{"id": 96181, "definitionId": 101183, "maxRanks": 1, "type": "passive", "name": "Vestigial Shell", "spellId": 454851, "icon": "ability_domination_rune12", "index": 100}]}], "specNodes": [{"id": 76169, "name": "Heart Strike", "type": "single", "posX": 12600, "posY": 1200, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "next": [76168, 76170], "prev": [], "entries": [{"id": 96304, "definitionId": 101306, "maxRanks": 1, "type": "active", "name": "Heart Strike", "spellId": 206930, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 76168, "name": "Marrowrend", "type": "single", "posX": 12000, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76173], "prev": [76169], "entries": [{"id": 96303, "definitionId": 101305, "maxRanks": 1, "type": "active", "name": "Marrowrend", "spellId": 195182, "icon": "ability_deathknight_marrowrend", "index": 100}]}, {"id": 76170, "name": "Blood Boil", "type": "single", "posX": 13200, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76171], "prev": [76169], "entries": [{"id": 96305, "definitionId": 101307, "maxRanks": 1, "type": "active", "name": "Blood Boil", "spellId": 50842, "icon": "spell_deathknight_bloodboil", "index": 100}]}, {"id": 76173, "name": "Vampiric Blood", "type": "single", "posX": 12000, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76144, 76140], "prev": [76168], "entries": [{"id": 96308, "definitionId": 101310, "maxRanks": 1, "type": "active", "name": "Vampiric Blood", "spellId": 55233, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 76171, "name": "Bone Collector", "type": "single", "posX": 13200, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76126, 76146], "prev": [76170], "entries": [{"id": 96306, "definitionId": 101308, "maxRanks": 1, "type": "passive", "name": "Bone Collector", "spellId": 458572, "icon": "ability_deathknight_boneshield", "index": 100}]}, {"id": 76144, "name": "Ossuary", "type": "single", "posX": 11400, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76145, 76135, 76167], "prev": [76173], "entries": [{"id": 96277, "definitionId": 101279, "maxRanks": 1, "type": "passive", "name": "Ossuary", "spellId": 219786, "icon": "ability_deathknight_brittlebones", "index": 100}]}, {"id": 76140, "name": "Improved Vampiric Blood", "type": "single", "posX": 12000, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76167, 76138], "prev": [76173], "entries": [{"id": 96272, "definitionId": 101274, "maxRanks": 2, "type": "passive", "name": "Improved Vampiric Blood", "spellId": 317133, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 76126, "name": "Improved Heart Strike", "type": "single", "posX": 13200, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76138, 76137], "prev": [76171], "entries": [{"id": 96257, "definitionId": 101259, "maxRanks": 2, "type": "passive", "name": "Improved Heart Strike", "spellId": 374717, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 76146, "name": "Ossified Vitriol", "type": "single", "posX": 13800, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76137, 76124, 76147], "prev": [76171], "entries": [{"id": 96279, "definitionId": 101281, "maxRanks": 1, "type": "passive", "name": "Ossified Vitriol", "spellId": 458744, "icon": "ability_warlock_cremation", "index": 100}]}, {"id": 76145, "name": "Leeching Strike", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76042, 76039], "prev": [76144], "entries": [{"id": 96278, "definitionId": 101280, "maxRanks": 1, "type": "passive", "name": "Leeching Strike", "spellId": 377629, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 76135, "name": "Heartbreaker", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76042, 76142], "prev": [76144], "entries": [{"id": 96266, "definitionId": 101268, "maxRanks": 1, "type": "passive", "name": "Heartbreaker", "spellId": 221536, "icon": "spell_deathknight_deathstrike", "index": 100}]}, {"id": 76167, "name": "Foul Bulwark", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76142], "prev": [76140, 76144], "entries": [{"id": 96302, "definitionId": 101304, "maxRanks": 1, "type": "passive", "name": "Foul Bulwark", "spellId": 206974, "icon": "inv_armor_shield_naxxramas_d_02", "index": 100}]}, {"id": 76138, "name": "Dancing Rune Weapon", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76142, 76129, 76166], "prev": [76140, 76126], "entries": [{"id": 96269, "definitionId": 101271, "maxRanks": 1, "type": "active", "name": "Dancing Rune Weapon", "spellId": 49028, "icon": "inv_sword_07", "index": 100}]}, {"id": 76137, "name": "Hemostasis", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76166], "prev": [76126, 76146], "entries": [{"id": 96268, "definitionId": 101270, "maxRanks": 1, "type": "passive", "name": "Hemostasis", "spellId": 273946, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 76124, "name": "Perseverance of the Ebon Blade", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76166, 76141], "prev": [76146], "entries": [{"id": 96255, "definitionId": 101257, "maxRanks": 1, "type": "passive", "name": "Perseverance of the Ebon Blade", "spellId": 374747, "icon": "ability_deathknight_sanguinfortitude", "index": 100}]}, {"id": 76147, "name": "Relish in Blood", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76141, 76174], "prev": [76146], "entries": [{"id": 96280, "definitionId": 101282, "maxRanks": 1, "type": "passive", "name": "Relish in Blood", "spellId": 317610, "icon": "ability_deathknight_roilingblood", "index": 100}]}, {"id": 76042, "name": "Gorefiend's Grasp", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76039, 76165], "prev": [76145, 76135], "entries": [{"id": 96170, "definitionId": 101172, "maxRanks": 1, "type": "active", "name": "Gorefiend's Grasp", "spellId": 108199, "icon": "ability_deathknight_aoedeathgrip", "index": 100}]}, {"id": 76142, "name": "Improved Bone Shield", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76143], "prev": [76135, 76167, 76138], "entries": [{"id": 96274, "definitionId": 101276, "maxRanks": 1, "type": "passive", "name": "Improved Bone Shield", "spellId": 374715, "icon": "ability_deathknight_marrowrend", "index": 100}]}, {"id": 76129, "name": "Insatiable Blade", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76143, 76130, 76043], "prev": [76138], "entries": [{"id": 96260, "definitionId": 101262, "maxRanks": 1, "type": "passive", "name": "Insatiable Blade", "spellId": 377637, "icon": "70_inscription_vantus_rune_nightmare", "index": 100}]}, {"id": 76166, "name": "Rune Tap", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76043, 76038], "prev": [76138, 76137, 76124], "entries": [{"id": 96301, "definitionId": 101303, "maxRanks": 1, "type": "active", "name": "Rune Tap", "spellId": 194679, "icon": "spell_deathknight_runetap", "index": 100}]}, {"id": 76141, "name": "Rapid Decomposition", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76038, 76174], "prev": [76147, 76124], "entries": [{"id": 96273, "definitionId": 101275, "maxRanks": 1, "type": "passive", "name": "Rapid Decomposition", "spellId": 194662, "icon": "ability_deathknight_deathsiphon2", "index": 100}]}, {"id": 76039, "name": "Blood Tap", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102243], "prev": [76042, 76145], "entries": [{"id": 96167, "definitionId": 101169, "maxRanks": 1, "type": "active", "name": "Blood Tap", "spellId": 221699, "icon": "spell_deathknight_bloodtap", "index": 100}]}, {"id": 76165, "name": "Tightening Grasp", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102243, 76139], "prev": [76042], "entries": [{"id": 96300, "definitionId": 101302, "maxRanks": 1, "type": "passive", "name": "Tightening Grasp", "spellId": 206970, "icon": "spell_shadow_coneofsilence", "index": 100}]}, {"id": 76143, "name": "Reinforced Bones", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76139, 102244], "prev": [76142, 76129], "entries": [{"id": 96276, "definitionId": 101278, "maxRanks": 1, "type": "passive", "name": "Reinforced Bones", "spellId": 374737, "icon": "ability_rogue_deadenednerves", "index": 100}]}, {"id": 76130, "name": "Everlasting Bond", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102244], "prev": [76129], "entries": [{"id": 96261, "definitionId": 101263, "maxRanks": 1, "type": "passive", "name": "Everlasting Bond", "spellId": 377668, "icon": "inv_sword_07", "index": 100}]}, {"id": 76043, "name": "Voracious", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102244, 102242], "prev": [76129, 76166], "entries": [{"id": 96171, "definitionId": 101173, "maxRanks": 1, "type": "passive", "name": "Voracious", "spellId": 273953, "icon": "ability_ironmaidens_whirlofblood", "index": 100}]}, {"id": 76038, "name": "Coagulopathy", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102242, 76041], "prev": [76141, 76166], "entries": [{"id": 96166, "definitionId": 101168, "maxRanks": 1, "type": "passive", "name": "Coagulopathy", "spellId": 391477, "icon": "ability_skeer_bloodletting", "index": 100}]}, {"id": 76174, "name": "Bloodworms", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76041], "prev": [76141, 76147], "entries": [{"id": 96309, "definitionId": 101311, "maxRanks": 1, "type": "passive", "name": "Bloodworms", "spellId": 195679, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 102243, "name": "Blood Feast", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76128], "prev": [76039, 76165], "entries": [{"id": 126298, "definitionId": 131124, "maxRanks": 1, "type": "passive", "name": "Blood Feast", "spellId": 391386, "icon": "spell_deathknight_vendetta", "index": 100}]}, {"id": 76139, "name": "Mark of Blood / Tombstone", "type": "choice", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76128, 76131], "prev": [76143, 76165], "entries": [{"id": 96271, "definitionId": 101273, "maxRanks": 1, "type": "active", "name": "Mark of Blood", "spellId": 206940, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 96270, "definitionId": 101272, "maxRanks": 1, "type": "active", "name": "Tombstone", "spellId": 219809, "icon": "ability_fiegndead", "index": 200}]}, {"id": 102244, "name": "Blooddrinker / Consumption", "type": "choice", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76131, 102245, 76172], "prev": [76043, 76130, 76143], "entries": [{"id": 126300, "definitionId": 131126, "maxRanks": 1, "type": "active", "name": "Blooddrinker", "spellId": 206931, "icon": "ability_animusdraw", "index": 100}, {"id": 126299, "definitionId": 131125, "maxRanks": 1, "type": "active", "name": "Consumption", "spellId": 274156, "icon": "inv_axe_2h_artifactmaw_d_01", "index": 200}]}, {"id": 102242, "name": "Bloodied Blade", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76172, 76132], "prev": [76043, 76038], "entries": [{"id": 126296, "definitionId": 131122, "maxRanks": 1, "type": "passive", "name": "Bloodied Blade", "spellId": 458753, "icon": "inv_sword_2h_ebonblade_b_01_red", "index": 100}]}, {"id": 76041, "name": "Sanguine Ground", "type": "single", "posX": 14400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76132], "prev": [76038, 76174], "entries": [{"id": 96169, "definitionId": 101171, "maxRanks": 1, "type": "passive", "name": "Sanguine Ground", "spellId": 391458, "icon": "inv_artifact_corruptedbloodofzakajz", "index": 100}]}, {"id": 76128, "name": "Shattering Bone", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76127], "prev": [76139, 102243], "entries": [{"id": 96259, "definitionId": 101261, "maxRanks": 1, "type": "passive", "name": "Shattering Bone", "spellId": 377640, "icon": "ability_deathknight_shatteringbone", "index": 100}]}, {"id": 76131, "name": "Heartrend", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76133], "prev": [76139, 102244], "entries": [{"id": 96262, "definitionId": 101264, "maxRanks": 1, "type": "passive", "name": "Heartrend", "spellId": 377655, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 102245, "name": "Carnage", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102244], "entries": [{"id": 126301, "definitionId": 131127, "maxRanks": 1, "type": "passive", "name": "Carnage", "spellId": 458752, "icon": "sha_ability_warrior_bloodnova_nightmare", "index": 100}]}, {"id": 76172, "name": "Iron Heart", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76125], "prev": [102242, 102244], "entries": [{"id": 96307, "definitionId": 101309, "maxRanks": 1, "type": "passive", "name": "Iron Heart", "spellId": 391395, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 76132, "name": "Red Thirst", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76040], "prev": [102242, 76041], "entries": [{"id": 96263, "definitionId": 101265, "maxRanks": 1, "type": "passive", "name": "Red Thirst", "spellId": 205723, "icon": "spell_deathknight_bloodpresence", "index": 100}]}, {"id": 76127, "name": "Bonestorm", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76128], "entries": [{"id": 96258, "definitionId": 101260, "maxRanks": 1, "type": "active", "name": "Bonestorm", "spellId": 194844, "icon": "achievement_boss_lordmarrowgar", "index": 100}]}, {"id": 76133, "name": "Purgatory", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76131], "entries": [{"id": 96264, "definitionId": 101266, "maxRanks": 1, "type": "passive", "name": "Purgatory", "spellId": 114556, "icon": "inv_misc_shadowegg", "index": 100}]}, {"id": 76125, "name": "Bloodshot", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76172], "entries": [{"id": 96256, "definitionId": 101258, "maxRanks": 1, "type": "passive", "name": "Bloodshot", "spellId": 391398, "icon": "ability_warlock_baneofhavoc", "index": 100}]}, {"id": 76040, "name": "Umbilicus Eternus", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76132], "entries": [{"id": 96168, "definitionId": 101170, "maxRanks": 1, "type": "passive", "name": "Umbilicus Eternus", "spellId": 391517, "icon": "artifactability_blooddeathknight_umbilicuseternus", "index": 100}]}], "heroNodes": [{"id": 95062, "name": "Reaper's Mark", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 33, "next": [95036, 95058, 95043], "prev": [], "entries": [{"id": 117659, "definitionId": 122671, "maxRanks": 1, "type": "active", "name": "Reaper's Mark", "spellId": 439843, "icon": "inv_ability_deathbringerdeathknight_reapersmark", "index": 100}], "freeNode": true}, {"id": 95051, "name": "Vampiric Strike", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 31, "next": [95064, 95048, 95056], "prev": [], "entries": [{"id": 117648, "definitionId": 122660, "maxRanks": 1, "type": "passive", "name": "Vampiric Strike", "spellId": 433901, "icon": "inv_ability_sanlayndeathknight_vampiricstrike", "index": 100}], "freeNode": true}, {"id": 95036, "name": "Wave of Souls", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95061], "prev": [95062], "entries": [{"id": 117633, "definitionId": 122645, "maxRanks": 1, "type": "passive", "name": "Wave of Souls", "spellId": 439851, "icon": "spell_animamaw_wave", "index": 100}]}, {"id": 95058, "name": "Blood Fever", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95034], "prev": [95062], "entries": [{"id": 117655, "definitionId": 122667, "maxRanks": 1, "type": "passive", "name": "Blood Fever", "spellId": 440002, "icon": "ability_ironmaidens_corruptedblood", "index": 100}]}, {"id": 95043, "name": "Bind in Darkness", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95035], "prev": [95062], "entries": [{"id": 117640, "definitionId": 122652, "maxRanks": 1, "type": "passive", "name": "Bind in Darkness", "spellId": 440031, "icon": "ability_argus_soulbombdebuffsmall", "index": 100}]}, {"id": 95064, "name": "Newly Turned / Vampiric Speed", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95033], "prev": [95051], "entries": [{"id": 117661, "definitionId": 122673, "maxRanks": 1, "type": "passive", "name": "Newly Turned", "spellId": 433934, "icon": "ability_deathknight_hemorrhagicfever", "index": 100}, {"id": 117892, "definitionId": 122904, "maxRanks": 1, "type": "passive", "name": "Vampiric Speed", "spellId": 434028, "icon": "inv_boots_cloth_34v2", "index": 200}]}, {"id": 95048, "name": "Blood-Soaked Ground", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95065], "prev": [95051], "entries": [{"id": 117645, "definitionId": 122657, "maxRanks": 1, "type": "passive", "name": "Blood-Soaked Ground", "spellId": 434033, "icon": "ability_ironmaidens_corruptedblood", "index": 100}]}, {"id": 95056, "name": "Vampiric Aura / Bloody Fortitude", "type": "choice", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95046], "prev": [95051], "entries": [{"id": 117653, "definitionId": 122665, "maxRanks": 1, "type": "passive", "name": "Vampiric Aura", "spellId": 434100, "icon": "ability_rogue_vendetta", "index": 100}, {"id": 117891, "definitionId": 122903, "maxRanks": 1, "type": "passive", "name": "Bloody Fortitude", "spellId": 434136, "icon": "ability_warrior_intensifyrage", "index": 200}]}, {"id": 95061, "name": "Soul Rupture", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95032], "prev": [95036], "entries": [{"id": 117658, "definitionId": 122670, "maxRanks": 1, "type": "passive", "name": "Soul Rupture", "spellId": 437161, "icon": "warlock_siphonlife", "index": 100}]}, {"id": 95034, "name": "Grim Reaper", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95057], "prev": [95058], "entries": [{"id": 117631, "definitionId": 122643, "maxRanks": 1, "type": "passive", "name": "Grim Reaper", "spellId": 434905, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 95035, "name": "Pact of the Deathbringer / Rune Carved Plates", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95049], "prev": [95043], "entries": [{"id": 117632, "definitionId": 122644, "maxRanks": 1, "type": "passive", "name": "Pact of the Deathbringer", "spellId": 440476, "icon": "ability_revendreth_deathknight", "index": 100}, {"id": 123420, "definitionId": 128258, "maxRanks": 1, "type": "passive", "name": "Rune Carved Plates", "spellId": 440282, "icon": "spell_deathknight_runetap", "index": 200}]}, {"id": 95033, "name": "Infliction of Sorrow", "type": "single", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95045], "prev": [95064], "entries": [{"id": 117630, "definitionId": 122642, "maxRanks": 1, "type": "passive", "name": "Infliction of Sorrow", "spellId": 434143, "icon": "ability_warrior_bloodbath", "index": 100}]}, {"id": 95065, "name": "Frenzied Bloodthirst", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95040], "prev": [95048], "entries": [{"id": 117662, "definitionId": 122674, "maxRanks": 1, "type": "passive", "name": "Frenzied Bloodthirst", "spellId": 434075, "icon": "inv_sulfurelemental_blood", "index": 100}]}, {"id": 95046, "name": "The Blood is Life", "type": "single", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95055], "prev": [95056], "entries": [{"id": 117643, "definitionId": 122655, "maxRanks": 1, "type": "passive", "name": "The Blood is Life", "spellId": 434260, "icon": "achievement_nazmir_boss_bloodofghuun", "index": 100}]}, {"id": 95032, "name": "Swift End / Painful Death", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95061], "entries": [{"id": 117629, "definitionId": 122641, "maxRanks": 1, "type": "passive", "name": "Swift End", "spellId": 443560, "icon": "ability_domination_rune02", "index": 100}, {"id": 123337, "definitionId": 128199, "maxRanks": 1, "type": "passive", "name": "Painful Death", "spellId": 443564, "icon": "ability_domination_rune12", "index": 200}]}, {"id": 95057, "name": "Dark Talons / Wither Away", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95034], "entries": [{"id": 117654, "definitionId": 122666, "maxRanks": 1, "type": "passive", "name": "Dark Talons", "spellId": 436687, "icon": "inv_shoulder_93", "index": 100}, {"id": 121984, "definitionId": 126884, "maxRanks": 1, "type": "passive", "name": "Wither Away", "spellId": 441894, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95049, "name": "Death's Messenger / Expelling Shield", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95035], "entries": [{"id": 117646, "definitionId": 122658, "maxRanks": 1, "type": "passive", "name": "Death's Messenger", "spellId": 437122, "icon": "ability_argus_deathfog", "index": 100}, {"id": 119140, "definitionId": 124040, "maxRanks": 1, "type": "passive", "name": "Expelling Shield", "spellId": 439948, "icon": "spell_shadow_antimagicshell", "index": 200}]}, {"id": 95045, "name": "Visceral Strength", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95033], "entries": [{"id": 117642, "definitionId": 122654, "maxRanks": 1, "type": "passive", "name": "Visceral Strength", "spellId": 434157, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 95040, "name": "Incite Terror", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95065], "entries": [{"id": 117637, "definitionId": 122649, "maxRanks": 1, "type": "passive", "name": "Incite Terror", "spellId": 434151, "icon": "ability_warlock_improveddemonictactics", "index": 100}]}, {"id": 95055, "name": "Pact of the San'layn / Sanguine Scent", "type": "choice", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95046], "entries": [{"id": 117652, "definitionId": 122664, "maxRanks": 1, "type": "passive", "name": "Pact of the San'layn", "spellId": 434261, "icon": "ability_warrior_bloodnova", "index": 100}, {"id": 117893, "definitionId": 122905, "maxRanks": 1, "type": "passive", "name": "Sanguine Scent", "spellId": 434263, "icon": "ability_deathknight_roilingblood", "index": 200}]}, {"id": 95068, "name": "Exterminate", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 33, "next": [], "prev": [95057, 95032, 95049], "entries": [{"id": 117665, "definitionId": 122677, "maxRanks": 1, "type": "passive", "name": "Exterminate", "spellId": 441378, "icon": "inv_polearm_2h_titanargus_d_01", "index": 100}]}, {"id": 95053, "name": "Gift of the San'layn", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 31, "next": [], "prev": [95040, 95045, 95055], "entries": [{"id": 117650, "definitionId": 122662, "maxRanks": 1, "type": "passive", "name": "Gift of the San'layn", "spellId": 434152, "icon": "spell_deathknight_bloodtap", "index": 100}]}], "subTreeNodes": [{"id": 99822, "name": "Deathbringer / San'layn", "type": "subtree", "posX": 7500, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123326, "type": "subtree", "name": "Deathbringer", "traitSubTreeId": 33, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-deathbringer", "nodes": [95062, 95036, 95058, 95043, 95061, 95034, 95035, 95032, 95057, 95049, 95068]}, {"id": 123325, "type": "subtree", "name": "San'layn", "traitSubTreeId": 31, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-sanlayn", "nodes": [95051, 95064, 95048, 95056, 95033, 95065, 95046, 95045, 95040, 95055, 95053]}]}], "fullNodeOrder": [76033, 76035, 76037, 76038, 76039, 76040, 76041, 76042, 76043, 76044, 76045, 76046, 76048, 76049, 76050, 76051, 76052, 76053, 76054, 76055, 76056, 76057, 76058, 76059, 76060, 76061, 76063, 76064, 76065, 76066, 76067, 76068, 76069, 76071, 76072, 76073, 76074, 76075, 76076, 76077, 76078, 76079, 76080, 76081, 76083, 76084, 76085, 76086, 76087, 76088, 76089, 76091, 76092, 76093, 76094, 76095, 76096, 76097, 76098, 76099, 76100, 76101, 76102, 76103, 76105, 76106, 76108, 76109, 76110, 76111, 76112, 76113, 76114, 76115, 76116, 76117, 76118, 76119, 76120, 76121, 76122, 76123, 76124, 76125, 76126, 76127, 76128, 76129, 76130, 76131, 76132, 76133, 76135, 76137, 76138, 76139, 76140, 76141, 76142, 76143, 76144, 76145, 76146, 76147, 76148, 76149, 76150, 76151, 76152, 76153, 76154, 76155, 76156, 76157, 76158, 76159, 76160, 76161, 76162, 76163, 76164, 76165, 76166, 76167, 76168, 76169, 76170, 76171, 76172, 76173, 76174, 76175, 76176, 76177, 76178, 76179, 76180, 76181, 76182, 76183, 76184, 76185, 76186, 76187, 76188, 76189, 76190, 76191, 76192, 76193, 76194, 76195, 76196, 76197, 95032, 95033, 95034, 95035, 95036, 95037, 95040, 95041, 95042, 95043, 95044, 95045, 95046, 95047, 95048, 95049, 95051, 95053, 95054, 95055, 95056, 95057, 95058, 95059, 95060, 95061, 95062, 95063, 95064, 95065, 95066, 95067, 95068, 99820, 99821, 99822, 101708, 101882, 101929, 101930, 101931, 101932, 101933, 102006, 102007, 102008, 102009, 102242, 102243, 102244, 102245]} \ No newline at end of file +{"traitTreeId": 750, "className": "Death Knight", "classId": 6, "specName": "Blood", "specId": 250, "classNodes": [{"id": 76081, "name": "Icebound Fortitude", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76045], "prev": [], "entries": [{"id": 96210, "definitionId": 101212, "maxRanks": 1, "type": "active", "name": "Icebound Fortitude", "spellId": 48792, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 76071, "name": "Death Strike", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76067], "prev": [], "entries": [{"id": 96200, "definitionId": 101202, "maxRanks": 1, "type": "active", "name": "Death Strike", "spellId": 49998, "icon": "spell_deathknight_butcher2", "index": 100}], "freeNode": true}, {"id": 76072, "name": "Raise Dead", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76073], "prev": [], "entries": [{"id": 96201, "definitionId": 101203, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46585, "icon": "inv_pet_ghoul", "index": 100}]}, {"id": 76045, "name": "Runic Attenuation", "type": "single", "posX": 3000, "posY": 1800, "maxRanks": 1, "next": [76084, 76044, 76046], "prev": [76081], "entries": [{"id": 96173, "definitionId": 101175, "maxRanks": 1, "type": "passive", "name": "Runic Attenuation", "spellId": 207104, "icon": "boss_odunrunes_blue", "index": 100}]}, {"id": 76067, "name": "Improved Death Strike", "type": "single", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [76046, 76074, 76069], "prev": [76071], "entries": [{"id": 96196, "definitionId": 101198, "maxRanks": 1, "type": "passive", "name": "Improved Death Strike", "spellId": 374277, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76073, "name": "Cleaving Strikes", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [76069, 76059, 76060], "prev": [76072], "entries": [{"id": 96202, "definitionId": 101204, "maxRanks": 1, "type": "passive", "name": "Cleaving Strikes", "spellId": 316916, "icon": "spell_shadow_deathanddecay", "index": 100}]}, {"id": 76084, "name": "Mind Freeze", "type": "single", "posX": 2400, "posY": 2400, "maxRanks": 1, "next": [76083, 101708], "prev": [76045], "entries": [{"id": 96213, "definitionId": 101215, "maxRanks": 1, "type": "active", "name": "Mind Freeze", "spellId": 47528, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 76044, "name": "Blinding Sleet", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [101708], "prev": [76045], "entries": [{"id": 96172, "definitionId": 101174, "maxRanks": 1, "type": "active", "name": "Blinding Sleet", "spellId": 207167, "icon": "spell_frost_chillingblast", "index": 100}]}, {"id": 76046, "name": "Anti-Magic Barrier", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [101708, 76066, 76068], "prev": [76045, 76067], "entries": [{"id": 96174, "definitionId": 101176, "maxRanks": 1, "type": "passive", "name": "Anti-Magic Barrier", "spellId": 205727, "icon": "spell_shadow_antimagicshell", "index": 100}]}, {"id": 76074, "name": "March of Darkness", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [76068], "prev": [76067], "entries": [{"id": 96203, "definitionId": 101205, "maxRanks": 1, "type": "passive", "name": "March of Darkness", "spellId": 391546, "icon": "ability_argus_deathfog", "index": 100}]}, {"id": 76069, "name": "Unholy Ground", "type": "single", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [76068, 76075, 76061], "prev": [76073, 76067], "entries": [{"id": 96198, "definitionId": 101200, "maxRanks": 1, "type": "passive", "name": "Unholy Ground", "spellId": 374265, "icon": "ability_deathknight_desecratedground", "index": 100}]}, {"id": 76059, "name": "Control Undead", "type": "single", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [76061], "prev": [76073], "entries": [{"id": 96188, "definitionId": 101190, "maxRanks": 1, "type": "active", "name": "Control Undead", "spellId": 111673, "icon": "inv_misc_bone_skull_01", "index": 100}]}, {"id": 76060, "name": "Enfeeble / Sacrificial Pact", "type": "choice", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [76061, 102006], "prev": [76073], "entries": [{"id": 96189, "definitionId": 101191, "maxRanks": 1, "type": "passive", "name": "Enfeeble", "spellId": 392566, "icon": "ability_creature_poison_01", "index": 100}, {"id": 125608, "definitionId": 130440, "maxRanks": 1, "type": "active", "name": "Sacrificial Pact", "spellId": 327574, "icon": "spell_shadow_corpseexplode", "index": 200}]}, {"id": 76083, "name": "Coldthirst", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084], "entries": [{"id": 96212, "definitionId": 101214, "maxRanks": 1, "type": "passive", "name": "Coldthirst", "spellId": 378848, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 101708, "name": "Proliferating Chill", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084, 76046, 76044], "entries": [{"id": 125606, "definitionId": 130438, "maxRanks": 1, "type": "passive", "name": "Proliferating Chill", "spellId": 373930, "icon": "spell_frost_chainsofice", "index": 100}]}, {"id": 76066, "name": "Permafrost", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [76085, 76065], "prev": [76046], "entries": [{"id": 96195, "definitionId": 101197, "maxRanks": 1, "type": "passive", "name": "Permafrost", "spellId": 207200, "icon": "achievement_zone_frostfire", "index": 100}]}, {"id": 76068, "name": "Veteran of the Third War", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [76065], "prev": [76069, 76046, 76074], "entries": [{"id": 96197, "definitionId": 101199, "maxRanks": 1, "type": "passive", "name": "Veteran of the Third War", "spellId": 48263, "icon": "spell_misc_warsongfocus", "index": 100}]}, {"id": 76075, "name": "Death Pact", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [76065, 76076], "prev": [76069], "entries": [{"id": 96204, "definitionId": 101206, "maxRanks": 1, "type": "active", "name": "Death Pact", "spellId": 48743, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 76061, "name": "Brittle", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [76076], "prev": [76060, 76069, 76059], "entries": [{"id": 96190, "definitionId": 101192, "maxRanks": 1, "type": "passive", "name": "Brittle", "spellId": 374504, "icon": "ability_bosskilrogg_deaththroes", "index": 100}]}, {"id": 102006, "name": "Death's Reach", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [76076, 76063], "prev": [76060], "entries": [{"id": 126014, "definitionId": 130845, "maxRanks": 1, "type": "passive", "name": "Death's Reach", "spellId": 276079, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 76085, "name": "Icy Talons", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76086, 76052, 76064], "prev": [76066, 101708, 76083], "entries": [{"id": 96214, "definitionId": 101216, "maxRanks": 1, "type": "passive", "name": "Icy Talons", "spellId": 194878, "icon": "spell_deathknight_icytalons", "index": 100}]}, {"id": 76065, "name": "Anti-Magic Zone", "type": "single", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76064, 76048, 76077], "prev": [76068, 76075, 76066], "entries": [{"id": 96194, "definitionId": 101196, "maxRanks": 1, "type": "active", "name": "Anti-Magic Zone", "spellId": 51052, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76076, "name": "Unholy Bond", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76077, 76057, 76063], "prev": [76075, 102006, 76061], "entries": [{"id": 96205, "definitionId": 101207, "maxRanks": 1, "type": "passive", "name": "Unholy Bond", "spellId": 374261, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 76086, "name": "Ice Prison", "type": "single", "posX": 2400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96215, "definitionId": 101217, "maxRanks": 1, "type": "passive", "name": "Ice Prison", "spellId": 454786, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76052, "name": "Gloom Ward", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96180, "definitionId": 101182, "maxRanks": 1, "type": "passive", "name": "Gloom Ward", "spellId": 391571, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 76064, "name": "Asphyxiate", "type": "single", "posX": 3600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087, 76078], "prev": [76085, 76065], "entries": [{"id": 96193, "definitionId": 101195, "maxRanks": 1, "type": "active", "name": "Asphyxiate", "spellId": 221562, "icon": "ability_deathknight_asphixiate", "index": 100}]}, {"id": 76048, "name": "Assimilation", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078], "prev": [76065], "entries": [{"id": 96176, "definitionId": 101178, "maxRanks": 1, "type": "passive", "name": "Assimilation", "spellId": 374383, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76077, "name": "Wraith Walk", "type": "single", "posX": 4800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078, 76058], "prev": [76065, 76076], "entries": [{"id": 96206, "definitionId": 101208, "maxRanks": 1, "type": "active", "name": "Wraith Walk", "spellId": 212552, "icon": "inv_helm_plate_raiddeathknight_p_01", "index": 100}]}, {"id": 76057, "name": "Grip of the Dead", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076], "entries": [{"id": 96186, "definitionId": 101188, "maxRanks": 1, "type": "passive", "name": "Grip of the Dead", "spellId": 273952, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 76063, "name": "Soul Reaper", "type": "single", "posX": 6000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076, 102006], "entries": [{"id": 96192, "definitionId": 101194, "maxRanks": 1, "type": "active", "name": "Soul Reaper", "spellId": 343294, "icon": "ability_deathknight_soulreaper", "index": 100}]}, {"id": 76087, "name": "Suppression", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76088, 76051], "prev": [76052, 76086, 76064], "entries": [{"id": 96216, "definitionId": 101218, "maxRanks": 1, "type": "passive", "name": "Suppression", "spellId": 374049, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 76078, "name": "Blood Scent", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76051, 76055], "prev": [76048, 76064, 76077], "entries": [{"id": 96207, "definitionId": 101209, "maxRanks": 1, "type": "passive", "name": "Blood Scent", "spellId": 374030, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 76058, "name": "Unholy Endurance", "type": "single", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76055, 76056], "prev": [76057, 76063, 76077], "entries": [{"id": 96187, "definitionId": 101189, "maxRanks": 1, "type": "passive", "name": "Unholy Endurance", "spellId": 389682, "icon": "spell_deathknight_subversion", "index": 100}]}, {"id": 76088, "name": "Osmosis", "type": "single", "posX": 2400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079], "prev": [76087], "entries": [{"id": 96217, "definitionId": 101219, "maxRanks": 1, "type": "passive", "name": "Osmosis", "spellId": 454835, "icon": "spell_nature_rune", "index": 100}]}, {"id": 76051, "name": "Insidious Chill", "type": "single", "posX": 3600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079, 76080], "prev": [76078, 76087], "entries": [{"id": 96179, "definitionId": 101181, "maxRanks": 1, "type": "passive", "name": "Insidious Chill", "spellId": 391566, "icon": "ability_racial_wardoftheloafrost", "index": 100}]}, {"id": 76055, "name": "Runic Protection", "type": "single", "posX": 4800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76080, 76054], "prev": [76058, 76078], "entries": [{"id": 96183, "definitionId": 101185, "maxRanks": 1, "type": "passive", "name": "Runic Protection", "spellId": 454788, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 76056, "name": "Blood Draw", "type": "single", "posX": 6000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76054], "prev": [76058], "entries": [{"id": 96184, "definitionId": 101186, "maxRanks": 1, "type": "passive", "name": "Blood Draw", "spellId": 374598, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 76079, "name": "Rune Mastery", "type": "single", "posX": 3000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102008, 76050], "prev": [76051, 76088], "entries": [{"id": 96208, "definitionId": 101210, "maxRanks": 2, "type": "passive", "name": "Rune Mastery", "spellId": 374574, "icon": "ability_deathknight_hungeringruneblade", "index": 100}]}, {"id": 76080, "name": "Subduing Grasp", "type": "single", "posX": 4200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76050, 76049, 102007], "prev": [76055, 76051], "entries": [{"id": 96209, "definitionId": 101211, "maxRanks": 1, "type": "passive", "name": "Subduing Grasp", "spellId": 454822, "icon": "spell_nature_elementalshields", "index": 100}]}, {"id": 76054, "name": "Will of the Necropolis", "type": "single", "posX": 5400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102007, 76053], "prev": [76055, 76056], "entries": [{"id": 96182, "definitionId": 101184, "maxRanks": 2, "type": "passive", "name": "Will of the Necropolis", "spellId": 206967, "icon": "achievement_boss_kelthuzad_01", "index": 100}]}, {"id": 102008, "name": "Null Magic", "type": "single", "posX": 2400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76079], "entries": [{"id": 126016, "definitionId": 130847, "maxRanks": 1, "type": "passive", "name": "Null Magic", "spellId": 454842, "icon": "spell_shadow_detectinvisibility", "index": 100}]}, {"id": 76050, "name": "Unyielding Will", "type": "single", "posX": 3600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76079], "entries": [{"id": 96178, "definitionId": 101180, "maxRanks": 1, "type": "passive", "name": "Unyielding Will", "spellId": 457574, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 76049, "name": "Abomination Limb", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080], "entries": [{"id": 96177, "definitionId": 101179, "maxRanks": 1, "type": "active", "name": "Abomination Limb", "spellId": 383269, "icon": "ability_maldraxxus_deathknight", "index": 100}]}, {"id": 102007, "name": "Death's Echo", "type": "single", "posX": 4800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76054], "entries": [{"id": 126015, "definitionId": 130846, "maxRanks": 1, "type": "passive", "name": "Death's Echo", "spellId": 356367, "icon": "inv_fabric_ebonweave", "index": 100}]}, {"id": 76053, "name": "Vestigial Shell", "type": "single", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76054], "entries": [{"id": 96181, "definitionId": 101183, "maxRanks": 1, "type": "passive", "name": "Vestigial Shell", "spellId": 454851, "icon": "ability_domination_rune12", "index": 100}]}], "specNodes": [{"id": 76169, "name": "Heart Strike", "type": "single", "posX": 12600, "posY": 1200, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "next": [76168, 76170], "prev": [], "entries": [{"id": 96304, "definitionId": 101306, "maxRanks": 1, "type": "active", "name": "Heart Strike", "spellId": 206930, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 76168, "name": "Marrowrend", "type": "single", "posX": 12000, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76173], "prev": [76169], "entries": [{"id": 96303, "definitionId": 101305, "maxRanks": 1, "type": "active", "name": "Marrowrend", "spellId": 195182, "icon": "ability_deathknight_marrowrend", "index": 100}]}, {"id": 76170, "name": "Blood Boil", "type": "single", "posX": 13200, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76171], "prev": [76169], "entries": [{"id": 96305, "definitionId": 101307, "maxRanks": 1, "type": "active", "name": "Blood Boil", "spellId": 50842, "icon": "spell_deathknight_bloodboil", "index": 100}]}, {"id": 76173, "name": "Vampiric Blood", "type": "single", "posX": 12000, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76144, 76140], "prev": [76168], "entries": [{"id": 96308, "definitionId": 101310, "maxRanks": 1, "type": "active", "name": "Vampiric Blood", "spellId": 55233, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 76171, "name": "Bone Collector", "type": "single", "posX": 13200, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76126, 76146], "prev": [76170], "entries": [{"id": 96306, "definitionId": 101308, "maxRanks": 1, "type": "passive", "name": "Bone Collector", "spellId": 458572, "icon": "ability_deathknight_boneshield", "index": 100}]}, {"id": 76144, "name": "Ossuary", "type": "single", "posX": 11400, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76145, 76135, 76167], "prev": [76173], "entries": [{"id": 96277, "definitionId": 101279, "maxRanks": 1, "type": "passive", "name": "Ossuary", "spellId": 219786, "icon": "ability_deathknight_brittlebones", "index": 100}]}, {"id": 76140, "name": "Improved Vampiric Blood", "type": "single", "posX": 12000, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76167, 76138], "prev": [76173], "entries": [{"id": 96272, "definitionId": 101274, "maxRanks": 2, "type": "passive", "name": "Improved Vampiric Blood", "spellId": 317133, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 76126, "name": "Improved Heart Strike", "type": "single", "posX": 13200, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76138, 76137], "prev": [76171], "entries": [{"id": 96257, "definitionId": 101259, "maxRanks": 2, "type": "passive", "name": "Improved Heart Strike", "spellId": 374717, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 76146, "name": "Ossified Vitriol", "type": "single", "posX": 13800, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76137, 76124, 76147], "prev": [76171], "entries": [{"id": 96279, "definitionId": 101281, "maxRanks": 1, "type": "passive", "name": "Ossified Vitriol", "spellId": 458744, "icon": "ability_warlock_cremation", "index": 100}]}, {"id": 76145, "name": "Leeching Strike", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76042, 76039], "prev": [76144], "entries": [{"id": 96278, "definitionId": 101280, "maxRanks": 1, "type": "passive", "name": "Leeching Strike", "spellId": 377629, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 76135, "name": "Heartbreaker", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76042, 76142], "prev": [76144], "entries": [{"id": 96266, "definitionId": 101268, "maxRanks": 1, "type": "passive", "name": "Heartbreaker", "spellId": 221536, "icon": "spell_deathknight_deathstrike", "index": 100}]}, {"id": 76167, "name": "Foul Bulwark", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76142], "prev": [76140, 76144], "entries": [{"id": 96302, "definitionId": 101304, "maxRanks": 1, "type": "passive", "name": "Foul Bulwark", "spellId": 206974, "icon": "inv_armor_shield_naxxramas_d_02", "index": 100}]}, {"id": 76138, "name": "Dancing Rune Weapon", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76142, 76129, 76166], "prev": [76140, 76126], "entries": [{"id": 96269, "definitionId": 101271, "maxRanks": 1, "type": "active", "name": "Dancing Rune Weapon", "spellId": 49028, "icon": "inv_sword_07", "index": 100}]}, {"id": 76137, "name": "Hemostasis", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76166], "prev": [76126, 76146], "entries": [{"id": 96268, "definitionId": 101270, "maxRanks": 1, "type": "passive", "name": "Hemostasis", "spellId": 273946, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 76124, "name": "Perseverance of the Ebon Blade", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76166, 76141], "prev": [76146], "entries": [{"id": 96255, "definitionId": 101257, "maxRanks": 1, "type": "passive", "name": "Perseverance of the Ebon Blade", "spellId": 374747, "icon": "ability_deathknight_sanguinfortitude", "index": 100}]}, {"id": 76147, "name": "Relish in Blood", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76141, 76174], "prev": [76146], "entries": [{"id": 96280, "definitionId": 101282, "maxRanks": 1, "type": "passive", "name": "Relish in Blood", "spellId": 317610, "icon": "ability_deathknight_roilingblood", "index": 100}]}, {"id": 76042, "name": "Gorefiend's Grasp", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76039, 76165], "prev": [76145, 76135], "entries": [{"id": 96170, "definitionId": 101172, "maxRanks": 1, "type": "active", "name": "Gorefiend's Grasp", "spellId": 108199, "icon": "ability_deathknight_aoedeathgrip", "index": 100}]}, {"id": 76142, "name": "Improved Bone Shield", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76143], "prev": [76135, 76167, 76138], "entries": [{"id": 96274, "definitionId": 101276, "maxRanks": 1, "type": "passive", "name": "Improved Bone Shield", "spellId": 374715, "icon": "ability_deathknight_marrowrend", "index": 100}]}, {"id": 76129, "name": "Insatiable Blade", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76143, 76130, 76043], "prev": [76138], "entries": [{"id": 96260, "definitionId": 101262, "maxRanks": 1, "type": "passive", "name": "Insatiable Blade", "spellId": 377637, "icon": "70_inscription_vantus_rune_nightmare", "index": 100}]}, {"id": 76166, "name": "Rune Tap", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76043, 76038], "prev": [76138, 76137, 76124], "entries": [{"id": 96301, "definitionId": 101303, "maxRanks": 1, "type": "active", "name": "Rune Tap", "spellId": 194679, "icon": "spell_deathknight_runetap", "index": 100}]}, {"id": 76141, "name": "Rapid Decomposition", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76038, 76174], "prev": [76147, 76124], "entries": [{"id": 96273, "definitionId": 101275, "maxRanks": 1, "type": "passive", "name": "Rapid Decomposition", "spellId": 194662, "icon": "ability_deathknight_deathsiphon2", "index": 100}]}, {"id": 76039, "name": "Blood Tap", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102243], "prev": [76042, 76145], "entries": [{"id": 96167, "definitionId": 101169, "maxRanks": 1, "type": "active", "name": "Blood Tap", "spellId": 221699, "icon": "spell_deathknight_bloodtap", "index": 100}]}, {"id": 76165, "name": "Tightening Grasp", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102243, 76139], "prev": [76042], "entries": [{"id": 96300, "definitionId": 101302, "maxRanks": 1, "type": "passive", "name": "Tightening Grasp", "spellId": 206970, "icon": "spell_shadow_coneofsilence", "index": 100}]}, {"id": 76143, "name": "Reinforced Bones", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76139, 102244], "prev": [76142, 76129], "entries": [{"id": 96276, "definitionId": 101278, "maxRanks": 1, "type": "passive", "name": "Reinforced Bones", "spellId": 374737, "icon": "ability_rogue_deadenednerves", "index": 100}]}, {"id": 76130, "name": "Everlasting Bond", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102244], "prev": [76129], "entries": [{"id": 96261, "definitionId": 101263, "maxRanks": 1, "type": "passive", "name": "Everlasting Bond", "spellId": 377668, "icon": "inv_sword_07", "index": 100}]}, {"id": 76043, "name": "Voracious", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102244, 102242], "prev": [76129, 76166], "entries": [{"id": 96171, "definitionId": 101173, "maxRanks": 1, "type": "passive", "name": "Voracious", "spellId": 273953, "icon": "ability_ironmaidens_whirlofblood", "index": 100}]}, {"id": 76038, "name": "Coagulopathy", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102242, 76041], "prev": [76141, 76166], "entries": [{"id": 96166, "definitionId": 101168, "maxRanks": 1, "type": "passive", "name": "Coagulopathy", "spellId": 391477, "icon": "ability_skeer_bloodletting", "index": 100}]}, {"id": 76174, "name": "Bloodworms", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76041], "prev": [76141, 76147], "entries": [{"id": 96309, "definitionId": 101311, "maxRanks": 1, "type": "passive", "name": "Bloodworms", "spellId": 195679, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 102243, "name": "Blood Feast", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76128], "prev": [76039, 76165], "entries": [{"id": 126298, "definitionId": 131124, "maxRanks": 1, "type": "passive", "name": "Blood Feast", "spellId": 391386, "icon": "spell_deathknight_vendetta", "index": 100}]}, {"id": 76139, "name": "Mark of Blood / Tombstone", "type": "choice", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76128, 76131], "prev": [76143, 76165], "entries": [{"id": 96271, "definitionId": 101273, "maxRanks": 1, "type": "active", "name": "Mark of Blood", "spellId": 206940, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 96270, "definitionId": 101272, "maxRanks": 1, "type": "active", "name": "Tombstone", "spellId": 219809, "icon": "ability_fiegndead", "index": 200}]}, {"id": 102244, "name": "Blooddrinker / Consumption", "type": "choice", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76131, 102245, 76172], "prev": [76043, 76130, 76143], "entries": [{"id": 126300, "definitionId": 131126, "maxRanks": 1, "type": "active", "name": "Blooddrinker", "spellId": 206931, "icon": "ability_animusdraw", "index": 100}, {"id": 126299, "definitionId": 131125, "maxRanks": 1, "type": "active", "name": "Consumption", "spellId": 274156, "icon": "inv_axe_2h_artifactmaw_d_01", "index": 200}]}, {"id": 102242, "name": "Bloodied Blade", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76172, 76132], "prev": [76043, 76038], "entries": [{"id": 126296, "definitionId": 131122, "maxRanks": 1, "type": "passive", "name": "Bloodied Blade", "spellId": 458753, "icon": "inv_sword_2h_ebonblade_b_01_red", "index": 100}]}, {"id": 76041, "name": "Sanguine Ground", "type": "single", "posX": 14400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76132], "prev": [76038, 76174], "entries": [{"id": 96169, "definitionId": 101171, "maxRanks": 1, "type": "passive", "name": "Sanguine Ground", "spellId": 391458, "icon": "inv_artifact_corruptedbloodofzakajz", "index": 100}]}, {"id": 76128, "name": "Shattering Bone", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76127], "prev": [76139, 102243], "entries": [{"id": 96259, "definitionId": 101261, "maxRanks": 1, "type": "passive", "name": "Shattering Bone", "spellId": 377640, "icon": "ability_deathknight_shatteringbone", "index": 100}]}, {"id": 76131, "name": "Heartrend", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76133], "prev": [76139, 102244], "entries": [{"id": 96262, "definitionId": 101264, "maxRanks": 1, "type": "passive", "name": "Heartrend", "spellId": 377655, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 102245, "name": "Carnage", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102244], "entries": [{"id": 126301, "definitionId": 131127, "maxRanks": 1, "type": "passive", "name": "Carnage", "spellId": 458752, "icon": "sha_ability_warrior_bloodnova_nightmare", "index": 100}]}, {"id": 76172, "name": "Iron Heart", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76125], "prev": [102242, 102244], "entries": [{"id": 96307, "definitionId": 101309, "maxRanks": 1, "type": "passive", "name": "Iron Heart", "spellId": 391395, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 76132, "name": "Red Thirst", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76040], "prev": [102242, 76041], "entries": [{"id": 96263, "definitionId": 101265, "maxRanks": 1, "type": "passive", "name": "Red Thirst", "spellId": 205723, "icon": "spell_deathknight_bloodpresence", "index": 100}]}, {"id": 76127, "name": "Bonestorm", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76128], "entries": [{"id": 96258, "definitionId": 101260, "maxRanks": 1, "type": "active", "name": "Bonestorm", "spellId": 194844, "icon": "achievement_boss_lordmarrowgar", "index": 100}]}, {"id": 76133, "name": "Purgatory", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76131], "entries": [{"id": 96264, "definitionId": 101266, "maxRanks": 1, "type": "passive", "name": "Purgatory", "spellId": 114556, "icon": "inv_misc_shadowegg", "index": 100}]}, {"id": 76125, "name": "Bloodshot", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76172], "entries": [{"id": 96256, "definitionId": 101258, "maxRanks": 1, "type": "passive", "name": "Bloodshot", "spellId": 391398, "icon": "ability_warlock_baneofhavoc", "index": 100}]}, {"id": 76040, "name": "Umbilicus Eternus", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76132], "entries": [{"id": 96168, "definitionId": 101170, "maxRanks": 1, "type": "passive", "name": "Umbilicus Eternus", "spellId": 391517, "icon": "artifactability_blooddeathknight_umbilicuseternus", "index": 100}]}], "heroNodes": [{"id": 95062, "name": "Reaper's Mark", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 33, "next": [95036, 95058, 95043], "prev": [], "entries": [{"id": 117659, "definitionId": 122671, "maxRanks": 1, "type": "active", "name": "Reaper's Mark", "spellId": 439843, "icon": "inv_ability_deathbringerdeathknight_reapersmark", "index": 100}], "freeNode": true}, {"id": 95051, "name": "Vampiric Strike", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 31, "next": [95064, 95048, 95056], "prev": [], "entries": [{"id": 117648, "definitionId": 122660, "maxRanks": 1, "type": "passive", "name": "Vampiric Strike", "spellId": 433901, "icon": "inv_ability_sanlayndeathknight_vampiricstrike", "index": 100}], "freeNode": true}, {"id": 95036, "name": "Wave of Souls", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95061], "prev": [95062], "entries": [{"id": 117633, "definitionId": 122645, "maxRanks": 1, "type": "passive", "name": "Wave of Souls", "spellId": 439851, "icon": "spell_animamaw_wave", "index": 100}]}, {"id": 95058, "name": "Wither Away", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95034], "prev": [95062], "entries": [{"id": 117655, "definitionId": 122667, "maxRanks": 1, "type": "passive", "name": "Wither Away", "spellId": 441894, "icon": "sha_spell_warlock_demonsoul", "index": 100}]}, {"id": 95043, "name": "Bind in Darkness", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95035], "prev": [95062], "entries": [{"id": 117640, "definitionId": 122652, "maxRanks": 1, "type": "passive", "name": "Bind in Darkness", "spellId": 440031, "icon": "ability_argus_soulbombdebuffsmall", "index": 100}]}, {"id": 95064, "name": "Newly Turned / Vampiric Speed", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95033], "prev": [95051], "entries": [{"id": 117661, "definitionId": 122673, "maxRanks": 1, "type": "passive", "name": "Newly Turned", "spellId": 433934, "icon": "ability_deathknight_hemorrhagicfever", "index": 100}, {"id": 117892, "definitionId": 122904, "maxRanks": 1, "type": "passive", "name": "Vampiric Speed", "spellId": 434028, "icon": "inv_boots_cloth_34v2", "index": 200}]}, {"id": 95048, "name": "Blood-Soaked Ground", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95065], "prev": [95051], "entries": [{"id": 117645, "definitionId": 122657, "maxRanks": 1, "type": "passive", "name": "Blood-Soaked Ground", "spellId": 434033, "icon": "ability_ironmaidens_corruptedblood", "index": 100}]}, {"id": 95056, "name": "Vampiric Aura / Bloody Fortitude", "type": "choice", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95046], "prev": [95051], "entries": [{"id": 117653, "definitionId": 122665, "maxRanks": 1, "type": "passive", "name": "Vampiric Aura", "spellId": 434100, "icon": "ability_rogue_vendetta", "index": 100}, {"id": 117891, "definitionId": 122903, "maxRanks": 1, "type": "passive", "name": "Bloody Fortitude", "spellId": 434136, "icon": "ability_warrior_intensifyrage", "index": 200}]}, {"id": 95061, "name": "Soul Rupture", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95032], "prev": [95036], "entries": [{"id": 117658, "definitionId": 122670, "maxRanks": 1, "type": "passive", "name": "Soul Rupture", "spellId": 437161, "icon": "warlock_siphonlife", "index": 100}]}, {"id": 95034, "name": "Grim Reaper / Reaper of Souls", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95057], "prev": [95058], "entries": [{"id": 117631, "definitionId": 122643, "maxRanks": 1, "type": "passive", "name": "Grim Reaper", "spellId": 434905, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}, {"id": 128235, "definitionId": 133042, "maxRanks": 1, "type": "passive", "name": "Reaper of Souls", "spellId": 440002, "icon": "pvp_soulrip", "index": 200}]}, {"id": 95035, "name": "Pact of the Deathbringer / Rune Carved Plates", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95049], "prev": [95043], "entries": [{"id": 117632, "definitionId": 122644, "maxRanks": 1, "type": "passive", "name": "Pact of the Deathbringer", "spellId": 440476, "icon": "ability_revendreth_deathknight", "index": 100}, {"id": 123420, "definitionId": 128258, "maxRanks": 1, "type": "passive", "name": "Rune Carved Plates", "spellId": 440282, "icon": "spell_deathknight_runetap", "index": 200}]}, {"id": 95033, "name": "Infliction of Sorrow", "type": "single", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95045], "prev": [95064], "entries": [{"id": 117630, "definitionId": 122642, "maxRanks": 1, "type": "passive", "name": "Infliction of Sorrow", "spellId": 434143, "icon": "ability_warrior_bloodbath", "index": 100}]}, {"id": 95065, "name": "Frenzied Bloodthirst", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95040], "prev": [95048], "entries": [{"id": 117662, "definitionId": 122674, "maxRanks": 1, "type": "passive", "name": "Frenzied Bloodthirst", "spellId": 434075, "icon": "inv_sulfurelemental_blood", "index": 100}]}, {"id": 95046, "name": "The Blood is Life", "type": "single", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95055], "prev": [95056], "entries": [{"id": 117643, "definitionId": 122655, "maxRanks": 1, "type": "passive", "name": "The Blood is Life", "spellId": 434260, "icon": "achievement_nazmir_boss_bloodofghuun", "index": 100}]}, {"id": 95032, "name": "Swift and Painful", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95061], "entries": [{"id": 117629, "definitionId": 122641, "maxRanks": 1, "type": "passive", "name": "Swift and Painful", "spellId": 443560, "icon": "ability_domination_rune02", "index": 100}]}, {"id": 95057, "name": "Dark Talons / Reaper's Onslaught", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95034], "entries": [{"id": 117654, "definitionId": 122666, "maxRanks": 1, "type": "passive", "name": "Dark Talons", "spellId": 436687, "icon": "inv_shoulder_93", "index": 100}, {"id": 128266, "definitionId": 133073, "maxRanks": 1, "type": "passive", "name": "Reaper's Onslaught", "spellId": 469870, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 95049, "name": "Death's Messenger / Expelling Shield", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95035], "entries": [{"id": 117646, "definitionId": 122658, "maxRanks": 1, "type": "passive", "name": "Death's Messenger", "spellId": 437122, "icon": "ability_argus_deathfog", "index": 100}, {"id": 128234, "definitionId": 133041, "maxRanks": 1, "type": "passive", "name": "Expelling Shield", "spellId": 439948, "icon": "spell_shadow_antimagicshell", "index": 200}]}, {"id": 95045, "name": "Visceral Strength", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95033], "entries": [{"id": 117642, "definitionId": 122654, "maxRanks": 1, "type": "passive", "name": "Visceral Strength", "spellId": 434157, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 95040, "name": "Incite Terror", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95065], "entries": [{"id": 117637, "definitionId": 122649, "maxRanks": 1, "type": "passive", "name": "Incite Terror", "spellId": 434151, "icon": "ability_warlock_improveddemonictactics", "index": 100}]}, {"id": 95055, "name": "Pact of the San'layn / Sanguine Scent", "type": "choice", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95046], "entries": [{"id": 117652, "definitionId": 122664, "maxRanks": 1, "type": "passive", "name": "Pact of the San'layn", "spellId": 434261, "icon": "ability_warrior_bloodnova", "index": 100}, {"id": 117893, "definitionId": 122905, "maxRanks": 1, "type": "passive", "name": "Sanguine Scent", "spellId": 434263, "icon": "ability_deathknight_roilingblood", "index": 200}]}, {"id": 95068, "name": "Exterminate", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 33, "next": [], "prev": [95057, 95032, 95049], "entries": [{"id": 117665, "definitionId": 122677, "maxRanks": 1, "type": "passive", "name": "Exterminate", "spellId": 441378, "icon": "inv_polearm_2h_titanargus_d_01", "index": 100}]}, {"id": 95053, "name": "Gift of the San'layn", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 31, "next": [], "prev": [95040, 95045, 95055], "entries": [{"id": 117650, "definitionId": 122662, "maxRanks": 1, "type": "passive", "name": "Gift of the San'layn", "spellId": 434152, "icon": "spell_deathknight_bloodtap", "index": 100}]}], "subTreeNodes": [{"id": 99822, "name": "Deathbringer / San'layn", "type": "subtree", "posX": 7500, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123326, "type": "subtree", "name": "Deathbringer", "traitSubTreeId": 33, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-deathbringer", "nodes": [95062, 95036, 95058, 95043, 95061, 95034, 95035, 95032, 95057, 95049, 95068]}, {"id": 123325, "type": "subtree", "name": "San'layn", "traitSubTreeId": 31, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-sanlayn", "nodes": [95051, 95064, 95048, 95056, 95033, 95065, 95046, 95045, 95040, 95055, 95053]}]}], "fullNodeOrder": [76033, 76035, 76037, 76038, 76039, 76040, 76041, 76042, 76043, 76044, 76045, 76046, 76048, 76049, 76050, 76051, 76052, 76053, 76054, 76055, 76056, 76057, 76058, 76059, 76060, 76061, 76063, 76064, 76065, 76066, 76067, 76068, 76069, 76071, 76072, 76073, 76074, 76075, 76076, 76077, 76078, 76079, 76080, 76081, 76083, 76084, 76085, 76086, 76087, 76088, 76089, 76091, 76092, 76093, 76094, 76095, 76096, 76097, 76098, 76099, 76100, 76101, 76102, 76103, 76105, 76106, 76108, 76109, 76110, 76111, 76112, 76113, 76114, 76115, 76116, 76117, 76118, 76119, 76120, 76121, 76122, 76123, 76124, 76125, 76126, 76127, 76128, 76129, 76130, 76131, 76132, 76133, 76135, 76137, 76138, 76139, 76140, 76141, 76142, 76143, 76144, 76145, 76146, 76147, 76148, 76149, 76150, 76151, 76152, 76153, 76154, 76155, 76156, 76157, 76158, 76159, 76160, 76161, 76162, 76163, 76164, 76165, 76166, 76167, 76168, 76169, 76170, 76171, 76172, 76173, 76174, 76175, 76176, 76177, 76178, 76179, 76180, 76181, 76182, 76183, 76184, 76185, 76186, 76187, 76188, 76189, 76190, 76191, 76192, 76193, 76194, 76195, 76196, 76197, 95032, 95033, 95034, 95035, 95036, 95037, 95040, 95041, 95042, 95043, 95044, 95045, 95046, 95047, 95048, 95049, 95051, 95053, 95054, 95055, 95056, 95057, 95058, 95059, 95060, 95061, 95062, 95063, 95064, 95065, 95066, 95067, 95068, 99820, 99821, 99822, 101708, 101882, 101929, 101930, 101931, 101932, 101933, 102006, 102007, 102008, 102009, 102242, 102243, 102244, 102245]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/death_knight_frost.json b/simc_support/game_data/data_files/trees/death_knight_frost.json index 245ace1..333fb20 100644 --- a/simc_support/game_data/data_files/trees/death_knight_frost.json +++ b/simc_support/game_data/data_files/trees/death_knight_frost.json @@ -1 +1 @@ -{"traitTreeId": 750, "className": "Death Knight", "classId": 6, "specName": "Frost", "specId": 251, "classNodes": [{"id": 76081, "name": "Icebound Fortitude", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76045], "prev": [], "entries": [{"id": 96210, "definitionId": 101212, "maxRanks": 1, "type": "active", "name": "Icebound Fortitude", "spellId": 48792, "icon": "spell_deathknight_iceboundfortitude", "index": 100}], "freeNode": true}, {"id": 76071, "name": "Death Strike", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76067], "prev": [], "entries": [{"id": 96200, "definitionId": 101202, "maxRanks": 1, "type": "active", "name": "Death Strike", "spellId": 49998, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76072, "name": "Raise Dead", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76073], "prev": [], "entries": [{"id": 96201, "definitionId": 101203, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46585, "icon": "inv_pet_ghoul", "index": 100}]}, {"id": 76045, "name": "Runic Attenuation", "type": "single", "posX": 3000, "posY": 1800, "maxRanks": 1, "next": [76084, 76044, 76046], "prev": [76081], "entries": [{"id": 96173, "definitionId": 101175, "maxRanks": 1, "type": "passive", "name": "Runic Attenuation", "spellId": 207104, "icon": "boss_odunrunes_blue", "index": 100}]}, {"id": 76067, "name": "Improved Death Strike", "type": "single", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [76046, 76074, 76069], "prev": [76071], "entries": [{"id": 96196, "definitionId": 101198, "maxRanks": 1, "type": "passive", "name": "Improved Death Strike", "spellId": 374277, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76073, "name": "Cleaving Strikes", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [76069, 76059, 76060], "prev": [76072], "entries": [{"id": 96202, "definitionId": 101204, "maxRanks": 1, "type": "passive", "name": "Cleaving Strikes", "spellId": 316916, "icon": "spell_shadow_deathanddecay", "index": 100}]}, {"id": 76084, "name": "Mind Freeze", "type": "single", "posX": 2400, "posY": 2400, "maxRanks": 1, "next": [76083, 101708], "prev": [76045], "entries": [{"id": 96213, "definitionId": 101215, "maxRanks": 1, "type": "active", "name": "Mind Freeze", "spellId": 47528, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 76044, "name": "Blinding Sleet", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [101708], "prev": [76045], "entries": [{"id": 96172, "definitionId": 101174, "maxRanks": 1, "type": "active", "name": "Blinding Sleet", "spellId": 207167, "icon": "spell_frost_chillingblast", "index": 100}]}, {"id": 76046, "name": "Anti-Magic Barrier", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [101708, 76066, 76068], "prev": [76045, 76067], "entries": [{"id": 96174, "definitionId": 101176, "maxRanks": 1, "type": "passive", "name": "Anti-Magic Barrier", "spellId": 205727, "icon": "spell_shadow_antimagicshell", "index": 100}]}, {"id": 76074, "name": "March of Darkness", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [76068], "prev": [76067], "entries": [{"id": 96203, "definitionId": 101205, "maxRanks": 1, "type": "passive", "name": "March of Darkness", "spellId": 391546, "icon": "ability_argus_deathfog", "index": 100}]}, {"id": 76069, "name": "Unholy Ground", "type": "single", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [76068, 76075, 76061], "prev": [76073, 76067], "entries": [{"id": 96198, "definitionId": 101200, "maxRanks": 1, "type": "passive", "name": "Unholy Ground", "spellId": 374265, "icon": "ability_deathknight_desecratedground", "index": 100}]}, {"id": 76059, "name": "Control Undead", "type": "single", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [76061], "prev": [76073], "entries": [{"id": 96188, "definitionId": 101190, "maxRanks": 1, "type": "active", "name": "Control Undead", "spellId": 111673, "icon": "inv_misc_bone_skull_01", "index": 100}]}, {"id": 76060, "name": "Enfeeble / Sacrificial Pact", "type": "choice", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [76061, 102006], "prev": [76073], "entries": [{"id": 96189, "definitionId": 101191, "maxRanks": 1, "type": "passive", "name": "Enfeeble", "spellId": 392566, "icon": "ability_creature_poison_01", "index": 100}, {"id": 125608, "definitionId": 130440, "maxRanks": 1, "type": "active", "name": "Sacrificial Pact", "spellId": 327574, "icon": "spell_shadow_corpseexplode", "index": 200}]}, {"id": 76083, "name": "Coldthirst", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084], "entries": [{"id": 96212, "definitionId": 101214, "maxRanks": 1, "type": "passive", "name": "Coldthirst", "spellId": 378848, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 101708, "name": "Proliferating Chill", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084, 76046, 76044], "entries": [{"id": 125606, "definitionId": 130438, "maxRanks": 1, "type": "passive", "name": "Proliferating Chill", "spellId": 373930, "icon": "spell_frost_chainsofice", "index": 100}]}, {"id": 76066, "name": "Permafrost", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [76085, 76065], "prev": [76046], "entries": [{"id": 96195, "definitionId": 101197, "maxRanks": 1, "type": "passive", "name": "Permafrost", "spellId": 207200, "icon": "achievement_zone_frostfire", "index": 100}]}, {"id": 76068, "name": "Veteran of the Third War", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [76065], "prev": [76069, 76046, 76074], "entries": [{"id": 96197, "definitionId": 101199, "maxRanks": 1, "type": "passive", "name": "Veteran of the Third War", "spellId": 48263, "icon": "spell_misc_warsongfocus", "index": 100}]}, {"id": 76075, "name": "Death Pact", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [76065, 76076], "prev": [76069], "entries": [{"id": 96204, "definitionId": 101206, "maxRanks": 1, "type": "active", "name": "Death Pact", "spellId": 48743, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 76061, "name": "Brittle", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [76076], "prev": [76060, 76069, 76059], "entries": [{"id": 96190, "definitionId": 101192, "maxRanks": 1, "type": "passive", "name": "Brittle", "spellId": 374504, "icon": "ability_bosskilrogg_deaththroes", "index": 100}]}, {"id": 102006, "name": "Death's Reach", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [76076, 76063], "prev": [76060], "entries": [{"id": 126014, "definitionId": 130845, "maxRanks": 1, "type": "passive", "name": "Death's Reach", "spellId": 276079, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 76085, "name": "Icy Talons", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76086, 76052, 76064], "prev": [76066, 101708, 76083], "entries": [{"id": 96214, "definitionId": 101216, "maxRanks": 1, "type": "passive", "name": "Icy Talons", "spellId": 194878, "icon": "spell_deathknight_icytalons", "index": 100}]}, {"id": 76065, "name": "Anti-Magic Zone", "type": "single", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76064, 76048, 76077], "prev": [76068, 76075, 76066], "entries": [{"id": 96194, "definitionId": 101196, "maxRanks": 1, "type": "active", "name": "Anti-Magic Zone", "spellId": 51052, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76076, "name": "Unholy Bond", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76077, 76057, 76063], "prev": [76075, 102006, 76061], "entries": [{"id": 96205, "definitionId": 101207, "maxRanks": 1, "type": "passive", "name": "Unholy Bond", "spellId": 374261, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 76086, "name": "Ice Prison", "type": "single", "posX": 2400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96215, "definitionId": 101217, "maxRanks": 1, "type": "passive", "name": "Ice Prison", "spellId": 454786, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76052, "name": "Gloom Ward", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96180, "definitionId": 101182, "maxRanks": 1, "type": "passive", "name": "Gloom Ward", "spellId": 391571, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 76064, "name": "Asphyxiate", "type": "single", "posX": 3600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087, 76078], "prev": [76085, 76065], "entries": [{"id": 96193, "definitionId": 101195, "maxRanks": 1, "type": "active", "name": "Asphyxiate", "spellId": 221562, "icon": "ability_deathknight_asphixiate", "index": 100}]}, {"id": 76048, "name": "Assimilation", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078], "prev": [76065], "entries": [{"id": 96176, "definitionId": 101178, "maxRanks": 1, "type": "passive", "name": "Assimilation", "spellId": 374383, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76077, "name": "Wraith Walk", "type": "single", "posX": 4800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078, 76058], "prev": [76065, 76076], "entries": [{"id": 96206, "definitionId": 101208, "maxRanks": 1, "type": "active", "name": "Wraith Walk", "spellId": 212552, "icon": "inv_helm_plate_raiddeathknight_p_01", "index": 100}]}, {"id": 76057, "name": "Grip of the Dead", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076], "entries": [{"id": 96186, "definitionId": 101188, "maxRanks": 1, "type": "passive", "name": "Grip of the Dead", "spellId": 273952, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 76063, "name": "Soul Reaper", "type": "single", "posX": 6000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076, 102006], "entries": [{"id": 96192, "definitionId": 101194, "maxRanks": 1, "type": "active", "name": "Soul Reaper", "spellId": 343294, "icon": "ability_deathknight_soulreaper", "index": 100}]}, {"id": 76087, "name": "Suppression", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76088, 76051], "prev": [76052, 76086, 76064], "entries": [{"id": 96216, "definitionId": 101218, "maxRanks": 1, "type": "passive", "name": "Suppression", "spellId": 374049, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 76078, "name": "Blood Scent", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76051, 76055], "prev": [76048, 76064, 76077], "entries": [{"id": 96207, "definitionId": 101209, "maxRanks": 1, "type": "passive", "name": "Blood Scent", "spellId": 374030, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 76058, "name": "Unholy Endurance", "type": "single", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76055, 76056], "prev": [76057, 76063, 76077], "entries": [{"id": 96187, "definitionId": 101189, "maxRanks": 1, "type": "passive", "name": "Unholy Endurance", "spellId": 389682, "icon": "spell_deathknight_subversion", "index": 100}]}, {"id": 76088, "name": "Osmosis", "type": "single", "posX": 2400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079], "prev": [76087], "entries": [{"id": 96217, "definitionId": 101219, "maxRanks": 1, "type": "passive", "name": "Osmosis", "spellId": 454835, "icon": "spell_nature_rune", "index": 100}]}, {"id": 76051, "name": "Insidious Chill", "type": "single", "posX": 3600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079, 76080], "prev": [76078, 76087], "entries": [{"id": 96179, "definitionId": 101181, "maxRanks": 1, "type": "passive", "name": "Insidious Chill", "spellId": 391566, "icon": "ability_racial_wardoftheloafrost", "index": 100}]}, {"id": 76055, "name": "Runic Protection", "type": "single", "posX": 4800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76080, 76054], "prev": [76058, 76078], "entries": [{"id": 96183, "definitionId": 101185, "maxRanks": 1, "type": "passive", "name": "Runic Protection", "spellId": 454788, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 76056, "name": "Blood Draw", "type": "single", "posX": 6000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76054], "prev": [76058], "entries": [{"id": 96184, "definitionId": 101186, "maxRanks": 1, "type": "passive", "name": "Blood Draw", "spellId": 374598, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 76079, "name": "Rune Mastery", "type": "single", "posX": 3000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102008, 76050], "prev": [76051, 76088], "entries": [{"id": 96208, "definitionId": 101210, "maxRanks": 2, "type": "passive", "name": "Rune Mastery", "spellId": 374574, "icon": "ability_deathknight_hungeringruneblade", "index": 100}]}, {"id": 76080, "name": "Subduing Grasp", "type": "single", "posX": 4200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76050, 76049, 102007], "prev": [76055, 76051], "entries": [{"id": 96209, "definitionId": 101211, "maxRanks": 1, "type": "passive", "name": "Subduing Grasp", "spellId": 454822, "icon": "spell_nature_elementalshields", "index": 100}]}, {"id": 76054, "name": "Will of the Necropolis", "type": "single", "posX": 5400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102007, 76053], "prev": [76055, 76056], "entries": [{"id": 96182, "definitionId": 101184, "maxRanks": 2, "type": "passive", "name": "Will of the Necropolis", "spellId": 206967, "icon": "achievement_boss_kelthuzad_01", "index": 100}]}, {"id": 102008, "name": "Null Magic", "type": "single", "posX": 2400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76079], "entries": [{"id": 126016, "definitionId": 130847, "maxRanks": 1, "type": "passive", "name": "Null Magic", "spellId": 454842, "icon": "spell_shadow_detectinvisibility", "index": 100}]}, {"id": 76050, "name": "Unyielding Will", "type": "single", "posX": 3600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76079], "entries": [{"id": 96178, "definitionId": 101180, "maxRanks": 1, "type": "passive", "name": "Unyielding Will", "spellId": 457574, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 76049, "name": "Abomination Limb", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080], "entries": [{"id": 96177, "definitionId": 101179, "maxRanks": 1, "type": "active", "name": "Abomination Limb", "spellId": 383269, "icon": "ability_maldraxxus_deathknight", "index": 100}]}, {"id": 102007, "name": "Death's Echo", "type": "single", "posX": 4800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76054], "entries": [{"id": 126015, "definitionId": 130846, "maxRanks": 1, "type": "passive", "name": "Death's Echo", "spellId": 356367, "icon": "inv_fabric_ebonweave", "index": 100}]}, {"id": 76053, "name": "Vestigial Shell", "type": "single", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76054], "entries": [{"id": 96181, "definitionId": 101183, "maxRanks": 1, "type": "passive", "name": "Vestigial Shell", "spellId": 454851, "icon": "ability_domination_rune12", "index": 100}]}], "specNodes": [{"id": 76115, "name": "Frost Strike", "type": "single", "posX": 12600, "posY": 1200, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "next": [76116, 76114], "prev": [], "entries": [{"id": 96245, "definitionId": 101247, "maxRanks": 1, "type": "active", "name": "Frost Strike", "spellId": 49143, "icon": "spell_deathknight_empowerruneblade2", "index": 100}]}, {"id": 76116, "name": "Obliterate", "type": "single", "posX": 12000, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76117], "prev": [76115], "entries": [{"id": 96246, "definitionId": 101248, "maxRanks": 1, "type": "active", "name": "Obliterate", "spellId": 49020, "icon": "spell_deathknight_classicon", "index": 100}]}, {"id": 76114, "name": "Howling Blast", "type": "single", "posX": 13200, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76113], "prev": [76115], "entries": [{"id": 96244, "definitionId": 101246, "maxRanks": 1, "type": "active", "name": "Howling Blast", "spellId": 49184, "icon": "spell_frost_arcticwinds", "index": 100}]}, {"id": 76117, "name": "Killing Machine", "type": "single", "posX": 12000, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76118, 76103], "prev": [76116], "entries": [{"id": 96247, "definitionId": 101249, "maxRanks": 1, "type": "passive", "name": "Killing Machine", "spellId": 51128, "icon": "inv_sword_122", "index": 100}]}, {"id": 76113, "name": "Everfrost", "type": "single", "posX": 13200, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76102, 76112], "prev": [76114], "entries": [{"id": 96243, "definitionId": 101245, "maxRanks": 1, "type": "passive", "name": "Everfrost", "spellId": 376938, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76118, "name": "Unleashed Frenzy", "type": "single", "posX": 11400, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76119, 76092], "prev": [76117], "entries": [{"id": 96248, "definitionId": 101250, "maxRanks": 1, "type": "passive", "name": "Unleashed Frenzy", "spellId": 376905, "icon": "spell_deathknight_icetouch", "index": 100}]}, {"id": 76103, "name": "Improved Frost Strike", "type": "single", "posX": 12000, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76092, 101929], "prev": [76117], "entries": [{"id": 96233, "definitionId": 101235, "maxRanks": 2, "type": "passive", "name": "Improved Frost Strike", "spellId": 316803, "icon": "spell_deathknight_empowerruneblade2", "index": 100}]}, {"id": 76102, "name": "Runic Command", "type": "single", "posX": 13200, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [101929, 76096], "prev": [76113], "entries": [{"id": 96232, "definitionId": 101234, "maxRanks": 2, "type": "passive", "name": "Runic Command", "spellId": 376251, "icon": "ability_deathknight_remorselesswinters", "index": 100}]}, {"id": 76112, "name": "Improved Rime", "type": "single", "posX": 13800, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76096, 76111], "prev": [76113], "entries": [{"id": 96242, "definitionId": 101244, "maxRanks": 1, "type": "passive", "name": "Improved Rime", "spellId": 316838, "icon": "spell_frost_freezingbreath", "index": 100}]}, {"id": 76119, "name": "Improved Obliterate", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76120, 76035, 76089], "prev": [76118], "entries": [{"id": 96249, "definitionId": 101251, "maxRanks": 1, "type": "passive", "name": "Improved Obliterate", "spellId": 317198, "icon": "spell_deathknight_classicon", "index": 100}]}, {"id": 76092, "name": "Glacial Advance", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76089], "prev": [76103, 76118], "entries": [{"id": 96221, "definitionId": 101223, "maxRanks": 1, "type": "active", "name": "Glacial Advance", "spellId": 194913, "icon": "ability_hunter_glacialtrap", "index": 100}]}, {"id": 101929, "name": "Pillar of Frost", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76100, 101930, 76106], "prev": [76102, 76103], "entries": [{"id": 125874, "definitionId": 130705, "maxRanks": 1, "type": "active", "name": "Pillar of Frost", "spellId": 51271, "icon": "ability_deathknight_pillaroffrost", "index": 100}]}, {"id": 76096, "name": "Frostscythe", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76110], "prev": [76112, 76102], "entries": [{"id": 96225, "definitionId": 101227, "maxRanks": 1, "type": "active", "name": "Frostscythe", "spellId": 207230, "icon": "inv_misc_2h_farmscythe_a_01", "index": 100}]}, {"id": 76111, "name": "Biting Cold", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76110, 76098], "prev": [76112], "entries": [{"id": 96241, "definitionId": 101243, "maxRanks": 1, "type": "passive", "name": "Biting Cold", "spellId": 377056, "icon": "ability_deathknight_remorselesswinters2", "index": 100}]}, {"id": 76120, "name": "Frigid Executioner / Rage of the Frozen Champion", "type": "choice", "posX": 10200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121], "prev": [76119], "entries": [{"id": 96251, "definitionId": 101253, "maxRanks": 1, "type": "passive", "name": "Frigid Executioner", "spellId": 377073, "icon": "spell_shadow_focusedpower", "index": 100}, {"id": 96250, "definitionId": 101252, "maxRanks": 1, "type": "passive", "name": "Rage of the Frozen Champion", "spellId": 377076, "icon": "spell_mage_frostbomb", "index": 200}]}, {"id": 76035, "name": "Cold Heart", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121], "prev": [76119], "entries": [{"id": 96163, "definitionId": 101165, "maxRanks": 1, "type": "passive", "name": "Cold Heart", "spellId": 281208, "icon": "spell_frost_frozencore", "index": 100}]}, {"id": 76089, "name": "Horn of Winter", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121, 76037], "prev": [76119, 76092], "entries": [{"id": 96218, "definitionId": 101220, "maxRanks": 1, "type": "active", "name": "Horn of Winter", "spellId": 57330, "icon": "inv_misc_horn_02", "index": 100}]}, {"id": 76100, "name": "Enduring Strength", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76037, 101931], "prev": [101929], "entries": [{"id": 96230, "definitionId": 101232, "maxRanks": 1, "type": "passive", "name": "Enduring Strength", "spellId": 377190, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 101930, "name": "Icecap", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101931], "prev": [101929], "entries": [{"id": 125875, "definitionId": 130706, "maxRanks": 1, "type": "passive", "name": "Icecap", "spellId": 207126, "icon": "inv_misc_herb_icecap", "index": 100}]}, {"id": 76106, "name": "Frostwhelp's Aid", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101931, 76099], "prev": [101929], "entries": [{"id": 96236, "definitionId": 101238, "maxRanks": 1, "type": "passive", "name": "Frostwhelp's Aid", "spellId": 377226, "icon": "inv_pet_dkwhelplingfrost", "index": 100}]}, {"id": 76110, "name": "Empower Rune Weapon", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76099, 76109], "prev": [76111, 76096], "entries": [{"id": 96240, "definitionId": 101242, "maxRanks": 1, "type": "active", "name": "Empower Rune Weapon", "spellId": 47568, "icon": "inv_sword_62", "index": 100}]}, {"id": 76098, "name": "Chill Streak", "type": "single", "posX": 15000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76109, 76097], "prev": [76111], "entries": [{"id": 96228, "definitionId": 101230, "maxRanks": 1, "type": "active", "name": "Chill Streak", "spellId": 305392, "icon": "spell_frost_piercing-chill", "index": 100}]}, {"id": 76121, "name": "Murderous Efficiency", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76122], "prev": [76035, 76089, 76120], "entries": [{"id": 96252, "definitionId": 101254, "maxRanks": 1, "type": "passive", "name": "Murderous Efficiency", "spellId": 207061, "icon": "spell_frost_frostarmor", "index": 100}]}, {"id": 76037, "name": "Inexorable Assault", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76122, 76101], "prev": [76089, 76100], "entries": [{"id": 96165, "definitionId": 101167, "maxRanks": 1, "type": "passive", "name": "Inexorable Assault", "spellId": 253593, "icon": "achievement_dungeon_icecrown_frostmourne", "index": 100}]}, {"id": 101931, "name": "Frostwyrm's Fury", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76101, 102009, 76105], "prev": [101930, 76100, 76106], "entries": [{"id": 125876, "definitionId": 130707, "maxRanks": 1, "type": "active", "name": "Frostwyrm's Fury", "spellId": 279302, "icon": "achievement_boss_sindragosa", "index": 100}]}, {"id": 76099, "name": "Gathering Storm", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76105, 76033], "prev": [76110, 76106], "entries": [{"id": 96229, "definitionId": 101231, "maxRanks": 1, "type": "passive", "name": "Gathering Storm", "spellId": 194912, "icon": "spell_frost_ice-shards", "index": 100}]}, {"id": 76109, "name": "Cryogenic Chamber", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76033], "prev": [76098, 76110], "entries": [{"id": 96239, "definitionId": 101241, "maxRanks": 1, "type": "passive", "name": "Cryogenic Chamber", "spellId": 456237, "icon": "spell_fire_bluecano", "index": 100}]}, {"id": 76097, "name": "Piercing Chill / Enduring Chill", "type": "choice", "posX": 15000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [76098], "entries": [{"id": 96227, "definitionId": 101229, "maxRanks": 1, "type": "passive", "name": "Piercing Chill", "spellId": 377351, "icon": "spell_frost_piercing-chill", "index": 100}, {"id": 96226, "definitionId": 101228, "maxRanks": 1, "type": "passive", "name": "Enduring Chill", "spellId": 377376, "icon": "spell_frost_piercing-chill", "index": 200}]}, {"id": 76122, "name": "Bonegrinder", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 2, "next": [76123], "prev": [76037, 76121], "entries": [{"id": 96253, "definitionId": 101255, "maxRanks": 2, "type": "passive", "name": "Bonegrinder", "spellId": 377098, "icon": "ability_deathknight_bonegrinder", "index": 100}]}, {"id": 76101, "name": "Smothering Offense", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [101933], "prev": [101931, 76037], "entries": [{"id": 96231, "definitionId": 101233, "maxRanks": 1, "type": "passive", "name": "Smothering Offense", "spellId": 435005, "icon": "inv_10_specialreagentfoozles_tuskclaw_ice", "index": 100}]}, {"id": 102009, "name": "Absolute Zero", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101931], "entries": [{"id": 126017, "definitionId": 130848, "maxRanks": 1, "type": "passive", "name": "Absolute Zero", "spellId": 377047, "icon": "spell_fire_blueflamering", "index": 100}]}, {"id": 76105, "name": "Avalanche", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76095], "prev": [76099, 101931], "entries": [{"id": 96235, "definitionId": 101237, "maxRanks": 1, "type": "passive", "name": "Avalanche", "spellId": 207142, "icon": "spell_frost_icestorm", "index": 100}]}, {"id": 76033, "name": "Icebreaker", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 2, "next": [76108], "prev": [76109, 76099], "entries": [{"id": 96161, "definitionId": 101163, "maxRanks": 2, "type": "passive", "name": "Icebreaker", "spellId": 392950, "icon": "ability_mage_icewall", "index": 100}]}, {"id": 76123, "name": "Obliteration", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76091], "prev": [76122], "entries": [{"id": 96254, "definitionId": 101256, "maxRanks": 1, "type": "passive", "name": "Obliteration", "spellId": 281238, "icon": "inv_axe_114", "index": 100}]}, {"id": 101933, "name": "Icy Death Torrent", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101932], "prev": [76101], "entries": [{"id": 125878, "definitionId": 130709, "maxRanks": 1, "type": "passive", "name": "Icy Death Torrent", "spellId": 435010, "icon": "ability_argus_soulburst", "index": 100}]}, {"id": 76095, "name": "Shattering Blade", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76094], "prev": [76105], "entries": [{"id": 96224, "definitionId": 101226, "maxRanks": 1, "type": "passive", "name": "Shattering Blade", "spellId": 207057, "icon": "inv_7af_deathknight_frostmournefragment", "index": 100}]}, {"id": 76108, "name": "Hyperpyrexia", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76093], "prev": [76033], "entries": [{"id": 96238, "definitionId": 101240, "maxRanks": 1, "type": "passive", "name": "Hyperpyrexia", "spellId": 456238, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 76091, "name": "Arctic Assault", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76123], "entries": [{"id": 96220, "definitionId": 101222, "maxRanks": 1, "type": "passive", "name": "Arctic Assault", "spellId": 456230, "icon": "artifactability_frostmage_blackicicles", "index": 100}]}, {"id": 101932, "name": "The Long Winter", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101933], "entries": [{"id": 125877, "definitionId": 130708, "maxRanks": 1, "type": "passive", "name": "The Long Winter", "spellId": 456240, "icon": "inv_10_dungeonjewelry_primalist_necklace_1_frost", "index": 100}]}, {"id": 76094, "name": "Shattered Frost", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76095], "entries": [{"id": 96223, "definitionId": 101225, "maxRanks": 1, "type": "passive", "name": "Shattered Frost", "spellId": 455993, "icon": "inv_10_enchanting_shard_color3", "index": 100}]}, {"id": 76093, "name": "Breath of Sindragosa", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76108], "entries": [{"id": 96222, "definitionId": 101224, "maxRanks": 1, "type": "active", "name": "Breath of Sindragosa", "spellId": 152279, "icon": "spell_deathknight_breathofsindragosa", "index": 100}]}], "heroNodes": [{"id": 95062, "name": "Reaper's Mark", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 33, "next": [95036, 95058, 95043], "prev": [], "entries": [{"id": 117659, "definitionId": 122671, "maxRanks": 1, "type": "active", "name": "Reaper's Mark", "spellId": 439843, "icon": "inv_ability_deathbringerdeathknight_reapersmark", "index": 100}], "freeNode": true}, {"id": 95036, "name": "Wave of Souls", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95061], "prev": [95062], "entries": [{"id": 117633, "definitionId": 122645, "maxRanks": 1, "type": "passive", "name": "Wave of Souls", "spellId": 439851, "icon": "spell_animamaw_wave", "index": 100}]}, {"id": 95058, "name": "Blood Fever", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95034], "prev": [95062], "entries": [{"id": 117655, "definitionId": 122667, "maxRanks": 1, "type": "passive", "name": "Blood Fever", "spellId": 440002, "icon": "ability_ironmaidens_corruptedblood", "index": 100}]}, {"id": 95043, "name": "Bind in Darkness", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95035], "prev": [95062], "entries": [{"id": 117640, "definitionId": 122652, "maxRanks": 1, "type": "passive", "name": "Bind in Darkness", "spellId": 440031, "icon": "ability_argus_soulbombdebuffsmall", "index": 100}]}, {"id": 95061, "name": "Soul Rupture", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95032], "prev": [95036], "entries": [{"id": 117658, "definitionId": 122670, "maxRanks": 1, "type": "passive", "name": "Soul Rupture", "spellId": 437161, "icon": "warlock_siphonlife", "index": 100}]}, {"id": 95034, "name": "Grim Reaper", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95057], "prev": [95058], "entries": [{"id": 117631, "definitionId": 122643, "maxRanks": 1, "type": "passive", "name": "Grim Reaper", "spellId": 434905, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 95035, "name": "Pact of the Deathbringer / Rune Carved Plates", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95049], "prev": [95043], "entries": [{"id": 117632, "definitionId": 122644, "maxRanks": 1, "type": "passive", "name": "Pact of the Deathbringer", "spellId": 440476, "icon": "ability_revendreth_deathknight", "index": 100}, {"id": 123420, "definitionId": 128258, "maxRanks": 1, "type": "passive", "name": "Rune Carved Plates", "spellId": 440282, "icon": "spell_deathknight_runetap", "index": 200}]}, {"id": 95032, "name": "Swift End / Painful Death", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95061], "entries": [{"id": 117629, "definitionId": 122641, "maxRanks": 1, "type": "passive", "name": "Swift End", "spellId": 443560, "icon": "ability_domination_rune02", "index": 100}, {"id": 123337, "definitionId": 128199, "maxRanks": 1, "type": "passive", "name": "Painful Death", "spellId": 443564, "icon": "ability_domination_rune12", "index": 200}]}, {"id": 95057, "name": "Dark Talons / Wither Away", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95034], "entries": [{"id": 117654, "definitionId": 122666, "maxRanks": 1, "type": "passive", "name": "Dark Talons", "spellId": 436687, "icon": "inv_shoulder_93", "index": 100}, {"id": 121984, "definitionId": 126884, "maxRanks": 1, "type": "passive", "name": "Wither Away", "spellId": 441894, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95049, "name": "Death's Messenger / Expelling Shield", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95035], "entries": [{"id": 117646, "definitionId": 122658, "maxRanks": 1, "type": "passive", "name": "Death's Messenger", "spellId": 437122, "icon": "ability_argus_deathfog", "index": 100}, {"id": 119140, "definitionId": 124040, "maxRanks": 1, "type": "passive", "name": "Expelling Shield", "spellId": 439948, "icon": "spell_shadow_antimagicshell", "index": 200}]}, {"id": 95068, "name": "Exterminate", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 33, "next": [], "prev": [95057, 95032, 95049], "entries": [{"id": 117665, "definitionId": 122677, "maxRanks": 1, "type": "passive", "name": "Exterminate", "spellId": 441378, "icon": "inv_polearm_2h_titanargus_d_01", "index": 100}]}, {"id": 95066, "name": "Rider's Champion", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 32, "next": [95060, 95067, 95037], "prev": [], "entries": [{"id": 117663, "definitionId": 122675, "maxRanks": 1, "type": "passive", "name": "Rider's Champion", "spellId": 444005, "icon": "achievement_zone_icecrown_01", "index": 100}], "freeNode": true}, {"id": 95060, "name": "On a Paler Horse / Death Charge", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95047], "prev": [95066], "entries": [{"id": 117657, "definitionId": 122669, "maxRanks": 1, "type": "passive", "name": "On a Paler Horse", "spellId": 444008, "icon": "inv_skeletalwarhorse_01_purple", "index": 100}, {"id": 123412, "definitionId": 128250, "maxRanks": 1, "type": "passive", "name": "Death Charge", "spellId": 444010, "icon": "ability_mount_steelwarhorse", "index": 200}]}, {"id": 95067, "name": "Mograine's Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95059], "prev": [95066], "entries": [{"id": 117664, "definitionId": 122676, "maxRanks": 1, "type": "passive", "name": "Mograine's Might", "spellId": 444047, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 95037, "name": "Horsemen's Aid / Pact of the Apocalypse", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95063], "prev": [95066], "entries": [{"id": 117634, "definitionId": 122646, "maxRanks": 1, "type": "passive", "name": "Horsemen's Aid", "spellId": 444074, "icon": "achievement_dungeon_nexusraid_10man", "index": 100}, {"id": 123410, "definitionId": 128248, "maxRanks": 1, "type": "passive", "name": "Pact of the Apocalypse", "spellId": 444083, "icon": "achievement_dungeon_nexus80_25man", "index": 200}]}, {"id": 95047, "name": "Whitemane's Famine", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95044], "prev": [95060], "entries": [{"id": 117644, "definitionId": 122656, "maxRanks": 1, "type": "passive", "name": "Whitemane's Famine", "spellId": 444033, "icon": "spell_deathknight_necroticplague", "index": 100}]}, {"id": 95059, "name": "Nazgrim's Conquest", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95042], "prev": [95067], "entries": [{"id": 117656, "definitionId": 122668, "maxRanks": 1, "type": "passive", "name": "Nazgrim's Conquest", "spellId": 444052, "icon": "ability_maldraxxus_warriorplantbanner", "index": 100}]}, {"id": 95063, "name": "Trollbane's Icy Fury", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95054], "prev": [95037], "entries": [{"id": 117660, "definitionId": 122672, "maxRanks": 1, "type": "passive", "name": "Trollbane's Icy Fury", "spellId": 444097, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95044, "name": "Hungering Thirst", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95047], "entries": [{"id": 117641, "definitionId": 122653, "maxRanks": 1, "type": "passive", "name": "Hungering Thirst", "spellId": 444037, "icon": "spell_shadow_fumble", "index": 100}]}, {"id": 95042, "name": "Fury of the Horsemen / A Feast of Souls", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95059], "entries": [{"id": 117639, "definitionId": 122651, "maxRanks": 1, "type": "passive", "name": "Fury of the Horsemen", "spellId": 444069, "icon": "inv_plate_raiddeathknightmythic_o_01helm", "index": 100}, {"id": 123411, "definitionId": 128249, "maxRanks": 1, "type": "passive", "name": "A Feast of Souls", "spellId": 444072, "icon": "inv_misc_supersoulash", "index": 200}]}, {"id": 95054, "name": "Mawsworn Menace", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95063], "entries": [{"id": 117651, "definitionId": 122663, "maxRanks": 1, "type": "passive", "name": "Mawsworn Menace", "spellId": 444099, "icon": "inv_mawguardpet_black", "index": 100}]}, {"id": 95041, "name": "Apocalypse Now", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 32, "requiresNode": 76196, "next": [], "prev": [95042, 95044, 95054], "entries": [{"id": 117638, "definitionId": 122650, "maxRanks": 1, "type": "passive", "name": "Apocalypse Now", "spellId": 444040, "icon": "inv_ability_rideroftheapocalypsedeathknight_apocalypsenow", "index": 100}]}], "subTreeNodes": [{"id": 99821, "name": "Deathbringer / Rider of the Apocalypse", "type": "subtree", "posX": 8400, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123324, "type": "subtree", "name": "Deathbringer", "traitSubTreeId": 33, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-deathbringer", "nodes": [95062, 95036, 95058, 95043, 95061, 95034, 95035, 95032, 95057, 95049, 95068]}, {"id": 123323, "type": "subtree", "name": "Rider of the Apocalypse", "traitSubTreeId": 32, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-rideroftheapocalypse", "nodes": [95066, 95060, 95067, 95037, 95047, 95059, 95063, 95044, 95042, 95054, 95041]}]}], "fullNodeOrder": [76033, 76035, 76037, 76038, 76039, 76040, 76041, 76042, 76043, 76044, 76045, 76046, 76048, 76049, 76050, 76051, 76052, 76053, 76054, 76055, 76056, 76057, 76058, 76059, 76060, 76061, 76063, 76064, 76065, 76066, 76067, 76068, 76069, 76071, 76072, 76073, 76074, 76075, 76076, 76077, 76078, 76079, 76080, 76081, 76083, 76084, 76085, 76086, 76087, 76088, 76089, 76091, 76092, 76093, 76094, 76095, 76096, 76097, 76098, 76099, 76100, 76101, 76102, 76103, 76105, 76106, 76108, 76109, 76110, 76111, 76112, 76113, 76114, 76115, 76116, 76117, 76118, 76119, 76120, 76121, 76122, 76123, 76124, 76125, 76126, 76127, 76128, 76129, 76130, 76131, 76132, 76133, 76135, 76137, 76138, 76139, 76140, 76141, 76142, 76143, 76144, 76145, 76146, 76147, 76148, 76149, 76150, 76151, 76152, 76153, 76154, 76155, 76156, 76157, 76158, 76159, 76160, 76161, 76162, 76163, 76164, 76165, 76166, 76167, 76168, 76169, 76170, 76171, 76172, 76173, 76174, 76175, 76176, 76177, 76178, 76179, 76180, 76181, 76182, 76183, 76184, 76185, 76186, 76187, 76188, 76189, 76190, 76191, 76192, 76193, 76194, 76195, 76196, 76197, 95032, 95033, 95034, 95035, 95036, 95037, 95040, 95041, 95042, 95043, 95044, 95045, 95046, 95047, 95048, 95049, 95051, 95053, 95054, 95055, 95056, 95057, 95058, 95059, 95060, 95061, 95062, 95063, 95064, 95065, 95066, 95067, 95068, 99820, 99821, 99822, 101708, 101882, 101929, 101930, 101931, 101932, 101933, 102006, 102007, 102008, 102009, 102242, 102243, 102244, 102245]} \ No newline at end of file +{"traitTreeId": 750, "className": "Death Knight", "classId": 6, "specName": "Frost", "specId": 251, "classNodes": [{"id": 76081, "name": "Icebound Fortitude", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76045], "prev": [], "entries": [{"id": 96210, "definitionId": 101212, "maxRanks": 1, "type": "active", "name": "Icebound Fortitude", "spellId": 48792, "icon": "spell_deathknight_iceboundfortitude", "index": 100}], "freeNode": true}, {"id": 76071, "name": "Death Strike", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76067], "prev": [], "entries": [{"id": 96200, "definitionId": 101202, "maxRanks": 1, "type": "active", "name": "Death Strike", "spellId": 49998, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76072, "name": "Raise Dead", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76073], "prev": [], "entries": [{"id": 96201, "definitionId": 101203, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46585, "icon": "inv_pet_ghoul", "index": 100}]}, {"id": 76045, "name": "Runic Attenuation", "type": "single", "posX": 3000, "posY": 1800, "maxRanks": 1, "next": [76084, 76044, 76046], "prev": [76081], "entries": [{"id": 96173, "definitionId": 101175, "maxRanks": 1, "type": "passive", "name": "Runic Attenuation", "spellId": 207104, "icon": "boss_odunrunes_blue", "index": 100}]}, {"id": 76067, "name": "Improved Death Strike", "type": "single", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [76046, 76074, 76069], "prev": [76071], "entries": [{"id": 96196, "definitionId": 101198, "maxRanks": 1, "type": "passive", "name": "Improved Death Strike", "spellId": 374277, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76073, "name": "Cleaving Strikes", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [76069, 76059, 76060], "prev": [76072], "entries": [{"id": 96202, "definitionId": 101204, "maxRanks": 1, "type": "passive", "name": "Cleaving Strikes", "spellId": 316916, "icon": "spell_shadow_deathanddecay", "index": 100}]}, {"id": 76084, "name": "Mind Freeze", "type": "single", "posX": 2400, "posY": 2400, "maxRanks": 1, "next": [76083, 101708], "prev": [76045], "entries": [{"id": 96213, "definitionId": 101215, "maxRanks": 1, "type": "active", "name": "Mind Freeze", "spellId": 47528, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 76044, "name": "Blinding Sleet", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [101708], "prev": [76045], "entries": [{"id": 96172, "definitionId": 101174, "maxRanks": 1, "type": "active", "name": "Blinding Sleet", "spellId": 207167, "icon": "spell_frost_chillingblast", "index": 100}]}, {"id": 76046, "name": "Anti-Magic Barrier", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [101708, 76066, 76068], "prev": [76045, 76067], "entries": [{"id": 96174, "definitionId": 101176, "maxRanks": 1, "type": "passive", "name": "Anti-Magic Barrier", "spellId": 205727, "icon": "spell_shadow_antimagicshell", "index": 100}]}, {"id": 76074, "name": "March of Darkness", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [76068], "prev": [76067], "entries": [{"id": 96203, "definitionId": 101205, "maxRanks": 1, "type": "passive", "name": "March of Darkness", "spellId": 391546, "icon": "ability_argus_deathfog", "index": 100}]}, {"id": 76069, "name": "Unholy Ground", "type": "single", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [76068, 76075, 76061], "prev": [76073, 76067], "entries": [{"id": 96198, "definitionId": 101200, "maxRanks": 1, "type": "passive", "name": "Unholy Ground", "spellId": 374265, "icon": "ability_deathknight_desecratedground", "index": 100}]}, {"id": 76059, "name": "Control Undead", "type": "single", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [76061], "prev": [76073], "entries": [{"id": 96188, "definitionId": 101190, "maxRanks": 1, "type": "active", "name": "Control Undead", "spellId": 111673, "icon": "inv_misc_bone_skull_01", "index": 100}]}, {"id": 76060, "name": "Enfeeble / Sacrificial Pact", "type": "choice", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [76061, 102006], "prev": [76073], "entries": [{"id": 96189, "definitionId": 101191, "maxRanks": 1, "type": "passive", "name": "Enfeeble", "spellId": 392566, "icon": "ability_creature_poison_01", "index": 100}, {"id": 125608, "definitionId": 130440, "maxRanks": 1, "type": "active", "name": "Sacrificial Pact", "spellId": 327574, "icon": "spell_shadow_corpseexplode", "index": 200}]}, {"id": 76083, "name": "Coldthirst", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084], "entries": [{"id": 96212, "definitionId": 101214, "maxRanks": 1, "type": "passive", "name": "Coldthirst", "spellId": 378848, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 101708, "name": "Proliferating Chill", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084, 76046, 76044], "entries": [{"id": 125606, "definitionId": 130438, "maxRanks": 1, "type": "passive", "name": "Proliferating Chill", "spellId": 373930, "icon": "spell_frost_chainsofice", "index": 100}]}, {"id": 76066, "name": "Permafrost", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [76085, 76065], "prev": [76046], "entries": [{"id": 96195, "definitionId": 101197, "maxRanks": 1, "type": "passive", "name": "Permafrost", "spellId": 207200, "icon": "achievement_zone_frostfire", "index": 100}]}, {"id": 76068, "name": "Veteran of the Third War", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [76065], "prev": [76069, 76046, 76074], "entries": [{"id": 96197, "definitionId": 101199, "maxRanks": 1, "type": "passive", "name": "Veteran of the Third War", "spellId": 48263, "icon": "spell_misc_warsongfocus", "index": 100}]}, {"id": 76075, "name": "Death Pact", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [76065, 76076], "prev": [76069], "entries": [{"id": 96204, "definitionId": 101206, "maxRanks": 1, "type": "active", "name": "Death Pact", "spellId": 48743, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 76061, "name": "Brittle", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [76076], "prev": [76060, 76069, 76059], "entries": [{"id": 96190, "definitionId": 101192, "maxRanks": 1, "type": "passive", "name": "Brittle", "spellId": 374504, "icon": "ability_bosskilrogg_deaththroes", "index": 100}]}, {"id": 102006, "name": "Death's Reach", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [76076, 76063], "prev": [76060], "entries": [{"id": 126014, "definitionId": 130845, "maxRanks": 1, "type": "passive", "name": "Death's Reach", "spellId": 276079, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 76085, "name": "Icy Talons", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76086, 76052, 76064], "prev": [76066, 101708, 76083], "entries": [{"id": 96214, "definitionId": 101216, "maxRanks": 1, "type": "passive", "name": "Icy Talons", "spellId": 194878, "icon": "spell_deathknight_icytalons", "index": 100}]}, {"id": 76065, "name": "Anti-Magic Zone", "type": "single", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76064, 76048, 76077], "prev": [76068, 76075, 76066], "entries": [{"id": 96194, "definitionId": 101196, "maxRanks": 1, "type": "active", "name": "Anti-Magic Zone", "spellId": 51052, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76076, "name": "Unholy Bond", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76077, 76057, 76063], "prev": [76075, 102006, 76061], "entries": [{"id": 96205, "definitionId": 101207, "maxRanks": 1, "type": "passive", "name": "Unholy Bond", "spellId": 374261, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 76086, "name": "Ice Prison", "type": "single", "posX": 2400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96215, "definitionId": 101217, "maxRanks": 1, "type": "passive", "name": "Ice Prison", "spellId": 454786, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76052, "name": "Gloom Ward", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96180, "definitionId": 101182, "maxRanks": 1, "type": "passive", "name": "Gloom Ward", "spellId": 391571, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 76064, "name": "Asphyxiate", "type": "single", "posX": 3600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087, 76078], "prev": [76085, 76065], "entries": [{"id": 96193, "definitionId": 101195, "maxRanks": 1, "type": "active", "name": "Asphyxiate", "spellId": 221562, "icon": "ability_deathknight_asphixiate", "index": 100}]}, {"id": 76048, "name": "Assimilation", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078], "prev": [76065], "entries": [{"id": 96176, "definitionId": 101178, "maxRanks": 1, "type": "passive", "name": "Assimilation", "spellId": 374383, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76077, "name": "Wraith Walk", "type": "single", "posX": 4800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078, 76058], "prev": [76065, 76076], "entries": [{"id": 96206, "definitionId": 101208, "maxRanks": 1, "type": "active", "name": "Wraith Walk", "spellId": 212552, "icon": "inv_helm_plate_raiddeathknight_p_01", "index": 100}]}, {"id": 76057, "name": "Grip of the Dead", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076], "entries": [{"id": 96186, "definitionId": 101188, "maxRanks": 1, "type": "passive", "name": "Grip of the Dead", "spellId": 273952, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 76063, "name": "Soul Reaper", "type": "single", "posX": 6000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076, 102006], "entries": [{"id": 96192, "definitionId": 101194, "maxRanks": 1, "type": "active", "name": "Soul Reaper", "spellId": 343294, "icon": "ability_deathknight_soulreaper", "index": 100}]}, {"id": 76087, "name": "Suppression", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76088, 76051], "prev": [76052, 76086, 76064], "entries": [{"id": 96216, "definitionId": 101218, "maxRanks": 1, "type": "passive", "name": "Suppression", "spellId": 374049, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 76078, "name": "Blood Scent", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76051, 76055], "prev": [76048, 76064, 76077], "entries": [{"id": 96207, "definitionId": 101209, "maxRanks": 1, "type": "passive", "name": "Blood Scent", "spellId": 374030, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 76058, "name": "Unholy Endurance", "type": "single", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76055, 76056], "prev": [76057, 76063, 76077], "entries": [{"id": 96187, "definitionId": 101189, "maxRanks": 1, "type": "passive", "name": "Unholy Endurance", "spellId": 389682, "icon": "spell_deathknight_subversion", "index": 100}]}, {"id": 76088, "name": "Osmosis", "type": "single", "posX": 2400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079], "prev": [76087], "entries": [{"id": 96217, "definitionId": 101219, "maxRanks": 1, "type": "passive", "name": "Osmosis", "spellId": 454835, "icon": "spell_nature_rune", "index": 100}]}, {"id": 76051, "name": "Insidious Chill", "type": "single", "posX": 3600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079, 76080], "prev": [76078, 76087], "entries": [{"id": 96179, "definitionId": 101181, "maxRanks": 1, "type": "passive", "name": "Insidious Chill", "spellId": 391566, "icon": "ability_racial_wardoftheloafrost", "index": 100}]}, {"id": 76055, "name": "Runic Protection", "type": "single", "posX": 4800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76080, 76054], "prev": [76058, 76078], "entries": [{"id": 96183, "definitionId": 101185, "maxRanks": 1, "type": "passive", "name": "Runic Protection", "spellId": 454788, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 76056, "name": "Blood Draw", "type": "single", "posX": 6000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76054], "prev": [76058], "entries": [{"id": 96184, "definitionId": 101186, "maxRanks": 1, "type": "passive", "name": "Blood Draw", "spellId": 374598, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 76079, "name": "Rune Mastery", "type": "single", "posX": 3000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102008, 76050], "prev": [76051, 76088], "entries": [{"id": 96208, "definitionId": 101210, "maxRanks": 2, "type": "passive", "name": "Rune Mastery", "spellId": 374574, "icon": "ability_deathknight_hungeringruneblade", "index": 100}]}, {"id": 76080, "name": "Subduing Grasp", "type": "single", "posX": 4200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76050, 76049, 102007], "prev": [76055, 76051], "entries": [{"id": 96209, "definitionId": 101211, "maxRanks": 1, "type": "passive", "name": "Subduing Grasp", "spellId": 454822, "icon": "spell_nature_elementalshields", "index": 100}]}, {"id": 76054, "name": "Will of the Necropolis", "type": "single", "posX": 5400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102007, 76053], "prev": [76055, 76056], "entries": [{"id": 96182, "definitionId": 101184, "maxRanks": 2, "type": "passive", "name": "Will of the Necropolis", "spellId": 206967, "icon": "achievement_boss_kelthuzad_01", "index": 100}]}, {"id": 102008, "name": "Null Magic", "type": "single", "posX": 2400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76079], "entries": [{"id": 126016, "definitionId": 130847, "maxRanks": 1, "type": "passive", "name": "Null Magic", "spellId": 454842, "icon": "spell_shadow_detectinvisibility", "index": 100}]}, {"id": 76050, "name": "Unyielding Will", "type": "single", "posX": 3600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76079], "entries": [{"id": 96178, "definitionId": 101180, "maxRanks": 1, "type": "passive", "name": "Unyielding Will", "spellId": 457574, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 76049, "name": "Abomination Limb", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080], "entries": [{"id": 96177, "definitionId": 101179, "maxRanks": 1, "type": "active", "name": "Abomination Limb", "spellId": 383269, "icon": "ability_maldraxxus_deathknight", "index": 100}]}, {"id": 102007, "name": "Death's Echo", "type": "single", "posX": 4800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76054], "entries": [{"id": 126015, "definitionId": 130846, "maxRanks": 1, "type": "passive", "name": "Death's Echo", "spellId": 356367, "icon": "inv_fabric_ebonweave", "index": 100}]}, {"id": 76053, "name": "Vestigial Shell", "type": "single", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76054], "entries": [{"id": 96181, "definitionId": 101183, "maxRanks": 1, "type": "passive", "name": "Vestigial Shell", "spellId": 454851, "icon": "ability_domination_rune12", "index": 100}]}], "specNodes": [{"id": 76115, "name": "Frost Strike", "type": "single", "posX": 12600, "posY": 1200, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "next": [76116, 76114], "prev": [], "entries": [{"id": 96245, "definitionId": 101247, "maxRanks": 1, "type": "active", "name": "Frost Strike", "spellId": 49143, "icon": "spell_deathknight_empowerruneblade2", "index": 100}]}, {"id": 76116, "name": "Obliterate", "type": "single", "posX": 12000, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76117], "prev": [76115], "entries": [{"id": 96246, "definitionId": 101248, "maxRanks": 1, "type": "active", "name": "Obliterate", "spellId": 49020, "icon": "spell_deathknight_classicon", "index": 100}]}, {"id": 76114, "name": "Howling Blast", "type": "single", "posX": 13200, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76113], "prev": [76115], "entries": [{"id": 96244, "definitionId": 101246, "maxRanks": 1, "type": "active", "name": "Howling Blast", "spellId": 49184, "icon": "spell_frost_arcticwinds", "index": 100}]}, {"id": 76117, "name": "Killing Machine", "type": "single", "posX": 12000, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76118, 76103], "prev": [76116], "entries": [{"id": 96247, "definitionId": 101249, "maxRanks": 1, "type": "passive", "name": "Killing Machine", "spellId": 51128, "icon": "inv_sword_122", "index": 100}]}, {"id": 76113, "name": "Everfrost", "type": "single", "posX": 13200, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76102, 76112], "prev": [76114], "entries": [{"id": 96243, "definitionId": 101245, "maxRanks": 1, "type": "passive", "name": "Everfrost", "spellId": 376938, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76118, "name": "Unleashed Frenzy", "type": "single", "posX": 11400, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76119, 76092], "prev": [76117], "entries": [{"id": 96248, "definitionId": 101250, "maxRanks": 1, "type": "passive", "name": "Unleashed Frenzy", "spellId": 376905, "icon": "spell_deathknight_icetouch", "index": 100}]}, {"id": 76103, "name": "Improved Frost Strike", "type": "single", "posX": 12000, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76092, 101929], "prev": [76117], "entries": [{"id": 96233, "definitionId": 101235, "maxRanks": 2, "type": "passive", "name": "Improved Frost Strike", "spellId": 316803, "icon": "spell_deathknight_empowerruneblade2", "index": 100}]}, {"id": 76102, "name": "Runic Command", "type": "single", "posX": 13200, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [101929, 76096], "prev": [76113], "entries": [{"id": 96232, "definitionId": 101234, "maxRanks": 2, "type": "passive", "name": "Runic Command", "spellId": 376251, "icon": "ability_deathknight_remorselesswinters", "index": 100}]}, {"id": 76112, "name": "Improved Rime", "type": "single", "posX": 13800, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76096, 76111], "prev": [76113], "entries": [{"id": 96242, "definitionId": 101244, "maxRanks": 1, "type": "passive", "name": "Improved Rime", "spellId": 316838, "icon": "spell_frost_freezingbreath", "index": 100}]}, {"id": 76119, "name": "Improved Obliterate", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76120, 76035, 76089], "prev": [76118], "entries": [{"id": 96249, "definitionId": 101251, "maxRanks": 1, "type": "passive", "name": "Improved Obliterate", "spellId": 317198, "icon": "spell_deathknight_classicon", "index": 100}]}, {"id": 76092, "name": "Glacial Advance", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76089], "prev": [76103, 76118], "entries": [{"id": 96221, "definitionId": 101223, "maxRanks": 1, "type": "active", "name": "Glacial Advance", "spellId": 194913, "icon": "ability_hunter_glacialtrap", "index": 100}]}, {"id": 101929, "name": "Pillar of Frost", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76100, 101930, 76106], "prev": [76102, 76103], "entries": [{"id": 125874, "definitionId": 130705, "maxRanks": 1, "type": "active", "name": "Pillar of Frost", "spellId": 51271, "icon": "ability_deathknight_pillaroffrost", "index": 100}]}, {"id": 76096, "name": "Frostscythe", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76110], "prev": [76112, 76102], "entries": [{"id": 96225, "definitionId": 101227, "maxRanks": 1, "type": "active", "name": "Frostscythe", "spellId": 207230, "icon": "inv_misc_2h_farmscythe_a_01", "index": 100}]}, {"id": 76111, "name": "Biting Cold", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76110, 76098], "prev": [76112], "entries": [{"id": 96241, "definitionId": 101243, "maxRanks": 1, "type": "passive", "name": "Biting Cold", "spellId": 377056, "icon": "ability_deathknight_remorselesswinters2", "index": 100}]}, {"id": 76120, "name": "Frigid Executioner / Rage of the Frozen Champion", "type": "choice", "posX": 10200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121], "prev": [76119], "entries": [{"id": 96251, "definitionId": 101253, "maxRanks": 1, "type": "passive", "name": "Frigid Executioner", "spellId": 377073, "icon": "spell_shadow_focusedpower", "index": 100}, {"id": 96250, "definitionId": 101252, "maxRanks": 1, "type": "passive", "name": "Rage of the Frozen Champion", "spellId": 377076, "icon": "spell_mage_frostbomb", "index": 200}]}, {"id": 76035, "name": "Cold Heart", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121], "prev": [76119], "entries": [{"id": 96163, "definitionId": 101165, "maxRanks": 1, "type": "passive", "name": "Cold Heart", "spellId": 281208, "icon": "spell_frost_frozencore", "index": 100}]}, {"id": 76089, "name": "Horn of Winter", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121, 76037], "prev": [76119, 76092], "entries": [{"id": 96218, "definitionId": 101220, "maxRanks": 1, "type": "active", "name": "Horn of Winter", "spellId": 57330, "icon": "inv_misc_horn_02", "index": 100}]}, {"id": 76100, "name": "Enduring Strength", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76037, 101931], "prev": [101929], "entries": [{"id": 96230, "definitionId": 101232, "maxRanks": 1, "type": "passive", "name": "Enduring Strength", "spellId": 377190, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 101930, "name": "Icecap", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101931], "prev": [101929], "entries": [{"id": 125875, "definitionId": 130706, "maxRanks": 1, "type": "passive", "name": "Icecap", "spellId": 207126, "icon": "inv_misc_herb_icecap", "index": 100}]}, {"id": 76106, "name": "Frostwhelp's Aid", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101931, 76099], "prev": [101929], "entries": [{"id": 96236, "definitionId": 101238, "maxRanks": 1, "type": "passive", "name": "Frostwhelp's Aid", "spellId": 377226, "icon": "inv_pet_dkwhelplingfrost", "index": 100}]}, {"id": 76110, "name": "Empower Rune Weapon", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76099, 76109], "prev": [76111, 76096], "entries": [{"id": 96240, "definitionId": 101242, "maxRanks": 1, "type": "active", "name": "Empower Rune Weapon", "spellId": 47568, "icon": "inv_sword_62", "index": 100}]}, {"id": 76098, "name": "Chill Streak", "type": "single", "posX": 15000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76109, 76097], "prev": [76111], "entries": [{"id": 96228, "definitionId": 101230, "maxRanks": 1, "type": "active", "name": "Chill Streak", "spellId": 305392, "icon": "spell_frost_piercing-chill", "index": 100}]}, {"id": 76121, "name": "Murderous Efficiency", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76122], "prev": [76035, 76089, 76120], "entries": [{"id": 96252, "definitionId": 101254, "maxRanks": 1, "type": "passive", "name": "Murderous Efficiency", "spellId": 207061, "icon": "spell_frost_frostarmor", "index": 100}]}, {"id": 76037, "name": "Inexorable Assault", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76122, 76101], "prev": [76089, 76100], "entries": [{"id": 96165, "definitionId": 101167, "maxRanks": 1, "type": "passive", "name": "Inexorable Assault", "spellId": 253593, "icon": "achievement_dungeon_icecrown_frostmourne", "index": 100}]}, {"id": 101931, "name": "Frostwyrm's Fury", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76101, 102009, 76105], "prev": [101930, 76100, 76106], "entries": [{"id": 125876, "definitionId": 130707, "maxRanks": 1, "type": "active", "name": "Frostwyrm's Fury", "spellId": 279302, "icon": "achievement_boss_sindragosa", "index": 100}]}, {"id": 76099, "name": "Gathering Storm", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76105, 76033], "prev": [76110, 76106], "entries": [{"id": 96229, "definitionId": 101231, "maxRanks": 1, "type": "passive", "name": "Gathering Storm", "spellId": 194912, "icon": "spell_frost_ice-shards", "index": 100}]}, {"id": 76109, "name": "Cryogenic Chamber", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76033], "prev": [76098, 76110], "entries": [{"id": 96239, "definitionId": 101241, "maxRanks": 1, "type": "passive", "name": "Cryogenic Chamber", "spellId": 456237, "icon": "spell_fire_bluecano", "index": 100}]}, {"id": 76097, "name": "Piercing Chill / Enduring Chill", "type": "choice", "posX": 15000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [76098], "entries": [{"id": 96227, "definitionId": 101229, "maxRanks": 1, "type": "passive", "name": "Piercing Chill", "spellId": 377351, "icon": "spell_frost_piercing-chill", "index": 100}, {"id": 96226, "definitionId": 101228, "maxRanks": 1, "type": "passive", "name": "Enduring Chill", "spellId": 377376, "icon": "spell_frost_piercing-chill", "index": 200}]}, {"id": 76122, "name": "Bonegrinder", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 2, "next": [76123], "prev": [76037, 76121], "entries": [{"id": 96253, "definitionId": 101255, "maxRanks": 2, "type": "passive", "name": "Bonegrinder", "spellId": 377098, "icon": "ability_deathknight_bonegrinder", "index": 100}]}, {"id": 76101, "name": "Smothering Offense", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [101933], "prev": [101931, 76037], "entries": [{"id": 96231, "definitionId": 101233, "maxRanks": 1, "type": "passive", "name": "Smothering Offense", "spellId": 435005, "icon": "inv_10_specialreagentfoozles_tuskclaw_ice", "index": 100}]}, {"id": 102009, "name": "Absolute Zero", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101931], "entries": [{"id": 126017, "definitionId": 130848, "maxRanks": 1, "type": "passive", "name": "Absolute Zero", "spellId": 377047, "icon": "spell_fire_blueflamering", "index": 100}]}, {"id": 76105, "name": "Avalanche", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76095], "prev": [76099, 101931], "entries": [{"id": 96235, "definitionId": 101237, "maxRanks": 1, "type": "passive", "name": "Avalanche", "spellId": 207142, "icon": "spell_frost_icestorm", "index": 100}]}, {"id": 76033, "name": "Icebreaker", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 2, "next": [76108], "prev": [76109, 76099], "entries": [{"id": 96161, "definitionId": 101163, "maxRanks": 2, "type": "passive", "name": "Icebreaker", "spellId": 392950, "icon": "ability_mage_icewall", "index": 100}]}, {"id": 76123, "name": "Obliteration", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76091], "prev": [76122], "entries": [{"id": 96254, "definitionId": 101256, "maxRanks": 1, "type": "passive", "name": "Obliteration", "spellId": 281238, "icon": "inv_axe_114", "index": 100}]}, {"id": 101933, "name": "Icy Death Torrent", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101932], "prev": [76101], "entries": [{"id": 125878, "definitionId": 130709, "maxRanks": 1, "type": "passive", "name": "Icy Death Torrent", "spellId": 435010, "icon": "ability_argus_soulburst", "index": 100}]}, {"id": 76095, "name": "Shattering Blade", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76094], "prev": [76105], "entries": [{"id": 96224, "definitionId": 101226, "maxRanks": 1, "type": "passive", "name": "Shattering Blade", "spellId": 207057, "icon": "inv_7af_deathknight_frostmournefragment", "index": 100}]}, {"id": 76108, "name": "Hyperpyrexia", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76093], "prev": [76033], "entries": [{"id": 96238, "definitionId": 101240, "maxRanks": 1, "type": "passive", "name": "Hyperpyrexia", "spellId": 456238, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 76091, "name": "Arctic Assault", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76123], "entries": [{"id": 96220, "definitionId": 101222, "maxRanks": 1, "type": "passive", "name": "Arctic Assault", "spellId": 456230, "icon": "artifactability_frostmage_blackicicles", "index": 100}]}, {"id": 101932, "name": "The Long Winter", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101933], "entries": [{"id": 125877, "definitionId": 130708, "maxRanks": 1, "type": "passive", "name": "The Long Winter", "spellId": 456240, "icon": "inv_10_dungeonjewelry_primalist_necklace_1_frost", "index": 100}]}, {"id": 76094, "name": "Shattered Frost", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76095], "entries": [{"id": 96223, "definitionId": 101225, "maxRanks": 1, "type": "passive", "name": "Shattered Frost", "spellId": 455993, "icon": "inv_10_enchanting_shard_color3", "index": 100}]}, {"id": 76093, "name": "Breath of Sindragosa", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76108], "entries": [{"id": 96222, "definitionId": 101224, "maxRanks": 1, "type": "active", "name": "Breath of Sindragosa", "spellId": 152279, "icon": "spell_deathknight_breathofsindragosa", "index": 100}]}], "heroNodes": [{"id": 95062, "name": "Reaper's Mark", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 33, "next": [95036, 95058, 95043], "prev": [], "entries": [{"id": 117659, "definitionId": 122671, "maxRanks": 1, "type": "active", "name": "Reaper's Mark", "spellId": 439843, "icon": "inv_ability_deathbringerdeathknight_reapersmark", "index": 100}], "freeNode": true}, {"id": 95036, "name": "Wave of Souls", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95061], "prev": [95062], "entries": [{"id": 117633, "definitionId": 122645, "maxRanks": 1, "type": "passive", "name": "Wave of Souls", "spellId": 439851, "icon": "spell_animamaw_wave", "index": 100}]}, {"id": 95058, "name": "Wither Away", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95034], "prev": [95062], "entries": [{"id": 117655, "definitionId": 122667, "maxRanks": 1, "type": "passive", "name": "Wither Away", "spellId": 441894, "icon": "sha_spell_warlock_demonsoul", "index": 100}]}, {"id": 95043, "name": "Bind in Darkness", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95035], "prev": [95062], "entries": [{"id": 117640, "definitionId": 122652, "maxRanks": 1, "type": "passive", "name": "Bind in Darkness", "spellId": 440031, "icon": "ability_argus_soulbombdebuffsmall", "index": 100}]}, {"id": 95061, "name": "Soul Rupture", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95032], "prev": [95036], "entries": [{"id": 117658, "definitionId": 122670, "maxRanks": 1, "type": "passive", "name": "Soul Rupture", "spellId": 437161, "icon": "warlock_siphonlife", "index": 100}]}, {"id": 95034, "name": "Grim Reaper / Reaper of Souls", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95057], "prev": [95058], "entries": [{"id": 117631, "definitionId": 122643, "maxRanks": 1, "type": "passive", "name": "Grim Reaper", "spellId": 434905, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}, {"id": 128235, "definitionId": 133042, "maxRanks": 1, "type": "passive", "name": "Reaper of Souls", "spellId": 440002, "icon": "pvp_soulrip", "index": 200}]}, {"id": 95035, "name": "Pact of the Deathbringer / Rune Carved Plates", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95049], "prev": [95043], "entries": [{"id": 117632, "definitionId": 122644, "maxRanks": 1, "type": "passive", "name": "Pact of the Deathbringer", "spellId": 440476, "icon": "ability_revendreth_deathknight", "index": 100}, {"id": 123420, "definitionId": 128258, "maxRanks": 1, "type": "passive", "name": "Rune Carved Plates", "spellId": 440282, "icon": "spell_deathknight_runetap", "index": 200}]}, {"id": 95032, "name": "Swift and Painful", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95061], "entries": [{"id": 117629, "definitionId": 122641, "maxRanks": 1, "type": "passive", "name": "Swift and Painful", "spellId": 443560, "icon": "ability_domination_rune02", "index": 100}]}, {"id": 95057, "name": "Dark Talons / Reaper's Onslaught", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95034], "entries": [{"id": 117654, "definitionId": 122666, "maxRanks": 1, "type": "passive", "name": "Dark Talons", "spellId": 436687, "icon": "inv_shoulder_93", "index": 100}, {"id": 128266, "definitionId": 133073, "maxRanks": 1, "type": "passive", "name": "Reaper's Onslaught", "spellId": 469870, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 95049, "name": "Death's Messenger / Expelling Shield", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95035], "entries": [{"id": 117646, "definitionId": 122658, "maxRanks": 1, "type": "passive", "name": "Death's Messenger", "spellId": 437122, "icon": "ability_argus_deathfog", "index": 100}, {"id": 128234, "definitionId": 133041, "maxRanks": 1, "type": "passive", "name": "Expelling Shield", "spellId": 439948, "icon": "spell_shadow_antimagicshell", "index": 200}]}, {"id": 95068, "name": "Exterminate", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 33, "next": [], "prev": [95057, 95032, 95049], "entries": [{"id": 117665, "definitionId": 122677, "maxRanks": 1, "type": "passive", "name": "Exterminate", "spellId": 441378, "icon": "inv_polearm_2h_titanargus_d_01", "index": 100}]}, {"id": 95066, "name": "Rider's Champion", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 32, "next": [95060, 95067, 95037], "prev": [], "entries": [{"id": 117663, "definitionId": 122675, "maxRanks": 1, "type": "passive", "name": "Rider's Champion", "spellId": 444005, "icon": "achievement_zone_icecrown_01", "index": 100}], "freeNode": true}, {"id": 95060, "name": "On a Paler Horse / Death Charge", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95047], "prev": [95066], "entries": [{"id": 117657, "definitionId": 122669, "maxRanks": 1, "type": "passive", "name": "On a Paler Horse", "spellId": 444008, "icon": "inv_skeletalwarhorse_01_purple", "index": 100}, {"id": 123412, "definitionId": 128250, "maxRanks": 1, "type": "passive", "name": "Death Charge", "spellId": 444010, "icon": "ability_mount_steelwarhorse", "index": 200}]}, {"id": 95067, "name": "Mograine's Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95059], "prev": [95066], "entries": [{"id": 117664, "definitionId": 122676, "maxRanks": 1, "type": "passive", "name": "Mograine's Might", "spellId": 444047, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 95037, "name": "Horsemen's Aid / Pact of the Apocalypse", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95063], "prev": [95066], "entries": [{"id": 117634, "definitionId": 122646, "maxRanks": 1, "type": "passive", "name": "Horsemen's Aid", "spellId": 444074, "icon": "achievement_dungeon_nexusraid_10man", "index": 100}, {"id": 123410, "definitionId": 128248, "maxRanks": 1, "type": "passive", "name": "Pact of the Apocalypse", "spellId": 444083, "icon": "achievement_dungeon_nexus80_25man", "index": 200}]}, {"id": 95047, "name": "Whitemane's Famine", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95044], "prev": [95060], "entries": [{"id": 117644, "definitionId": 122656, "maxRanks": 1, "type": "passive", "name": "Whitemane's Famine", "spellId": 444033, "icon": "spell_deathknight_necroticplague", "index": 100}]}, {"id": 95059, "name": "Nazgrim's Conquest", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95042], "prev": [95067], "entries": [{"id": 117656, "definitionId": 122668, "maxRanks": 1, "type": "passive", "name": "Nazgrim's Conquest", "spellId": 444052, "icon": "ability_maldraxxus_warriorplantbanner", "index": 100}]}, {"id": 95063, "name": "Trollbane's Icy Fury", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95054], "prev": [95037], "entries": [{"id": 117660, "definitionId": 122672, "maxRanks": 1, "type": "passive", "name": "Trollbane's Icy Fury", "spellId": 444097, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95044, "name": "Hungering Thirst", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95047], "entries": [{"id": 117641, "definitionId": 122653, "maxRanks": 1, "type": "passive", "name": "Hungering Thirst", "spellId": 444037, "icon": "spell_shadow_fumble", "index": 100}]}, {"id": 95042, "name": "Fury of the Horsemen / A Feast of Souls", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95059], "entries": [{"id": 117639, "definitionId": 122651, "maxRanks": 1, "type": "passive", "name": "Fury of the Horsemen", "spellId": 444069, "icon": "inv_plate_raiddeathknightmythic_o_01helm", "index": 100}, {"id": 123411, "definitionId": 128249, "maxRanks": 1, "type": "passive", "name": "A Feast of Souls", "spellId": 444072, "icon": "inv_misc_supersoulash", "index": 200}]}, {"id": 95054, "name": "Mawsworn Menace", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95063], "entries": [{"id": 117651, "definitionId": 122663, "maxRanks": 1, "type": "passive", "name": "Mawsworn Menace", "spellId": 444099, "icon": "inv_mawguardpet_black", "index": 100}]}, {"id": 95041, "name": "Apocalypse Now", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 32, "requiresNode": 76196, "next": [], "prev": [95042, 95044, 95054], "entries": [{"id": 117638, "definitionId": 122650, "maxRanks": 1, "type": "passive", "name": "Apocalypse Now", "spellId": 444040, "icon": "inv_ability_rideroftheapocalypsedeathknight_apocalypsenow", "index": 100}]}], "subTreeNodes": [{"id": 99821, "name": "Deathbringer / Rider of the Apocalypse", "type": "subtree", "posX": 8400, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123324, "type": "subtree", "name": "Deathbringer", "traitSubTreeId": 33, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-deathbringer", "nodes": [95062, 95036, 95058, 95043, 95061, 95034, 95035, 95032, 95057, 95049, 95068]}, {"id": 123323, "type": "subtree", "name": "Rider of the Apocalypse", "traitSubTreeId": 32, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-rideroftheapocalypse", "nodes": [95066, 95060, 95067, 95037, 95047, 95059, 95063, 95044, 95042, 95054, 95041]}]}], "fullNodeOrder": [76033, 76035, 76037, 76038, 76039, 76040, 76041, 76042, 76043, 76044, 76045, 76046, 76048, 76049, 76050, 76051, 76052, 76053, 76054, 76055, 76056, 76057, 76058, 76059, 76060, 76061, 76063, 76064, 76065, 76066, 76067, 76068, 76069, 76071, 76072, 76073, 76074, 76075, 76076, 76077, 76078, 76079, 76080, 76081, 76083, 76084, 76085, 76086, 76087, 76088, 76089, 76091, 76092, 76093, 76094, 76095, 76096, 76097, 76098, 76099, 76100, 76101, 76102, 76103, 76105, 76106, 76108, 76109, 76110, 76111, 76112, 76113, 76114, 76115, 76116, 76117, 76118, 76119, 76120, 76121, 76122, 76123, 76124, 76125, 76126, 76127, 76128, 76129, 76130, 76131, 76132, 76133, 76135, 76137, 76138, 76139, 76140, 76141, 76142, 76143, 76144, 76145, 76146, 76147, 76148, 76149, 76150, 76151, 76152, 76153, 76154, 76155, 76156, 76157, 76158, 76159, 76160, 76161, 76162, 76163, 76164, 76165, 76166, 76167, 76168, 76169, 76170, 76171, 76172, 76173, 76174, 76175, 76176, 76177, 76178, 76179, 76180, 76181, 76182, 76183, 76184, 76185, 76186, 76187, 76188, 76189, 76190, 76191, 76192, 76193, 76194, 76195, 76196, 76197, 95032, 95033, 95034, 95035, 95036, 95037, 95040, 95041, 95042, 95043, 95044, 95045, 95046, 95047, 95048, 95049, 95051, 95053, 95054, 95055, 95056, 95057, 95058, 95059, 95060, 95061, 95062, 95063, 95064, 95065, 95066, 95067, 95068, 99820, 99821, 99822, 101708, 101882, 101929, 101930, 101931, 101932, 101933, 102006, 102007, 102008, 102009, 102242, 102243, 102244, 102245]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/demon_hunter_havoc.json b/simc_support/game_data/data_files/trees/demon_hunter_havoc.json index a9d0ad1..c7c6126 100644 --- a/simc_support/game_data/data_files/trees/demon_hunter_havoc.json +++ b/simc_support/game_data/data_files/trees/demon_hunter_havoc.json @@ -1 +1 @@ -{"traitTreeId": 854, "className": "Demon Hunter", "classId": 12, "specName": "Havoc", "specId": 577, "classNodes": [{"id": 90942, "name": "Vengeful Retreat", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90930, 90941], "prev": [], "entries": [{"id": 112853, "definitionId": 117858, "maxRanks": 1, "type": "active", "name": "Vengeful Retreat", "spellId": 198793, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}], "freeNode": true}, {"id": 91008, "name": "Blazing Path", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90941, 90950], "prev": [], "entries": [{"id": 112928, "definitionId": 117933, "maxRanks": 1, "type": "passive", "name": "Blazing Path", "spellId": 320416, "icon": "ability_demonhunter_felrush", "index": 100}]}, {"id": 90946, "name": "Sigil of Misery", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90950, 90945], "prev": [], "entries": [{"id": 112859, "definitionId": 117864, "maxRanks": 1, "type": "active", "name": "Sigil of Misery", "spellId": 207684, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90930, "name": "Vengeful Bonds", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [90931], "prev": [90942], "entries": [{"id": 112840, "definitionId": 117845, "maxRanks": 1, "type": "passive", "name": "Vengeful Bonds", "spellId": 320635, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 90941, "name": "Unrestrained Fury", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90931, 91007], "prev": [90942, 91008], "entries": [{"id": 112852, "definitionId": 117857, "maxRanks": 1, "type": "passive", "name": "Unrestrained Fury", "spellId": 320770, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90950, "name": "Shattered Restoration", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [91007, 90948], "prev": [90946, 91008], "entries": [{"id": 112863, "definitionId": 117868, "maxRanks": 1, "type": "passive", "name": "Shattered Restoration", "spellId": 389824, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 90945, "name": "Improved Sigil of Misery", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [90948], "prev": [90946], "entries": [{"id": 112858, "definitionId": 117863, "maxRanks": 1, "type": "passive", "name": "Improved Sigil of Misery", "spellId": 320418, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90931, "name": "Bouncing Glaives", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90993, 90938], "prev": [90941, 90930], "entries": [{"id": 112841, "definitionId": 117846, "maxRanks": 1, "type": "passive", "name": "Bouncing Glaives", "spellId": 320386, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91007, "name": "Imprison", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90938, 91006], "prev": [90950, 90941], "entries": [{"id": 112927, "definitionId": 117932, "maxRanks": 1, "type": "active", "name": "Imprison", "spellId": 217832, "icon": "ability_demonhunter_imprison", "index": 100}]}, {"id": 90948, "name": "Charred Warblades", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [91006, 90999], "prev": [90950, 90945], "entries": [{"id": 112861, "definitionId": 117866, "maxRanks": 1, "type": "passive", "name": "Charred Warblades", "spellId": 213010, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 90993, "name": "Chaos Nova", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [95154, 90994], "prev": [90931], "entries": [{"id": 112911, "definitionId": 117916, "maxRanks": 1, "type": "active", "name": "Chaos Nova", "spellId": 179057, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90938, "name": "Improved Disrupt", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90994, 90937, 95150], "prev": [90931, 91007], "entries": [{"id": 112849, "definitionId": 117854, "maxRanks": 1, "type": "passive", "name": "Improved Disrupt", "spellId": 320361, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 91006, "name": "Consume Magic", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [95150, 91005, 90933], "prev": [90948, 91007], "entries": [{"id": 112926, "definitionId": 117931, "maxRanks": 1, "type": "active", "name": "Consume Magic", "spellId": 278326, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90999, "name": "Aldrachi Design", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90933, 95151], "prev": [90948], "entries": [{"id": 112917, "definitionId": 117922, "maxRanks": 1, "type": "passive", "name": "Aldrachi Design", "spellId": 391409, "icon": "inv_glaive_1h_artifactaldrochi_d_01dual", "index": 100}]}, {"id": 95154, "name": "Chaos Fragments", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940], "prev": [90993], "entries": [{"id": 117767, "definitionId": 122779, "maxRanks": 1, "type": "passive", "name": "Chaos Fragments", "spellId": 320412, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90994, "name": "Master of the Glaive / Champion of the Glaive", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940, 90936], "prev": [90993, 90938], "entries": [{"id": 112912, "definitionId": 117917, "maxRanks": 1, "type": "passive", "name": "Master of the Glaive", "spellId": 389763, "icon": "inv_glaive_1h_demonhunter_a_01", "index": 100}, {"id": 117768, "definitionId": 122780, "maxRanks": 1, "type": "passive", "name": "Champion of the Glaive", "spellId": 429211, "icon": "inv_glaive_1h_battledungeon_c_01", "index": 200}]}, {"id": 90937, "name": "Disrupting Fury", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936], "prev": [90938], "entries": [{"id": 112848, "definitionId": 117853, "maxRanks": 1, "type": "passive", "name": "Disrupting Fury", "spellId": 183782, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 95150, "name": "Felblade", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936, 91004], "prev": [91006, 90938], "entries": [{"id": 117759, "definitionId": 122771, "maxRanks": 1, "type": "active", "name": "Felblade", "spellId": 232893, "icon": "ability_demonhunter_felblade", "index": 100}]}, {"id": 91005, "name": "Swallowed Anger", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004], "prev": [91006], "entries": [{"id": 112925, "definitionId": 117930, "maxRanks": 1, "type": "passive", "name": "Swallowed Anger", "spellId": 320313, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90933, "name": "Aura of Pain", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004, 90947], "prev": [91006, 90999], "entries": [{"id": 112844, "definitionId": 117849, "maxRanks": 1, "type": "passive", "name": "Aura of Pain", "spellId": 207347, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 95151, "name": "Live by the Glaive", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90947], "prev": [90999], "entries": [{"id": 117761, "definitionId": 122773, "maxRanks": 1, "type": "passive", "name": "Live by the Glaive", "spellId": 428607, "icon": "inv_sword_108", "index": 100}]}, {"id": 90940, "name": "Pursuit", "type": "single", "posX": 2100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90939, 90935], "prev": [90994, 95154], "entries": [{"id": 112851, "definitionId": 117856, "maxRanks": 1, "type": "passive", "name": "Pursuit", "spellId": 320654, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 90936, "name": "Soul Rending", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90935, 91003], "prev": [90994, 90937, 95150], "entries": [{"id": 112847, "definitionId": 117852, "maxRanks": 2, "type": "passive", "name": "Soul Rending", "spellId": 204909, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 91004, "name": "Infernal Armor", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91003, 91000], "prev": [91005, 95150, 90933], "entries": [{"id": 112924, "definitionId": 117929, "maxRanks": 2, "type": "passive", "name": "Infernal Armor", "spellId": 320331, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90947, "name": "Lost in Darkness", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91000, 95155], "prev": [95151, 90933], "entries": [{"id": 112860, "definitionId": 117865, "maxRanks": 1, "type": "passive", "name": "Lost in Darkness", "spellId": 389849, "icon": "inv_pet_inquisitoreye", "index": 100}]}, {"id": 90939, "name": "Felfire Haste", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934], "prev": [90940], "entries": [{"id": 112850, "definitionId": 117855, "maxRanks": 1, "type": "passive", "name": "Felfire Haste", "spellId": 389846, "icon": "inv_boots_cloth_35v4", "index": 100}]}, {"id": 90935, "name": "Illidari Knowledge", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934, 91002], "prev": [90936, 90940], "entries": [{"id": 112846, "definitionId": 117851, "maxRanks": 1, "type": "passive", "name": "Illidari Knowledge", "spellId": 389696, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 91003, "name": "Demonic", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91002, 90929], "prev": [90936, 91004], "entries": [{"id": 112923, "definitionId": 117928, "maxRanks": 1, "type": "passive", "name": "Demonic", "spellId": 213410, "icon": "spell_shadow_demonform", "index": 100}]}, {"id": 91000, "name": "Will of the Illidari", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90929, 95149], "prev": [91004, 90947], "entries": [{"id": 112918, "definitionId": 117923, "maxRanks": 1, "type": "passive", "name": "Will of the Illidari", "spellId": 389695, "icon": "ability_demonhunter_spectank", "index": 100}]}, {"id": 95155, "name": "Precise Sigils", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [95149], "prev": [90947], "entries": [{"id": 117771, "definitionId": 122783, "maxRanks": 1, "type": "passive", "name": "Precise Sigils", "spellId": 389799, "icon": "ability_bossfelorcs_necromancer_orange", "index": 100}]}, {"id": 90934, "name": "Internal Struggle", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90996], "prev": [90935, 90939], "entries": [{"id": 112845, "definitionId": 117850, "maxRanks": 1, "type": "passive", "name": "Internal Struggle", "spellId": 393822, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 91002, "name": "Darkness", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91001, 95148], "prev": [90935, 91003], "entries": [{"id": 112921, "definitionId": 117926, "maxRanks": 1, "type": "active", "name": "Darkness", "spellId": 196718, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 90929, "name": "Soul Sigils", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95148, 90928], "prev": [91003, 91000], "entries": [{"id": 112839, "definitionId": 117844, "maxRanks": 1, "type": "passive", "name": "Soul Sigils", "spellId": 395446, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95149, "name": "Quickened Sigils", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90949], "prev": [91000, 95155], "entries": [{"id": 117758, "definitionId": 122770, "maxRanks": 1, "type": "passive", "name": "Quickened Sigils", "spellId": 209281, "icon": "ability_demonhunter_concentratedsigils", "index": 100}]}, {"id": 90996, "name": "Erratic Felheart", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95152], "prev": [90934], "entries": [{"id": 112914, "definitionId": 117919, "maxRanks": 2, "type": "passive", "name": "Erratic Felheart", "spellId": 391397, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 91001, "name": "Long Night / Pitch Black", "type": "choice", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91002], "entries": [{"id": 112920, "definitionId": 117925, "maxRanks": 1, "type": "passive", "name": "Long Night", "spellId": 389781, "icon": "spell_fire_twilightimmolation", "index": 100}, {"id": 112919, "definitionId": 117924, "maxRanks": 1, "type": "passive", "name": "Pitch Black", "spellId": 389783, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95148, "name": "Rush of Chaos", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90927], "prev": [90929, 91002], "entries": [{"id": 117757, "definitionId": 122769, "maxRanks": 2, "type": "passive", "name": "Rush of Chaos", "spellId": 320421, "icon": "ability_demonhunter_metamorphasisdps", "index": 100}]}, {"id": 90928, "name": "Demon Muzzle", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90929], "entries": [{"id": 112838, "definitionId": 117843, "maxRanks": 1, "type": "passive", "name": "Demon Muzzle", "spellId": 388111, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 90949, "name": "Flames of Fury", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90997], "prev": [95149], "entries": [{"id": 112862, "definitionId": 117867, "maxRanks": 2, "type": "passive", "name": "Flames of Fury", "spellId": 389694, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95152, "name": "Collective Anguish", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90996], "entries": [{"id": 117762, "definitionId": 122774, "maxRanks": 1, "type": "passive", "name": "Collective Anguish", "spellId": 390152, "icon": "artifactability_havocdemonhunter_anguishofthedeceiver", "index": 200}]}, {"id": 90927, "name": "The Hunt", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95148], "entries": [{"id": 112837, "definitionId": 117842, "maxRanks": 1, "type": "active", "name": "The Hunt", "spellId": 370965, "icon": "ability_ardenweald_demonhunter", "index": 100}]}, {"id": 90997, "name": "Sigil of Spite", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90949], "entries": [{"id": 117755, "definitionId": 122767, "maxRanks": 1, "type": "active", "name": "Sigil of Spite", "spellId": 390163, "icon": "ability_bastion_demonhunter", "index": 200}]}], "specNodes": [{"id": 90912, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 91018, "name": "Eye Beam", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [91028, 91019, 90923], "prev": [], "entries": [{"id": 112939, "definitionId": 117944, "maxRanks": 1, "type": "active", "name": "Eye Beam", "spellId": 198013, "icon": "ability_demonhunter_eyebeam", "index": 100}]}, {"id": 91028, "name": "Critical Chaos", "type": "single", "posX": 11400, "posY": 2100, "maxRanks": 1, "next": [93014, 91030, 90925], "prev": [91018], "entries": [{"id": 112951, "definitionId": 117956, "maxRanks": 1, "type": "passive", "name": "Critical Chaos", "spellId": 320413, "icon": "inv_glaive_1h_battledungeon_c_02", "index": 100}]}, {"id": 91019, "name": "Insatiable Hunger / Demon Blades", "type": "choice", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91018], "entries": [{"id": 112941, "definitionId": 117946, "maxRanks": 1, "type": "passive", "name": "Insatiable Hunger", "spellId": 258876, "icon": "ability_rogue_hungerforblood", "index": 100}, {"id": 112940, "definitionId": 117945, "maxRanks": 1, "type": "passive", "name": "Demon Blades", "spellId": 203555, "icon": "inv_weapon_shortblade_92", "index": 200}]}, {"id": 90923, "name": "Burning Hatred", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [90925, 91011, 91017], "prev": [91018], "entries": [{"id": 112832, "definitionId": 117837, "maxRanks": 1, "type": "passive", "name": "Burning Hatred", "spellId": 320374, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 93014, "name": "Improved Fel Rush / Dash of Chaos", "type": "choice", "posX": 10500, "posY": 2700, "maxRanks": 1, "next": [93016], "prev": [91028], "entries": [{"id": 115245, "definitionId": 120257, "maxRanks": 1, "type": "passive", "name": "Improved Fel Rush", "spellId": 343017, "icon": "ability_demonhunter_felrush", "index": 100}, {"id": 117748, "definitionId": 122760, "maxRanks": 1, "type": "passive", "name": "Dash of Chaos", "spellId": 427794, "icon": "inv_boots_cloth_35v3", "index": 200}]}, {"id": 91030, "name": "Improved Chaos Strike", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [93016], "prev": [91028], "entries": [{"id": 112953, "definitionId": 117958, "maxRanks": 1, "type": "passive", "name": "Improved Chaos Strike", "spellId": 343206, "icon": "ability_demonhunter_chaosstrike", "index": 100}]}, {"id": 90925, "name": "First Blood", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93016, 93015], "prev": [90923, 91028], "entries": [{"id": 112834, "definitionId": 117839, "maxRanks": 1, "type": "passive", "name": "First Blood", "spellId": 206416, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 91011, "name": "Accelerated Blade", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [93015], "prev": [90923], "entries": [{"id": 112932, "definitionId": 117937, "maxRanks": 1, "type": "passive", "name": "Accelerated Blade", "spellId": 391275, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91017, "name": "Demon Hide", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [93015], "prev": [90923], "entries": [{"id": 112938, "definitionId": 117943, "maxRanks": 1, "type": "passive", "name": "Demon Hide", "spellId": 428241, "icon": "misc_legionfall_demonhunter", "index": 100}]}, {"id": 93016, "name": "Desperate Instincts / Netherwalk", "type": "choice", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [91027, 90914, 90922], "prev": [91030, 90925, 93014], "entries": [{"id": 115248, "definitionId": 120260, "maxRanks": 1, "type": "passive", "name": "Desperate Instincts", "spellId": 205411, "icon": "spell_shadow_manafeed", "index": 100}, {"id": 115247, "definitionId": 120259, "maxRanks": 1, "type": "active", "name": "Netherwalk", "spellId": 196555, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 93015, "name": "Deflecting Dance / Mortal Dance", "type": "choice", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [90922, 93013, 90915], "prev": [91017, 90925, 91011], "entries": [{"id": 115246, "definitionId": 120258, "maxRanks": 1, "type": "passive", "name": "Deflecting Dance", "spellId": 427776, "icon": "ability_ironmaidens_bladerush", "index": 100}, {"id": 117743, "definitionId": 122755, "maxRanks": 1, "type": "passive", "name": "Mortal Dance", "spellId": 328725, "icon": "ability_demonhunter_vengefulretreat", "index": 200}]}, {"id": 91027, "name": "Initiative", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91022, 91026], "prev": [93016], "entries": [{"id": 112950, "definitionId": 117955, "maxRanks": 1, "type": "passive", "name": "Initiative", "spellId": 388108, "icon": "ability_rogue_surpriseattack", "index": 100}]}, {"id": 90914, "name": "Scars of Suffering", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91026], "prev": [93016], "entries": [{"id": 112823, "definitionId": 117828, "maxRanks": 1, "type": "passive", "name": "Scars of Suffering", "spellId": 428232, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 90922, "name": "Chaotic Transformation", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91026, 90921, 91015], "prev": [93015, 93016], "entries": [{"id": 112831, "definitionId": 117836, "maxRanks": 1, "type": "passive", "name": "Chaotic Transformation", "spellId": 388112, "icon": "ability_demonhunter_glide", "index": 100}]}, {"id": 93013, "name": "Furious Throws", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91015], "prev": [93015], "entries": [{"id": 115244, "definitionId": 120256, "maxRanks": 1, "type": "passive", "name": "Furious Throws", "spellId": 393029, "icon": "inv_glaive_1h_npc_d_01", "index": 100}]}, {"id": 90915, "name": "Trail of Ruin", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91015, 90916], "prev": [93015], "entries": [{"id": 112824, "definitionId": 117829, "maxRanks": 1, "type": "passive", "name": "Trail of Ruin", "spellId": 258881, "icon": "ability_demonhunter_bladedance", "index": 100}]}, {"id": 91022, "name": "Tactical Retreat", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91020, 91036], "prev": [91027], "entries": [{"id": 112944, "definitionId": 117949, "maxRanks": 1, "type": "passive", "name": "Tactical Retreat", "spellId": 389688, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 91026, "name": "Blind Fury", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91036, 91025], "prev": [90922, 91027, 90914], "entries": [{"id": 112949, "definitionId": 117954, "maxRanks": 2, "type": "passive", "name": "Blind Fury", "spellId": 203550, "icon": "ability_bosskilrogg_deadeye", "index": 100}]}, {"id": 90921, "name": "Looks Can Kill", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90922], "entries": [{"id": 112830, "definitionId": 117835, "maxRanks": 1, "type": "passive", "name": "Looks Can Kill", "spellId": 320415, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}]}, {"id": 91015, "name": "Dancing with Fate", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91025, 91013], "prev": [90922, 90915, 93013], "entries": [{"id": 112936, "definitionId": 117941, "maxRanks": 2, "type": "passive", "name": "Dancing with Fate", "spellId": 389978, "icon": "inv_polearm_1h_felfireraid_d_02", "index": 100}]}, {"id": 90916, "name": "Growing Inferno", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91013, 90917], "prev": [90915], "entries": [{"id": 112825, "definitionId": 117830, "maxRanks": 1, "type": "passive", "name": "Growing Inferno", "spellId": 390158, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 91020, "name": "Unbound Chaos", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91021, 91035], "prev": [91022], "entries": [{"id": 112942, "definitionId": 117947, "maxRanks": 1, "type": "passive", "name": "Unbound Chaos", "spellId": 347461, "icon": "artifactability_vengeancedemonhunter_painbringer", "index": 100}]}, {"id": 91036, "name": "Isolated Prey", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91035], "prev": [91026, 91022], "entries": [{"id": 112959, "definitionId": 117964, "maxRanks": 1, "type": "passive", "name": "Isolated Prey", "spellId": 388113, "icon": "spell_shadow_shadesofdarkness", "index": 100}]}, {"id": 91025, "name": "Furious Gaze", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91035, 91024, 91012], "prev": [91026, 91015], "entries": [{"id": 112948, "definitionId": 117953, "maxRanks": 1, "type": "passive", "name": "Furious Gaze", "spellId": 343311, "icon": "ability_demonhunter_eyebeam", "index": 100}]}, {"id": 91013, "name": "Serrated Glaive", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91012], "prev": [90916, 91015], "entries": [{"id": 112934, "definitionId": 117939, "maxRanks": 1, "type": "passive", "name": "Serrated Glaive", "spellId": 390154, "icon": "inv_glaive_1h_artifactaldrochi_d_03dual", "index": 100}]}, {"id": 90917, "name": "Burning Wound", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91012, 90918], "prev": [90916], "entries": [{"id": 112826, "definitionId": 117831, "maxRanks": 1, "type": "passive", "name": "Burning Wound", "spellId": 391189, "icon": "spell_fire_felhellfire", "index": 100}]}, {"id": 91021, "name": "Momentum / Inertia", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034], "prev": [91020], "entries": [{"id": 112943, "definitionId": 117948, "maxRanks": 1, "type": "passive", "name": "Momentum", "spellId": 206476, "icon": "ability_foundryraid_demolition", "index": 100}, {"id": 117744, "definitionId": 122756, "maxRanks": 1, "type": "passive", "name": "Inertia", "spellId": 427640, "icon": "inv_10_inscription3_pigments_black", "index": 200}]}, {"id": 91035, "name": "Chaos Theory / Glaive Tempest", "type": "choice", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034], "prev": [91025, 91036, 91020], "entries": [{"id": 112958, "definitionId": 117963, "maxRanks": 1, "type": "passive", "name": "Chaos Theory", "spellId": 389687, "icon": "inv_glaive_1h_artifactaldrochi_d_03dual", "index": 100}, {"id": 117763, "definitionId": 122775, "maxRanks": 1, "type": "active", "name": "Glaive Tempest", "spellId": 342817, "icon": "inv_glaive_1h_artifactazgalor_d_06dual", "index": 200}]}, {"id": 91024, "name": "Inner Demon / Restless Hunter", "type": "choice", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034, 91032, 95147], "prev": [91025], "entries": [{"id": 112947, "definitionId": 117952, "maxRanks": 1, "type": "passive", "name": "Inner Demon", "spellId": 389693, "icon": "ability_demonhunter_glide", "index": 100}, {"id": 117765, "definitionId": 122777, "maxRanks": 1, "type": "passive", "name": "Restless Hunter", "spellId": 390142, "icon": "ability_demonhunter_doublejump", "index": 200}]}, {"id": 91012, "name": "Relentless Onslaught / Soulscar", "type": "choice", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95147], "prev": [91025, 90917, 91013], "entries": [{"id": 112933, "definitionId": 117938, "maxRanks": 1, "type": "passive", "name": "Relentless Onslaught", "spellId": 389977, "icon": "ability_demonhunter_soulcleave2", "index": 100}, {"id": 117764, "definitionId": 122776, "maxRanks": 1, "type": "passive", "name": "Soulscar", "spellId": 388106, "icon": "ability_demonhunter_bloodlet", "index": 200}]}, {"id": 90918, "name": "Ragefire", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95147], "prev": [90917], "entries": [{"id": 112827, "definitionId": 117832, "maxRanks": 1, "type": "passive", "name": "Ragefire", "spellId": 388107, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 91034, "name": "Know Your Enemy", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95143, 91033], "prev": [91035, 91021, 91024], "entries": [{"id": 112957, "definitionId": 117962, "maxRanks": 2, "type": "passive", "name": "Know Your Enemy", "spellId": 388118, "icon": "ability_demonhunter_eyeofleotheras", "index": 100}]}, {"id": 91032, "name": "Cycle of Hatred", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [91033, 91031, 90919], "prev": [91024], "entries": [{"id": 112955, "definitionId": 117960, "maxRanks": 2, "type": "passive", "name": "Cycle of Hatred", "spellId": 258887, "icon": "ability_ironmaidens_whirlofblood", "index": 100}]}, {"id": 95147, "name": "Chaotic Disposition", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90919, 95144], "prev": [90918, 91012, 91024], "entries": [{"id": 117754, "definitionId": 122766, "maxRanks": 2, "type": "passive", "name": "Chaotic Disposition", "spellId": 428492, "icon": "inv_inscription_tarotchaos", "index": 100}]}, {"id": 95143, "name": "A Fire Inside", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91034], "entries": [{"id": 117741, "definitionId": 122753, "maxRanks": 1, "type": "passive", "name": "A Fire Inside", "spellId": 427775, "icon": "ability_demonhunter_chaoticimprint_fire", "index": 100}]}, {"id": 91033, "name": "Essence Break", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032, 91034], "entries": [{"id": 112956, "definitionId": 117961, "maxRanks": 1, "type": "active", "name": "Essence Break", "spellId": 258860, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 91031, "name": "Shattered Destiny", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032], "entries": [{"id": 112954, "definitionId": 117959, "maxRanks": 1, "type": "passive", "name": "Shattered Destiny", "spellId": 388116, "icon": "achievement_boss_triumvirate_darknaaru", "index": 100}]}, {"id": 90919, "name": "Any Means Necessary", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032, 95147], "entries": [{"id": 112828, "definitionId": 117833, "maxRanks": 1, "type": "passive", "name": "Any Means Necessary", "spellId": 388114, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 95144, "name": "Fel Barrage", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95147], "entries": [{"id": 117742, "definitionId": 122754, "maxRanks": 1, "type": "active", "name": "Fel Barrage", "spellId": 258925, "icon": "inv_felbarrage", "index": 100}]}], "heroNodes": [{"id": 94915, "name": "Art of the Glaive", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 35, "next": [94898, 94911, 94903], "prev": [], "entries": [{"id": 117512, "definitionId": 122524, "maxRanks": 1, "type": "passive", "name": "Art of the Glaive", "spellId": 442290, "icon": "inv_ability_aldrachireaverdemonhunter_reaversglaive", "index": 100}], "freeNode": true}, {"id": 94898, "name": "Fury of the Aldrachi", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94914], "prev": [94915], "entries": [{"id": 117495, "definitionId": 122519, "maxRanks": 1, "type": "passive", "name": "Fury of the Aldrachi", "spellId": 442718, "icon": "spell_fire_felflamestrike", "index": 100}]}, {"id": 94911, "name": "Evasive Action / Unhindered Assault", "type": "choice", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94896], "prev": [94915], "entries": [{"id": 117508, "definitionId": 122520, "maxRanks": 1, "type": "passive", "name": "Evasive Action", "spellId": 444926, "icon": "ability_demonhunter_vengefulretreat", "index": 100}, {"id": 123047, "definitionId": 127928, "maxRanks": 1, "type": "passive", "name": "Unhindered Assault", "spellId": 444931, "icon": "ability_ironmaidens_bladerush", "index": 200}]}, {"id": 94903, "name": "Reaver's Mark", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94897], "prev": [94915], "entries": [{"id": 117500, "definitionId": 122512, "maxRanks": 1, "type": "passive", "name": "Reaver's Mark", "spellId": 442679, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 94914, "name": "Aldrachi Tactics", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94895], "prev": [94898], "entries": [{"id": 117511, "definitionId": 122523, "maxRanks": 1, "type": "passive", "name": "Aldrachi Tactics", "spellId": 442683, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 94896, "name": "Army Unto Oneself / Incorruptible Spirit", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94910], "prev": [94911], "entries": [{"id": 117493, "definitionId": 122505, "maxRanks": 1, "type": "passive", "name": "Army Unto Oneself", "spellId": 442714, "icon": "ability_warlock_avoidance", "index": 100}, {"id": 123046, "definitionId": 127927, "maxRanks": 1, "type": "passive", "name": "Incorruptible Spirit", "spellId": 442736, "icon": "spell_nzinsanity_chasedbyshadows", "index": 200}]}, {"id": 94897, "name": "Wounded Quarry", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94906], "prev": [94903], "entries": [{"id": 117494, "definitionId": 122506, "maxRanks": 1, "type": "passive", "name": "Wounded Quarry", "spellId": 442806, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94895, "name": "Incisive Blade", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94914], "entries": [{"id": 117492, "definitionId": 122504, "maxRanks": 1, "type": "passive", "name": "Incisive Blade", "spellId": 442492, "icon": "ability_dualwieldspecialization", "index": 100}]}, {"id": 94910, "name": "Keen Engagement / Preemptive Strike", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94896], "entries": [{"id": 117507, "definitionId": 122507, "maxRanks": 1, "type": "passive", "name": "Keen Engagement", "spellId": 442497, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 122422, "definitionId": 127322, "maxRanks": 1, "type": "passive", "name": "Preemptive Strike", "spellId": 444997, "icon": "ability_rogue_focusedattacks", "index": 200}]}, {"id": 94906, "name": "Warblade's Hunger", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94897], "entries": [{"id": 117503, "definitionId": 122515, "maxRanks": 1, "type": "passive", "name": "Warblade's Hunger", "spellId": 442502, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 94919, "name": "Thrill of the Fight", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 35, "next": [], "prev": [94910, 94895, 94906], "entries": [{"id": 117516, "definitionId": 122528, "maxRanks": 1, "type": "passive", "name": "Thrill of the Fight", "spellId": 442686, "icon": "spell_arcane_arcanetactics", "index": 100}]}, {"id": 94917, "name": "Demonsurge", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 34, "next": [94913, 94918, 94899], "prev": [], "entries": [{"id": 117514, "definitionId": 122526, "maxRanks": 1, "type": "passive", "name": "Demonsurge", "spellId": 452402, "icon": "inv_ability_felscarreddemonhunter_demonsurge", "index": 100}], "freeNode": true}, {"id": 94913, "name": "Wave of Debilitation / Pursuit of Angriness", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94905], "prev": [94917], "entries": [{"id": 117510, "definitionId": 122522, "maxRanks": 1, "type": "passive", "name": "Wave of Debilitation", "spellId": 452403, "icon": "spell_fire_felfirenova", "index": 100}, {"id": 124011, "definitionId": 128849, "maxRanks": 1, "type": "passive", "name": "Pursuit of Angriness", "spellId": 452404, "icon": "ability_felarakkoa_focusedblast", "index": 200}]}, {"id": 94918, "name": "Focused Hatred", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94912], "prev": [94917], "entries": [{"id": 117515, "definitionId": 122527, "maxRanks": 1, "type": "passive", "name": "Focused Hatred", "spellId": 452405, "icon": "ability_demonhunter_illidansgrasp", "index": 100}]}, {"id": 94899, "name": "Set Fire to the Pain / Improved Soul Rending", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94916], "prev": [94917], "entries": [{"id": 117496, "definitionId": 122508, "maxRanks": 1, "type": "passive", "name": "Set Fire to the Pain", "spellId": 452406, "icon": "ability_demonhunter_empowerwards", "index": 100}, {"id": 124010, "definitionId": 128848, "maxRanks": 1, "type": "passive", "name": "Improved Soul Rending", "spellId": 452407, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 94905, "name": "Burning Blades", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94904], "prev": [94913], "entries": [{"id": 117502, "definitionId": 122514, "maxRanks": 1, "type": "passive", "name": "Burning Blades", "spellId": 452408, "icon": "inv_glaive_1h_artifactazgalor_d_02dual", "index": 100}]}, {"id": 94912, "name": "Violent Transformation", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94902], "prev": [94918], "entries": [{"id": 117509, "definitionId": 122521, "maxRanks": 1, "type": "passive", "name": "Violent Transformation", "spellId": 452409, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 94916, "name": "Enduring Torment", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94909], "prev": [94899], "entries": [{"id": 117513, "definitionId": 122525, "maxRanks": 1, "type": "passive", "name": "Enduring Torment", "spellId": 452410, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 94904, "name": "Untethered Fury", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94905], "entries": [{"id": 117501, "definitionId": 122513, "maxRanks": 1, "type": "passive", "name": "Untethered Fury", "spellId": 452411, "icon": "inv__felbarrage", "index": 100}]}, {"id": 94902, "name": "Student of Suffering / Flamebound", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94912], "entries": [{"id": 117499, "definitionId": 122511, "maxRanks": 1, "type": "passive", "name": "Student of Suffering", "spellId": 452412, "icon": "achievement_dungeon_theatreofpain_kultharok", "index": 100}, {"id": 124009, "definitionId": 128847, "maxRanks": 1, "type": "passive", "name": "Flamebound", "spellId": 452413, "icon": "spell_fire_felflamering", "index": 200}]}, {"id": 94909, "name": "Monster Rising", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94916], "entries": [{"id": 117506, "definitionId": 122518, "maxRanks": 1, "type": "passive", "name": "Monster Rising", "spellId": 452414, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 94901, "name": "Demonic Intensity", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 34, "next": [], "prev": [94902, 94904, 94909], "entries": [{"id": 117498, "definitionId": 122510, "maxRanks": 1, "type": "passive", "name": "Demonic Intensity", "spellId": 452415, "icon": "spell_warlock_demonicempowerment", "index": 100}]}], "subTreeNodes": [{"id": 99824, "name": "Aldrachi Reaver / Fel-Scarred", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123330, "type": "subtree", "name": "Aldrachi Reaver", "traitSubTreeId": 35, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-aldrachireaver", "nodes": [94915, 94898, 94911, 94903, 94914, 94896, 94897, 94895, 94910, 94906, 94919]}, {"id": 123329, "type": "subtree", "name": "Fel-Scarred", "traitSubTreeId": 34, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-felscarred", "nodes": [94917, 94913, 94918, 94899, 94905, 94912, 94916, 94904, 94902, 94909, 94901]}]}], "fullNodeOrder": [90912, 90914, 90915, 90916, 90917, 90918, 90919, 90921, 90922, 90923, 90925, 90927, 90928, 90929, 90930, 90931, 90933, 90934, 90935, 90936, 90937, 90938, 90939, 90940, 90941, 90942, 90945, 90946, 90947, 90948, 90949, 90950, 90951, 90952, 90953, 90954, 90955, 90956, 90957, 90958, 90959, 90960, 90961, 90962, 90963, 90964, 90965, 90966, 90967, 90968, 90969, 90970, 90971, 90972, 90973, 90974, 90975, 90976, 90977, 90978, 90979, 90980, 90981, 90982, 90983, 90984, 90985, 90986, 90987, 90988, 90989, 90990, 90991, 90993, 90994, 90996, 90997, 90999, 91000, 91001, 91002, 91003, 91004, 91005, 91006, 91007, 91008, 91011, 91012, 91013, 91015, 91017, 91018, 91019, 91020, 91021, 91022, 91024, 91025, 91026, 91027, 91028, 91030, 91031, 91032, 91033, 91034, 91035, 91036, 93013, 93014, 93015, 93016, 94895, 94896, 94897, 94898, 94899, 94901, 94902, 94903, 94904, 94905, 94906, 94909, 94910, 94911, 94912, 94913, 94914, 94915, 94916, 94917, 94918, 94919, 95143, 95144, 95147, 95148, 95149, 95150, 95151, 95152, 95154, 95155, 99823, 99824]} \ No newline at end of file +{"traitTreeId": 854, "className": "Demon Hunter", "classId": 12, "specName": "Havoc", "specId": 577, "classNodes": [{"id": 90942, "name": "Vengeful Retreat", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90930, 90941], "prev": [], "entries": [{"id": 112853, "definitionId": 117858, "maxRanks": 1, "type": "active", "name": "Vengeful Retreat", "spellId": 198793, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}], "freeNode": true}, {"id": 91008, "name": "Blazing Path", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90941, 90950], "prev": [], "entries": [{"id": 112928, "definitionId": 117933, "maxRanks": 1, "type": "passive", "name": "Blazing Path", "spellId": 320416, "icon": "ability_demonhunter_felrush", "index": 100}]}, {"id": 90946, "name": "Sigil of Misery", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90950, 90945], "prev": [], "entries": [{"id": 112859, "definitionId": 117864, "maxRanks": 1, "type": "active", "name": "Sigil of Misery", "spellId": 207684, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90930, "name": "Vengeful Bonds", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [90931], "prev": [90942], "entries": [{"id": 112840, "definitionId": 117845, "maxRanks": 1, "type": "passive", "name": "Vengeful Bonds", "spellId": 320635, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 90941, "name": "Unrestrained Fury", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90931, 91007], "prev": [90942, 91008], "entries": [{"id": 112852, "definitionId": 117857, "maxRanks": 1, "type": "passive", "name": "Unrestrained Fury", "spellId": 320770, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90950, "name": "Shattered Restoration", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [91007, 90948], "prev": [90946, 91008], "entries": [{"id": 112863, "definitionId": 117868, "maxRanks": 1, "type": "passive", "name": "Shattered Restoration", "spellId": 389824, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 90945, "name": "Improved Sigil of Misery", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [90948], "prev": [90946], "entries": [{"id": 112858, "definitionId": 117863, "maxRanks": 1, "type": "passive", "name": "Improved Sigil of Misery", "spellId": 320418, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90931, "name": "Bouncing Glaives", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90993, 90938], "prev": [90941, 90930], "entries": [{"id": 112841, "definitionId": 117846, "maxRanks": 1, "type": "passive", "name": "Bouncing Glaives", "spellId": 320386, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91007, "name": "Imprison", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90938, 91006], "prev": [90950, 90941], "entries": [{"id": 112927, "definitionId": 117932, "maxRanks": 1, "type": "active", "name": "Imprison", "spellId": 217832, "icon": "ability_demonhunter_imprison", "index": 100}]}, {"id": 90948, "name": "Charred Warblades", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [91006, 90999], "prev": [90950, 90945], "entries": [{"id": 112861, "definitionId": 117866, "maxRanks": 1, "type": "passive", "name": "Charred Warblades", "spellId": 213010, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 90993, "name": "Chaos Nova", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [95154, 90994], "prev": [90931], "entries": [{"id": 112911, "definitionId": 117916, "maxRanks": 1, "type": "active", "name": "Chaos Nova", "spellId": 179057, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90938, "name": "Improved Disrupt", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90994, 90937, 95150], "prev": [90931, 91007], "entries": [{"id": 112849, "definitionId": 117854, "maxRanks": 1, "type": "passive", "name": "Improved Disrupt", "spellId": 320361, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 91006, "name": "Consume Magic", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [95150, 91005, 90933], "prev": [90948, 91007], "entries": [{"id": 112926, "definitionId": 117931, "maxRanks": 1, "type": "active", "name": "Consume Magic", "spellId": 278326, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90999, "name": "Aldrachi Design", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90933, 95151], "prev": [90948], "entries": [{"id": 112917, "definitionId": 117922, "maxRanks": 1, "type": "passive", "name": "Aldrachi Design", "spellId": 391409, "icon": "inv_glaive_1h_artifactaldrochi_d_01dual", "index": 100}]}, {"id": 95154, "name": "Chaos Fragments", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940], "prev": [90993], "entries": [{"id": 117767, "definitionId": 122779, "maxRanks": 1, "type": "passive", "name": "Chaos Fragments", "spellId": 320412, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90994, "name": "Master of the Glaive / Champion of the Glaive", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940, 90936], "prev": [90993, 90938], "entries": [{"id": 112912, "definitionId": 117917, "maxRanks": 1, "type": "passive", "name": "Master of the Glaive", "spellId": 389763, "icon": "inv_glaive_1h_demonhunter_a_01", "index": 100}, {"id": 117768, "definitionId": 122780, "maxRanks": 1, "type": "passive", "name": "Champion of the Glaive", "spellId": 429211, "icon": "inv_glaive_1h_battledungeon_c_01", "index": 200}]}, {"id": 90937, "name": "Disrupting Fury", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936], "prev": [90938], "entries": [{"id": 112848, "definitionId": 117853, "maxRanks": 1, "type": "passive", "name": "Disrupting Fury", "spellId": 183782, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 95150, "name": "Felblade", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936, 91004], "prev": [91006, 90938], "entries": [{"id": 117759, "definitionId": 122771, "maxRanks": 1, "type": "active", "name": "Felblade", "spellId": 232893, "icon": "ability_demonhunter_felblade", "index": 100}]}, {"id": 91005, "name": "Swallowed Anger", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004], "prev": [91006], "entries": [{"id": 112925, "definitionId": 117930, "maxRanks": 1, "type": "passive", "name": "Swallowed Anger", "spellId": 320313, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90933, "name": "Aura of Pain", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004, 90947], "prev": [91006, 90999], "entries": [{"id": 112844, "definitionId": 117849, "maxRanks": 1, "type": "passive", "name": "Aura of Pain", "spellId": 207347, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 95151, "name": "Live by the Glaive", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90947], "prev": [90999], "entries": [{"id": 117761, "definitionId": 122773, "maxRanks": 1, "type": "passive", "name": "Live by the Glaive", "spellId": 428607, "icon": "inv_sword_108", "index": 100}]}, {"id": 90940, "name": "Pursuit", "type": "single", "posX": 2100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90939, 90935], "prev": [90994, 95154], "entries": [{"id": 112851, "definitionId": 117856, "maxRanks": 1, "type": "passive", "name": "Pursuit", "spellId": 320654, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 90936, "name": "Soul Rending", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90935, 91003], "prev": [90994, 90937, 95150], "entries": [{"id": 112847, "definitionId": 117852, "maxRanks": 2, "type": "passive", "name": "Soul Rending", "spellId": 204909, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 91004, "name": "Infernal Armor", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91003, 91000], "prev": [91005, 95150, 90933], "entries": [{"id": 112924, "definitionId": 117929, "maxRanks": 2, "type": "passive", "name": "Infernal Armor", "spellId": 320331, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90947, "name": "Lost in Darkness", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91000, 95155], "prev": [95151, 90933], "entries": [{"id": 112860, "definitionId": 117865, "maxRanks": 1, "type": "passive", "name": "Lost in Darkness", "spellId": 389849, "icon": "inv_pet_inquisitoreye", "index": 100}]}, {"id": 90939, "name": "Felfire Haste", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934], "prev": [90940], "entries": [{"id": 112850, "definitionId": 117855, "maxRanks": 1, "type": "passive", "name": "Felfire Haste", "spellId": 389846, "icon": "inv_boots_cloth_35v4", "index": 100}]}, {"id": 90935, "name": "Illidari Knowledge", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934, 91002], "prev": [90936, 90940], "entries": [{"id": 112846, "definitionId": 117851, "maxRanks": 1, "type": "passive", "name": "Illidari Knowledge", "spellId": 389696, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 91003, "name": "Demonic", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91002, 90929], "prev": [90936, 91004], "entries": [{"id": 112923, "definitionId": 117928, "maxRanks": 1, "type": "passive", "name": "Demonic", "spellId": 213410, "icon": "spell_shadow_demonform", "index": 100}]}, {"id": 91000, "name": "Will of the Illidari", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90929, 95149], "prev": [91004, 90947], "entries": [{"id": 112918, "definitionId": 117923, "maxRanks": 1, "type": "passive", "name": "Will of the Illidari", "spellId": 389695, "icon": "ability_demonhunter_spectank", "index": 100}]}, {"id": 95155, "name": "Precise Sigils", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [95149], "prev": [90947], "entries": [{"id": 117771, "definitionId": 122783, "maxRanks": 1, "type": "passive", "name": "Precise Sigils", "spellId": 389799, "icon": "ability_bossfelorcs_necromancer_orange", "index": 100}]}, {"id": 90934, "name": "Internal Struggle", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90996], "prev": [90935, 90939], "entries": [{"id": 112845, "definitionId": 117850, "maxRanks": 1, "type": "passive", "name": "Internal Struggle", "spellId": 393822, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 91002, "name": "Darkness", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91001, 95148], "prev": [90935, 91003], "entries": [{"id": 112921, "definitionId": 117926, "maxRanks": 1, "type": "active", "name": "Darkness", "spellId": 196718, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 90929, "name": "Soul Sigils", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95148, 90928], "prev": [91003, 91000], "entries": [{"id": 112839, "definitionId": 117844, "maxRanks": 1, "type": "passive", "name": "Soul Sigils", "spellId": 395446, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95149, "name": "Quickened Sigils", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90949], "prev": [91000, 95155], "entries": [{"id": 117758, "definitionId": 122770, "maxRanks": 1, "type": "passive", "name": "Quickened Sigils", "spellId": 209281, "icon": "ability_demonhunter_concentratedsigils", "index": 100}]}, {"id": 90996, "name": "Erratic Felheart", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95152], "prev": [90934], "entries": [{"id": 112914, "definitionId": 117919, "maxRanks": 2, "type": "passive", "name": "Erratic Felheart", "spellId": 391397, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 91001, "name": "Long Night / Pitch Black", "type": "choice", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91002], "entries": [{"id": 112920, "definitionId": 117925, "maxRanks": 1, "type": "passive", "name": "Long Night", "spellId": 389781, "icon": "spell_fire_twilightimmolation", "index": 100}, {"id": 112919, "definitionId": 117924, "maxRanks": 1, "type": "passive", "name": "Pitch Black", "spellId": 389783, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95148, "name": "Rush of Chaos", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90927], "prev": [90929, 91002], "entries": [{"id": 117757, "definitionId": 122769, "maxRanks": 2, "type": "passive", "name": "Rush of Chaos", "spellId": 320421, "icon": "ability_demonhunter_metamorphasisdps", "index": 100}]}, {"id": 90928, "name": "Demon Muzzle", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90929], "entries": [{"id": 112838, "definitionId": 117843, "maxRanks": 1, "type": "passive", "name": "Demon Muzzle", "spellId": 388111, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 90949, "name": "Flames of Fury", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90997], "prev": [95149], "entries": [{"id": 112862, "definitionId": 117867, "maxRanks": 2, "type": "passive", "name": "Flames of Fury", "spellId": 389694, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95152, "name": "Collective Anguish", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90996], "entries": [{"id": 117762, "definitionId": 122774, "maxRanks": 1, "type": "passive", "name": "Collective Anguish", "spellId": 390152, "icon": "artifactability_havocdemonhunter_anguishofthedeceiver", "index": 200}]}, {"id": 90927, "name": "The Hunt", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95148], "entries": [{"id": 112837, "definitionId": 117842, "maxRanks": 1, "type": "active", "name": "The Hunt", "spellId": 370965, "icon": "inv_ability_demonhunter_thehunt", "index": 100}]}, {"id": 90997, "name": "Sigil of Spite", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90949], "entries": [{"id": 117755, "definitionId": 122767, "maxRanks": 1, "type": "active", "name": "Sigil of Spite", "spellId": 390163, "icon": "inv_ability_demonhunter_elysiandecree", "index": 200}]}], "specNodes": [{"id": 90912, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 91018, "name": "Eye Beam", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [91028, 91019, 90923], "prev": [], "entries": [{"id": 112939, "definitionId": 117944, "maxRanks": 1, "type": "active", "name": "Eye Beam", "spellId": 198013, "icon": "ability_demonhunter_eyebeam", "index": 100}]}, {"id": 91028, "name": "Critical Chaos", "type": "single", "posX": 11400, "posY": 2100, "maxRanks": 1, "next": [93014, 91030, 90925], "prev": [91018], "entries": [{"id": 112951, "definitionId": 117956, "maxRanks": 1, "type": "passive", "name": "Critical Chaos", "spellId": 320413, "icon": "inv_glaive_1h_battledungeon_c_02", "index": 100}]}, {"id": 91019, "name": "Insatiable Hunger / Demon Blades", "type": "choice", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91018], "entries": [{"id": 112941, "definitionId": 117946, "maxRanks": 1, "type": "passive", "name": "Insatiable Hunger", "spellId": 258876, "icon": "ability_rogue_hungerforblood", "index": 100}, {"id": 112940, "definitionId": 117945, "maxRanks": 1, "type": "passive", "name": "Demon Blades", "spellId": 203555, "icon": "inv_weapon_shortblade_92", "index": 200}]}, {"id": 90923, "name": "Burning Hatred", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [90925, 91011, 91017], "prev": [91018], "entries": [{"id": 112832, "definitionId": 117837, "maxRanks": 1, "type": "passive", "name": "Burning Hatred", "spellId": 320374, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 93014, "name": "Improved Fel Rush / Dash of Chaos", "type": "choice", "posX": 10500, "posY": 2700, "maxRanks": 1, "next": [93016], "prev": [91028], "entries": [{"id": 115245, "definitionId": 120257, "maxRanks": 1, "type": "passive", "name": "Improved Fel Rush", "spellId": 343017, "icon": "ability_demonhunter_felrush", "index": 100}, {"id": 117748, "definitionId": 122760, "maxRanks": 1, "type": "passive", "name": "Dash of Chaos", "spellId": 427794, "icon": "inv_boots_cloth_35v3", "index": 200}]}, {"id": 91030, "name": "Improved Chaos Strike", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [93016], "prev": [91028], "entries": [{"id": 112953, "definitionId": 117958, "maxRanks": 1, "type": "passive", "name": "Improved Chaos Strike", "spellId": 343206, "icon": "ability_demonhunter_chaosstrike", "index": 100}]}, {"id": 90925, "name": "First Blood", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93016, 93015], "prev": [90923, 91028], "entries": [{"id": 112834, "definitionId": 117839, "maxRanks": 1, "type": "passive", "name": "First Blood", "spellId": 206416, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 91011, "name": "Accelerated Blade", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [93015], "prev": [90923], "entries": [{"id": 112932, "definitionId": 117937, "maxRanks": 1, "type": "passive", "name": "Accelerated Blade", "spellId": 391275, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91017, "name": "Demon Hide", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [93015], "prev": [90923], "entries": [{"id": 112938, "definitionId": 117943, "maxRanks": 1, "type": "passive", "name": "Demon Hide", "spellId": 428241, "icon": "misc_legionfall_demonhunter", "index": 100}]}, {"id": 93016, "name": "Desperate Instincts / Netherwalk", "type": "choice", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [91027, 90914, 90922], "prev": [91030, 90925, 93014], "entries": [{"id": 115248, "definitionId": 120260, "maxRanks": 1, "type": "passive", "name": "Desperate Instincts", "spellId": 205411, "icon": "spell_shadow_manafeed", "index": 100}, {"id": 115247, "definitionId": 120259, "maxRanks": 1, "type": "active", "name": "Netherwalk", "spellId": 196555, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 93015, "name": "Deflecting Dance / Mortal Dance", "type": "choice", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [90922, 93013, 90915], "prev": [91017, 90925, 91011], "entries": [{"id": 115246, "definitionId": 120258, "maxRanks": 1, "type": "passive", "name": "Deflecting Dance", "spellId": 427776, "icon": "ability_ironmaidens_bladerush", "index": 100}, {"id": 117743, "definitionId": 122755, "maxRanks": 1, "type": "passive", "name": "Mortal Dance", "spellId": 328725, "icon": "ability_demonhunter_vengefulretreat", "index": 200}]}, {"id": 91027, "name": "Initiative", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91022, 91026], "prev": [93016], "entries": [{"id": 112950, "definitionId": 117955, "maxRanks": 1, "type": "passive", "name": "Initiative", "spellId": 388108, "icon": "ability_rogue_surpriseattack", "index": 100}]}, {"id": 90914, "name": "Scars of Suffering", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91026], "prev": [93016], "entries": [{"id": 112823, "definitionId": 117828, "maxRanks": 1, "type": "passive", "name": "Scars of Suffering", "spellId": 428232, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 90922, "name": "Chaotic Transformation", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91026, 90921, 91015], "prev": [93015, 93016], "entries": [{"id": 112831, "definitionId": 117836, "maxRanks": 1, "type": "passive", "name": "Chaotic Transformation", "spellId": 388112, "icon": "ability_demonhunter_glide", "index": 100}]}, {"id": 93013, "name": "Furious Throws", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91015], "prev": [93015], "entries": [{"id": 115244, "definitionId": 120256, "maxRanks": 1, "type": "passive", "name": "Furious Throws", "spellId": 393029, "icon": "inv_glaive_1h_npc_d_01", "index": 100}]}, {"id": 90915, "name": "Trail of Ruin", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91015, 90916], "prev": [93015], "entries": [{"id": 112824, "definitionId": 117829, "maxRanks": 1, "type": "passive", "name": "Trail of Ruin", "spellId": 258881, "icon": "ability_demonhunter_bladedance", "index": 100}]}, {"id": 91022, "name": "Tactical Retreat", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91020, 91036], "prev": [91027], "entries": [{"id": 112944, "definitionId": 117949, "maxRanks": 1, "type": "passive", "name": "Tactical Retreat", "spellId": 389688, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 91026, "name": "Blind Fury", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91036, 91025], "prev": [90922, 91027, 90914], "entries": [{"id": 112949, "definitionId": 117954, "maxRanks": 2, "type": "passive", "name": "Blind Fury", "spellId": 203550, "icon": "ability_bosskilrogg_deadeye", "index": 100}]}, {"id": 90921, "name": "Looks Can Kill", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90922], "entries": [{"id": 112830, "definitionId": 117835, "maxRanks": 1, "type": "passive", "name": "Looks Can Kill", "spellId": 320415, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}]}, {"id": 91015, "name": "Dancing with Fate", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91025, 91013], "prev": [90922, 90915, 93013], "entries": [{"id": 112936, "definitionId": 117941, "maxRanks": 2, "type": "passive", "name": "Dancing with Fate", "spellId": 389978, "icon": "inv_polearm_1h_felfireraid_d_02", "index": 100}]}, {"id": 90916, "name": "Growing Inferno", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91013, 90917], "prev": [90915], "entries": [{"id": 112825, "definitionId": 117830, "maxRanks": 1, "type": "passive", "name": "Growing Inferno", "spellId": 390158, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 91020, "name": "Unbound Chaos", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91021, 91035], "prev": [91022], "entries": [{"id": 112942, "definitionId": 117947, "maxRanks": 1, "type": "passive", "name": "Unbound Chaos", "spellId": 347461, "icon": "artifactability_vengeancedemonhunter_painbringer", "index": 100}]}, {"id": 91036, "name": "Isolated Prey", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91035], "prev": [91026, 91022], "entries": [{"id": 112959, "definitionId": 117964, "maxRanks": 1, "type": "passive", "name": "Isolated Prey", "spellId": 388113, "icon": "spell_shadow_shadesofdarkness", "index": 100}]}, {"id": 91025, "name": "Furious Gaze", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91035, 91024, 91012], "prev": [91026, 91015], "entries": [{"id": 112948, "definitionId": 117953, "maxRanks": 1, "type": "passive", "name": "Furious Gaze", "spellId": 343311, "icon": "ability_demonhunter_eyebeam", "index": 100}]}, {"id": 91013, "name": "Serrated Glaive", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91012], "prev": [90916, 91015], "entries": [{"id": 112934, "definitionId": 117939, "maxRanks": 1, "type": "passive", "name": "Serrated Glaive", "spellId": 390154, "icon": "inv_glaive_1h_artifactaldrochi_d_03dual", "index": 100}]}, {"id": 90917, "name": "Burning Wound", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91012, 90918], "prev": [90916], "entries": [{"id": 112826, "definitionId": 117831, "maxRanks": 1, "type": "passive", "name": "Burning Wound", "spellId": 391189, "icon": "spell_fire_felhellfire", "index": 100}]}, {"id": 91021, "name": "Momentum / Inertia", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034], "prev": [91020], "entries": [{"id": 112943, "definitionId": 117948, "maxRanks": 1, "type": "passive", "name": "Momentum", "spellId": 206476, "icon": "ability_foundryraid_demolition", "index": 100}, {"id": 117744, "definitionId": 122756, "maxRanks": 1, "type": "passive", "name": "Inertia", "spellId": 427640, "icon": "inv_10_inscription3_pigments_black", "index": 200}]}, {"id": 91035, "name": "Chaos Theory / Glaive Tempest", "type": "choice", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034], "prev": [91025, 91036, 91020], "entries": [{"id": 112958, "definitionId": 117963, "maxRanks": 1, "type": "passive", "name": "Chaos Theory", "spellId": 389687, "icon": "inv_glaive_1h_artifactaldrochi_d_03dual", "index": 100}, {"id": 117763, "definitionId": 122775, "maxRanks": 1, "type": "active", "name": "Glaive Tempest", "spellId": 342817, "icon": "inv_glaive_1h_artifactazgalor_d_06dual", "index": 200}]}, {"id": 91024, "name": "Inner Demon / Restless Hunter", "type": "choice", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034, 91032, 95147], "prev": [91025], "entries": [{"id": 112947, "definitionId": 117952, "maxRanks": 1, "type": "passive", "name": "Inner Demon", "spellId": 389693, "icon": "ability_demonhunter_glide", "index": 100}, {"id": 117765, "definitionId": 122777, "maxRanks": 1, "type": "passive", "name": "Restless Hunter", "spellId": 390142, "icon": "ability_demonhunter_doublejump", "index": 200}]}, {"id": 91012, "name": "Relentless Onslaught / Soulscar", "type": "choice", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95147], "prev": [91025, 90917, 91013], "entries": [{"id": 112933, "definitionId": 117938, "maxRanks": 1, "type": "passive", "name": "Relentless Onslaught", "spellId": 389977, "icon": "ability_demonhunter_soulcleave2", "index": 100}, {"id": 117764, "definitionId": 122776, "maxRanks": 1, "type": "passive", "name": "Soulscar", "spellId": 388106, "icon": "ability_demonhunter_bloodlet", "index": 200}]}, {"id": 90918, "name": "Ragefire", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95147], "prev": [90917], "entries": [{"id": 112827, "definitionId": 117832, "maxRanks": 1, "type": "passive", "name": "Ragefire", "spellId": 388107, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 91034, "name": "Know Your Enemy", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95143, 91033], "prev": [91035, 91021, 91024], "entries": [{"id": 112957, "definitionId": 117962, "maxRanks": 2, "type": "passive", "name": "Know Your Enemy", "spellId": 388118, "icon": "ability_demonhunter_eyeofleotheras", "index": 100}]}, {"id": 91032, "name": "Cycle of Hatred", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [91033, 91031, 90919], "prev": [91024], "entries": [{"id": 112955, "definitionId": 117960, "maxRanks": 2, "type": "passive", "name": "Cycle of Hatred", "spellId": 258887, "icon": "ability_ironmaidens_whirlofblood", "index": 100}]}, {"id": 95147, "name": "Chaotic Disposition", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90919, 95144], "prev": [90918, 91012, 91024], "entries": [{"id": 117754, "definitionId": 122766, "maxRanks": 2, "type": "passive", "name": "Chaotic Disposition", "spellId": 428492, "icon": "inv_inscription_tarotchaos", "index": 100}]}, {"id": 95143, "name": "A Fire Inside", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91034], "entries": [{"id": 117741, "definitionId": 122753, "maxRanks": 1, "type": "passive", "name": "A Fire Inside", "spellId": 427775, "icon": "ability_demonhunter_chaoticimprint_fire", "index": 100}]}, {"id": 91033, "name": "Essence Break", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032, 91034], "entries": [{"id": 112956, "definitionId": 117961, "maxRanks": 1, "type": "active", "name": "Essence Break", "spellId": 258860, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 91031, "name": "Shattered Destiny", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032], "entries": [{"id": 112954, "definitionId": 117959, "maxRanks": 1, "type": "passive", "name": "Shattered Destiny", "spellId": 388116, "icon": "achievement_boss_triumvirate_darknaaru", "index": 100}]}, {"id": 90919, "name": "Any Means Necessary", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032, 95147], "entries": [{"id": 112828, "definitionId": 117833, "maxRanks": 1, "type": "passive", "name": "Any Means Necessary", "spellId": 388114, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 95144, "name": "Fel Barrage", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95147], "entries": [{"id": 117742, "definitionId": 122754, "maxRanks": 1, "type": "active", "name": "Fel Barrage", "spellId": 258925, "icon": "inv_felbarrage", "index": 100}]}], "heroNodes": [{"id": 94915, "name": "Art of the Glaive", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 35, "next": [94898, 94911, 94903], "prev": [], "entries": [{"id": 117512, "definitionId": 122524, "maxRanks": 1, "type": "passive", "name": "Art of the Glaive", "spellId": 442290, "icon": "inv_ability_aldrachireaverdemonhunter_reaversglaive", "index": 100}], "freeNode": true}, {"id": 94898, "name": "Fury of the Aldrachi", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94914], "prev": [94915], "entries": [{"id": 117495, "definitionId": 122519, "maxRanks": 1, "type": "passive", "name": "Fury of the Aldrachi", "spellId": 442718, "icon": "spell_fire_felflamestrike", "index": 100}]}, {"id": 94911, "name": "Evasive Action / Unhindered Assault", "type": "choice", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94896], "prev": [94915], "entries": [{"id": 117508, "definitionId": 122520, "maxRanks": 1, "type": "passive", "name": "Evasive Action", "spellId": 444926, "icon": "ability_demonhunter_vengefulretreat", "index": 100}, {"id": 123047, "definitionId": 127928, "maxRanks": 1, "type": "passive", "name": "Unhindered Assault", "spellId": 444931, "icon": "ability_ironmaidens_bladerush", "index": 200}]}, {"id": 94903, "name": "Reaver's Mark", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94897], "prev": [94915], "entries": [{"id": 117500, "definitionId": 122512, "maxRanks": 1, "type": "passive", "name": "Reaver's Mark", "spellId": 442679, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 94914, "name": "Aldrachi Tactics", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94895], "prev": [94898], "entries": [{"id": 117511, "definitionId": 122523, "maxRanks": 1, "type": "passive", "name": "Aldrachi Tactics", "spellId": 442683, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 94896, "name": "Army Unto Oneself / Incorruptible Spirit", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94910], "prev": [94911], "entries": [{"id": 117493, "definitionId": 122505, "maxRanks": 1, "type": "passive", "name": "Army Unto Oneself", "spellId": 442714, "icon": "ability_warlock_avoidance", "index": 100}, {"id": 123046, "definitionId": 127927, "maxRanks": 1, "type": "passive", "name": "Incorruptible Spirit", "spellId": 442736, "icon": "spell_nzinsanity_chasedbyshadows", "index": 200}]}, {"id": 94897, "name": "Wounded Quarry", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94906], "prev": [94903], "entries": [{"id": 117494, "definitionId": 122506, "maxRanks": 1, "type": "passive", "name": "Wounded Quarry", "spellId": 442806, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94895, "name": "Incisive Blade", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94914], "entries": [{"id": 117492, "definitionId": 122504, "maxRanks": 1, "type": "passive", "name": "Incisive Blade", "spellId": 442492, "icon": "ability_dualwieldspecialization", "index": 100}]}, {"id": 94910, "name": "Keen Engagement / Preemptive Strike", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94896], "entries": [{"id": 117507, "definitionId": 122507, "maxRanks": 1, "type": "passive", "name": "Keen Engagement", "spellId": 442497, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 122422, "definitionId": 127322, "maxRanks": 1, "type": "passive", "name": "Preemptive Strike", "spellId": 444997, "icon": "ability_rogue_focusedattacks", "index": 200}]}, {"id": 94906, "name": "Warblade's Hunger", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94897], "entries": [{"id": 117503, "definitionId": 122515, "maxRanks": 1, "type": "passive", "name": "Warblade's Hunger", "spellId": 442502, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 94919, "name": "Thrill of the Fight", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 35, "next": [], "prev": [94910, 94895, 94906], "entries": [{"id": 117516, "definitionId": 122528, "maxRanks": 1, "type": "passive", "name": "Thrill of the Fight", "spellId": 442686, "icon": "spell_arcane_arcanetactics", "index": 100}]}, {"id": 94917, "name": "Demonsurge", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 34, "next": [94913, 94918, 94899], "prev": [], "entries": [{"id": 117514, "definitionId": 122526, "maxRanks": 1, "type": "passive", "name": "Demonsurge", "spellId": 452402, "icon": "inv_ability_felscarreddemonhunter_demonsurge", "index": 100}], "freeNode": true}, {"id": 94913, "name": "Wave of Debilitation / Pursuit of Angriness", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94905], "prev": [94917], "entries": [{"id": 117510, "definitionId": 122522, "maxRanks": 1, "type": "passive", "name": "Wave of Debilitation", "spellId": 452403, "icon": "spell_fire_felfirenova", "index": 100}, {"id": 124011, "definitionId": 128849, "maxRanks": 1, "type": "passive", "name": "Pursuit of Angriness", "spellId": 452404, "icon": "ability_felarakkoa_focusedblast", "index": 200}]}, {"id": 94918, "name": "Focused Hatred", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94912], "prev": [94917], "entries": [{"id": 117515, "definitionId": 122527, "maxRanks": 1, "type": "passive", "name": "Focused Hatred", "spellId": 452405, "icon": "ability_demonhunter_illidansgrasp", "index": 100}]}, {"id": 94899, "name": "Set Fire to the Pain / Improved Soul Rending", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94916], "prev": [94917], "entries": [{"id": 117496, "definitionId": 122508, "maxRanks": 1, "type": "passive", "name": "Set Fire to the Pain", "spellId": 452406, "icon": "ability_demonhunter_empowerwards", "index": 100}, {"id": 124010, "definitionId": 128848, "maxRanks": 1, "type": "passive", "name": "Improved Soul Rending", "spellId": 452407, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 94905, "name": "Burning Blades", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94904], "prev": [94913], "entries": [{"id": 117502, "definitionId": 122514, "maxRanks": 1, "type": "passive", "name": "Burning Blades", "spellId": 452408, "icon": "inv_glaive_1h_artifactazgalor_d_02dual", "index": 100}]}, {"id": 94912, "name": "Violent Transformation", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94902], "prev": [94918], "entries": [{"id": 117509, "definitionId": 122521, "maxRanks": 1, "type": "passive", "name": "Violent Transformation", "spellId": 452409, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 94916, "name": "Enduring Torment", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94909], "prev": [94899], "entries": [{"id": 117513, "definitionId": 122525, "maxRanks": 1, "type": "passive", "name": "Enduring Torment", "spellId": 452410, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 94904, "name": "Untethered Fury", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94905], "entries": [{"id": 117501, "definitionId": 122513, "maxRanks": 1, "type": "passive", "name": "Untethered Fury", "spellId": 452411, "icon": "inv__felbarrage", "index": 100}]}, {"id": 94902, "name": "Student of Suffering / Flamebound", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94912], "entries": [{"id": 117499, "definitionId": 122511, "maxRanks": 1, "type": "passive", "name": "Student of Suffering", "spellId": 452412, "icon": "achievement_dungeon_theatreofpain_kultharok", "index": 100}, {"id": 124009, "definitionId": 128847, "maxRanks": 1, "type": "passive", "name": "Flamebound", "spellId": 452413, "icon": "spell_fire_felflamering", "index": 200}]}, {"id": 94909, "name": "Monster Rising", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94916], "entries": [{"id": 117506, "definitionId": 122518, "maxRanks": 1, "type": "passive", "name": "Monster Rising", "spellId": 452414, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 94901, "name": "Demonic Intensity", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 34, "next": [], "prev": [94902, 94904, 94909], "entries": [{"id": 117498, "definitionId": 122510, "maxRanks": 1, "type": "passive", "name": "Demonic Intensity", "spellId": 452415, "icon": "spell_warlock_demonicempowerment", "index": 100}]}], "subTreeNodes": [{"id": 99824, "name": "Aldrachi Reaver / Fel-Scarred", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123330, "type": "subtree", "name": "Aldrachi Reaver", "traitSubTreeId": 35, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-aldrachireaver", "nodes": [94915, 94898, 94911, 94903, 94914, 94896, 94897, 94895, 94910, 94906, 94919]}, {"id": 123329, "type": "subtree", "name": "Fel-Scarred", "traitSubTreeId": 34, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-felscarred", "nodes": [94917, 94913, 94918, 94899, 94905, 94912, 94916, 94904, 94902, 94909, 94901]}]}], "fullNodeOrder": [90912, 90914, 90915, 90916, 90917, 90918, 90919, 90921, 90922, 90923, 90925, 90927, 90928, 90929, 90930, 90931, 90933, 90934, 90935, 90936, 90937, 90938, 90939, 90940, 90941, 90942, 90945, 90946, 90947, 90948, 90949, 90950, 90951, 90952, 90953, 90954, 90955, 90956, 90957, 90958, 90959, 90960, 90961, 90962, 90963, 90964, 90965, 90966, 90967, 90968, 90969, 90970, 90971, 90972, 90973, 90974, 90975, 90976, 90977, 90978, 90979, 90980, 90981, 90982, 90983, 90984, 90985, 90986, 90987, 90988, 90989, 90990, 90991, 90993, 90994, 90996, 90997, 90999, 91000, 91001, 91002, 91003, 91004, 91005, 91006, 91007, 91008, 91011, 91012, 91013, 91015, 91017, 91018, 91019, 91020, 91021, 91022, 91024, 91025, 91026, 91027, 91028, 91030, 91031, 91032, 91033, 91034, 91035, 91036, 93013, 93014, 93015, 93016, 94895, 94896, 94897, 94898, 94899, 94901, 94902, 94903, 94904, 94905, 94906, 94909, 94910, 94911, 94912, 94913, 94914, 94915, 94916, 94917, 94918, 94919, 95143, 95144, 95147, 95148, 95149, 95150, 95151, 95152, 95154, 95155, 99823, 99824]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/demon_hunter_vengeance.json b/simc_support/game_data/data_files/trees/demon_hunter_vengeance.json index 97ee954..59dc86f 100644 --- a/simc_support/game_data/data_files/trees/demon_hunter_vengeance.json +++ b/simc_support/game_data/data_files/trees/demon_hunter_vengeance.json @@ -1 +1 @@ -{"traitTreeId": 854, "className": "Demon Hunter", "classId": 12, "specName": "Vengeance", "specId": 581, "classNodes": [{"id": 90942, "name": "Vengeful Retreat", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90930, 90941], "prev": [], "entries": [{"id": 112853, "definitionId": 117858, "maxRanks": 1, "type": "active", "name": "Vengeful Retreat", "spellId": 198793, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 91008, "name": "Blazing Path", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90941, 90950], "prev": [], "entries": [{"id": 112928, "definitionId": 117933, "maxRanks": 1, "type": "passive", "name": "Blazing Path", "spellId": 320416, "icon": "ability_demonhunter_felrush", "index": 100}]}, {"id": 90946, "name": "Sigil of Misery", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90950, 90945], "prev": [], "entries": [{"id": 112859, "definitionId": 117864, "maxRanks": 1, "type": "active", "name": "Sigil of Misery", "spellId": 207684, "icon": "ability_demonhunter_sigilofmisery", "index": 100}], "freeNode": true}, {"id": 90930, "name": "Vengeful Bonds", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [90931], "prev": [90942], "entries": [{"id": 112840, "definitionId": 117845, "maxRanks": 1, "type": "passive", "name": "Vengeful Bonds", "spellId": 320635, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 90941, "name": "Unrestrained Fury", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90931, 91007], "prev": [90942, 91008], "entries": [{"id": 112852, "definitionId": 117857, "maxRanks": 1, "type": "passive", "name": "Unrestrained Fury", "spellId": 320770, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90950, "name": "Shattered Restoration", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [91007, 90948], "prev": [90946, 91008], "entries": [{"id": 112863, "definitionId": 117868, "maxRanks": 1, "type": "passive", "name": "Shattered Restoration", "spellId": 389824, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 90945, "name": "Improved Sigil of Misery", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [90948], "prev": [90946], "entries": [{"id": 112858, "definitionId": 117863, "maxRanks": 1, "type": "passive", "name": "Improved Sigil of Misery", "spellId": 320418, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90931, "name": "Bouncing Glaives", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90993, 90938], "prev": [90941, 90930], "entries": [{"id": 112841, "definitionId": 117846, "maxRanks": 1, "type": "passive", "name": "Bouncing Glaives", "spellId": 320386, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91007, "name": "Imprison", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90938, 91006], "prev": [90950, 90941], "entries": [{"id": 112927, "definitionId": 117932, "maxRanks": 1, "type": "active", "name": "Imprison", "spellId": 217832, "icon": "ability_demonhunter_imprison", "index": 100}]}, {"id": 90948, "name": "Charred Warblades", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [91006, 90999], "prev": [90950, 90945], "entries": [{"id": 112861, "definitionId": 117866, "maxRanks": 1, "type": "passive", "name": "Charred Warblades", "spellId": 213010, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 90993, "name": "Chaos Nova", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [95154, 90994], "prev": [90931], "entries": [{"id": 112911, "definitionId": 117916, "maxRanks": 1, "type": "active", "name": "Chaos Nova", "spellId": 179057, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90938, "name": "Improved Disrupt", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90994, 90937, 95150], "prev": [90931, 91007], "entries": [{"id": 112849, "definitionId": 117854, "maxRanks": 1, "type": "passive", "name": "Improved Disrupt", "spellId": 320361, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 91006, "name": "Consume Magic", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [95150, 91005, 90933], "prev": [90948, 91007], "entries": [{"id": 112926, "definitionId": 117931, "maxRanks": 1, "type": "active", "name": "Consume Magic", "spellId": 278326, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90999, "name": "Aldrachi Design", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90933, 95151], "prev": [90948], "entries": [{"id": 112917, "definitionId": 117922, "maxRanks": 1, "type": "passive", "name": "Aldrachi Design", "spellId": 391409, "icon": "inv_glaive_1h_artifactaldrochi_d_01dual", "index": 100}]}, {"id": 95154, "name": "Chaos Fragments", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940], "prev": [90993], "entries": [{"id": 117767, "definitionId": 122779, "maxRanks": 1, "type": "passive", "name": "Chaos Fragments", "spellId": 320412, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90994, "name": "Master of the Glaive / Champion of the Glaive", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940, 90936], "prev": [90993, 90938], "entries": [{"id": 112912, "definitionId": 117917, "maxRanks": 1, "type": "passive", "name": "Master of the Glaive", "spellId": 389763, "icon": "inv_glaive_1h_demonhunter_a_01", "index": 100}, {"id": 117768, "definitionId": 122780, "maxRanks": 1, "type": "passive", "name": "Champion of the Glaive", "spellId": 429211, "icon": "inv_glaive_1h_battledungeon_c_01", "index": 200}]}, {"id": 90937, "name": "Disrupting Fury", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936], "prev": [90938], "entries": [{"id": 112848, "definitionId": 117853, "maxRanks": 1, "type": "passive", "name": "Disrupting Fury", "spellId": 183782, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 95150, "name": "Felblade", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936, 91004], "prev": [91006, 90938], "entries": [{"id": 117759, "definitionId": 122771, "maxRanks": 1, "type": "active", "name": "Felblade", "spellId": 232893, "icon": "ability_demonhunter_felblade", "index": 100}]}, {"id": 91005, "name": "Swallowed Anger", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004], "prev": [91006], "entries": [{"id": 112925, "definitionId": 117930, "maxRanks": 1, "type": "passive", "name": "Swallowed Anger", "spellId": 320313, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90933, "name": "Aura of Pain", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004, 90947], "prev": [91006, 90999], "entries": [{"id": 112844, "definitionId": 117849, "maxRanks": 1, "type": "passive", "name": "Aura of Pain", "spellId": 207347, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 95151, "name": "Live by the Glaive", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90947], "prev": [90999], "entries": [{"id": 117761, "definitionId": 122773, "maxRanks": 1, "type": "passive", "name": "Live by the Glaive", "spellId": 428607, "icon": "inv_sword_108", "index": 100}]}, {"id": 90940, "name": "Pursuit", "type": "single", "posX": 2100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90939, 90935], "prev": [90994, 95154], "entries": [{"id": 112851, "definitionId": 117856, "maxRanks": 1, "type": "passive", "name": "Pursuit", "spellId": 320654, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 90936, "name": "Soul Rending", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90935, 91003], "prev": [90994, 90937, 95150], "entries": [{"id": 112847, "definitionId": 117852, "maxRanks": 2, "type": "passive", "name": "Soul Rending", "spellId": 204909, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 91004, "name": "Infernal Armor", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91003, 91000], "prev": [91005, 95150, 90933], "entries": [{"id": 112924, "definitionId": 117929, "maxRanks": 2, "type": "passive", "name": "Infernal Armor", "spellId": 320331, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90947, "name": "Lost in Darkness", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91000, 95155], "prev": [95151, 90933], "entries": [{"id": 112860, "definitionId": 117865, "maxRanks": 1, "type": "passive", "name": "Lost in Darkness", "spellId": 389849, "icon": "inv_pet_inquisitoreye", "index": 100}]}, {"id": 90939, "name": "Felfire Haste", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934], "prev": [90940], "entries": [{"id": 112850, "definitionId": 117855, "maxRanks": 1, "type": "passive", "name": "Felfire Haste", "spellId": 389846, "icon": "inv_boots_cloth_35v4", "index": 100}]}, {"id": 90935, "name": "Illidari Knowledge", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934, 91002], "prev": [90936, 90940], "entries": [{"id": 112846, "definitionId": 117851, "maxRanks": 1, "type": "passive", "name": "Illidari Knowledge", "spellId": 389696, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 91003, "name": "Demonic", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91002, 90929], "prev": [90936, 91004], "entries": [{"id": 112923, "definitionId": 117928, "maxRanks": 1, "type": "passive", "name": "Demonic", "spellId": 213410, "icon": "spell_shadow_demonform", "index": 100}]}, {"id": 91000, "name": "Will of the Illidari", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90929, 95149], "prev": [91004, 90947], "entries": [{"id": 112918, "definitionId": 117923, "maxRanks": 1, "type": "passive", "name": "Will of the Illidari", "spellId": 389695, "icon": "ability_demonhunter_spectank", "index": 100}]}, {"id": 95155, "name": "Precise Sigils", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [95149], "prev": [90947], "entries": [{"id": 117771, "definitionId": 122783, "maxRanks": 1, "type": "passive", "name": "Precise Sigils", "spellId": 389799, "icon": "ability_bossfelorcs_necromancer_orange", "index": 100}]}, {"id": 90934, "name": "Internal Struggle", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90996], "prev": [90935, 90939], "entries": [{"id": 112845, "definitionId": 117850, "maxRanks": 1, "type": "passive", "name": "Internal Struggle", "spellId": 393822, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 91002, "name": "Darkness", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91001, 95148], "prev": [90935, 91003], "entries": [{"id": 112921, "definitionId": 117926, "maxRanks": 1, "type": "active", "name": "Darkness", "spellId": 196718, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 90929, "name": "Soul Sigils", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95148, 90928], "prev": [91003, 91000], "entries": [{"id": 112839, "definitionId": 117844, "maxRanks": 1, "type": "passive", "name": "Soul Sigils", "spellId": 395446, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95149, "name": "Quickened Sigils", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90949], "prev": [91000, 95155], "entries": [{"id": 117758, "definitionId": 122770, "maxRanks": 1, "type": "passive", "name": "Quickened Sigils", "spellId": 209281, "icon": "ability_demonhunter_concentratedsigils", "index": 100}]}, {"id": 90996, "name": "Erratic Felheart", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95152], "prev": [90934], "entries": [{"id": 112914, "definitionId": 117919, "maxRanks": 2, "type": "passive", "name": "Erratic Felheart", "spellId": 391397, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 91001, "name": "Long Night / Pitch Black", "type": "choice", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91002], "entries": [{"id": 112920, "definitionId": 117925, "maxRanks": 1, "type": "passive", "name": "Long Night", "spellId": 389781, "icon": "spell_fire_twilightimmolation", "index": 100}, {"id": 112919, "definitionId": 117924, "maxRanks": 1, "type": "passive", "name": "Pitch Black", "spellId": 389783, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95148, "name": "Rush of Chaos", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90927], "prev": [90929, 91002], "entries": [{"id": 117757, "definitionId": 122769, "maxRanks": 2, "type": "passive", "name": "Rush of Chaos", "spellId": 320421, "icon": "ability_demonhunter_metamorphasisdps", "index": 100}]}, {"id": 90928, "name": "Demon Muzzle", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90929], "entries": [{"id": 112838, "definitionId": 117843, "maxRanks": 1, "type": "passive", "name": "Demon Muzzle", "spellId": 388111, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 90949, "name": "Flames of Fury", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90997], "prev": [95149], "entries": [{"id": 112862, "definitionId": 117867, "maxRanks": 2, "type": "passive", "name": "Flames of Fury", "spellId": 389694, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95152, "name": "Collective Anguish", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90996], "entries": [{"id": 117762, "definitionId": 122774, "maxRanks": 1, "type": "passive", "name": "Collective Anguish", "spellId": 390152, "icon": "artifactability_havocdemonhunter_anguishofthedeceiver", "index": 200}]}, {"id": 90927, "name": "The Hunt", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95148], "entries": [{"id": 112837, "definitionId": 117842, "maxRanks": 1, "type": "active", "name": "The Hunt", "spellId": 370965, "icon": "ability_ardenweald_demonhunter", "index": 100}]}, {"id": 90997, "name": "Sigil of Spite", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90949], "entries": [{"id": 117755, "definitionId": 122767, "maxRanks": 1, "type": "active", "name": "Sigil of Spite", "spellId": 390163, "icon": "ability_bastion_demonhunter", "index": 200}]}], "specNodes": [{"id": 90912, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 90991, "name": "Fel Devastation", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90990, 90951], "prev": [], "entries": [{"id": 112908, "definitionId": 117913, "maxRanks": 1, "type": "active", "name": "Fel Devastation", "spellId": 212084, "icon": "ability_demonhunter_feldevastation", "index": 100}]}, {"id": 90990, "name": "Frailty", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [90970, 90989], "prev": [90991], "entries": [{"id": 112907, "definitionId": 117912, "maxRanks": 1, "type": "passive", "name": "Frailty", "spellId": 389958, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90951, "name": "Fiery Brand", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90989, 90960], "prev": [90991], "entries": [{"id": 112864, "definitionId": 117869, "maxRanks": 1, "type": "active", "name": "Fiery Brand", "spellId": 204021, "icon": "ability_demonhunter_fierybrand", "index": 100}]}, {"id": 90970, "name": "Shear Fury / Fracture", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90968, 90967], "prev": [90990], "entries": [{"id": 112886, "definitionId": 117891, "maxRanks": 1, "type": "passive", "name": "Shear Fury", "spellId": 389997, "icon": "ability_demonhunter_hatefulstrike", "index": 100}, {"id": 112885, "definitionId": 117890, "maxRanks": 1, "type": "active", "name": "Fracture", "spellId": 263642, "icon": "ability_creature_felsunder", "index": 200}]}, {"id": 90989, "name": "Deflecting Spikes", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90988], "prev": [90951, 90990], "entries": [{"id": 112906, "definitionId": 117911, "maxRanks": 1, "type": "passive", "name": "Deflecting Spikes", "spellId": 321028, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90960, "name": "Ascending Flame", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90952, 90953], "prev": [90951], "entries": [{"id": 112875, "definitionId": 117880, "maxRanks": 1, "type": "passive", "name": "Ascending Flame", "spellId": 428603, "icon": "inv_helm_suncrown_d_01", "index": 100}]}, {"id": 90968, "name": "Perfectly Balanced Glaive", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90969, 90971, 90978], "prev": [90970], "entries": [{"id": 112883, "definitionId": 117888, "maxRanks": 1, "type": "passive", "name": "Perfectly Balanced Glaive", "spellId": 320387, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 90967, "name": "Calcified Spikes", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [90971], "prev": [90970], "entries": [{"id": 112882, "definitionId": 117887, "maxRanks": 1, "type": "passive", "name": "Calcified Spikes", "spellId": 389720, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90988, "name": "Roaring Fire / Sigil of Silence", "type": "choice", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [90971, 90966, 90987], "prev": [90989], "entries": [{"id": 112905, "definitionId": 117910, "maxRanks": 1, "type": "passive", "name": "Roaring Fire", "spellId": 391178, "icon": "spell_fire_felflamering", "index": 100}, {"id": 112904, "definitionId": 117909, "maxRanks": 1, "type": "active", "name": "Sigil of Silence", "spellId": 202137, "icon": "ability_demonhunter_sigilofsilence", "index": 200}]}, {"id": 90952, "name": "Retaliation", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [90987], "prev": [90960], "entries": [{"id": 112865, "definitionId": 117870, "maxRanks": 1, "type": "passive", "name": "Retaliation", "spellId": 389729, "icon": "ability_demonhunter_demonspikes2", "index": 100}]}, {"id": 90953, "name": "Meteoric Strikes", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90987, 90956, 90957], "prev": [90960], "entries": [{"id": 112866, "definitionId": 117871, "maxRanks": 1, "type": "passive", "name": "Meteoric Strikes", "spellId": 389724, "icon": "spell_warlock_summonabyssal", "index": 100}]}, {"id": 90978, "name": "Spirit Bomb", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977], "prev": [90968], "entries": [{"id": 112894, "definitionId": 117899, "maxRanks": 1, "type": "active", "name": "Spirit Bomb", "spellId": 247454, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90969, "name": "Feast of Souls", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977], "prev": [90968], "entries": [{"id": 112884, "definitionId": 117889, "maxRanks": 1, "type": "passive", "name": "Feast of Souls", "spellId": 207697, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 90971, "name": "Agonizing Flames", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977, 90972], "prev": [90988, 90968, 90967], "entries": [{"id": 112887, "definitionId": 117892, "maxRanks": 1, "type": "passive", "name": "Agonizing Flames", "spellId": 207548, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 90966, "name": "Extended Spikes", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90972, 90965, 90986], "prev": [90988], "entries": [{"id": 112881, "definitionId": 117886, "maxRanks": 1, "type": "passive", "name": "Extended Spikes", "spellId": 389721, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90987, "name": "Burning Blood", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90986, 90955], "prev": [90988, 90953, 90952], "entries": [{"id": 112903, "definitionId": 117908, "maxRanks": 1, "type": "passive", "name": "Burning Blood", "spellId": 390213, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90956, "name": "Soul Barrier / Bulk Extraction", "type": "choice", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90955], "prev": [90953], "entries": [{"id": 112870, "definitionId": 117875, "maxRanks": 1, "type": "active", "name": "Soul Barrier", "spellId": 263648, "icon": "inv_soulbarrier", "index": 100}, {"id": 112869, "definitionId": 117874, "maxRanks": 1, "type": "active", "name": "Bulk Extraction", "spellId": 320341, "icon": "spell_shadow_shadesofdarkness", "index": 300}]}, {"id": 90957, "name": "Revel in Pain", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90955], "prev": [90953], "entries": [{"id": 112871, "definitionId": 117876, "maxRanks": 1, "type": "passive", "name": "Revel in Pain", "spellId": 343014, "icon": "ability_bossfelmagnaron_handempowered", "index": 100}]}, {"id": 90977, "name": "Void Reaver", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90976, 90974], "prev": [90969, 90978, 90971], "entries": [{"id": 112893, "definitionId": 117898, "maxRanks": 1, "type": "passive", "name": "Void Reaver", "spellId": 268175, "icon": "spell_shadow_demonicempathy", "index": 100}]}, {"id": 90972, "name": "Fallout", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90976, 90954], "prev": [90966, 90971], "entries": [{"id": 112888, "definitionId": 117893, "maxRanks": 1, "type": "passive", "name": "Fallout", "spellId": 227174, "icon": "spell_volatilefiregreen", "index": 100}]}, {"id": 90965, "name": "Ruinous Bulwark", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90954], "prev": [90966], "entries": [{"id": 112880, "definitionId": 117885, "maxRanks": 1, "type": "passive", "name": "Ruinous Bulwark", "spellId": 326853, "icon": "ability_demonhunter_feldevastation", "index": 100}]}, {"id": 90986, "name": "Volatile Flameblood", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90954, 90958], "prev": [90987, 90966], "entries": [{"id": 112902, "definitionId": 117907, "maxRanks": 1, "type": "passive", "name": "Volatile Flameblood", "spellId": 390808, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90955, "name": "Fel Flame Fortification", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90958, 90964], "prev": [90956, 90987, 90957], "entries": [{"id": 112868, "definitionId": 117873, "maxRanks": 1, "type": "passive", "name": "Fel Flame Fortification", "spellId": 389705, "icon": "spell_fire_felfire", "index": 100}]}, {"id": 90974, "name": "Soul Furnace", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90975], "prev": [90977], "entries": [{"id": 112890, "definitionId": 117895, "maxRanks": 1, "type": "passive", "name": "Soul Furnace", "spellId": 391165, "icon": "ability_demonhunter_soulcleave4", "index": 100}]}, {"id": 90976, "name": "Painbringer", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [90975, 90973, 90984], "prev": [90972, 90977], "entries": [{"id": 112892, "definitionId": 117897, "maxRanks": 2, "type": "passive", "name": "Painbringer", "spellId": 207387, "icon": "artifactability_vengeancedemonhunter_painbringer", "index": 100}]}, {"id": 90954, "name": "Sigil of Chains", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90984], "prev": [90965, 90986, 90972], "entries": [{"id": 112867, "definitionId": 117872, "maxRanks": 1, "type": "active", "name": "Sigil of Chains", "spellId": 202138, "icon": "ability_demonhunter_sigilofchains", "index": 100}]}, {"id": 90958, "name": "Fiery Demise", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [90984, 90959, 90963], "prev": [90986, 90955], "entries": [{"id": 112872, "definitionId": 117877, "maxRanks": 2, "type": "passive", "name": "Fiery Demise", "spellId": 389220, "icon": "ability_demonhunter_fierybrand", "index": 300}]}, {"id": 90964, "name": "Chains of Anger", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90963], "prev": [90955], "entries": [{"id": 112879, "definitionId": 117884, "maxRanks": 1, "type": "passive", "name": "Chains of Anger", "spellId": 389715, "icon": "ability_demonhunter_sigilofchains", "index": 100}]}, {"id": 90975, "name": "Focused Cleave", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90981], "prev": [90976, 90974], "entries": [{"id": 112891, "definitionId": 117896, "maxRanks": 1, "type": "passive", "name": "Focused Cleave", "spellId": 343207, "icon": "ability_demonhunter_soulcleave", "index": 100}]}, {"id": 90973, "name": "Soulmonger", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90981, 90983], "prev": [90976], "entries": [{"id": 112889, "definitionId": 117894, "maxRanks": 1, "type": "passive", "name": "Soulmonger", "spellId": 389711, "icon": "ability_demonhunter_shatteredsouls", "index": 100}]}, {"id": 90984, "name": "Stoke the Flames", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90983], "prev": [90958, 90976, 90954], "entries": [{"id": 112900, "definitionId": 117905, "maxRanks": 1, "type": "passive", "name": "Stoke the Flames", "spellId": 393827, "icon": "ability_demonhunter_feldevastation", "index": 200}]}, {"id": 90959, "name": "Burning Alive", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90983, 90962], "prev": [90958], "entries": [{"id": 112873, "definitionId": 117878, "maxRanks": 1, "type": "passive", "name": "Burning Alive", "spellId": 207739, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 90963, "name": "Cycle of Binding", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90962], "prev": [90958, 90964], "entries": [{"id": 112878, "definitionId": 117883, "maxRanks": 1, "type": "passive", "name": "Cycle of Binding", "spellId": 389718, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 90981, "name": "Vulnerability", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90980, 90982], "prev": [90973, 90975], "entries": [{"id": 112897, "definitionId": 117902, "maxRanks": 2, "type": "passive", "name": "Vulnerability", "spellId": 389976, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90983, "name": "Feed the Demon", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90982, 90979, 90985], "prev": [90984, 90959, 90973], "entries": [{"id": 112899, "definitionId": 117904, "maxRanks": 2, "type": "passive", "name": "Feed the Demon", "spellId": 218612, "icon": "spell_warlock_demonicempowerment", "index": 100}]}, {"id": 90962, "name": "Charred Flesh", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90985, 90961], "prev": [90963, 90959], "entries": [{"id": 112877, "definitionId": 117882, "maxRanks": 2, "type": "passive", "name": "Charred Flesh", "spellId": 336639, "icon": "ability_warlock_backdraft", "index": 100}]}, {"id": 90980, "name": "Soulcrush", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90981], "entries": [{"id": 112896, "definitionId": 117901, "maxRanks": 1, "type": "passive", "name": "Soulcrush", "spellId": 389985, "icon": "inv_icon_shadowcouncilorb_purple", "index": 200}]}, {"id": 90982, "name": "Soul Carver", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90981, 90983], "entries": [{"id": 112898, "definitionId": 117903, "maxRanks": 1, "type": "active", "name": "Soul Carver", "spellId": 207407, "icon": "inv_glaive_1h_artifactaldrochi_d_01", "index": 100}]}, {"id": 90979, "name": "Last Resort", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90983], "entries": [{"id": 112895, "definitionId": 117900, "maxRanks": 1, "type": "passive", "name": "Last Resort", "spellId": 209258, "icon": "inv_glaive_1h_artifactaldorchi_d_06", "index": 100}]}, {"id": 90985, "name": "Darkglare Boon", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90983, 90962], "entries": [{"id": 112901, "definitionId": 117906, "maxRanks": 1, "type": "passive", "name": "Darkglare Boon", "spellId": 389708, "icon": "inv_jewelry_necklace_53", "index": 200}]}, {"id": 90961, "name": "Down in Flames / Illuminated Sigils", "type": "choice", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90962], "entries": [{"id": 112876, "definitionId": 117881, "maxRanks": 1, "type": "passive", "name": "Down in Flames", "spellId": 389732, "icon": "ability_demonhunter_fierybrand", "index": 200}, {"id": 117760, "definitionId": 122772, "maxRanks": 1, "type": "passive", "name": "Illuminated Sigils", "spellId": 428557, "icon": "ability_essence_reapingflames", "index": 300}]}], "heroNodes": [{"id": 94915, "name": "Art of the Glaive", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 35, "next": [94898, 94911, 94903], "prev": [], "entries": [{"id": 117512, "definitionId": 122524, "maxRanks": 1, "type": "passive", "name": "Art of the Glaive", "spellId": 442290, "icon": "inv_ability_aldrachireaverdemonhunter_reaversglaive", "index": 100}], "freeNode": true}, {"id": 94898, "name": "Fury of the Aldrachi", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94914], "prev": [94915], "entries": [{"id": 117495, "definitionId": 122519, "maxRanks": 1, "type": "passive", "name": "Fury of the Aldrachi", "spellId": 442718, "icon": "spell_fire_felflamestrike", "index": 100}]}, {"id": 94911, "name": "Evasive Action / Unhindered Assault", "type": "choice", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94896], "prev": [94915], "entries": [{"id": 117508, "definitionId": 122520, "maxRanks": 1, "type": "passive", "name": "Evasive Action", "spellId": 444926, "icon": "ability_demonhunter_vengefulretreat", "index": 100}, {"id": 123047, "definitionId": 127928, "maxRanks": 1, "type": "passive", "name": "Unhindered Assault", "spellId": 444931, "icon": "ability_ironmaidens_bladerush", "index": 200}]}, {"id": 94903, "name": "Reaver's Mark", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94897], "prev": [94915], "entries": [{"id": 117500, "definitionId": 122512, "maxRanks": 1, "type": "passive", "name": "Reaver's Mark", "spellId": 442679, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 94914, "name": "Aldrachi Tactics", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94895], "prev": [94898], "entries": [{"id": 117511, "definitionId": 122523, "maxRanks": 1, "type": "passive", "name": "Aldrachi Tactics", "spellId": 442683, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 94896, "name": "Army Unto Oneself / Incorruptible Spirit", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94910], "prev": [94911], "entries": [{"id": 117493, "definitionId": 122505, "maxRanks": 1, "type": "passive", "name": "Army Unto Oneself", "spellId": 442714, "icon": "ability_warlock_avoidance", "index": 100}, {"id": 123046, "definitionId": 127927, "maxRanks": 1, "type": "passive", "name": "Incorruptible Spirit", "spellId": 442736, "icon": "spell_nzinsanity_chasedbyshadows", "index": 200}]}, {"id": 94897, "name": "Wounded Quarry", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94906], "prev": [94903], "entries": [{"id": 117494, "definitionId": 122506, "maxRanks": 1, "type": "passive", "name": "Wounded Quarry", "spellId": 442806, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94895, "name": "Incisive Blade", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94914], "entries": [{"id": 117492, "definitionId": 122504, "maxRanks": 1, "type": "passive", "name": "Incisive Blade", "spellId": 442492, "icon": "ability_dualwieldspecialization", "index": 100}]}, {"id": 94910, "name": "Keen Engagement / Preemptive Strike", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94896], "entries": [{"id": 117507, "definitionId": 122507, "maxRanks": 1, "type": "passive", "name": "Keen Engagement", "spellId": 442497, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 122422, "definitionId": 127322, "maxRanks": 1, "type": "passive", "name": "Preemptive Strike", "spellId": 444997, "icon": "ability_rogue_focusedattacks", "index": 200}]}, {"id": 94906, "name": "Warblade's Hunger", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94897], "entries": [{"id": 117503, "definitionId": 122515, "maxRanks": 1, "type": "passive", "name": "Warblade's Hunger", "spellId": 442502, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 94919, "name": "Thrill of the Fight", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 35, "next": [], "prev": [94910, 94895, 94906], "entries": [{"id": 117516, "definitionId": 122528, "maxRanks": 1, "type": "passive", "name": "Thrill of the Fight", "spellId": 442686, "icon": "spell_arcane_arcanetactics", "index": 100}]}, {"id": 94917, "name": "Demonsurge", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 34, "next": [94913, 94918, 94899], "prev": [], "entries": [{"id": 117514, "definitionId": 122526, "maxRanks": 1, "type": "passive", "name": "Demonsurge", "spellId": 452402, "icon": "inv_ability_felscarreddemonhunter_demonsurge", "index": 100}], "freeNode": true}, {"id": 94913, "name": "Wave of Debilitation / Pursuit of Angriness", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94905], "prev": [94917], "entries": [{"id": 117510, "definitionId": 122522, "maxRanks": 1, "type": "passive", "name": "Wave of Debilitation", "spellId": 452403, "icon": "spell_fire_felfirenova", "index": 100}, {"id": 124011, "definitionId": 128849, "maxRanks": 1, "type": "passive", "name": "Pursuit of Angriness", "spellId": 452404, "icon": "ability_felarakkoa_focusedblast", "index": 200}]}, {"id": 94918, "name": "Focused Hatred", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94912], "prev": [94917], "entries": [{"id": 117515, "definitionId": 122527, "maxRanks": 1, "type": "passive", "name": "Focused Hatred", "spellId": 452405, "icon": "ability_demonhunter_illidansgrasp", "index": 100}]}, {"id": 94899, "name": "Set Fire to the Pain / Improved Soul Rending", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94916], "prev": [94917], "entries": [{"id": 117496, "definitionId": 122508, "maxRanks": 1, "type": "passive", "name": "Set Fire to the Pain", "spellId": 452406, "icon": "ability_demonhunter_empowerwards", "index": 100}, {"id": 124010, "definitionId": 128848, "maxRanks": 1, "type": "passive", "name": "Improved Soul Rending", "spellId": 452407, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 94905, "name": "Burning Blades", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94904], "prev": [94913], "entries": [{"id": 117502, "definitionId": 122514, "maxRanks": 1, "type": "passive", "name": "Burning Blades", "spellId": 452408, "icon": "inv_glaive_1h_artifactazgalor_d_02dual", "index": 100}]}, {"id": 94912, "name": "Violent Transformation", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94902], "prev": [94918], "entries": [{"id": 117509, "definitionId": 122521, "maxRanks": 1, "type": "passive", "name": "Violent Transformation", "spellId": 452409, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 94916, "name": "Enduring Torment", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94909], "prev": [94899], "entries": [{"id": 117513, "definitionId": 122525, "maxRanks": 1, "type": "passive", "name": "Enduring Torment", "spellId": 452410, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 94904, "name": "Untethered Fury", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94905], "entries": [{"id": 117501, "definitionId": 122513, "maxRanks": 1, "type": "passive", "name": "Untethered Fury", "spellId": 452411, "icon": "inv__felbarrage", "index": 100}]}, {"id": 94902, "name": "Student of Suffering / Flamebound", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94912], "entries": [{"id": 117499, "definitionId": 122511, "maxRanks": 1, "type": "passive", "name": "Student of Suffering", "spellId": 452412, "icon": "achievement_dungeon_theatreofpain_kultharok", "index": 100}, {"id": 124009, "definitionId": 128847, "maxRanks": 1, "type": "passive", "name": "Flamebound", "spellId": 452413, "icon": "spell_fire_felflamering", "index": 200}]}, {"id": 94909, "name": "Monster Rising", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94916], "entries": [{"id": 117506, "definitionId": 122518, "maxRanks": 1, "type": "passive", "name": "Monster Rising", "spellId": 452414, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 94901, "name": "Demonic Intensity", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 34, "next": [], "prev": [94902, 94904, 94909], "entries": [{"id": 117498, "definitionId": 122510, "maxRanks": 1, "type": "passive", "name": "Demonic Intensity", "spellId": 452415, "icon": "spell_warlock_demonicempowerment", "index": 100}]}], "subTreeNodes": [{"id": 99823, "name": "Aldrachi Reaver / Fel-Scarred", "type": "subtree", "posX": 8400, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123328, "type": "subtree", "name": "Aldrachi Reaver", "traitSubTreeId": 35, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-aldrachireaver", "nodes": [94915, 94898, 94911, 94903, 94914, 94896, 94897, 94895, 94910, 94906, 94919]}, {"id": 123327, "type": "subtree", "name": "Fel-Scarred", "traitSubTreeId": 34, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-felscarred", "nodes": [94917, 94913, 94918, 94899, 94905, 94912, 94916, 94904, 94902, 94909, 94901]}]}], "fullNodeOrder": [90912, 90914, 90915, 90916, 90917, 90918, 90919, 90921, 90922, 90923, 90925, 90927, 90928, 90929, 90930, 90931, 90933, 90934, 90935, 90936, 90937, 90938, 90939, 90940, 90941, 90942, 90945, 90946, 90947, 90948, 90949, 90950, 90951, 90952, 90953, 90954, 90955, 90956, 90957, 90958, 90959, 90960, 90961, 90962, 90963, 90964, 90965, 90966, 90967, 90968, 90969, 90970, 90971, 90972, 90973, 90974, 90975, 90976, 90977, 90978, 90979, 90980, 90981, 90982, 90983, 90984, 90985, 90986, 90987, 90988, 90989, 90990, 90991, 90993, 90994, 90996, 90997, 90999, 91000, 91001, 91002, 91003, 91004, 91005, 91006, 91007, 91008, 91011, 91012, 91013, 91015, 91017, 91018, 91019, 91020, 91021, 91022, 91024, 91025, 91026, 91027, 91028, 91030, 91031, 91032, 91033, 91034, 91035, 91036, 93013, 93014, 93015, 93016, 94895, 94896, 94897, 94898, 94899, 94901, 94902, 94903, 94904, 94905, 94906, 94909, 94910, 94911, 94912, 94913, 94914, 94915, 94916, 94917, 94918, 94919, 95143, 95144, 95147, 95148, 95149, 95150, 95151, 95152, 95154, 95155, 99823, 99824]} \ No newline at end of file +{"traitTreeId": 854, "className": "Demon Hunter", "classId": 12, "specName": "Vengeance", "specId": 581, "classNodes": [{"id": 90942, "name": "Vengeful Retreat", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90930, 90941], "prev": [], "entries": [{"id": 112853, "definitionId": 117858, "maxRanks": 1, "type": "active", "name": "Vengeful Retreat", "spellId": 198793, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 91008, "name": "Blazing Path", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90941, 90950], "prev": [], "entries": [{"id": 112928, "definitionId": 117933, "maxRanks": 1, "type": "passive", "name": "Blazing Path", "spellId": 320416, "icon": "ability_demonhunter_felrush", "index": 100}]}, {"id": 90946, "name": "Sigil of Misery", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90950, 90945], "prev": [], "entries": [{"id": 112859, "definitionId": 117864, "maxRanks": 1, "type": "active", "name": "Sigil of Misery", "spellId": 207684, "icon": "ability_demonhunter_sigilofmisery", "index": 100}], "freeNode": true}, {"id": 90930, "name": "Vengeful Bonds", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [90931], "prev": [90942], "entries": [{"id": 112840, "definitionId": 117845, "maxRanks": 1, "type": "passive", "name": "Vengeful Bonds", "spellId": 320635, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 90941, "name": "Unrestrained Fury", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90931, 91007], "prev": [90942, 91008], "entries": [{"id": 112852, "definitionId": 117857, "maxRanks": 1, "type": "passive", "name": "Unrestrained Fury", "spellId": 320770, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90950, "name": "Shattered Restoration", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [91007, 90948], "prev": [90946, 91008], "entries": [{"id": 112863, "definitionId": 117868, "maxRanks": 1, "type": "passive", "name": "Shattered Restoration", "spellId": 389824, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 90945, "name": "Improved Sigil of Misery", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [90948], "prev": [90946], "entries": [{"id": 112858, "definitionId": 117863, "maxRanks": 1, "type": "passive", "name": "Improved Sigil of Misery", "spellId": 320418, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90931, "name": "Bouncing Glaives", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90993, 90938], "prev": [90941, 90930], "entries": [{"id": 112841, "definitionId": 117846, "maxRanks": 1, "type": "passive", "name": "Bouncing Glaives", "spellId": 320386, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91007, "name": "Imprison", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90938, 91006], "prev": [90950, 90941], "entries": [{"id": 112927, "definitionId": 117932, "maxRanks": 1, "type": "active", "name": "Imprison", "spellId": 217832, "icon": "ability_demonhunter_imprison", "index": 100}]}, {"id": 90948, "name": "Charred Warblades", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [91006, 90999], "prev": [90950, 90945], "entries": [{"id": 112861, "definitionId": 117866, "maxRanks": 1, "type": "passive", "name": "Charred Warblades", "spellId": 213010, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 90993, "name": "Chaos Nova", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [95154, 90994], "prev": [90931], "entries": [{"id": 112911, "definitionId": 117916, "maxRanks": 1, "type": "active", "name": "Chaos Nova", "spellId": 179057, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90938, "name": "Improved Disrupt", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90994, 90937, 95150], "prev": [90931, 91007], "entries": [{"id": 112849, "definitionId": 117854, "maxRanks": 1, "type": "passive", "name": "Improved Disrupt", "spellId": 320361, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 91006, "name": "Consume Magic", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [95150, 91005, 90933], "prev": [90948, 91007], "entries": [{"id": 112926, "definitionId": 117931, "maxRanks": 1, "type": "active", "name": "Consume Magic", "spellId": 278326, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90999, "name": "Aldrachi Design", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90933, 95151], "prev": [90948], "entries": [{"id": 112917, "definitionId": 117922, "maxRanks": 1, "type": "passive", "name": "Aldrachi Design", "spellId": 391409, "icon": "inv_glaive_1h_artifactaldrochi_d_01dual", "index": 100}]}, {"id": 95154, "name": "Chaos Fragments", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940], "prev": [90993], "entries": [{"id": 117767, "definitionId": 122779, "maxRanks": 1, "type": "passive", "name": "Chaos Fragments", "spellId": 320412, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90994, "name": "Master of the Glaive / Champion of the Glaive", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940, 90936], "prev": [90993, 90938], "entries": [{"id": 112912, "definitionId": 117917, "maxRanks": 1, "type": "passive", "name": "Master of the Glaive", "spellId": 389763, "icon": "inv_glaive_1h_demonhunter_a_01", "index": 100}, {"id": 117768, "definitionId": 122780, "maxRanks": 1, "type": "passive", "name": "Champion of the Glaive", "spellId": 429211, "icon": "inv_glaive_1h_battledungeon_c_01", "index": 200}]}, {"id": 90937, "name": "Disrupting Fury", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936], "prev": [90938], "entries": [{"id": 112848, "definitionId": 117853, "maxRanks": 1, "type": "passive", "name": "Disrupting Fury", "spellId": 183782, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 95150, "name": "Felblade", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936, 91004], "prev": [91006, 90938], "entries": [{"id": 117759, "definitionId": 122771, "maxRanks": 1, "type": "active", "name": "Felblade", "spellId": 232893, "icon": "ability_demonhunter_felblade", "index": 100}]}, {"id": 91005, "name": "Swallowed Anger", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004], "prev": [91006], "entries": [{"id": 112925, "definitionId": 117930, "maxRanks": 1, "type": "passive", "name": "Swallowed Anger", "spellId": 320313, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90933, "name": "Aura of Pain", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004, 90947], "prev": [91006, 90999], "entries": [{"id": 112844, "definitionId": 117849, "maxRanks": 1, "type": "passive", "name": "Aura of Pain", "spellId": 207347, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 95151, "name": "Live by the Glaive", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90947], "prev": [90999], "entries": [{"id": 117761, "definitionId": 122773, "maxRanks": 1, "type": "passive", "name": "Live by the Glaive", "spellId": 428607, "icon": "inv_sword_108", "index": 100}]}, {"id": 90940, "name": "Pursuit", "type": "single", "posX": 2100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90939, 90935], "prev": [90994, 95154], "entries": [{"id": 112851, "definitionId": 117856, "maxRanks": 1, "type": "passive", "name": "Pursuit", "spellId": 320654, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 90936, "name": "Soul Rending", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90935, 91003], "prev": [90994, 90937, 95150], "entries": [{"id": 112847, "definitionId": 117852, "maxRanks": 2, "type": "passive", "name": "Soul Rending", "spellId": 204909, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 91004, "name": "Infernal Armor", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91003, 91000], "prev": [91005, 95150, 90933], "entries": [{"id": 112924, "definitionId": 117929, "maxRanks": 2, "type": "passive", "name": "Infernal Armor", "spellId": 320331, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90947, "name": "Lost in Darkness", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91000, 95155], "prev": [95151, 90933], "entries": [{"id": 112860, "definitionId": 117865, "maxRanks": 1, "type": "passive", "name": "Lost in Darkness", "spellId": 389849, "icon": "inv_pet_inquisitoreye", "index": 100}]}, {"id": 90939, "name": "Felfire Haste", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934], "prev": [90940], "entries": [{"id": 112850, "definitionId": 117855, "maxRanks": 1, "type": "passive", "name": "Felfire Haste", "spellId": 389846, "icon": "inv_boots_cloth_35v4", "index": 100}]}, {"id": 90935, "name": "Illidari Knowledge", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934, 91002], "prev": [90936, 90940], "entries": [{"id": 112846, "definitionId": 117851, "maxRanks": 1, "type": "passive", "name": "Illidari Knowledge", "spellId": 389696, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 91003, "name": "Demonic", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91002, 90929], "prev": [90936, 91004], "entries": [{"id": 112923, "definitionId": 117928, "maxRanks": 1, "type": "passive", "name": "Demonic", "spellId": 213410, "icon": "spell_shadow_demonform", "index": 100}]}, {"id": 91000, "name": "Will of the Illidari", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90929, 95149], "prev": [91004, 90947], "entries": [{"id": 112918, "definitionId": 117923, "maxRanks": 1, "type": "passive", "name": "Will of the Illidari", "spellId": 389695, "icon": "ability_demonhunter_spectank", "index": 100}]}, {"id": 95155, "name": "Precise Sigils", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [95149], "prev": [90947], "entries": [{"id": 117771, "definitionId": 122783, "maxRanks": 1, "type": "passive", "name": "Precise Sigils", "spellId": 389799, "icon": "ability_bossfelorcs_necromancer_orange", "index": 100}]}, {"id": 90934, "name": "Internal Struggle", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90996], "prev": [90935, 90939], "entries": [{"id": 112845, "definitionId": 117850, "maxRanks": 1, "type": "passive", "name": "Internal Struggle", "spellId": 393822, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 91002, "name": "Darkness", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91001, 95148], "prev": [90935, 91003], "entries": [{"id": 112921, "definitionId": 117926, "maxRanks": 1, "type": "active", "name": "Darkness", "spellId": 196718, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 90929, "name": "Soul Sigils", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95148, 90928], "prev": [91003, 91000], "entries": [{"id": 112839, "definitionId": 117844, "maxRanks": 1, "type": "passive", "name": "Soul Sigils", "spellId": 395446, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95149, "name": "Quickened Sigils", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90949], "prev": [91000, 95155], "entries": [{"id": 117758, "definitionId": 122770, "maxRanks": 1, "type": "passive", "name": "Quickened Sigils", "spellId": 209281, "icon": "ability_demonhunter_concentratedsigils", "index": 100}]}, {"id": 90996, "name": "Erratic Felheart", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95152], "prev": [90934], "entries": [{"id": 112914, "definitionId": 117919, "maxRanks": 2, "type": "passive", "name": "Erratic Felheart", "spellId": 391397, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 91001, "name": "Long Night / Pitch Black", "type": "choice", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91002], "entries": [{"id": 112920, "definitionId": 117925, "maxRanks": 1, "type": "passive", "name": "Long Night", "spellId": 389781, "icon": "spell_fire_twilightimmolation", "index": 100}, {"id": 112919, "definitionId": 117924, "maxRanks": 1, "type": "passive", "name": "Pitch Black", "spellId": 389783, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95148, "name": "Rush of Chaos", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90927], "prev": [90929, 91002], "entries": [{"id": 117757, "definitionId": 122769, "maxRanks": 2, "type": "passive", "name": "Rush of Chaos", "spellId": 320421, "icon": "ability_demonhunter_metamorphasisdps", "index": 100}]}, {"id": 90928, "name": "Demon Muzzle", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90929], "entries": [{"id": 112838, "definitionId": 117843, "maxRanks": 1, "type": "passive", "name": "Demon Muzzle", "spellId": 388111, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 90949, "name": "Flames of Fury", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90997], "prev": [95149], "entries": [{"id": 112862, "definitionId": 117867, "maxRanks": 2, "type": "passive", "name": "Flames of Fury", "spellId": 389694, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95152, "name": "Collective Anguish", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90996], "entries": [{"id": 117762, "definitionId": 122774, "maxRanks": 1, "type": "passive", "name": "Collective Anguish", "spellId": 390152, "icon": "artifactability_havocdemonhunter_anguishofthedeceiver", "index": 200}]}, {"id": 90927, "name": "The Hunt", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95148], "entries": [{"id": 112837, "definitionId": 117842, "maxRanks": 1, "type": "active", "name": "The Hunt", "spellId": 370965, "icon": "inv_ability_demonhunter_thehunt", "index": 100}]}, {"id": 90997, "name": "Sigil of Spite", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90949], "entries": [{"id": 117755, "definitionId": 122767, "maxRanks": 1, "type": "active", "name": "Sigil of Spite", "spellId": 390163, "icon": "inv_ability_demonhunter_elysiandecree", "index": 200}]}], "specNodes": [{"id": 90912, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 90991, "name": "Fel Devastation", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90990, 90951], "prev": [], "entries": [{"id": 112908, "definitionId": 117913, "maxRanks": 1, "type": "active", "name": "Fel Devastation", "spellId": 212084, "icon": "ability_demonhunter_feldevastation", "index": 100}]}, {"id": 90990, "name": "Frailty", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [90970, 90989], "prev": [90991], "entries": [{"id": 112907, "definitionId": 117912, "maxRanks": 1, "type": "passive", "name": "Frailty", "spellId": 389958, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90951, "name": "Fiery Brand", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90989, 90960], "prev": [90991], "entries": [{"id": 112864, "definitionId": 117869, "maxRanks": 1, "type": "active", "name": "Fiery Brand", "spellId": 204021, "icon": "ability_demonhunter_fierybrand", "index": 100}]}, {"id": 90970, "name": "Shear Fury / Fracture", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90968, 90967], "prev": [90990], "entries": [{"id": 112886, "definitionId": 117891, "maxRanks": 1, "type": "passive", "name": "Shear Fury", "spellId": 389997, "icon": "ability_demonhunter_hatefulstrike", "index": 100}, {"id": 112885, "definitionId": 117890, "maxRanks": 1, "type": "active", "name": "Fracture", "spellId": 263642, "icon": "ability_creature_felsunder", "index": 200}]}, {"id": 90989, "name": "Deflecting Spikes", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90988], "prev": [90951, 90990], "entries": [{"id": 112906, "definitionId": 117911, "maxRanks": 1, "type": "passive", "name": "Deflecting Spikes", "spellId": 321028, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90960, "name": "Ascending Flame", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90952, 90953], "prev": [90951], "entries": [{"id": 112875, "definitionId": 117880, "maxRanks": 1, "type": "passive", "name": "Ascending Flame", "spellId": 428603, "icon": "inv_helm_suncrown_d_01", "index": 100}]}, {"id": 90968, "name": "Perfectly Balanced Glaive", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90969, 90971, 90978], "prev": [90970], "entries": [{"id": 112883, "definitionId": 117888, "maxRanks": 1, "type": "passive", "name": "Perfectly Balanced Glaive", "spellId": 320387, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 90967, "name": "Calcified Spikes", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [90971], "prev": [90970], "entries": [{"id": 112882, "definitionId": 117887, "maxRanks": 1, "type": "passive", "name": "Calcified Spikes", "spellId": 389720, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90988, "name": "Roaring Fire / Sigil of Silence", "type": "choice", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [90971, 90966, 90987], "prev": [90989], "entries": [{"id": 112905, "definitionId": 117910, "maxRanks": 1, "type": "passive", "name": "Roaring Fire", "spellId": 391178, "icon": "spell_fire_felflamering", "index": 100}, {"id": 112904, "definitionId": 117909, "maxRanks": 1, "type": "active", "name": "Sigil of Silence", "spellId": 202137, "icon": "ability_demonhunter_sigilofsilence", "index": 200}]}, {"id": 90952, "name": "Retaliation", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [90987], "prev": [90960], "entries": [{"id": 112865, "definitionId": 117870, "maxRanks": 1, "type": "passive", "name": "Retaliation", "spellId": 389729, "icon": "ability_demonhunter_demonspikes2", "index": 100}]}, {"id": 90953, "name": "Meteoric Strikes", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90987, 90956, 90957], "prev": [90960], "entries": [{"id": 112866, "definitionId": 117871, "maxRanks": 1, "type": "passive", "name": "Meteoric Strikes", "spellId": 389724, "icon": "spell_warlock_summonabyssal", "index": 100}]}, {"id": 90978, "name": "Spirit Bomb", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977], "prev": [90968], "entries": [{"id": 112894, "definitionId": 117899, "maxRanks": 1, "type": "active", "name": "Spirit Bomb", "spellId": 247454, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90969, "name": "Feast of Souls", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977], "prev": [90968], "entries": [{"id": 112884, "definitionId": 117889, "maxRanks": 1, "type": "passive", "name": "Feast of Souls", "spellId": 207697, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 90971, "name": "Agonizing Flames", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977, 90972], "prev": [90988, 90968, 90967], "entries": [{"id": 112887, "definitionId": 117892, "maxRanks": 1, "type": "passive", "name": "Agonizing Flames", "spellId": 207548, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 90966, "name": "Extended Spikes", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90972, 90965, 90986], "prev": [90988], "entries": [{"id": 112881, "definitionId": 117886, "maxRanks": 1, "type": "passive", "name": "Extended Spikes", "spellId": 389721, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90987, "name": "Burning Blood", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90986, 90955], "prev": [90988, 90953, 90952], "entries": [{"id": 112903, "definitionId": 117908, "maxRanks": 1, "type": "passive", "name": "Burning Blood", "spellId": 390213, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90956, "name": "Soul Barrier / Bulk Extraction", "type": "choice", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90955], "prev": [90953], "entries": [{"id": 112870, "definitionId": 117875, "maxRanks": 1, "type": "active", "name": "Soul Barrier", "spellId": 263648, "icon": "inv_soulbarrier", "index": 100}, {"id": 112869, "definitionId": 117874, "maxRanks": 1, "type": "active", "name": "Bulk Extraction", "spellId": 320341, "icon": "spell_shadow_shadesofdarkness", "index": 300}]}, {"id": 90957, "name": "Revel in Pain", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90955], "prev": [90953], "entries": [{"id": 112871, "definitionId": 117876, "maxRanks": 1, "type": "passive", "name": "Revel in Pain", "spellId": 343014, "icon": "ability_bossfelmagnaron_handempowered", "index": 100}]}, {"id": 90977, "name": "Void Reaver", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90976, 90974], "prev": [90969, 90978, 90971], "entries": [{"id": 112893, "definitionId": 117898, "maxRanks": 1, "type": "passive", "name": "Void Reaver", "spellId": 268175, "icon": "spell_shadow_demonicempathy", "index": 100}]}, {"id": 90972, "name": "Fallout", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90976, 90954], "prev": [90966, 90971], "entries": [{"id": 112888, "definitionId": 117893, "maxRanks": 1, "type": "passive", "name": "Fallout", "spellId": 227174, "icon": "spell_volatilefiregreen", "index": 100}]}, {"id": 90965, "name": "Ruinous Bulwark", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90954], "prev": [90966], "entries": [{"id": 112880, "definitionId": 117885, "maxRanks": 1, "type": "passive", "name": "Ruinous Bulwark", "spellId": 326853, "icon": "ability_demonhunter_feldevastation", "index": 100}]}, {"id": 90986, "name": "Volatile Flameblood", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90954, 90958], "prev": [90987, 90966], "entries": [{"id": 112902, "definitionId": 117907, "maxRanks": 1, "type": "passive", "name": "Volatile Flameblood", "spellId": 390808, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90955, "name": "Fel Flame Fortification", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90958, 90964], "prev": [90956, 90987, 90957], "entries": [{"id": 112868, "definitionId": 117873, "maxRanks": 1, "type": "passive", "name": "Fel Flame Fortification", "spellId": 389705, "icon": "spell_fire_felfire", "index": 100}]}, {"id": 90974, "name": "Soul Furnace", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90975], "prev": [90977], "entries": [{"id": 112890, "definitionId": 117895, "maxRanks": 1, "type": "passive", "name": "Soul Furnace", "spellId": 391165, "icon": "ability_demonhunter_soulcleave4", "index": 100}]}, {"id": 90976, "name": "Painbringer", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [90975, 90973, 90984], "prev": [90972, 90977], "entries": [{"id": 112892, "definitionId": 117897, "maxRanks": 2, "type": "passive", "name": "Painbringer", "spellId": 207387, "icon": "artifactability_vengeancedemonhunter_painbringer", "index": 100}]}, {"id": 90954, "name": "Sigil of Chains", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90984], "prev": [90965, 90986, 90972], "entries": [{"id": 112867, "definitionId": 117872, "maxRanks": 1, "type": "active", "name": "Sigil of Chains", "spellId": 202138, "icon": "ability_demonhunter_sigilofchains", "index": 100}]}, {"id": 90958, "name": "Fiery Demise", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [90984, 90959, 90963], "prev": [90986, 90955], "entries": [{"id": 112872, "definitionId": 117877, "maxRanks": 2, "type": "passive", "name": "Fiery Demise", "spellId": 389220, "icon": "ability_demonhunter_fierybrand", "index": 300}]}, {"id": 90964, "name": "Chains of Anger", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90963], "prev": [90955], "entries": [{"id": 112879, "definitionId": 117884, "maxRanks": 1, "type": "passive", "name": "Chains of Anger", "spellId": 389715, "icon": "ability_demonhunter_sigilofchains", "index": 100}]}, {"id": 90975, "name": "Focused Cleave", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90981], "prev": [90976, 90974], "entries": [{"id": 112891, "definitionId": 117896, "maxRanks": 1, "type": "passive", "name": "Focused Cleave", "spellId": 343207, "icon": "ability_demonhunter_soulcleave", "index": 100}]}, {"id": 90973, "name": "Soulmonger", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90981, 90983], "prev": [90976], "entries": [{"id": 112889, "definitionId": 117894, "maxRanks": 1, "type": "passive", "name": "Soulmonger", "spellId": 389711, "icon": "ability_demonhunter_shatteredsouls", "index": 100}]}, {"id": 90984, "name": "Stoke the Flames", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90983], "prev": [90958, 90976, 90954], "entries": [{"id": 112900, "definitionId": 117905, "maxRanks": 1, "type": "passive", "name": "Stoke the Flames", "spellId": 393827, "icon": "ability_demonhunter_feldevastation", "index": 200}]}, {"id": 90959, "name": "Burning Alive", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90983, 90962], "prev": [90958], "entries": [{"id": 112873, "definitionId": 117878, "maxRanks": 1, "type": "passive", "name": "Burning Alive", "spellId": 207739, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 90963, "name": "Cycle of Binding", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90962], "prev": [90958, 90964], "entries": [{"id": 112878, "definitionId": 117883, "maxRanks": 1, "type": "passive", "name": "Cycle of Binding", "spellId": 389718, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 90981, "name": "Vulnerability", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90980, 90982], "prev": [90973, 90975], "entries": [{"id": 112897, "definitionId": 117902, "maxRanks": 2, "type": "passive", "name": "Vulnerability", "spellId": 389976, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90983, "name": "Feed the Demon", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90982, 90979, 90985], "prev": [90984, 90959, 90973], "entries": [{"id": 112899, "definitionId": 117904, "maxRanks": 2, "type": "passive", "name": "Feed the Demon", "spellId": 218612, "icon": "spell_warlock_demonicempowerment", "index": 100}]}, {"id": 90962, "name": "Charred Flesh", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90985, 90961], "prev": [90963, 90959], "entries": [{"id": 112877, "definitionId": 117882, "maxRanks": 2, "type": "passive", "name": "Charred Flesh", "spellId": 336639, "icon": "ability_warlock_backdraft", "index": 100}]}, {"id": 90980, "name": "Soulcrush", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90981], "entries": [{"id": 112896, "definitionId": 117901, "maxRanks": 1, "type": "passive", "name": "Soulcrush", "spellId": 389985, "icon": "inv_icon_shadowcouncilorb_purple", "index": 200}]}, {"id": 90982, "name": "Soul Carver", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90981, 90983], "entries": [{"id": 112898, "definitionId": 117903, "maxRanks": 1, "type": "active", "name": "Soul Carver", "spellId": 207407, "icon": "inv_glaive_1h_artifactaldrochi_d_01", "index": 100}]}, {"id": 90979, "name": "Last Resort", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90983], "entries": [{"id": 112895, "definitionId": 117900, "maxRanks": 1, "type": "passive", "name": "Last Resort", "spellId": 209258, "icon": "inv_glaive_1h_artifactaldorchi_d_06", "index": 100}]}, {"id": 90985, "name": "Darkglare Boon", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90983, 90962], "entries": [{"id": 112901, "definitionId": 117906, "maxRanks": 1, "type": "passive", "name": "Darkglare Boon", "spellId": 389708, "icon": "inv_jewelry_necklace_53", "index": 200}]}, {"id": 90961, "name": "Down in Flames / Illuminated Sigils", "type": "choice", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90962], "entries": [{"id": 112876, "definitionId": 117881, "maxRanks": 1, "type": "passive", "name": "Down in Flames", "spellId": 389732, "icon": "ability_demonhunter_fierybrand", "index": 200}, {"id": 117760, "definitionId": 122772, "maxRanks": 1, "type": "passive", "name": "Illuminated Sigils", "spellId": 428557, "icon": "ability_essence_reapingflames", "index": 300}]}], "heroNodes": [{"id": 94915, "name": "Art of the Glaive", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 35, "next": [94898, 94911, 94903], "prev": [], "entries": [{"id": 117512, "definitionId": 122524, "maxRanks": 1, "type": "passive", "name": "Art of the Glaive", "spellId": 442290, "icon": "inv_ability_aldrachireaverdemonhunter_reaversglaive", "index": 100}], "freeNode": true}, {"id": 94898, "name": "Fury of the Aldrachi", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94914], "prev": [94915], "entries": [{"id": 117495, "definitionId": 122519, "maxRanks": 1, "type": "passive", "name": "Fury of the Aldrachi", "spellId": 442718, "icon": "spell_fire_felflamestrike", "index": 100}]}, {"id": 94911, "name": "Evasive Action / Unhindered Assault", "type": "choice", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94896], "prev": [94915], "entries": [{"id": 117508, "definitionId": 122520, "maxRanks": 1, "type": "passive", "name": "Evasive Action", "spellId": 444926, "icon": "ability_demonhunter_vengefulretreat", "index": 100}, {"id": 123047, "definitionId": 127928, "maxRanks": 1, "type": "passive", "name": "Unhindered Assault", "spellId": 444931, "icon": "ability_ironmaidens_bladerush", "index": 200}]}, {"id": 94903, "name": "Reaver's Mark", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94897], "prev": [94915], "entries": [{"id": 117500, "definitionId": 122512, "maxRanks": 1, "type": "passive", "name": "Reaver's Mark", "spellId": 442679, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 94914, "name": "Aldrachi Tactics", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94895], "prev": [94898], "entries": [{"id": 117511, "definitionId": 122523, "maxRanks": 1, "type": "passive", "name": "Aldrachi Tactics", "spellId": 442683, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 94896, "name": "Army Unto Oneself / Incorruptible Spirit", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94910], "prev": [94911], "entries": [{"id": 117493, "definitionId": 122505, "maxRanks": 1, "type": "passive", "name": "Army Unto Oneself", "spellId": 442714, "icon": "ability_warlock_avoidance", "index": 100}, {"id": 123046, "definitionId": 127927, "maxRanks": 1, "type": "passive", "name": "Incorruptible Spirit", "spellId": 442736, "icon": "spell_nzinsanity_chasedbyshadows", "index": 200}]}, {"id": 94897, "name": "Wounded Quarry", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94906], "prev": [94903], "entries": [{"id": 117494, "definitionId": 122506, "maxRanks": 1, "type": "passive", "name": "Wounded Quarry", "spellId": 442806, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94895, "name": "Incisive Blade", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94914], "entries": [{"id": 117492, "definitionId": 122504, "maxRanks": 1, "type": "passive", "name": "Incisive Blade", "spellId": 442492, "icon": "ability_dualwieldspecialization", "index": 100}]}, {"id": 94910, "name": "Keen Engagement / Preemptive Strike", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94896], "entries": [{"id": 117507, "definitionId": 122507, "maxRanks": 1, "type": "passive", "name": "Keen Engagement", "spellId": 442497, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 122422, "definitionId": 127322, "maxRanks": 1, "type": "passive", "name": "Preemptive Strike", "spellId": 444997, "icon": "ability_rogue_focusedattacks", "index": 200}]}, {"id": 94906, "name": "Warblade's Hunger", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94897], "entries": [{"id": 117503, "definitionId": 122515, "maxRanks": 1, "type": "passive", "name": "Warblade's Hunger", "spellId": 442502, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 94919, "name": "Thrill of the Fight", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 35, "next": [], "prev": [94910, 94895, 94906], "entries": [{"id": 117516, "definitionId": 122528, "maxRanks": 1, "type": "passive", "name": "Thrill of the Fight", "spellId": 442686, "icon": "spell_arcane_arcanetactics", "index": 100}]}, {"id": 94917, "name": "Demonsurge", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 34, "next": [94913, 94918, 94899], "prev": [], "entries": [{"id": 117514, "definitionId": 122526, "maxRanks": 1, "type": "passive", "name": "Demonsurge", "spellId": 452402, "icon": "inv_ability_felscarreddemonhunter_demonsurge", "index": 100}], "freeNode": true}, {"id": 94913, "name": "Wave of Debilitation / Pursuit of Angriness", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94905], "prev": [94917], "entries": [{"id": 117510, "definitionId": 122522, "maxRanks": 1, "type": "passive", "name": "Wave of Debilitation", "spellId": 452403, "icon": "spell_fire_felfirenova", "index": 100}, {"id": 124011, "definitionId": 128849, "maxRanks": 1, "type": "passive", "name": "Pursuit of Angriness", "spellId": 452404, "icon": "ability_felarakkoa_focusedblast", "index": 200}]}, {"id": 94918, "name": "Focused Hatred", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94912], "prev": [94917], "entries": [{"id": 117515, "definitionId": 122527, "maxRanks": 1, "type": "passive", "name": "Focused Hatred", "spellId": 452405, "icon": "ability_demonhunter_illidansgrasp", "index": 100}]}, {"id": 94899, "name": "Set Fire to the Pain / Improved Soul Rending", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94916], "prev": [94917], "entries": [{"id": 117496, "definitionId": 122508, "maxRanks": 1, "type": "passive", "name": "Set Fire to the Pain", "spellId": 452406, "icon": "ability_demonhunter_empowerwards", "index": 100}, {"id": 124010, "definitionId": 128848, "maxRanks": 1, "type": "passive", "name": "Improved Soul Rending", "spellId": 452407, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 94905, "name": "Burning Blades", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94904], "prev": [94913], "entries": [{"id": 117502, "definitionId": 122514, "maxRanks": 1, "type": "passive", "name": "Burning Blades", "spellId": 452408, "icon": "inv_glaive_1h_artifactazgalor_d_02dual", "index": 100}]}, {"id": 94912, "name": "Violent Transformation", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94902], "prev": [94918], "entries": [{"id": 117509, "definitionId": 122521, "maxRanks": 1, "type": "passive", "name": "Violent Transformation", "spellId": 452409, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 94916, "name": "Enduring Torment", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94909], "prev": [94899], "entries": [{"id": 117513, "definitionId": 122525, "maxRanks": 1, "type": "passive", "name": "Enduring Torment", "spellId": 452410, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 94904, "name": "Untethered Fury", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94905], "entries": [{"id": 117501, "definitionId": 122513, "maxRanks": 1, "type": "passive", "name": "Untethered Fury", "spellId": 452411, "icon": "inv__felbarrage", "index": 100}]}, {"id": 94902, "name": "Student of Suffering / Flamebound", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94912], "entries": [{"id": 117499, "definitionId": 122511, "maxRanks": 1, "type": "passive", "name": "Student of Suffering", "spellId": 452412, "icon": "achievement_dungeon_theatreofpain_kultharok", "index": 100}, {"id": 124009, "definitionId": 128847, "maxRanks": 1, "type": "passive", "name": "Flamebound", "spellId": 452413, "icon": "spell_fire_felflamering", "index": 200}]}, {"id": 94909, "name": "Monster Rising", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94916], "entries": [{"id": 117506, "definitionId": 122518, "maxRanks": 1, "type": "passive", "name": "Monster Rising", "spellId": 452414, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 94901, "name": "Demonic Intensity", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 34, "next": [], "prev": [94902, 94904, 94909], "entries": [{"id": 117498, "definitionId": 122510, "maxRanks": 1, "type": "passive", "name": "Demonic Intensity", "spellId": 452415, "icon": "spell_warlock_demonicempowerment", "index": 100}]}], "subTreeNodes": [{"id": 99823, "name": "Aldrachi Reaver / Fel-Scarred", "type": "subtree", "posX": 8400, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123328, "type": "subtree", "name": "Aldrachi Reaver", "traitSubTreeId": 35, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-aldrachireaver", "nodes": [94915, 94898, 94911, 94903, 94914, 94896, 94897, 94895, 94910, 94906, 94919]}, {"id": 123327, "type": "subtree", "name": "Fel-Scarred", "traitSubTreeId": 34, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-felscarred", "nodes": [94917, 94913, 94918, 94899, 94905, 94912, 94916, 94904, 94902, 94909, 94901]}]}], "fullNodeOrder": [90912, 90914, 90915, 90916, 90917, 90918, 90919, 90921, 90922, 90923, 90925, 90927, 90928, 90929, 90930, 90931, 90933, 90934, 90935, 90936, 90937, 90938, 90939, 90940, 90941, 90942, 90945, 90946, 90947, 90948, 90949, 90950, 90951, 90952, 90953, 90954, 90955, 90956, 90957, 90958, 90959, 90960, 90961, 90962, 90963, 90964, 90965, 90966, 90967, 90968, 90969, 90970, 90971, 90972, 90973, 90974, 90975, 90976, 90977, 90978, 90979, 90980, 90981, 90982, 90983, 90984, 90985, 90986, 90987, 90988, 90989, 90990, 90991, 90993, 90994, 90996, 90997, 90999, 91000, 91001, 91002, 91003, 91004, 91005, 91006, 91007, 91008, 91011, 91012, 91013, 91015, 91017, 91018, 91019, 91020, 91021, 91022, 91024, 91025, 91026, 91027, 91028, 91030, 91031, 91032, 91033, 91034, 91035, 91036, 93013, 93014, 93015, 93016, 94895, 94896, 94897, 94898, 94899, 94901, 94902, 94903, 94904, 94905, 94906, 94909, 94910, 94911, 94912, 94913, 94914, 94915, 94916, 94917, 94918, 94919, 95143, 95144, 95147, 95148, 95149, 95150, 95151, 95152, 95154, 95155, 99823, 99824]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/druid_balance.json b/simc_support/game_data/data_files/trees/druid_balance.json index ecc4a2b..98ab6e6 100644 --- a/simc_support/game_data/data_files/trees/druid_balance.json +++ b/simc_support/game_data/data_files/trees/druid_balance.json @@ -1 +1 @@ -{"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Balance", "specId": 102, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82205, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82201, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82202, 82208], "prev": [], "entries": [{"id": 103279, "definitionId": 108284, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 194153, "icon": "spell_arcane_starfire", "index": 100}], "freeNode": true}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82205, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103283, "definitionId": 108288, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82202, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82201], "entries": [{"id": 103280, "definitionId": 108285, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 78674, "icon": "spell_arcane_arcane03", "index": 100}], "freeNode": true}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [82201], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82205, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 88223, "name": "Eclipse", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [88225, 88231], "prev": [], "entries": [{"id": 109858, "definitionId": 114863, "maxRanks": 1, "type": "passive", "name": "Eclipse", "spellId": 79577, "icon": "ability_druid_eclipseorange", "index": 100}]}, {"id": 88225, "name": "Shooting Stars", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [88203, 88210], "prev": [88223], "entries": [{"id": 109861, "definitionId": 114866, "maxRanks": 1, "type": "passive", "name": "Shooting Stars", "spellId": 202342, "icon": "spell_priest_divinestar_shadow2", "index": 100}]}, {"id": 88231, "name": "Solar Beam", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [88210, 88211, 88201], "prev": [88223], "entries": [{"id": 109867, "definitionId": 114872, "maxRanks": 1, "type": "active", "name": "Solar Beam", "spellId": 78675, "icon": "ability_vehicle_sonicshockwave", "index": 100}]}, {"id": 88203, "name": "Solstice", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [91048, 88226], "prev": [88225], "entries": [{"id": 109835, "definitionId": 114840, "maxRanks": 1, "type": "passive", "name": "Solstice", "spellId": 343647, "icon": "artifactability_balancedruid_moonandstars", "index": 100}]}, {"id": 88210, "name": "Force of Nature / Warrior of Elune", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [88226, 88208], "prev": [88225, 88231], "entries": [{"id": 109844, "definitionId": 114849, "maxRanks": 1, "type": "active", "name": "Force of Nature", "spellId": 205636, "icon": "ability_druid_forceofnature", "index": 100}, {"id": 114648, "definitionId": 119654, "maxRanks": 1, "type": "active", "name": "Warrior of Elune", "spellId": 202425, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 88211, "name": "Light of the Sun", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [88208], "prev": [88231], "entries": [{"id": 109845, "definitionId": 114850, "maxRanks": 1, "type": "passive", "name": "Light of the Sun", "spellId": 202918, "icon": "ability_vehicle_sonicshockwave", "index": 100}]}, {"id": 88201, "name": "Starfall", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [88208, 88209], "prev": [88231], "entries": [{"id": 109833, "definitionId": 114838, "maxRanks": 1, "type": "active", "name": "Starfall", "spellId": 191034, "icon": "ability_druid_starfall", "index": 100}]}, {"id": 91048, "name": "Wild Surges / Stellar Flare", "type": "choice", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [88204, 88202], "prev": [88203], "entries": [{"id": 115458, "definitionId": 120470, "maxRanks": 1, "type": "passive", "name": "Wild Surges", "spellId": 406890, "icon": "ability_skyreach_lens_flare", "index": 100}, {"id": 109841, "definitionId": 114846, "maxRanks": 1, "type": "active", "name": "Stellar Flare", "spellId": 202347, "icon": "ability_druid_stellarflare", "index": 200}]}, {"id": 88226, "name": "Nature's Balance", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [88204, 88215], "prev": [88203, 88210], "entries": [{"id": 109862, "definitionId": 114867, "maxRanks": 1, "type": "passive", "name": "Nature's Balance", "spellId": 202430, "icon": "ability_druid_balanceofpower", "index": 100}]}, {"id": 88208, "name": "Twin Moons", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [88215, 88219], "prev": [88211, 88201, 88210], "entries": [{"id": 109842, "definitionId": 114847, "maxRanks": 1, "type": "passive", "name": "Twin Moons", "spellId": 279620, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 88209, "name": "Aetherial Kindling", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [88219, 88232], "prev": [88201], "entries": [{"id": 109843, "definitionId": 114848, "maxRanks": 1, "type": "passive", "name": "Aetherial Kindling", "spellId": 327541, "icon": "ability_druid_starfall", "index": 100}]}, {"id": 88204, "name": "Astral Smolder", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [88212, 88202, 88229], "prev": [91048, 88226], "entries": [{"id": 109836, "definitionId": 114841, "maxRanks": 1, "type": "passive", "name": "Astral Smolder", "spellId": 394058, "icon": "spell_fire_bluefire", "index": 0}]}, {"id": 88215, "name": "Celestial Alignment", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [88212, 88221, 88222], "prev": [88208, 88226], "entries": [{"id": 109849, "definitionId": 114854, "maxRanks": 1, "type": "active", "name": "Celestial Alignment", "spellId": 395022, "visibleSpellId": 194223, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 88219, "name": "Umbral Intensity", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [88222, 100222, 88232], "prev": [88209, 88208], "entries": [{"id": 109853, "definitionId": 114858, "maxRanks": 2, "type": "passive", "name": "Umbral Intensity", "spellId": 383195, "icon": "ability_druid_eclipse", "index": 100}]}, {"id": 88202, "name": "Waning Twilight", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227, 88220], "prev": [91048, 88204], "entries": [{"id": 109834, "definitionId": 114839, "maxRanks": 1, "type": "passive", "name": "Waning Twilight", "spellId": 393956, "icon": "spell_shadow_twilight", "index": 0}]}, {"id": 88229, "name": "Stellar Amplification", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227], "prev": [88204], "entries": [{"id": 109865, "definitionId": 114870, "maxRanks": 1, "type": "passive", "name": "Stellar Amplification", "spellId": 450212, "icon": "spell_arcane_arcane04", "index": 100}]}, {"id": 88212, "name": "Soul of the Forest", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227, 88216], "prev": [88204, 88215], "entries": [{"id": 109846, "definitionId": 114851, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 114107, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 88221, "name": "Greater Alignment / Orbital Strike", "type": "choice", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88216], "prev": [88215], "entries": [{"id": 109856, "definitionId": 114861, "maxRanks": 1, "type": "passive", "name": "Greater Alignment", "spellId": 450184, "icon": "spell_druid_equinox", "index": 100}, {"id": 109855, "definitionId": 114860, "maxRanks": 1, "type": "passive", "name": "Orbital Strike", "spellId": 390378, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 88222, "name": "Nature's Grace", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88216, 88207], "prev": [88219, 88215], "entries": [{"id": 109857, "definitionId": 114862, "maxRanks": 1, "type": "passive", "name": "Nature's Grace", "spellId": 450347, "icon": "ability_druid_lunarguidance", "index": 0}]}, {"id": 100222, "name": "Touch the Cosmos", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88207], "prev": [88219], "entries": [{"id": 123859, "definitionId": 128697, "maxRanks": 1, "type": "passive", "name": "Touch the Cosmos", "spellId": 450356, "icon": "ability_bossgorefiend_touchofdoom", "index": 100}]}, {"id": 88232, "name": "Lunar Shrapnel", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88207, 88235], "prev": [88209, 88219], "entries": [{"id": 109868, "definitionId": 114873, "maxRanks": 1, "type": "passive", "name": "Lunar Shrapnel", "spellId": 415169, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 88227, "name": "Cosmic Rapidity", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [88220, 88199, 88214], "prev": [88229, 88212, 88202], "entries": [{"id": 109863, "definitionId": 114868, "maxRanks": 2, "type": "passive", "name": "Cosmic Rapidity", "spellId": 400059, "icon": "spell_druid_swarm", "index": 100}]}, {"id": 88216, "name": "Umbral Embrace", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [88214, 88217, 88200], "prev": [88221, 88212, 88222], "entries": [{"id": 109850, "definitionId": 114855, "maxRanks": 1, "type": "passive", "name": "Umbral Embrace", "spellId": 393760, "icon": "ability_druid_improvedmoonkinform", "index": 0}]}, {"id": 88207, "name": "Starlord", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [88200, 88236, 88235], "prev": [88232, 88222, 100222], "entries": [{"id": 109840, "definitionId": 114845, "maxRanks": 2, "type": "passive", "name": "Starlord", "spellId": 202345, "icon": "spell_shaman_measuredinsight", "index": 100}]}, {"id": 88220, "name": "Wild Mushroom", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88218], "prev": [88202, 88227], "entries": [{"id": 117100, "definitionId": 122112, "maxRanks": 1, "type": "active", "name": "Wild Mushroom", "spellId": 88747, "icon": "druid_ability_wildmushroom_a", "index": 0}]}, {"id": 88199, "name": "Sundered Firmament / Orbit Breaker", "type": "choice", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88218], "prev": [88227], "entries": [{"id": 109831, "definitionId": 114836, "maxRanks": 1, "type": "passive", "name": "Sundered Firmament", "spellId": 394094, "icon": "spell_druid_equinox", "index": 100}, {"id": 123860, "definitionId": 128698, "maxRanks": 1, "type": "passive", "name": "Orbit Breaker", "spellId": 383197, "icon": "artifactability_balancedruid_moonandstars", "index": 200}]}, {"id": 88214, "name": "Balance of All Things", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [88206, 88218], "prev": [88227, 88216], "entries": [{"id": 109848, "definitionId": 114853, "maxRanks": 2, "type": "passive", "name": "Balance of All Things", "spellId": 394048, "icon": "ability_druid_earthandsky", "index": 0}]}, {"id": 88217, "name": "Umbral Inspiration", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88206], "prev": [88216], "entries": [{"id": 109851, "definitionId": 114856, "maxRanks": 1, "type": "passive", "name": "Umbral Inspiration", "spellId": 450418, "icon": "ability_eyeoftheowl", "index": 100}]}, {"id": 88200, "name": "Power of Goldrinn", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [88206, 88224], "prev": [88207, 88216], "entries": [{"id": 109832, "definitionId": 114837, "maxRanks": 2, "type": "passive", "name": "Power of Goldrinn", "spellId": 394046, "icon": "inv_mount_spectralwolf", "index": 100}]}, {"id": 88236, "name": "Starweaver / Rattle the Stars", "type": "choice", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88224], "prev": [88207], "entries": [{"id": 109873, "definitionId": 114878, "maxRanks": 1, "type": "passive", "name": "Starweaver", "spellId": 393940, "icon": "spell_arcane_invocation", "index": 100}, {"id": 109872, "definitionId": 114877, "maxRanks": 1, "type": "passive", "name": "Rattle the Stars", "spellId": 393954, "icon": "spell_arcane_arcane01", "index": 200}]}, {"id": 88235, "name": "Astral Communion", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88224], "prev": [88232, 88207], "entries": [{"id": 109871, "definitionId": 114876, "maxRanks": 1, "type": "passive", "name": "Astral Communion", "spellId": 450598, "icon": "talentspec_druid_balance", "index": 0}]}, {"id": 88218, "name": "Harmony of the Heavens", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88234], "prev": [88214, 88199, 88220], "entries": [{"id": 109852, "definitionId": 114857, "maxRanks": 1, "type": "passive", "name": "Harmony of the Heavens", "spellId": 450558, "icon": "spell_arcane_massdispel", "index": 0}]}, {"id": 88206, "name": "Incarnation: Chosen of Elune / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88228], "prev": [88214, 88200, 88217], "entries": [{"id": 109839, "definitionId": 114844, "maxRanks": 1, "type": "active", "name": "Incarnation: Chosen of Elune", "spellId": 394013, "visibleSpellId": 102560, "icon": "spell_druid_incarnation", "index": 100}, {"id": 109838, "definitionId": 114843, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "ability_ardenweald_druid", "index": 200}]}, {"id": 88224, "name": "Fury of Elune / New Moon", "type": "choice", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88213], "prev": [88200, 88236, 88235], "entries": [{"id": 109859, "definitionId": 114864, "maxRanks": 1, "type": "active", "name": "Fury of Elune", "spellId": 202770, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 109860, "definitionId": 114865, "maxRanks": 1, "type": "active", "name": "New Moon", "spellId": 274281, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 88234, "name": "Denizen of the Dream", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88218], "entries": [{"id": 109870, "definitionId": 114875, "maxRanks": 1, "type": "passive", "name": "Denizen of the Dream", "spellId": 394065, "icon": "inv_faeriedragon2_orange", "index": 0}]}, {"id": 88228, "name": "Elune's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88206], "entries": [{"id": 109864, "definitionId": 114869, "maxRanks": 1, "type": "passive", "name": "Elune's Guidance", "spellId": 393991, "icon": "ability_ardenweald_druid", "index": 100}]}, {"id": 88213, "name": "Radiant Moonlight", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88224], "entries": [{"id": 109847, "definitionId": 114852, "maxRanks": 1, "type": "passive", "name": "Radiant Moonlight", "spellId": 394121, "icon": "artifactability_balancedruid_fullmoon", "index": 100}]}], "heroNodes": [{"id": 94608, "name": "Boundless Moonlight", "type": "single", "posX": 7800, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 24, "requiresNode": 92587, "next": [94598, 94588, 94594], "prev": [], "entries": [{"id": 117205, "definitionId": 122217, "maxRanks": 1, "type": "passive", "name": "Boundless Moonlight", "spellId": 424058, "icon": "inv_ability_eluneschosendruid_boundlessmoonlight", "index": 100}], "freeNode": true}, {"id": 94598, "name": "Moon Guardian", "type": "single", "posX": 7200, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "requiresNode": 82145, "next": [94596], "prev": [94608], "entries": [{"id": 117193, "definitionId": 122205, "maxRanks": 1, "type": "passive", "name": "Moon Guardian", "spellId": 429520, "icon": "spell_nature_moonglow", "index": 100}]}, {"id": 94588, "name": "Lunar Insight", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94607], "prev": [94608], "entries": [{"id": 117181, "definitionId": 122193, "maxRanks": 1, "type": "passive", "name": "Lunar Insight", "spellId": 429530, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94594, "name": "Glistening Fur", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94597], "prev": [94608], "entries": [{"id": 117769, "definitionId": 122781, "maxRanks": 1, "type": "passive", "name": "Glistening Fur", "spellId": 429533, "icon": "ability_druid_ironfur", "index": 200}]}, {"id": 94596, "name": "Lunar Amplification", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94590], "prev": [94598], "entries": [{"id": 117190, "definitionId": 122202, "maxRanks": 1, "type": "passive", "name": "Lunar Amplification", "spellId": 429529, "icon": "spell_druid_lunarinspiration", "index": 200}]}, {"id": 94607, "name": "Atmospheric Exposure", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [94585], "prev": [94588], "entries": [{"id": 117204, "definitionId": 122216, "maxRanks": 1, "type": "passive", "name": "Atmospheric Exposure", "spellId": 429532, "icon": "inv_cosmicvoid_nova", "index": 100}]}, {"id": 94597, "name": "Moondust / Elune's Grace", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94586], "prev": [94594], "entries": [{"id": 117192, "definitionId": 122204, "maxRanks": 1, "type": "passive", "name": "Moondust", "spellId": 429538, "icon": "inv_enchant_dust", "index": 100}, {"id": 123304, "definitionId": 128177, "maxRanks": 1, "type": "passive", "name": "Elune's Grace", "spellId": 443046, "icon": "spell_druid_wildcharge", "index": 200}]}, {"id": 94590, "name": "Stellar Command / Lunar Calling", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94596], "entries": [{"id": 117183, "definitionId": 122195, "maxRanks": 1, "type": "passive", "name": "Stellar Command", "spellId": 429668, "icon": "artifactability_balancedruid_moonandstars", "index": 100}, {"id": 117770, "definitionId": 122782, "maxRanks": 1, "type": "passive", "name": "Lunar Calling", "spellId": 429523, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 94585, "name": "The Light of Elune / Astral Insight", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94607], "entries": [{"id": 117176, "definitionId": 122188, "maxRanks": 1, "type": "passive", "name": "The Light of Elune", "spellId": 428655, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 117772, "definitionId": 122784, "maxRanks": 1, "type": "passive", "name": "Astral Insight", "spellId": 429536, "icon": "spell_druid_incarnation", "index": 200}]}, {"id": 94586, "name": "Arcane Affinity / Lunation", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94597], "entries": [{"id": 117178, "definitionId": 122190, "maxRanks": 1, "type": "passive", "name": "Arcane Affinity", "spellId": 429540, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 117177, "definitionId": 122189, "maxRanks": 1, "type": "passive", "name": "Lunation", "spellId": 429539, "icon": "spell_nature_moonglow", "index": 200}]}, {"id": 94587, "name": "The Eternal Moon", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [], "prev": [94590, 94585, 94586], "entries": [{"id": 117179, "definitionId": 122191, "maxRanks": 1, "type": "passive", "name": "The Eternal Moon", "spellId": 424113, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 94600, "name": "Dream Surge", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "entryNode": true, "subTreeId": 23, "requiresNode": 0, "next": [94599, 94602, 94593], "prev": [], "entries": [{"id": 117195, "definitionId": 122207, "maxRanks": 1, "type": "passive", "name": "Dream Surge", "spellId": 433831, "icon": "inv_ability_keeperofthegrovedruid_dreamsurge_fiendly", "index": 100}], "freeNode": true}, {"id": 94599, "name": "Treants of the Moon", "type": "single", "posX": 7200, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94605], "prev": [94600], "entries": [{"id": 117194, "definitionId": 122206, "maxRanks": 1, "type": "passive", "name": "Treants of the Moon", "spellId": 428544, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94602, "name": "Expansiveness", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94604], "prev": [94600], "entries": [{"id": 117197, "definitionId": 122209, "maxRanks": 1, "type": "passive", "name": "Expansiveness", "spellId": 429399, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 94593, "name": "Protective Growth", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94595], "prev": [94600], "entries": [{"id": 117186, "definitionId": 122198, "maxRanks": 1, "type": "passive", "name": "Protective Growth", "spellId": 433748, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 94605, "name": "Power of Nature / Durability of Nature", "type": "choice", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94591], "prev": [94599], "entries": [{"id": 117201, "definitionId": 122213, "maxRanks": 1, "type": "passive", "name": "Power of Nature", "spellId": 428859, "icon": "spell_nature_naturesblessing", "index": 100}, {"id": 117200, "definitionId": 122212, "maxRanks": 1, "type": "passive", "name": "Durability of Nature", "spellId": 429227, "icon": "ability_druid_manatree", "index": 200}]}, {"id": 94604, "name": "Cenarius' Might", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94592], "prev": [94602], "entries": [{"id": 117199, "definitionId": 122211, "maxRanks": 1, "type": "passive", "name": "Cenarius' Might", "spellId": 455797, "icon": "achievement_reputation_guardiansofcenarius", "index": 100}]}, {"id": 94595, "name": "Grove's Inspiration / Potent Enchantments", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94601], "prev": [94593], "entries": [{"id": 117189, "definitionId": 122201, "maxRanks": 1, "type": "passive", "name": "Grove's Inspiration", "spellId": 429402, "icon": "ability_druid_protectionofthegrove", "index": 100}, {"id": 117188, "definitionId": 122200, "maxRanks": 1, "type": "passive", "name": "Potent Enchantments", "spellId": 429420, "icon": "ability_druid_serenefocus", "index": 200}]}, {"id": 94591, "name": "Bounteous Bloom / Early Spring", "type": "choice", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94606], "prev": [94605], "entries": [{"id": 117184, "definitionId": 122196, "maxRanks": 1, "type": "passive", "name": "Bounteous Bloom", "spellId": 429215, "icon": "inv_herbalism_70_dreamleaf", "index": 100}, {"id": 117895, "definitionId": 122907, "maxRanks": 1, "type": "passive", "name": "Early Spring", "spellId": 428937, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94592, "name": "Power of the Dream / Control of the Dream", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94604], "entries": [{"id": 117185, "definitionId": 122197, "maxRanks": 1, "type": "passive", "name": "Power of the Dream", "spellId": 434220, "icon": "ability_xavius_dreamsimulacrum", "index": 100}, {"id": 117894, "definitionId": 122906, "maxRanks": 1, "type": "passive", "name": "Control of the Dream", "spellId": 434249, "icon": "inv_cloth_outdooremeralddream_d_01_buckle", "index": 200}]}, {"id": 94601, "name": "Blooming Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94595], "entries": [{"id": 117196, "definitionId": 122208, "maxRanks": 1, "type": "passive", "name": "Blooming Infusion", "spellId": 429433, "icon": "spell_nature_thorns", "index": 100}]}, {"id": 94606, "name": "Harmony of the Grove", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [], "prev": [94601, 94592, 94591], "entries": [{"id": 117203, "definitionId": 122215, "maxRanks": 1, "type": "passive", "name": "Harmony of the Grove", "spellId": 428731, "icon": "ability_druid_forceofnature", "index": 100}]}], "subTreeNodes": [{"id": 99808, "name": "Elune's Chosen / Keeper of the Grove", "type": "subtree", "posX": 7200, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123302, "type": "subtree", "name": "Elune's Chosen", "traitSubTreeId": 24, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-eluneschosen", "nodes": [94608, 94598, 94588, 94594, 94596, 94607, 94597, 94590, 94585, 94586, 94587]}, {"id": 123300, "type": "subtree", "name": "Keeper of the Grove", "traitSubTreeId": 23, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-keeperofthegrove", "nodes": [94600, 94599, 94602, 94593, 94605, 94604, 94595, 94591, 94592, 94601, 94606]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82084, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100222, 100223]} \ No newline at end of file +{"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Balance", "specId": 102, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82205, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82201, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82202, 82208], "prev": [], "entries": [{"id": 103279, "definitionId": 108284, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 194153, "icon": "spell_arcane_starfire", "index": 100}], "freeNode": true}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82205, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103283, "definitionId": 108288, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82202, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82201], "entries": [{"id": 103280, "definitionId": 108285, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 78674, "icon": "spell_arcane_arcane03", "index": 100}], "freeNode": true}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [82201], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82205, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 88223, "name": "Eclipse", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [88225, 88231], "prev": [], "entries": [{"id": 109858, "definitionId": 114863, "maxRanks": 1, "type": "passive", "name": "Eclipse", "spellId": 79577, "icon": "ability_druid_eclipseorange", "index": 100}]}, {"id": 88225, "name": "Shooting Stars", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [88203, 88210], "prev": [88223], "entries": [{"id": 109861, "definitionId": 114866, "maxRanks": 1, "type": "passive", "name": "Shooting Stars", "spellId": 202342, "icon": "spell_priest_divinestar_shadow2", "index": 100}]}, {"id": 88231, "name": "Solar Beam", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [88210, 88211, 88201], "prev": [88223], "entries": [{"id": 109867, "definitionId": 114872, "maxRanks": 1, "type": "active", "name": "Solar Beam", "spellId": 78675, "icon": "ability_vehicle_sonicshockwave", "index": 100}]}, {"id": 88203, "name": "Solstice", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [91048, 88226], "prev": [88225], "entries": [{"id": 109835, "definitionId": 114840, "maxRanks": 1, "type": "passive", "name": "Solstice", "spellId": 343647, "icon": "artifactability_balancedruid_moonandstars", "index": 100}]}, {"id": 88210, "name": "Force of Nature / Warrior of Elune", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [88226, 88208, 88215], "prev": [88225, 88231], "entries": [{"id": 109844, "definitionId": 114849, "maxRanks": 1, "type": "active", "name": "Force of Nature", "spellId": 205636, "icon": "ability_druid_forceofnature", "index": 100}, {"id": 114648, "definitionId": 119654, "maxRanks": 1, "type": "active", "name": "Warrior of Elune", "spellId": 202425, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 88211, "name": "Light of the Sun", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [88208], "prev": [88231], "entries": [{"id": 109845, "definitionId": 114850, "maxRanks": 1, "type": "passive", "name": "Light of the Sun", "spellId": 202918, "icon": "ability_vehicle_sonicshockwave", "index": 100}]}, {"id": 88201, "name": "Twin Moons", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [88208, 88209], "prev": [88231], "entries": [{"id": 109833, "definitionId": 114838, "maxRanks": 1, "type": "passive", "name": "Twin Moons", "spellId": 279620, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 91048, "name": "Wild Surges / Stellar Flare", "type": "choice", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [88204, 88202], "prev": [88203], "entries": [{"id": 115458, "definitionId": 120470, "maxRanks": 1, "type": "passive", "name": "Wild Surges", "spellId": 406890, "icon": "ability_skyreach_lens_flare", "index": 100}, {"id": 109841, "definitionId": 114846, "maxRanks": 1, "type": "active", "name": "Stellar Flare", "spellId": 202347, "icon": "ability_druid_stellarflare", "index": 200}]}, {"id": 88226, "name": "Nature's Balance", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [88204, 88215], "prev": [88203, 88210], "entries": [{"id": 109862, "definitionId": 114867, "maxRanks": 1, "type": "passive", "name": "Nature's Balance", "spellId": 202430, "icon": "ability_druid_balanceofpower", "index": 100}]}, {"id": 88208, "name": "Nature's Grace", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [88215, 88219], "prev": [88211, 88201, 88210], "entries": [{"id": 109842, "definitionId": 114847, "maxRanks": 1, "type": "passive", "name": "Nature's Grace", "spellId": 450347, "icon": "ability_druid_lunarguidance", "index": 100}]}, {"id": 88209, "name": "Aetherial Kindling", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [88219, 88232], "prev": [88201], "entries": [{"id": 109843, "definitionId": 114848, "maxRanks": 1, "type": "passive", "name": "Aetherial Kindling", "spellId": 327541, "icon": "ability_druid_starfall", "index": 100}]}, {"id": 88204, "name": "Astral Smolder", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [88212, 88202, 88229], "prev": [91048, 88226], "entries": [{"id": 109836, "definitionId": 114841, "maxRanks": 1, "type": "passive", "name": "Astral Smolder", "spellId": 394058, "icon": "spell_fire_bluefire", "index": 0}]}, {"id": 88215, "name": "Celestial Alignment", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [88212, 88221, 88222], "prev": [88208, 88226, 88210], "entries": [{"id": 109849, "definitionId": 114854, "maxRanks": 1, "type": "active", "name": "Celestial Alignment", "spellId": 395022, "visibleSpellId": 194223, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 88219, "name": "Umbral Intensity", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [88222, 88232, 88207], "prev": [88209, 88208], "entries": [{"id": 109853, "definitionId": 114858, "maxRanks": 1, "type": "passive", "name": "Umbral Intensity", "spellId": 383195, "icon": "ability_druid_eclipse", "index": 100}]}, {"id": 88202, "name": "Sunseeker Mushroom / Wild Mushroom", "type": "choice", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227, 88220], "prev": [91048, 88204], "entries": [{"id": 109834, "definitionId": 114839, "maxRanks": 1, "type": "passive", "name": "Sunseeker Mushroom", "spellId": 468936, "icon": "druid_ability_wildmushroom_b", "index": 0}, {"id": 128232, "definitionId": 133039, "maxRanks": 1, "type": "active", "name": "Wild Mushroom", "spellId": 88747, "icon": "druid_ability_wildmushroom_a", "index": 100}]}, {"id": 88229, "name": "Stellar Amplification", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227], "prev": [88204], "entries": [{"id": 109865, "definitionId": 114870, "maxRanks": 1, "type": "passive", "name": "Stellar Amplification", "spellId": 450212, "icon": "spell_arcane_arcane04", "index": 100}]}, {"id": 88212, "name": "Soul of the Forest", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227, 103847, 88216], "prev": [88204, 88215], "entries": [{"id": 109846, "definitionId": 114851, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 114107, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 88221, "name": "Whirling Stars / Orbital Strike", "type": "choice", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88216], "prev": [88215], "entries": [{"id": 109856, "definitionId": 114861, "maxRanks": 1, "type": "passive", "name": "Whirling Stars", "spellId": 468743, "icon": "spell_druid_equinox", "index": 100}, {"id": 109855, "definitionId": 114860, "maxRanks": 1, "type": "passive", "name": "Orbital Strike", "spellId": 390378, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 88222, "name": "Touch the Cosmos", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88216, 103846, 88207], "prev": [88219, 88215], "entries": [{"id": 109857, "definitionId": 114862, "maxRanks": 1, "type": "passive", "name": "Touch the Cosmos", "spellId": 450356, "icon": "ability_bossgorefiend_touchofdoom", "index": 0}]}, {"id": 88232, "name": "Astronomical Impact", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88207, 88235], "prev": [88209, 88219], "entries": [{"id": 109868, "definitionId": 114873, "maxRanks": 1, "type": "passive", "name": "Astronomical Impact", "spellId": 468960, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 88227, "name": "Cosmic Rapidity", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [88220, 88199, 88214], "prev": [88229, 88212, 88202], "entries": [{"id": 109863, "definitionId": 114868, "maxRanks": 2, "type": "passive", "name": "Cosmic Rapidity", "spellId": 400059, "icon": "spell_druid_swarm", "index": 100}]}, {"id": 103847, "name": "Crashing Star", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [88212], "entries": [{"id": 128231, "definitionId": 133038, "maxRanks": 1, "type": "passive", "name": "Crashing Star", "spellId": 468978, "icon": "spell_priest_divinestar_shadow2", "index": 100}]}, {"id": 88216, "name": "Umbral Embrace", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [88214, 88217, 88200], "prev": [88221, 88212, 88222], "entries": [{"id": 109850, "definitionId": 114855, "maxRanks": 1, "type": "passive", "name": "Umbral Embrace", "spellId": 393760, "icon": "ability_druid_improvedmoonkinform", "index": 0}]}, {"id": 103846, "name": "Hail of Stars", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [88222], "entries": [{"id": 128230, "definitionId": 133037, "maxRanks": 1, "type": "passive", "name": "Hail of Stars", "spellId": 469004, "icon": "ability_druid_starfall", "index": 0}]}, {"id": 88207, "name": "Starlord", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [88200, 88236, 88235], "prev": [88232, 88222, 88219], "entries": [{"id": 109840, "definitionId": 114845, "maxRanks": 2, "type": "passive", "name": "Starlord", "spellId": 202345, "icon": "spell_shaman_measuredinsight", "index": 100}]}, {"id": 88220, "name": "Waning Twilight", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88218], "prev": [88202, 88227], "entries": [{"id": 117100, "definitionId": 122112, "maxRanks": 1, "type": "passive", "name": "Waning Twilight", "spellId": 393956, "icon": "spell_shadow_twilight", "index": 0}]}, {"id": 88199, "name": "Sundered Firmament / Orbit Breaker", "type": "choice", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88218], "prev": [88227], "entries": [{"id": 109831, "definitionId": 114836, "maxRanks": 1, "type": "passive", "name": "Sundered Firmament", "spellId": 394094, "icon": "spell_druid_equinox", "index": 100}, {"id": 123860, "definitionId": 128698, "maxRanks": 1, "type": "passive", "name": "Orbit Breaker", "spellId": 383197, "icon": "artifactability_balancedruid_moonandstars", "index": 200}]}, {"id": 88214, "name": "Balance of All Things", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [88206, 88218], "prev": [88227, 88216], "entries": [{"id": 109848, "definitionId": 114853, "maxRanks": 2, "type": "passive", "name": "Balance of All Things", "spellId": 394048, "icon": "ability_druid_earthandsky", "index": 0}]}, {"id": 88217, "name": "Umbral Inspiration", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88206], "prev": [88216], "entries": [{"id": 109851, "definitionId": 114856, "maxRanks": 1, "type": "passive", "name": "Umbral Inspiration", "spellId": 450418, "icon": "ability_eyeoftheowl", "index": 100}]}, {"id": 88200, "name": "Power of Goldrinn", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88206, 88224], "prev": [88207, 88216], "entries": [{"id": 109832, "definitionId": 114837, "maxRanks": 1, "type": "passive", "name": "Power of Goldrinn", "spellId": 394046, "icon": "inv_mount_spectralwolf", "index": 100}]}, {"id": 88236, "name": "Starweaver / Rattle the Stars", "type": "choice", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88224], "prev": [88207], "entries": [{"id": 109873, "definitionId": 114878, "maxRanks": 1, "type": "passive", "name": "Starweaver", "spellId": 393940, "icon": "spell_arcane_invocation", "index": 100}, {"id": 109872, "definitionId": 114877, "maxRanks": 1, "type": "passive", "name": "Rattle the Stars", "spellId": 393954, "icon": "spell_arcane_arcane01", "index": 200}]}, {"id": 88235, "name": "Astral Communion", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88224], "prev": [88232, 88207], "entries": [{"id": 109871, "definitionId": 114876, "maxRanks": 1, "type": "passive", "name": "Astral Communion", "spellId": 450598, "icon": "talentspec_druid_balance", "index": 0}]}, {"id": 88218, "name": "Harmony of the Heavens", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88234], "prev": [88214, 88199, 88220], "entries": [{"id": 109852, "definitionId": 114857, "maxRanks": 1, "type": "passive", "name": "Harmony of the Heavens", "spellId": 450558, "icon": "spell_arcane_massdispel", "index": 0}]}, {"id": 88206, "name": "Incarnation: Chosen of Elune / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88228], "prev": [88214, 88200, 88217], "entries": [{"id": 109839, "definitionId": 114844, "maxRanks": 1, "type": "active", "name": "Incarnation: Chosen of Elune", "spellId": 394013, "visibleSpellId": 102560, "icon": "spell_druid_incarnation", "index": 100}, {"id": 109838, "definitionId": 114843, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "inv_ability_druid_convokethespirits", "index": 200}]}, {"id": 88224, "name": "Fury of Elune / New Moon", "type": "choice", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88213], "prev": [88200, 88236, 88235], "entries": [{"id": 109859, "definitionId": 114864, "maxRanks": 1, "type": "active", "name": "Fury of Elune", "spellId": 202770, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 109860, "definitionId": 114865, "maxRanks": 1, "type": "active", "name": "New Moon", "spellId": 274281, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 88234, "name": "Denizen of the Dream", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88218], "entries": [{"id": 109870, "definitionId": 114875, "maxRanks": 1, "type": "passive", "name": "Denizen of the Dream", "spellId": 394065, "icon": "inv_faeriedragon2_orange", "index": 0}]}, {"id": 88228, "name": "Elune's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88206], "entries": [{"id": 109864, "definitionId": 114869, "maxRanks": 1, "type": "passive", "name": "Elune's Guidance", "spellId": 393991, "icon": "ability_ardenweald_druid", "index": 100}]}, {"id": 88213, "name": "Radiant Moonlight", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88224], "entries": [{"id": 109847, "definitionId": 114852, "maxRanks": 1, "type": "passive", "name": "Radiant Moonlight", "spellId": 394121, "icon": "artifactability_balancedruid_fullmoon", "index": 100}]}], "heroNodes": [{"id": 94608, "name": "Boundless Moonlight", "type": "single", "posX": 7800, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 24, "requiresNode": 92587, "next": [94598, 94588, 94594], "prev": [], "entries": [{"id": 117205, "definitionId": 122217, "maxRanks": 1, "type": "passive", "name": "Boundless Moonlight", "spellId": 424058, "icon": "inv_ability_eluneschosendruid_boundlessmoonlight", "index": 100}], "freeNode": true}, {"id": 94598, "name": "Moon Guardian", "type": "single", "posX": 7200, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "requiresNode": 82145, "next": [94596], "prev": [94608], "entries": [{"id": 117193, "definitionId": 122205, "maxRanks": 1, "type": "passive", "name": "Moon Guardian", "spellId": 429520, "icon": "spell_nature_moonglow", "index": 100}]}, {"id": 94588, "name": "Lunar Insight", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94607], "prev": [94608], "entries": [{"id": 117181, "definitionId": 122193, "maxRanks": 1, "type": "passive", "name": "Lunar Insight", "spellId": 429530, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94594, "name": "Glistening Fur", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94597], "prev": [94608], "entries": [{"id": 117769, "definitionId": 122781, "maxRanks": 1, "type": "passive", "name": "Glistening Fur", "spellId": 429533, "icon": "ability_druid_ironfur", "index": 200}]}, {"id": 94596, "name": "Lunar Amplification", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94590], "prev": [94598], "entries": [{"id": 117190, "definitionId": 122202, "maxRanks": 1, "type": "passive", "name": "Lunar Amplification", "spellId": 429529, "icon": "spell_druid_lunarinspiration", "index": 200}]}, {"id": 94607, "name": "Atmospheric Exposure", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [94585], "prev": [94588], "entries": [{"id": 117204, "definitionId": 122216, "maxRanks": 1, "type": "passive", "name": "Atmospheric Exposure", "spellId": 429532, "icon": "inv_cosmicvoid_nova", "index": 100}]}, {"id": 94597, "name": "Moondust / Elune's Grace", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94586], "prev": [94594], "entries": [{"id": 117192, "definitionId": 122204, "maxRanks": 1, "type": "passive", "name": "Moondust", "spellId": 429538, "icon": "inv_enchant_dust", "index": 100}, {"id": 123304, "definitionId": 128177, "maxRanks": 1, "type": "passive", "name": "Elune's Grace", "spellId": 443046, "icon": "spell_druid_wildcharge", "index": 200}]}, {"id": 94590, "name": "Stellar Command / Lunar Calling", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94596], "entries": [{"id": 117183, "definitionId": 122195, "maxRanks": 1, "type": "passive", "name": "Stellar Command", "spellId": 429668, "icon": "artifactability_balancedruid_moonandstars", "index": 100}, {"id": 117770, "definitionId": 122782, "maxRanks": 1, "type": "passive", "name": "Lunar Calling", "spellId": 429523, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 94585, "name": "The Light of Elune / Astral Insight", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94607], "entries": [{"id": 117176, "definitionId": 122188, "maxRanks": 1, "type": "passive", "name": "The Light of Elune", "spellId": 428655, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 117772, "definitionId": 122784, "maxRanks": 1, "type": "passive", "name": "Astral Insight", "spellId": 429536, "icon": "spell_druid_incarnation", "index": 200}]}, {"id": 94586, "name": "Arcane Affinity / Lunation", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94597], "entries": [{"id": 117178, "definitionId": 122190, "maxRanks": 1, "type": "passive", "name": "Arcane Affinity", "spellId": 429540, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 117177, "definitionId": 122189, "maxRanks": 1, "type": "passive", "name": "Lunation", "spellId": 429539, "icon": "spell_nature_moonglow", "index": 200}]}, {"id": 94587, "name": "The Eternal Moon", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [], "prev": [94590, 94585, 94586], "entries": [{"id": 117179, "definitionId": 122191, "maxRanks": 1, "type": "passive", "name": "The Eternal Moon", "spellId": 424113, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 94600, "name": "Dream Surge", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "entryNode": true, "subTreeId": 23, "requiresNode": 0, "next": [94599, 94602, 94593], "prev": [], "entries": [{"id": 117195, "definitionId": 122207, "maxRanks": 1, "type": "passive", "name": "Dream Surge", "spellId": 433831, "icon": "inv_ability_keeperofthegrovedruid_dreamsurge_fiendly", "index": 100}], "freeNode": true}, {"id": 94599, "name": "Treants of the Moon", "type": "single", "posX": 7200, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94605], "prev": [94600], "entries": [{"id": 117194, "definitionId": 122206, "maxRanks": 1, "type": "passive", "name": "Treants of the Moon", "spellId": 428544, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94602, "name": "Expansiveness", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94604], "prev": [94600], "entries": [{"id": 117197, "definitionId": 122209, "maxRanks": 1, "type": "passive", "name": "Expansiveness", "spellId": 429399, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 94593, "name": "Protective Growth", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94595], "prev": [94600], "entries": [{"id": 117186, "definitionId": 122198, "maxRanks": 1, "type": "passive", "name": "Protective Growth", "spellId": 433748, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 94605, "name": "Power of Nature / Durability of Nature", "type": "choice", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94591], "prev": [94599], "entries": [{"id": 117201, "definitionId": 122213, "maxRanks": 1, "type": "passive", "name": "Power of Nature", "spellId": 428859, "icon": "spell_nature_naturesblessing", "index": 100}, {"id": 117200, "definitionId": 122212, "maxRanks": 1, "type": "passive", "name": "Durability of Nature", "spellId": 429227, "icon": "ability_druid_manatree", "index": 200}]}, {"id": 94604, "name": "Cenarius' Might", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94592], "prev": [94602], "entries": [{"id": 117199, "definitionId": 122211, "maxRanks": 1, "type": "passive", "name": "Cenarius' Might", "spellId": 455797, "icon": "achievement_reputation_guardiansofcenarius", "index": 100}]}, {"id": 94595, "name": "Grove's Inspiration / Potent Enchantments", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94601], "prev": [94593], "entries": [{"id": 117189, "definitionId": 122201, "maxRanks": 1, "type": "passive", "name": "Grove's Inspiration", "spellId": 429402, "icon": "ability_druid_protectionofthegrove", "index": 100}, {"id": 117188, "definitionId": 122200, "maxRanks": 1, "type": "passive", "name": "Potent Enchantments", "spellId": 429420, "icon": "ability_druid_serenefocus", "index": 200}]}, {"id": 94591, "name": "Bounteous Bloom / Early Spring", "type": "choice", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94606], "prev": [94605], "entries": [{"id": 117184, "definitionId": 122196, "maxRanks": 1, "type": "passive", "name": "Bounteous Bloom", "spellId": 429215, "icon": "inv_herbalism_70_dreamleaf", "index": 100}, {"id": 117895, "definitionId": 122907, "maxRanks": 1, "type": "passive", "name": "Early Spring", "spellId": 428937, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94592, "name": "Power of the Dream / Control of the Dream", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94604], "entries": [{"id": 117185, "definitionId": 122197, "maxRanks": 1, "type": "passive", "name": "Power of the Dream", "spellId": 434220, "icon": "ability_xavius_dreamsimulacrum", "index": 100}, {"id": 117894, "definitionId": 122906, "maxRanks": 1, "type": "passive", "name": "Control of the Dream", "spellId": 434249, "icon": "inv_cloth_outdooremeralddream_d_01_buckle", "index": 200}]}, {"id": 94601, "name": "Blooming Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94595], "entries": [{"id": 117196, "definitionId": 122208, "maxRanks": 1, "type": "passive", "name": "Blooming Infusion", "spellId": 429433, "icon": "spell_nature_thorns", "index": 100}]}, {"id": 94606, "name": "Harmony of the Grove", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [], "prev": [94601, 94592, 94591], "entries": [{"id": 117203, "definitionId": 122215, "maxRanks": 1, "type": "passive", "name": "Harmony of the Grove", "spellId": 428731, "icon": "ability_druid_forceofnature", "index": 100}]}], "subTreeNodes": [{"id": 99808, "name": "Elune's Chosen / Keeper of the Grove", "type": "subtree", "posX": 7200, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123302, "type": "subtree", "name": "Elune's Chosen", "traitSubTreeId": 24, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-eluneschosen", "nodes": [94608, 94598, 94588, 94594, 94596, 94607, 94597, 94590, 94585, 94586, 94587]}, {"id": 123300, "type": "subtree", "name": "Keeper of the Grove", "traitSubTreeId": 23, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-keeperofthegrove", "nodes": [94600, 94599, 94602, 94593, 94605, 94604, 94595, 94591, 94592, 94601, 94606]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100223, 103846, 103847, 103873, 103874, 103875, 103876]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/druid_feral.json b/simc_support/game_data/data_files/trees/druid_feral.json index 2d33135..1c88592 100644 --- a/simc_support/game_data/data_files/trees/druid_feral.json +++ b/simc_support/game_data/data_files/trees/druid_feral.json @@ -1 +1 @@ -{"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Feral", "specId": 103, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}], "freeNode": true}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82204, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 91044, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112967, "definitionId": 117972, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82204, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103282, "definitionId": 108287, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91044], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}], "freeNode": true}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91044], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82204, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82124, "name": "Tiger's Fury", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82123, 82085, 82120], "prev": [], "entries": [{"id": 103188, "definitionId": 108193, "maxRanks": 1, "type": "active", "name": "Tiger's Fury", "spellId": 5217, "icon": "ability_mount_jungletiger", "index": 100}]}, {"id": 82123, "name": "Omen of Clarity", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [82098, 82122, 82102], "prev": [82124], "entries": [{"id": 103187, "definitionId": 108192, "maxRanks": 1, "type": "passive", "name": "Omen of Clarity", "spellId": 16864, "icon": "spell_nature_crystalball", "index": 100}]}, {"id": 82085, "name": "Coiled to Spring", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82124], "entries": [{"id": 103144, "definitionId": 108149, "maxRanks": 1, "type": "passive", "name": "Coiled to Spring", "spellId": 449537, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 82120, "name": "Primal Wrath", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82122, 82086, 82119], "prev": [82124], "entries": [{"id": 103184, "definitionId": 108189, "maxRanks": 1, "type": "active", "name": "Primal Wrath", "spellId": 285381, "icon": "artifactability_feraldruid_ashamanesbite", "index": 100}]}, {"id": 82098, "name": "Merciless Claws / Thrashing Claws", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82102], "prev": [82123], "entries": [{"id": 103159, "definitionId": 108164, "maxRanks": 1, "type": "passive", "name": "Merciless Claws", "spellId": 231063, "icon": "inv_misc_monsterclaw_03", "index": 100}, {"id": 114823, "definitionId": 119830, "maxRanks": 1, "type": "passive", "name": "Thrashing Claws", "spellId": 405300, "icon": "spell_druid_thrash", "index": 200}]}, {"id": 82122, "name": "Predator", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82102, 82121, 82119], "prev": [82123, 82120], "entries": [{"id": 103186, "definitionId": 108191, "maxRanks": 1, "type": "passive", "name": "Predator", "spellId": 202021, "icon": "ability_hunter_catlikereflexes", "index": 100}]}, {"id": 82086, "name": "Double-Clawed Rake", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82119], "prev": [82120], "entries": [{"id": 103145, "definitionId": 108150, "maxRanks": 1, "type": "passive", "name": "Double-Clawed Rake", "spellId": 391700, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82102, "name": "Sabertooth", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82104, 82099, 82116], "prev": [82098, 82122, 82123], "entries": [{"id": 103163, "definitionId": 108168, "maxRanks": 1, "type": "passive", "name": "Sabertooth", "spellId": 202031, "icon": "inv_misc_monsterfang_01", "index": 100}]}, {"id": 82121, "name": "Tireless Energy", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 2, "next": [], "prev": [82122], "entries": [{"id": 103185, "definitionId": 108190, "maxRanks": 2, "type": "passive", "name": "Tireless Energy", "spellId": 383352, "icon": "spell_chargepositive", "index": 100}]}, {"id": 82119, "name": "Pouncing Strikes", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82116, 82103, 82118], "prev": [82086, 82122, 82120], "entries": [{"id": 103183, "definitionId": 108188, "maxRanks": 1, "type": "passive", "name": "Pouncing Strikes", "spellId": 390772, "icon": "ability_druid_prowl", "index": 100}]}, {"id": 82104, "name": "Sudden Ambush", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [92641, 82106], "prev": [82102], "entries": [{"id": 103165, "definitionId": 108170, "maxRanks": 1, "type": "passive", "name": "Sudden Ambush", "spellId": 384667, "icon": "ability_hunter_catlikereflexes", "index": 100}]}, {"id": 82099, "name": "Savage Fury", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82106], "prev": [82102], "entries": [{"id": 103160, "definitionId": 108165, "maxRanks": 1, "type": "passive", "name": "Savage Fury", "spellId": 449645, "icon": "ability_druid_kingofthejungle", "index": 100}]}, {"id": 82116, "name": "Survival Instincts", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82101], "prev": [82119, 82102], "entries": [{"id": 103180, "definitionId": 108185, "maxRanks": 1, "type": "active", "name": "Survival Instincts", "spellId": 61336, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82103, "name": "Rampant Ferocity", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82117], "prev": [82119], "entries": [{"id": 103164, "definitionId": 108169, "maxRanks": 1, "type": "passive", "name": "Rampant Ferocity", "spellId": 391709, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 82118, "name": "Infected Wounds", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82117, 82088], "prev": [82119], "entries": [{"id": 103182, "definitionId": 108187, "maxRanks": 1, "type": "passive", "name": "Infected Wounds", "spellId": 48484, "icon": "ability_druid_infectedwound", "index": 100}]}, {"id": 92641, "name": "Lunar Inspiration", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82104], "entries": [{"id": 114771, "definitionId": 119778, "maxRanks": 1, "type": "passive", "name": "Lunar Inspiration", "spellId": 155580, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 82106, "name": "Predatory Swiftness", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82107, 82110], "prev": [82104, 82099], "entries": [{"id": 103167, "definitionId": 108172, "maxRanks": 1, "type": "passive", "name": "Predatory Swiftness", "spellId": 16974, "icon": "ability_hunter_pet_cat", "index": 100}]}, {"id": 82101, "name": "Berserk", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82105, 82100, 82090], "prev": [82116], "entries": [{"id": 103162, "definitionId": 108167, "maxRanks": 1, "type": "active", "name": "Berserk", "spellId": 343223, "visibleSpellId": 106951, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82117, "name": "Dreadful Bleeding", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82091, 82094], "prev": [82118, 82103], "entries": [{"id": 103181, "definitionId": 108186, "maxRanks": 1, "type": "passive", "name": "Dreadful Bleeding", "spellId": 391045, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82088, "name": "Taste for Blood", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82118], "entries": [{"id": 103147, "definitionId": 108152, "maxRanks": 1, "type": "passive", "name": "Taste for Blood", "spellId": 384665, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 82107, "name": "Raging Fury / Tiger's Tenacity", "type": "choice", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82110, 82109], "prev": [82106], "entries": [{"id": 103169, "definitionId": 108174, "maxRanks": 1, "type": "passive", "name": "Raging Fury", "spellId": 391078, "icon": "ability_druid_predatoryinstincts", "index": 100}, {"id": 103168, "definitionId": 108173, "maxRanks": 1, "type": "passive", "name": "Tiger's Tenacity", "spellId": 391872, "icon": "ability_druid_healinginstincts", "index": 200}]}, {"id": 82105, "name": "Berserk: Heart of the Lion", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103166, "definitionId": 108171, "maxRanks": 1, "type": "passive", "name": "Berserk: Heart of the Lion", "spellId": 391174, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82100, "name": "Moment of Clarity", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103161, "definitionId": 108166, "maxRanks": 1, "type": "passive", "name": "Moment of Clarity", "spellId": 236068, "icon": "spell_druid_momentofclarity", "index": 100}]}, {"id": 82090, "name": "Berserk: Frenzy", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103149, "definitionId": 108154, "maxRanks": 1, "type": "passive", "name": "Berserk: Frenzy", "spellId": 384668, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82091, "name": "Wild Slashes / Brutal Slash", "type": "choice", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82094, 82093], "prev": [82117], "entries": [{"id": 103150, "definitionId": 108155, "maxRanks": 1, "type": "passive", "name": "Wild Slashes", "spellId": 390864, "icon": "ability_xavius_tormentingswipe", "index": 100}, {"id": 103151, "definitionId": 108156, "maxRanks": 1, "type": "active", "name": "Brutal Slash", "spellId": 202028, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 82110, "name": "Carnivorous Instinct", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82112, 82109, 82108], "prev": [82107, 82106], "entries": [{"id": 103173, "definitionId": 108178, "maxRanks": 2, "type": "passive", "name": "Carnivorous Instinct", "spellId": 390902, "icon": "ability_mount_jungletiger", "index": 100}]}, {"id": 82115, "name": "Frantic Momentum", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82112, 82114, 82096], "prev": [82090, 82100, 82105], "entries": [{"id": 103179, "definitionId": 108184, "maxRanks": 2, "type": "passive", "name": "Frantic Momentum", "spellId": 391875, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 82094, "name": "Saber Jaws", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82096, 82093, 82092], "prev": [82091, 82117], "entries": [{"id": 103155, "definitionId": 108160, "maxRanks": 2, "type": "passive", "name": "Saber Jaws", "spellId": 421432, "icon": "inv_misc_monsterfang_02", "index": 100}]}, {"id": 82109, "name": "Lion's Strength / Bloodtalons", "type": "choice", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82108], "prev": [82110, 82107], "entries": [{"id": 103172, "definitionId": 108177, "maxRanks": 1, "type": "passive", "name": "Lion's Strength", "spellId": 391972, "icon": "ability_hunter_masterscall", "index": 100}, {"id": 103171, "definitionId": 108176, "maxRanks": 1, "type": "passive", "name": "Bloodtalons", "spellId": 319439, "icon": "spell_druid_bloodythrash", "index": 200}]}, {"id": 82112, "name": "Adaptive Swarm", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82111], "prev": [82110, 82115], "entries": [{"id": 103175, "definitionId": 108180, "maxRanks": 1, "type": "active", "name": "Adaptive Swarm", "spellId": 391888, "icon": "ability_maldraxxus_druid", "index": 100}]}, {"id": 82114, "name": "Incarnation: Avatar of Ashamane / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82113], "prev": [82115], "entries": [{"id": 103178, "definitionId": 108183, "maxRanks": 1, "type": "active", "name": "Incarnation: Avatar of Ashamane", "spellId": 102543, "icon": "spell_druid_incarnation", "index": 100}, {"id": 103177, "definitionId": 108182, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "ability_ardenweald_druid", "index": 200}]}, {"id": 82096, "name": "Soul of the Forest", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82095], "prev": [82094, 82115], "entries": [{"id": 103157, "definitionId": 108162, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158476, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 82093, "name": "Veinripper / Rip and Tear", "type": "choice", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82092], "prev": [82091, 82094], "entries": [{"id": 103154, "definitionId": 108159, "maxRanks": 1, "type": "passive", "name": "Veinripper", "spellId": 391978, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}, {"id": 103153, "definitionId": 108158, "maxRanks": 1, "type": "passive", "name": "Rip and Tear", "spellId": 391347, "icon": "ability_ghoulfrenzy", "index": 200}]}, {"id": 82108, "name": "Feral Frenzy", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82109, 82110], "entries": [{"id": 103170, "definitionId": 108175, "maxRanks": 1, "type": "active", "name": "Feral Frenzy", "spellId": 274837, "icon": "ability_druid_rake", "index": 100}]}, {"id": 82111, "name": "Unbridled Swarm", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82112], "entries": [{"id": 103174, "definitionId": 108179, "maxRanks": 1, "type": "passive", "name": "Unbridled Swarm", "spellId": 391951, "icon": "ability_maldraxxus_druid", "index": 100}]}, {"id": 82113, "name": "Ashamane's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82114], "entries": [{"id": 103176, "definitionId": 108181, "maxRanks": 1, "type": "passive", "name": "Ashamane's Guidance", "spellId": 391548, "icon": "spell_druid_incarnation", "index": 100}]}, {"id": 82095, "name": "Circle of Life and Death", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82096], "entries": [{"id": 103156, "definitionId": 108161, "maxRanks": 1, "type": "passive", "name": "Circle of Life and Death", "spellId": 400320, "icon": "ability_druid_cyclone", "index": 100}]}, {"id": 82092, "name": "Apex Predator's Craving", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82093, 82094], "entries": [{"id": 103152, "definitionId": 108157, "maxRanks": 1, "type": "passive", "name": "Apex Predator's Craving", "spellId": 391881, "icon": "ability_druid_primaltenacity", "index": 100}]}], "heroNodes": [{"id": 94626, "name": "Thriving Growth", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 22, "next": [94629, 94621, 94623], "prev": [], "entries": [{"id": 117226, "definitionId": 122238, "maxRanks": 1, "type": "passive", "name": "Thriving Growth", "spellId": 439528, "icon": "inv_ability_wildstalkerdruid_thrivinggrowth", "index": 100}], "freeNode": true}, {"id": 94629, "name": "Hunt Beneath the Open Skies", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94624], "prev": [94626], "entries": [{"id": 117231, "definitionId": 122243, "maxRanks": 1, "type": "passive", "name": "Hunt Beneath the Open Skies", "spellId": 439868, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 94623, "name": "Strategic Infusion", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94622], "prev": [94626], "entries": [{"id": 117223, "definitionId": 122235, "maxRanks": 1, "type": "passive", "name": "Strategic Infusion", "spellId": 439890, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 94621, "name": "Wildstalker's Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94625], "prev": [94626], "entries": [{"id": 117221, "definitionId": 122233, "maxRanks": 1, "type": "passive", "name": "Wildstalker's Power", "spellId": 439926, "icon": "ability_druid_skinteeth", "index": 100}]}, {"id": 94624, "name": "Lethal Preservation", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94631], "prev": [94629], "entries": [{"id": 117224, "definitionId": 122236, "maxRanks": 1, "type": "passive", "name": "Lethal Preservation", "spellId": 455461, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 94622, "name": "Entangling Vortex / Flower Walk", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94630], "prev": [94623], "entries": [{"id": 117222, "definitionId": 122234, "maxRanks": 1, "type": "passive", "name": "Entangling Vortex", "spellId": 439895, "icon": "spell_druid_ursolsvortex", "index": 100}, {"id": 119855, "definitionId": 124755, "maxRanks": 1, "type": "passive", "name": "Flower Walk", "spellId": 439901, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94625, "name": "Bond with Nature / Harmonious Constitution", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94628], "prev": [94621], "entries": [{"id": 117225, "definitionId": 122237, "maxRanks": 1, "type": "passive", "name": "Bond with Nature", "spellId": 439929, "icon": "inv_misc_marrigolds_01", "index": 100}, {"id": 119854, "definitionId": 124754, "maxRanks": 1, "type": "passive", "name": "Harmonious Constitution", "spellId": 440116, "icon": "talentspec_druid_restoration", "index": 200}]}, {"id": 94631, "name": "Resilient Flourishing / Root Network", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94624], "entries": [{"id": 117234, "definitionId": 122246, "maxRanks": 1, "type": "passive", "name": "Resilient Flourishing", "spellId": 439880, "icon": "inv_misc_herb_16", "index": 100}, {"id": 117233, "definitionId": 122245, "maxRanks": 1, "type": "passive", "name": "Root Network", "spellId": 439882, "icon": "ability_creature_poison_04", "index": 200}]}, {"id": 94630, "name": "Bursting Growth", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94622], "entries": [{"id": 117232, "definitionId": 122244, "maxRanks": 1, "type": "passive", "name": "Bursting Growth", "spellId": 440120, "icon": "inv_collections_armor_flowerbracelet_b_01", "index": 100}]}, {"id": 94628, "name": "Twin Sprouts / Implant", "type": "choice", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94625], "entries": [{"id": 117230, "definitionId": 122242, "maxRanks": 1, "type": "passive", "name": "Twin Sprouts", "spellId": 440117, "icon": "inv_misc_herb_evergreenmoss", "index": 100}, {"id": 117229, "definitionId": 122241, "maxRanks": 1, "type": "passive", "name": "Implant", "spellId": 440118, "icon": "ability_creature_poison_03", "index": 200}]}, {"id": 94627, "name": "Vigorous Creepers", "type": "single", "posX": 15290, "posY": 3900, "maxRanks": 1, "subTreeId": 22, "next": [], "prev": [94630, 94628, 94631], "entries": [{"id": 117227, "definitionId": 122239, "maxRanks": 1, "type": "passive", "name": "Vigorous Creepers", "spellId": 440119, "icon": "spell_druid_massentanglement", "index": 200}]}, {"id": 94609, "name": "Ravage", "type": "single", "posX": 1200, "posY": 5110, "maxRanks": 1, "entryNode": true, "subTreeId": 21, "next": [94620, 94611, 94618], "prev": [], "entries": [{"id": 117206, "definitionId": 122218, "maxRanks": 1, "type": "passive", "name": "Ravage", "spellId": 441583, "icon": "inv_ability_druidoftheclawdruid_ravage", "index": 100}], "freeNode": true}, {"id": 94618, "name": "Fount of Strength", "type": "single", "posX": 600, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94610], "prev": [94609], "entries": [{"id": 117218, "definitionId": 122230, "maxRanks": 1, "type": "passive", "name": "Fount of Strength", "spellId": 441675, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 94620, "name": "Dreadful Wound", "type": "single", "posX": 1200, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94619], "prev": [94609], "entries": [{"id": 117220, "definitionId": 122232, "maxRanks": 1, "type": "passive", "name": "Dreadful Wound", "spellId": 441809, "icon": "artifactability_feraldruid_openwounds", "index": 100}]}, {"id": 94611, "name": "Bestial Strength", "type": "single", "posX": 1800, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94615], "prev": [94609], "entries": [{"id": 117208, "definitionId": 122220, "maxRanks": 1, "type": "passive", "name": "Bestial Strength", "spellId": 441841, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 94610, "name": "Wildshape Mastery", "type": "single", "posX": 600, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94612], "prev": [94618], "entries": [{"id": 117207, "definitionId": 122219, "maxRanks": 1, "type": "passive", "name": "Wildshape Mastery", "spellId": 441678, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 94619, "name": "Ruthless Aggression / Killing Strikes", "type": "choice", "posX": 1200, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94616], "prev": [94620], "entries": [{"id": 117219, "definitionId": 122231, "maxRanks": 1, "type": "passive", "name": "Ruthless Aggression", "spellId": 441814, "icon": "ability_druid_rake", "index": 100}, {"id": 123048, "definitionId": 127929, "maxRanks": 1, "type": "passive", "name": "Killing Strikes", "spellId": 441824, "icon": "ability_druid_kingofthejungle", "index": 200}]}, {"id": 94615, "name": "Pack's Endurance", "type": "single", "posX": 1800, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "requiresNode": 82234, "next": [94614], "prev": [94611], "entries": [{"id": 117215, "definitionId": 122227, "maxRanks": 1, "type": "passive", "name": "Pack's Endurance", "spellId": 441844, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 94612, "name": "Empowered Shapeshifting / Wildpower Surge", "type": "choice", "posX": 600, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94610], "entries": [{"id": 117210, "definitionId": 122222, "maxRanks": 1, "type": "passive", "name": "Empowered Shapeshifting", "spellId": 441689, "icon": "spell_druid_primaltenacity", "index": 100}, {"id": 117209, "definitionId": 122221, "maxRanks": 1, "type": "passive", "name": "Wildpower Surge", "spellId": 441691, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 94616, "name": "Aggravate Wounds", "type": "single", "posX": 1200, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94619], "entries": [{"id": 117216, "definitionId": 122228, "maxRanks": 1, "type": "passive", "name": "Aggravate Wounds", "spellId": 441829, "icon": "artifactability_guardiandruid_goryfur", "index": 100}]}, {"id": 94614, "name": "Strike for the Heart / Tear Down the Mighty", "type": "choice", "posX": 1800, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94615], "entries": [{"id": 117214, "definitionId": 122226, "maxRanks": 1, "type": "passive", "name": "Strike for the Heart", "spellId": 441845, "icon": "ability_druid_primalagression", "index": 100}, {"id": 117213, "definitionId": 122225, "maxRanks": 1, "type": "passive", "name": "Tear Down the Mighty", "spellId": 441846, "icon": "spell_druid_malfurionstenacity", "index": 200}]}, {"id": 94613, "name": "Claw Rampage", "type": "single", "posX": 1200, "posY": 7510, "maxRanks": 1, "subTreeId": 21, "next": [], "prev": [94614, 94616, 94612], "entries": [{"id": 117211, "definitionId": 122223, "maxRanks": 1, "type": "passive", "name": "Claw Rampage", "spellId": 441835, "icon": "ability_xavius_tormentingswipe", "index": 200}]}], "subTreeNodes": [{"id": 99805, "name": "Druid of the Claw / Wildstalker", "type": "subtree", "posX": 8100, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123297, "type": "subtree", "name": "Druid of the Claw", "traitSubTreeId": 21, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-druidoftheclaw", "nodes": [94609, 94618, 94620, 94611, 94610, 94619, 94615, 94612, 94616, 94614, 94613]}, {"id": 123296, "type": "subtree", "name": "Wildstalker", "traitSubTreeId": 22, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-wildstalker", "nodes": [94626, 94629, 94623, 94621, 94624, 94622, 94625, 94631, 94630, 94628, 94627]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82084, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100222, 100223]} \ No newline at end of file +{"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Feral", "specId": 103, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}], "freeNode": true}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82204, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 91044, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112967, "definitionId": 117972, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82204, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103282, "definitionId": 108287, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91044], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}], "freeNode": true}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91044], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82204, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82124, "name": "Tiger's Fury", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82123, 82085, 82120], "prev": [], "entries": [{"id": 103188, "definitionId": 108193, "maxRanks": 1, "type": "active", "name": "Tiger's Fury", "spellId": 5217, "icon": "ability_mount_jungletiger", "index": 100}]}, {"id": 82123, "name": "Omen of Clarity", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [82098, 82122, 82102], "prev": [82124], "entries": [{"id": 103187, "definitionId": 108192, "maxRanks": 1, "type": "passive", "name": "Omen of Clarity", "spellId": 16864, "icon": "spell_nature_crystalball", "index": 100}]}, {"id": 82085, "name": "Coiled to Spring", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82124], "entries": [{"id": 103144, "definitionId": 108149, "maxRanks": 1, "type": "passive", "name": "Coiled to Spring", "spellId": 449537, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 82120, "name": "Primal Wrath", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82122, 82086, 82119], "prev": [82124], "entries": [{"id": 103184, "definitionId": 108189, "maxRanks": 1, "type": "active", "name": "Primal Wrath", "spellId": 285381, "icon": "artifactability_feraldruid_ashamanesbite", "index": 100}]}, {"id": 82098, "name": "Merciless Claws / Thrashing Claws", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82102], "prev": [82123], "entries": [{"id": 103159, "definitionId": 108164, "maxRanks": 1, "type": "passive", "name": "Merciless Claws", "spellId": 231063, "icon": "inv_misc_monsterclaw_03", "index": 100}, {"id": 114823, "definitionId": 119830, "maxRanks": 1, "type": "passive", "name": "Thrashing Claws", "spellId": 405300, "icon": "spell_druid_thrash", "index": 200}]}, {"id": 82122, "name": "Predator", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82102, 82121, 82119], "prev": [82123, 82120], "entries": [{"id": 103186, "definitionId": 108191, "maxRanks": 1, "type": "passive", "name": "Predator", "spellId": 202021, "icon": "ability_hunter_catlikereflexes", "index": 100}]}, {"id": 82086, "name": "Double-Clawed Rake", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82119], "prev": [82120], "entries": [{"id": 103145, "definitionId": 108150, "maxRanks": 1, "type": "passive", "name": "Double-Clawed Rake", "spellId": 391700, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82102, "name": "Sabertooth", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82104, 82099, 82116], "prev": [82098, 82122, 82123], "entries": [{"id": 103163, "definitionId": 108168, "maxRanks": 1, "type": "passive", "name": "Sabertooth", "spellId": 202031, "icon": "inv_misc_monsterfang_01", "index": 100}]}, {"id": 82121, "name": "Tireless Energy", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 2, "next": [], "prev": [82122], "entries": [{"id": 103185, "definitionId": 108190, "maxRanks": 2, "type": "passive", "name": "Tireless Energy", "spellId": 383352, "icon": "spell_chargepositive", "index": 100}]}, {"id": 82119, "name": "Pouncing Strikes", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82116, 82103, 82118], "prev": [82086, 82122, 82120], "entries": [{"id": 103183, "definitionId": 108188, "maxRanks": 1, "type": "passive", "name": "Pouncing Strikes", "spellId": 390772, "icon": "ability_druid_prowl", "index": 100}]}, {"id": 82104, "name": "Sudden Ambush", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [92641, 82106], "prev": [82102], "entries": [{"id": 103165, "definitionId": 108170, "maxRanks": 1, "type": "passive", "name": "Sudden Ambush", "spellId": 384667, "icon": "ability_hunter_catlikereflexes", "index": 100}]}, {"id": 82099, "name": "Savage Fury", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82106], "prev": [82102], "entries": [{"id": 103160, "definitionId": 108165, "maxRanks": 1, "type": "passive", "name": "Savage Fury", "spellId": 449645, "icon": "ability_druid_kingofthejungle", "index": 100}]}, {"id": 82116, "name": "Survival Instincts", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82101], "prev": [82119, 82102], "entries": [{"id": 103180, "definitionId": 108185, "maxRanks": 1, "type": "active", "name": "Survival Instincts", "spellId": 61336, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82103, "name": "Rampant Ferocity", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82117], "prev": [82119], "entries": [{"id": 103164, "definitionId": 108169, "maxRanks": 1, "type": "passive", "name": "Rampant Ferocity", "spellId": 391709, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 82118, "name": "Infected Wounds", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82117, 82088], "prev": [82119], "entries": [{"id": 103182, "definitionId": 108187, "maxRanks": 1, "type": "passive", "name": "Infected Wounds", "spellId": 48484, "icon": "ability_druid_infectedwound", "index": 100}]}, {"id": 92641, "name": "Lunar Inspiration", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82104], "entries": [{"id": 114771, "definitionId": 119778, "maxRanks": 1, "type": "passive", "name": "Lunar Inspiration", "spellId": 155580, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 82106, "name": "Predatory Swiftness", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82107, 82110], "prev": [82104, 82099], "entries": [{"id": 103167, "definitionId": 108172, "maxRanks": 1, "type": "passive", "name": "Predatory Swiftness", "spellId": 16974, "icon": "ability_hunter_pet_cat", "index": 100}]}, {"id": 82101, "name": "Berserk", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82105, 82100, 82090], "prev": [82116], "entries": [{"id": 103162, "definitionId": 108167, "maxRanks": 1, "type": "active", "name": "Berserk", "spellId": 343223, "visibleSpellId": 106951, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82117, "name": "Dreadful Bleeding", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82091, 82094], "prev": [82118, 82103], "entries": [{"id": 103181, "definitionId": 108186, "maxRanks": 1, "type": "passive", "name": "Dreadful Bleeding", "spellId": 391045, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82088, "name": "Taste for Blood", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82118], "entries": [{"id": 103147, "definitionId": 108152, "maxRanks": 1, "type": "passive", "name": "Taste for Blood", "spellId": 384665, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 82107, "name": "Raging Fury / Tiger's Tenacity", "type": "choice", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82110, 82109], "prev": [82106], "entries": [{"id": 103169, "definitionId": 108174, "maxRanks": 1, "type": "passive", "name": "Raging Fury", "spellId": 391078, "icon": "ability_druid_predatoryinstincts", "index": 100}, {"id": 103168, "definitionId": 108173, "maxRanks": 1, "type": "passive", "name": "Tiger's Tenacity", "spellId": 391872, "icon": "ability_druid_healinginstincts", "index": 200}]}, {"id": 82105, "name": "Berserk: Heart of the Lion", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103166, "definitionId": 108171, "maxRanks": 1, "type": "passive", "name": "Berserk: Heart of the Lion", "spellId": 391174, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82100, "name": "Moment of Clarity", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103161, "definitionId": 108166, "maxRanks": 1, "type": "passive", "name": "Moment of Clarity", "spellId": 236068, "icon": "spell_druid_momentofclarity", "index": 100}]}, {"id": 82090, "name": "Berserk: Frenzy", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103149, "definitionId": 108154, "maxRanks": 1, "type": "passive", "name": "Berserk: Frenzy", "spellId": 384668, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82091, "name": "Wild Slashes / Brutal Slash", "type": "choice", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82094, 82093], "prev": [82117], "entries": [{"id": 103150, "definitionId": 108155, "maxRanks": 1, "type": "passive", "name": "Wild Slashes", "spellId": 390864, "icon": "ability_xavius_tormentingswipe", "index": 100}, {"id": 103151, "definitionId": 108156, "maxRanks": 1, "type": "active", "name": "Brutal Slash", "spellId": 202028, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 82110, "name": "Carnivorous Instinct", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82112, 82109, 82108], "prev": [82107, 82106], "entries": [{"id": 103173, "definitionId": 108178, "maxRanks": 2, "type": "passive", "name": "Carnivorous Instinct", "spellId": 390902, "icon": "ability_mount_jungletiger", "index": 100}]}, {"id": 82115, "name": "Frantic Momentum", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82112, 82114, 82096], "prev": [82090, 82100, 82105], "entries": [{"id": 103179, "definitionId": 108184, "maxRanks": 2, "type": "passive", "name": "Frantic Momentum", "spellId": 391875, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 82094, "name": "Saber Jaws", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82096, 82093, 82092], "prev": [82091, 82117], "entries": [{"id": 103155, "definitionId": 108160, "maxRanks": 2, "type": "passive", "name": "Saber Jaws", "spellId": 421432, "icon": "inv_misc_monsterfang_02", "index": 100}]}, {"id": 82109, "name": "Lion's Strength / Bloodtalons", "type": "choice", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82108], "prev": [82110, 82107], "entries": [{"id": 103172, "definitionId": 108177, "maxRanks": 1, "type": "passive", "name": "Lion's Strength", "spellId": 391972, "icon": "ability_hunter_masterscall", "index": 100}, {"id": 103171, "definitionId": 108176, "maxRanks": 1, "type": "passive", "name": "Bloodtalons", "spellId": 319439, "icon": "spell_druid_bloodythrash", "index": 200}]}, {"id": 82112, "name": "Adaptive Swarm", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82111], "prev": [82110, 82115], "entries": [{"id": 103175, "definitionId": 108180, "maxRanks": 1, "type": "active", "name": "Adaptive Swarm", "spellId": 391888, "icon": "inv_ability_druid_adaptiveswarm", "index": 100}]}, {"id": 82114, "name": "Incarnation: Avatar of Ashamane / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82113], "prev": [82115], "entries": [{"id": 103178, "definitionId": 108183, "maxRanks": 1, "type": "active", "name": "Incarnation: Avatar of Ashamane", "spellId": 102543, "icon": "spell_druid_incarnation", "index": 100}, {"id": 103177, "definitionId": 108182, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "inv_ability_druid_convokethespirits", "index": 200}]}, {"id": 82096, "name": "Soul of the Forest", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82095], "prev": [82094, 82115], "entries": [{"id": 103157, "definitionId": 108162, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158476, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 82093, "name": "Veinripper / Rip and Tear", "type": "choice", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82092], "prev": [82091, 82094], "entries": [{"id": 103154, "definitionId": 108159, "maxRanks": 1, "type": "passive", "name": "Veinripper", "spellId": 391978, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}, {"id": 103153, "definitionId": 108158, "maxRanks": 1, "type": "passive", "name": "Rip and Tear", "spellId": 391347, "icon": "ability_ghoulfrenzy", "index": 200}]}, {"id": 82108, "name": "Feral Frenzy", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82109, 82110], "entries": [{"id": 103170, "definitionId": 108175, "maxRanks": 1, "type": "active", "name": "Feral Frenzy", "spellId": 274837, "icon": "ability_druid_rake", "index": 100}]}, {"id": 82111, "name": "Unbridled Swarm", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82112], "entries": [{"id": 103174, "definitionId": 108179, "maxRanks": 1, "type": "passive", "name": "Unbridled Swarm", "spellId": 391951, "icon": "inv_ability_druid_adaptiveswarm", "index": 100}]}, {"id": 82113, "name": "Ashamane's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82114], "entries": [{"id": 103176, "definitionId": 108181, "maxRanks": 1, "type": "passive", "name": "Ashamane's Guidance", "spellId": 391548, "icon": "spell_druid_incarnation", "index": 100}]}, {"id": 82095, "name": "Circle of Life and Death", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82096], "entries": [{"id": 103156, "definitionId": 108161, "maxRanks": 1, "type": "passive", "name": "Circle of Life and Death", "spellId": 400320, "icon": "ability_druid_cyclone", "index": 100}]}, {"id": 82092, "name": "Apex Predator's Craving", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82093, 82094], "entries": [{"id": 103152, "definitionId": 108157, "maxRanks": 1, "type": "passive", "name": "Apex Predator's Craving", "spellId": 391881, "icon": "ability_druid_primaltenacity", "index": 100}]}], "heroNodes": [{"id": 94626, "name": "Thriving Growth", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 22, "next": [94629, 94621, 94623], "prev": [], "entries": [{"id": 117226, "definitionId": 122238, "maxRanks": 1, "type": "passive", "name": "Thriving Growth", "spellId": 439528, "icon": "inv_ability_wildstalkerdruid_thrivinggrowth", "index": 100}], "freeNode": true}, {"id": 94629, "name": "Hunt Beneath the Open Skies", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94624], "prev": [94626], "entries": [{"id": 117231, "definitionId": 122243, "maxRanks": 1, "type": "passive", "name": "Hunt Beneath the Open Skies", "spellId": 439868, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 94623, "name": "Strategic Infusion", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94622], "prev": [94626], "entries": [{"id": 117223, "definitionId": 122235, "maxRanks": 1, "type": "passive", "name": "Strategic Infusion", "spellId": 439890, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 94621, "name": "Wildstalker's Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94625], "prev": [94626], "entries": [{"id": 117221, "definitionId": 122233, "maxRanks": 1, "type": "passive", "name": "Wildstalker's Power", "spellId": 439926, "icon": "ability_druid_skinteeth", "index": 100}]}, {"id": 94624, "name": "Lethal Preservation", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94631], "prev": [94629], "entries": [{"id": 117224, "definitionId": 122236, "maxRanks": 1, "type": "passive", "name": "Lethal Preservation", "spellId": 455461, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 94622, "name": "Entangling Vortex / Flower Walk", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94630], "prev": [94623], "entries": [{"id": 117222, "definitionId": 122234, "maxRanks": 1, "type": "passive", "name": "Entangling Vortex", "spellId": 439895, "icon": "spell_druid_ursolsvortex", "index": 100}, {"id": 119855, "definitionId": 124755, "maxRanks": 1, "type": "passive", "name": "Flower Walk", "spellId": 439901, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94625, "name": "Bond with Nature / Harmonious Constitution", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94628], "prev": [94621], "entries": [{"id": 117225, "definitionId": 122237, "maxRanks": 1, "type": "passive", "name": "Bond with Nature", "spellId": 439929, "icon": "inv_misc_marrigolds_01", "index": 100}, {"id": 119854, "definitionId": 124754, "maxRanks": 1, "type": "passive", "name": "Harmonious Constitution", "spellId": 440116, "icon": "talentspec_druid_restoration", "index": 200}]}, {"id": 94631, "name": "Resilient Flourishing / Root Network", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94624], "entries": [{"id": 117234, "definitionId": 122246, "maxRanks": 1, "type": "passive", "name": "Resilient Flourishing", "spellId": 439880, "icon": "inv_misc_herb_16", "index": 100}, {"id": 117233, "definitionId": 122245, "maxRanks": 1, "type": "passive", "name": "Root Network", "spellId": 439882, "icon": "ability_creature_poison_04", "index": 200}]}, {"id": 94630, "name": "Bursting Growth", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94622], "entries": [{"id": 117232, "definitionId": 122244, "maxRanks": 1, "type": "passive", "name": "Bursting Growth", "spellId": 440120, "icon": "inv_collections_armor_flowerbracelet_b_01", "index": 100}]}, {"id": 94628, "name": "Twin Sprouts / Implant", "type": "choice", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94625], "entries": [{"id": 117230, "definitionId": 122242, "maxRanks": 1, "type": "passive", "name": "Twin Sprouts", "spellId": 440117, "icon": "inv_misc_herb_evergreenmoss", "index": 100}, {"id": 117229, "definitionId": 122241, "maxRanks": 1, "type": "passive", "name": "Implant", "spellId": 440118, "icon": "ability_creature_poison_03", "index": 200}]}, {"id": 94627, "name": "Vigorous Creepers", "type": "single", "posX": 15290, "posY": 3900, "maxRanks": 1, "subTreeId": 22, "next": [], "prev": [94630, 94628, 94631], "entries": [{"id": 117227, "definitionId": 122239, "maxRanks": 1, "type": "passive", "name": "Vigorous Creepers", "spellId": 440119, "icon": "spell_druid_massentanglement", "index": 200}]}, {"id": 94609, "name": "Ravage", "type": "single", "posX": 1200, "posY": 5110, "maxRanks": 1, "entryNode": true, "subTreeId": 21, "next": [94620, 94611, 94618], "prev": [], "entries": [{"id": 117206, "definitionId": 122218, "maxRanks": 1, "type": "passive", "name": "Ravage", "spellId": 441583, "icon": "inv_ability_druidoftheclawdruid_ravage", "index": 100}], "freeNode": true}, {"id": 94618, "name": "Fount of Strength", "type": "single", "posX": 600, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94610], "prev": [94609], "entries": [{"id": 117218, "definitionId": 122230, "maxRanks": 1, "type": "passive", "name": "Fount of Strength", "spellId": 441675, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 94620, "name": "Dreadful Wound", "type": "single", "posX": 1200, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94619], "prev": [94609], "entries": [{"id": 117220, "definitionId": 122232, "maxRanks": 1, "type": "passive", "name": "Dreadful Wound", "spellId": 441809, "icon": "artifactability_feraldruid_openwounds", "index": 100}]}, {"id": 94611, "name": "Bestial Strength", "type": "single", "posX": 1800, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94615], "prev": [94609], "entries": [{"id": 117208, "definitionId": 122220, "maxRanks": 1, "type": "passive", "name": "Bestial Strength", "spellId": 441841, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 94610, "name": "Wildshape Mastery", "type": "single", "posX": 600, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94612], "prev": [94618], "entries": [{"id": 117207, "definitionId": 122219, "maxRanks": 1, "type": "passive", "name": "Wildshape Mastery", "spellId": 441678, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 94619, "name": "Ruthless Aggression / Killing Strikes", "type": "choice", "posX": 1200, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94616], "prev": [94620], "entries": [{"id": 117219, "definitionId": 122231, "maxRanks": 1, "type": "passive", "name": "Ruthless Aggression", "spellId": 441814, "icon": "ability_druid_rake", "index": 100}, {"id": 123048, "definitionId": 127929, "maxRanks": 1, "type": "passive", "name": "Killing Strikes", "spellId": 441824, "icon": "ability_druid_kingofthejungle", "index": 200}]}, {"id": 94615, "name": "Pack's Endurance", "type": "single", "posX": 1800, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "requiresNode": 82234, "next": [94614], "prev": [94611], "entries": [{"id": 117215, "definitionId": 122227, "maxRanks": 1, "type": "passive", "name": "Pack's Endurance", "spellId": 441844, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 94612, "name": "Empowered Shapeshifting / Wildpower Surge", "type": "choice", "posX": 600, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94610], "entries": [{"id": 117210, "definitionId": 122222, "maxRanks": 1, "type": "passive", "name": "Empowered Shapeshifting", "spellId": 441689, "icon": "spell_druid_primaltenacity", "index": 100}, {"id": 117209, "definitionId": 122221, "maxRanks": 1, "type": "passive", "name": "Wildpower Surge", "spellId": 441691, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 94616, "name": "Aggravate Wounds", "type": "single", "posX": 1200, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94619], "entries": [{"id": 117216, "definitionId": 122228, "maxRanks": 1, "type": "passive", "name": "Aggravate Wounds", "spellId": 441829, "icon": "artifactability_guardiandruid_goryfur", "index": 100}]}, {"id": 94614, "name": "Strike for the Heart / Tear Down the Mighty", "type": "choice", "posX": 1800, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94615], "entries": [{"id": 117214, "definitionId": 122226, "maxRanks": 1, "type": "passive", "name": "Strike for the Heart", "spellId": 441845, "icon": "ability_druid_primalagression", "index": 100}, {"id": 117213, "definitionId": 122225, "maxRanks": 1, "type": "passive", "name": "Tear Down the Mighty", "spellId": 441846, "icon": "spell_druid_malfurionstenacity", "index": 200}]}, {"id": 94613, "name": "Claw Rampage", "type": "single", "posX": 1200, "posY": 7510, "maxRanks": 1, "subTreeId": 21, "next": [], "prev": [94614, 94616, 94612], "entries": [{"id": 117211, "definitionId": 122223, "maxRanks": 1, "type": "passive", "name": "Claw Rampage", "spellId": 441835, "icon": "ability_xavius_tormentingswipe", "index": 200}]}], "subTreeNodes": [{"id": 99805, "name": "Druid of the Claw / Wildstalker", "type": "subtree", "posX": 8100, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123297, "type": "subtree", "name": "Druid of the Claw", "traitSubTreeId": 21, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-druidoftheclaw", "nodes": [94609, 94618, 94620, 94611, 94610, 94619, 94615, 94612, 94616, 94614, 94613]}, {"id": 123296, "type": "subtree", "name": "Wildstalker", "traitSubTreeId": 22, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-wildstalker", "nodes": [94626, 94629, 94623, 94621, 94624, 94622, 94625, 94631, 94630, 94628, 94627]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100223, 103846, 103847, 103873, 103874, 103875, 103876]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/druid_guardian.json b/simc_support/game_data/data_files/trees/druid_guardian.json index 43eb7d7..703c1c1 100644 --- a/simc_support/game_data/data_files/trees/druid_guardian.json +++ b/simc_support/game_data/data_files/trees/druid_guardian.json @@ -1 +1 @@ -{"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Guardian", "specId": 104, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}], "freeNode": true}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82215, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 91041, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112964, "definitionId": 117969, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}], "freeNode": true}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82215, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103293, "definitionId": 108298, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91041], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91041], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82215, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82127, "name": "Maul", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82129, 82126], "prev": [], "entries": [{"id": 103191, "definitionId": 108196, "maxRanks": 1, "type": "active", "name": "Maul", "spellId": 6807, "icon": "ability_druid_maul", "index": 0}]}, {"id": 82126, "name": "Gore", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [92227, 82161], "prev": [82127], "entries": [{"id": 103190, "definitionId": 108195, "maxRanks": 1, "type": "passive", "name": "Gore", "spellId": 210706, "icon": "spell_druid_bearhug", "index": 0}]}, {"id": 82129, "name": "Survival Instincts", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82131, 82128], "prev": [82127], "entries": [{"id": 103193, "definitionId": 108198, "maxRanks": 1, "type": "active", "name": "Survival Instincts", "spellId": 61336, "icon": "ability_druid_tigersroar", "index": 0}]}, {"id": 92227, "name": "Dream of Cenarius", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82160], "prev": [82126], "entries": [{"id": 103218, "definitionId": 108223, "maxRanks": 1, "type": "passive", "name": "Dream of Cenarius", "spellId": 372119, "icon": "ability_druid_dreamstate", "index": 100}]}, {"id": 82161, "name": "Brambles / Bristling Fur", "type": "choice", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82160, 82162, 82149], "prev": [82126], "entries": [{"id": 103231, "definitionId": 108236, "maxRanks": 1, "type": "passive", "name": "Brambles", "spellId": 203953, "icon": "inv_misc_thornnecklace", "index": 0}, {"id": 103230, "definitionId": 108235, "maxRanks": 1, "type": "active", "name": "Bristling Fur", "spellId": 155835, "icon": "spell_druid_bristlingfur", "index": 1}]}, {"id": 82131, "name": "Mangle", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82149, 82130, 82132], "prev": [82129], "entries": [{"id": 103195, "definitionId": 108200, "maxRanks": 1, "type": "passive", "name": "Mangle", "spellId": 231064, "icon": "ability_druid_mangle2", "index": 0}]}, {"id": 82128, "name": "Improved Survival Instincts", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82132], "prev": [82129], "entries": [{"id": 103192, "definitionId": 108197, "maxRanks": 1, "type": "passive", "name": "Improved Survival Instincts", "spellId": 328767, "icon": "ability_druid_tigersroar", "index": 0}]}, {"id": 82160, "name": "Innate Resolve", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82157, 82159], "prev": [82161, 92227], "entries": [{"id": 103229, "definitionId": 108234, "maxRanks": 1, "type": "passive", "name": "Innate Resolve", "spellId": 377811, "icon": "spell_nature_healingway", "index": 0}]}, {"id": 82162, "name": "Infected Wounds", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82159], "prev": [82161], "entries": [{"id": 103232, "definitionId": 108237, "maxRanks": 1, "type": "passive", "name": "Infected Wounds", "spellId": 345208, "icon": "ability_druid_infectedwound", "index": 0}]}, {"id": 82149, "name": "Berserk: Ravage", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82159, 82148], "prev": [82161, 82131], "entries": [{"id": 103216, "definitionId": 108221, "maxRanks": 1, "type": "active", "name": "Berserk: Ravage", "spellId": 343240, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82130, "name": "Ursoc's Endurance", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82148], "prev": [82131], "entries": [{"id": 103194, "definitionId": 108199, "maxRanks": 1, "type": "passive", "name": "Ursoc's Endurance", "spellId": 393611, "icon": "ability_hunter_pet_bear", "index": 0}]}, {"id": 82132, "name": "Gory Fur", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82148, 82143], "prev": [82131, 82128], "entries": [{"id": 103196, "definitionId": 108201, "maxRanks": 1, "type": "passive", "name": "Gory Fur", "spellId": 200854, "icon": "artifactability_guardiandruid_goryfur", "index": 0}]}, {"id": 82157, "name": "Reinvigoration", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [82156, 82158], "prev": [82160], "entries": [{"id": 103226, "definitionId": 108231, "maxRanks": 2, "type": "passive", "name": "Reinvigoration", "spellId": 372945, "icon": "ability_druid_overgrowth", "index": 0}]}, {"id": 82159, "name": "Vulnerable Flesh", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92226, 82158, 82133], "prev": [82149, 82160, 82162], "entries": [{"id": 103228, "definitionId": 108233, "maxRanks": 2, "type": "passive", "name": "Vulnerable Flesh", "spellId": 372618, "icon": "ability_druid_primalagression", "index": 0}]}, {"id": 82148, "name": "Layered Mane", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92226, 92585, 82139], "prev": [82149, 82132, 82130], "entries": [{"id": 103215, "definitionId": 108220, "maxRanks": 2, "type": "passive", "name": "Layered Mane", "spellId": 384721, "icon": "ability_druid_ironfur", "index": 0}]}, {"id": 82143, "name": "Survival of the Fittest", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92585, 82140], "prev": [82132], "entries": [{"id": 103210, "definitionId": 108215, "maxRanks": 2, "type": "passive", "name": "Survival of the Fittest", "spellId": 203965, "icon": "ability_druid_enrage", "index": 0}]}, {"id": 82156, "name": "Earthwarden", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155, 82152], "prev": [82157], "entries": [{"id": 103225, "definitionId": 108230, "maxRanks": 1, "type": "passive", "name": "Earthwarden", "spellId": 203974, "icon": "spell_shaman_blessingofeternals", "index": 0}]}, {"id": 82158, "name": "Vicious Cycle", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155], "prev": [82157, 82159], "entries": [{"id": 103227, "definitionId": 108232, "maxRanks": 1, "type": "passive", "name": "Vicious Cycle", "spellId": 371999, "icon": "ability_druid_rake", "index": 0}]}, {"id": 82133, "name": "Tooth and Claw", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155, 82138, 82137], "prev": [82159], "entries": [{"id": 103197, "definitionId": 108202, "maxRanks": 1, "type": "passive", "name": "Tooth and Claw", "spellId": 135288, "icon": "inv_misc_monsterfang_01", "index": 0}]}, {"id": 92226, "name": "Soul of the Forest", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82138], "prev": [82148, 82159], "entries": [{"id": 103208, "definitionId": 108213, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158477, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 82139, "name": "Reinforced Fur", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82138, 82144, 82134], "prev": [82148], "entries": [{"id": 103204, "definitionId": 108209, "maxRanks": 1, "type": "passive", "name": "Reinforced Fur", "spellId": 393618, "icon": "spell_nature_spiritarmor", "index": 0}]}, {"id": 92585, "name": "Thorns of Iron", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82144], "prev": [82143, 82148], "entries": [{"id": 114698, "definitionId": 119704, "maxRanks": 1, "type": "passive", "name": "Thorns of Iron", "spellId": 400222, "icon": "spell_nature_thorns_iron", "index": 0}]}, {"id": 82140, "name": "After the Wildfire / Guardian of Elune", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82144, 82145], "prev": [82143], "entries": [{"id": 103206, "definitionId": 108211, "maxRanks": 1, "type": "passive", "name": "After the Wildfire", "spellId": 371905, "icon": "spell_nature_naturetouchgrow", "index": 0}, {"id": 103205, "definitionId": 108210, "maxRanks": 1, "type": "passive", "name": "Guardian of Elune", "spellId": 155578, "icon": "spell_druid_guardianofelune", "index": 1}]}, {"id": 82155, "name": "Berserk: Unchecked Aggression", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82152, 82137, 82154], "prev": [82133, 82156, 82158], "entries": [{"id": 103224, "definitionId": 108229, "maxRanks": 1, "type": "active", "name": "Berserk: Unchecked Aggression", "spellId": 377623, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82138, "name": "Fury of Nature", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82137, 82134], "prev": [82133, 82139, 92226], "entries": [{"id": 103203, "definitionId": 108208, "maxRanks": 2, "type": "passive", "name": "Fury of Nature", "spellId": 370695, "icon": "ability_druid_cresentburn", "index": 0}]}, {"id": 82144, "name": "Berserk: Persistence", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82134, 82145, 82146], "prev": [82139, 82140, 92585], "entries": [{"id": 103211, "definitionId": 108216, "maxRanks": 1, "type": "active", "name": "Berserk: Persistence", "spellId": 377779, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82152, "name": "Rend and Tear / Untamed Savagery", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82151, 82154], "prev": [82155, 82156], "entries": [{"id": 103221, "definitionId": 108226, "maxRanks": 1, "type": "passive", "name": "Rend and Tear", "spellId": 204053, "icon": "ability_druid_swipe", "index": 0}, {"id": 103220, "definitionId": 108225, "maxRanks": 1, "type": "passive", "name": "Untamed Savagery", "spellId": 372943, "icon": "spell_druid_bloodythrash", "index": 1}]}, {"id": 82137, "name": "Circle of Life and Death", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82142, 82136, 82154], "prev": [82155, 82133, 82138], "entries": [{"id": 103202, "definitionId": 108207, "maxRanks": 1, "type": "passive", "name": "Circle of Life and Death", "spellId": 391969, "icon": "ability_druid_cyclone", "index": 0}]}, {"id": 82134, "name": "Elune's Favored", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82136, 92586, 82146], "prev": [82139, 82144, 82138], "entries": [{"id": 103198, "definitionId": 108203, "maxRanks": 1, "type": "passive", "name": "Elune's Favored", "spellId": 370586, "icon": "spell_holy_elunesgrace", "index": 0}]}, {"id": 82145, "name": "Galactic Guardian", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82147, 82146], "prev": [82140, 82144], "entries": [{"id": 103212, "definitionId": 108217, "maxRanks": 1, "type": "passive", "name": "Galactic Guardian", "spellId": 203964, "icon": "spell_frost_iceclaw", "index": 0}]}, {"id": 82151, "name": "Ursoc's Fury", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82153], "prev": [82152], "entries": [{"id": 103219, "definitionId": 108224, "maxRanks": 1, "type": "passive", "name": "Ursoc's Fury", "spellId": 377210, "icon": "achievement_emeraldnightmare_ursoc", "index": 0}]}, {"id": 82154, "name": "Flashing Claws", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82153, 92588], "prev": [82155, 82137, 82152], "entries": [{"id": 103223, "definitionId": 108228, "maxRanks": 2, "type": "passive", "name": "Flashing Claws", "spellId": 393427, "icon": "spell_druid_thrash", "index": 0}]}, {"id": 82142, "name": "Blood Frenzy", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [92588], "prev": [82137], "entries": [{"id": 103209, "definitionId": 108214, "maxRanks": 1, "type": "passive", "name": "Blood Frenzy", "spellId": 203962, "icon": "ability_druid_primaltenacity", "index": 0}]}, {"id": 82136, "name": "Incarnation: Guardian of Ursoc / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82135, 92588, 82141], "prev": [82137, 82134], "entries": [{"id": 103201, "definitionId": 108206, "maxRanks": 1, "type": "active", "name": "Incarnation: Guardian of Ursoc", "spellId": 394786, "visibleSpellId": 102558, "icon": "spell_druid_incarnation", "index": 0}, {"id": 103200, "definitionId": 108205, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "ability_ardenweald_druid", "index": 1}]}, {"id": 92586, "name": "Moonless Night", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82141], "prev": [82134], "entries": [{"id": 114699, "definitionId": 119705, "maxRanks": 1, "type": "passive", "name": "Moonless Night", "spellId": 400278, "icon": "artifactability_balancedruid_newmoon", "index": 0}]}, {"id": 82146, "name": "Scintillating Moonlight", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [92587, 82141], "prev": [82144, 82145, 82134], "entries": [{"id": 103213, "definitionId": 108218, "maxRanks": 2, "type": "passive", "name": "Scintillating Moonlight", "spellId": 238049, "icon": "spell_fire_twilightfireward", "index": 0}]}, {"id": 82147, "name": "Twin Moonfire", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [92587], "prev": [82145], "entries": [{"id": 103214, "definitionId": 108219, "maxRanks": 1, "type": "passive", "name": "Twin Moonfire", "spellId": 372567, "icon": "spell_nature_starfall", "index": 0}]}, {"id": 82153, "name": "Pulverize", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82151, 82154], "entries": [{"id": 103222, "definitionId": 108227, "maxRanks": 1, "type": "active", "name": "Pulverize", "spellId": 80313, "icon": "spell_druid_malfurionstenacity", "index": 0}]}, {"id": 92588, "name": "Raze", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82142, 82154, 82136], "entries": [{"id": 114701, "definitionId": 119707, "maxRanks": 1, "type": "active", "name": "Raze", "spellId": 400254, "icon": "ability_druid_lacerate", "index": 0}]}, {"id": 82135, "name": "Ursoc's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82136], "entries": [{"id": 103199, "definitionId": 108204, "maxRanks": 1, "type": "passive", "name": "Ursoc's Guidance", "spellId": 393414, "icon": "ability_ardenweald_druid", "index": 0}]}, {"id": 82141, "name": "Rage of the Sleeper", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82146, 92586, 82136], "entries": [{"id": 103207, "definitionId": 108212, "maxRanks": 1, "type": "active", "name": "Rage of the Sleeper", "spellId": 200851, "icon": "inv_hand_1h_artifactursoc_d_01", "index": 0}]}, {"id": 92587, "name": "Lunar Beam", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82146, 82147], "entries": [{"id": 114700, "definitionId": 119706, "maxRanks": 1, "type": "active", "name": "Lunar Beam", "spellId": 204066, "icon": "spell_nature_moonglow", "index": 0}]}], "heroNodes": [{"id": 94608, "name": "Boundless Moonlight", "type": "single", "posX": 7800, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 24, "requiresNode": 92587, "next": [94598, 94588, 94594], "prev": [], "entries": [{"id": 117205, "definitionId": 122217, "maxRanks": 1, "type": "passive", "name": "Boundless Moonlight", "spellId": 424058, "icon": "inv_ability_eluneschosendruid_boundlessmoonlight", "index": 100}], "freeNode": true}, {"id": 94598, "name": "Moon Guardian", "type": "single", "posX": 7200, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "requiresNode": 82145, "next": [94596], "prev": [94608], "entries": [{"id": 117193, "definitionId": 122205, "maxRanks": 1, "type": "passive", "name": "Moon Guardian", "spellId": 429520, "icon": "spell_nature_moonglow", "index": 100}]}, {"id": 94588, "name": "Lunar Insight", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94607], "prev": [94608], "entries": [{"id": 117181, "definitionId": 122193, "maxRanks": 1, "type": "passive", "name": "Lunar Insight", "spellId": 429530, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94594, "name": "Glistening Fur", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94597], "prev": [94608], "entries": [{"id": 117769, "definitionId": 122781, "maxRanks": 1, "type": "passive", "name": "Glistening Fur", "spellId": 429533, "icon": "ability_druid_ironfur", "index": 200}]}, {"id": 94596, "name": "Lunar Amplification", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94590], "prev": [94598], "entries": [{"id": 117190, "definitionId": 122202, "maxRanks": 1, "type": "passive", "name": "Lunar Amplification", "spellId": 429529, "icon": "spell_druid_lunarinspiration", "index": 200}]}, {"id": 94607, "name": "Atmospheric Exposure", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [94585], "prev": [94588], "entries": [{"id": 117204, "definitionId": 122216, "maxRanks": 1, "type": "passive", "name": "Atmospheric Exposure", "spellId": 429532, "icon": "inv_cosmicvoid_nova", "index": 100}]}, {"id": 94597, "name": "Moondust / Elune's Grace", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94586], "prev": [94594], "entries": [{"id": 117192, "definitionId": 122204, "maxRanks": 1, "type": "passive", "name": "Moondust", "spellId": 429538, "icon": "inv_enchant_dust", "index": 100}, {"id": 123304, "definitionId": 128177, "maxRanks": 1, "type": "passive", "name": "Elune's Grace", "spellId": 443046, "icon": "spell_druid_wildcharge", "index": 200}]}, {"id": 94590, "name": "Stellar Command / Lunar Calling", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94596], "entries": [{"id": 117183, "definitionId": 122195, "maxRanks": 1, "type": "passive", "name": "Stellar Command", "spellId": 429668, "icon": "artifactability_balancedruid_moonandstars", "index": 100}, {"id": 117770, "definitionId": 122782, "maxRanks": 1, "type": "passive", "name": "Lunar Calling", "spellId": 429523, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 94585, "name": "The Light of Elune / Astral Insight", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94607], "entries": [{"id": 117176, "definitionId": 122188, "maxRanks": 1, "type": "passive", "name": "The Light of Elune", "spellId": 428655, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 117772, "definitionId": 122784, "maxRanks": 1, "type": "passive", "name": "Astral Insight", "spellId": 429536, "icon": "spell_druid_incarnation", "index": 200}]}, {"id": 94586, "name": "Arcane Affinity / Lunation", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94597], "entries": [{"id": 117178, "definitionId": 122190, "maxRanks": 1, "type": "passive", "name": "Arcane Affinity", "spellId": 429540, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 117177, "definitionId": 122189, "maxRanks": 1, "type": "passive", "name": "Lunation", "spellId": 429539, "icon": "spell_nature_moonglow", "index": 200}]}, {"id": 94587, "name": "The Eternal Moon", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [], "prev": [94590, 94585, 94586], "entries": [{"id": 117179, "definitionId": 122191, "maxRanks": 1, "type": "passive", "name": "The Eternal Moon", "spellId": 424113, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 94609, "name": "Ravage", "type": "single", "posX": 1200, "posY": 5110, "maxRanks": 1, "entryNode": true, "subTreeId": 21, "next": [94620, 94611, 94618], "prev": [], "entries": [{"id": 117206, "definitionId": 122218, "maxRanks": 1, "type": "passive", "name": "Ravage", "spellId": 441583, "icon": "inv_ability_druidoftheclawdruid_ravage", "index": 100}], "freeNode": true}, {"id": 94618, "name": "Fount of Strength", "type": "single", "posX": 600, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94610], "prev": [94609], "entries": [{"id": 117218, "definitionId": 122230, "maxRanks": 1, "type": "passive", "name": "Fount of Strength", "spellId": 441675, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 94620, "name": "Dreadful Wound", "type": "single", "posX": 1200, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94619], "prev": [94609], "entries": [{"id": 117220, "definitionId": 122232, "maxRanks": 1, "type": "passive", "name": "Dreadful Wound", "spellId": 441809, "icon": "artifactability_feraldruid_openwounds", "index": 100}]}, {"id": 94611, "name": "Bestial Strength", "type": "single", "posX": 1800, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94615], "prev": [94609], "entries": [{"id": 117208, "definitionId": 122220, "maxRanks": 1, "type": "passive", "name": "Bestial Strength", "spellId": 441841, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 94610, "name": "Wildshape Mastery", "type": "single", "posX": 600, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94612], "prev": [94618], "entries": [{"id": 117207, "definitionId": 122219, "maxRanks": 1, "type": "passive", "name": "Wildshape Mastery", "spellId": 441678, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 94619, "name": "Ruthless Aggression / Killing Strikes", "type": "choice", "posX": 1200, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94616], "prev": [94620], "entries": [{"id": 117219, "definitionId": 122231, "maxRanks": 1, "type": "passive", "name": "Ruthless Aggression", "spellId": 441814, "icon": "ability_druid_rake", "index": 100}, {"id": 123048, "definitionId": 127929, "maxRanks": 1, "type": "passive", "name": "Killing Strikes", "spellId": 441824, "icon": "ability_druid_kingofthejungle", "index": 200}]}, {"id": 94615, "name": "Pack's Endurance", "type": "single", "posX": 1800, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "requiresNode": 82234, "next": [94614], "prev": [94611], "entries": [{"id": 117215, "definitionId": 122227, "maxRanks": 1, "type": "passive", "name": "Pack's Endurance", "spellId": 441844, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 94612, "name": "Empowered Shapeshifting / Wildpower Surge", "type": "choice", "posX": 600, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94610], "entries": [{"id": 117210, "definitionId": 122222, "maxRanks": 1, "type": "passive", "name": "Empowered Shapeshifting", "spellId": 441689, "icon": "spell_druid_primaltenacity", "index": 100}, {"id": 117209, "definitionId": 122221, "maxRanks": 1, "type": "passive", "name": "Wildpower Surge", "spellId": 441691, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 94616, "name": "Aggravate Wounds", "type": "single", "posX": 1200, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94619], "entries": [{"id": 117216, "definitionId": 122228, "maxRanks": 1, "type": "passive", "name": "Aggravate Wounds", "spellId": 441829, "icon": "artifactability_guardiandruid_goryfur", "index": 100}]}, {"id": 94614, "name": "Strike for the Heart / Tear Down the Mighty", "type": "choice", "posX": 1800, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94615], "entries": [{"id": 117214, "definitionId": 122226, "maxRanks": 1, "type": "passive", "name": "Strike for the Heart", "spellId": 441845, "icon": "ability_druid_primalagression", "index": 100}, {"id": 117213, "definitionId": 122225, "maxRanks": 1, "type": "passive", "name": "Tear Down the Mighty", "spellId": 441846, "icon": "spell_druid_malfurionstenacity", "index": 200}]}, {"id": 94613, "name": "Claw Rampage", "type": "single", "posX": 1200, "posY": 7510, "maxRanks": 1, "subTreeId": 21, "next": [], "prev": [94614, 94616, 94612], "entries": [{"id": 117211, "definitionId": 122223, "maxRanks": 1, "type": "passive", "name": "Claw Rampage", "spellId": 441835, "icon": "ability_xavius_tormentingswipe", "index": 200}]}], "subTreeNodes": [{"id": 99807, "name": "Druid of the Claw / Elune's Chosen", "type": "subtree", "posX": 8700, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123301, "type": "subtree", "name": "Druid of the Claw", "traitSubTreeId": 21, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-druidoftheclaw", "nodes": [94609, 94618, 94620, 94611, 94610, 94619, 94615, 94612, 94616, 94614, 94613]}, {"id": 123295, "type": "subtree", "name": "Elune's Chosen", "traitSubTreeId": 24, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-eluneschosen", "nodes": [94608, 94598, 94588, 94594, 94596, 94607, 94597, 94590, 94585, 94586, 94587]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82084, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100222, 100223]} \ No newline at end of file +{"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Guardian", "specId": 104, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}], "freeNode": true}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82215, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 91041, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112964, "definitionId": 117969, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}], "freeNode": true}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82215, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103293, "definitionId": 108298, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91041], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91041], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82215, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82127, "name": "Maul", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82129, 82126], "prev": [], "entries": [{"id": 103191, "definitionId": 108196, "maxRanks": 1, "type": "active", "name": "Maul", "spellId": 6807, "icon": "ability_druid_maul", "index": 0}]}, {"id": 82126, "name": "Gore", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [92227, 82161], "prev": [82127], "entries": [{"id": 103190, "definitionId": 108195, "maxRanks": 1, "type": "passive", "name": "Gore", "spellId": 210706, "icon": "spell_druid_bearhug", "index": 0}]}, {"id": 82129, "name": "Survival Instincts", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82131, 82128], "prev": [82127], "entries": [{"id": 103193, "definitionId": 108198, "maxRanks": 1, "type": "active", "name": "Survival Instincts", "spellId": 61336, "icon": "ability_druid_tigersroar", "index": 0}]}, {"id": 92227, "name": "Dream of Cenarius", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82160], "prev": [82126], "entries": [{"id": 103218, "definitionId": 108223, "maxRanks": 1, "type": "passive", "name": "Dream of Cenarius", "spellId": 372119, "icon": "ability_druid_dreamstate", "index": 100}]}, {"id": 82161, "name": "Brambles / Bristling Fur", "type": "choice", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82160, 82162, 82149], "prev": [82126], "entries": [{"id": 103231, "definitionId": 108236, "maxRanks": 1, "type": "passive", "name": "Brambles", "spellId": 203953, "icon": "inv_misc_thornnecklace", "index": 0}, {"id": 103230, "definitionId": 108235, "maxRanks": 1, "type": "active", "name": "Bristling Fur", "spellId": 155835, "icon": "spell_druid_bristlingfur", "index": 1}]}, {"id": 82131, "name": "Mangle", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82149, 82130, 82132], "prev": [82129], "entries": [{"id": 103195, "definitionId": 108200, "maxRanks": 1, "type": "passive", "name": "Mangle", "spellId": 231064, "icon": "ability_druid_mangle2", "index": 0}]}, {"id": 82128, "name": "Improved Survival Instincts", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82132], "prev": [82129], "entries": [{"id": 103192, "definitionId": 108197, "maxRanks": 1, "type": "passive", "name": "Improved Survival Instincts", "spellId": 328767, "icon": "ability_druid_tigersroar", "index": 0}]}, {"id": 82160, "name": "Innate Resolve", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82157, 82159], "prev": [82161, 92227], "entries": [{"id": 103229, "definitionId": 108234, "maxRanks": 1, "type": "passive", "name": "Innate Resolve", "spellId": 377811, "icon": "spell_nature_healingway", "index": 0}]}, {"id": 82162, "name": "Infected Wounds", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82159], "prev": [82161], "entries": [{"id": 103232, "definitionId": 108237, "maxRanks": 1, "type": "passive", "name": "Infected Wounds", "spellId": 345208, "icon": "ability_druid_infectedwound", "index": 0}]}, {"id": 82149, "name": "Berserk: Ravage", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82159, 82148], "prev": [82161, 82131], "entries": [{"id": 103216, "definitionId": 108221, "maxRanks": 1, "type": "active", "name": "Berserk: Ravage", "spellId": 343240, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82130, "name": "Ursoc's Endurance", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82148], "prev": [82131], "entries": [{"id": 103194, "definitionId": 108199, "maxRanks": 1, "type": "passive", "name": "Ursoc's Endurance", "spellId": 393611, "icon": "ability_hunter_pet_bear", "index": 0}]}, {"id": 82132, "name": "Gory Fur", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82148, 82143], "prev": [82131, 82128], "entries": [{"id": 103196, "definitionId": 108201, "maxRanks": 1, "type": "passive", "name": "Gory Fur", "spellId": 200854, "icon": "artifactability_guardiandruid_goryfur", "index": 0}]}, {"id": 82157, "name": "Reinvigoration", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [82156, 82158], "prev": [82160], "entries": [{"id": 103226, "definitionId": 108231, "maxRanks": 2, "type": "passive", "name": "Reinvigoration", "spellId": 372945, "icon": "ability_druid_overgrowth", "index": 0}]}, {"id": 82159, "name": "Vulnerable Flesh", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92226, 82158, 82133], "prev": [82149, 82160, 82162], "entries": [{"id": 103228, "definitionId": 108233, "maxRanks": 2, "type": "passive", "name": "Vulnerable Flesh", "spellId": 372618, "icon": "ability_druid_primalagression", "index": 0}]}, {"id": 82148, "name": "Layered Mane", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92226, 92585, 82139], "prev": [82149, 82132, 82130], "entries": [{"id": 103215, "definitionId": 108220, "maxRanks": 2, "type": "passive", "name": "Layered Mane", "spellId": 384721, "icon": "ability_druid_ironfur", "index": 0}]}, {"id": 82143, "name": "Survival of the Fittest", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92585, 82140], "prev": [82132], "entries": [{"id": 103210, "definitionId": 108215, "maxRanks": 2, "type": "passive", "name": "Survival of the Fittest", "spellId": 203965, "icon": "ability_druid_enrage", "index": 0}]}, {"id": 82156, "name": "Earthwarden", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155, 82152], "prev": [82157], "entries": [{"id": 103225, "definitionId": 108230, "maxRanks": 1, "type": "passive", "name": "Earthwarden", "spellId": 203974, "icon": "spell_shaman_blessingofeternals", "index": 0}]}, {"id": 82158, "name": "Vicious Cycle", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155], "prev": [82157, 82159], "entries": [{"id": 103227, "definitionId": 108232, "maxRanks": 1, "type": "passive", "name": "Vicious Cycle", "spellId": 371999, "icon": "ability_druid_rake", "index": 0}]}, {"id": 82133, "name": "Tooth and Claw", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155, 82138, 82137], "prev": [82159], "entries": [{"id": 103197, "definitionId": 108202, "maxRanks": 1, "type": "passive", "name": "Tooth and Claw", "spellId": 135288, "icon": "inv_misc_monsterfang_01", "index": 0}]}, {"id": 92226, "name": "Soul of the Forest", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82138], "prev": [82148, 82159], "entries": [{"id": 103208, "definitionId": 108213, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158477, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 82139, "name": "Reinforced Fur", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82138, 82144, 82134], "prev": [82148], "entries": [{"id": 103204, "definitionId": 108209, "maxRanks": 1, "type": "passive", "name": "Reinforced Fur", "spellId": 393618, "icon": "spell_nature_spiritarmor", "index": 0}]}, {"id": 92585, "name": "Thorns of Iron", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82144], "prev": [82143, 82148], "entries": [{"id": 114698, "definitionId": 119704, "maxRanks": 1, "type": "passive", "name": "Thorns of Iron", "spellId": 400222, "icon": "spell_nature_thorns_iron", "index": 0}]}, {"id": 82140, "name": "After the Wildfire / Guardian of Elune", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82144, 82145], "prev": [82143], "entries": [{"id": 103206, "definitionId": 108211, "maxRanks": 1, "type": "passive", "name": "After the Wildfire", "spellId": 371905, "icon": "spell_nature_naturetouchgrow", "index": 0}, {"id": 103205, "definitionId": 108210, "maxRanks": 1, "type": "passive", "name": "Guardian of Elune", "spellId": 155578, "icon": "spell_druid_guardianofelune", "index": 1}]}, {"id": 82155, "name": "Berserk: Unchecked Aggression", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82152, 82137, 82154], "prev": [82133, 82156, 82158], "entries": [{"id": 103224, "definitionId": 108229, "maxRanks": 1, "type": "active", "name": "Berserk: Unchecked Aggression", "spellId": 377623, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82138, "name": "Fury of Nature", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82137, 82134], "prev": [82133, 82139, 92226], "entries": [{"id": 103203, "definitionId": 108208, "maxRanks": 2, "type": "passive", "name": "Fury of Nature", "spellId": 370695, "icon": "ability_druid_cresentburn", "index": 0}]}, {"id": 82144, "name": "Berserk: Persistence", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82134, 82145, 82146], "prev": [82139, 82140, 92585], "entries": [{"id": 103211, "definitionId": 108216, "maxRanks": 1, "type": "active", "name": "Berserk: Persistence", "spellId": 377779, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82152, "name": "Rend and Tear / Untamed Savagery", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82151, 82154], "prev": [82155, 82156], "entries": [{"id": 103221, "definitionId": 108226, "maxRanks": 1, "type": "passive", "name": "Rend and Tear", "spellId": 204053, "icon": "ability_druid_swipe", "index": 0}, {"id": 103220, "definitionId": 108225, "maxRanks": 1, "type": "passive", "name": "Untamed Savagery", "spellId": 372943, "icon": "spell_druid_bloodythrash", "index": 1}]}, {"id": 82137, "name": "Circle of Life and Death", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82142, 82136, 82154], "prev": [82155, 82133, 82138], "entries": [{"id": 103202, "definitionId": 108207, "maxRanks": 1, "type": "passive", "name": "Circle of Life and Death", "spellId": 391969, "icon": "ability_druid_cyclone", "index": 0}]}, {"id": 82134, "name": "Elune's Favored", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82136, 92586, 82146], "prev": [82139, 82144, 82138], "entries": [{"id": 103198, "definitionId": 108203, "maxRanks": 1, "type": "passive", "name": "Elune's Favored", "spellId": 370586, "icon": "spell_holy_elunesgrace", "index": 0}]}, {"id": 82145, "name": "Galactic Guardian", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82147, 82146], "prev": [82140, 82144], "entries": [{"id": 103212, "definitionId": 108217, "maxRanks": 1, "type": "passive", "name": "Galactic Guardian", "spellId": 203964, "icon": "spell_frost_iceclaw", "index": 0}]}, {"id": 82151, "name": "Ursoc's Fury", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82153], "prev": [82152], "entries": [{"id": 103219, "definitionId": 108224, "maxRanks": 1, "type": "passive", "name": "Ursoc's Fury", "spellId": 377210, "icon": "achievement_emeraldnightmare_ursoc", "index": 0}]}, {"id": 82154, "name": "Flashing Claws", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82153, 92588], "prev": [82155, 82137, 82152], "entries": [{"id": 103223, "definitionId": 108228, "maxRanks": 2, "type": "passive", "name": "Flashing Claws", "spellId": 393427, "icon": "spell_druid_thrash", "index": 0}]}, {"id": 82142, "name": "Blood Frenzy", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [92588], "prev": [82137], "entries": [{"id": 103209, "definitionId": 108214, "maxRanks": 1, "type": "passive", "name": "Blood Frenzy", "spellId": 203962, "icon": "ability_druid_primaltenacity", "index": 0}]}, {"id": 82136, "name": "Incarnation: Guardian of Ursoc / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82135, 92588, 82141], "prev": [82137, 82134], "entries": [{"id": 103201, "definitionId": 108206, "maxRanks": 1, "type": "active", "name": "Incarnation: Guardian of Ursoc", "spellId": 394786, "visibleSpellId": 102558, "icon": "spell_druid_incarnation", "index": 0}, {"id": 103200, "definitionId": 108205, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "inv_ability_druid_convokethespirits", "index": 1}]}, {"id": 92586, "name": "Moonless Night", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82141], "prev": [82134], "entries": [{"id": 114699, "definitionId": 119705, "maxRanks": 1, "type": "passive", "name": "Moonless Night", "spellId": 400278, "icon": "artifactability_balancedruid_newmoon", "index": 0}]}, {"id": 82146, "name": "Scintillating Moonlight", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [92587, 82141], "prev": [82144, 82145, 82134], "entries": [{"id": 103213, "definitionId": 108218, "maxRanks": 2, "type": "passive", "name": "Scintillating Moonlight", "spellId": 238049, "icon": "spell_fire_twilightfireward", "index": 0}]}, {"id": 82147, "name": "Twin Moonfire", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [92587], "prev": [82145], "entries": [{"id": 103214, "definitionId": 108219, "maxRanks": 1, "type": "passive", "name": "Twin Moonfire", "spellId": 372567, "icon": "spell_nature_starfall", "index": 0}]}, {"id": 82153, "name": "Pulverize", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82151, 82154], "entries": [{"id": 103222, "definitionId": 108227, "maxRanks": 1, "type": "active", "name": "Pulverize", "spellId": 80313, "icon": "spell_druid_malfurionstenacity", "index": 0}]}, {"id": 92588, "name": "Raze", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82142, 82154, 82136], "entries": [{"id": 114701, "definitionId": 119707, "maxRanks": 1, "type": "active", "name": "Raze", "spellId": 400254, "icon": "ability_druid_lacerate", "index": 0}]}, {"id": 82135, "name": "Ursoc's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82136], "entries": [{"id": 103199, "definitionId": 108204, "maxRanks": 1, "type": "passive", "name": "Ursoc's Guidance", "spellId": 393414, "icon": "inv_ability_druid_convokethespirits", "index": 0}]}, {"id": 82141, "name": "Rage of the Sleeper", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82146, 92586, 82136], "entries": [{"id": 103207, "definitionId": 108212, "maxRanks": 1, "type": "active", "name": "Rage of the Sleeper", "spellId": 200851, "icon": "inv_hand_1h_artifactursoc_d_01", "index": 0}]}, {"id": 92587, "name": "Lunar Beam", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82146, 82147], "entries": [{"id": 114700, "definitionId": 119706, "maxRanks": 1, "type": "active", "name": "Lunar Beam", "spellId": 204066, "icon": "spell_nature_moonglow", "index": 0}]}], "heroNodes": [{"id": 94608, "name": "Boundless Moonlight", "type": "single", "posX": 7800, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 24, "requiresNode": 92587, "next": [94598, 94588, 94594], "prev": [], "entries": [{"id": 117205, "definitionId": 122217, "maxRanks": 1, "type": "passive", "name": "Boundless Moonlight", "spellId": 424058, "icon": "inv_ability_eluneschosendruid_boundlessmoonlight", "index": 100}], "freeNode": true}, {"id": 94598, "name": "Moon Guardian", "type": "single", "posX": 7200, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "requiresNode": 82145, "next": [94596], "prev": [94608], "entries": [{"id": 117193, "definitionId": 122205, "maxRanks": 1, "type": "passive", "name": "Moon Guardian", "spellId": 429520, "icon": "spell_nature_moonglow", "index": 100}]}, {"id": 94588, "name": "Lunar Insight", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94607], "prev": [94608], "entries": [{"id": 117181, "definitionId": 122193, "maxRanks": 1, "type": "passive", "name": "Lunar Insight", "spellId": 429530, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94594, "name": "Glistening Fur", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94597], "prev": [94608], "entries": [{"id": 117769, "definitionId": 122781, "maxRanks": 1, "type": "passive", "name": "Glistening Fur", "spellId": 429533, "icon": "ability_druid_ironfur", "index": 200}]}, {"id": 94596, "name": "Lunar Amplification", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94590], "prev": [94598], "entries": [{"id": 117190, "definitionId": 122202, "maxRanks": 1, "type": "passive", "name": "Lunar Amplification", "spellId": 429529, "icon": "spell_druid_lunarinspiration", "index": 200}]}, {"id": 94607, "name": "Atmospheric Exposure", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [94585], "prev": [94588], "entries": [{"id": 117204, "definitionId": 122216, "maxRanks": 1, "type": "passive", "name": "Atmospheric Exposure", "spellId": 429532, "icon": "inv_cosmicvoid_nova", "index": 100}]}, {"id": 94597, "name": "Moondust / Elune's Grace", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94586], "prev": [94594], "entries": [{"id": 117192, "definitionId": 122204, "maxRanks": 1, "type": "passive", "name": "Moondust", "spellId": 429538, "icon": "inv_enchant_dust", "index": 100}, {"id": 123304, "definitionId": 128177, "maxRanks": 1, "type": "passive", "name": "Elune's Grace", "spellId": 443046, "icon": "spell_druid_wildcharge", "index": 200}]}, {"id": 94590, "name": "Stellar Command / Lunar Calling", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94596], "entries": [{"id": 117183, "definitionId": 122195, "maxRanks": 1, "type": "passive", "name": "Stellar Command", "spellId": 429668, "icon": "artifactability_balancedruid_moonandstars", "index": 100}, {"id": 117770, "definitionId": 122782, "maxRanks": 1, "type": "passive", "name": "Lunar Calling", "spellId": 429523, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 94585, "name": "The Light of Elune / Astral Insight", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94607], "entries": [{"id": 117176, "definitionId": 122188, "maxRanks": 1, "type": "passive", "name": "The Light of Elune", "spellId": 428655, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 117772, "definitionId": 122784, "maxRanks": 1, "type": "passive", "name": "Astral Insight", "spellId": 429536, "icon": "spell_druid_incarnation", "index": 200}]}, {"id": 94586, "name": "Arcane Affinity / Lunation", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94597], "entries": [{"id": 117178, "definitionId": 122190, "maxRanks": 1, "type": "passive", "name": "Arcane Affinity", "spellId": 429540, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 117177, "definitionId": 122189, "maxRanks": 1, "type": "passive", "name": "Lunation", "spellId": 429539, "icon": "spell_nature_moonglow", "index": 200}]}, {"id": 94587, "name": "The Eternal Moon", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [], "prev": [94590, 94585, 94586], "entries": [{"id": 117179, "definitionId": 122191, "maxRanks": 1, "type": "passive", "name": "The Eternal Moon", "spellId": 424113, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 94609, "name": "Ravage", "type": "single", "posX": 1200, "posY": 5110, "maxRanks": 1, "entryNode": true, "subTreeId": 21, "next": [94620, 94611, 94618], "prev": [], "entries": [{"id": 117206, "definitionId": 122218, "maxRanks": 1, "type": "passive", "name": "Ravage", "spellId": 441583, "icon": "inv_ability_druidoftheclawdruid_ravage", "index": 100}], "freeNode": true}, {"id": 94618, "name": "Fount of Strength", "type": "single", "posX": 600, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94610], "prev": [94609], "entries": [{"id": 117218, "definitionId": 122230, "maxRanks": 1, "type": "passive", "name": "Fount of Strength", "spellId": 441675, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 94620, "name": "Dreadful Wound", "type": "single", "posX": 1200, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94619], "prev": [94609], "entries": [{"id": 117220, "definitionId": 122232, "maxRanks": 1, "type": "passive", "name": "Dreadful Wound", "spellId": 441809, "icon": "artifactability_feraldruid_openwounds", "index": 100}]}, {"id": 94611, "name": "Bestial Strength", "type": "single", "posX": 1800, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94615], "prev": [94609], "entries": [{"id": 117208, "definitionId": 122220, "maxRanks": 1, "type": "passive", "name": "Bestial Strength", "spellId": 441841, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 94610, "name": "Wildshape Mastery", "type": "single", "posX": 600, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94612], "prev": [94618], "entries": [{"id": 117207, "definitionId": 122219, "maxRanks": 1, "type": "passive", "name": "Wildshape Mastery", "spellId": 441678, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 94619, "name": "Ruthless Aggression / Killing Strikes", "type": "choice", "posX": 1200, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94616], "prev": [94620], "entries": [{"id": 117219, "definitionId": 122231, "maxRanks": 1, "type": "passive", "name": "Ruthless Aggression", "spellId": 441814, "icon": "ability_druid_rake", "index": 100}, {"id": 123048, "definitionId": 127929, "maxRanks": 1, "type": "passive", "name": "Killing Strikes", "spellId": 441824, "icon": "ability_druid_kingofthejungle", "index": 200}]}, {"id": 94615, "name": "Pack's Endurance", "type": "single", "posX": 1800, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "requiresNode": 82234, "next": [94614], "prev": [94611], "entries": [{"id": 117215, "definitionId": 122227, "maxRanks": 1, "type": "passive", "name": "Pack's Endurance", "spellId": 441844, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 94612, "name": "Empowered Shapeshifting / Wildpower Surge", "type": "choice", "posX": 600, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94610], "entries": [{"id": 117210, "definitionId": 122222, "maxRanks": 1, "type": "passive", "name": "Empowered Shapeshifting", "spellId": 441689, "icon": "spell_druid_primaltenacity", "index": 100}, {"id": 117209, "definitionId": 122221, "maxRanks": 1, "type": "passive", "name": "Wildpower Surge", "spellId": 441691, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 94616, "name": "Aggravate Wounds", "type": "single", "posX": 1200, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94619], "entries": [{"id": 117216, "definitionId": 122228, "maxRanks": 1, "type": "passive", "name": "Aggravate Wounds", "spellId": 441829, "icon": "artifactability_guardiandruid_goryfur", "index": 100}]}, {"id": 94614, "name": "Strike for the Heart / Tear Down the Mighty", "type": "choice", "posX": 1800, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94615], "entries": [{"id": 117214, "definitionId": 122226, "maxRanks": 1, "type": "passive", "name": "Strike for the Heart", "spellId": 441845, "icon": "ability_druid_primalagression", "index": 100}, {"id": 117213, "definitionId": 122225, "maxRanks": 1, "type": "passive", "name": "Tear Down the Mighty", "spellId": 441846, "icon": "spell_druid_malfurionstenacity", "index": 200}]}, {"id": 94613, "name": "Claw Rampage", "type": "single", "posX": 1200, "posY": 7510, "maxRanks": 1, "subTreeId": 21, "next": [], "prev": [94614, 94616, 94612], "entries": [{"id": 117211, "definitionId": 122223, "maxRanks": 1, "type": "passive", "name": "Claw Rampage", "spellId": 441835, "icon": "ability_xavius_tormentingswipe", "index": 200}]}], "subTreeNodes": [{"id": 99807, "name": "Druid of the Claw / Elune's Chosen", "type": "subtree", "posX": 8700, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123301, "type": "subtree", "name": "Druid of the Claw", "traitSubTreeId": 21, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-druidoftheclaw", "nodes": [94609, 94618, 94620, 94611, 94610, 94619, 94615, 94612, 94616, 94614, 94613]}, {"id": 123295, "type": "subtree", "name": "Elune's Chosen", "traitSubTreeId": 24, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-eluneschosen", "nodes": [94608, 94598, 94588, 94594, 94596, 94607, 94597, 94590, 94585, 94586, 94587]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100223, 103846, 103847, 103873, 103874, 103875, 103876]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/druid_restoration.json b/simc_support/game_data/data_files/trees/druid_restoration.json index e9d9611..5df1c5a 100644 --- a/simc_support/game_data/data_files/trees/druid_restoration.json +++ b/simc_support/game_data/data_files/trees/druid_restoration.json @@ -1 +1 @@ -{"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Restoration", "specId": 105, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82203, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}], "freeNode": true}, {"id": 91040, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112963, "definitionId": 117968, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82203, "name": "Improved Nature's Cure", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103281, "definitionId": 108286, "maxRanks": 1, "type": "passive", "name": "Improved Nature's Cure", "spellId": 392378, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91040], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}], "freeNode": true}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91040], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82203, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82049, "name": "Lifebloom", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82048, 82050, 82084], "prev": [], "entries": [{"id": 103100, "definitionId": 108105, "maxRanks": 1, "type": "active", "name": "Lifebloom", "spellId": 33763, "icon": "inv_misc_herb_felblossom", "index": 100}]}, {"id": 82048, "name": "Ysera's Gift", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [82047], "prev": [82049], "entries": [{"id": 103099, "definitionId": 108104, "maxRanks": 1, "type": "passive", "name": "Ysera's Gift", "spellId": 145108, "icon": "inv_misc_head_dragon_green", "index": 100}]}, {"id": 82050, "name": "Nature's Swiftness", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82051], "prev": [82049], "entries": [{"id": 103101, "definitionId": 108106, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 132158, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 82084, "name": "Omen of Clarity", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82083], "prev": [82049], "entries": [{"id": 103143, "definitionId": 108148, "maxRanks": 1, "type": "passive", "name": "Omen of Clarity", "spellId": 113043, "icon": "spell_nature_crystalball", "index": 100}]}, {"id": 82047, "name": "Grove Tending", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82046, 82055, 82057], "prev": [82048], "entries": [{"id": 103098, "definitionId": 108103, "maxRanks": 1, "type": "passive", "name": "Grove Tending", "spellId": 383192, "icon": "inv_relics_idolofrejuvenation", "index": 100}]}, {"id": 82051, "name": "Nature's Splendor / Passing Seasons", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82055, 82052], "prev": [82050], "entries": [{"id": 103103, "definitionId": 108108, "maxRanks": 1, "type": "passive", "name": "Nature's Splendor", "spellId": 392288, "icon": "spell_nature_spiritarmor", "index": 100}, {"id": 103102, "definitionId": 108107, "maxRanks": 1, "type": "passive", "name": "Passing Seasons", "spellId": 382550, "icon": "spell_nature_ravenform", "index": 200}]}, {"id": 82083, "name": "Flash of Clarity", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82052, 92674, 82082], "prev": [82084], "entries": [{"id": 103142, "definitionId": 108147, "maxRanks": 1, "type": "passive", "name": "Flash of Clarity", "spellId": 392220, "icon": "spell_nature_crystalball", "index": 100}]}, {"id": 82046, "name": "Waking Dream", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82047], "entries": [{"id": 103097, "definitionId": 108102, "maxRanks": 1, "type": "passive", "name": "Waking Dream", "spellId": 392221, "icon": "inv_misc_head_dragon_green", "index": 100}]}, {"id": 82055, "name": "Improved Regrowth", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82057, 82054], "prev": [82047, 82051], "entries": [{"id": 103109, "definitionId": 108114, "maxRanks": 1, "type": "passive", "name": "Improved Regrowth", "spellId": 231032, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 82052, "name": "Abundance / Cenarion Ward", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82054, 82082], "prev": [82083, 82051], "entries": [{"id": 103105, "definitionId": 108110, "maxRanks": 1, "type": "passive", "name": "Abundance", "spellId": 207383, "icon": "ability_druid_empoweredrejuvination", "index": 100}, {"id": 103104, "definitionId": 108109, "maxRanks": 1, "type": "active", "name": "Cenarion Ward", "spellId": 102351, "icon": "ability_druid_naturalperfection", "index": 200}]}, {"id": 92674, "name": "Tranquil Mind", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82083], "entries": [{"id": 114808, "definitionId": 119815, "maxRanks": 1, "type": "passive", "name": "Tranquil Mind", "spellId": 403521, "icon": "ability_druid_serenefocus", "index": 100}]}, {"id": 82057, "name": "Efflorescence", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82043, 82059], "prev": [82047, 82055], "entries": [{"id": 103111, "definitionId": 108116, "maxRanks": 1, "type": "active", "name": "Efflorescence", "spellId": 145205, "icon": "inv_misc_herb_talandrasrose", "index": 100}]}, {"id": 82054, "name": "Tranquility", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82053], "prev": [82055, 82052], "entries": [{"id": 103108, "definitionId": 108113, "maxRanks": 1, "type": "active", "name": "Tranquility", "spellId": 740, "icon": "spell_nature_tranquility", "index": 100}]}, {"id": 82082, "name": "Ironbark", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82045, 82056, 82081], "prev": [82083, 82052], "entries": [{"id": 103141, "definitionId": 108146, "maxRanks": 1, "type": "active", "name": "Ironbark", "spellId": 102342, "icon": "spell_druid_ironbark", "index": 100}]}, {"id": 82059, "name": "Soul of the Forest", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82058, 82060, 82062], "prev": [82057], "entries": [{"id": 103113, "definitionId": 108118, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158478, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 82043, "name": "Nourish / Grove Guardians", "type": "choice", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [94535, 82065, 82062], "prev": [82057], "entries": [{"id": 103094, "definitionId": 108099, "maxRanks": 1, "type": "active", "name": "Nourish", "spellId": 50464, "icon": "ability_druid_nourish", "index": 100}, {"id": 117104, "definitionId": 122116, "maxRanks": 1, "type": "active", "name": "Grove Guardians", "spellId": 102693, "icon": "ability_druid_forceofnature", "index": 200}]}, {"id": 82053, "name": "Inner Peace / Dreamstate", "type": "choice", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82065], "prev": [82054], "entries": [{"id": 103107, "definitionId": 108112, "maxRanks": 1, "type": "passive", "name": "Inner Peace", "spellId": 197073, "icon": "ability_druid_dreamstate", "index": 200}, {"id": 103106, "definitionId": 108111, "maxRanks": 1, "type": "passive", "name": "Dreamstate", "spellId": 392162, "icon": "spell_unused", "index": 300}]}, {"id": 82056, "name": "Cultivation", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82065, 82080], "prev": [82082], "entries": [{"id": 103110, "definitionId": 108115, "maxRanks": 1, "type": "passive", "name": "Cultivation", "spellId": 200390, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 82045, "name": "Improved Wild Growth", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82080], "prev": [82082], "entries": [{"id": 103096, "definitionId": 108101, "maxRanks": 1, "type": "passive", "name": "Improved Wild Growth", "spellId": 328025, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82081, "name": "Stonebark / Improved Ironbark", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82075, 82080], "prev": [82082], "entries": [{"id": 103140, "definitionId": 108145, "maxRanks": 1, "type": "passive", "name": "Stonebark", "spellId": 197061, "icon": "archaeology_5_0_crackedmogurunestone", "index": 100}, {"id": 103139, "definitionId": 108144, "maxRanks": 1, "type": "passive", "name": "Improved Ironbark", "spellId": 382552, "icon": "spell_druid_ironbark", "index": 200}]}, {"id": 82060, "name": "Verdancy", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82061, 82074], "prev": [82059], "entries": [{"id": 103114, "definitionId": 108119, "maxRanks": 1, "type": "passive", "name": "Verdancy", "spellId": 392325, "icon": "inv_10_herb_seed_magiccolor5", "index": 100}]}, {"id": 82058, "name": "Rampant Growth", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82061], "prev": [82059], "entries": [{"id": 103112, "definitionId": 108117, "maxRanks": 1, "type": "passive", "name": "Rampant Growth", "spellId": 404521, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 82062, "name": "Regenesis", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82061, 82064], "prev": [82059, 82043], "entries": [{"id": 103117, "definitionId": 108122, "maxRanks": 2, "type": "passive", "name": "Regenesis", "spellId": 383191, "icon": "inv_misc_herb_liferoot_stem", "index": 100}]}, {"id": 94535, "name": "Wild Synthesis", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82064], "prev": [82043], "entries": [{"id": 117105, "definitionId": 122117, "maxRanks": 1, "type": "passive", "name": "Wild Synthesis", "spellId": 400533, "icon": "spell_nature_protectionformnature", "index": 100}]}, {"id": 82065, "name": "Harmonious Blooming", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82067, 82064], "prev": [82056, 82043, 82053], "entries": [{"id": 103121, "definitionId": 108126, "maxRanks": 2, "type": "passive", "name": "Harmonious Blooming", "spellId": 392256, "icon": "inv_misc_herb_felblossom", "index": 100}]}, {"id": 82080, "name": "Unstoppable Growth", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82067, 82079], "prev": [82081, 82045, 82056], "entries": [{"id": 103138, "definitionId": 108143, "maxRanks": 2, "type": "passive", "name": "Unstoppable Growth", "spellId": 382559, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82075, "name": "Regenerative Heartwood", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82079, 82076], "prev": [82081], "entries": [{"id": 103131, "definitionId": 108136, "maxRanks": 1, "type": "passive", "name": "Regenerative Heartwood", "spellId": 392116, "icon": "spell_nature_naturetouchgrow", "index": 100}]}, {"id": 82061, "name": "Spring Blossoms / Overgrowth", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82070, 82074, 82073], "prev": [82058, 82060, 82062], "entries": [{"id": 103116, "definitionId": 108121, "maxRanks": 1, "type": "passive", "name": "Spring Blossoms", "spellId": 207385, "icon": "inv_misc_trailofflowers", "index": 100}, {"id": 103115, "definitionId": 108120, "maxRanks": 1, "type": "active", "name": "Overgrowth", "spellId": 203651, "icon": "ability_druid_overgrowth", "index": 200}]}, {"id": 82064, "name": "Incarnation: Tree of Life / Convoke the Spirits", "type": "choice", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82070, 82063, 82072], "prev": [82062, 82065, 94535], "entries": [{"id": 103120, "definitionId": 108125, "maxRanks": 1, "type": "active", "name": "Incarnation: Tree of Life", "spellId": 33891, "icon": "ability_druid_improvedtreeform", "index": 100}, {"id": 103119, "definitionId": 108124, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "ability_ardenweald_druid", "index": 200}]}, {"id": 82067, "name": "Call of the Elder Druid", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82068, 82066, 82072], "prev": [82080, 82065], "entries": [{"id": 103123, "definitionId": 108128, "maxRanks": 1, "type": "passive", "name": "Call of the Elder Druid", "spellId": 426784, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82079, "name": "Verdant Infusion / Prosperity", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82068, 82076], "prev": [82075, 82080], "entries": [{"id": 103137, "definitionId": 108142, "maxRanks": 1, "type": "passive", "name": "Verdant Infusion", "spellId": 392410, "icon": "inv_relics_totemoflife", "index": 100}, {"id": 103136, "definitionId": 108141, "maxRanks": 1, "type": "passive", "name": "Prosperity", "spellId": 200383, "icon": "ability_druid_giftoftheearthmother", "index": 200}]}, {"id": 82074, "name": "Liveliness / Master Shapeshifter", "type": "choice", "posX": 9900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82073], "prev": [82060, 82061], "entries": [{"id": 103130, "definitionId": 108135, "maxRanks": 1, "type": "passive", "name": "Liveliness", "spellId": 426702, "icon": "spell_druid_symbiosis", "index": 100}, {"id": 114809, "definitionId": 119816, "maxRanks": 1, "type": "passive", "name": "Master Shapeshifter", "spellId": 289237, "icon": "ability_druid_mastershapeshifter", "index": 200}]}, {"id": 82070, "name": "Embrace of the Dream / Invigorate", "type": "choice", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82073, 82077], "prev": [82061, 82064], "entries": [{"id": 103126, "definitionId": 108131, "maxRanks": 1, "type": "passive", "name": "Embrace of the Dream", "spellId": 392124, "icon": "ability_druid_healinginstincts", "index": 100}, {"id": 123777, "definitionId": 128615, "maxRanks": 1, "type": "active", "name": "Invigorate", "spellId": 392160, "icon": "spell_nature_preservation", "index": 200}]}, {"id": 82063, "name": "Cenarius' Guidance", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82077], "prev": [82064], "entries": [{"id": 103118, "definitionId": 108123, "maxRanks": 1, "type": "passive", "name": "Cenarius' Guidance", "spellId": 393371, "icon": "ability_druid_treeoflife", "index": 100}]}, {"id": 82072, "name": "Budding Leaves", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82077, 82069], "prev": [82067, 82064], "entries": [{"id": 103128, "definitionId": 108133, "maxRanks": 2, "type": "passive", "name": "Budding Leaves", "spellId": 392167, "icon": "inv_misc_herb_fellotus", "index": 100}]}, {"id": 82066, "name": "Dream of Cenarius", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82069], "prev": [82067], "entries": [{"id": 103122, "definitionId": 108127, "maxRanks": 1, "type": "passive", "name": "Dream of Cenarius", "spellId": 158504, "icon": "ability_druid_dreamstate", "index": 100}]}, {"id": 82068, "name": "Thriving Vegetation", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82069, 82071], "prev": [82067, 82079], "entries": [{"id": 103124, "definitionId": 108129, "maxRanks": 2, "type": "passive", "name": "Thriving Vegetation", "spellId": 447131, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82076, "name": "Nurturing Dormancy", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82071], "prev": [82079, 82075], "entries": [{"id": 103132, "definitionId": 108137, "maxRanks": 1, "type": "passive", "name": "Nurturing Dormancy", "spellId": 392099, "icon": "ability_druid_replenish", "index": 100}]}, {"id": 82073, "name": "Photosynthesis / Flourish", "type": "choice", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82074, 82070, 82061], "entries": [{"id": 103129, "definitionId": 108134, "maxRanks": 1, "type": "passive", "name": "Photosynthesis", "spellId": 274902, "icon": "spell_lifegivingseed", "index": 200}, {"id": 123776, "definitionId": 128614, "maxRanks": 1, "type": "active", "name": "Flourish", "spellId": 197721, "icon": "spell_druid_wildburst", "index": 300}]}, {"id": 82077, "name": "Power of the Archdruid / Undergrowth", "type": "choice", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82063, 82072, 82070], "entries": [{"id": 103134, "definitionId": 108139, "maxRanks": 1, "type": "passive", "name": "Power of the Archdruid", "spellId": 392302, "icon": "spell_druid_rampantgrowth", "index": 100}, {"id": 103133, "definitionId": 108138, "maxRanks": 1, "type": "passive", "name": "Undergrowth", "spellId": 392301, "icon": "spell_druid_germination_rejuvenation", "index": 200}]}, {"id": 82069, "name": "Reforestation", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82068, 82066, 82072], "entries": [{"id": 103125, "definitionId": 108130, "maxRanks": 1, "type": "passive", "name": "Reforestation", "spellId": 392356, "icon": "inv_herbalism_70_yserallineseed", "index": 100}]}, {"id": 82071, "name": "Germination", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82076, 82068], "entries": [{"id": 103127, "definitionId": 108132, "maxRanks": 1, "type": "passive", "name": "Germination", "spellId": 155675, "icon": "spell_druid_germination", "index": 100}]}], "heroNodes": [{"id": 94626, "name": "Thriving Growth", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 22, "next": [94629, 94621, 94623], "prev": [], "entries": [{"id": 117226, "definitionId": 122238, "maxRanks": 1, "type": "passive", "name": "Thriving Growth", "spellId": 439528, "icon": "inv_ability_wildstalkerdruid_thrivinggrowth", "index": 100}], "freeNode": true}, {"id": 94629, "name": "Hunt Beneath the Open Skies", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94624], "prev": [94626], "entries": [{"id": 117231, "definitionId": 122243, "maxRanks": 1, "type": "passive", "name": "Hunt Beneath the Open Skies", "spellId": 439868, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 94623, "name": "Strategic Infusion", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94622], "prev": [94626], "entries": [{"id": 117223, "definitionId": 122235, "maxRanks": 1, "type": "passive", "name": "Strategic Infusion", "spellId": 439890, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 94621, "name": "Wildstalker's Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94625], "prev": [94626], "entries": [{"id": 117221, "definitionId": 122233, "maxRanks": 1, "type": "passive", "name": "Wildstalker's Power", "spellId": 439926, "icon": "ability_druid_skinteeth", "index": 100}]}, {"id": 94624, "name": "Lethal Preservation", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94631], "prev": [94629], "entries": [{"id": 117224, "definitionId": 122236, "maxRanks": 1, "type": "passive", "name": "Lethal Preservation", "spellId": 455461, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 94622, "name": "Entangling Vortex / Flower Walk", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94630], "prev": [94623], "entries": [{"id": 117222, "definitionId": 122234, "maxRanks": 1, "type": "passive", "name": "Entangling Vortex", "spellId": 439895, "icon": "spell_druid_ursolsvortex", "index": 100}, {"id": 119855, "definitionId": 124755, "maxRanks": 1, "type": "passive", "name": "Flower Walk", "spellId": 439901, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94625, "name": "Bond with Nature / Harmonious Constitution", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94628], "prev": [94621], "entries": [{"id": 117225, "definitionId": 122237, "maxRanks": 1, "type": "passive", "name": "Bond with Nature", "spellId": 439929, "icon": "inv_misc_marrigolds_01", "index": 100}, {"id": 119854, "definitionId": 124754, "maxRanks": 1, "type": "passive", "name": "Harmonious Constitution", "spellId": 440116, "icon": "talentspec_druid_restoration", "index": 200}]}, {"id": 94631, "name": "Resilient Flourishing / Root Network", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94624], "entries": [{"id": 117234, "definitionId": 122246, "maxRanks": 1, "type": "passive", "name": "Resilient Flourishing", "spellId": 439880, "icon": "inv_misc_herb_16", "index": 100}, {"id": 117233, "definitionId": 122245, "maxRanks": 1, "type": "passive", "name": "Root Network", "spellId": 439882, "icon": "ability_creature_poison_04", "index": 200}]}, {"id": 94630, "name": "Bursting Growth", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94622], "entries": [{"id": 117232, "definitionId": 122244, "maxRanks": 1, "type": "passive", "name": "Bursting Growth", "spellId": 440120, "icon": "inv_collections_armor_flowerbracelet_b_01", "index": 100}]}, {"id": 94628, "name": "Twin Sprouts / Implant", "type": "choice", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94625], "entries": [{"id": 117230, "definitionId": 122242, "maxRanks": 1, "type": "passive", "name": "Twin Sprouts", "spellId": 440117, "icon": "inv_misc_herb_evergreenmoss", "index": 100}, {"id": 117229, "definitionId": 122241, "maxRanks": 1, "type": "passive", "name": "Implant", "spellId": 440118, "icon": "ability_creature_poison_03", "index": 200}]}, {"id": 94627, "name": "Vigorous Creepers", "type": "single", "posX": 15290, "posY": 3900, "maxRanks": 1, "subTreeId": 22, "next": [], "prev": [94630, 94628, 94631], "entries": [{"id": 117227, "definitionId": 122239, "maxRanks": 1, "type": "passive", "name": "Vigorous Creepers", "spellId": 440119, "icon": "spell_druid_massentanglement", "index": 200}]}, {"id": 94600, "name": "Dream Surge", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "entryNode": true, "subTreeId": 23, "requiresNode": 0, "next": [94599, 94602, 94593], "prev": [], "entries": [{"id": 117195, "definitionId": 122207, "maxRanks": 1, "type": "passive", "name": "Dream Surge", "spellId": 433831, "icon": "inv_ability_keeperofthegrovedruid_dreamsurge_fiendly", "index": 100}], "freeNode": true}, {"id": 94599, "name": "Treants of the Moon", "type": "single", "posX": 7200, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94605], "prev": [94600], "entries": [{"id": 117194, "definitionId": 122206, "maxRanks": 1, "type": "passive", "name": "Treants of the Moon", "spellId": 428544, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94602, "name": "Expansiveness", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94604], "prev": [94600], "entries": [{"id": 117197, "definitionId": 122209, "maxRanks": 1, "type": "passive", "name": "Expansiveness", "spellId": 429399, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 94593, "name": "Protective Growth", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94595], "prev": [94600], "entries": [{"id": 117186, "definitionId": 122198, "maxRanks": 1, "type": "passive", "name": "Protective Growth", "spellId": 433748, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 94605, "name": "Power of Nature / Durability of Nature", "type": "choice", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94591], "prev": [94599], "entries": [{"id": 117201, "definitionId": 122213, "maxRanks": 1, "type": "passive", "name": "Power of Nature", "spellId": 428859, "icon": "spell_nature_naturesblessing", "index": 100}, {"id": 117200, "definitionId": 122212, "maxRanks": 1, "type": "passive", "name": "Durability of Nature", "spellId": 429227, "icon": "ability_druid_manatree", "index": 200}]}, {"id": 94604, "name": "Cenarius' Might", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94592], "prev": [94602], "entries": [{"id": 117199, "definitionId": 122211, "maxRanks": 1, "type": "passive", "name": "Cenarius' Might", "spellId": 455797, "icon": "achievement_reputation_guardiansofcenarius", "index": 100}]}, {"id": 94595, "name": "Grove's Inspiration / Potent Enchantments", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94601], "prev": [94593], "entries": [{"id": 117189, "definitionId": 122201, "maxRanks": 1, "type": "passive", "name": "Grove's Inspiration", "spellId": 429402, "icon": "ability_druid_protectionofthegrove", "index": 100}, {"id": 117188, "definitionId": 122200, "maxRanks": 1, "type": "passive", "name": "Potent Enchantments", "spellId": 429420, "icon": "ability_druid_serenefocus", "index": 200}]}, {"id": 94591, "name": "Bounteous Bloom / Early Spring", "type": "choice", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94606], "prev": [94605], "entries": [{"id": 117184, "definitionId": 122196, "maxRanks": 1, "type": "passive", "name": "Bounteous Bloom", "spellId": 429215, "icon": "inv_herbalism_70_dreamleaf", "index": 100}, {"id": 117895, "definitionId": 122907, "maxRanks": 1, "type": "passive", "name": "Early Spring", "spellId": 428937, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94592, "name": "Power of the Dream / Control of the Dream", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94604], "entries": [{"id": 117185, "definitionId": 122197, "maxRanks": 1, "type": "passive", "name": "Power of the Dream", "spellId": 434220, "icon": "ability_xavius_dreamsimulacrum", "index": 100}, {"id": 117894, "definitionId": 122906, "maxRanks": 1, "type": "passive", "name": "Control of the Dream", "spellId": 434249, "icon": "inv_cloth_outdooremeralddream_d_01_buckle", "index": 200}]}, {"id": 94601, "name": "Blooming Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94595], "entries": [{"id": 117196, "definitionId": 122208, "maxRanks": 1, "type": "passive", "name": "Blooming Infusion", "spellId": 429433, "icon": "spell_nature_thorns", "index": 100}]}, {"id": 94606, "name": "Harmony of the Grove", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [], "prev": [94601, 94592, 94591], "entries": [{"id": 117203, "definitionId": 122215, "maxRanks": 1, "type": "passive", "name": "Harmony of the Grove", "spellId": 428731, "icon": "ability_druid_forceofnature", "index": 100}]}], "subTreeNodes": [{"id": 99806, "name": "Keeper of the Grove / Wildstalker", "type": "subtree", "posX": 9300, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123299, "type": "subtree", "name": "Keeper of the Grove", "traitSubTreeId": 23, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-keeperofthegrove", "nodes": [94600, 94599, 94602, 94593, 94605, 94604, 94595, 94591, 94592, 94601, 94606]}, {"id": 123298, "type": "subtree", "name": "Wildstalker", "traitSubTreeId": 22, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-wildstalker", "nodes": [94626, 94629, 94623, 94621, 94624, 94622, 94625, 94631, 94630, 94628, 94627]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82084, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100222, 100223]} \ No newline at end of file +{"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Restoration", "specId": 105, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82203, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}], "freeNode": true}, {"id": 91040, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112963, "definitionId": 117968, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82203, "name": "Improved Nature's Cure", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103281, "definitionId": 108286, "maxRanks": 1, "type": "passive", "name": "Improved Nature's Cure", "spellId": 392378, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91040], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}], "freeNode": true}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91040], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82203, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82049, "name": "Lifebloom", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82048, 82050, 82083], "prev": [], "entries": [{"id": 103100, "definitionId": 108105, "maxRanks": 1, "type": "active", "name": "Lifebloom", "spellId": 33763, "icon": "inv_misc_herb_felblossom", "index": 100}]}, {"id": 82048, "name": "Ysera's Gift", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [82047], "prev": [82049], "entries": [{"id": 103099, "definitionId": 108104, "maxRanks": 1, "type": "passive", "name": "Ysera's Gift", "spellId": 145108, "icon": "inv_misc_head_dragon_green", "index": 100}]}, {"id": 82050, "name": "Nature's Swiftness", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82051, 103875], "prev": [82049], "entries": [{"id": 103101, "definitionId": 108106, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 132158, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 82083, "name": "Flash of Clarity", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82052], "prev": [82049], "entries": [{"id": 103142, "definitionId": 108147, "maxRanks": 1, "type": "passive", "name": "Flash of Clarity", "spellId": 392220, "icon": "spell_nature_crystalball", "index": 100}]}, {"id": 82047, "name": "Grove Tending", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82046, 82055, 82057], "prev": [82048], "entries": [{"id": 103098, "definitionId": 108103, "maxRanks": 1, "type": "passive", "name": "Grove Tending", "spellId": 383192, "icon": "inv_relics_idolofrejuvenation", "index": 100}]}, {"id": 82051, "name": "Nature's Splendor / Passing Seasons", "type": "choice", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82055], "prev": [82050], "entries": [{"id": 103103, "definitionId": 108108, "maxRanks": 1, "type": "passive", "name": "Nature's Splendor", "spellId": 392288, "icon": "spell_nature_spiritarmor", "index": 100}, {"id": 103102, "definitionId": 108107, "maxRanks": 1, "type": "passive", "name": "Passing Seasons", "spellId": 382550, "icon": "spell_nature_ravenform", "index": 200}]}, {"id": 103875, "name": "Twinleaf", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82055, 92674, 82054], "prev": [82050], "entries": [{"id": 128276, "definitionId": 133083, "maxRanks": 1, "type": "passive", "name": "Twinleaf", "spellId": 470540, "icon": "inv_misc_plant_02", "index": 100}]}, {"id": 82052, "name": "Abundance / Cenarion Ward", "type": "choice", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [92674, 103876, 82082], "prev": [82083], "entries": [{"id": 103105, "definitionId": 108110, "maxRanks": 1, "type": "passive", "name": "Abundance", "spellId": 207383, "icon": "ability_druid_empoweredrejuvination", "index": 100}, {"id": 103104, "definitionId": 108109, "maxRanks": 1, "type": "active", "name": "Cenarion Ward", "spellId": 102351, "icon": "ability_druid_naturalperfection", "index": 200}]}, {"id": 82046, "name": "Waking Dream", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82047], "entries": [{"id": 103097, "definitionId": 108102, "maxRanks": 1, "type": "passive", "name": "Waking Dream", "spellId": 392221, "icon": "inv_misc_head_dragon_green", "index": 100}]}, {"id": 82055, "name": "Improved Regrowth", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82057, 82054], "prev": [82047, 103875, 82051], "entries": [{"id": 103109, "definitionId": 108114, "maxRanks": 1, "type": "passive", "name": "Improved Regrowth", "spellId": 231032, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 92674, "name": "Tranquil Mind", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82054, 82082], "prev": [82052, 103875], "entries": [{"id": 114808, "definitionId": 119815, "maxRanks": 1, "type": "passive", "name": "Tranquil Mind", "spellId": 403521, "icon": "ability_druid_serenefocus", "index": 100}]}, {"id": 103876, "name": "Wildwood Roots", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82052], "entries": [{"id": 128277, "definitionId": 133084, "maxRanks": 1, "type": "passive", "name": "Wildwood Roots", "spellId": 470549, "icon": "inv_misc_herb_liferoot_stem", "index": 100}]}, {"id": 82057, "name": "Efflorescence", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82043, 82059, 103874], "prev": [82047, 82055], "entries": [{"id": 103111, "definitionId": 108116, "maxRanks": 1, "type": "active", "name": "Efflorescence", "spellId": 145205, "icon": "inv_misc_herb_talandrasrose", "index": 100}]}, {"id": 82054, "name": "Tranquility", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82053], "prev": [82055, 103875, 92674], "entries": [{"id": 103108, "definitionId": 108113, "maxRanks": 1, "type": "active", "name": "Tranquility", "spellId": 740, "icon": "spell_nature_tranquility", "index": 100}]}, {"id": 82082, "name": "Ironbark", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82045, 82056, 82081], "prev": [92674, 82052], "entries": [{"id": 103141, "definitionId": 108146, "maxRanks": 1, "type": "active", "name": "Ironbark", "spellId": 102342, "icon": "spell_druid_ironbark", "index": 100}]}, {"id": 82059, "name": "Soul of the Forest", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82058, 82060, 82062], "prev": [82057], "entries": [{"id": 103113, "definitionId": 108118, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158478, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 103874, "name": "Renewing Surge", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82062], "prev": [82057], "entries": [{"id": 128275, "definitionId": 133082, "maxRanks": 1, "type": "passive", "name": "Renewing Surge", "spellId": 470562, "icon": "inv_relics_idolofhealth", "index": 100}]}, {"id": 82043, "name": "Nourish / Grove Guardians", "type": "choice", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [94535, 82065, 82062], "prev": [82057], "entries": [{"id": 103094, "definitionId": 108099, "maxRanks": 1, "type": "active", "name": "Nourish", "spellId": 50464, "icon": "ability_druid_nourish", "index": 100}, {"id": 117104, "definitionId": 122116, "maxRanks": 1, "type": "active", "name": "Grove Guardians", "spellId": 102693, "icon": "ability_druid_forceofnature", "index": 200}]}, {"id": 82053, "name": "Inner Peace / Dreamstate", "type": "choice", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82065], "prev": [82054], "entries": [{"id": 103107, "definitionId": 108112, "maxRanks": 1, "type": "passive", "name": "Inner Peace", "spellId": 197073, "icon": "ability_druid_dreamstate", "index": 200}, {"id": 103106, "definitionId": 108111, "maxRanks": 1, "type": "passive", "name": "Dreamstate", "spellId": 392162, "icon": "spell_unused", "index": 300}]}, {"id": 82056, "name": "Cultivation", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82065, 82080], "prev": [82082], "entries": [{"id": 103110, "definitionId": 108115, "maxRanks": 1, "type": "passive", "name": "Cultivation", "spellId": 200390, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 82045, "name": "Improved Wild Growth", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82080], "prev": [82082], "entries": [{"id": 103096, "definitionId": 108101, "maxRanks": 1, "type": "passive", "name": "Improved Wild Growth", "spellId": 328025, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82081, "name": "Stonebark / Improved Ironbark", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82075, 82080, 82079], "prev": [82082], "entries": [{"id": 103140, "definitionId": 108145, "maxRanks": 1, "type": "passive", "name": "Stonebark", "spellId": 197061, "icon": "archaeology_5_0_crackedmogurunestone", "index": 100}, {"id": 103139, "definitionId": 108144, "maxRanks": 1, "type": "passive", "name": "Improved Ironbark", "spellId": 382552, "icon": "spell_druid_ironbark", "index": 200}]}, {"id": 82060, "name": "Verdancy", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82061, 82074], "prev": [82059], "entries": [{"id": 103114, "definitionId": 108119, "maxRanks": 1, "type": "passive", "name": "Verdancy", "spellId": 392325, "icon": "inv_10_herb_seed_magiccolor5", "index": 100}]}, {"id": 82058, "name": "Rampant Growth", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82061], "prev": [82059], "entries": [{"id": 103112, "definitionId": 108117, "maxRanks": 1, "type": "passive", "name": "Rampant Growth", "spellId": 404521, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 82062, "name": "Regenesis", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82061, 82064], "prev": [82059, 82043, 103874], "entries": [{"id": 103117, "definitionId": 108122, "maxRanks": 2, "type": "passive", "name": "Regenesis", "spellId": 383191, "icon": "inv_misc_herb_liferoot_stem", "index": 100}]}, {"id": 94535, "name": "Wild Synthesis", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82064], "prev": [82043], "entries": [{"id": 117105, "definitionId": 122117, "maxRanks": 1, "type": "passive", "name": "Wild Synthesis", "spellId": 400533, "icon": "spell_nature_protectionformnature", "index": 100}]}, {"id": 82065, "name": "Harmonious Blooming", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82067, 82064], "prev": [82056, 82043, 82053], "entries": [{"id": 103121, "definitionId": 108126, "maxRanks": 1, "type": "passive", "name": "Harmonious Blooming", "spellId": 392256, "icon": "inv_misc_herb_felblossom", "index": 100}]}, {"id": 82080, "name": "Unstoppable Growth", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82067, 82079], "prev": [82081, 82045, 82056], "entries": [{"id": 103138, "definitionId": 108143, "maxRanks": 2, "type": "passive", "name": "Unstoppable Growth", "spellId": 382559, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82075, "name": "Regenerative Heartwood", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82079, 82076], "prev": [82081], "entries": [{"id": 103131, "definitionId": 108136, "maxRanks": 1, "type": "passive", "name": "Regenerative Heartwood", "spellId": 392116, "icon": "spell_nature_naturetouchgrow", "index": 100}]}, {"id": 82061, "name": "Spring Blossoms / Overgrowth", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82070, 82074, 82073], "prev": [82058, 82060, 82062], "entries": [{"id": 103116, "definitionId": 108121, "maxRanks": 1, "type": "passive", "name": "Spring Blossoms", "spellId": 207385, "icon": "inv_misc_trailofflowers", "index": 100}, {"id": 103115, "definitionId": 108120, "maxRanks": 1, "type": "active", "name": "Overgrowth", "spellId": 203651, "icon": "ability_druid_overgrowth", "index": 200}]}, {"id": 82064, "name": "Incarnation: Tree of Life / Convoke the Spirits", "type": "choice", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82070, 82063, 82072], "prev": [82062, 82065, 94535], "entries": [{"id": 103120, "definitionId": 108125, "maxRanks": 1, "type": "active", "name": "Incarnation: Tree of Life", "spellId": 33891, "icon": "ability_druid_improvedtreeform", "index": 100}, {"id": 103119, "definitionId": 108124, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "inv_ability_druid_convokethespirits", "index": 200}]}, {"id": 82067, "name": "Call of the Elder Druid", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82068, 82066, 82072], "prev": [82080, 82065], "entries": [{"id": 103123, "definitionId": 108128, "maxRanks": 1, "type": "passive", "name": "Call of the Elder Druid", "spellId": 426784, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82079, "name": "Verdant Infusion / Prosperity", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82068, 82076, 103873], "prev": [82075, 82080, 82081], "entries": [{"id": 103137, "definitionId": 108142, "maxRanks": 1, "type": "passive", "name": "Verdant Infusion", "spellId": 392410, "icon": "inv_relics_totemoflife", "index": 100}, {"id": 103136, "definitionId": 108141, "maxRanks": 1, "type": "passive", "name": "Prosperity", "spellId": 200383, "icon": "ability_druid_giftoftheearthmother", "index": 200}]}, {"id": 82074, "name": "Liveliness / Master Shapeshifter", "type": "choice", "posX": 9900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82073], "prev": [82060, 82061], "entries": [{"id": 103130, "definitionId": 108135, "maxRanks": 1, "type": "passive", "name": "Liveliness", "spellId": 426702, "icon": "spell_druid_symbiosis", "index": 100}, {"id": 114809, "definitionId": 119816, "maxRanks": 1, "type": "passive", "name": "Master Shapeshifter", "spellId": 289237, "icon": "ability_druid_mastershapeshifter", "index": 200}]}, {"id": 82070, "name": "Embrace of the Dream / Invigorate", "type": "choice", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82073, 82077], "prev": [82061, 82064], "entries": [{"id": 103126, "definitionId": 108131, "maxRanks": 1, "type": "passive", "name": "Embrace of the Dream", "spellId": 392124, "icon": "ability_druid_healinginstincts", "index": 100}, {"id": 123777, "definitionId": 128615, "maxRanks": 1, "type": "active", "name": "Invigorate", "spellId": 392160, "icon": "spell_nature_preservation", "index": 200}]}, {"id": 82063, "name": "Cenarius' Guidance", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82077], "prev": [82064], "entries": [{"id": 103118, "definitionId": 108123, "maxRanks": 1, "type": "passive", "name": "Cenarius' Guidance", "spellId": 393371, "icon": "ability_druid_treeoflife", "index": 100}]}, {"id": 82072, "name": "Budding Leaves", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82077, 82069], "prev": [82064, 82067], "entries": [{"id": 103128, "definitionId": 108133, "maxRanks": 2, "type": "passive", "name": "Budding Leaves", "spellId": 392167, "icon": "inv_misc_herb_fellotus", "index": 100}]}, {"id": 82066, "name": "Dream of Cenarius", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82069], "prev": [82067], "entries": [{"id": 103122, "definitionId": 108127, "maxRanks": 1, "type": "passive", "name": "Dream of Cenarius", "spellId": 158504, "icon": "ability_druid_dreamstate", "index": 100}]}, {"id": 82068, "name": "Thriving Vegetation", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82069, 82071], "prev": [82079, 82067], "entries": [{"id": 103124, "definitionId": 108129, "maxRanks": 2, "type": "passive", "name": "Thriving Vegetation", "spellId": 447131, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 103873, "name": "Forest's Flow", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82071], "prev": [82079], "entries": [{"id": 128274, "definitionId": 133081, "maxRanks": 1, "type": "passive", "name": "Forest's Flow", "spellId": 470581, "icon": "ability_monk_explodingjadeblossom", "index": 100}]}, {"id": 82076, "name": "Nurturing Dormancy", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82071], "prev": [82079, 82075], "entries": [{"id": 103132, "definitionId": 108137, "maxRanks": 1, "type": "passive", "name": "Nurturing Dormancy", "spellId": 392099, "icon": "ability_druid_replenish", "index": 100}]}, {"id": 82073, "name": "Photosynthesis / Flourish", "type": "choice", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82074, 82070, 82061], "entries": [{"id": 103129, "definitionId": 108134, "maxRanks": 1, "type": "passive", "name": "Photosynthesis", "spellId": 274902, "icon": "spell_lifegivingseed", "index": 200}, {"id": 123776, "definitionId": 128614, "maxRanks": 1, "type": "active", "name": "Flourish", "spellId": 197721, "icon": "spell_druid_wildburst", "index": 300}]}, {"id": 82077, "name": "Power of the Archdruid / Undergrowth", "type": "choice", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82063, 82072, 82070], "entries": [{"id": 103134, "definitionId": 108139, "maxRanks": 1, "type": "passive", "name": "Power of the Archdruid", "spellId": 392302, "icon": "spell_druid_rampantgrowth", "index": 100}, {"id": 103133, "definitionId": 108138, "maxRanks": 1, "type": "passive", "name": "Undergrowth", "spellId": 392301, "icon": "spell_druid_germination_rejuvenation", "index": 200}]}, {"id": 82069, "name": "Reforestation", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82068, 82072, 82066], "entries": [{"id": 103125, "definitionId": 108130, "maxRanks": 1, "type": "passive", "name": "Reforestation", "spellId": 392356, "icon": "inv_herbalism_70_yserallineseed", "index": 100}]}, {"id": 82071, "name": "Germination", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82076, 82068, 103873], "entries": [{"id": 103127, "definitionId": 108132, "maxRanks": 1, "type": "passive", "name": "Germination", "spellId": 155675, "icon": "spell_druid_germination", "index": 100}]}], "heroNodes": [{"id": 94626, "name": "Thriving Growth", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 22, "next": [94629, 94621, 94623], "prev": [], "entries": [{"id": 117226, "definitionId": 122238, "maxRanks": 1, "type": "passive", "name": "Thriving Growth", "spellId": 439528, "icon": "inv_ability_wildstalkerdruid_thrivinggrowth", "index": 100}], "freeNode": true}, {"id": 94629, "name": "Hunt Beneath the Open Skies", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94624], "prev": [94626], "entries": [{"id": 117231, "definitionId": 122243, "maxRanks": 1, "type": "passive", "name": "Hunt Beneath the Open Skies", "spellId": 439868, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 94623, "name": "Strategic Infusion", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94622], "prev": [94626], "entries": [{"id": 117223, "definitionId": 122235, "maxRanks": 1, "type": "passive", "name": "Strategic Infusion", "spellId": 439890, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 94621, "name": "Wildstalker's Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94625], "prev": [94626], "entries": [{"id": 117221, "definitionId": 122233, "maxRanks": 1, "type": "passive", "name": "Wildstalker's Power", "spellId": 439926, "icon": "ability_druid_skinteeth", "index": 100}]}, {"id": 94624, "name": "Lethal Preservation", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94631], "prev": [94629], "entries": [{"id": 117224, "definitionId": 122236, "maxRanks": 1, "type": "passive", "name": "Lethal Preservation", "spellId": 455461, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 94622, "name": "Entangling Vortex / Flower Walk", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94630], "prev": [94623], "entries": [{"id": 117222, "definitionId": 122234, "maxRanks": 1, "type": "passive", "name": "Entangling Vortex", "spellId": 439895, "icon": "spell_druid_ursolsvortex", "index": 100}, {"id": 119855, "definitionId": 124755, "maxRanks": 1, "type": "passive", "name": "Flower Walk", "spellId": 439901, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94625, "name": "Bond with Nature / Harmonious Constitution", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94628], "prev": [94621], "entries": [{"id": 117225, "definitionId": 122237, "maxRanks": 1, "type": "passive", "name": "Bond with Nature", "spellId": 439929, "icon": "inv_misc_marrigolds_01", "index": 100}, {"id": 119854, "definitionId": 124754, "maxRanks": 1, "type": "passive", "name": "Harmonious Constitution", "spellId": 440116, "icon": "talentspec_druid_restoration", "index": 200}]}, {"id": 94631, "name": "Resilient Flourishing / Root Network", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94624], "entries": [{"id": 117234, "definitionId": 122246, "maxRanks": 1, "type": "passive", "name": "Resilient Flourishing", "spellId": 439880, "icon": "inv_misc_herb_16", "index": 100}, {"id": 117233, "definitionId": 122245, "maxRanks": 1, "type": "passive", "name": "Root Network", "spellId": 439882, "icon": "ability_creature_poison_04", "index": 200}]}, {"id": 94630, "name": "Bursting Growth", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94622], "entries": [{"id": 117232, "definitionId": 122244, "maxRanks": 1, "type": "passive", "name": "Bursting Growth", "spellId": 440120, "icon": "inv_collections_armor_flowerbracelet_b_01", "index": 100}]}, {"id": 94628, "name": "Twin Sprouts / Implant", "type": "choice", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94625], "entries": [{"id": 117230, "definitionId": 122242, "maxRanks": 1, "type": "passive", "name": "Twin Sprouts", "spellId": 440117, "icon": "inv_misc_herb_evergreenmoss", "index": 100}, {"id": 117229, "definitionId": 122241, "maxRanks": 1, "type": "passive", "name": "Implant", "spellId": 440118, "icon": "ability_creature_poison_03", "index": 200}]}, {"id": 94627, "name": "Vigorous Creepers", "type": "single", "posX": 15290, "posY": 3900, "maxRanks": 1, "subTreeId": 22, "next": [], "prev": [94630, 94628, 94631], "entries": [{"id": 117227, "definitionId": 122239, "maxRanks": 1, "type": "passive", "name": "Vigorous Creepers", "spellId": 440119, "icon": "spell_druid_massentanglement", "index": 200}]}, {"id": 94600, "name": "Dream Surge", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "entryNode": true, "subTreeId": 23, "requiresNode": 0, "next": [94599, 94602, 94593], "prev": [], "entries": [{"id": 117195, "definitionId": 122207, "maxRanks": 1, "type": "passive", "name": "Dream Surge", "spellId": 433831, "icon": "inv_ability_keeperofthegrovedruid_dreamsurge_fiendly", "index": 100}], "freeNode": true}, {"id": 94599, "name": "Treants of the Moon", "type": "single", "posX": 7200, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94605], "prev": [94600], "entries": [{"id": 117194, "definitionId": 122206, "maxRanks": 1, "type": "passive", "name": "Treants of the Moon", "spellId": 428544, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94602, "name": "Expansiveness", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94604], "prev": [94600], "entries": [{"id": 117197, "definitionId": 122209, "maxRanks": 1, "type": "passive", "name": "Expansiveness", "spellId": 429399, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 94593, "name": "Protective Growth", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94595], "prev": [94600], "entries": [{"id": 117186, "definitionId": 122198, "maxRanks": 1, "type": "passive", "name": "Protective Growth", "spellId": 433748, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 94605, "name": "Power of Nature / Durability of Nature", "type": "choice", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94591], "prev": [94599], "entries": [{"id": 117201, "definitionId": 122213, "maxRanks": 1, "type": "passive", "name": "Power of Nature", "spellId": 428859, "icon": "spell_nature_naturesblessing", "index": 100}, {"id": 117200, "definitionId": 122212, "maxRanks": 1, "type": "passive", "name": "Durability of Nature", "spellId": 429227, "icon": "ability_druid_manatree", "index": 200}]}, {"id": 94604, "name": "Cenarius' Might", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94592], "prev": [94602], "entries": [{"id": 117199, "definitionId": 122211, "maxRanks": 1, "type": "passive", "name": "Cenarius' Might", "spellId": 455797, "icon": "achievement_reputation_guardiansofcenarius", "index": 100}]}, {"id": 94595, "name": "Grove's Inspiration / Potent Enchantments", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94601], "prev": [94593], "entries": [{"id": 117189, "definitionId": 122201, "maxRanks": 1, "type": "passive", "name": "Grove's Inspiration", "spellId": 429402, "icon": "ability_druid_protectionofthegrove", "index": 100}, {"id": 117188, "definitionId": 122200, "maxRanks": 1, "type": "passive", "name": "Potent Enchantments", "spellId": 429420, "icon": "ability_druid_serenefocus", "index": 200}]}, {"id": 94591, "name": "Bounteous Bloom / Early Spring", "type": "choice", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94606], "prev": [94605], "entries": [{"id": 117184, "definitionId": 122196, "maxRanks": 1, "type": "passive", "name": "Bounteous Bloom", "spellId": 429215, "icon": "inv_herbalism_70_dreamleaf", "index": 100}, {"id": 117895, "definitionId": 122907, "maxRanks": 1, "type": "passive", "name": "Early Spring", "spellId": 428937, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94592, "name": "Power of the Dream / Control of the Dream", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94604], "entries": [{"id": 117185, "definitionId": 122197, "maxRanks": 1, "type": "passive", "name": "Power of the Dream", "spellId": 434220, "icon": "ability_xavius_dreamsimulacrum", "index": 100}, {"id": 117894, "definitionId": 122906, "maxRanks": 1, "type": "passive", "name": "Control of the Dream", "spellId": 434249, "icon": "inv_cloth_outdooremeralddream_d_01_buckle", "index": 200}]}, {"id": 94601, "name": "Blooming Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94595], "entries": [{"id": 117196, "definitionId": 122208, "maxRanks": 1, "type": "passive", "name": "Blooming Infusion", "spellId": 429433, "icon": "spell_nature_thorns", "index": 100}]}, {"id": 94606, "name": "Harmony of the Grove", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [], "prev": [94601, 94592, 94591], "entries": [{"id": 117203, "definitionId": 122215, "maxRanks": 1, "type": "passive", "name": "Harmony of the Grove", "spellId": 428731, "icon": "ability_druid_forceofnature", "index": 100}]}], "subTreeNodes": [{"id": 99806, "name": "Keeper of the Grove / Wildstalker", "type": "subtree", "posX": 9300, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123299, "type": "subtree", "name": "Keeper of the Grove", "traitSubTreeId": 23, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-keeperofthegrove", "nodes": [94600, 94599, 94602, 94593, 94605, 94604, 94595, 94591, 94592, 94601, 94606]}, {"id": 123298, "type": "subtree", "name": "Wildstalker", "traitSubTreeId": 22, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-wildstalker", "nodes": [94626, 94629, 94623, 94621, 94624, 94622, 94625, 94631, 94630, 94628, 94627]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100223, 103846, 103847, 103873, 103874, 103875, 103876]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/evoker_augmentation.json b/simc_support/game_data/data_files/trees/evoker_augmentation.json index 7a417ec..32c5e03 100644 --- a/simc_support/game_data/data_files/trees/evoker_augmentation.json +++ b/simc_support/game_data/data_files/trees/evoker_augmentation.json @@ -1 +1 @@ -{"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Augmentation", "specId": 1473, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}], "freeNode": true}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93303], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}], "freeNode": true}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}]}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 93303, "name": "Permeating Chill", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 115612, "definitionId": 120624, "maxRanks": 1, "type": "passive", "name": "Permeating Chill", "spellId": 370897, "icon": "spell_frost_coldhearted", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}]}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 93296], "prev": [93312, 93303], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93303], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [93296, 93290, 93294], "prev": [93303, 93341], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 93296, "name": "Heavy Wingbeats / Clobbering Sweep", "type": "choice", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93302, 93295], "entries": [{"id": 115605, "definitionId": 120617, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}, {"id": 115604, "definitionId": 120616, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 200}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93198, "name": "Ebon Might", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93200, 93220], "prev": [], "entries": [{"id": 115496, "definitionId": 120508, "maxRanks": 1, "type": "active", "name": "Ebon Might", "spellId": 395152, "icon": "spell_sarkareth", "index": 100}]}, {"id": 93200, "name": "Eruption", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93199, 93208], "prev": [93198], "entries": [{"id": 115498, "definitionId": 120510, "maxRanks": 1, "type": "active", "name": "Eruption", "spellId": 395160, "icon": "ability_evoker_eruption", "index": 100}]}, {"id": 93220, "name": "Essence Burst", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93219, 93221], "prev": [93198], "entries": [{"id": 115520, "definitionId": 120532, "maxRanks": 1, "type": "passive", "name": "Essence Burst", "spellId": 396187, "icon": "ability_evoker_essenceburst", "index": 100}]}, {"id": 93199, "name": "Imposing Presence / Inner Radiance", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93203], "prev": [93200], "entries": [{"id": 115497, "definitionId": 120509, "maxRanks": 1, "type": "passive", "name": "Imposing Presence", "spellId": 371016, "icon": "ability_evoker_quell", "index": 100}, {"id": 115690, "definitionId": 120702, "maxRanks": 1, "type": "passive", "name": "Inner Radiance", "spellId": 386405, "icon": "spell_holy_spellwarding", "index": 200}]}, {"id": 93208, "name": "Ricocheting Pyroclast", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [93203, 93234], "prev": [93200], "entries": [{"id": 115507, "definitionId": 120519, "maxRanks": 1, "type": "passive", "name": "Ricocheting Pyroclast", "spellId": 406659, "icon": "ability_rhyolith_volcano", "index": 100}]}, {"id": 93219, "name": "Essence Attunement", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [93234, 93222], "prev": [93220], "entries": [{"id": 115519, "definitionId": 120531, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93221, "name": "Pupil of Alexstrasza / Echoing Strike", "type": "choice", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93222], "prev": [93220], "entries": [{"id": 115521, "definitionId": 120533, "maxRanks": 1, "type": "passive", "name": "Pupil of Alexstrasza", "spellId": 407814, "icon": "ability_evoker_pupilofalexstraza", "index": 100}, {"id": 115680, "definitionId": 120692, "maxRanks": 1, "type": "passive", "name": "Echoing Strike", "spellId": 410784, "icon": "ability_evoker_echoingstrike", "index": 200}]}, {"id": 93203, "name": "Upheaval", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [93368, 93201, 93206], "prev": [93208, 93199], "entries": [{"id": 115502, "definitionId": 120514, "maxRanks": 1, "type": "active", "name": "Upheaval", "spellId": 396286, "icon": "ability_evoker_upheaval", "index": 100}]}, {"id": 93234, "name": "Breath of Eons", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93235, 93382], "prev": [93219, 93208], "entries": [{"id": 115536, "definitionId": 120548, "maxRanks": 1, "type": "active", "name": "Breath of Eons", "spellId": 403631, "icon": "ability_evoker_breathofeons", "index": 100}]}, {"id": 93222, "name": "Defy Fate", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [93382, 93360, 93195], "prev": [93221, 93219], "entries": [{"id": 115522, "definitionId": 120534, "maxRanks": 1, "type": "passive", "name": "Defy Fate", "spellId": 404195, "icon": "ability_evoker_defyfate", "index": 100}]}, {"id": 93368, "name": "Seismic Slam", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209, 93202], "prev": [93203], "entries": [{"id": 115688, "definitionId": 120700, "maxRanks": 1, "type": "passive", "name": "Seismic Slam", "spellId": 408543, "icon": "ability_evoker_seismicslam", "index": 100}]}, {"id": 93201, "name": "Power Nexus", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209], "prev": [93203], "entries": [{"id": 115499, "definitionId": 120511, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93206, "name": "Volcanism", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209, 93218], "prev": [93203], "entries": [{"id": 115505, "definitionId": 120517, "maxRanks": 1, "type": "passive", "name": "Volcanism", "spellId": 406904, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 93235, "name": "Perilous Fate / Chrono Ward", "type": "choice", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93218], "prev": [93234], "entries": [{"id": 115537, "definitionId": 120549, "maxRanks": 1, "type": "passive", "name": "Perilous Fate", "spellId": 410253, "icon": "spell_shadow_lastingafflictions", "index": 100}, {"id": 115706, "definitionId": 120718, "maxRanks": 1, "type": "passive", "name": "Chrono Ward", "spellId": 409676, "icon": "ability_evoker_bronze_01", "index": 200}]}, {"id": 93382, "name": "Stretch Time", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93218, 93358], "prev": [93222, 93234], "entries": [{"id": 115534, "definitionId": 120546, "maxRanks": 1, "type": "passive", "name": "Stretch Time", "spellId": 410352, "icon": "ability_evoker_timedilation", "index": 100}]}, {"id": 93360, "name": "Timelessness", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93358], "prev": [93222], "entries": [{"id": 115679, "definitionId": 120691, "maxRanks": 1, "type": "active", "name": "Timelessness", "spellId": 412710, "icon": "ability_evoker_timelessness", "index": 100}]}, {"id": 93195, "name": "Bestow Weyrnstone", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93358], "prev": [93222], "entries": [{"id": 115493, "definitionId": 120505, "maxRanks": 1, "type": "active", "name": "Bestow Weyrnstone", "spellId": 408233, "icon": "ability_evoker_bestowweyrnstone", "index": 100}]}, {"id": 93209, "name": "Blistering Scales", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93202, 93211, 93207], "prev": [93368, 93206, 93201], "entries": [{"id": 115508, "definitionId": 120520, "maxRanks": 1, "type": "active", "name": "Blistering Scales", "spellId": 360827, "icon": "ability_evoker_blisteringscales", "index": 100}]}, {"id": 93218, "name": "Draconic Attunements", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93207, 93217, 93225], "prev": [93206, 93235, 93382], "entries": [{"id": 115518, "definitionId": 120530, "maxRanks": 1, "type": "active", "name": "Draconic Attunements", "spellId": 403208, "icon": "ability_evoker_draconicattunements", "index": 100}]}, {"id": 93358, "name": "Prescience", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93225, 93367, 93215], "prev": [93360, 93195, 93382], "entries": [{"id": 115675, "definitionId": 120687, "maxRanks": 1, "type": "active", "name": "Prescience", "spellId": 409311, "icon": "ability_evoker_prescience", "index": 100}]}, {"id": 93202, "name": "Unyielding Domain / Tectonic Locus", "type": "choice", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93209, 93368], "entries": [{"id": 115501, "definitionId": 120513, "maxRanks": 1, "type": "passive", "name": "Unyielding Domain", "spellId": 412733, "icon": "spell_shaman_stormearthfire", "index": 100}, {"id": 115500, "definitionId": 120512, "maxRanks": 1, "type": "passive", "name": "Tectonic Locus", "spellId": 408002, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 93211, "name": "Regenerative Chitin / Molten Blood", "type": "choice", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93210, 93231, 93212], "prev": [93209], "entries": [{"id": 115511, "definitionId": 120523, "maxRanks": 1, "type": "passive", "name": "Regenerative Chitin", "spellId": 406907, "icon": "inv_tradeskill_skinning_prismaticscale", "index": 100}, {"id": 115510, "definitionId": 120522, "maxRanks": 1, "type": "passive", "name": "Molten Blood", "spellId": 410643, "icon": "spell_shaman_spewlava", "index": 200}]}, {"id": 93207, "name": "Momentum Shift", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93212], "prev": [93218, 93209], "entries": [{"id": 115506, "definitionId": 120518, "maxRanks": 1, "type": "passive", "name": "Momentum Shift", "spellId": 408004, "icon": "ability_priest_voidshift", "index": 100}]}, {"id": 93217, "name": "Aspects' Favor", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [93212, 93230], "prev": [93218], "entries": [{"id": 115517, "definitionId": 120529, "maxRanks": 2, "type": "passive", "name": "Aspects' Favor", "spellId": 407243, "icon": "ability_evoker_aspectsfavor", "index": 100}]}, {"id": 93225, "name": "Arcane Reach", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93230], "prev": [93358, 93218], "entries": [{"id": 115526, "definitionId": 120538, "maxRanks": 1, "type": "passive", "name": "Arcane Reach", "spellId": 454983, "icon": "classicon_evoker", "index": 100}]}, {"id": 93367, "name": "Fate Mirror", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93230, 93223], "prev": [93358], "entries": [{"id": 115685, "definitionId": 120697, "maxRanks": 1, "type": "passive", "name": "Fate Mirror", "spellId": 412774, "icon": "trade_archaeology_highbornesoulmirror", "index": 100}]}, {"id": 93215, "name": "Symbiotic Bloom", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [93359], "prev": [93358], "entries": [{"id": 115515, "definitionId": 120527, "maxRanks": 2, "type": "passive", "name": "Symbiotic Bloom", "spellId": 410685, "icon": "inv_10_herb_seed_magiccolor5", "index": 100}]}, {"id": 93210, "name": "Reactive Hide", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229], "prev": [93211], "entries": [{"id": 115509, "definitionId": 120521, "maxRanks": 1, "type": "passive", "name": "Reactive Hide", "spellId": 409329, "icon": "ability_evoker_reactivehide", "index": 100}]}, {"id": 93231, "name": "Font of Magic", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229], "prev": [93211], "entries": [{"id": 115532, "definitionId": 120544, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 408083, "icon": "ability_evoker_fontofmagic", "index": 100}]}, {"id": 93212, "name": "Hoarded Power", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229, 102248, 93232], "prev": [93217, 93211, 93207], "entries": [{"id": 115512, "definitionId": 120524, "maxRanks": 1, "type": "passive", "name": "Hoarded Power", "spellId": 375796, "icon": "ability_evoker_innatemagic2", "index": 100}]}, {"id": 93230, "name": "Ignition Rush", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93232, 93227], "prev": [93217, 93367, 93225], "entries": [{"id": 115531, "definitionId": 120543, "maxRanks": 1, "type": "passive", "name": "Ignition Rush", "spellId": 408775, "icon": "spell_fire_immolation", "index": 100}]}, {"id": 93223, "name": "Anachronism", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93227, 93197], "prev": [93367], "entries": [{"id": 115523, "definitionId": 120535, "maxRanks": 1, "type": "passive", "name": "Anachronism", "spellId": 407869, "icon": "ability_evoker_essenceburst6", "index": 100}]}, {"id": 93359, "name": "Prolong Life / Dream of Spring", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93197], "prev": [93215], "entries": [{"id": 115678, "definitionId": 120690, "maxRanks": 1, "type": "passive", "name": "Prolong Life", "spellId": 410687, "icon": "ability_evoker_reversion_green", "index": 100}, {"id": 115881, "definitionId": 120893, "maxRanks": 1, "type": "passive", "name": "Dream of Spring", "spellId": 414969, "icon": "ability_evoker_masterylifebinder", "index": 200}]}, {"id": 93229, "name": "Accretion", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93205], "prev": [93212, 93210, 93231], "entries": [{"id": 115530, "definitionId": 120542, "maxRanks": 1, "type": "passive", "name": "Accretion", "spellId": 407876, "icon": "ability_evoker_accretion", "index": 100}]}, {"id": 102248, "name": "Imminent Destruction", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93226], "prev": [93212], "entries": [{"id": 126304, "definitionId": 131130, "maxRanks": 1, "type": "passive", "name": "Imminent Destruction", "spellId": 459537, "icon": "spell_burningbladeshaman_blazing_radiance", "index": 100}]}, {"id": 93232, "name": "Time Skip", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93369], "prev": [93230, 93212], "entries": [{"id": 115533, "definitionId": 120545, "maxRanks": 1, "type": "active", "name": "Time Skip", "spellId": 404977, "icon": "ability_evoker_timeskip", "index": 100}]}, {"id": 93227, "name": "Motes of Possibility", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93213], "prev": [93230, 93223], "entries": [{"id": 115528, "definitionId": 120540, "maxRanks": 1, "type": "passive", "name": "Motes of Possibility", "spellId": 409267, "icon": "ability_evoker_motesofpossibility", "index": 100}]}, {"id": 93197, "name": "Inferno's Blessing", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102249], "prev": [93223, 93359], "entries": [{"id": 115495, "definitionId": 120507, "maxRanks": 1, "type": "passive", "name": "Inferno's Blessing", "spellId": 410261, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 93205, "name": "Rumbling Earth", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93229], "entries": [{"id": 115504, "definitionId": 120516, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 459120, "icon": "ability_evoker_geomancy", "index": 100}]}, {"id": 93226, "name": "Plot the Future", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102248], "entries": [{"id": 115527, "definitionId": 120539, "maxRanks": 1, "type": "passive", "name": "Plot the Future", "spellId": 407866, "icon": "ability_evoker_plotthefuture", "index": 100}]}, {"id": 93369, "name": "Tomorrow, Today / Interwoven Threads", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93232], "entries": [{"id": 115687, "definitionId": 120699, "maxRanks": 1, "type": "passive", "name": "Tomorrow, Today", "spellId": 412723, "icon": "ability_evoker_rewind2", "index": 100}, {"id": 115686, "definitionId": 120698, "maxRanks": 1, "type": "passive", "name": "Interwoven Threads", "spellId": 412713, "icon": "inv_enchant_optionalreagent_01", "index": 200}]}, {"id": 93213, "name": "Overlord", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93227], "entries": [{"id": 115513, "definitionId": 120525, "maxRanks": 1, "type": "passive", "name": "Overlord", "spellId": 410260, "icon": "ability_evoker_overlord", "index": 100}]}, {"id": 102249, "name": "Molten Embers", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93197], "entries": [{"id": 126305, "definitionId": 131131, "maxRanks": 1, "type": "passive", "name": "Molten Embers", "spellId": 459725, "icon": "ability_evoker_earthensky", "index": 100}]}], "heroNodes": [{"id": 98931, "name": "Mass Eruption", "type": "single", "posX": 15000, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 36, "next": [94952, 94936, 94944], "prev": [], "entries": [{"id": 122279, "definitionId": 127179, "maxRanks": 1, "type": "passive", "name": "Mass Eruption", "spellId": 438587, "icon": "ability_evoker_eruption", "index": 100}], "freeNode": true}, {"id": 94952, "name": "Might of the Black Dragonflight", "type": "single", "posX": 14400, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94921], "prev": [94939, 98931], "entries": [{"id": 117549, "definitionId": 122561, "maxRanks": 1, "type": "passive", "name": "Might of the Black Dragonflight", "spellId": 441705, "icon": "ability_evoker_blackattunementalt", "index": 100}]}, {"id": 94936, "name": "Bombardments", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94953], "prev": [94939, 98931], "entries": [{"id": 117533, "definitionId": 122545, "maxRanks": 1, "type": "passive", "name": "Bombardments", "spellId": 434300, "icon": "inv_ability_scalecommanderevoker_bombardments", "index": 100}]}, {"id": 94944, "name": "Onslaught", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94934], "prev": [94939, 98931], "entries": [{"id": 117541, "definitionId": 122553, "maxRanks": 1, "type": "passive", "name": "Onslaught", "spellId": 441245, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 94921, "name": "Melt Armor", "type": "single", "posX": 14400, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94933], "prev": [94952], "entries": [{"id": 117518, "definitionId": 122530, "maxRanks": 1, "type": "passive", "name": "Melt Armor", "spellId": 441176, "icon": "inv_10_gearupgrade_drakesshadowflameenhancedcrest", "index": 100}]}, {"id": 94953, "name": "Wingleader", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94928], "prev": [94936], "entries": [{"id": 117550, "definitionId": 122562, "maxRanks": 1, "type": "passive", "name": "Wingleader", "spellId": 441206, "icon": "ability_racial_soar", "index": 100}]}, {"id": 94934, "name": "Unrelenting Siege", "type": "single", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94943], "prev": [94944], "entries": [{"id": 117531, "definitionId": 122543, "maxRanks": 1, "type": "passive", "name": "Unrelenting Siege", "spellId": 441246, "icon": "ability_siege_engineer_superheated", "index": 100}]}, {"id": 94933, "name": "Hardened Scales / Menacing Presence", "type": "choice", "posX": 14400, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94921], "entries": [{"id": 117530, "definitionId": 122542, "maxRanks": 1, "type": "passive", "name": "Hardened Scales", "spellId": 441180, "icon": "inv_10_skinning_scales_black", "index": 100}, {"id": 120125, "definitionId": 125025, "maxRanks": 1, "type": "passive", "name": "Menacing Presence", "spellId": 441181, "icon": "ability_racial_wingbuffet", "index": 200}]}, {"id": 94928, "name": "Extended Battle / Diverted Power", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94953], "entries": [{"id": 117525, "definitionId": 122537, "maxRanks": 1, "type": "passive", "name": "Extended Battle", "spellId": 441212, "icon": "ability_evoker_divideandconquer", "index": 100}, {"id": 120124, "definitionId": 125024, "maxRanks": 1, "type": "passive", "name": "Diverted Power", "spellId": 441219, "icon": "ability_evoker_powerswell", "index": 200}]}, {"id": 94943, "name": "Nimble Flyer / Slipstream", "type": "choice", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94934], "entries": [{"id": 117540, "definitionId": 122552, "maxRanks": 1, "type": "passive", "name": "Nimble Flyer", "spellId": 441253, "icon": "ability_evoker_hover", "index": 100}, {"id": 120123, "definitionId": 125023, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 441257, "icon": "ability_dragonriding_barrelroll01", "index": 200}]}, {"id": 94941, "name": "Maneuverability", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 36, "next": [], "prev": [94928, 94933, 94943], "entries": [{"id": 117538, "definitionId": 122550, "maxRanks": 1, "type": "passive", "name": "Maneuverability", "spellId": 433871, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 94954, "name": "Chrono Flame", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 38, "next": [94955, 94948, 94925], "prev": [], "entries": [{"id": 117551, "definitionId": 122563, "maxRanks": 1, "type": "passive", "name": "Chrono Flame", "spellId": 431442, "icon": "inv_ability_chronowardenevoker_chronoflame", "index": 100}], "freeNode": true}, {"id": 94948, "name": "Warp", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94935], "prev": [94954], "entries": [{"id": 117545, "definitionId": 122557, "maxRanks": 1, "type": "passive", "name": "Warp", "spellId": 429483, "icon": "ability_evoker_spatialparadox", "index": 100}]}, {"id": 94955, "name": "Temporal Burst", "type": "single", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "requiresNode": 93350, "next": [94947], "prev": [94954], "entries": [{"id": 117552, "definitionId": 122564, "maxRanks": 1, "type": "passive", "name": "Temporal Burst", "spellId": 431695, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 94925, "name": "Reverberations", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94951], "prev": [94954], "entries": [{"id": 117522, "definitionId": 122534, "maxRanks": 1, "type": "passive", "name": "Reverberations", "spellId": 431615, "icon": "ability_evoker_giftoftheaspects", "index": 100}]}, {"id": 94935, "name": "Temporality / Motes of Acceleration", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94932], "prev": [94948], "entries": [{"id": 117532, "definitionId": 122544, "maxRanks": 1, "type": "passive", "name": "Temporality", "spellId": 431873, "icon": "ability_evoker_return", "index": 100}, {"id": 117784, "definitionId": 122796, "maxRanks": 1, "type": "passive", "name": "Motes of Acceleration", "spellId": 432008, "icon": "item_timemote_icon", "index": 200}]}, {"id": 94947, "name": "Threads of Fate", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94930], "prev": [94955], "entries": [{"id": 117544, "definitionId": 122556, "maxRanks": 1, "type": "passive", "name": "Threads of Fate", "spellId": 431715, "icon": "ability_evoker_sandsoftime", "index": 100}]}, {"id": 94951, "name": "Primacy", "type": "single", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94942], "prev": [94925], "entries": [{"id": 117548, "definitionId": 122560, "maxRanks": 1, "type": "passive", "name": "Primacy", "spellId": 431657, "icon": "inv_misc_pocketwatch_01", "index": 100}]}, {"id": 94932, "name": "Double-time / Time Convergence", "type": "choice", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94935], "entries": [{"id": 117529, "definitionId": 122541, "maxRanks": 1, "type": "passive", "name": "Double-time", "spellId": 431874, "icon": "spell_holy_borrowedtime", "index": 100}, {"id": 117786, "definitionId": 122798, "maxRanks": 1, "type": "passive", "name": "Time Convergence", "spellId": 431984, "icon": "ability_evoker_plotthefuture", "index": 200}]}, {"id": 94930, "name": "Master of Destiny / Instability Matrix", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94947], "entries": [{"id": 117527, "definitionId": 122539, "maxRanks": 1, "type": "passive", "name": "Master of Destiny", "spellId": 431840, "icon": "ability_evoker_defyfate", "index": 100}, {"id": 126310, "definitionId": 131136, "maxRanks": 1, "type": "passive", "name": "Instability Matrix", "spellId": 431484, "icon": "ability_dragonriding_bronzerewind01", "index": 200}]}, {"id": 94942, "name": "Golden Opportunity", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94951], "entries": [{"id": 117539, "definitionId": 122551, "maxRanks": 1, "type": "passive", "name": "Golden Opportunity", "spellId": 432004, "icon": "achievement_faction_goldenlotus", "index": 100}]}, {"id": 94929, "name": "Afterimage", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 38, "next": [], "prev": [94930, 94932, 94942], "entries": [{"id": 117526, "definitionId": 122538, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 431875, "icon": "ability_evoker_livingflame", "index": 100}]}], "subTreeNodes": [{"id": 99825, "name": "Chronowarden / Scalecommander", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123334, "type": "subtree", "name": "Chronowarden", "traitSubTreeId": 38, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-chronowarden", "nodes": [94954, 94948, 94955, 94925, 94935, 94947, 94951, 94932, 94930, 94942, 94929]}, {"id": 123331, "type": "subtree", "name": "Scalecommander", "traitSubTreeId": 36, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-scalecommander", "nodes": [94939, 98931, 94952, 94936, 94944, 94921, 94953, 94934, 94933, 94928, 94943, 94941]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93296, 93297, 93298, 93299, 93300, 93301, 93302, 93303, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249]} \ No newline at end of file +{"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Augmentation", "specId": 1473, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}], "freeNode": true}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103843], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}], "freeNode": true}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}]}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 103843, "name": "Heavy Wingbeats", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 128216, "definitionId": 133023, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}]}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 103844], "prev": [93312, 103843], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [103843], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [103844, 93290, 93294], "prev": [93341, 103843], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 103844, "name": "Clobbering Sweep", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93295, 93302], "entries": [{"id": 128217, "definitionId": 133024, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 100}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93198, "name": "Ebon Might", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93200, 93220], "prev": [], "entries": [{"id": 115496, "definitionId": 120508, "maxRanks": 1, "type": "active", "name": "Ebon Might", "spellId": 395152, "icon": "spell_sarkareth", "index": 100}]}, {"id": 93200, "name": "Eruption", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93199, 93208], "prev": [93198], "entries": [{"id": 115498, "definitionId": 120510, "maxRanks": 1, "type": "active", "name": "Eruption", "spellId": 395160, "icon": "ability_evoker_eruption", "index": 100}]}, {"id": 93220, "name": "Essence Burst", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93219, 93221], "prev": [93198], "entries": [{"id": 115520, "definitionId": 120532, "maxRanks": 1, "type": "passive", "name": "Essence Burst", "spellId": 396187, "icon": "ability_evoker_essenceburst", "index": 100}]}, {"id": 93199, "name": "Imposing Presence / Inner Radiance", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93203], "prev": [93200], "entries": [{"id": 115497, "definitionId": 120509, "maxRanks": 1, "type": "passive", "name": "Imposing Presence", "spellId": 371016, "icon": "ability_evoker_quell", "index": 100}, {"id": 115690, "definitionId": 120702, "maxRanks": 1, "type": "passive", "name": "Inner Radiance", "spellId": 386405, "icon": "spell_holy_spellwarding", "index": 200}]}, {"id": 93208, "name": "Ricocheting Pyroclast", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [93203, 93234], "prev": [93200], "entries": [{"id": 115507, "definitionId": 120519, "maxRanks": 1, "type": "passive", "name": "Ricocheting Pyroclast", "spellId": 406659, "icon": "ability_rhyolith_volcano", "index": 100}]}, {"id": 93219, "name": "Essence Attunement", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [93234, 93222], "prev": [93220], "entries": [{"id": 115519, "definitionId": 120531, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93221, "name": "Pupil of Alexstrasza / Echoing Strike", "type": "choice", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93222], "prev": [93220], "entries": [{"id": 115521, "definitionId": 120533, "maxRanks": 1, "type": "passive", "name": "Pupil of Alexstrasza", "spellId": 407814, "icon": "ability_evoker_pupilofalexstraza", "index": 100}, {"id": 115680, "definitionId": 120692, "maxRanks": 1, "type": "passive", "name": "Echoing Strike", "spellId": 410784, "icon": "ability_evoker_echoingstrike", "index": 200}]}, {"id": 93203, "name": "Upheaval", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [93368, 93201, 93206], "prev": [93208, 93199], "entries": [{"id": 115502, "definitionId": 120514, "maxRanks": 1, "type": "active", "name": "Upheaval", "spellId": 396286, "icon": "ability_evoker_upheaval", "index": 100}]}, {"id": 93234, "name": "Breath of Eons", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93235, 93382], "prev": [93219, 93208], "entries": [{"id": 115536, "definitionId": 120548, "maxRanks": 1, "type": "active", "name": "Breath of Eons", "spellId": 403631, "icon": "ability_evoker_breathofeons", "index": 100}]}, {"id": 93222, "name": "Defy Fate", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [93382, 93360, 93195], "prev": [93221, 93219], "entries": [{"id": 115522, "definitionId": 120534, "maxRanks": 1, "type": "passive", "name": "Defy Fate", "spellId": 404195, "icon": "ability_evoker_defyfate", "index": 100}]}, {"id": 93368, "name": "Seismic Slam", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209, 93202], "prev": [93203], "entries": [{"id": 115688, "definitionId": 120700, "maxRanks": 1, "type": "passive", "name": "Seismic Slam", "spellId": 408543, "icon": "ability_evoker_seismicslam", "index": 100}]}, {"id": 93201, "name": "Power Nexus", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209], "prev": [93203], "entries": [{"id": 115499, "definitionId": 120511, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93206, "name": "Volcanism", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209, 93218], "prev": [93203], "entries": [{"id": 115505, "definitionId": 120517, "maxRanks": 1, "type": "passive", "name": "Volcanism", "spellId": 406904, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 93235, "name": "Perilous Fate / Chrono Ward", "type": "choice", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93218], "prev": [93234], "entries": [{"id": 115537, "definitionId": 120549, "maxRanks": 1, "type": "passive", "name": "Perilous Fate", "spellId": 410253, "icon": "spell_shadow_lastingafflictions", "index": 100}, {"id": 115706, "definitionId": 120718, "maxRanks": 1, "type": "passive", "name": "Chrono Ward", "spellId": 409676, "icon": "ability_evoker_bronze_01", "index": 200}]}, {"id": 93382, "name": "Stretch Time", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93218, 93358], "prev": [93222, 93234], "entries": [{"id": 115534, "definitionId": 120546, "maxRanks": 1, "type": "passive", "name": "Stretch Time", "spellId": 410352, "icon": "ability_evoker_timedilation", "index": 100}]}, {"id": 93360, "name": "Timelessness", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93358], "prev": [93222], "entries": [{"id": 115679, "definitionId": 120691, "maxRanks": 1, "type": "active", "name": "Timelessness", "spellId": 412710, "icon": "ability_evoker_timelessness", "index": 100}]}, {"id": 93195, "name": "Bestow Weyrnstone", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93358], "prev": [93222], "entries": [{"id": 115493, "definitionId": 120505, "maxRanks": 1, "type": "active", "name": "Bestow Weyrnstone", "spellId": 408233, "icon": "ability_evoker_bestowweyrnstone", "index": 100}]}, {"id": 93209, "name": "Blistering Scales", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93202, 93211, 93207], "prev": [93368, 93206, 93201], "entries": [{"id": 115508, "definitionId": 120520, "maxRanks": 1, "type": "active", "name": "Blistering Scales", "spellId": 360827, "icon": "ability_evoker_blisteringscales", "index": 100}]}, {"id": 93218, "name": "Draconic Attunements", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93207, 93217, 93225], "prev": [93206, 93235, 93382], "entries": [{"id": 115518, "definitionId": 120530, "maxRanks": 1, "type": "active", "name": "Draconic Attunements", "spellId": 403208, "icon": "ability_evoker_draconicattunements", "index": 100}]}, {"id": 93358, "name": "Prescience", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93225, 93367, 93215], "prev": [93360, 93195, 93382], "entries": [{"id": 115675, "definitionId": 120687, "maxRanks": 1, "type": "active", "name": "Prescience", "spellId": 409311, "icon": "ability_evoker_prescience", "index": 100}]}, {"id": 93202, "name": "Unyielding Domain / Tectonic Locus", "type": "choice", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93209, 93368], "entries": [{"id": 115501, "definitionId": 120513, "maxRanks": 1, "type": "passive", "name": "Unyielding Domain", "spellId": 412733, "icon": "spell_shaman_stormearthfire", "index": 100}, {"id": 115500, "definitionId": 120512, "maxRanks": 1, "type": "passive", "name": "Tectonic Locus", "spellId": 408002, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 93211, "name": "Regenerative Chitin / Molten Blood", "type": "choice", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93210, 93231, 93212], "prev": [93209], "entries": [{"id": 115511, "definitionId": 120523, "maxRanks": 1, "type": "passive", "name": "Regenerative Chitin", "spellId": 406907, "icon": "inv_tradeskill_skinning_prismaticscale", "index": 100}, {"id": 115510, "definitionId": 120522, "maxRanks": 1, "type": "passive", "name": "Molten Blood", "spellId": 410643, "icon": "spell_shaman_spewlava", "index": 200}]}, {"id": 93207, "name": "Momentum Shift", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93212], "prev": [93218, 93209], "entries": [{"id": 115506, "definitionId": 120518, "maxRanks": 1, "type": "passive", "name": "Momentum Shift", "spellId": 408004, "icon": "ability_priest_voidshift", "index": 100}]}, {"id": 93217, "name": "Aspects' Favor", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [93212, 93230], "prev": [93218], "entries": [{"id": 115517, "definitionId": 120529, "maxRanks": 2, "type": "passive", "name": "Aspects' Favor", "spellId": 407243, "icon": "ability_evoker_aspectsfavor", "index": 100}]}, {"id": 93225, "name": "Arcane Reach", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93230], "prev": [93358, 93218], "entries": [{"id": 115526, "definitionId": 120538, "maxRanks": 1, "type": "passive", "name": "Arcane Reach", "spellId": 454983, "icon": "classicon_evoker", "index": 100}]}, {"id": 93367, "name": "Fate Mirror", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93230, 93223], "prev": [93358], "entries": [{"id": 115685, "definitionId": 120697, "maxRanks": 1, "type": "passive", "name": "Fate Mirror", "spellId": 412774, "icon": "trade_archaeology_highbornesoulmirror", "index": 100}]}, {"id": 93215, "name": "Symbiotic Bloom", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [93359], "prev": [93358], "entries": [{"id": 115515, "definitionId": 120527, "maxRanks": 2, "type": "passive", "name": "Symbiotic Bloom", "spellId": 410685, "icon": "inv_10_herb_seed_magiccolor5", "index": 100}]}, {"id": 93210, "name": "Reactive Hide", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229], "prev": [93211], "entries": [{"id": 115509, "definitionId": 120521, "maxRanks": 1, "type": "passive", "name": "Reactive Hide", "spellId": 409329, "icon": "ability_evoker_reactivehide", "index": 100}]}, {"id": 93231, "name": "Font of Magic", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229], "prev": [93211], "entries": [{"id": 115532, "definitionId": 120544, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 408083, "icon": "ability_evoker_fontofmagic", "index": 100}]}, {"id": 93212, "name": "Hoarded Power", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229, 102248, 93232], "prev": [93217, 93211, 93207], "entries": [{"id": 115512, "definitionId": 120524, "maxRanks": 1, "type": "passive", "name": "Hoarded Power", "spellId": 375796, "icon": "ability_evoker_innatemagic2", "index": 100}]}, {"id": 93230, "name": "Ignition Rush", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93232, 93227], "prev": [93217, 93367, 93225], "entries": [{"id": 115531, "definitionId": 120543, "maxRanks": 1, "type": "passive", "name": "Ignition Rush", "spellId": 408775, "icon": "spell_fire_immolation", "index": 100}]}, {"id": 93223, "name": "Anachronism", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93227, 93197], "prev": [93367], "entries": [{"id": 115523, "definitionId": 120535, "maxRanks": 1, "type": "passive", "name": "Anachronism", "spellId": 407869, "icon": "ability_evoker_essenceburst6", "index": 100}]}, {"id": 93359, "name": "Prolong Life / Dream of Spring", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93197], "prev": [93215], "entries": [{"id": 115678, "definitionId": 120690, "maxRanks": 1, "type": "passive", "name": "Prolong Life", "spellId": 410687, "icon": "ability_evoker_reversion_green", "index": 100}, {"id": 115881, "definitionId": 120893, "maxRanks": 1, "type": "passive", "name": "Dream of Spring", "spellId": 414969, "icon": "ability_evoker_masterylifebinder", "index": 200}]}, {"id": 93229, "name": "Accretion", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93205], "prev": [93212, 93210, 93231], "entries": [{"id": 115530, "definitionId": 120542, "maxRanks": 1, "type": "passive", "name": "Accretion", "spellId": 407876, "icon": "ability_evoker_accretion", "index": 100}]}, {"id": 102248, "name": "Imminent Destruction", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93226], "prev": [93212], "entries": [{"id": 126304, "definitionId": 131130, "maxRanks": 1, "type": "passive", "name": "Imminent Destruction", "spellId": 459537, "icon": "spell_burningbladeshaman_blazing_radiance", "index": 100}]}, {"id": 93232, "name": "Time Skip", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93369], "prev": [93230, 93212], "entries": [{"id": 115533, "definitionId": 120545, "maxRanks": 1, "type": "active", "name": "Time Skip", "spellId": 404977, "icon": "ability_evoker_timeskip", "index": 100}]}, {"id": 93227, "name": "Motes of Possibility", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93213], "prev": [93230, 93223], "entries": [{"id": 115528, "definitionId": 120540, "maxRanks": 1, "type": "passive", "name": "Motes of Possibility", "spellId": 409267, "icon": "ability_evoker_motesofpossibility", "index": 100}]}, {"id": 93197, "name": "Inferno's Blessing", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102249], "prev": [93223, 93359], "entries": [{"id": 115495, "definitionId": 120507, "maxRanks": 1, "type": "passive", "name": "Inferno's Blessing", "spellId": 410261, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 93205, "name": "Rumbling Earth", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93229], "entries": [{"id": 115504, "definitionId": 120516, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 459120, "icon": "ability_evoker_geomancy", "index": 100}]}, {"id": 93226, "name": "Plot the Future", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102248], "entries": [{"id": 115527, "definitionId": 120539, "maxRanks": 1, "type": "passive", "name": "Plot the Future", "spellId": 407866, "icon": "ability_evoker_plotthefuture", "index": 100}]}, {"id": 93369, "name": "Tomorrow, Today / Interwoven Threads", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93232], "entries": [{"id": 115687, "definitionId": 120699, "maxRanks": 1, "type": "passive", "name": "Tomorrow, Today", "spellId": 412723, "icon": "ability_evoker_rewind2", "index": 100}, {"id": 115686, "definitionId": 120698, "maxRanks": 1, "type": "passive", "name": "Interwoven Threads", "spellId": 412713, "icon": "inv_enchant_optionalreagent_01", "index": 200}]}, {"id": 93213, "name": "Overlord", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93227], "entries": [{"id": 115513, "definitionId": 120525, "maxRanks": 1, "type": "passive", "name": "Overlord", "spellId": 410260, "icon": "ability_evoker_overlord", "index": 100}]}, {"id": 102249, "name": "Molten Embers", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93197], "entries": [{"id": 126305, "definitionId": 131131, "maxRanks": 1, "type": "passive", "name": "Molten Embers", "spellId": 459725, "icon": "ability_evoker_earthensky", "index": 100}]}], "heroNodes": [{"id": 98931, "name": "Mass Eruption", "type": "single", "posX": 15000, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 36, "next": [94952, 94936, 94944], "prev": [], "entries": [{"id": 122279, "definitionId": 127179, "maxRanks": 1, "type": "passive", "name": "Mass Eruption", "spellId": 438587, "icon": "ability_evoker_eruption", "index": 100}], "freeNode": true}, {"id": 94952, "name": "Might of the Black Dragonflight", "type": "single", "posX": 14400, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94921], "prev": [94939, 98931], "entries": [{"id": 117549, "definitionId": 122561, "maxRanks": 1, "type": "passive", "name": "Might of the Black Dragonflight", "spellId": 441705, "icon": "ability_evoker_blackattunementalt", "index": 100}]}, {"id": 94936, "name": "Bombardments", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94953], "prev": [94939, 98931], "entries": [{"id": 117533, "definitionId": 122545, "maxRanks": 1, "type": "passive", "name": "Bombardments", "spellId": 434300, "icon": "inv_ability_scalecommanderevoker_bombardments", "index": 100}]}, {"id": 94944, "name": "Onslaught", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94934], "prev": [94939, 98931], "entries": [{"id": 117541, "definitionId": 122553, "maxRanks": 1, "type": "passive", "name": "Onslaught", "spellId": 441245, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 94921, "name": "Melt Armor", "type": "single", "posX": 14400, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94933], "prev": [94952], "entries": [{"id": 117518, "definitionId": 122530, "maxRanks": 1, "type": "passive", "name": "Melt Armor", "spellId": 441176, "icon": "inv_10_gearupgrade_drakesshadowflameenhancedcrest", "index": 100}]}, {"id": 94953, "name": "Wingleader", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94928], "prev": [94936], "entries": [{"id": 117550, "definitionId": 122562, "maxRanks": 1, "type": "passive", "name": "Wingleader", "spellId": 441206, "icon": "ability_racial_soar", "index": 100}]}, {"id": 94934, "name": "Unrelenting Siege", "type": "single", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94943], "prev": [94944], "entries": [{"id": 117531, "definitionId": 122543, "maxRanks": 1, "type": "passive", "name": "Unrelenting Siege", "spellId": 441246, "icon": "ability_siege_engineer_superheated", "index": 100}]}, {"id": 94933, "name": "Hardened Scales / Menacing Presence", "type": "choice", "posX": 14400, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94921], "entries": [{"id": 117530, "definitionId": 122542, "maxRanks": 1, "type": "passive", "name": "Hardened Scales", "spellId": 441180, "icon": "inv_10_skinning_scales_black", "index": 100}, {"id": 120125, "definitionId": 125025, "maxRanks": 1, "type": "passive", "name": "Menacing Presence", "spellId": 441181, "icon": "ability_racial_wingbuffet", "index": 200}]}, {"id": 94928, "name": "Extended Battle / Diverted Power", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94953], "entries": [{"id": 117525, "definitionId": 122537, "maxRanks": 1, "type": "passive", "name": "Extended Battle", "spellId": 441212, "icon": "ability_evoker_divideandconquer", "index": 100}, {"id": 120124, "definitionId": 125024, "maxRanks": 1, "type": "passive", "name": "Diverted Power", "spellId": 441219, "icon": "ability_evoker_powerswell", "index": 200}]}, {"id": 94943, "name": "Nimble Flyer / Slipstream", "type": "choice", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94934], "entries": [{"id": 117540, "definitionId": 122552, "maxRanks": 1, "type": "passive", "name": "Nimble Flyer", "spellId": 441253, "icon": "ability_evoker_hover", "index": 100}, {"id": 120123, "definitionId": 125023, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 441257, "icon": "ability_dragonriding_barrelroll01", "index": 200}]}, {"id": 94941, "name": "Maneuverability", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 36, "next": [], "prev": [94928, 94933, 94943], "entries": [{"id": 117538, "definitionId": 122550, "maxRanks": 1, "type": "passive", "name": "Maneuverability", "spellId": 433871, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 94954, "name": "Chrono Flame", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 38, "next": [94955, 94948, 94925], "prev": [], "entries": [{"id": 117551, "definitionId": 122563, "maxRanks": 1, "type": "passive", "name": "Chrono Flame", "spellId": 431442, "icon": "inv_ability_chronowardenevoker_chronoflame", "index": 100}], "freeNode": true}, {"id": 94948, "name": "Warp", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94935], "prev": [94954], "entries": [{"id": 117545, "definitionId": 122557, "maxRanks": 1, "type": "passive", "name": "Warp", "spellId": 429483, "icon": "ability_evoker_spatialparadox", "index": 100}]}, {"id": 94955, "name": "Temporal Burst", "type": "single", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "requiresNode": 93350, "next": [94947], "prev": [94954], "entries": [{"id": 117552, "definitionId": 122564, "maxRanks": 1, "type": "passive", "name": "Temporal Burst", "spellId": 431695, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 94925, "name": "Reverberations", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94951], "prev": [94954], "entries": [{"id": 117522, "definitionId": 122534, "maxRanks": 1, "type": "passive", "name": "Reverberations", "spellId": 431615, "icon": "ability_evoker_giftoftheaspects", "index": 100}]}, {"id": 94935, "name": "Temporality / Motes of Acceleration", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94932], "prev": [94948], "entries": [{"id": 117532, "definitionId": 122544, "maxRanks": 1, "type": "passive", "name": "Temporality", "spellId": 431873, "icon": "ability_evoker_return", "index": 100}, {"id": 117784, "definitionId": 122796, "maxRanks": 1, "type": "passive", "name": "Motes of Acceleration", "spellId": 432008, "icon": "item_timemote_icon", "index": 200}]}, {"id": 94947, "name": "Threads of Fate", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94930], "prev": [94955], "entries": [{"id": 117544, "definitionId": 122556, "maxRanks": 1, "type": "passive", "name": "Threads of Fate", "spellId": 431715, "icon": "ability_evoker_sandsoftime", "index": 100}]}, {"id": 94951, "name": "Primacy", "type": "single", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94942], "prev": [94925], "entries": [{"id": 117548, "definitionId": 122560, "maxRanks": 1, "type": "passive", "name": "Primacy", "spellId": 431657, "icon": "inv_misc_pocketwatch_01", "index": 100}]}, {"id": 94932, "name": "Double-time / Time Convergence", "type": "choice", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94935], "entries": [{"id": 117529, "definitionId": 122541, "maxRanks": 1, "type": "passive", "name": "Double-time", "spellId": 431874, "icon": "spell_holy_borrowedtime", "index": 100}, {"id": 117786, "definitionId": 122798, "maxRanks": 1, "type": "passive", "name": "Time Convergence", "spellId": 431984, "icon": "ability_evoker_plotthefuture", "index": 200}]}, {"id": 94930, "name": "Master of Destiny / Instability Matrix", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94947], "entries": [{"id": 117527, "definitionId": 122539, "maxRanks": 1, "type": "passive", "name": "Master of Destiny", "spellId": 431840, "icon": "ability_evoker_defyfate", "index": 100}, {"id": 126310, "definitionId": 131136, "maxRanks": 1, "type": "passive", "name": "Instability Matrix", "spellId": 431484, "icon": "ability_dragonriding_bronzerewind01", "index": 200}]}, {"id": 94942, "name": "Golden Opportunity", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94951], "entries": [{"id": 117539, "definitionId": 122551, "maxRanks": 1, "type": "passive", "name": "Golden Opportunity", "spellId": 432004, "icon": "achievement_faction_goldenlotus", "index": 100}]}, {"id": 94929, "name": "Afterimage", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 38, "next": [], "prev": [94930, 94932, 94942], "entries": [{"id": 117526, "definitionId": 122538, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 431875, "icon": "ability_evoker_livingflame", "index": 100}]}], "subTreeNodes": [{"id": 99825, "name": "Chronowarden / Scalecommander", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123334, "type": "subtree", "name": "Chronowarden", "traitSubTreeId": 38, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-chronowarden", "nodes": [94954, 94948, 94955, 94925, 94935, 94947, 94951, 94932, 94930, 94942, 94929]}, {"id": 123331, "type": "subtree", "name": "Scalecommander", "traitSubTreeId": 36, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-scalecommander", "nodes": [94939, 98931, 94952, 94936, 94944, 94921, 94953, 94934, 94933, 94928, 94943, 94941]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93297, 93298, 93299, 93300, 93301, 93302, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249, 103843, 103844]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/evoker_devastation.json b/simc_support/game_data/data_files/trees/evoker_devastation.json index 10b3105..7ac38e7 100644 --- a/simc_support/game_data/data_files/trees/evoker_devastation.json +++ b/simc_support/game_data/data_files/trees/evoker_devastation.json @@ -1 +1 @@ -{"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Devastation", "specId": 1467, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}], "freeNode": true}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93303], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}]}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}]}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}], "freeNode": true}, {"id": 93303, "name": "Permeating Chill", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 115612, "definitionId": 120624, "maxRanks": 1, "type": "passive", "name": "Permeating Chill", "spellId": 370897, "icon": "spell_frost_coldhearted", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}]}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 93296], "prev": [93312, 93303], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93303], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [93296, 93290, 93294], "prev": [93303, 93341], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 93296, "name": "Heavy Wingbeats / Clobbering Sweep", "type": "choice", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93302, 93295], "entries": [{"id": 115605, "definitionId": 120617, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}, {"id": 115604, "definitionId": 120616, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 200}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93334, "name": "Pyre", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93285, 93333], "prev": [], "entries": [{"id": 115647, "definitionId": 120659, "maxRanks": 1, "type": "active", "name": "Pyre", "spellId": 357211, "icon": "ability_evoker_pyre", "index": 100}]}, {"id": 93285, "name": "Ruby Essence Burst", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93284, 93332], "prev": [93334], "entries": [{"id": 115593, "definitionId": 120605, "maxRanks": 1, "type": "passive", "name": "Ruby Essence Burst", "spellId": 376872, "icon": "ability_evoker_essenceburst4", "index": 100}]}, {"id": 93333, "name": "Azure Essence Burst", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93332, 93275], "prev": [93334], "entries": [{"id": 115646, "definitionId": 120658, "maxRanks": 1, "type": "passive", "name": "Azure Essence Burst", "spellId": 375721, "icon": "ability_evoker_essenceburst2", "index": 100}]}, {"id": 93284, "name": "Dense Energy", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93283, 93276], "prev": [93285], "entries": [{"id": 115592, "definitionId": 120604, "maxRanks": 1, "type": "passive", "name": "Dense Energy", "spellId": 370962, "icon": "ability_evoker_pyre", "index": 100}]}, {"id": 93332, "name": "Imposing Presence / Inner Radiance", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93331], "prev": [93333, 93285], "entries": [{"id": 115645, "definitionId": 120657, "maxRanks": 1, "type": "passive", "name": "Imposing Presence", "spellId": 371016, "icon": "ability_evoker_quell", "index": 100}, {"id": 115644, "definitionId": 120656, "maxRanks": 1, "type": "passive", "name": "Inner Radiance", "spellId": 386405, "icon": "spell_holy_spellwarding", "index": 200}]}, {"id": 93275, "name": "Eternity Surge", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93273, 93274], "prev": [93333], "entries": [{"id": 115581, "definitionId": 120593, "maxRanks": 1, "type": "active", "name": "Eternity Surge", "spellId": 359073, "icon": "ability_evoker_eternitysurge", "index": 100}]}, {"id": 93283, "name": "Volatility", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 2, "next": [93282], "prev": [93284], "entries": [{"id": 115591, "definitionId": 120603, "maxRanks": 2, "type": "passive", "name": "Volatility", "spellId": 369089, "icon": "spell_fire_ragnaros_lavabolt", "index": 100}]}, {"id": 93276, "name": "Power Nexus", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [93282], "prev": [93284], "entries": [{"id": 115582, "definitionId": 120594, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93331, "name": "Dragonrage", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93330], "prev": [93332], "entries": [{"id": 115643, "definitionId": 120655, "maxRanks": 1, "type": "active", "name": "Dragonrage", "spellId": 375087, "icon": "ability_evoker_dragonrage", "index": 100}]}, {"id": 93273, "name": "Lay Waste", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [93319], "prev": [93275], "entries": [{"id": 115579, "definitionId": 120591, "maxRanks": 1, "type": "passive", "name": "Lay Waste", "spellId": 371034, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 93274, "name": "Arcane Intensity", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 2, "next": [93319], "prev": [93275], "entries": [{"id": 115580, "definitionId": 120592, "maxRanks": 2, "type": "passive", "name": "Arcane Intensity", "spellId": 375618, "icon": "ability_evoker_disintegrate", "index": 100}]}, {"id": 93282, "name": "Ruby Embers / Engulfing Blaze", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93278, 93281], "prev": [93283, 93276], "entries": [{"id": 115590, "definitionId": 120602, "maxRanks": 1, "type": "passive", "name": "Ruby Embers", "spellId": 365937, "icon": "inv_tradeskillitem_lessersorcerersfire", "index": 100}, {"id": 115589, "definitionId": 120601, "maxRanks": 1, "type": "passive", "name": "Engulfing Blaze", "spellId": 370837, "icon": "inv_inscription_pigment_ruby", "index": 200}]}, {"id": 93330, "name": "Animosity", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93281, 93329], "prev": [93331], "entries": [{"id": 115642, "definitionId": 120654, "maxRanks": 1, "type": "passive", "name": "Animosity", "spellId": 375797, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 93319, "name": "Essence Attunement", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93329, 93320, 93318], "prev": [93274, 93273], "entries": [{"id": 115631, "definitionId": 120643, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93278, "name": "Firestorm", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93280, 93277], "prev": [93282], "entries": [{"id": 115585, "definitionId": 120597, "maxRanks": 1, "type": "active", "name": "Firestorm", "spellId": 368847, "icon": "ability_evoker_firestorm", "index": 100}]}, {"id": 93281, "name": "Heat Wave", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93280, 93328], "prev": [93282, 93330], "entries": [{"id": 115588, "definitionId": 120600, "maxRanks": 2, "type": "passive", "name": "Heat Wave", "spellId": 375725, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 93329, "name": "Honed Aggression", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93328, 93317], "prev": [93319, 93330], "entries": [{"id": 115641, "definitionId": 120653, "maxRanks": 2, "type": "passive", "name": "Honed Aggression", "spellId": 371038, "icon": "spell_fire_blueimmolation", "index": 100}]}, {"id": 93320, "name": "Eternity's Span", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93319], "entries": [{"id": 115632, "definitionId": 120644, "maxRanks": 1, "type": "passive", "name": "Eternity's Span", "spellId": 375757, "icon": "spell_arcane_arcanetorrent", "index": 100}]}, {"id": 93318, "name": "Eye of Infinity / Event Horizon", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93317, 93316], "prev": [93319], "entries": [{"id": 115630, "definitionId": 120642, "maxRanks": 1, "type": "passive", "name": "Eye of Infinity", "spellId": 411165, "icon": "ability_evoker_dragonrage2_blue", "index": 100}, {"id": 115629, "definitionId": 120641, "maxRanks": 1, "type": "passive", "name": "Event Horizon", "spellId": 411164, "icon": "ability_priest_cascade_shadow", "index": 200}]}, {"id": 93280, "name": "Catalyze", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93314], "prev": [93278, 93281], "entries": [{"id": 115587, "definitionId": 120599, "maxRanks": 1, "type": "passive", "name": "Catalyze", "spellId": 386283, "icon": "spell_fire_masterofelements", "index": 100}]}, {"id": 93328, "name": "Tyranny", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93314, 93327, 93323], "prev": [93281, 93329], "entries": [{"id": 115640, "definitionId": 120652, "maxRanks": 1, "type": "passive", "name": "Tyranny", "spellId": 376888, "icon": "ability_evoker_dragonrage2", "index": 100}]}, {"id": 93317, "name": "Charged Blast", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93323], "prev": [93318, 93329], "entries": [{"id": 115628, "definitionId": 120640, "maxRanks": 1, "type": "passive", "name": "Charged Blast", "spellId": 370455, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 93316, "name": "Shattering Star", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93315], "prev": [93318], "entries": [{"id": 115627, "definitionId": 120639, "maxRanks": 1, "type": "active", "name": "Shattering Star", "spellId": 370452, "icon": "ability_evoker_chargedblast", "index": 100}]}, {"id": 93277, "name": "Snapfire", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93326], "prev": [93278], "entries": [{"id": 115584, "definitionId": 120596, "maxRanks": 1, "type": "passive", "name": "Snapfire", "spellId": 370783, "icon": "spell_shaman_improvedfirenova", "index": 200}]}, {"id": 93314, "name": "Burnout", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93326, 93279, 93272], "prev": [93328, 93280], "entries": [{"id": 115624, "definitionId": 120636, "maxRanks": 1, "type": "passive", "name": "Burnout", "spellId": 375801, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93327, "name": "Onyx Legacy", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93328], "entries": [{"id": 115639, "definitionId": 120651, "maxRanks": 1, "type": "passive", "name": "Onyx Legacy", "spellId": 386348, "icon": "inv_misc_head_dragon_black", "index": 100}]}, {"id": 93323, "name": "Spellweaver's Dominance", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93272, 93325, 93322], "prev": [93328, 93317], "entries": [{"id": 115635, "definitionId": 120647, "maxRanks": 1, "type": "passive", "name": "Spellweaver's Dominance", "spellId": 370845, "icon": "spell_shaman_shockinglava", "index": 100}]}, {"id": 93315, "name": "Focusing Iris / Arcane Vigor", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93322], "prev": [93316], "entries": [{"id": 115626, "definitionId": 120638, "maxRanks": 1, "type": "passive", "name": "Focusing Iris", "spellId": 386336, "icon": "spell_mage_temporalshield", "index": 100}, {"id": 115625, "definitionId": 120637, "maxRanks": 1, "type": "passive", "name": "Arcane Vigor", "spellId": 386342, "icon": "spell_arcane_arcane01", "index": 200}]}, {"id": 93326, "name": "Imminent Destruction", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93313], "prev": [93277, 93314], "entries": [{"id": 115638, "definitionId": 120650, "maxRanks": 1, "type": "passive", "name": "Imminent Destruction", "spellId": 370781, "icon": "spell_burningbladeshaman_blazing_radiance", "index": 100}]}, {"id": 93279, "name": "Font of Magic", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93365], "prev": [93314], "entries": [{"id": 115586, "definitionId": 120598, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 411212, "icon": "ability_evoker_fontofmagic", "index": 100}]}, {"id": 93272, "name": "Titanic Wrath", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93366], "prev": [93314, 93323], "entries": [{"id": 115578, "definitionId": 120590, "maxRanks": 1, "type": "passive", "name": "Titanic Wrath", "spellId": 386272, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 93325, "name": "Hoarded Power", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93324], "prev": [93323], "entries": [{"id": 115637, "definitionId": 120649, "maxRanks": 1, "type": "passive", "name": "Hoarded Power", "spellId": 375796, "icon": "ability_evoker_innatemagic2", "index": 100}]}, {"id": 93322, "name": "Power Swell", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93321], "prev": [93323, 93315], "entries": [{"id": 115634, "definitionId": 120646, "maxRanks": 1, "type": "passive", "name": "Power Swell", "spellId": 370839, "icon": "ability_evoker_powernexus2", "index": 100}]}, {"id": 93313, "name": "Feed the Flames", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93326], "entries": [{"id": 115623, "definitionId": 120635, "maxRanks": 1, "type": "passive", "name": "Feed the Flames", "spellId": 369846, "icon": "mace_1h_blacksmithing_d_04_icon", "index": 100}]}, {"id": 93365, "name": "Scorching Embers", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93279], "entries": [{"id": 115622, "definitionId": 120634, "maxRanks": 1, "type": "passive", "name": "Scorching Embers", "spellId": 370819, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 93366, "name": "Causality", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93272], "entries": [{"id": 115683, "definitionId": 120695, "maxRanks": 1, "type": "passive", "name": "Causality", "spellId": 375777, "icon": "spell_azerite_essence_16", "index": 100}]}, {"id": 93324, "name": "Scintillation", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93325], "entries": [{"id": 115636, "definitionId": 120648, "maxRanks": 1, "type": "passive", "name": "Scintillation", "spellId": 370821, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 93321, "name": "Iridescence", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93322], "entries": [{"id": 115633, "definitionId": 120645, "maxRanks": 1, "type": "passive", "name": "Iridescence", "spellId": 370867, "icon": "ability_evoker_powerswell", "index": 100}]}], "heroNodes": [{"id": 94939, "name": "Mass Disintegrate", "type": "single", "posX": 15000, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 36, "next": [94952, 94936, 94944], "prev": [], "entries": [{"id": 117536, "definitionId": 122548, "maxRanks": 1, "type": "passive", "name": "Mass Disintegrate", "spellId": 436335, "icon": "ability_evoker_disintegrate", "index": 100}], "freeNode": true}, {"id": 94950, "name": "Engulf", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 37, "next": [94937, 99857, 94956], "prev": [], "entries": [{"id": 117547, "definitionId": 122559, "maxRanks": 1, "type": "active", "name": "Engulf", "spellId": 443328, "icon": "inv_ability_flameshaperevoker_engulf", "index": 100}], "freeNode": true}, {"id": 94952, "name": "Might of the Black Dragonflight", "type": "single", "posX": 14400, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94921], "prev": [94939, 98931], "entries": [{"id": 117549, "definitionId": 122561, "maxRanks": 1, "type": "passive", "name": "Might of the Black Dragonflight", "spellId": 441705, "icon": "ability_evoker_blackattunementalt", "index": 100}]}, {"id": 94936, "name": "Bombardments", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94953], "prev": [94939, 98931], "entries": [{"id": 117533, "definitionId": 122545, "maxRanks": 1, "type": "passive", "name": "Bombardments", "spellId": 434300, "icon": "inv_ability_scalecommanderevoker_bombardments", "index": 100}]}, {"id": 94944, "name": "Onslaught", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94934], "prev": [94939, 98931], "entries": [{"id": 117541, "definitionId": 122553, "maxRanks": 1, "type": "passive", "name": "Onslaught", "spellId": 441245, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 94937, "name": "Trailblazer / Shape of Flame", "type": "choice", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94949], "prev": [94950], "entries": [{"id": 117534, "definitionId": 122546, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 444849, "icon": "ability_deathwing_fierygrip", "index": 100}, {"id": 123404, "definitionId": 128242, "maxRanks": 1, "type": "passive", "name": "Shape of Flame", "spellId": 445074, "icon": "ability_mage_flamecannon", "index": 200}]}, {"id": 99857, "name": "Traveling Flame", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94946], "prev": [94950], "entries": [{"id": 123416, "definitionId": 128254, "maxRanks": 1, "type": "passive", "name": "Traveling Flame", "spellId": 444140, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 94956, "name": "Enkindle", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94923], "prev": [94950], "entries": [{"id": 117553, "definitionId": 122565, "maxRanks": 1, "type": "passive", "name": "Enkindle", "spellId": 444016, "icon": "inv_10_elementalcombinedfoozles_purifiedshadowflame", "index": 100}]}, {"id": 94921, "name": "Melt Armor", "type": "single", "posX": 14400, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94933], "prev": [94952], "entries": [{"id": 117518, "definitionId": 122530, "maxRanks": 1, "type": "passive", "name": "Melt Armor", "spellId": 441176, "icon": "inv_10_gearupgrade_drakesshadowflameenhancedcrest", "index": 100}]}, {"id": 94953, "name": "Wingleader", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94928], "prev": [94936], "entries": [{"id": 117550, "definitionId": 122562, "maxRanks": 1, "type": "passive", "name": "Wingleader", "spellId": 441206, "icon": "ability_racial_soar", "index": 100}]}, {"id": 94934, "name": "Unrelenting Siege", "type": "single", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94943], "prev": [94944], "entries": [{"id": 117531, "definitionId": 122543, "maxRanks": 1, "type": "passive", "name": "Unrelenting Siege", "spellId": 441246, "icon": "ability_siege_engineer_superheated", "index": 100}]}, {"id": 94949, "name": "Conduit of Flame", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94920], "prev": [94937], "entries": [{"id": 117546, "definitionId": 122558, "maxRanks": 1, "type": "passive", "name": "Conduit of Flame", "spellId": 444843, "icon": "ability_evoker_innatemagic5", "index": 100}]}, {"id": 94946, "name": "Burning Adrenaline", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94945], "prev": [99857], "entries": [{"id": 117543, "definitionId": 122555, "maxRanks": 1, "type": "passive", "name": "Burning Adrenaline", "spellId": 444020, "icon": "inv_gauntlets_03", "index": 100}]}, {"id": 94923, "name": "Fan the Flames / Expanded Lungs", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94931], "prev": [94956], "entries": [{"id": 117520, "definitionId": 122532, "maxRanks": 1, "type": "passive", "name": "Fan the Flames", "spellId": 444318, "icon": "ability_evoker_oppressingroar2", "index": 100}, {"id": 123767, "definitionId": 128605, "maxRanks": 1, "type": "passive", "name": "Expanded Lungs", "spellId": 444845, "icon": "inv_fyrakk_dragonbreath", "index": 200}]}, {"id": 94933, "name": "Hardened Scales / Menacing Presence", "type": "choice", "posX": 14400, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94921], "entries": [{"id": 117530, "definitionId": 122542, "maxRanks": 1, "type": "passive", "name": "Hardened Scales", "spellId": 441180, "icon": "inv_10_skinning_scales_black", "index": 100}, {"id": 120125, "definitionId": 125025, "maxRanks": 1, "type": "passive", "name": "Menacing Presence", "spellId": 441181, "icon": "ability_racial_wingbuffet", "index": 200}]}, {"id": 94928, "name": "Extended Battle / Diverted Power", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94953], "entries": [{"id": 117525, "definitionId": 122537, "maxRanks": 1, "type": "passive", "name": "Extended Battle", "spellId": 441212, "icon": "ability_evoker_divideandconquer", "index": 100}, {"id": 120124, "definitionId": 125024, "maxRanks": 1, "type": "passive", "name": "Diverted Power", "spellId": 441219, "icon": "ability_evoker_powerswell", "index": 200}]}, {"id": 94943, "name": "Nimble Flyer / Slipstream", "type": "choice", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94934], "entries": [{"id": 117540, "definitionId": 122552, "maxRanks": 1, "type": "passive", "name": "Nimble Flyer", "spellId": 441253, "icon": "ability_evoker_hover", "index": 100}, {"id": 120123, "definitionId": 125023, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 441257, "icon": "ability_dragonriding_barrelroll01", "index": 200}]}, {"id": 94920, "name": "Titanic Precision", "type": "single", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94949], "entries": [{"id": 117517, "definitionId": 122529, "maxRanks": 1, "type": "passive", "name": "Titanic Precision", "spellId": 445625, "icon": "inv_10_misc_titansspark_shadowflame", "index": 100}]}, {"id": 94945, "name": "Red Hot", "type": "single", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94946], "entries": [{"id": 117542, "definitionId": 122554, "maxRanks": 1, "type": "passive", "name": "Red Hot", "spellId": 444081, "icon": "ability_ironmaidens_grapeshotblast", "index": 100}]}, {"id": 94931, "name": "Lifecinders / Draconic Instincts", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94923], "entries": [{"id": 117528, "definitionId": 122540, "maxRanks": 1, "type": "passive", "name": "Lifecinders", "spellId": 444322, "icon": "inv_misc_herb_cinderbloom_petal", "index": 100}, {"id": 123405, "definitionId": 128243, "maxRanks": 1, "type": "passive", "name": "Draconic Instincts", "spellId": 445958, "icon": "inv_misc_scales_basilliskorange", "index": 200}]}, {"id": 94941, "name": "Maneuverability", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 36, "next": [], "prev": [94928, 94933, 94943], "entries": [{"id": 117538, "definitionId": 122550, "maxRanks": 1, "type": "passive", "name": "Maneuverability", "spellId": 433871, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 94922, "name": "Consume Flame", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 37, "next": [], "prev": [94920, 94945, 94931], "entries": [{"id": 117519, "definitionId": 122531, "maxRanks": 1, "type": "passive", "name": "Consume Flame", "spellId": 444088, "icon": "inv_shadowflames_wave", "index": 100}]}], "subTreeNodes": [{"id": 99827, "name": "Flameshaper / Scalecommander", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123336, "type": "subtree", "name": "Flameshaper", "traitSubTreeId": 37, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-flameshaper", "nodes": [94950, 94937, 99857, 94956, 94949, 94946, 94923, 94920, 94945, 94931, 94922]}, {"id": 123333, "type": "subtree", "name": "Scalecommander", "traitSubTreeId": 36, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-scalecommander", "nodes": [94939, 98931, 94952, 94936, 94944, 94921, 94953, 94934, 94933, 94928, 94943, 94941]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93296, 93297, 93298, 93299, 93300, 93301, 93302, 93303, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249]} \ No newline at end of file +{"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Devastation", "specId": 1467, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}], "freeNode": true}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103843], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}]}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}]}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}], "freeNode": true}, {"id": 103843, "name": "Heavy Wingbeats", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 128216, "definitionId": 133023, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}]}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 103844], "prev": [93312, 103843], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [103843], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [103844, 93290, 93294], "prev": [93341, 103843], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 103844, "name": "Clobbering Sweep", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93295, 93302], "entries": [{"id": 128217, "definitionId": 133024, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 100}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93334, "name": "Pyre", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93285, 93333], "prev": [], "entries": [{"id": 115647, "definitionId": 120659, "maxRanks": 1, "type": "active", "name": "Pyre", "spellId": 357211, "icon": "ability_evoker_pyre", "index": 100}]}, {"id": 93285, "name": "Ruby Essence Burst", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93284, 93332], "prev": [93334], "entries": [{"id": 115593, "definitionId": 120605, "maxRanks": 1, "type": "passive", "name": "Ruby Essence Burst", "spellId": 376872, "icon": "ability_evoker_essenceburst4", "index": 100}]}, {"id": 93333, "name": "Azure Essence Burst", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93332, 93275], "prev": [93334], "entries": [{"id": 115646, "definitionId": 120658, "maxRanks": 1, "type": "passive", "name": "Azure Essence Burst", "spellId": 375721, "icon": "ability_evoker_essenceburst2", "index": 100}]}, {"id": 93284, "name": "Dense Energy", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93283, 93276], "prev": [93285], "entries": [{"id": 115592, "definitionId": 120604, "maxRanks": 1, "type": "passive", "name": "Dense Energy", "spellId": 370962, "icon": "ability_evoker_pyre", "index": 100}]}, {"id": 93332, "name": "Imposing Presence / Inner Radiance", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93331], "prev": [93333, 93285], "entries": [{"id": 115645, "definitionId": 120657, "maxRanks": 1, "type": "passive", "name": "Imposing Presence", "spellId": 371016, "icon": "ability_evoker_quell", "index": 100}, {"id": 115644, "definitionId": 120656, "maxRanks": 1, "type": "passive", "name": "Inner Radiance", "spellId": 386405, "icon": "spell_holy_spellwarding", "index": 200}]}, {"id": 93275, "name": "Eternity Surge", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93273, 93274], "prev": [93333], "entries": [{"id": 115581, "definitionId": 120593, "maxRanks": 1, "type": "active", "name": "Eternity Surge", "spellId": 359073, "icon": "ability_evoker_eternitysurge", "index": 100}]}, {"id": 93283, "name": "Volatility", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 2, "next": [93282], "prev": [93284], "entries": [{"id": 115591, "definitionId": 120603, "maxRanks": 2, "type": "passive", "name": "Volatility", "spellId": 369089, "icon": "spell_fire_ragnaros_lavabolt", "index": 100}]}, {"id": 93276, "name": "Power Nexus", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [93282], "prev": [93284], "entries": [{"id": 115582, "definitionId": 120594, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93331, "name": "Dragonrage", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93330], "prev": [93332], "entries": [{"id": 115643, "definitionId": 120655, "maxRanks": 1, "type": "active", "name": "Dragonrage", "spellId": 375087, "icon": "ability_evoker_dragonrage", "index": 100}]}, {"id": 93273, "name": "Lay Waste", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [93319], "prev": [93275], "entries": [{"id": 115579, "definitionId": 120591, "maxRanks": 1, "type": "passive", "name": "Lay Waste", "spellId": 371034, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 93274, "name": "Arcane Intensity", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 2, "next": [93319], "prev": [93275], "entries": [{"id": 115580, "definitionId": 120592, "maxRanks": 2, "type": "passive", "name": "Arcane Intensity", "spellId": 375618, "icon": "ability_evoker_disintegrate", "index": 100}]}, {"id": 93282, "name": "Ruby Embers / Engulfing Blaze", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93278, 93281], "prev": [93283, 93276], "entries": [{"id": 115590, "definitionId": 120602, "maxRanks": 1, "type": "passive", "name": "Ruby Embers", "spellId": 365937, "icon": "inv_tradeskillitem_lessersorcerersfire", "index": 100}, {"id": 115589, "definitionId": 120601, "maxRanks": 1, "type": "passive", "name": "Engulfing Blaze", "spellId": 370837, "icon": "inv_inscription_pigment_ruby", "index": 200}]}, {"id": 93330, "name": "Animosity", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93281, 93329], "prev": [93331], "entries": [{"id": 115642, "definitionId": 120654, "maxRanks": 1, "type": "passive", "name": "Animosity", "spellId": 375797, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 93319, "name": "Essence Attunement", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93329, 93320, 93318], "prev": [93274, 93273], "entries": [{"id": 115631, "definitionId": 120643, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93278, "name": "Firestorm", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93280, 93277], "prev": [93282], "entries": [{"id": 115585, "definitionId": 120597, "maxRanks": 1, "type": "active", "name": "Firestorm", "spellId": 368847, "icon": "ability_evoker_firestorm", "index": 100}]}, {"id": 93281, "name": "Heat Wave", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93280, 93328], "prev": [93282, 93330], "entries": [{"id": 115588, "definitionId": 120600, "maxRanks": 2, "type": "passive", "name": "Heat Wave", "spellId": 375725, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 93329, "name": "Honed Aggression", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93328, 93317], "prev": [93319, 93330], "entries": [{"id": 115641, "definitionId": 120653, "maxRanks": 2, "type": "passive", "name": "Honed Aggression", "spellId": 371038, "icon": "spell_fire_blueimmolation", "index": 100}]}, {"id": 93320, "name": "Eternity's Span", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93319], "entries": [{"id": 115632, "definitionId": 120644, "maxRanks": 1, "type": "passive", "name": "Eternity's Span", "spellId": 375757, "icon": "spell_arcane_arcanetorrent", "index": 100}]}, {"id": 93318, "name": "Eye of Infinity / Event Horizon", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93317, 93316], "prev": [93319], "entries": [{"id": 115630, "definitionId": 120642, "maxRanks": 1, "type": "passive", "name": "Eye of Infinity", "spellId": 411165, "icon": "ability_evoker_dragonrage2_blue", "index": 100}, {"id": 115629, "definitionId": 120641, "maxRanks": 1, "type": "passive", "name": "Event Horizon", "spellId": 411164, "icon": "ability_priest_cascade_shadow", "index": 200}]}, {"id": 93280, "name": "Catalyze", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93314], "prev": [93278, 93281], "entries": [{"id": 115587, "definitionId": 120599, "maxRanks": 1, "type": "passive", "name": "Catalyze", "spellId": 386283, "icon": "spell_fire_masterofelements", "index": 100}]}, {"id": 93328, "name": "Tyranny", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93314, 93327, 93323], "prev": [93281, 93329], "entries": [{"id": 115640, "definitionId": 120652, "maxRanks": 1, "type": "passive", "name": "Tyranny", "spellId": 376888, "icon": "ability_evoker_dragonrage2", "index": 100}]}, {"id": 93317, "name": "Charged Blast", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93323], "prev": [93318, 93329], "entries": [{"id": 115628, "definitionId": 120640, "maxRanks": 1, "type": "passive", "name": "Charged Blast", "spellId": 370455, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 93316, "name": "Shattering Star", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93315], "prev": [93318], "entries": [{"id": 115627, "definitionId": 120639, "maxRanks": 1, "type": "active", "name": "Shattering Star", "spellId": 370452, "icon": "ability_evoker_chargedblast", "index": 100}]}, {"id": 93277, "name": "Snapfire", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93326], "prev": [93278], "entries": [{"id": 115584, "definitionId": 120596, "maxRanks": 1, "type": "passive", "name": "Snapfire", "spellId": 370783, "icon": "spell_shaman_improvedfirenova", "index": 200}]}, {"id": 93314, "name": "Burnout", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93326, 93279, 93272], "prev": [93328, 93280], "entries": [{"id": 115624, "definitionId": 120636, "maxRanks": 1, "type": "passive", "name": "Burnout", "spellId": 375801, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93327, "name": "Onyx Legacy", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93328], "entries": [{"id": 115639, "definitionId": 120651, "maxRanks": 1, "type": "passive", "name": "Onyx Legacy", "spellId": 386348, "icon": "inv_misc_head_dragon_black", "index": 100}]}, {"id": 93323, "name": "Spellweaver's Dominance", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93272, 93325, 93322], "prev": [93328, 93317], "entries": [{"id": 115635, "definitionId": 120647, "maxRanks": 1, "type": "passive", "name": "Spellweaver's Dominance", "spellId": 370845, "icon": "spell_shaman_shockinglava", "index": 100}]}, {"id": 93315, "name": "Focusing Iris / Arcane Vigor", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93322], "prev": [93316], "entries": [{"id": 115626, "definitionId": 120638, "maxRanks": 1, "type": "passive", "name": "Focusing Iris", "spellId": 386336, "icon": "spell_mage_temporalshield", "index": 100}, {"id": 115625, "definitionId": 120637, "maxRanks": 1, "type": "passive", "name": "Arcane Vigor", "spellId": 386342, "icon": "spell_arcane_arcane01", "index": 200}]}, {"id": 93326, "name": "Imminent Destruction", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93313], "prev": [93277, 93314], "entries": [{"id": 115638, "definitionId": 120650, "maxRanks": 1, "type": "passive", "name": "Imminent Destruction", "spellId": 370781, "icon": "spell_burningbladeshaman_blazing_radiance", "index": 100}]}, {"id": 93279, "name": "Font of Magic", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93365], "prev": [93314], "entries": [{"id": 115586, "definitionId": 120598, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 411212, "icon": "ability_evoker_fontofmagic", "index": 100}]}, {"id": 93272, "name": "Titanic Wrath", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93366], "prev": [93314, 93323], "entries": [{"id": 115578, "definitionId": 120590, "maxRanks": 1, "type": "passive", "name": "Titanic Wrath", "spellId": 386272, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 93325, "name": "Hoarded Power", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93324], "prev": [93323], "entries": [{"id": 115637, "definitionId": 120649, "maxRanks": 1, "type": "passive", "name": "Hoarded Power", "spellId": 375796, "icon": "ability_evoker_innatemagic2", "index": 100}]}, {"id": 93322, "name": "Power Swell", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93321], "prev": [93323, 93315], "entries": [{"id": 115634, "definitionId": 120646, "maxRanks": 1, "type": "passive", "name": "Power Swell", "spellId": 370839, "icon": "ability_evoker_powernexus2", "index": 100}]}, {"id": 93313, "name": "Feed the Flames", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93326], "entries": [{"id": 115623, "definitionId": 120635, "maxRanks": 1, "type": "passive", "name": "Feed the Flames", "spellId": 369846, "icon": "mace_1h_blacksmithing_d_04_icon", "index": 100}]}, {"id": 93365, "name": "Scorching Embers", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93279], "entries": [{"id": 115622, "definitionId": 120634, "maxRanks": 1, "type": "passive", "name": "Scorching Embers", "spellId": 370819, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 93366, "name": "Causality", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93272], "entries": [{"id": 115683, "definitionId": 120695, "maxRanks": 1, "type": "passive", "name": "Causality", "spellId": 375777, "icon": "spell_azerite_essence_16", "index": 100}]}, {"id": 93324, "name": "Scintillation", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93325], "entries": [{"id": 115636, "definitionId": 120648, "maxRanks": 1, "type": "passive", "name": "Scintillation", "spellId": 370821, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 93321, "name": "Iridescence", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93322], "entries": [{"id": 115633, "definitionId": 120645, "maxRanks": 1, "type": "passive", "name": "Iridescence", "spellId": 370867, "icon": "ability_evoker_powerswell", "index": 100}]}], "heroNodes": [{"id": 94939, "name": "Mass Disintegrate", "type": "single", "posX": 15000, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 36, "next": [94952, 94936, 94944], "prev": [], "entries": [{"id": 117536, "definitionId": 122548, "maxRanks": 1, "type": "passive", "name": "Mass Disintegrate", "spellId": 436335, "icon": "ability_evoker_disintegrate", "index": 100}], "freeNode": true}, {"id": 94950, "name": "Engulf", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 37, "next": [94937, 99857, 94956], "prev": [], "entries": [{"id": 117547, "definitionId": 122559, "maxRanks": 1, "type": "active", "name": "Engulf", "spellId": 443328, "icon": "inv_ability_flameshaperevoker_engulf", "index": 100}], "freeNode": true}, {"id": 94952, "name": "Might of the Black Dragonflight", "type": "single", "posX": 14400, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94921], "prev": [94939, 98931], "entries": [{"id": 117549, "definitionId": 122561, "maxRanks": 1, "type": "passive", "name": "Might of the Black Dragonflight", "spellId": 441705, "icon": "ability_evoker_blackattunementalt", "index": 100}]}, {"id": 94936, "name": "Bombardments", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94953], "prev": [94939, 98931], "entries": [{"id": 117533, "definitionId": 122545, "maxRanks": 1, "type": "passive", "name": "Bombardments", "spellId": 434300, "icon": "inv_ability_scalecommanderevoker_bombardments", "index": 100}]}, {"id": 94944, "name": "Onslaught", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94934], "prev": [94939, 98931], "entries": [{"id": 117541, "definitionId": 122553, "maxRanks": 1, "type": "passive", "name": "Onslaught", "spellId": 441245, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 94937, "name": "Trailblazer / Shape of Flame", "type": "choice", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94949], "prev": [94950], "entries": [{"id": 117534, "definitionId": 122546, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 444849, "icon": "ability_deathwing_fierygrip", "index": 100}, {"id": 123404, "definitionId": 128242, "maxRanks": 1, "type": "passive", "name": "Shape of Flame", "spellId": 445074, "icon": "ability_mage_flamecannon", "index": 200}]}, {"id": 99857, "name": "Traveling Flame", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94946], "prev": [94950], "entries": [{"id": 123416, "definitionId": 128254, "maxRanks": 1, "type": "passive", "name": "Traveling Flame", "spellId": 444140, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 94956, "name": "Enkindle", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94923], "prev": [94950], "entries": [{"id": 117553, "definitionId": 122565, "maxRanks": 1, "type": "passive", "name": "Enkindle", "spellId": 444016, "icon": "inv_10_elementalcombinedfoozles_purifiedshadowflame", "index": 100}]}, {"id": 94921, "name": "Melt Armor", "type": "single", "posX": 14400, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94933], "prev": [94952], "entries": [{"id": 117518, "definitionId": 122530, "maxRanks": 1, "type": "passive", "name": "Melt Armor", "spellId": 441176, "icon": "inv_10_gearupgrade_drakesshadowflameenhancedcrest", "index": 100}]}, {"id": 94953, "name": "Wingleader", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94928], "prev": [94936], "entries": [{"id": 117550, "definitionId": 122562, "maxRanks": 1, "type": "passive", "name": "Wingleader", "spellId": 441206, "icon": "ability_racial_soar", "index": 100}]}, {"id": 94934, "name": "Unrelenting Siege", "type": "single", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94943], "prev": [94944], "entries": [{"id": 117531, "definitionId": 122543, "maxRanks": 1, "type": "passive", "name": "Unrelenting Siege", "spellId": 441246, "icon": "ability_siege_engineer_superheated", "index": 100}]}, {"id": 94949, "name": "Conduit of Flame", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94920], "prev": [94937], "entries": [{"id": 117546, "definitionId": 122558, "maxRanks": 1, "type": "passive", "name": "Conduit of Flame", "spellId": 444843, "icon": "ability_evoker_innatemagic5", "index": 100}]}, {"id": 94946, "name": "Burning Adrenaline", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94945], "prev": [99857], "entries": [{"id": 117543, "definitionId": 122555, "maxRanks": 1, "type": "passive", "name": "Burning Adrenaline", "spellId": 444020, "icon": "inv_gauntlets_03", "index": 100}]}, {"id": 94923, "name": "Fan the Flames / Expanded Lungs", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94931], "prev": [94956], "entries": [{"id": 117520, "definitionId": 122532, "maxRanks": 1, "type": "passive", "name": "Fan the Flames", "spellId": 444318, "icon": "ability_evoker_oppressingroar2", "index": 100}, {"id": 123767, "definitionId": 128605, "maxRanks": 1, "type": "passive", "name": "Expanded Lungs", "spellId": 444845, "icon": "inv_fyrakk_dragonbreath", "index": 200}]}, {"id": 94933, "name": "Hardened Scales / Menacing Presence", "type": "choice", "posX": 14400, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94921], "entries": [{"id": 117530, "definitionId": 122542, "maxRanks": 1, "type": "passive", "name": "Hardened Scales", "spellId": 441180, "icon": "inv_10_skinning_scales_black", "index": 100}, {"id": 120125, "definitionId": 125025, "maxRanks": 1, "type": "passive", "name": "Menacing Presence", "spellId": 441181, "icon": "ability_racial_wingbuffet", "index": 200}]}, {"id": 94928, "name": "Extended Battle / Diverted Power", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94953], "entries": [{"id": 117525, "definitionId": 122537, "maxRanks": 1, "type": "passive", "name": "Extended Battle", "spellId": 441212, "icon": "ability_evoker_divideandconquer", "index": 100}, {"id": 120124, "definitionId": 125024, "maxRanks": 1, "type": "passive", "name": "Diverted Power", "spellId": 441219, "icon": "ability_evoker_powerswell", "index": 200}]}, {"id": 94943, "name": "Nimble Flyer / Slipstream", "type": "choice", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94934], "entries": [{"id": 117540, "definitionId": 122552, "maxRanks": 1, "type": "passive", "name": "Nimble Flyer", "spellId": 441253, "icon": "ability_evoker_hover", "index": 100}, {"id": 120123, "definitionId": 125023, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 441257, "icon": "ability_dragonriding_barrelroll01", "index": 200}]}, {"id": 94920, "name": "Titanic Precision", "type": "single", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94949], "entries": [{"id": 117517, "definitionId": 122529, "maxRanks": 1, "type": "passive", "name": "Titanic Precision", "spellId": 445625, "icon": "inv_10_misc_titansspark_shadowflame", "index": 100}]}, {"id": 94945, "name": "Red Hot", "type": "single", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94946], "entries": [{"id": 117542, "definitionId": 122554, "maxRanks": 1, "type": "passive", "name": "Red Hot", "spellId": 444081, "icon": "ability_ironmaidens_grapeshotblast", "index": 100}]}, {"id": 94931, "name": "Lifecinders / Draconic Instincts", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94923], "entries": [{"id": 117528, "definitionId": 122540, "maxRanks": 1, "type": "passive", "name": "Lifecinders", "spellId": 444322, "icon": "inv_misc_herb_cinderbloom_petal", "index": 100}, {"id": 123405, "definitionId": 128243, "maxRanks": 1, "type": "passive", "name": "Draconic Instincts", "spellId": 445958, "icon": "inv_misc_scales_basilliskorange", "index": 200}]}, {"id": 94941, "name": "Maneuverability", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 36, "next": [], "prev": [94928, 94933, 94943], "entries": [{"id": 117538, "definitionId": 122550, "maxRanks": 1, "type": "passive", "name": "Maneuverability", "spellId": 433871, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 94922, "name": "Consume Flame", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 37, "next": [], "prev": [94920, 94945, 94931], "entries": [{"id": 117519, "definitionId": 122531, "maxRanks": 1, "type": "passive", "name": "Consume Flame", "spellId": 444088, "icon": "inv_shadowflames_wave", "index": 100}]}], "subTreeNodes": [{"id": 99827, "name": "Flameshaper / Scalecommander", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123336, "type": "subtree", "name": "Flameshaper", "traitSubTreeId": 37, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-flameshaper", "nodes": [94950, 94937, 99857, 94956, 94949, 94946, 94923, 94920, 94945, 94931, 94922]}, {"id": 123333, "type": "subtree", "name": "Scalecommander", "traitSubTreeId": 36, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-scalecommander", "nodes": [94939, 98931, 94952, 94936, 94944, 94921, 94953, 94934, 94933, 94928, 94943, 94941]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93297, 93298, 93299, 93300, 93301, 93302, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249, 103843, 103844]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/evoker_preservation.json b/simc_support/game_data/data_files/trees/evoker_preservation.json index 58c8252..829099a 100644 --- a/simc_support/game_data/data_files/trees/evoker_preservation.json +++ b/simc_support/game_data/data_files/trees/evoker_preservation.json @@ -1 +1 @@ -{"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Preservation", "specId": 1468, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93303], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}]}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}], "freeNode": true}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 93303, "name": "Permeating Chill", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 115612, "definitionId": 120624, "maxRanks": 1, "type": "passive", "name": "Permeating Chill", "spellId": 370897, "icon": "spell_frost_coldhearted", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}], "freeNode": true}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 93296], "prev": [93312, 93303], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93303], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [93296, 93290, 93294], "prev": [93303, 93341], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 93296, "name": "Heavy Wingbeats / Clobbering Sweep", "type": "choice", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93302, 93295], "entries": [{"id": 115605, "definitionId": 120617, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}, {"id": 115604, "definitionId": 120616, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 200}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93339, "name": "Echo", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93240, 93338], "prev": [], "entries": [{"id": 115653, "definitionId": 120665, "maxRanks": 1, "type": "active", "name": "Echo", "spellId": 364343, "icon": "ability_evoker_echo", "index": 100}]}, {"id": 93240, "name": "Dream Breath", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93241, 93239], "prev": [93339], "entries": [{"id": 115542, "definitionId": 120554, "maxRanks": 1, "type": "active", "name": "Dream Breath", "spellId": 355936, "icon": "ability_evoker_dreambreath", "index": 100}]}, {"id": 93338, "name": "Reversion", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93239, 93337], "prev": [93339], "entries": [{"id": 115652, "definitionId": 120664, "maxRanks": 1, "type": "active", "name": "Reversion", "spellId": 366155, "icon": "ability_evoker_reversion", "index": 100}]}, {"id": 93241, "name": "Temporal Compression", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93243], "prev": [93240], "entries": [{"id": 115543, "definitionId": 120555, "maxRanks": 1, "type": "passive", "name": "Temporal Compression", "spellId": 362874, "icon": "ability_evoker_rewind2", "index": 100}]}, {"id": 93239, "name": "Essence Burst", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93238], "prev": [93338, 93240], "entries": [{"id": 115541, "definitionId": 120553, "maxRanks": 1, "type": "passive", "name": "Essence Burst", "spellId": 369297, "icon": "ability_evoker_essenceburst", "index": 100}]}, {"id": 93337, "name": "Rewind", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93336], "prev": [93338], "entries": [{"id": 115651, "definitionId": 120663, "maxRanks": 1, "type": "active", "name": "Rewind", "spellId": 363534, "icon": "ability_evoker_rewind", "index": 100}]}, {"id": 93243, "name": "Spiritbloom", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [93245, 93242, 93247], "prev": [93241], "entries": [{"id": 115546, "definitionId": 120558, "maxRanks": 1, "type": "active", "name": "Spiritbloom", "spellId": 367226, "icon": "ability_evoker_spiritbloom2", "index": 100}]}, {"id": 93238, "name": "Essence Attunement", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93247, 93252, 93255], "prev": [93239], "entries": [{"id": 115540, "definitionId": 120552, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93336, "name": "Time Dilation", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [93255, 93335, 93257], "prev": [93337], "entries": [{"id": 115650, "definitionId": 120662, "maxRanks": 1, "type": "active", "name": "Time Dilation", "spellId": 357170, "icon": "ability_evoker_timedilation", "index": 100}]}, {"id": 93245, "name": "Emerald Communion", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93244, 93246], "prev": [93243], "entries": [{"id": 115549, "definitionId": 120561, "maxRanks": 1, "type": "active", "name": "Emerald Communion", "spellId": 370960, "icon": "ability_evoker_green_01", "index": 100}]}, {"id": 93242, "name": "Empath / Spiritual Clarity", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93243], "entries": [{"id": 115545, "definitionId": 120557, "maxRanks": 1, "type": "passive", "name": "Empath", "spellId": 376138, "icon": "ability_evoker_powernexus2", "index": 100}, {"id": 115544, "definitionId": 120556, "maxRanks": 1, "type": "passive", "name": "Spiritual Clarity", "spellId": 376150, "icon": "ability_evoker_spiritbloom", "index": 200}]}, {"id": 93247, "name": "Fluttering Seedlings", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93246, 93248], "prev": [93238, 93243], "entries": [{"id": 115551, "definitionId": 120563, "maxRanks": 2, "type": "passive", "name": "Fluttering Seedlings", "spellId": 359793, "icon": "inv_herbalism_70_yserallineseed", "index": 100}]}, {"id": 93252, "name": "Font of Magic", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93249], "prev": [93238], "entries": [{"id": 115556, "definitionId": 120568, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 375783, "icon": "ability_evoker_fontofmagic", "index": 200}]}, {"id": 93255, "name": "Golden Hour", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93254, 93256], "prev": [93336, 93238], "entries": [{"id": 115559, "definitionId": 120571, "maxRanks": 1, "type": "passive", "name": "Golden Hour", "spellId": 378196, "icon": "inv_belt_armor_waistoftime_d_01", "index": 100}]}, {"id": 93335, "name": "Delay Harm / Just in Time", "type": "choice", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93336], "entries": [{"id": 115649, "definitionId": 120661, "maxRanks": 1, "type": "passive", "name": "Delay Harm", "spellId": 376207, "icon": "ability_racial_magicalresistance", "index": 100}, {"id": 115648, "definitionId": 120660, "maxRanks": 1, "type": "passive", "name": "Just in Time", "spellId": 376204, "icon": "inv_offhand_1h_artifactsilverhand_d_01", "index": 200}]}, {"id": 93257, "name": "Temporal Anomaly", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93256, 93258], "prev": [93336], "entries": [{"id": 115561, "definitionId": 120573, "maxRanks": 1, "type": "active", "name": "Temporal Anomaly", "spellId": 373861, "icon": "ability_evoker_temporalanomaly", "index": 100}]}, {"id": 93244, "name": "Dreamwalker / Rush of Vitality", "type": "choice", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93250], "prev": [93245], "entries": [{"id": 115548, "definitionId": 120560, "maxRanks": 1, "type": "passive", "name": "Dreamwalker", "spellId": 377082, "icon": "ability_hunter_onewithnature", "index": 100}, {"id": 115547, "definitionId": 120559, "maxRanks": 1, "type": "passive", "name": "Rush of Vitality", "spellId": 377086, "icon": "trade_enchanting_greatermysteriousessence", "index": 200}]}, {"id": 93246, "name": "Exhilarating Burst", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [], "prev": [93247, 93245], "entries": [{"id": 115550, "definitionId": 120562, "maxRanks": 2, "type": "passive", "name": "Exhilarating Burst", "spellId": 377100, "icon": "ability_evoker_essenceburst3", "index": 100}]}, {"id": 93248, "name": "Field of Dreams", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93250, 93253], "prev": [93247], "entries": [{"id": 115552, "definitionId": 120564, "maxRanks": 1, "type": "passive", "name": "Field of Dreams", "spellId": 370062, "icon": "inv_misc_herb_chamlotus", "index": 100}]}, {"id": 93249, "name": "Power Nexus", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93253], "prev": [93252], "entries": [{"id": 115553, "definitionId": 120565, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93254, "name": "Time Lord", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93253, 93260], "prev": [93255], "entries": [{"id": 115558, "definitionId": 120570, "maxRanks": 2, "type": "passive", "name": "Time Lord", "spellId": 372527, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93256, "name": "Flow State", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [], "prev": [93257, 93255], "entries": [{"id": 115560, "definitionId": 120572, "maxRanks": 2, "type": "passive", "name": "Flow State", "spellId": 385696, "icon": "ability_evoker_timespiral", "index": 100}]}, {"id": 93258, "name": "Resonating Sphere / Nozdormu's Teachings", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93260], "prev": [93257], "entries": [{"id": 115563, "definitionId": 120575, "maxRanks": 1, "type": "passive", "name": "Resonating Sphere", "spellId": 376236, "icon": "ability_evoker_bronze_01", "index": 100}, {"id": 115562, "definitionId": 120574, "maxRanks": 1, "type": "passive", "name": "Nozdormu's Teachings", "spellId": 376237, "icon": "inv_misc_head_dragon_bronze", "index": 200}]}, {"id": 93250, "name": "Call of Ysera", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93269, 93251, 93237], "prev": [93244, 93248], "entries": [{"id": 115554, "definitionId": 120566, "maxRanks": 1, "type": "passive", "name": "Call of Ysera", "spellId": 373834, "icon": "", "index": 200}]}, {"id": 93253, "name": "Lifebind", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93237, 99803, 93264], "prev": [93248, 93254, 93249], "entries": [{"id": 115557, "definitionId": 120569, "maxRanks": 1, "type": "passive", "name": "Lifebind", "spellId": 373270, "icon": "ability_evoker_hoverred", "index": 100}]}, {"id": 93260, "name": "Punctuality", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93264, 93261, 93259], "prev": [93258, 93254], "entries": [{"id": 115565, "definitionId": 120577, "maxRanks": 1, "type": "passive", "name": "Punctuality", "spellId": 371270, "icon": "inv_offhand_1h_ulduarraid_d_01", "index": 100}]}, {"id": 93269, "name": "Spark of Insight", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268], "prev": [93250], "entries": [{"id": 115575, "definitionId": 120587, "maxRanks": 1, "type": "passive", "name": "Spark of Insight", "spellId": 377099, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 93251, "name": "Ouroboros", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268], "prev": [93250], "entries": [{"id": 115555, "definitionId": 120567, "maxRanks": 1, "type": "passive", "name": "Ouroboros", "spellId": 381921, "icon": "ability_evoker_innatemagic", "index": 100}]}, {"id": 93237, "name": "Life-Giver's Flame", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268, 93236], "prev": [93253, 93250], "entries": [{"id": 115539, "definitionId": 120551, "maxRanks": 1, "type": "passive", "name": "Life-Giver's Flame", "spellId": 371426, "icon": "item_sparkofragnoros", "index": 100}]}, {"id": 99803, "name": "Titan's Gift", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93236], "prev": [93253], "entries": [{"id": 123293, "definitionId": 128171, "maxRanks": 1, "type": "passive", "name": "Titan's Gift", "spellId": 443264, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 93264, "name": "Erasure / Temporal Artificer", "type": "choice", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93236, 93263], "prev": [93253, 93260], "entries": [{"id": 115570, "definitionId": 120582, "maxRanks": 1, "type": "passive", "name": "Erasure", "spellId": 376210, "icon": "ability_bossmagistrix_timewarp2", "index": 100}, {"id": 115569, "definitionId": 120581, "maxRanks": 1, "type": "passive", "name": "Temporal Artificer", "spellId": 381922, "icon": "ability_evoker_rewind", "index": 200}]}, {"id": 93261, "name": "Energy Loop", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93263], "prev": [93260], "entries": [{"id": 115566, "definitionId": 120578, "maxRanks": 1, "type": "passive", "name": "Energy Loop", "spellId": 372233, "icon": "inv_elemental_mote_mana", "index": 100}]}, {"id": 93259, "name": "Time of Need", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93263], "prev": [93260], "entries": [{"id": 115564, "definitionId": 120576, "maxRanks": 1, "type": "passive", "name": "Time of Need", "spellId": 368412, "icon": "ability_evoker_masterylifebinder_bronze", "index": 300}]}, {"id": 93268, "name": "Renewing Breath", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93267, 93266], "prev": [93237, 93269, 93251], "entries": [{"id": 115574, "definitionId": 120586, "maxRanks": 2, "type": "passive", "name": "Renewing Breath", "spellId": 371257, "icon": "ability_evoker_dreambreath", "index": 100}]}, {"id": 93236, "name": "Lifeforce Mender", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [99804], "prev": [93264, 93237, 99803], "entries": [{"id": 115538, "definitionId": 120550, "maxRanks": 2, "type": "passive", "name": "Lifeforce Mender", "spellId": 376179, "icon": "ability_evoker_dragonrage2", "index": 100}]}, {"id": 93263, "name": "Timeless Magic", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93265, 93262], "prev": [93264, 93259, 93261], "entries": [{"id": 115568, "definitionId": 120580, "maxRanks": 2, "type": "passive", "name": "Timeless Magic", "spellId": 376240, "icon": "inv_artifact_xp05", "index": 100}]}, {"id": 93267, "name": "Dream Flight", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93268], "entries": [{"id": 115573, "definitionId": 120585, "maxRanks": 1, "type": "active", "name": "Dream Flight", "spellId": 359816, "icon": "ability_evoker_dreamflight", "index": 200}]}, {"id": 93266, "name": "Cycle of Life", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93268], "entries": [{"id": 115572, "definitionId": 120584, "maxRanks": 1, "type": "passive", "name": "Cycle of Life", "spellId": 371832, "icon": "spell_lifegivingseed", "index": 100}]}, {"id": 99804, "name": "Lifespark", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93236], "entries": [{"id": 123294, "definitionId": 128172, "maxRanks": 1, "type": "passive", "name": "Lifespark", "spellId": 443177, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93265, "name": "Grace Period", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93263], "entries": [{"id": 115571, "definitionId": 120583, "maxRanks": 1, "type": "passive", "name": "Grace Period", "spellId": 376239, "icon": "ability_evoker_reversion_green", "index": 100}]}, {"id": 93262, "name": "Stasis", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93263], "entries": [{"id": 115567, "definitionId": 120579, "maxRanks": 1, "type": "active", "name": "Stasis", "spellId": 370537, "icon": "ability_evoker_stasis", "index": 200}]}], "heroNodes": [{"id": 94950, "name": "Engulf", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 37, "next": [94937, 99857, 94956], "prev": [], "entries": [{"id": 117547, "definitionId": 122559, "maxRanks": 1, "type": "active", "name": "Engulf", "spellId": 443328, "icon": "inv_ability_flameshaperevoker_engulf", "index": 100}], "freeNode": true}, {"id": 94937, "name": "Trailblazer / Shape of Flame", "type": "choice", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94949], "prev": [94950], "entries": [{"id": 117534, "definitionId": 122546, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 444849, "icon": "ability_deathwing_fierygrip", "index": 100}, {"id": 123404, "definitionId": 128242, "maxRanks": 1, "type": "passive", "name": "Shape of Flame", "spellId": 445074, "icon": "ability_mage_flamecannon", "index": 200}]}, {"id": 99857, "name": "Traveling Flame", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94946], "prev": [94950], "entries": [{"id": 123416, "definitionId": 128254, "maxRanks": 1, "type": "passive", "name": "Traveling Flame", "spellId": 444140, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 94956, "name": "Enkindle", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94923], "prev": [94950], "entries": [{"id": 117553, "definitionId": 122565, "maxRanks": 1, "type": "passive", "name": "Enkindle", "spellId": 444016, "icon": "inv_10_elementalcombinedfoozles_purifiedshadowflame", "index": 100}]}, {"id": 94949, "name": "Conduit of Flame", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94920], "prev": [94937], "entries": [{"id": 117546, "definitionId": 122558, "maxRanks": 1, "type": "passive", "name": "Conduit of Flame", "spellId": 444843, "icon": "ability_evoker_innatemagic5", "index": 100}]}, {"id": 94946, "name": "Burning Adrenaline", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94945], "prev": [99857], "entries": [{"id": 117543, "definitionId": 122555, "maxRanks": 1, "type": "passive", "name": "Burning Adrenaline", "spellId": 444020, "icon": "inv_gauntlets_03", "index": 100}]}, {"id": 94923, "name": "Fan the Flames / Expanded Lungs", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94931], "prev": [94956], "entries": [{"id": 117520, "definitionId": 122532, "maxRanks": 1, "type": "passive", "name": "Fan the Flames", "spellId": 444318, "icon": "ability_evoker_oppressingroar2", "index": 100}, {"id": 123767, "definitionId": 128605, "maxRanks": 1, "type": "passive", "name": "Expanded Lungs", "spellId": 444845, "icon": "inv_fyrakk_dragonbreath", "index": 200}]}, {"id": 94920, "name": "Titanic Precision", "type": "single", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94949], "entries": [{"id": 117517, "definitionId": 122529, "maxRanks": 1, "type": "passive", "name": "Titanic Precision", "spellId": 445625, "icon": "inv_10_misc_titansspark_shadowflame", "index": 100}]}, {"id": 94945, "name": "Red Hot", "type": "single", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94946], "entries": [{"id": 117542, "definitionId": 122554, "maxRanks": 1, "type": "passive", "name": "Red Hot", "spellId": 444081, "icon": "ability_ironmaidens_grapeshotblast", "index": 100}]}, {"id": 94931, "name": "Lifecinders / Draconic Instincts", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94923], "entries": [{"id": 117528, "definitionId": 122540, "maxRanks": 1, "type": "passive", "name": "Lifecinders", "spellId": 444322, "icon": "inv_misc_herb_cinderbloom_petal", "index": 100}, {"id": 123405, "definitionId": 128243, "maxRanks": 1, "type": "passive", "name": "Draconic Instincts", "spellId": 445958, "icon": "inv_misc_scales_basilliskorange", "index": 200}]}, {"id": 94922, "name": "Consume Flame", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 37, "next": [], "prev": [94920, 94945, 94931], "entries": [{"id": 117519, "definitionId": 122531, "maxRanks": 1, "type": "passive", "name": "Consume Flame", "spellId": 444088, "icon": "inv_shadowflames_wave", "index": 100}]}, {"id": 94954, "name": "Chrono Flame", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 38, "next": [94955, 94948, 94925], "prev": [], "entries": [{"id": 117551, "definitionId": 122563, "maxRanks": 1, "type": "passive", "name": "Chrono Flame", "spellId": 431442, "icon": "inv_ability_chronowardenevoker_chronoflame", "index": 100}], "freeNode": true}, {"id": 94948, "name": "Warp", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94935], "prev": [94954], "entries": [{"id": 117545, "definitionId": 122557, "maxRanks": 1, "type": "passive", "name": "Warp", "spellId": 429483, "icon": "ability_evoker_spatialparadox", "index": 100}]}, {"id": 94955, "name": "Temporal Burst", "type": "single", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "requiresNode": 93350, "next": [94947], "prev": [94954], "entries": [{"id": 117552, "definitionId": 122564, "maxRanks": 1, "type": "passive", "name": "Temporal Burst", "spellId": 431695, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 94925, "name": "Reverberations", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94951], "prev": [94954], "entries": [{"id": 117522, "definitionId": 122534, "maxRanks": 1, "type": "passive", "name": "Reverberations", "spellId": 431615, "icon": "ability_evoker_giftoftheaspects", "index": 100}]}, {"id": 94935, "name": "Temporality / Motes of Acceleration", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94932], "prev": [94948], "entries": [{"id": 117532, "definitionId": 122544, "maxRanks": 1, "type": "passive", "name": "Temporality", "spellId": 431873, "icon": "ability_evoker_return", "index": 100}, {"id": 117784, "definitionId": 122796, "maxRanks": 1, "type": "passive", "name": "Motes of Acceleration", "spellId": 432008, "icon": "item_timemote_icon", "index": 200}]}, {"id": 94947, "name": "Threads of Fate", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94930], "prev": [94955], "entries": [{"id": 117544, "definitionId": 122556, "maxRanks": 1, "type": "passive", "name": "Threads of Fate", "spellId": 431715, "icon": "ability_evoker_sandsoftime", "index": 100}]}, {"id": 94951, "name": "Primacy", "type": "single", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94942], "prev": [94925], "entries": [{"id": 117548, "definitionId": 122560, "maxRanks": 1, "type": "passive", "name": "Primacy", "spellId": 431657, "icon": "inv_misc_pocketwatch_01", "index": 100}]}, {"id": 94932, "name": "Double-time / Time Convergence", "type": "choice", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94935], "entries": [{"id": 117529, "definitionId": 122541, "maxRanks": 1, "type": "passive", "name": "Double-time", "spellId": 431874, "icon": "spell_holy_borrowedtime", "index": 100}, {"id": 117786, "definitionId": 122798, "maxRanks": 1, "type": "passive", "name": "Time Convergence", "spellId": 431984, "icon": "ability_evoker_plotthefuture", "index": 200}]}, {"id": 94930, "name": "Master of Destiny / Instability Matrix", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94947], "entries": [{"id": 117527, "definitionId": 122539, "maxRanks": 1, "type": "passive", "name": "Master of Destiny", "spellId": 431840, "icon": "ability_evoker_defyfate", "index": 100}, {"id": 126310, "definitionId": 131136, "maxRanks": 1, "type": "passive", "name": "Instability Matrix", "spellId": 431484, "icon": "ability_dragonriding_bronzerewind01", "index": 200}]}, {"id": 94942, "name": "Golden Opportunity", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94951], "entries": [{"id": 117539, "definitionId": 122551, "maxRanks": 1, "type": "passive", "name": "Golden Opportunity", "spellId": 432004, "icon": "achievement_faction_goldenlotus", "index": 100}]}, {"id": 94929, "name": "Afterimage", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 38, "next": [], "prev": [94930, 94932, 94942], "entries": [{"id": 117526, "definitionId": 122538, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 431875, "icon": "ability_evoker_livingflame", "index": 100}]}], "subTreeNodes": [{"id": 99826, "name": "Chronowarden / Flameshaper", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123335, "type": "subtree", "name": "Chronowarden", "traitSubTreeId": 38, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-chronowarden", "nodes": [94954, 94948, 94955, 94925, 94935, 94947, 94951, 94932, 94930, 94942, 94929]}, {"id": 123332, "type": "subtree", "name": "Flameshaper", "traitSubTreeId": 37, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-flameshaper", "nodes": [94950, 94937, 99857, 94956, 94949, 94946, 94923, 94920, 94945, 94931, 94922]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93296, 93297, 93298, 93299, 93300, 93301, 93302, 93303, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249]} \ No newline at end of file +{"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Preservation", "specId": 1468, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103843], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}]}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}], "freeNode": true}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 103843, "name": "Heavy Wingbeats", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 128216, "definitionId": 133023, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}], "freeNode": true}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 103844], "prev": [93312, 103843], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [103843], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [103844, 93290, 93294], "prev": [93341, 103843], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 103844, "name": "Clobbering Sweep", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93295, 93302], "entries": [{"id": 128217, "definitionId": 133024, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 100}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93339, "name": "Echo", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93240, 93338], "prev": [], "entries": [{"id": 115653, "definitionId": 120665, "maxRanks": 1, "type": "active", "name": "Echo", "spellId": 364343, "icon": "ability_evoker_echo", "index": 100}]}, {"id": 93240, "name": "Dream Breath", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93241, 93239], "prev": [93339], "entries": [{"id": 115542, "definitionId": 120554, "maxRanks": 1, "type": "active", "name": "Dream Breath", "spellId": 355936, "icon": "ability_evoker_dreambreath", "index": 100}]}, {"id": 93338, "name": "Reversion", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93239, 93337], "prev": [93339], "entries": [{"id": 115652, "definitionId": 120664, "maxRanks": 1, "type": "active", "name": "Reversion", "spellId": 366155, "icon": "ability_evoker_reversion", "index": 100}]}, {"id": 93241, "name": "Temporal Compression", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93243], "prev": [93240], "entries": [{"id": 115543, "definitionId": 120555, "maxRanks": 1, "type": "passive", "name": "Temporal Compression", "spellId": 362874, "icon": "ability_evoker_rewind2", "index": 100}]}, {"id": 93239, "name": "Essence Burst", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93238], "prev": [93338, 93240], "entries": [{"id": 115541, "definitionId": 120553, "maxRanks": 1, "type": "passive", "name": "Essence Burst", "spellId": 369297, "icon": "ability_evoker_essenceburst", "index": 100}]}, {"id": 93337, "name": "Rewind", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93336], "prev": [93338], "entries": [{"id": 115651, "definitionId": 120663, "maxRanks": 1, "type": "active", "name": "Rewind", "spellId": 363534, "icon": "ability_evoker_rewind", "index": 100}]}, {"id": 93243, "name": "Spiritbloom", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [93245, 93242, 93247], "prev": [93241], "entries": [{"id": 115546, "definitionId": 120558, "maxRanks": 1, "type": "active", "name": "Spiritbloom", "spellId": 367226, "icon": "ability_evoker_spiritbloom2", "index": 100}]}, {"id": 93238, "name": "Essence Attunement", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93247, 93252, 93255], "prev": [93239], "entries": [{"id": 115540, "definitionId": 120552, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93336, "name": "Time Dilation", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [93255, 93335, 93257], "prev": [93337], "entries": [{"id": 115650, "definitionId": 120662, "maxRanks": 1, "type": "active", "name": "Time Dilation", "spellId": 357170, "icon": "ability_evoker_timedilation", "index": 100}]}, {"id": 93245, "name": "Emerald Communion", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93244, 93246], "prev": [93243], "entries": [{"id": 115549, "definitionId": 120561, "maxRanks": 1, "type": "active", "name": "Emerald Communion", "spellId": 370960, "icon": "ability_evoker_green_01", "index": 100}]}, {"id": 93242, "name": "Empath / Spiritual Clarity", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93243], "entries": [{"id": 115545, "definitionId": 120557, "maxRanks": 1, "type": "passive", "name": "Empath", "spellId": 376138, "icon": "ability_evoker_powernexus2", "index": 100}, {"id": 115544, "definitionId": 120556, "maxRanks": 1, "type": "passive", "name": "Spiritual Clarity", "spellId": 376150, "icon": "ability_evoker_spiritbloom", "index": 200}]}, {"id": 93247, "name": "Fluttering Seedlings", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93246, 93248], "prev": [93238, 93243], "entries": [{"id": 115551, "definitionId": 120563, "maxRanks": 2, "type": "passive", "name": "Fluttering Seedlings", "spellId": 359793, "icon": "inv_herbalism_70_yserallineseed", "index": 100}]}, {"id": 93252, "name": "Font of Magic", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93249], "prev": [93238], "entries": [{"id": 115556, "definitionId": 120568, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 375783, "icon": "ability_evoker_fontofmagic", "index": 200}]}, {"id": 93255, "name": "Golden Hour", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93254, 93256], "prev": [93336, 93238], "entries": [{"id": 115559, "definitionId": 120571, "maxRanks": 1, "type": "passive", "name": "Golden Hour", "spellId": 378196, "icon": "inv_belt_armor_waistoftime_d_01", "index": 100}]}, {"id": 93335, "name": "Delay Harm / Just in Time", "type": "choice", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93336], "entries": [{"id": 115649, "definitionId": 120661, "maxRanks": 1, "type": "passive", "name": "Delay Harm", "spellId": 376207, "icon": "ability_racial_magicalresistance", "index": 100}, {"id": 115648, "definitionId": 120660, "maxRanks": 1, "type": "passive", "name": "Just in Time", "spellId": 376204, "icon": "inv_offhand_1h_artifactsilverhand_d_01", "index": 200}]}, {"id": 93257, "name": "Temporal Anomaly", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93256, 93258], "prev": [93336], "entries": [{"id": 115561, "definitionId": 120573, "maxRanks": 1, "type": "active", "name": "Temporal Anomaly", "spellId": 373861, "icon": "ability_evoker_temporalanomaly", "index": 100}]}, {"id": 93244, "name": "Dreamwalker / Rush of Vitality", "type": "choice", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93250], "prev": [93245], "entries": [{"id": 115548, "definitionId": 120560, "maxRanks": 1, "type": "passive", "name": "Dreamwalker", "spellId": 377082, "icon": "ability_hunter_onewithnature", "index": 100}, {"id": 115547, "definitionId": 120559, "maxRanks": 1, "type": "passive", "name": "Rush of Vitality", "spellId": 377086, "icon": "trade_enchanting_greatermysteriousessence", "index": 200}]}, {"id": 93246, "name": "Exhilarating Burst", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [], "prev": [93247, 93245], "entries": [{"id": 115550, "definitionId": 120562, "maxRanks": 2, "type": "passive", "name": "Exhilarating Burst", "spellId": 377100, "icon": "ability_evoker_essenceburst3", "index": 100}]}, {"id": 93248, "name": "Field of Dreams", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93250, 93253], "prev": [93247], "entries": [{"id": 115552, "definitionId": 120564, "maxRanks": 1, "type": "passive", "name": "Field of Dreams", "spellId": 370062, "icon": "inv_misc_herb_chamlotus", "index": 100}]}, {"id": 93249, "name": "Power Nexus", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93253], "prev": [93252], "entries": [{"id": 115553, "definitionId": 120565, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93254, "name": "Time Lord", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93253, 93260], "prev": [93255], "entries": [{"id": 115558, "definitionId": 120570, "maxRanks": 2, "type": "passive", "name": "Time Lord", "spellId": 372527, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93256, "name": "Flow State", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [], "prev": [93257, 93255], "entries": [{"id": 115560, "definitionId": 120572, "maxRanks": 2, "type": "passive", "name": "Flow State", "spellId": 385696, "icon": "ability_evoker_timespiral", "index": 100}]}, {"id": 93258, "name": "Resonating Sphere / Nozdormu's Teachings", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93260], "prev": [93257], "entries": [{"id": 115563, "definitionId": 120575, "maxRanks": 1, "type": "passive", "name": "Resonating Sphere", "spellId": 376236, "icon": "ability_evoker_bronze_01", "index": 100}, {"id": 115562, "definitionId": 120574, "maxRanks": 1, "type": "passive", "name": "Nozdormu's Teachings", "spellId": 376237, "icon": "inv_misc_head_dragon_bronze", "index": 200}]}, {"id": 93250, "name": "Call of Ysera", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93269, 93251, 93237], "prev": [93244, 93248], "entries": [{"id": 115554, "definitionId": 120566, "maxRanks": 1, "type": "passive", "name": "Call of Ysera", "spellId": 373834, "icon": "", "index": 200}]}, {"id": 93253, "name": "Lifebind", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93237, 99803, 93264], "prev": [93248, 93254, 93249], "entries": [{"id": 115557, "definitionId": 120569, "maxRanks": 1, "type": "passive", "name": "Lifebind", "spellId": 373270, "icon": "ability_evoker_hoverred", "index": 100}]}, {"id": 93260, "name": "Punctuality", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93264, 93261, 93259], "prev": [93258, 93254], "entries": [{"id": 115565, "definitionId": 120577, "maxRanks": 1, "type": "passive", "name": "Punctuality", "spellId": 371270, "icon": "inv_offhand_1h_ulduarraid_d_01", "index": 100}]}, {"id": 93269, "name": "Spark of Insight", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268], "prev": [93250], "entries": [{"id": 115575, "definitionId": 120587, "maxRanks": 1, "type": "passive", "name": "Spark of Insight", "spellId": 377099, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 93251, "name": "Ouroboros", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268], "prev": [93250], "entries": [{"id": 115555, "definitionId": 120567, "maxRanks": 1, "type": "passive", "name": "Ouroboros", "spellId": 381921, "icon": "ability_evoker_innatemagic", "index": 100}]}, {"id": 93237, "name": "Life-Giver's Flame", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268, 93236], "prev": [93253, 93250], "entries": [{"id": 115539, "definitionId": 120551, "maxRanks": 1, "type": "passive", "name": "Life-Giver's Flame", "spellId": 371426, "icon": "item_sparkofragnoros", "index": 100}]}, {"id": 99803, "name": "Titan's Gift", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93236], "prev": [93253], "entries": [{"id": 123293, "definitionId": 128171, "maxRanks": 1, "type": "passive", "name": "Titan's Gift", "spellId": 443264, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 93264, "name": "Erasure / Temporal Artificer", "type": "choice", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93236, 93263], "prev": [93253, 93260], "entries": [{"id": 115570, "definitionId": 120582, "maxRanks": 1, "type": "passive", "name": "Erasure", "spellId": 376210, "icon": "ability_bossmagistrix_timewarp2", "index": 100}, {"id": 115569, "definitionId": 120581, "maxRanks": 1, "type": "passive", "name": "Temporal Artificer", "spellId": 381922, "icon": "ability_evoker_rewind", "index": 200}]}, {"id": 93261, "name": "Energy Loop", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93263], "prev": [93260], "entries": [{"id": 115566, "definitionId": 120578, "maxRanks": 1, "type": "passive", "name": "Energy Loop", "spellId": 372233, "icon": "inv_elemental_mote_mana", "index": 100}]}, {"id": 93259, "name": "Time of Need", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93263], "prev": [93260], "entries": [{"id": 115564, "definitionId": 120576, "maxRanks": 1, "type": "passive", "name": "Time of Need", "spellId": 368412, "icon": "ability_evoker_masterylifebinder_bronze", "index": 300}]}, {"id": 93268, "name": "Renewing Breath", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93267, 93266], "prev": [93237, 93269, 93251], "entries": [{"id": 115574, "definitionId": 120586, "maxRanks": 2, "type": "passive", "name": "Renewing Breath", "spellId": 371257, "icon": "ability_evoker_dreambreath", "index": 100}]}, {"id": 93236, "name": "Lifeforce Mender", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [99804], "prev": [93264, 93237, 99803], "entries": [{"id": 115538, "definitionId": 120550, "maxRanks": 2, "type": "passive", "name": "Lifeforce Mender", "spellId": 376179, "icon": "ability_evoker_dragonrage2", "index": 100}]}, {"id": 93263, "name": "Timeless Magic", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93265, 93262], "prev": [93264, 93259, 93261], "entries": [{"id": 115568, "definitionId": 120580, "maxRanks": 2, "type": "passive", "name": "Timeless Magic", "spellId": 376240, "icon": "inv_artifact_xp05", "index": 100}]}, {"id": 93267, "name": "Dream Flight", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93268], "entries": [{"id": 115573, "definitionId": 120585, "maxRanks": 1, "type": "active", "name": "Dream Flight", "spellId": 359816, "icon": "ability_evoker_dreamflight", "index": 200}]}, {"id": 93266, "name": "Cycle of Life", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93268], "entries": [{"id": 115572, "definitionId": 120584, "maxRanks": 1, "type": "passive", "name": "Cycle of Life", "spellId": 371832, "icon": "spell_lifegivingseed", "index": 100}]}, {"id": 99804, "name": "Lifespark", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93236], "entries": [{"id": 123294, "definitionId": 128172, "maxRanks": 1, "type": "passive", "name": "Lifespark", "spellId": 443177, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93265, "name": "Grace Period", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93263], "entries": [{"id": 115571, "definitionId": 120583, "maxRanks": 1, "type": "passive", "name": "Grace Period", "spellId": 376239, "icon": "ability_evoker_reversion_green", "index": 100}]}, {"id": 93262, "name": "Stasis", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93263], "entries": [{"id": 115567, "definitionId": 120579, "maxRanks": 1, "type": "active", "name": "Stasis", "spellId": 370537, "icon": "ability_evoker_stasis", "index": 200}]}], "heroNodes": [{"id": 94950, "name": "Engulf", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 37, "next": [94937, 99857, 94956], "prev": [], "entries": [{"id": 117547, "definitionId": 122559, "maxRanks": 1, "type": "active", "name": "Engulf", "spellId": 443328, "icon": "inv_ability_flameshaperevoker_engulf", "index": 100}], "freeNode": true}, {"id": 94937, "name": "Trailblazer / Shape of Flame", "type": "choice", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94949], "prev": [94950], "entries": [{"id": 117534, "definitionId": 122546, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 444849, "icon": "ability_deathwing_fierygrip", "index": 100}, {"id": 123404, "definitionId": 128242, "maxRanks": 1, "type": "passive", "name": "Shape of Flame", "spellId": 445074, "icon": "ability_mage_flamecannon", "index": 200}]}, {"id": 99857, "name": "Traveling Flame", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94946], "prev": [94950], "entries": [{"id": 123416, "definitionId": 128254, "maxRanks": 1, "type": "passive", "name": "Traveling Flame", "spellId": 444140, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 94956, "name": "Enkindle", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94923], "prev": [94950], "entries": [{"id": 117553, "definitionId": 122565, "maxRanks": 1, "type": "passive", "name": "Enkindle", "spellId": 444016, "icon": "inv_10_elementalcombinedfoozles_purifiedshadowflame", "index": 100}]}, {"id": 94949, "name": "Conduit of Flame", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94920], "prev": [94937], "entries": [{"id": 117546, "definitionId": 122558, "maxRanks": 1, "type": "passive", "name": "Conduit of Flame", "spellId": 444843, "icon": "ability_evoker_innatemagic5", "index": 100}]}, {"id": 94946, "name": "Burning Adrenaline", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94945], "prev": [99857], "entries": [{"id": 117543, "definitionId": 122555, "maxRanks": 1, "type": "passive", "name": "Burning Adrenaline", "spellId": 444020, "icon": "inv_gauntlets_03", "index": 100}]}, {"id": 94923, "name": "Fan the Flames / Expanded Lungs", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94931], "prev": [94956], "entries": [{"id": 117520, "definitionId": 122532, "maxRanks": 1, "type": "passive", "name": "Fan the Flames", "spellId": 444318, "icon": "ability_evoker_oppressingroar2", "index": 100}, {"id": 123767, "definitionId": 128605, "maxRanks": 1, "type": "passive", "name": "Expanded Lungs", "spellId": 444845, "icon": "inv_fyrakk_dragonbreath", "index": 200}]}, {"id": 94920, "name": "Titanic Precision", "type": "single", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94949], "entries": [{"id": 117517, "definitionId": 122529, "maxRanks": 1, "type": "passive", "name": "Titanic Precision", "spellId": 445625, "icon": "inv_10_misc_titansspark_shadowflame", "index": 100}]}, {"id": 94945, "name": "Red Hot", "type": "single", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94946], "entries": [{"id": 117542, "definitionId": 122554, "maxRanks": 1, "type": "passive", "name": "Red Hot", "spellId": 444081, "icon": "ability_ironmaidens_grapeshotblast", "index": 100}]}, {"id": 94931, "name": "Lifecinders / Draconic Instincts", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94923], "entries": [{"id": 117528, "definitionId": 122540, "maxRanks": 1, "type": "passive", "name": "Lifecinders", "spellId": 444322, "icon": "inv_misc_herb_cinderbloom_petal", "index": 100}, {"id": 123405, "definitionId": 128243, "maxRanks": 1, "type": "passive", "name": "Draconic Instincts", "spellId": 445958, "icon": "inv_misc_scales_basilliskorange", "index": 200}]}, {"id": 94922, "name": "Consume Flame", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 37, "next": [], "prev": [94920, 94945, 94931], "entries": [{"id": 117519, "definitionId": 122531, "maxRanks": 1, "type": "passive", "name": "Consume Flame", "spellId": 444088, "icon": "inv_shadowflames_wave", "index": 100}]}, {"id": 94954, "name": "Chrono Flame", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 38, "next": [94955, 94948, 94925], "prev": [], "entries": [{"id": 117551, "definitionId": 122563, "maxRanks": 1, "type": "passive", "name": "Chrono Flame", "spellId": 431442, "icon": "inv_ability_chronowardenevoker_chronoflame", "index": 100}], "freeNode": true}, {"id": 94948, "name": "Warp", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94935], "prev": [94954], "entries": [{"id": 117545, "definitionId": 122557, "maxRanks": 1, "type": "passive", "name": "Warp", "spellId": 429483, "icon": "ability_evoker_spatialparadox", "index": 100}]}, {"id": 94955, "name": "Temporal Burst", "type": "single", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "requiresNode": 93350, "next": [94947], "prev": [94954], "entries": [{"id": 117552, "definitionId": 122564, "maxRanks": 1, "type": "passive", "name": "Temporal Burst", "spellId": 431695, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 94925, "name": "Reverberations", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94951], "prev": [94954], "entries": [{"id": 117522, "definitionId": 122534, "maxRanks": 1, "type": "passive", "name": "Reverberations", "spellId": 431615, "icon": "ability_evoker_giftoftheaspects", "index": 100}]}, {"id": 94935, "name": "Temporality / Motes of Acceleration", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94932], "prev": [94948], "entries": [{"id": 117532, "definitionId": 122544, "maxRanks": 1, "type": "passive", "name": "Temporality", "spellId": 431873, "icon": "ability_evoker_return", "index": 100}, {"id": 117784, "definitionId": 122796, "maxRanks": 1, "type": "passive", "name": "Motes of Acceleration", "spellId": 432008, "icon": "item_timemote_icon", "index": 200}]}, {"id": 94947, "name": "Threads of Fate", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94930], "prev": [94955], "entries": [{"id": 117544, "definitionId": 122556, "maxRanks": 1, "type": "passive", "name": "Threads of Fate", "spellId": 431715, "icon": "ability_evoker_sandsoftime", "index": 100}]}, {"id": 94951, "name": "Primacy", "type": "single", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94942], "prev": [94925], "entries": [{"id": 117548, "definitionId": 122560, "maxRanks": 1, "type": "passive", "name": "Primacy", "spellId": 431657, "icon": "inv_misc_pocketwatch_01", "index": 100}]}, {"id": 94932, "name": "Double-time / Time Convergence", "type": "choice", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94935], "entries": [{"id": 117529, "definitionId": 122541, "maxRanks": 1, "type": "passive", "name": "Double-time", "spellId": 431874, "icon": "spell_holy_borrowedtime", "index": 100}, {"id": 117786, "definitionId": 122798, "maxRanks": 1, "type": "passive", "name": "Time Convergence", "spellId": 431984, "icon": "ability_evoker_plotthefuture", "index": 200}]}, {"id": 94930, "name": "Master of Destiny / Instability Matrix", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94947], "entries": [{"id": 117527, "definitionId": 122539, "maxRanks": 1, "type": "passive", "name": "Master of Destiny", "spellId": 431840, "icon": "ability_evoker_defyfate", "index": 100}, {"id": 126310, "definitionId": 131136, "maxRanks": 1, "type": "passive", "name": "Instability Matrix", "spellId": 431484, "icon": "ability_dragonriding_bronzerewind01", "index": 200}]}, {"id": 94942, "name": "Golden Opportunity", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94951], "entries": [{"id": 117539, "definitionId": 122551, "maxRanks": 1, "type": "passive", "name": "Golden Opportunity", "spellId": 432004, "icon": "achievement_faction_goldenlotus", "index": 100}]}, {"id": 94929, "name": "Afterimage", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 38, "next": [], "prev": [94930, 94932, 94942], "entries": [{"id": 117526, "definitionId": 122538, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 431875, "icon": "ability_evoker_livingflame", "index": 100}]}], "subTreeNodes": [{"id": 99826, "name": "Chronowarden / Flameshaper", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123335, "type": "subtree", "name": "Chronowarden", "traitSubTreeId": 38, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-chronowarden", "nodes": [94954, 94948, 94955, 94925, 94935, 94947, 94951, 94932, 94930, 94942, 94929]}, {"id": 123332, "type": "subtree", "name": "Flameshaper", "traitSubTreeId": 37, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-flameshaper", "nodes": [94950, 94937, 99857, 94956, 94949, 94946, 94923, 94920, 94945, 94931, 94922]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93297, 93298, 93299, 93300, 93301, 93302, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249, 103843, 103844]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/hunter_beast_mastery.json b/simc_support/game_data/data_files/trees/hunter_beast_mastery.json index 40dce7a..5bff441 100644 --- a/simc_support/game_data/data_files/trees/hunter_beast_mastery.json +++ b/simc_support/game_data/data_files/trees/hunter_beast_mastery.json @@ -1 +1 @@ -{"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Beast Mastery", "specId": 253, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102378, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126441, "definitionId": 131267, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 53351, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Improved Kill Shot", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102378], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Improved Kill Shot", "spellId": 343248, "icon": "ability_hunter_snipertraining", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 102292], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [102292, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 102292, "name": "Counter Shot", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 126352, "definitionId": 131178, "maxRanks": 1, "type": "active", "name": "Counter Shot", "spellId": 147362, "icon": "inv_ammo_arrow_03", "index": 100}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [102292, 102403, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [102292], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [102292, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102346, "name": "Kill Command", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102354, 102361, 102377], "prev": [], "entries": [{"id": 126408, "definitionId": 131234, "maxRanks": 1, "type": "active", "name": "Kill Command", "spellId": 34026, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102354, "name": "Cobra Shot", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102374, 102351], "prev": [102346], "entries": [{"id": 126416, "definitionId": 131242, "maxRanks": 1, "type": "active", "name": "Cobra Shot", "spellId": 193455, "icon": "ability_hunter_cobrashot", "index": 100}]}, {"id": 102361, "name": "Animal Companion", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [102363], "prev": [102346], "entries": [{"id": 126423, "definitionId": 131249, "maxRanks": 1, "type": "passive", "name": "Animal Companion", "spellId": 267116, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}, {"id": 102377, "name": "Barbed Shot", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102343, 102345], "prev": [102346], "entries": [{"id": 126440, "definitionId": 131266, "maxRanks": 1, "type": "active", "name": "Barbed Shot", "spellId": 217200, "icon": "ability_hunter_barbedshot", "index": 100}]}, {"id": 102374, "name": "Pack Tactics", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [102357], "prev": [102354], "entries": [{"id": 126437, "definitionId": 131263, "maxRanks": 1, "type": "passive", "name": "Pack Tactics", "spellId": 321014, "icon": "ability_hunter_invigeration", "index": 100}]}, {"id": 102351, "name": "Aspect of the Beast", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102357], "prev": [102354], "entries": [{"id": 126413, "definitionId": 131239, "maxRanks": 1, "type": "passive", "name": "Aspect of the Beast", "spellId": 191384, "icon": "ability_deathwing_assualtaspects", "index": 100}]}, {"id": 102343, "name": "War Orders", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102369], "prev": [102377], "entries": [{"id": 126405, "definitionId": 131231, "maxRanks": 1, "type": "passive", "name": "War Orders", "spellId": 393933, "icon": "ability_hunter_barbedshot", "index": 100}]}, {"id": 102345, "name": "Thrill of the Hunt", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [102369], "prev": [102377], "entries": [{"id": 126407, "definitionId": 131233, "maxRanks": 1, "type": "passive", "name": "Thrill of the Hunt", "spellId": 257944, "icon": "ability_hunter_thrillofthehunt", "index": 100}]}, {"id": 102357, "name": "Go for the Throat", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102356, 102368, 102344], "prev": [102351, 102374], "entries": [{"id": 126419, "definitionId": 131245, "maxRanks": 1, "type": "passive", "name": "Go for the Throat", "spellId": 459550, "icon": "ability_hunter_goforthethroat", "index": 100}]}, {"id": 102363, "name": "Multi-Shot", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [102341], "prev": [102361], "entries": [{"id": 126425, "definitionId": 131251, "maxRanks": 1, "type": "active", "name": "Multi-Shot", "spellId": 2643, "icon": "ability_upgrademoonglaive", "index": 100}]}, {"id": 102369, "name": "Laceration", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102338, 102360, 102358], "prev": [102345, 102343], "entries": [{"id": 126432, "definitionId": 131258, "maxRanks": 1, "type": "passive", "name": "Laceration", "spellId": 459552, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 102356, "name": "Cobra Senses", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102347], "prev": [102357], "entries": [{"id": 126418, "definitionId": 131244, "maxRanks": 1, "type": "passive", "name": "Cobra Senses", "spellId": 378244, "icon": "ability_hunter_cobrastrikes", "index": 100}]}, {"id": 102368, "name": "Alpha Predator", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102359, 102347], "prev": [102357], "entries": [{"id": 126431, "definitionId": 131257, "maxRanks": 1, "type": "passive", "name": "Alpha Predator", "spellId": 269737, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 102344, "name": "Improved Kill Command", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102359], "prev": [102357], "entries": [{"id": 126406, "definitionId": 131232, "maxRanks": 1, "type": "passive", "name": "Improved Kill Command", "spellId": 378010, "icon": "ability_hunter_pet_goto", "index": 100}]}, {"id": 102341, "name": "Beast Cleave", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102355, 102359, 102348], "prev": [102363], "entries": [{"id": 126403, "definitionId": 131229, "maxRanks": 1, "type": "passive", "name": "Beast Cleave", "spellId": 115939, "icon": "ability_hunter_sickem", "index": 100}]}, {"id": 102338, "name": "Wild Call", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102348], "prev": [102369], "entries": [{"id": 126399, "definitionId": 131225, "maxRanks": 1, "type": "passive", "name": "Wild Call", "spellId": 185789, "icon": "ability_hunter_masterscall", "index": 100}]}, {"id": 102360, "name": "Hunter's Prey", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102348, 102376], "prev": [102369], "entries": [{"id": 126422, "definitionId": 131248, "maxRanks": 1, "type": "passive", "name": "Hunter's Prey", "spellId": 378210, "icon": "ability_hunter_assassinate", "index": 100}]}, {"id": 102358, "name": "Venom's Bite", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102376], "prev": [102369], "entries": [{"id": 126420, "definitionId": 131246, "maxRanks": 1, "type": "passive", "name": "Venom's Bite", "spellId": 459565, "icon": "spell_hunter_exoticmunitions_poisoned", "index": 100}]}, {"id": 102347, "name": "Stomp", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102352, 102335, 102353], "prev": [102368, 102356], "entries": [{"id": 126409, "definitionId": 131235, "maxRanks": 1, "type": "passive", "name": "Stomp", "spellId": 199530, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 102359, "name": "Kindred Spirits", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [102340, 102353], "prev": [102341, 102368, 102344], "entries": [{"id": 126421, "definitionId": 131247, "maxRanks": 2, "type": "passive", "name": "Kindred Spirits", "spellId": 56315, "icon": "ability_hunter_separationanxiety", "index": 100}]}, {"id": 102355, "name": "Kill Cleave", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102340], "prev": [102341], "entries": [{"id": 126417, "definitionId": 131243, "maxRanks": 1, "type": "passive", "name": "Kill Cleave", "spellId": 378207, "icon": "spell_druid_bloodythrash", "index": 100}]}, {"id": 102348, "name": "Training Expert", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [102340, 102365], "prev": [102341, 102360, 102338], "entries": [{"id": 126410, "definitionId": 131236, "maxRanks": 2, "type": "passive", "name": "Training Expert", "spellId": 378209, "icon": "spell_hunter_adaptation", "index": 100}]}, {"id": 102376, "name": "Dire Beast", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102349, 102337, 102365], "prev": [102358, 102360], "entries": [{"id": 126439, "definitionId": 131265, "maxRanks": 1, "type": "active", "name": "Dire Beast", "spellId": 120679, "icon": "ability_hunter_longevity", "index": 100}]}, {"id": 102352, "name": "A Murder of Crows", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364], "prev": [102347], "entries": [{"id": 126414, "definitionId": 131240, "maxRanks": 1, "type": "passive", "name": "A Murder of Crows", "spellId": 459760, "icon": "ability_hunter_murderofcrows", "index": 100}]}, {"id": 102335, "name": "Barrage", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364], "prev": [102347], "entries": [{"id": 126396, "definitionId": 131222, "maxRanks": 1, "type": "active", "name": "Barrage", "spellId": 120360, "icon": "ability_hunter_rapidregeneration", "index": 100}]}, {"id": 102353, "name": "Savagery", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364, 102372], "prev": [102359, 102347], "entries": [{"id": 126415, "definitionId": 131241, "maxRanks": 1, "type": "passive", "name": "Savagery", "spellId": 424557, "icon": "spell_nature_protectionformnature", "index": 100}]}, {"id": 102340, "name": "Bestial Wrath", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102372, 102373, 102370], "prev": [102359, 102348, 102355], "entries": [{"id": 126402, "definitionId": 131228, "maxRanks": 1, "type": "active", "name": "Bestial Wrath", "spellId": 19574, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 102365, "name": "Dire Command", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102370, 102367], "prev": [102376, 102348], "entries": [{"id": 126427, "definitionId": 131253, "maxRanks": 1, "type": "passive", "name": "Dire Command", "spellId": 378743, "icon": "ability_hunter_ferociousinspiration", "index": 100}]}, {"id": 102349, "name": "Huntmaster's Call", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102367], "prev": [102376], "entries": [{"id": 126411, "definitionId": 131237, "maxRanks": 1, "type": "passive", "name": "Huntmaster's Call", "spellId": 459730, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 102337, "name": "Dire Frenzy", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102367], "prev": [102376], "entries": [{"id": 126398, "definitionId": 131224, "maxRanks": 1, "type": "passive", "name": "Dire Frenzy", "spellId": 385810, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102364, "name": "Killer Instinct", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102336], "prev": [102335, 102352, 102353], "entries": [{"id": 126426, "definitionId": 131252, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 273887, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102372, "name": "Master Handler", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102340, 102353], "entries": [{"id": 126435, "definitionId": 131261, "maxRanks": 1, "type": "passive", "name": "Master Handler", "spellId": 424558, "icon": "ability_hunter_beastwithin", "index": 100}]}, {"id": 102373, "name": "Barbed Wrath", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102375, 102342, 102350], "prev": [102340], "entries": [{"id": 126436, "definitionId": 131262, "maxRanks": 1, "type": "passive", "name": "Barbed Wrath", "spellId": 231548, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 102370, "name": "Explosive Venom", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102365, 102340], "entries": [{"id": 126433, "definitionId": 131259, "maxRanks": 1, "type": "passive", "name": "Explosive Venom", "spellId": 459693, "icon": "ability_hunter_potentvenom", "index": 100}]}, {"id": 102367, "name": "Basilisk Collar", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102362], "prev": [102337, 102349, 102365], "entries": [{"id": 126430, "definitionId": 131256, "maxRanks": 2, "type": "passive", "name": "Basilisk Collar", "spellId": 459571, "icon": "hunter_pvp_direbeastbasilisk", "index": 100}]}, {"id": 102336, "name": "Call of the Wild", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102339], "prev": [102364], "entries": [{"id": 126397, "definitionId": 131223, "maxRanks": 1, "type": "active", "name": "Call of the Wild", "spellId": 359844, "icon": "ability_hunter_callofthewild", "index": 100}]}, {"id": 102375, "name": "Killer Cobra", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102371], "prev": [102373], "entries": [{"id": 126438, "definitionId": 131264, "maxRanks": 1, "type": "passive", "name": "Killer Cobra", "spellId": 199532, "icon": "ability_hunter_snaketrap", "index": 100}]}, {"id": 102342, "name": "Scent of Blood", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [102371], "prev": [102373], "entries": [{"id": 126404, "definitionId": 131230, "maxRanks": 2, "type": "passive", "name": "Scent of Blood", "spellId": 193532, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 102350, "name": "Brutal Companion", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102371], "prev": [102373], "entries": [{"id": 126412, "definitionId": 131238, "maxRanks": 1, "type": "passive", "name": "Brutal Companion", "spellId": 386870, "icon": "ability_druid_rake", "index": 100}]}, {"id": 102362, "name": "Bloodshed", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102366], "prev": [102367], "entries": [{"id": 126424, "definitionId": 131250, "maxRanks": 1, "type": "active", "name": "Bloodshed", "spellId": 321530, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 102339, "name": "Wild Instincts / Bloody Frenzy", "type": "choice", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102336], "entries": [{"id": 126401, "definitionId": 131227, "maxRanks": 1, "type": "passive", "name": "Wild Instincts", "spellId": 378442, "icon": "ability_hunter_beastwithin", "index": 100}, {"id": 126400, "definitionId": 131226, "maxRanks": 1, "type": "passive", "name": "Bloody Frenzy", "spellId": 407412, "icon": "ability_racial_cannibalize", "index": 200}]}, {"id": 102371, "name": "Piercing Fangs", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102350, 102342, 102375], "entries": [{"id": 126434, "definitionId": 131260, "maxRanks": 1, "type": "passive", "name": "Piercing Fangs", "spellId": 392053, "icon": "inv_misc_monsterfang_02", "index": 100}]}, {"id": 102366, "name": "Venomous Bite / Shower of Blood", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102362], "entries": [{"id": 126429, "definitionId": 131255, "maxRanks": 1, "type": "passive", "name": "Venomous Bite", "spellId": 459667, "icon": "ability_creature_poison_01", "index": 100}, {"id": 126428, "definitionId": 131254, "maxRanks": 1, "type": "passive", "name": "Shower of Blood", "spellId": 459729, "icon": "inv_artifact_bloodoftheassassinated", "index": 200}]}], "heroNodes": [{"id": 94987, "name": "Black Arrow", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 44, "next": [94961, 94968, 94983], "prev": [], "entries": [{"id": 117584, "definitionId": 122596, "maxRanks": 1, "type": "active", "name": "Black Arrow", "spellId": 430703, "icon": "inv_ability_darkrangerhunter_blackarrow", "index": 100}], "freeNode": true}, {"id": 94961, "name": "Overshadow", "type": "single", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94986], "prev": [94987], "entries": [{"id": 117558, "definitionId": 122570, "maxRanks": 1, "type": "passive", "name": "Overshadow", "spellId": 430716, "icon": "ability_piercedamage", "index": 100}]}, {"id": 94983, "name": "Shadow Hounds", "type": "single", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94959], "prev": [94987], "entries": [{"id": 117580, "definitionId": 122592, "maxRanks": 1, "type": "passive", "name": "Shadow Hounds", "spellId": 430707, "icon": "inv_darkhoundmount_draka_blue", "index": 100}]}, {"id": 94968, "name": "Death Shade", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94960], "prev": [94987], "entries": [{"id": 117565, "definitionId": 122577, "maxRanks": 1, "type": "passive", "name": "Death Shade", "spellId": 430711, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 94986, "name": "Dark Empowerment / Grave Reaper", "type": "choice", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94957], "prev": [94961], "entries": [{"id": 117583, "definitionId": 122595, "maxRanks": 1, "type": "passive", "name": "Dark Empowerment", "spellId": 430718, "icon": "inv_artifact_powerofthedarkside", "index": 100}, {"id": 123780, "definitionId": 128618, "maxRanks": 1, "type": "passive", "name": "Grave Reaper", "spellId": 430719, "icon": "inv_misc_2h_farmscythe_a_01", "index": 200}]}, {"id": 94959, "name": "Embrace the Shadows / Smoke Screen", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94982], "prev": [94983], "entries": [{"id": 117556, "definitionId": 122568, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadows", "spellId": 430704, "icon": "spell_shadow_shadowembrace", "index": 100}, {"id": 123779, "definitionId": 128617, "maxRanks": 1, "type": "passive", "name": "Smoke Screen", "spellId": 430709, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 94960, "name": "Dark Chains", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94974], "prev": [94968], "entries": [{"id": 117557, "definitionId": 122569, "maxRanks": 1, "type": "passive", "name": "Dark Chains", "spellId": 430712, "icon": "inv_belt_44c", "index": 100}]}, {"id": 94957, "name": "Shadow Lash", "type": "single", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "requiresNode": 102304, "next": [94993], "prev": [94986], "entries": [{"id": 117554, "definitionId": 122566, "maxRanks": 1, "type": "passive", "name": "Shadow Lash", "spellId": 430717, "icon": "inv_misc_volatileshadow", "index": 100}]}, {"id": 94982, "name": "Shadow Surge", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94959], "entries": [{"id": 117579, "definitionId": 122591, "maxRanks": 1, "type": "passive", "name": "Shadow Surge", "spellId": 430714, "icon": "ability_socererking_forcenova", "index": 100}]}, {"id": 94974, "name": "Darkness Calls / Shadow Erasure", "type": "choice", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94960], "entries": [{"id": 117571, "definitionId": 122583, "maxRanks": 1, "type": "passive", "name": "Darkness Calls", "spellId": 430722, "icon": "spell_shadow_twilight", "index": 100}, {"id": 123778, "definitionId": 128616, "maxRanks": 1, "type": "passive", "name": "Shadow Erasure", "spellId": 430720, "icon": "ability_warlock_everlastingaffliction", "index": 200}]}, {"id": 94993, "name": "Withering Fire", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 44, "next": [], "prev": [94982, 94957, 94974], "entries": [{"id": 117590, "definitionId": 122602, "maxRanks": 1, "type": "passive", "name": "Withering Fire", "spellId": 430715, "icon": "spell_shadow_painspike", "index": 100}]}, {"id": 94991, "name": "Vicious Hunt", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 43, "next": [94985, 94992, 94962], "prev": [], "entries": [{"id": 117588, "definitionId": 122600, "maxRanks": 1, "type": "passive", "name": "Vicious Hunt", "spellId": 445404, "icon": "inv_ability_packleaderhunter_vicioushunt", "index": 100}], "freeNode": true}, {"id": 94985, "name": "Pack Coordination", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94972], "prev": [94991], "entries": [{"id": 117582, "definitionId": 122594, "maxRanks": 1, "type": "passive", "name": "Pack Coordination", "spellId": 445505, "icon": "ability_hunter_separationanxiety", "index": 100}]}, {"id": 94992, "name": "Howl of the Pack", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94984], "prev": [94991], "entries": [{"id": 117589, "definitionId": 122601, "maxRanks": 1, "type": "passive", "name": "Howl of the Pack", "spellId": 445707, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 94962, "name": "Wild Attacks", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94988], "prev": [94991], "entries": [{"id": 117559, "definitionId": 122571, "maxRanks": 1, "type": "passive", "name": "Wild Attacks", "spellId": 445708, "icon": "inv_misc_bone_09", "index": 100}]}, {"id": 94972, "name": "Den Recovery", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94969], "prev": [94985], "entries": [{"id": 117569, "definitionId": 122581, "maxRanks": 1, "type": "passive", "name": "Den Recovery", "spellId": 445710, "icon": "ability_shaman_freedomwolf", "index": 100}]}, {"id": 94984, "name": "Tireless Hunt / Cornered Prey", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94967], "prev": [94992], "entries": [{"id": 117581, "definitionId": 122593, "maxRanks": 1, "type": "passive", "name": "Tireless Hunt", "spellId": 445701, "icon": "ability_mount_jungletiger", "index": 100}, {"id": 123782, "definitionId": 128620, "maxRanks": 1, "type": "passive", "name": "Cornered Prey", "spellId": 445702, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 94988, "name": "Frenzied Tear", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94979], "prev": [94962], "entries": [{"id": 117585, "definitionId": 122597, "maxRanks": 1, "type": "passive", "name": "Frenzied Tear", "spellId": 445696, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 94969, "name": "Scattered Prey / Covering Fire", "type": "choice", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94972], "entries": [{"id": 117566, "definitionId": 122578, "maxRanks": 1, "type": "passive", "name": "Scattered Prey", "spellId": 445768, "icon": "inv_misc_bone_09", "index": 100}, {"id": 123783, "definitionId": 128621, "maxRanks": 1, "type": "passive", "name": "Covering Fire", "spellId": 445715, "icon": "ability_hunter_runningshot", "index": 200}]}, {"id": 94967, "name": "Cull the Herd", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94984], "entries": [{"id": 117564, "definitionId": 122576, "maxRanks": 1, "type": "passive", "name": "Cull the Herd", "spellId": 445717, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 94979, "name": "Furious Assault / Beast of Opportunity", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94988], "entries": [{"id": 117576, "definitionId": 122588, "maxRanks": 1, "type": "passive", "name": "Furious Assault", "spellId": 445699, "icon": "spell_druid_feralchargecat", "index": 100}, {"id": 123781, "definitionId": 128619, "maxRanks": 1, "type": "passive", "name": "Beast of Opportunity", "spellId": 445700, "icon": "ability_hunter_catlikereflexes", "index": 200}]}, {"id": 94966, "name": "Pack Assault", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 43, "next": [], "prev": [94967, 94969, 94979], "entries": [{"id": 117563, "definitionId": 122575, "maxRanks": 1, "type": "passive", "name": "Pack Assault", "spellId": 445721, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}], "subTreeNodes": [{"id": 99832, "name": "Dark Ranger / Pack Leader", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123348, "type": "subtree", "name": "Dark Ranger", "traitSubTreeId": 44, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-darkranger", "nodes": [94987, 94961, 94983, 94968, 94986, 94959, 94960, 94957, 94982, 94974, 94993]}, {"id": 123347, "type": "subtree", "name": "Pack Leader", "traitSubTreeId": 43, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-packleader", "nodes": [94991, 94985, 94992, 94962, 94972, 94984, 94988, 94969, 94967, 94979, 94966]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102306, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]} \ No newline at end of file +{"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Beast Mastery", "specId": 253, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102378, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126441, "definitionId": 131267, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 53351, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Deathblow", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102378], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Deathblow", "spellId": 343248, "icon": "ability_hunter_runningshot", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 102292], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [102292, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 102292, "name": "Counter Shot", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 126352, "definitionId": 131178, "maxRanks": 1, "type": "active", "name": "Counter Shot", "spellId": 147362, "icon": "inv_ammo_arrow_03", "index": 100}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [102292, 102403, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [102292], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [102292, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102346, "name": "Kill Command", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102354, 102361, 102377], "prev": [], "entries": [{"id": 126408, "definitionId": 131234, "maxRanks": 1, "type": "active", "name": "Kill Command", "spellId": 34026, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102354, "name": "Cobra Shot", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102374, 102351], "prev": [102346], "entries": [{"id": 126416, "definitionId": 131242, "maxRanks": 1, "type": "active", "name": "Cobra Shot", "spellId": 193455, "icon": "ability_hunter_cobrashot", "index": 100}]}, {"id": 102361, "name": "Animal Companion", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [102363], "prev": [102346], "entries": [{"id": 126423, "definitionId": 131249, "maxRanks": 1, "type": "passive", "name": "Animal Companion", "spellId": 267116, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}, {"id": 102377, "name": "Barbed Shot", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102343, 102345], "prev": [102346], "entries": [{"id": 126440, "definitionId": 131266, "maxRanks": 1, "type": "active", "name": "Barbed Shot", "spellId": 217200, "icon": "ability_hunter_barbedshot", "index": 100}]}, {"id": 102374, "name": "Pack Tactics", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [102357], "prev": [102354], "entries": [{"id": 126437, "definitionId": 131263, "maxRanks": 1, "type": "passive", "name": "Pack Tactics", "spellId": 321014, "icon": "ability_hunter_invigeration", "index": 100}]}, {"id": 102351, "name": "Aspect of the Beast", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102357], "prev": [102354], "entries": [{"id": 126413, "definitionId": 131239, "maxRanks": 1, "type": "passive", "name": "Aspect of the Beast", "spellId": 191384, "icon": "ability_deathwing_assualtaspects", "index": 100}]}, {"id": 102343, "name": "War Orders", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102369], "prev": [102377], "entries": [{"id": 126405, "definitionId": 131231, "maxRanks": 1, "type": "passive", "name": "War Orders", "spellId": 393933, "icon": "ability_hunter_barbedshot", "index": 100}]}, {"id": 102345, "name": "Thrill of the Hunt", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [102369], "prev": [102377], "entries": [{"id": 126407, "definitionId": 131233, "maxRanks": 1, "type": "passive", "name": "Thrill of the Hunt", "spellId": 257944, "icon": "ability_hunter_thrillofthehunt", "index": 100}]}, {"id": 102357, "name": "Go for the Throat", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102356, 102368, 102344], "prev": [102351, 102374], "entries": [{"id": 126419, "definitionId": 131245, "maxRanks": 1, "type": "passive", "name": "Go for the Throat", "spellId": 459550, "icon": "ability_hunter_goforthethroat", "index": 100}]}, {"id": 102363, "name": "Multi-Shot", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [102341], "prev": [102361], "entries": [{"id": 126425, "definitionId": 131251, "maxRanks": 1, "type": "active", "name": "Multi-Shot", "spellId": 2643, "icon": "ability_upgrademoonglaive", "index": 100}]}, {"id": 102369, "name": "Laceration", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102338, 102360, 102358], "prev": [102345, 102343], "entries": [{"id": 126432, "definitionId": 131258, "maxRanks": 1, "type": "passive", "name": "Laceration", "spellId": 459552, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 102356, "name": "Barbed Scales", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102347], "prev": [102357], "entries": [{"id": 126418, "definitionId": 131244, "maxRanks": 1, "type": "passive", "name": "Barbed Scales", "spellId": 469880, "icon": "inv_misc_scales_stonygreen", "index": 100}]}, {"id": 102368, "name": "Alpha Predator", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102359, 102347], "prev": [102357], "entries": [{"id": 126431, "definitionId": 131257, "maxRanks": 1, "type": "passive", "name": "Alpha Predator", "spellId": 269737, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 102344, "name": "Snakeskin Quiver / Cobra Senses", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102359], "prev": [102357], "entries": [{"id": 126406, "definitionId": 131232, "maxRanks": 1, "type": "passive", "name": "Snakeskin Quiver", "spellId": 468695, "icon": "inv_quiver_1h_hunter_c_01_green", "index": 100}, {"id": 128265, "definitionId": 133072, "maxRanks": 1, "type": "passive", "name": "Cobra Senses", "spellId": 378244, "icon": "ability_hunter_cobrastrikes", "index": 200}]}, {"id": 102341, "name": "Beast Cleave", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102355, 102359, 102348], "prev": [102363], "entries": [{"id": 126403, "definitionId": 131229, "maxRanks": 1, "type": "passive", "name": "Beast Cleave", "spellId": 115939, "icon": "ability_hunter_sickem", "index": 100}]}, {"id": 102338, "name": "Wild Call", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102348], "prev": [102369], "entries": [{"id": 126399, "definitionId": 131225, "maxRanks": 1, "type": "passive", "name": "Wild Call", "spellId": 185789, "icon": "ability_hunter_masterscall", "index": 100}]}, {"id": 102360, "name": "Hunter's Prey", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102348, 102376], "prev": [102369], "entries": [{"id": 126422, "definitionId": 131248, "maxRanks": 1, "type": "passive", "name": "Hunter's Prey", "spellId": 378210, "icon": "ability_hunter_assassinate", "index": 100}]}, {"id": 102358, "name": "Venom's Bite", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102376], "prev": [102369], "entries": [{"id": 126420, "definitionId": 131246, "maxRanks": 1, "type": "passive", "name": "Venom's Bite", "spellId": 459565, "icon": "spell_hunter_exoticmunitions_poisoned", "index": 100}]}, {"id": 102347, "name": "Stomp", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102352, 102335, 102353], "prev": [102368, 102356], "entries": [{"id": 126409, "definitionId": 131235, "maxRanks": 1, "type": "passive", "name": "Stomp", "spellId": 199530, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 102359, "name": "Serpentine Rhythm", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102340, 102353], "prev": [102341, 102368, 102344], "entries": [{"id": 126421, "definitionId": 131247, "maxRanks": 1, "type": "passive", "name": "Serpentine Rhythm", "spellId": 468701, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 102355, "name": "Kill Cleave", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102340], "prev": [102341], "entries": [{"id": 126417, "definitionId": 131243, "maxRanks": 1, "type": "passive", "name": "Kill Cleave", "spellId": 378207, "icon": "spell_druid_bloodythrash", "index": 100}]}, {"id": 102348, "name": "Training Expert", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102340, 102365], "prev": [102341, 102360, 102338], "entries": [{"id": 126410, "definitionId": 131236, "maxRanks": 1, "type": "passive", "name": "Training Expert", "spellId": 378209, "icon": "spell_hunter_adaptation", "index": 100}]}, {"id": 102376, "name": "Dire Beast", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102349, 102337, 102365], "prev": [102358, 102360], "entries": [{"id": 126439, "definitionId": 131265, "maxRanks": 1, "type": "active", "name": "Dire Beast", "spellId": 120679, "icon": "ability_hunter_longevity", "index": 100}]}, {"id": 102352, "name": "A Murder of Crows", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364], "prev": [102347], "entries": [{"id": 126414, "definitionId": 131240, "maxRanks": 1, "type": "passive", "name": "A Murder of Crows", "spellId": 459760, "icon": "ability_hunter_murderofcrows", "index": 100}]}, {"id": 102335, "name": "Barrage", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364], "prev": [102347], "entries": [{"id": 126396, "definitionId": 131222, "maxRanks": 1, "type": "active", "name": "Barrage", "spellId": 120360, "icon": "ability_hunter_rapidregeneration", "index": 100}]}, {"id": 102353, "name": "Savagery", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364, 102372], "prev": [102359, 102347], "entries": [{"id": 126415, "definitionId": 131241, "maxRanks": 1, "type": "passive", "name": "Savagery", "spellId": 424557, "icon": "spell_nature_protectionformnature", "index": 100}]}, {"id": 102340, "name": "Bestial Wrath", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102372, 102373, 102370], "prev": [102359, 102348, 102355], "entries": [{"id": 126402, "definitionId": 131228, "maxRanks": 1, "type": "active", "name": "Bestial Wrath", "spellId": 19574, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 102365, "name": "Dire Command", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102370, 102367], "prev": [102376, 102348], "entries": [{"id": 126427, "definitionId": 131253, "maxRanks": 1, "type": "passive", "name": "Dire Command", "spellId": 378743, "icon": "ability_hunter_ferociousinspiration", "index": 100}]}, {"id": 102349, "name": "Huntmaster's Call", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102367], "prev": [102376], "entries": [{"id": 126411, "definitionId": 131237, "maxRanks": 1, "type": "passive", "name": "Huntmaster's Call", "spellId": 459730, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 102337, "name": "Dire Frenzy", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102367], "prev": [102376], "entries": [{"id": 126398, "definitionId": 131224, "maxRanks": 1, "type": "passive", "name": "Dire Frenzy", "spellId": 385810, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102364, "name": "Killer Instinct", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102336], "prev": [102335, 102352, 102353], "entries": [{"id": 126426, "definitionId": 131252, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 273887, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102372, "name": "Master Handler", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102340, 102353], "entries": [{"id": 126435, "definitionId": 131261, "maxRanks": 1, "type": "passive", "name": "Master Handler", "spellId": 424558, "icon": "ability_hunter_beastwithin", "index": 100}]}, {"id": 102373, "name": "Barbed Wrath", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102375, 102342, 102350], "prev": [102340], "entries": [{"id": 126436, "definitionId": 131262, "maxRanks": 1, "type": "passive", "name": "Barbed Wrath", "spellId": 231548, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 102370, "name": "Explosive Venom", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102365, 102340], "entries": [{"id": 126433, "definitionId": 131259, "maxRanks": 1, "type": "passive", "name": "Explosive Venom", "spellId": 459693, "icon": "ability_hunter_potentvenom", "index": 100}]}, {"id": 102367, "name": "Basilisk Collar", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102362], "prev": [102337, 102349, 102365], "entries": [{"id": 126430, "definitionId": 131256, "maxRanks": 2, "type": "passive", "name": "Basilisk Collar", "spellId": 459571, "icon": "hunter_pvp_direbeastbasilisk", "index": 100}]}, {"id": 102336, "name": "Call of the Wild", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102339], "prev": [102364], "entries": [{"id": 126397, "definitionId": 131223, "maxRanks": 1, "type": "active", "name": "Call of the Wild", "spellId": 359844, "icon": "ability_hunter_callofthewild", "index": 100}]}, {"id": 102375, "name": "Killer Cobra", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102371], "prev": [102373], "entries": [{"id": 126438, "definitionId": 131264, "maxRanks": 1, "type": "passive", "name": "Killer Cobra", "spellId": 199532, "icon": "ability_hunter_snaketrap", "index": 100}]}, {"id": 102342, "name": "Scent of Blood", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [102371], "prev": [102373], "entries": [{"id": 126404, "definitionId": 131230, "maxRanks": 2, "type": "passive", "name": "Scent of Blood", "spellId": 193532, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 102350, "name": "Brutal Companion", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102371], "prev": [102373], "entries": [{"id": 126412, "definitionId": 131238, "maxRanks": 1, "type": "passive", "name": "Brutal Companion", "spellId": 386870, "icon": "ability_druid_rake", "index": 100}]}, {"id": 102362, "name": "Bloodshed", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102366], "prev": [102367], "entries": [{"id": 126424, "definitionId": 131250, "maxRanks": 1, "type": "active", "name": "Bloodshed", "spellId": 321530, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 102339, "name": "Wild Instincts / Bloody Frenzy", "type": "choice", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102336], "entries": [{"id": 126401, "definitionId": 131227, "maxRanks": 1, "type": "passive", "name": "Wild Instincts", "spellId": 378442, "icon": "ability_hunter_beastwithin", "index": 100}, {"id": 126400, "definitionId": 131226, "maxRanks": 1, "type": "passive", "name": "Bloody Frenzy", "spellId": 407412, "icon": "ability_racial_cannibalize", "index": 200}]}, {"id": 102371, "name": "Piercing Fangs", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102350, 102342, 102375], "entries": [{"id": 126434, "definitionId": 131260, "maxRanks": 1, "type": "passive", "name": "Piercing Fangs", "spellId": 392053, "icon": "inv_misc_monsterfang_02", "index": 100}]}, {"id": 102366, "name": "Venomous Bite / Shower of Blood", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102362], "entries": [{"id": 126429, "definitionId": 131255, "maxRanks": 1, "type": "passive", "name": "Venomous Bite", "spellId": 459667, "icon": "ability_creature_poison_01", "index": 100}, {"id": 126428, "definitionId": 131254, "maxRanks": 1, "type": "passive", "name": "Shower of Blood", "spellId": 459729, "icon": "inv_artifact_bloodoftheassassinated", "index": 200}]}], "heroNodes": [{"id": 94987, "name": "Black Arrow", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 44, "next": [94961, 94968, 94983], "prev": [], "entries": [{"id": 117584, "definitionId": 122596, "maxRanks": 1, "type": "passive", "name": "Black Arrow", "spellId": 466932, "icon": "inv_ability_darkrangerhunter_blackarrow", "index": 100}], "freeNode": true}, {"id": 94961, "name": "Bleak Arrows", "type": "single", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94986], "prev": [94987], "entries": [{"id": 117558, "definitionId": 122570, "maxRanks": 1, "type": "passive", "name": "Bleak Arrows", "spellId": 467749, "icon": "inv_quiver_1h_mawraid_d_01", "index": 100}]}, {"id": 94983, "name": "Shadow Hounds / Soul Drinker", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94959], "prev": [94987], "entries": [{"id": 117580, "definitionId": 122592, "maxRanks": 1, "type": "passive", "name": "Shadow Hounds", "spellId": 430707, "icon": "inv_darkhoundmount_draka_blue", "index": 100}, {"id": 128238, "definitionId": 133045, "maxRanks": 1, "type": "passive", "name": "Soul Drinker", "spellId": 469638, "icon": "ability_warlock_soulsiphon", "index": 200}]}, {"id": 94968, "name": "The Bell Tolls", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94960], "prev": [94987], "entries": [{"id": 117565, "definitionId": 122577, "maxRanks": 1, "type": "passive", "name": "The Bell Tolls", "spellId": 467644, "icon": "spell_shadow_animatedead", "index": 100}]}, {"id": 94986, "name": "Phantom Pain / Ebon Bowstring", "type": "choice", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94957], "prev": [94961], "entries": [{"id": 117583, "definitionId": 122595, "maxRanks": 1, "type": "passive", "name": "Phantom Pain", "spellId": 467941, "icon": "spell_holy_painsupression", "index": 100}, {"id": 123780, "definitionId": 128618, "maxRanks": 1, "type": "passive", "name": "Ebon Bowstring", "spellId": 467897, "icon": "inv_10_tailoring_craftingoptionalreagent_enhancedspellthread_color4", "index": 200}]}, {"id": 94959, "name": "Embrace the Shadows / Smoke Screen", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94982], "prev": [94983], "entries": [{"id": 117556, "definitionId": 122568, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadows", "spellId": 430704, "icon": "spell_shadow_shadowembrace", "index": 100}, {"id": 123779, "definitionId": 128617, "maxRanks": 1, "type": "passive", "name": "Smoke Screen", "spellId": 430709, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 94960, "name": "Dark Chains / Shadow Dagger", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94974], "prev": [94968], "entries": [{"id": 117557, "definitionId": 122569, "maxRanks": 1, "type": "passive", "name": "Dark Chains", "spellId": 430712, "icon": "inv_belt_44c", "index": 100}, {"id": 128219, "definitionId": 133026, "maxRanks": 1, "type": "passive", "name": "Shadow Dagger", "spellId": 467741, "icon": "ability_throw", "index": 200}]}, {"id": 94957, "name": "Banshee's Mark", "type": "single", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94986], "entries": [{"id": 117554, "definitionId": 122566, "maxRanks": 1, "type": "passive", "name": "Banshee's Mark", "spellId": 467902, "icon": "achievement_leader_sylvanas", "index": 100}]}, {"id": 94982, "name": "Shadow Surge", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94959], "entries": [{"id": 117579, "definitionId": 122591, "maxRanks": 1, "type": "passive", "name": "Shadow Surge", "spellId": 467936, "icon": "ability_warlock_eradication", "index": 100}]}, {"id": 94974, "name": "Bleak Powder", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94960], "entries": [{"id": 117571, "definitionId": 122583, "maxRanks": 1, "type": "passive", "name": "Bleak Powder", "spellId": 467911, "icon": "inv_misc_powder_tin", "index": 100}]}, {"id": 94993, "name": "Withering Fire", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 44, "requiresNode": 102340, "next": [], "prev": [94982, 94957, 94974], "entries": [{"id": 117590, "definitionId": 122602, "maxRanks": 1, "type": "passive", "name": "Withering Fire", "spellId": 466990, "icon": "spell_shadow_painspike", "index": 100}]}, {"id": 94991, "name": "Vicious Hunt", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 43, "next": [94985, 94992, 94962], "prev": [], "entries": [{"id": 117588, "definitionId": 122600, "maxRanks": 1, "type": "passive", "name": "Vicious Hunt", "spellId": 445404, "icon": "inv_ability_packleaderhunter_vicioushunt", "index": 100}], "freeNode": true}, {"id": 94985, "name": "Pack Coordination", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94972], "prev": [94991], "entries": [{"id": 117582, "definitionId": 122594, "maxRanks": 1, "type": "passive", "name": "Pack Coordination", "spellId": 445505, "icon": "ability_hunter_separationanxiety", "index": 100}]}, {"id": 94992, "name": "Howl of the Pack", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94984], "prev": [94991], "entries": [{"id": 117589, "definitionId": 122601, "maxRanks": 1, "type": "passive", "name": "Howl of the Pack", "spellId": 445707, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 94962, "name": "Wild Attacks", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94988], "prev": [94991], "entries": [{"id": 117559, "definitionId": 122571, "maxRanks": 1, "type": "passive", "name": "Wild Attacks", "spellId": 445708, "icon": "inv_misc_bone_09", "index": 100}]}, {"id": 94972, "name": "Den Recovery", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94969], "prev": [94985], "entries": [{"id": 117569, "definitionId": 122581, "maxRanks": 1, "type": "passive", "name": "Den Recovery", "spellId": 445710, "icon": "ability_shaman_freedomwolf", "index": 100}]}, {"id": 94984, "name": "Tireless Hunt / Cornered Prey", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94967], "prev": [94992], "entries": [{"id": 117581, "definitionId": 122593, "maxRanks": 1, "type": "passive", "name": "Tireless Hunt", "spellId": 445701, "icon": "ability_mount_jungletiger", "index": 100}, {"id": 123782, "definitionId": 128620, "maxRanks": 1, "type": "passive", "name": "Cornered Prey", "spellId": 445702, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 94988, "name": "Frenzied Tear", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94979], "prev": [94962], "entries": [{"id": 117585, "definitionId": 122597, "maxRanks": 1, "type": "passive", "name": "Frenzied Tear", "spellId": 445696, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 94969, "name": "Scattered Prey / Covering Fire", "type": "choice", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94972], "entries": [{"id": 117566, "definitionId": 122578, "maxRanks": 1, "type": "passive", "name": "Scattered Prey", "spellId": 445768, "icon": "inv_misc_bone_09", "index": 100}, {"id": 123783, "definitionId": 128621, "maxRanks": 1, "type": "passive", "name": "Covering Fire", "spellId": 445715, "icon": "ability_hunter_runningshot", "index": 200}]}, {"id": 94967, "name": "Cull the Herd", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94984], "entries": [{"id": 117564, "definitionId": 122576, "maxRanks": 1, "type": "passive", "name": "Cull the Herd", "spellId": 445717, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 94979, "name": "Furious Assault / Beast of Opportunity", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94988], "entries": [{"id": 117576, "definitionId": 122588, "maxRanks": 1, "type": "passive", "name": "Furious Assault", "spellId": 445699, "icon": "spell_druid_feralchargecat", "index": 100}, {"id": 123781, "definitionId": 128619, "maxRanks": 1, "type": "passive", "name": "Beast of Opportunity", "spellId": 445700, "icon": "ability_hunter_catlikereflexes", "index": 200}]}, {"id": 94966, "name": "Pack Assault", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 43, "next": [], "prev": [94967, 94969, 94979], "entries": [{"id": 117563, "definitionId": 122575, "maxRanks": 1, "type": "passive", "name": "Pack Assault", "spellId": 445721, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}], "subTreeNodes": [{"id": 99832, "name": "Dark Ranger / Pack Leader", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123348, "type": "subtree", "name": "Dark Ranger", "traitSubTreeId": 44, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-darkranger", "nodes": [94987, 94961, 94983, 94968, 94986, 94959, 94960, 94957, 94982, 94974, 94993]}, {"id": 123347, "type": "subtree", "name": "Pack Leader", "traitSubTreeId": 43, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-packleader", "nodes": [94991, 94985, 94992, 94962, 94972, 94984, 94988, 94969, 94967, 94979, 94966]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/hunter_marksmanship.json b/simc_support/game_data/data_files/trees/hunter_marksmanship.json index 9df9d5e..27754d4 100644 --- a/simc_support/game_data/data_files/trees/hunter_marksmanship.json +++ b/simc_support/game_data/data_files/trees/hunter_marksmanship.json @@ -1 +1 @@ -{"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Marksmanship", "specId": 254, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102399, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126463, "definitionId": 131289, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 53351, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Improved Kill Shot", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102399], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Improved Kill Shot", "spellId": 343248, "icon": "ability_hunter_snipertraining", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 102402], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [102402, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 102402, "name": "Counter Shot", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 126466, "definitionId": 131292, "maxRanks": 1, "type": "active", "name": "Counter Shot", "spellId": 147362, "icon": "inv_ammo_arrow_03", "index": 100}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [102403, 102402, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [102402], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [102402, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102297, "name": "Aimed Shot", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102318, 102295, 102294], "prev": [], "entries": [{"id": 126357, "definitionId": 131183, "maxRanks": 1, "type": "active", "name": "Aimed Shot", "spellId": 19434, "icon": "inv_spear_07", "index": 100}]}, {"id": 102318, "name": "Rapid Fire", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102320, 102308], "prev": [102297], "entries": [{"id": 126378, "definitionId": 131204, "maxRanks": 1, "type": "active", "name": "Rapid Fire", "spellId": 257044, "icon": "ability_hunter_efficiency", "index": 100}]}, {"id": 102295, "name": "Multi-Shot", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [102309], "prev": [102297], "entries": [{"id": 126355, "definitionId": 131181, "maxRanks": 1, "type": "active", "name": "Multi-Shot", "spellId": 257620, "icon": "ability_upgrademoonglaive", "index": 100}]}, {"id": 102294, "name": "Precise Shots", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102328, 102329], "prev": [102297], "entries": [{"id": 126354, "definitionId": 131180, "maxRanks": 1, "type": "passive", "name": "Precise Shots", "spellId": 260240, "icon": "ability_hunter_snipertraining", "index": 100}]}, {"id": 102320, "name": "Surging Shots", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [102331], "prev": [102318], "entries": [{"id": 126380, "definitionId": 131206, "maxRanks": 1, "type": "passive", "name": "Surging Shots", "spellId": 391559, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 102308, "name": "Streamline", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102331], "prev": [102318], "entries": [{"id": 126368, "definitionId": 131194, "maxRanks": 1, "type": "passive", "name": "Streamline", "spellId": 260367, "icon": "ability_hunter_aimedshot", "index": 100}]}, {"id": 102328, "name": "Improved Steady Shot", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102296], "prev": [102294], "entries": [{"id": 126388, "definitionId": 131214, "maxRanks": 1, "type": "passive", "name": "Improved Steady Shot", "spellId": 321018, "icon": "ability_hunter_improvedsteadyshot", "index": 100}]}, {"id": 102329, "name": "Crack Shot", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [102296], "prev": [102294], "entries": [{"id": 126389, "definitionId": 131215, "maxRanks": 1, "type": "passive", "name": "Crack Shot", "spellId": 321293, "icon": "ability_hunter_focusfire", "index": 100}]}, {"id": 102331, "name": "Penetrating Shots", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102314, 102313], "prev": [102320, 102308], "entries": [{"id": 126391, "definitionId": 131217, "maxRanks": 1, "type": "passive", "name": "Penetrating Shots", "spellId": 459783, "icon": "achievement_guildperk_reinforce_rank2", "index": 100}]}, {"id": 102309, "name": "Trick Shots", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [102334, 102303], "prev": [102295], "entries": [{"id": 126369, "definitionId": 131195, "maxRanks": 1, "type": "passive", "name": "Trick Shots", "spellId": 257621, "icon": "inv_trickshot", "index": 100}]}, {"id": 102296, "name": "Master Marksman", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102324, 102293], "prev": [102329, 102328], "entries": [{"id": 126356, "definitionId": 131182, "maxRanks": 1, "type": "passive", "name": "Master Marksman", "spellId": 260309, "icon": "ability_hunter_mastermarksman", "index": 100}]}, {"id": 102314, "name": "Fan the Hammer", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102305], "prev": [102331], "entries": [{"id": 126374, "definitionId": 131200, "maxRanks": 1, "type": "passive", "name": "Fan the Hammer", "spellId": 459794, "icon": "ability_rogue_pistolshot", "index": 100}]}, {"id": 102313, "name": "Careful Aim", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102305, 102332, 102321], "prev": [102331], "entries": [{"id": 126373, "definitionId": 131199, "maxRanks": 1, "type": "passive", "name": "Careful Aim", "spellId": 260228, "icon": "ability_hunter_zenarchery", "index": 100}]}, {"id": 102334, "name": "Heavy Ammo / Light Ammo", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102321], "prev": [102309], "entries": [{"id": 126395, "definitionId": 131221, "maxRanks": 1, "type": "passive", "name": "Heavy Ammo", "spellId": 378910, "icon": "inv_ammo_bullet_04", "index": 100}, {"id": 126394, "definitionId": 131220, "maxRanks": 1, "type": "passive", "name": "Light Ammo", "spellId": 378913, "icon": "ships_ability_armorpiercingammo", "index": 200}]}, {"id": 102303, "name": "Bulletstorm", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102311], "prev": [102309], "entries": [{"id": 126363, "definitionId": 131189, "maxRanks": 1, "type": "passive", "name": "Bulletstorm", "spellId": 389019, "icon": "ability_hunter_markedshot", "index": 100}]}, {"id": 102324, "name": "Lock and Load", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102311, 102315, 102323], "prev": [102296], "entries": [{"id": 126384, "definitionId": 131210, "maxRanks": 1, "type": "passive", "name": "Lock and Load", "spellId": 194595, "icon": "ability_hunter_lockandload", "index": 100}]}, {"id": 102293, "name": "Steady Focus", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102323], "prev": [102296], "entries": [{"id": 126353, "definitionId": 131179, "maxRanks": 1, "type": "passive", "name": "Steady Focus", "spellId": 193533, "icon": "hunter_pvp_snipershot", "index": 100}]}, {"id": 102305, "name": "Deathblow", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102330], "prev": [102313, 102314], "entries": [{"id": 126365, "definitionId": 131191, "maxRanks": 1, "type": "passive", "name": "Deathblow", "spellId": 378769, "icon": "ability_hunter_runningshot", "index": 100}]}, {"id": 102332, "name": "Barrage", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102330, 102302, 102319], "prev": [102313], "entries": [{"id": 126392, "definitionId": 131218, "maxRanks": 1, "type": "active", "name": "Barrage", "spellId": 120360, "icon": "ability_hunter_rapidregeneration", "index": 100}]}, {"id": 102321, "name": "Night Hunter", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102319, 102300], "prev": [102313, 102334], "entries": [{"id": 126381, "definitionId": 131207, "maxRanks": 1, "type": "passive", "name": "Night Hunter", "spellId": 378766, "icon": "ability_hunter_sentinelowl", "index": 100}]}, {"id": 102311, "name": "Tactical Reload", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102300, 102298], "prev": [102324, 102303], "entries": [{"id": 126371, "definitionId": 131197, "maxRanks": 1, "type": "passive", "name": "Tactical Reload", "spellId": 400472, "icon": "ability_hunter_crossfire", "index": 100}]}, {"id": 102315, "name": "Serpentstalker's Trickery", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102298, 102301, 102317], "prev": [102324], "entries": [{"id": 126375, "definitionId": 131201, "maxRanks": 1, "type": "passive", "name": "Serpentstalker's Trickery", "spellId": 378888, "icon": "ability_hunter_serpentswiftness", "index": 100}]}, {"id": 102323, "name": "Chimaera Shot", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102317], "prev": [102324, 102293], "entries": [{"id": 126383, "definitionId": 131209, "maxRanks": 1, "type": "active", "name": "Chimaera Shot", "spellId": 342049, "icon": "ability_hunter_chimerashot2", "index": 200}]}, {"id": 102330, "name": "Killer Accuracy", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327, 102322], "prev": [102305, 102332], "entries": [{"id": 126390, "definitionId": 131216, "maxRanks": 1, "type": "passive", "name": "Killer Accuracy", "spellId": 378765, "icon": "ability_hunter_piercingshots", "index": 100}]}, {"id": 102302, "name": "Rapid Fire Barrage", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327], "prev": [102332], "entries": [{"id": 126362, "definitionId": 131188, "maxRanks": 1, "type": "passive", "name": "Rapid Fire Barrage", "spellId": 459800, "icon": "inv_engineering_deployablebulletdispenser", "index": 100}]}, {"id": 102319, "name": "In the Rhythm", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327, 102304], "prev": [102332, 102321], "entries": [{"id": 126379, "definitionId": 131205, "maxRanks": 1, "type": "passive", "name": "In the Rhythm", "spellId": 407404, "icon": "ability_hunter_longshots", "index": 100}]}, {"id": 102300, "name": "Lone Wolf", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102304], "prev": [102311, 102321], "entries": [{"id": 126360, "definitionId": 131186, "maxRanks": 1, "type": "passive", "name": "Lone Wolf", "spellId": 155228, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 102298, "name": "Bullseye", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102304, 102333], "prev": [102311, 102315], "entries": [{"id": 126358, "definitionId": 131184, "maxRanks": 1, "type": "passive", "name": "Bullseye", "spellId": 204089, "icon": "ability_hunter_focusedaim", "index": 100}]}, {"id": 102301, "name": "Hydra's Bite", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102333], "prev": [102315], "entries": [{"id": 126361, "definitionId": 131187, "maxRanks": 1, "type": "passive", "name": "Hydra's Bite", "spellId": 260241, "icon": "inv_hydrasbite", "index": 100}]}, {"id": 102317, "name": "Volley", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102333, 102310], "prev": [102323, 102315], "entries": [{"id": 126377, "definitionId": 131203, "maxRanks": 1, "type": "active", "name": "Volley", "spellId": 260243, "icon": "ability_hunter_rapidkilling", "index": 100}]}, {"id": 102327, "name": "Legacy of the Windrunners", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102299], "prev": [102319, 102302, 102330], "entries": [{"id": 126387, "definitionId": 131213, "maxRanks": 2, "type": "passive", "name": "Legacy of the Windrunners", "spellId": 406425, "icon": "artifactability_marksmanhunter_legacyofthewindrunners", "index": 100}]}, {"id": 102304, "name": "Trueshot", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102306, 102326], "prev": [102319, 102298, 102300], "entries": [{"id": 126364, "definitionId": 131190, "maxRanks": 1, "type": "active", "name": "Trueshot", "spellId": 288613, "icon": "ability_trueshot", "index": 100}]}, {"id": 102333, "name": "Focused Aim", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102325], "prev": [102301, 102298, 102317], "entries": [{"id": 126393, "definitionId": 131219, "maxRanks": 2, "type": "passive", "name": "Focused Aim", "spellId": 378767, "icon": "inv_engineering_snipingscope", "index": 100}]}, {"id": 102322, "name": "Razor Fragments", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102330], "entries": [{"id": 126382, "definitionId": 131208, "maxRanks": 1, "type": "passive", "name": "Razor Fragments", "spellId": 384790, "icon": "ability_hunter_razorwire", "index": 100}]}, {"id": 102299, "name": "Wailing Arrow", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102307], "prev": [102327], "entries": [{"id": 126359, "definitionId": 131185, "maxRanks": 1, "type": "passive", "name": "Wailing Arrow", "spellId": 459806, "icon": "ability_theblackarrow", "index": 100}]}, {"id": 102306, "name": "Eagletalon's True Focus", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102312], "prev": [102304], "entries": [{"id": 126366, "definitionId": 131192, "maxRanks": 1, "type": "passive", "name": "Eagletalon's True Focus", "spellId": 389449, "icon": "ability_hunter_aspectoftheironhawk", "index": 100}]}, {"id": 102326, "name": "Calling the Shots", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102312], "prev": [102304], "entries": [{"id": 126386, "definitionId": 131212, "maxRanks": 1, "type": "passive", "name": "Calling the Shots", "spellId": 260404, "icon": "ability_hunter_assassinate", "index": 100}]}, {"id": 102325, "name": "Small Game Hunter", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102316], "prev": [102333], "entries": [{"id": 126385, "definitionId": 131211, "maxRanks": 1, "type": "passive", "name": "Small Game Hunter", "spellId": 459802, "icon": "inv_rabbit2_darkmoon", "index": 100}]}, {"id": 102310, "name": "Kill Zone", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102317], "entries": [{"id": 126370, "definitionId": 131196, "maxRanks": 1, "type": "passive", "name": "Kill Zone", "spellId": 459921, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 102307, "name": "Readiness", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102299], "entries": [{"id": 126367, "definitionId": 131193, "maxRanks": 1, "type": "passive", "name": "Readiness", "spellId": 389865, "icon": "ability_hunter_readiness", "index": 100}]}, {"id": 102312, "name": "Unerring Vision", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102326, 102306], "entries": [{"id": 126372, "definitionId": 131198, "maxRanks": 1, "type": "passive", "name": "Unerring Vision", "spellId": 386878, "icon": "spell_hunter_exoticmunitions_frozen", "index": 200}]}, {"id": 102316, "name": "Salvo", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102325], "entries": [{"id": 126376, "definitionId": 131202, "maxRanks": 1, "type": "active", "name": "Salvo", "spellId": 400456, "icon": "spell_hunter_exoticmunitions_incendiary", "index": 0}]}], "heroNodes": [{"id": 94976, "name": "Sentinel", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 42, "next": [94989, 94973, 94981], "prev": [], "entries": [{"id": 117573, "definitionId": 122585, "maxRanks": 1, "type": "passive", "name": "Sentinel", "spellId": 450369, "icon": "inv_magicalowlbearmount", "index": 100}], "freeNode": true}, {"id": 94987, "name": "Black Arrow", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 44, "next": [94961, 94968, 94983], "prev": [], "entries": [{"id": 117584, "definitionId": 122596, "maxRanks": 1, "type": "active", "name": "Black Arrow", "spellId": 430703, "icon": "inv_ability_darkrangerhunter_blackarrow", "index": 100}], "freeNode": true}, {"id": 94989, "name": "Don't Look Back", "type": "single", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94958], "prev": [94976], "entries": [{"id": 117586, "definitionId": 122598, "maxRanks": 1, "type": "passive", "name": "Don't Look Back", "spellId": 450373, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 94973, "name": "Extrapolated Shots", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94990], "prev": [94976], "entries": [{"id": 117570, "definitionId": 122582, "maxRanks": 1, "type": "passive", "name": "Extrapolated Shots", "spellId": 450374, "icon": "ability_hunter_huntingparty", "index": 100}]}, {"id": 94981, "name": "Sentinel Precision", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94971], "prev": [94976], "entries": [{"id": 117578, "definitionId": 122590, "maxRanks": 1, "type": "passive", "name": "Sentinel Precision", "spellId": 450375, "icon": "inv_weapon_shortblade_83", "index": 100}]}, {"id": 94961, "name": "Overshadow", "type": "single", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94986], "prev": [94987], "entries": [{"id": 117558, "definitionId": 122570, "maxRanks": 1, "type": "passive", "name": "Overshadow", "spellId": 430716, "icon": "ability_piercedamage", "index": 100}]}, {"id": 94983, "name": "Shadow Hounds", "type": "single", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94959], "prev": [94987], "entries": [{"id": 117580, "definitionId": 122592, "maxRanks": 1, "type": "passive", "name": "Shadow Hounds", "spellId": 430707, "icon": "inv_darkhoundmount_draka_blue", "index": 100}]}, {"id": 94968, "name": "Death Shade", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94960], "prev": [94987], "entries": [{"id": 117565, "definitionId": 122577, "maxRanks": 1, "type": "passive", "name": "Death Shade", "spellId": 430711, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 94958, "name": "Release and Reload", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94970], "prev": [94989], "entries": [{"id": 117555, "definitionId": 122567, "maxRanks": 1, "type": "passive", "name": "Release and Reload", "spellId": 450376, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94990, "name": "Catch Out / Sideline", "type": "choice", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94965], "prev": [94973], "entries": [{"id": 117587, "definitionId": 122599, "maxRanks": 1, "type": "passive", "name": "Catch Out", "spellId": 451516, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 123869, "definitionId": 128707, "maxRanks": 1, "type": "passive", "name": "Sideline", "spellId": 450378, "icon": "ability_rogue_trip", "index": 200}]}, {"id": 94971, "name": "Invigorating Pulse", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94980], "prev": [94981], "entries": [{"id": 117568, "definitionId": 122580, "maxRanks": 1, "type": "passive", "name": "Invigorating Pulse", "spellId": 450379, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 94986, "name": "Dark Empowerment / Grave Reaper", "type": "choice", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94957], "prev": [94961], "entries": [{"id": 117583, "definitionId": 122595, "maxRanks": 1, "type": "passive", "name": "Dark Empowerment", "spellId": 430718, "icon": "inv_artifact_powerofthedarkside", "index": 100}, {"id": 123780, "definitionId": 128618, "maxRanks": 1, "type": "passive", "name": "Grave Reaper", "spellId": 430719, "icon": "inv_misc_2h_farmscythe_a_01", "index": 200}]}, {"id": 94959, "name": "Embrace the Shadows / Smoke Screen", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94982], "prev": [94983], "entries": [{"id": 117556, "definitionId": 122568, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadows", "spellId": 430704, "icon": "spell_shadow_shadowembrace", "index": 100}, {"id": 123779, "definitionId": 128617, "maxRanks": 1, "type": "passive", "name": "Smoke Screen", "spellId": 430709, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 94960, "name": "Dark Chains", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94974], "prev": [94968], "entries": [{"id": 117557, "definitionId": 122569, "maxRanks": 1, "type": "passive", "name": "Dark Chains", "spellId": 430712, "icon": "inv_belt_44c", "index": 100}]}, {"id": 94970, "name": "Sentinel Watch / Eyes Closed", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94958], "entries": [{"id": 117567, "definitionId": 122579, "maxRanks": 1, "type": "passive", "name": "Sentinel Watch", "spellId": 451546, "icon": "inv_quiver_1h_sylvanas_d_01", "index": 100}, {"id": 123871, "definitionId": 128709, "maxRanks": 1, "type": "passive", "name": "Eyes Closed", "spellId": 450381, "icon": "inv_trickshot", "index": 200}]}, {"id": 94965, "name": "Symphonic Arsenal", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94990], "entries": [{"id": 117562, "definitionId": 122574, "maxRanks": 1, "type": "passive", "name": "Symphonic Arsenal", "spellId": 450383, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 94980, "name": "Overwatch / Crescent Steel", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94971], "entries": [{"id": 117577, "definitionId": 122589, "maxRanks": 1, "type": "passive", "name": "Overwatch", "spellId": 450384, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 123870, "definitionId": 128708, "maxRanks": 1, "type": "passive", "name": "Crescent Steel", "spellId": 451530, "icon": "inv_enchant_crescentoil", "index": 200}]}, {"id": 94957, "name": "Shadow Lash", "type": "single", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "requiresNode": 102304, "next": [94993], "prev": [94986], "entries": [{"id": 117554, "definitionId": 122566, "maxRanks": 1, "type": "passive", "name": "Shadow Lash", "spellId": 430717, "icon": "inv_misc_volatileshadow", "index": 100}]}, {"id": 94982, "name": "Shadow Surge", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94959], "entries": [{"id": 117579, "definitionId": 122591, "maxRanks": 1, "type": "passive", "name": "Shadow Surge", "spellId": 430714, "icon": "ability_socererking_forcenova", "index": 100}]}, {"id": 94974, "name": "Darkness Calls / Shadow Erasure", "type": "choice", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94960], "entries": [{"id": 117571, "definitionId": 122583, "maxRanks": 1, "type": "passive", "name": "Darkness Calls", "spellId": 430722, "icon": "spell_shadow_twilight", "index": 100}, {"id": 123778, "definitionId": 128616, "maxRanks": 1, "type": "passive", "name": "Shadow Erasure", "spellId": 430720, "icon": "ability_warlock_everlastingaffliction", "index": 200}]}, {"id": 94978, "name": "Lunar Storm", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 42, "next": [], "prev": [94965, 94970, 94980], "entries": [{"id": 117575, "definitionId": 122587, "maxRanks": 1, "type": "passive", "name": "Lunar Storm", "spellId": 450385, "icon": "inv_ability_sentinelhunter_lunarstorm", "index": 100}]}, {"id": 94993, "name": "Withering Fire", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 44, "next": [], "prev": [94982, 94957, 94974], "entries": [{"id": 117590, "definitionId": 122602, "maxRanks": 1, "type": "passive", "name": "Withering Fire", "spellId": 430715, "icon": "spell_shadow_painspike", "index": 100}]}], "subTreeNodes": [{"id": 99831, "name": "Dark Ranger / Sentinel", "type": "subtree", "posX": 8100, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123346, "type": "subtree", "name": "Dark Ranger", "traitSubTreeId": 44, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-darkranger", "nodes": [94987, 94961, 94983, 94968, 94986, 94959, 94960, 94957, 94982, 94974, 94993]}, {"id": 123345, "type": "subtree", "name": "Sentinel", "traitSubTreeId": 42, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-sentinel", "nodes": [94976, 94989, 94973, 94981, 94958, 94990, 94971, 94970, 94965, 94980, 94978]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102306, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]} \ No newline at end of file +{"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Marksmanship", "specId": 254, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102399, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126463, "definitionId": 131289, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 53351, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Deathblow", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102399], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Deathblow", "spellId": 343248, "icon": "ability_hunter_runningshot", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 102402], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [102402, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 102402, "name": "Counter Shot", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 126466, "definitionId": 131292, "maxRanks": 1, "type": "active", "name": "Counter Shot", "spellId": 147362, "icon": "inv_ammo_arrow_03", "index": 100}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [102403, 102402, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [102402], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [102402, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102297, "name": "Aimed Shot", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102318, 102295, 102294], "prev": [], "entries": [{"id": 126357, "definitionId": 131183, "maxRanks": 1, "type": "active", "name": "Aimed Shot", "spellId": 19434, "icon": "inv_spear_07", "index": 100}]}, {"id": 102318, "name": "Rapid Fire", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102320, 102308], "prev": [102297], "entries": [{"id": 126378, "definitionId": 131204, "maxRanks": 1, "type": "active", "name": "Rapid Fire", "spellId": 257044, "icon": "ability_hunter_efficiency", "index": 100}]}, {"id": 102295, "name": "Multi-Shot", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [102309], "prev": [102297], "entries": [{"id": 126355, "definitionId": 131181, "maxRanks": 1, "type": "active", "name": "Multi-Shot", "spellId": 257620, "icon": "ability_upgrademoonglaive", "index": 100}]}, {"id": 102294, "name": "Precise Shot", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102328, 102329], "prev": [102297], "entries": [{"id": 126354, "definitionId": 131180, "maxRanks": 1, "type": "passive", "name": "Precise Shot", "spellId": 260240, "icon": "ability_hunter_snipertraining", "index": 100}]}, {"id": 102320, "name": "Surging Shots", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [102331], "prev": [102318], "entries": [{"id": 126380, "definitionId": 131206, "maxRanks": 1, "type": "passive", "name": "Surging Shots", "spellId": 391559, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 102308, "name": "Streamline", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102331], "prev": [102318], "entries": [{"id": 126368, "definitionId": 131194, "maxRanks": 1, "type": "passive", "name": "Streamline", "spellId": 260367, "icon": "ability_hunter_aimedshot", "index": 100}]}, {"id": 102328, "name": "Improved Steady Shot / Pin Cushion", "type": "choice", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102296], "prev": [102294], "entries": [{"id": 126388, "definitionId": 131214, "maxRanks": 1, "type": "passive", "name": "Improved Steady Shot", "spellId": 321018, "icon": "ability_hunter_improvedsteadyshot", "index": 100}, {"id": 128222, "definitionId": 133029, "maxRanks": 1, "type": "passive", "name": "Pin Cushion", "spellId": 468392, "icon": "ability_hunter_snipershot", "index": 200}]}, {"id": 102329, "name": "Crack Shot", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [102296], "prev": [102294], "entries": [{"id": 126389, "definitionId": 131215, "maxRanks": 1, "type": "passive", "name": "Crack Shot", "spellId": 321293, "icon": "ability_hunter_focusfire", "index": 100}]}, {"id": 102331, "name": "Penetrating Shots", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102314, 102313], "prev": [102320, 102308], "entries": [{"id": 126391, "definitionId": 131217, "maxRanks": 1, "type": "passive", "name": "Penetrating Shots", "spellId": 459783, "icon": "achievement_guildperk_reinforce_rank2", "index": 100}]}, {"id": 102309, "name": "Trick Shots", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [102334, 102303], "prev": [102295], "entries": [{"id": 126369, "definitionId": 131195, "maxRanks": 1, "type": "passive", "name": "Trick Shots", "spellId": 257621, "icon": "inv_trickshot", "index": 100}]}, {"id": 102296, "name": "Master Marksman", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102324, 102293], "prev": [102329, 102328], "entries": [{"id": 126356, "definitionId": 131182, "maxRanks": 1, "type": "passive", "name": "Master Marksman", "spellId": 260309, "icon": "ability_hunter_mastermarksman", "index": 100}]}, {"id": 102314, "name": "Fan the Hammer", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102305], "prev": [102331], "entries": [{"id": 126374, "definitionId": 131200, "maxRanks": 1, "type": "passive", "name": "Fan the Hammer", "spellId": 459794, "icon": "ability_rogue_pistolshot", "index": 100}]}, {"id": 102313, "name": "Careful Aim", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102305, 102332, 102321], "prev": [102331], "entries": [{"id": 126373, "definitionId": 131199, "maxRanks": 1, "type": "passive", "name": "Careful Aim", "spellId": 260228, "icon": "ability_hunter_zenarchery", "index": 100}]}, {"id": 102334, "name": "Heavy Ammo / Light Ammo", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102321], "prev": [102309], "entries": [{"id": 126395, "definitionId": 131221, "maxRanks": 1, "type": "passive", "name": "Heavy Ammo", "spellId": 378910, "icon": "inv_ammo_bullet_04", "index": 100}, {"id": 126394, "definitionId": 131220, "maxRanks": 1, "type": "passive", "name": "Light Ammo", "spellId": 378913, "icon": "ships_ability_armorpiercingammo", "index": 200}]}, {"id": 102303, "name": "Bulletstorm", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102311], "prev": [102309], "entries": [{"id": 126363, "definitionId": 131189, "maxRanks": 1, "type": "passive", "name": "Bulletstorm", "spellId": 389019, "icon": "ability_hunter_markedshot", "index": 100}]}, {"id": 102324, "name": "Lock and Load", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102311, 102315, 102323], "prev": [102296], "entries": [{"id": 126384, "definitionId": 131210, "maxRanks": 1, "type": "passive", "name": "Lock and Load", "spellId": 194595, "icon": "ability_hunter_lockandload", "index": 100}]}, {"id": 102293, "name": "Steady Focus", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102323], "prev": [102296], "entries": [{"id": 126353, "definitionId": 131179, "maxRanks": 1, "type": "passive", "name": "Steady Focus", "spellId": 193533, "icon": "hunter_pvp_snipershot", "index": 100}]}, {"id": 102305, "name": "Improved Deathblow", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102330], "prev": [102313, 102314], "entries": [{"id": 126365, "definitionId": 131191, "maxRanks": 1, "type": "passive", "name": "Improved Deathblow", "spellId": 378769, "icon": "ability_hunter_runningshot", "index": 100}]}, {"id": 102332, "name": "Barrage", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102330, 102302, 102319], "prev": [102313], "entries": [{"id": 126392, "definitionId": 131218, "maxRanks": 1, "type": "active", "name": "Barrage", "spellId": 120360, "icon": "ability_hunter_rapidregeneration", "index": 100}]}, {"id": 102321, "name": "Night Hunter", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102319, 102300], "prev": [102313, 102334], "entries": [{"id": 126381, "definitionId": 131207, "maxRanks": 1, "type": "passive", "name": "Night Hunter", "spellId": 378766, "icon": "artifactability_balancedruid_fullmoon", "index": 100}]}, {"id": 102311, "name": "Tactical Reload", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102300, 102298], "prev": [102324, 102303], "entries": [{"id": 126371, "definitionId": 131197, "maxRanks": 1, "type": "passive", "name": "Tactical Reload", "spellId": 400472, "icon": "ability_hunter_crossfire", "index": 100}]}, {"id": 102315, "name": "Serpentstalker's Trickery", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102298, 102301, 102317], "prev": [102324], "entries": [{"id": 126375, "definitionId": 131201, "maxRanks": 1, "type": "passive", "name": "Serpentstalker's Trickery", "spellId": 378888, "icon": "ability_hunter_serpentswiftness", "index": 100}]}, {"id": 102323, "name": "Chimaera Shot", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102317], "prev": [102324, 102293], "entries": [{"id": 126383, "definitionId": 131209, "maxRanks": 1, "type": "active", "name": "Chimaera Shot", "spellId": 342049, "icon": "ability_hunter_chimerashot2", "index": 200}]}, {"id": 102330, "name": "Killer Accuracy", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327, 102322], "prev": [102305, 102332], "entries": [{"id": 126390, "definitionId": 131216, "maxRanks": 1, "type": "passive", "name": "Killer Accuracy", "spellId": 378765, "icon": "ability_hunter_piercingshots", "index": 100}]}, {"id": 102302, "name": "Rapid Fire Barrage", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327], "prev": [102332], "entries": [{"id": 126362, "definitionId": 131188, "maxRanks": 1, "type": "passive", "name": "Rapid Fire Barrage", "spellId": 459800, "icon": "inv_engineering_deployablebulletdispenser", "index": 100}]}, {"id": 102319, "name": "In the Rhythm", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327, 102304], "prev": [102332, 102321], "entries": [{"id": 126379, "definitionId": 131205, "maxRanks": 1, "type": "passive", "name": "In the Rhythm", "spellId": 407404, "icon": "ability_hunter_longshots", "index": 100}]}, {"id": 102300, "name": "Lone Wolf", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102304], "prev": [102311, 102321], "entries": [{"id": 126360, "definitionId": 131186, "maxRanks": 1, "type": "passive", "name": "Lone Wolf", "spellId": 155228, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 102298, "name": "Bullseye", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102304, 102333], "prev": [102311, 102315], "entries": [{"id": 126358, "definitionId": 131184, "maxRanks": 1, "type": "passive", "name": "Bullseye", "spellId": 204089, "icon": "ability_hunter_focusedaim", "index": 100}]}, {"id": 102301, "name": "Hydra's Bite", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102333], "prev": [102315], "entries": [{"id": 126361, "definitionId": 131187, "maxRanks": 1, "type": "passive", "name": "Hydra's Bite", "spellId": 260241, "icon": "inv_hydrasbite", "index": 100}]}, {"id": 102317, "name": "Volley", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102333, 102310], "prev": [102323, 102315], "entries": [{"id": 126377, "definitionId": 131203, "maxRanks": 1, "type": "active", "name": "Volley", "spellId": 260243, "icon": "ability_hunter_rapidkilling", "index": 100}]}, {"id": 102327, "name": "Legacy of the Windrunners", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102299], "prev": [102319, 102302, 102330], "entries": [{"id": 126387, "definitionId": 131213, "maxRanks": 2, "type": "passive", "name": "Legacy of the Windrunners", "spellId": 406425, "icon": "artifactability_marksmanhunter_legacyofthewindrunners", "index": 100}]}, {"id": 102304, "name": "Trueshot", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102326], "prev": [102319, 102298, 102300], "entries": [{"id": 126364, "definitionId": 131190, "maxRanks": 1, "type": "active", "name": "Trueshot", "spellId": 288613, "icon": "ability_trueshot", "index": 100}]}, {"id": 102333, "name": "Focused Aim", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102325], "prev": [102301, 102298, 102317], "entries": [{"id": 126393, "definitionId": 131219, "maxRanks": 2, "type": "passive", "name": "Focused Aim", "spellId": 378767, "icon": "inv_engineering_snipingscope", "index": 100}]}, {"id": 102322, "name": "Razor Fragments", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102330], "entries": [{"id": 126382, "definitionId": 131208, "maxRanks": 1, "type": "passive", "name": "Razor Fragments", "spellId": 384790, "icon": "ability_hunter_razorwire", "index": 100}]}, {"id": 102299, "name": "Wailing Arrow", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102307], "prev": [102327], "entries": [{"id": 126359, "definitionId": 131185, "maxRanks": 1, "type": "passive", "name": "Wailing Arrow", "spellId": 459806, "icon": "ability_theblackarrow", "index": 100}]}, {"id": 102326, "name": "Unerring Vision", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102312], "prev": [102304], "entries": [{"id": 126386, "definitionId": 131212, "maxRanks": 1, "type": "passive", "name": "Unerring Vision", "spellId": 386878, "icon": "spell_hunter_exoticmunitions_frozen", "index": 100}]}, {"id": 102325, "name": "Small Game Hunter", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102316], "prev": [102333], "entries": [{"id": 126385, "definitionId": 131211, "maxRanks": 1, "type": "passive", "name": "Small Game Hunter", "spellId": 459802, "icon": "inv_rabbit2_darkmoon", "index": 100}]}, {"id": 102310, "name": "Kill Zone", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102317], "entries": [{"id": 126370, "definitionId": 131196, "maxRanks": 1, "type": "passive", "name": "Kill Zone", "spellId": 459921, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 102307, "name": "Readiness", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102299], "entries": [{"id": 126367, "definitionId": 131193, "maxRanks": 1, "type": "passive", "name": "Readiness", "spellId": 389865, "icon": "ability_hunter_readiness", "index": 100}]}, {"id": 102312, "name": "Calling the Shots", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102326], "entries": [{"id": 126372, "definitionId": 131198, "maxRanks": 1, "type": "passive", "name": "Calling the Shots", "spellId": 260404, "icon": "ability_hunter_assassinate", "index": 200}]}, {"id": 102316, "name": "Salvo", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102325], "entries": [{"id": 126376, "definitionId": 131202, "maxRanks": 1, "type": "active", "name": "Salvo", "spellId": 400456, "icon": "spell_hunter_exoticmunitions_incendiary", "index": 0}]}], "heroNodes": [{"id": 94976, "name": "Sentinel", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 42, "next": [94989, 94973, 94981], "prev": [], "entries": [{"id": 117573, "definitionId": 122585, "maxRanks": 1, "type": "passive", "name": "Sentinel", "spellId": 450369, "icon": "ability_hunter_sentinelowl", "index": 100}], "freeNode": true}, {"id": 94987, "name": "Black Arrow", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 44, "next": [94961, 94968, 94983], "prev": [], "entries": [{"id": 117584, "definitionId": 122596, "maxRanks": 1, "type": "passive", "name": "Black Arrow", "spellId": 466932, "icon": "inv_ability_darkrangerhunter_blackarrow", "index": 100}], "freeNode": true}, {"id": 94989, "name": "Don't Look Back", "type": "single", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94958], "prev": [94976], "entries": [{"id": 117586, "definitionId": 122598, "maxRanks": 1, "type": "passive", "name": "Don't Look Back", "spellId": 450373, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 94973, "name": "Extrapolated Shots", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94990], "prev": [94976], "entries": [{"id": 117570, "definitionId": 122582, "maxRanks": 1, "type": "passive", "name": "Extrapolated Shots", "spellId": 450374, "icon": "ability_hunter_huntingparty", "index": 100}]}, {"id": 94981, "name": "Sentinel Precision", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94971], "prev": [94976], "entries": [{"id": 117578, "definitionId": 122590, "maxRanks": 1, "type": "passive", "name": "Sentinel Precision", "spellId": 450375, "icon": "inv_weapon_shortblade_83", "index": 100}]}, {"id": 94961, "name": "Bleak Arrows", "type": "single", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94986], "prev": [94987], "entries": [{"id": 117558, "definitionId": 122570, "maxRanks": 1, "type": "passive", "name": "Bleak Arrows", "spellId": 467749, "icon": "inv_quiver_1h_mawraid_d_01", "index": 100}]}, {"id": 94983, "name": "Shadow Hounds / Soul Drinker", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94959], "prev": [94987], "entries": [{"id": 117580, "definitionId": 122592, "maxRanks": 1, "type": "passive", "name": "Shadow Hounds", "spellId": 430707, "icon": "inv_darkhoundmount_draka_blue", "index": 100}, {"id": 128238, "definitionId": 133045, "maxRanks": 1, "type": "passive", "name": "Soul Drinker", "spellId": 469638, "icon": "ability_warlock_soulsiphon", "index": 200}]}, {"id": 94968, "name": "The Bell Tolls", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94960], "prev": [94987], "entries": [{"id": 117565, "definitionId": 122577, "maxRanks": 1, "type": "passive", "name": "The Bell Tolls", "spellId": 467644, "icon": "spell_shadow_animatedead", "index": 100}]}, {"id": 94958, "name": "Release and Reload", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94970], "prev": [94989], "entries": [{"id": 117555, "definitionId": 122567, "maxRanks": 1, "type": "passive", "name": "Release and Reload", "spellId": 450376, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94990, "name": "Catch Out / Sideline", "type": "choice", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94965], "prev": [94973], "entries": [{"id": 117587, "definitionId": 122599, "maxRanks": 1, "type": "passive", "name": "Catch Out", "spellId": 451516, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 123869, "definitionId": 128707, "maxRanks": 1, "type": "passive", "name": "Sideline", "spellId": 450378, "icon": "ability_rogue_trip", "index": 200}]}, {"id": 94971, "name": "Invigorating Pulse", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94980], "prev": [94981], "entries": [{"id": 117568, "definitionId": 122580, "maxRanks": 1, "type": "passive", "name": "Invigorating Pulse", "spellId": 450379, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 94986, "name": "Phantom Pain / Ebon Bowstring", "type": "choice", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94957], "prev": [94961], "entries": [{"id": 117583, "definitionId": 122595, "maxRanks": 1, "type": "passive", "name": "Phantom Pain", "spellId": 467941, "icon": "spell_holy_painsupression", "index": 100}, {"id": 123780, "definitionId": 128618, "maxRanks": 1, "type": "passive", "name": "Ebon Bowstring", "spellId": 467897, "icon": "inv_10_tailoring_craftingoptionalreagent_enhancedspellthread_color4", "index": 200}]}, {"id": 94959, "name": "Embrace the Shadows / Smoke Screen", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94982], "prev": [94983], "entries": [{"id": 117556, "definitionId": 122568, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadows", "spellId": 430704, "icon": "spell_shadow_shadowembrace", "index": 100}, {"id": 123779, "definitionId": 128617, "maxRanks": 1, "type": "passive", "name": "Smoke Screen", "spellId": 430709, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 94960, "name": "Dark Chains / Shadow Dagger", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94974], "prev": [94968], "entries": [{"id": 117557, "definitionId": 122569, "maxRanks": 1, "type": "passive", "name": "Dark Chains", "spellId": 430712, "icon": "inv_belt_44c", "index": 100}, {"id": 128219, "definitionId": 133026, "maxRanks": 1, "type": "passive", "name": "Shadow Dagger", "spellId": 467741, "icon": "ability_throw", "index": 200}]}, {"id": 94970, "name": "Sentinel Watch / Eyes Closed", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94958], "entries": [{"id": 117567, "definitionId": 122579, "maxRanks": 1, "type": "passive", "name": "Sentinel Watch", "spellId": 451546, "icon": "inv_quiver_1h_sylvanas_d_01", "index": 100}, {"id": 123871, "definitionId": 128709, "maxRanks": 1, "type": "passive", "name": "Eyes Closed", "spellId": 450381, "icon": "inv_trickshot", "index": 200}]}, {"id": 94965, "name": "Symphonic Arsenal", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94990], "entries": [{"id": 117562, "definitionId": 122574, "maxRanks": 1, "type": "passive", "name": "Symphonic Arsenal", "spellId": 450383, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 94980, "name": "Overwatch / Crescent Steel", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94971], "entries": [{"id": 117577, "definitionId": 122589, "maxRanks": 1, "type": "passive", "name": "Overwatch", "spellId": 450384, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 123870, "definitionId": 128708, "maxRanks": 1, "type": "passive", "name": "Crescent Steel", "spellId": 451530, "icon": "inv_enchant_crescentoil", "index": 200}]}, {"id": 94957, "name": "Banshee's Mark", "type": "single", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94986], "entries": [{"id": 117554, "definitionId": 122566, "maxRanks": 1, "type": "passive", "name": "Banshee's Mark", "spellId": 467902, "icon": "achievement_leader_sylvanas", "index": 100}]}, {"id": 94982, "name": "Shadow Surge", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94959], "entries": [{"id": 117579, "definitionId": 122591, "maxRanks": 1, "type": "passive", "name": "Shadow Surge", "spellId": 467936, "icon": "ability_warlock_eradication", "index": 100}]}, {"id": 94974, "name": "Bleak Powder", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94960], "entries": [{"id": 117571, "definitionId": 122583, "maxRanks": 1, "type": "passive", "name": "Bleak Powder", "spellId": 467911, "icon": "inv_misc_powder_tin", "index": 100}]}, {"id": 94978, "name": "Lunar Storm", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 42, "next": [], "prev": [94965, 94970, 94980], "entries": [{"id": 117575, "definitionId": 122587, "maxRanks": 1, "type": "passive", "name": "Lunar Storm", "spellId": 450385, "icon": "inv_ability_sentinelhunter_lunarstorm", "index": 100}]}, {"id": 94993, "name": "Withering Fire", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 44, "requiresNode": 102340, "next": [], "prev": [94982, 94957, 94974], "entries": [{"id": 117590, "definitionId": 122602, "maxRanks": 1, "type": "passive", "name": "Withering Fire", "spellId": 466990, "icon": "spell_shadow_painspike", "index": 100}]}], "subTreeNodes": [{"id": 99831, "name": "Dark Ranger / Sentinel", "type": "subtree", "posX": 8100, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123346, "type": "subtree", "name": "Dark Ranger", "traitSubTreeId": 44, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-darkranger", "nodes": [94987, 94961, 94983, 94968, 94986, 94959, 94960, 94957, 94982, 94974, 94993]}, {"id": 123345, "type": "subtree", "name": "Sentinel", "traitSubTreeId": 42, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-sentinel", "nodes": [94976, 94989, 94973, 94981, 94958, 94990, 94971, 94970, 94965, 94980, 94978]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/hunter_survival.json b/simc_support/game_data/data_files/trees/hunter_survival.json index f85ed05..5aac750 100644 --- a/simc_support/game_data/data_files/trees/hunter_survival.json +++ b/simc_support/game_data/data_files/trees/hunter_survival.json @@ -1 +1 @@ -{"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Survival", "specId": 255, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102379, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126442, "definitionId": 131268, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 320976, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Improved Kill Shot", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102379], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Improved Kill Shot", "spellId": 343248, "icon": "ability_hunter_snipertraining", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 79837], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [79837, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 79837, "name": "Muzzle", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 100543, "definitionId": 105545, "maxRanks": 1, "type": "active", "name": "Muzzle", "spellId": 187707, "icon": "ability_hunter_negate", "index": 0}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [79837, 102403, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [79837], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [79837, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102255, "name": "Kill Command", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102264, 102262], "prev": [], "entries": [{"id": 126314, "definitionId": 131140, "maxRanks": 1, "type": "active", "name": "Kill Command", "spellId": 259489, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102264, "name": "Wildfire Bomb", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102285], "prev": [102255], "entries": [{"id": 126324, "definitionId": 131150, "maxRanks": 1, "type": "active", "name": "Wildfire Bomb", "spellId": 259495, "icon": "inv_wildfirebomb", "index": 100}]}, {"id": 102262, "name": "Raptor Strike", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102263], "prev": [102255], "entries": [{"id": 126322, "definitionId": 131148, "maxRanks": 1, "type": "active", "name": "Raptor Strike", "spellId": 186270, "icon": "ability_hunter_raptorstrike", "index": 100}]}, {"id": 102285, "name": "Guerrilla Tactics", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102272, 102279], "prev": [102264], "entries": [{"id": 126345, "definitionId": 131171, "maxRanks": 1, "type": "passive", "name": "Guerrilla Tactics", "spellId": 264332, "icon": "spell_mage_flameorb", "index": 100}]}, {"id": 102263, "name": "Tip of the Spear", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102257, 102283], "prev": [102262], "entries": [{"id": 126323, "definitionId": 131149, "maxRanks": 1, "type": "passive", "name": "Tip of the Spear", "spellId": 260285, "icon": "ability_bossmannoroth_glaivethrust", "index": 100}]}, {"id": 102272, "name": "Lunge", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102265, 102274], "prev": [102285], "entries": [{"id": 126332, "definitionId": 131158, "maxRanks": 1, "type": "passive", "name": "Lunge", "spellId": 378934, "icon": "inv_polearm_2h_kultirasharpoon_a_01", "index": 100}]}, {"id": 102279, "name": "Quick Shot", "type": "single", "posX": 12000, "posY": 3300, "maxRanks": 1, "next": [102274, 102266, 102290], "prev": [102285], "entries": [{"id": 126339, "definitionId": 131165, "maxRanks": 1, "type": "passive", "name": "Quick Shot", "spellId": 378940, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102257, "name": "Mongoose Bite", "type": "single", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [102290, 102268, 102259], "prev": [102263], "entries": [{"id": 126316, "definitionId": 131142, "maxRanks": 1, "type": "active", "name": "Mongoose Bite", "spellId": 259387, "icon": "ability_hunter_mongoosebite", "index": 100}]}, {"id": 102283, "name": "Flanker's Advantage", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102259, 102256], "prev": [102263], "entries": [{"id": 126343, "definitionId": 131169, "maxRanks": 1, "type": "passive", "name": "Flanker's Advantage", "spellId": 459964, "icon": "ability_hunter_beastmastery", "index": 100}]}, {"id": 102265, "name": "Wildfire Infusion", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102287, 102278], "prev": [102272], "entries": [{"id": 126325, "definitionId": 131151, "maxRanks": 1, "type": "passive", "name": "Wildfire Infusion", "spellId": 460198, "icon": "inv_misc_5potionbag_special", "index": 100}]}, {"id": 102274, "name": "Improved Wildfire Bomb", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102278], "prev": [102279, 102272], "entries": [{"id": 126334, "definitionId": 131160, "maxRanks": 1, "type": "passive", "name": "Improved Wildfire Bomb", "spellId": 321290, "icon": "inv_eng_bombfire", "index": 100}]}, {"id": 102266, "name": "Sulfur-Lined Pockets", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102278], "prev": [102279], "entries": [{"id": 126326, "definitionId": 131152, "maxRanks": 1, "type": "passive", "name": "Sulfur-Lined Pockets", "spellId": 459828, "icon": "inv_misc_ammo_gunpowder_01", "index": 100}]}, {"id": 102290, "name": "Butchery", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102286, 102267], "prev": [102257, 102279], "entries": [{"id": 126350, "definitionId": 131176, "maxRanks": 1, "type": "active", "name": "Butchery", "spellId": 212436, "icon": "ability_butcher_cleave", "index": 200}]}, {"id": 102268, "name": "Bloody Claws", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260], "prev": [102257], "entries": [{"id": 126328, "definitionId": 131154, "maxRanks": 1, "type": "passive", "name": "Bloody Claws", "spellId": 385737, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 102259, "name": "Alpha Predator", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260], "prev": [102257, 102283], "entries": [{"id": 126319, "definitionId": 131145, "maxRanks": 1, "type": "passive", "name": "Alpha Predator", "spellId": 269737, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 102256, "name": "Terms of Engagement", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260, 102270], "prev": [102283], "entries": [{"id": 126315, "definitionId": 131141, "maxRanks": 1, "type": "passive", "name": "Terms of Engagement", "spellId": 265895, "icon": "ability_hunter_harpoon", "index": 100}]}, {"id": 102287, "name": "Grenade Juggler", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102288], "prev": [102265], "entries": [{"id": 126347, "definitionId": 131173, "maxRanks": 1, "type": "passive", "name": "Grenade Juggler", "spellId": 459843, "icon": "inv_misc_mohawkgrenade", "index": 100}]}, {"id": 102278, "name": "Flanking Strike", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102288, 102271, 102277], "prev": [102274, 102265, 102266], "entries": [{"id": 126338, "definitionId": 131164, "maxRanks": 1, "type": "active", "name": "Flanking Strike", "spellId": 269751, "icon": "ability_hunter_invigeration", "index": 100}]}, {"id": 102286, "name": "Frenzy Strikes", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102277], "prev": [102290], "entries": [{"id": 126346, "definitionId": 131172, "maxRanks": 1, "type": "passive", "name": "Frenzy Strikes", "spellId": 294029, "icon": "ability_demonhunter_manabreak", "index": 100}]}, {"id": 102267, "name": "Merciless Blows", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102280], "prev": [102290], "entries": [{"id": 126327, "definitionId": 131153, "maxRanks": 1, "type": "passive", "name": "Merciless Blows", "spellId": 459868, "icon": "ability_hunter_swiftstrike", "index": 100}]}, {"id": 102260, "name": "Viper's Venom", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102280, 102276, 102269], "prev": [102268, 102256, 102259], "entries": [{"id": 126320, "definitionId": 131146, "maxRanks": 1, "type": "passive", "name": "Viper's Venom", "spellId": 268501, "icon": "ability_hunter_potentvenom", "index": 100}]}, {"id": 102270, "name": "Bloodseeker", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102269], "prev": [102256], "entries": [{"id": 126330, "definitionId": 131156, "maxRanks": 1, "type": "passive", "name": "Bloodseeker", "spellId": 260248, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 102288, "name": "Ranger", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281], "prev": [102287, 102278], "entries": [{"id": 126348, "definitionId": 131174, "maxRanks": 1, "type": "passive", "name": "Ranger", "spellId": 385695, "icon": "ability_hunter_thrillofthehunt", "index": 100}]}, {"id": 102271, "name": "Exposed Flank", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281], "prev": [102278], "entries": [{"id": 126331, "definitionId": 131157, "maxRanks": 1, "type": "passive", "name": "Exposed Flank", "spellId": 459861, "icon": "ability_hunter_animalhandler", "index": 100}]}, {"id": 102277, "name": "Tactical Advantage", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281, 102289], "prev": [102278, 102286], "entries": [{"id": 126337, "definitionId": 131163, "maxRanks": 1, "type": "passive", "name": "Tactical Advantage", "spellId": 378951, "icon": "ability_hunter_zenarchery", "index": 100}]}, {"id": 102280, "name": "Sic 'Em", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102289, 102282], "prev": [102267, 102260], "entries": [{"id": 126340, "definitionId": 131166, "maxRanks": 1, "type": "passive", "name": "Sic 'Em", "spellId": 459920, "icon": "ability_hunter_sickem", "index": 100}]}, {"id": 102276, "name": "Contagious Reagents", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102282], "prev": [102260], "entries": [{"id": 126336, "definitionId": 131162, "maxRanks": 1, "type": "passive", "name": "Contagious Reagents", "spellId": 459741, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 102269, "name": "Outland Venom", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102282], "prev": [102260, 102270], "entries": [{"id": 126329, "definitionId": 131155, "maxRanks": 1, "type": "passive", "name": "Outland Venom", "spellId": 459939, "icon": "ability_creature_disease_04", "index": 100}]}, {"id": 102281, "name": "Explosives Expert", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102275], "prev": [102277, 102271, 102288], "entries": [{"id": 126341, "definitionId": 131167, "maxRanks": 2, "type": "passive", "name": "Explosives Expert", "spellId": 378937, "icon": "inv_misc_bomb_05", "index": 100}]}, {"id": 102289, "name": "Sweeping Spear", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102252], "prev": [102277, 102280], "entries": [{"id": 126349, "definitionId": 131175, "maxRanks": 2, "type": "passive", "name": "Sweeping Spear", "spellId": 378950, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 102282, "name": "Killer Companion", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102291], "prev": [102276, 102269, 102280], "entries": [{"id": 126342, "definitionId": 131168, "maxRanks": 2, "type": "passive", "name": "Killer Companion", "spellId": 378955, "icon": "ability_hunter_masterscall", "index": 100}]}, {"id": 102275, "name": "Fury of the Eagle", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102261], "prev": [102281], "entries": [{"id": 126335, "definitionId": 131161, "maxRanks": 1, "type": "active", "name": "Fury of the Eagle", "spellId": 203415, "icon": "inv_polearm_2h_artifacteagle_d_01", "index": 100}]}, {"id": 102252, "name": "Coordinated Assault", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102258, 102273], "prev": [102289], "entries": [{"id": 126311, "definitionId": 131137, "maxRanks": 1, "type": "active", "name": "Coordinated Assault", "spellId": 360952, "icon": "inv__coordinatedassault", "index": 100}]}, {"id": 102291, "name": "Spearhead", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102284], "prev": [102282], "entries": [{"id": 126351, "definitionId": 131177, "maxRanks": 1, "type": "active", "name": "Spearhead", "spellId": 360966, "icon": "ability_hunter_spearhead", "index": 100}]}, {"id": 102261, "name": "Ruthless Marauder", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 2, "next": [], "prev": [102275], "entries": [{"id": 126321, "definitionId": 131147, "maxRanks": 2, "type": "passive", "name": "Ruthless Marauder", "spellId": 385718, "icon": "ability_rogue_findweakness", "index": 100}]}, {"id": 102258, "name": "Symbiotic Adrenaline / Relentless Primal Ferocity", "type": "choice", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102252], "entries": [{"id": 126318, "definitionId": 131144, "maxRanks": 1, "type": "passive", "name": "Symbiotic Adrenaline", "spellId": 459875, "icon": "ability_rogue_bloodyeye", "index": 100}, {"id": 126317, "definitionId": 131143, "maxRanks": 1, "type": "passive", "name": "Relentless Primal Ferocity", "spellId": 459922, "icon": "ability_xavius_tormentingswipe", "index": 200}]}, {"id": 102273, "name": "Bombardier", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102252], "entries": [{"id": 126333, "definitionId": 131159, "maxRanks": 1, "type": "passive", "name": "Bombardier", "spellId": 389880, "icon": "inv_eng_bombfire", "index": 100}]}, {"id": 102284, "name": "Deadly Duo", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102291], "entries": [{"id": 126344, "definitionId": 131170, "maxRanks": 1, "type": "passive", "name": "Deadly Duo", "spellId": 378962, "icon": "ability_hunter_separationanxiety", "index": 100}]}], "heroNodes": [{"id": 94976, "name": "Sentinel", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 42, "next": [94989, 94973, 94981], "prev": [], "entries": [{"id": 117573, "definitionId": 122585, "maxRanks": 1, "type": "passive", "name": "Sentinel", "spellId": 450369, "icon": "inv_magicalowlbearmount", "index": 100}], "freeNode": true}, {"id": 94989, "name": "Don't Look Back", "type": "single", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94958], "prev": [94976], "entries": [{"id": 117586, "definitionId": 122598, "maxRanks": 1, "type": "passive", "name": "Don't Look Back", "spellId": 450373, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 94973, "name": "Extrapolated Shots", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94990], "prev": [94976], "entries": [{"id": 117570, "definitionId": 122582, "maxRanks": 1, "type": "passive", "name": "Extrapolated Shots", "spellId": 450374, "icon": "ability_hunter_huntingparty", "index": 100}]}, {"id": 94981, "name": "Sentinel Precision", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94971], "prev": [94976], "entries": [{"id": 117578, "definitionId": 122590, "maxRanks": 1, "type": "passive", "name": "Sentinel Precision", "spellId": 450375, "icon": "inv_weapon_shortblade_83", "index": 100}]}, {"id": 94958, "name": "Release and Reload", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94970], "prev": [94989], "entries": [{"id": 117555, "definitionId": 122567, "maxRanks": 1, "type": "passive", "name": "Release and Reload", "spellId": 450376, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94990, "name": "Catch Out / Sideline", "type": "choice", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94965], "prev": [94973], "entries": [{"id": 117587, "definitionId": 122599, "maxRanks": 1, "type": "passive", "name": "Catch Out", "spellId": 451516, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 123869, "definitionId": 128707, "maxRanks": 1, "type": "passive", "name": "Sideline", "spellId": 450378, "icon": "ability_rogue_trip", "index": 200}]}, {"id": 94971, "name": "Invigorating Pulse", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94980], "prev": [94981], "entries": [{"id": 117568, "definitionId": 122580, "maxRanks": 1, "type": "passive", "name": "Invigorating Pulse", "spellId": 450379, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 94970, "name": "Sentinel Watch / Eyes Closed", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94958], "entries": [{"id": 117567, "definitionId": 122579, "maxRanks": 1, "type": "passive", "name": "Sentinel Watch", "spellId": 451546, "icon": "inv_quiver_1h_sylvanas_d_01", "index": 100}, {"id": 123871, "definitionId": 128709, "maxRanks": 1, "type": "passive", "name": "Eyes Closed", "spellId": 450381, "icon": "inv_trickshot", "index": 200}]}, {"id": 94965, "name": "Symphonic Arsenal", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94990], "entries": [{"id": 117562, "definitionId": 122574, "maxRanks": 1, "type": "passive", "name": "Symphonic Arsenal", "spellId": 450383, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 94980, "name": "Overwatch / Crescent Steel", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94971], "entries": [{"id": 117577, "definitionId": 122589, "maxRanks": 1, "type": "passive", "name": "Overwatch", "spellId": 450384, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 123870, "definitionId": 128708, "maxRanks": 1, "type": "passive", "name": "Crescent Steel", "spellId": 451530, "icon": "inv_enchant_crescentoil", "index": 200}]}, {"id": 94978, "name": "Lunar Storm", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 42, "next": [], "prev": [94965, 94970, 94980], "entries": [{"id": 117575, "definitionId": 122587, "maxRanks": 1, "type": "passive", "name": "Lunar Storm", "spellId": 450385, "icon": "inv_ability_sentinelhunter_lunarstorm", "index": 100}]}, {"id": 94991, "name": "Vicious Hunt", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 43, "next": [94985, 94992, 94962], "prev": [], "entries": [{"id": 117588, "definitionId": 122600, "maxRanks": 1, "type": "passive", "name": "Vicious Hunt", "spellId": 445404, "icon": "inv_ability_packleaderhunter_vicioushunt", "index": 100}], "freeNode": true}, {"id": 94985, "name": "Pack Coordination", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94972], "prev": [94991], "entries": [{"id": 117582, "definitionId": 122594, "maxRanks": 1, "type": "passive", "name": "Pack Coordination", "spellId": 445505, "icon": "ability_hunter_separationanxiety", "index": 100}]}, {"id": 94992, "name": "Howl of the Pack", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94984], "prev": [94991], "entries": [{"id": 117589, "definitionId": 122601, "maxRanks": 1, "type": "passive", "name": "Howl of the Pack", "spellId": 445707, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 94962, "name": "Wild Attacks", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94988], "prev": [94991], "entries": [{"id": 117559, "definitionId": 122571, "maxRanks": 1, "type": "passive", "name": "Wild Attacks", "spellId": 445708, "icon": "inv_misc_bone_09", "index": 100}]}, {"id": 94972, "name": "Den Recovery", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94969], "prev": [94985], "entries": [{"id": 117569, "definitionId": 122581, "maxRanks": 1, "type": "passive", "name": "Den Recovery", "spellId": 445710, "icon": "ability_shaman_freedomwolf", "index": 100}]}, {"id": 94984, "name": "Tireless Hunt / Cornered Prey", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94967], "prev": [94992], "entries": [{"id": 117581, "definitionId": 122593, "maxRanks": 1, "type": "passive", "name": "Tireless Hunt", "spellId": 445701, "icon": "ability_mount_jungletiger", "index": 100}, {"id": 123782, "definitionId": 128620, "maxRanks": 1, "type": "passive", "name": "Cornered Prey", "spellId": 445702, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 94988, "name": "Frenzied Tear", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94979], "prev": [94962], "entries": [{"id": 117585, "definitionId": 122597, "maxRanks": 1, "type": "passive", "name": "Frenzied Tear", "spellId": 445696, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 94969, "name": "Scattered Prey / Covering Fire", "type": "choice", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94972], "entries": [{"id": 117566, "definitionId": 122578, "maxRanks": 1, "type": "passive", "name": "Scattered Prey", "spellId": 445768, "icon": "inv_misc_bone_09", "index": 100}, {"id": 123783, "definitionId": 128621, "maxRanks": 1, "type": "passive", "name": "Covering Fire", "spellId": 445715, "icon": "ability_hunter_runningshot", "index": 200}]}, {"id": 94967, "name": "Cull the Herd", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94984], "entries": [{"id": 117564, "definitionId": 122576, "maxRanks": 1, "type": "passive", "name": "Cull the Herd", "spellId": 445717, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 94979, "name": "Furious Assault / Beast of Opportunity", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94988], "entries": [{"id": 117576, "definitionId": 122588, "maxRanks": 1, "type": "passive", "name": "Furious Assault", "spellId": 445699, "icon": "spell_druid_feralchargecat", "index": 100}, {"id": 123781, "definitionId": 128619, "maxRanks": 1, "type": "passive", "name": "Beast of Opportunity", "spellId": 445700, "icon": "ability_hunter_catlikereflexes", "index": 200}]}, {"id": 94966, "name": "Pack Assault", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 43, "next": [], "prev": [94967, 94969, 94979], "entries": [{"id": 117563, "definitionId": 122575, "maxRanks": 1, "type": "passive", "name": "Pack Assault", "spellId": 445721, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}], "subTreeNodes": [{"id": 99833, "name": "Pack Leader / Sentinel", "type": "subtree", "posX": 9000, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123350, "type": "subtree", "name": "Pack Leader", "traitSubTreeId": 43, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-packleader", "nodes": [94991, 94985, 94992, 94962, 94972, 94984, 94988, 94969, 94967, 94979, 94966]}, {"id": 123349, "type": "subtree", "name": "Sentinel", "traitSubTreeId": 42, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-sentinel", "nodes": [94976, 94989, 94973, 94981, 94958, 94990, 94971, 94970, 94965, 94980, 94978]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102306, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]} \ No newline at end of file +{"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Survival", "specId": 255, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102379, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126442, "definitionId": 131268, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 320976, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Deathblow", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102379], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Deathblow", "spellId": 343248, "icon": "ability_hunter_runningshot", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 79837], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [79837, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 79837, "name": "Muzzle", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 100543, "definitionId": 105545, "maxRanks": 1, "type": "active", "name": "Muzzle", "spellId": 187707, "icon": "ability_hunter_negate", "index": 0}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [79837, 102403, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [79837], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [79837, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102255, "name": "Kill Command", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102264, 102262], "prev": [], "entries": [{"id": 126314, "definitionId": 131140, "maxRanks": 1, "type": "active", "name": "Kill Command", "spellId": 259489, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102264, "name": "Wildfire Bomb", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102285], "prev": [102255], "entries": [{"id": 126324, "definitionId": 131150, "maxRanks": 1, "type": "active", "name": "Wildfire Bomb", "spellId": 259495, "icon": "inv_wildfirebomb", "index": 100}]}, {"id": 102262, "name": "Raptor Strike", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102263], "prev": [102255], "entries": [{"id": 126322, "definitionId": 131148, "maxRanks": 1, "type": "active", "name": "Raptor Strike", "spellId": 186270, "icon": "ability_hunter_raptorstrike", "index": 100}]}, {"id": 102285, "name": "Guerrilla Tactics", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102272, 102279], "prev": [102264], "entries": [{"id": 126345, "definitionId": 131171, "maxRanks": 1, "type": "passive", "name": "Guerrilla Tactics", "spellId": 264332, "icon": "spell_mage_flameorb", "index": 100}]}, {"id": 102263, "name": "Tip of the Spear", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102257, 102283], "prev": [102262], "entries": [{"id": 126323, "definitionId": 131149, "maxRanks": 1, "type": "passive", "name": "Tip of the Spear", "spellId": 260285, "icon": "ability_bossmannoroth_glaivethrust", "index": 100}]}, {"id": 102272, "name": "Lunge", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102265, 102274], "prev": [102285], "entries": [{"id": 126332, "definitionId": 131158, "maxRanks": 1, "type": "passive", "name": "Lunge", "spellId": 378934, "icon": "inv_polearm_2h_kultirasharpoon_a_01", "index": 100}]}, {"id": 102279, "name": "Quick Shot", "type": "single", "posX": 12000, "posY": 3300, "maxRanks": 1, "next": [102274, 102266, 102290], "prev": [102285], "entries": [{"id": 126339, "definitionId": 131165, "maxRanks": 1, "type": "passive", "name": "Quick Shot", "spellId": 378940, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102257, "name": "Mongoose Bite", "type": "single", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [102290, 102268, 102259], "prev": [102263], "entries": [{"id": 126316, "definitionId": 131142, "maxRanks": 1, "type": "active", "name": "Mongoose Bite", "spellId": 259387, "icon": "ability_hunter_mongoosebite", "index": 100}]}, {"id": 102283, "name": "Flanker's Advantage", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102259, 102256], "prev": [102263], "entries": [{"id": 126343, "definitionId": 131169, "maxRanks": 1, "type": "passive", "name": "Flanker's Advantage", "spellId": 459964, "icon": "ability_hunter_beastmastery", "index": 100}]}, {"id": 102265, "name": "Wildfire Infusion", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102287, 102278], "prev": [102272], "entries": [{"id": 126325, "definitionId": 131151, "maxRanks": 1, "type": "passive", "name": "Wildfire Infusion", "spellId": 460198, "icon": "inv_misc_5potionbag_special", "index": 100}]}, {"id": 102274, "name": "Improved Wildfire Bomb", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102278], "prev": [102279, 102272], "entries": [{"id": 126334, "definitionId": 131160, "maxRanks": 1, "type": "passive", "name": "Improved Wildfire Bomb", "spellId": 321290, "icon": "inv_eng_bombfire", "index": 100}]}, {"id": 102266, "name": "Sulfur-Lined Pockets", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102278], "prev": [102279], "entries": [{"id": 126326, "definitionId": 131152, "maxRanks": 1, "type": "passive", "name": "Sulfur-Lined Pockets", "spellId": 459828, "icon": "inv_misc_ammo_gunpowder_01", "index": 100}]}, {"id": 102290, "name": "Butchery", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102286, 102267], "prev": [102257, 102279], "entries": [{"id": 126350, "definitionId": 131176, "maxRanks": 1, "type": "active", "name": "Butchery", "spellId": 212436, "icon": "ability_butcher_cleave", "index": 200}]}, {"id": 102268, "name": "Bloody Claws", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260], "prev": [102257], "entries": [{"id": 126328, "definitionId": 131154, "maxRanks": 1, "type": "passive", "name": "Bloody Claws", "spellId": 385737, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 102259, "name": "Alpha Predator", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260], "prev": [102257, 102283], "entries": [{"id": 126319, "definitionId": 131145, "maxRanks": 1, "type": "passive", "name": "Alpha Predator", "spellId": 269737, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 102256, "name": "Ranger", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260, 102270], "prev": [102283], "entries": [{"id": 126315, "definitionId": 131141, "maxRanks": 1, "type": "passive", "name": "Ranger", "spellId": 385695, "icon": "ability_hunter_thrillofthehunt", "index": 100}]}, {"id": 102287, "name": "Grenade Juggler", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102288], "prev": [102265], "entries": [{"id": 126347, "definitionId": 131173, "maxRanks": 1, "type": "passive", "name": "Grenade Juggler", "spellId": 459843, "icon": "inv_misc_mohawkgrenade", "index": 100}]}, {"id": 102278, "name": "Flanking Strike", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102288, 102271, 102277], "prev": [102274, 102265, 102266], "entries": [{"id": 126338, "definitionId": 131164, "maxRanks": 1, "type": "active", "name": "Flanking Strike", "spellId": 269751, "icon": "ability_hunter_invigeration", "index": 100}]}, {"id": 102286, "name": "Frenzy Strikes", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102277], "prev": [102290], "entries": [{"id": 126346, "definitionId": 131172, "maxRanks": 1, "type": "passive", "name": "Frenzy Strikes", "spellId": 294029, "icon": "ability_demonhunter_manabreak", "index": 100}]}, {"id": 102267, "name": "Merciless Blow", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102280], "prev": [102290], "entries": [{"id": 126327, "definitionId": 131153, "maxRanks": 1, "type": "passive", "name": "Merciless Blow", "spellId": 459868, "icon": "ability_hunter_swiftstrike", "index": 100}]}, {"id": 102260, "name": "Viper's Venom", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102280, 102276, 102269], "prev": [102268, 102256, 102259], "entries": [{"id": 126320, "definitionId": 131146, "maxRanks": 1, "type": "passive", "name": "Viper's Venom", "spellId": 268501, "icon": "ability_hunter_potentvenom", "index": 100}]}, {"id": 102270, "name": "Bloodseeker", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102269], "prev": [102256], "entries": [{"id": 126330, "definitionId": 131156, "maxRanks": 1, "type": "passive", "name": "Bloodseeker", "spellId": 260248, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 102288, "name": "Terms of Engagement", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281], "prev": [102287, 102278], "entries": [{"id": 126348, "definitionId": 131174, "maxRanks": 1, "type": "passive", "name": "Terms of Engagement", "spellId": 265895, "icon": "ability_hunter_harpoon", "index": 100}]}, {"id": 102271, "name": "Exposed Flank", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281], "prev": [102278], "entries": [{"id": 126331, "definitionId": 131157, "maxRanks": 1, "type": "passive", "name": "Exposed Flank", "spellId": 459861, "icon": "ability_hunter_animalhandler", "index": 100}]}, {"id": 102277, "name": "Tactical Advantage", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281, 102289], "prev": [102278, 102286], "entries": [{"id": 126337, "definitionId": 131163, "maxRanks": 1, "type": "passive", "name": "Tactical Advantage", "spellId": 378951, "icon": "ability_hunter_zenarchery", "index": 100}]}, {"id": 102280, "name": "Sic 'Em", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102289, 102282], "prev": [102267, 102260], "entries": [{"id": 126340, "definitionId": 131166, "maxRanks": 1, "type": "passive", "name": "Sic 'Em", "spellId": 459920, "icon": "ability_hunter_sickem", "index": 100}]}, {"id": 102276, "name": "Contagious Reagents", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102282], "prev": [102260], "entries": [{"id": 126336, "definitionId": 131162, "maxRanks": 1, "type": "passive", "name": "Contagious Reagents", "spellId": 459741, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 102269, "name": "Outland Venom", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102282], "prev": [102260, 102270], "entries": [{"id": 126329, "definitionId": 131155, "maxRanks": 1, "type": "passive", "name": "Outland Venom", "spellId": 459939, "icon": "ability_creature_disease_04", "index": 100}]}, {"id": 102281, "name": "Explosives Expert", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102275], "prev": [102277, 102271, 102288], "entries": [{"id": 126341, "definitionId": 131167, "maxRanks": 2, "type": "passive", "name": "Explosives Expert", "spellId": 378937, "icon": "inv_misc_bomb_05", "index": 100}]}, {"id": 102289, "name": "Sweeping Spear", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102252], "prev": [102277, 102280], "entries": [{"id": 126349, "definitionId": 131175, "maxRanks": 2, "type": "passive", "name": "Sweeping Spear", "spellId": 378950, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 102282, "name": "Killer Companion", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102291], "prev": [102276, 102269, 102280], "entries": [{"id": 126342, "definitionId": 131168, "maxRanks": 2, "type": "passive", "name": "Killer Companion", "spellId": 378955, "icon": "ability_hunter_masterscall", "index": 100}]}, {"id": 102275, "name": "Fury of the Eagle", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102261], "prev": [102281], "entries": [{"id": 126335, "definitionId": 131161, "maxRanks": 1, "type": "active", "name": "Fury of the Eagle", "spellId": 203415, "icon": "inv_polearm_2h_artifacteagle_d_01", "index": 100}]}, {"id": 102252, "name": "Coordinated Assault", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102258, 102273], "prev": [102289], "entries": [{"id": 126311, "definitionId": 131137, "maxRanks": 1, "type": "active", "name": "Coordinated Assault", "spellId": 360952, "icon": "inv__coordinatedassault", "index": 100}]}, {"id": 102291, "name": "Spearhead", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102284], "prev": [102282], "entries": [{"id": 126351, "definitionId": 131177, "maxRanks": 1, "type": "active", "name": "Spearhead", "spellId": 360966, "icon": "ability_hunter_spearhead", "index": 100}]}, {"id": 102261, "name": "Ruthless Marauder", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102275], "entries": [{"id": 126321, "definitionId": 131147, "maxRanks": 1, "type": "passive", "name": "Ruthless Marauder", "spellId": 470068, "icon": "ability_rogue_findweakness", "index": 100}]}, {"id": 102258, "name": "Symbiotic Adrenaline / Relentless Primal Ferocity", "type": "choice", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102252], "entries": [{"id": 126318, "definitionId": 131144, "maxRanks": 1, "type": "passive", "name": "Symbiotic Adrenaline", "spellId": 459875, "icon": "ability_rogue_bloodyeye", "index": 100}, {"id": 126317, "definitionId": 131143, "maxRanks": 1, "type": "passive", "name": "Relentless Primal Ferocity", "spellId": 459922, "icon": "ability_xavius_tormentingswipe", "index": 200}]}, {"id": 102273, "name": "Bombardier", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102252], "entries": [{"id": 126333, "definitionId": 131159, "maxRanks": 1, "type": "passive", "name": "Bombardier", "spellId": 389880, "icon": "inv_eng_bombfire", "index": 100}]}, {"id": 102284, "name": "Deadly Duo", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102291], "entries": [{"id": 126344, "definitionId": 131170, "maxRanks": 1, "type": "passive", "name": "Deadly Duo", "spellId": 378962, "icon": "ability_hunter_separationanxiety", "index": 100}]}], "heroNodes": [{"id": 94976, "name": "Sentinel", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 42, "next": [94989, 94973, 94981], "prev": [], "entries": [{"id": 117573, "definitionId": 122585, "maxRanks": 1, "type": "passive", "name": "Sentinel", "spellId": 450369, "icon": "ability_hunter_sentinelowl", "index": 100}], "freeNode": true}, {"id": 94989, "name": "Don't Look Back", "type": "single", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94958], "prev": [94976], "entries": [{"id": 117586, "definitionId": 122598, "maxRanks": 1, "type": "passive", "name": "Don't Look Back", "spellId": 450373, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 94973, "name": "Extrapolated Shots", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94990], "prev": [94976], "entries": [{"id": 117570, "definitionId": 122582, "maxRanks": 1, "type": "passive", "name": "Extrapolated Shots", "spellId": 450374, "icon": "ability_hunter_huntingparty", "index": 100}]}, {"id": 94981, "name": "Sentinel Precision", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94971], "prev": [94976], "entries": [{"id": 117578, "definitionId": 122590, "maxRanks": 1, "type": "passive", "name": "Sentinel Precision", "spellId": 450375, "icon": "inv_weapon_shortblade_83", "index": 100}]}, {"id": 94958, "name": "Release and Reload", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94970], "prev": [94989], "entries": [{"id": 117555, "definitionId": 122567, "maxRanks": 1, "type": "passive", "name": "Release and Reload", "spellId": 450376, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94990, "name": "Catch Out / Sideline", "type": "choice", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94965], "prev": [94973], "entries": [{"id": 117587, "definitionId": 122599, "maxRanks": 1, "type": "passive", "name": "Catch Out", "spellId": 451516, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 123869, "definitionId": 128707, "maxRanks": 1, "type": "passive", "name": "Sideline", "spellId": 450378, "icon": "ability_rogue_trip", "index": 200}]}, {"id": 94971, "name": "Invigorating Pulse", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94980], "prev": [94981], "entries": [{"id": 117568, "definitionId": 122580, "maxRanks": 1, "type": "passive", "name": "Invigorating Pulse", "spellId": 450379, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 94970, "name": "Sentinel Watch / Eyes Closed", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94958], "entries": [{"id": 117567, "definitionId": 122579, "maxRanks": 1, "type": "passive", "name": "Sentinel Watch", "spellId": 451546, "icon": "inv_quiver_1h_sylvanas_d_01", "index": 100}, {"id": 123871, "definitionId": 128709, "maxRanks": 1, "type": "passive", "name": "Eyes Closed", "spellId": 450381, "icon": "inv_trickshot", "index": 200}]}, {"id": 94965, "name": "Symphonic Arsenal", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94990], "entries": [{"id": 117562, "definitionId": 122574, "maxRanks": 1, "type": "passive", "name": "Symphonic Arsenal", "spellId": 450383, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 94980, "name": "Overwatch / Crescent Steel", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94971], "entries": [{"id": 117577, "definitionId": 122589, "maxRanks": 1, "type": "passive", "name": "Overwatch", "spellId": 450384, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 123870, "definitionId": 128708, "maxRanks": 1, "type": "passive", "name": "Crescent Steel", "spellId": 451530, "icon": "inv_enchant_crescentoil", "index": 200}]}, {"id": 94978, "name": "Lunar Storm", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 42, "next": [], "prev": [94965, 94970, 94980], "entries": [{"id": 117575, "definitionId": 122587, "maxRanks": 1, "type": "passive", "name": "Lunar Storm", "spellId": 450385, "icon": "inv_ability_sentinelhunter_lunarstorm", "index": 100}]}, {"id": 94991, "name": "Vicious Hunt", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 43, "next": [94985, 94992, 94962], "prev": [], "entries": [{"id": 117588, "definitionId": 122600, "maxRanks": 1, "type": "passive", "name": "Vicious Hunt", "spellId": 445404, "icon": "inv_ability_packleaderhunter_vicioushunt", "index": 100}], "freeNode": true}, {"id": 94985, "name": "Pack Coordination", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94972], "prev": [94991], "entries": [{"id": 117582, "definitionId": 122594, "maxRanks": 1, "type": "passive", "name": "Pack Coordination", "spellId": 445505, "icon": "ability_hunter_separationanxiety", "index": 100}]}, {"id": 94992, "name": "Howl of the Pack", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94984], "prev": [94991], "entries": [{"id": 117589, "definitionId": 122601, "maxRanks": 1, "type": "passive", "name": "Howl of the Pack", "spellId": 445707, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 94962, "name": "Wild Attacks", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94988], "prev": [94991], "entries": [{"id": 117559, "definitionId": 122571, "maxRanks": 1, "type": "passive", "name": "Wild Attacks", "spellId": 445708, "icon": "inv_misc_bone_09", "index": 100}]}, {"id": 94972, "name": "Den Recovery", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94969], "prev": [94985], "entries": [{"id": 117569, "definitionId": 122581, "maxRanks": 1, "type": "passive", "name": "Den Recovery", "spellId": 445710, "icon": "ability_shaman_freedomwolf", "index": 100}]}, {"id": 94984, "name": "Tireless Hunt / Cornered Prey", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94967], "prev": [94992], "entries": [{"id": 117581, "definitionId": 122593, "maxRanks": 1, "type": "passive", "name": "Tireless Hunt", "spellId": 445701, "icon": "ability_mount_jungletiger", "index": 100}, {"id": 123782, "definitionId": 128620, "maxRanks": 1, "type": "passive", "name": "Cornered Prey", "spellId": 445702, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 94988, "name": "Frenzied Tear", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94979], "prev": [94962], "entries": [{"id": 117585, "definitionId": 122597, "maxRanks": 1, "type": "passive", "name": "Frenzied Tear", "spellId": 445696, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 94969, "name": "Scattered Prey / Covering Fire", "type": "choice", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94972], "entries": [{"id": 117566, "definitionId": 122578, "maxRanks": 1, "type": "passive", "name": "Scattered Prey", "spellId": 445768, "icon": "inv_misc_bone_09", "index": 100}, {"id": 123783, "definitionId": 128621, "maxRanks": 1, "type": "passive", "name": "Covering Fire", "spellId": 445715, "icon": "ability_hunter_runningshot", "index": 200}]}, {"id": 94967, "name": "Cull the Herd", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94984], "entries": [{"id": 117564, "definitionId": 122576, "maxRanks": 1, "type": "passive", "name": "Cull the Herd", "spellId": 445717, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 94979, "name": "Furious Assault / Beast of Opportunity", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94988], "entries": [{"id": 117576, "definitionId": 122588, "maxRanks": 1, "type": "passive", "name": "Furious Assault", "spellId": 445699, "icon": "spell_druid_feralchargecat", "index": 100}, {"id": 123781, "definitionId": 128619, "maxRanks": 1, "type": "passive", "name": "Beast of Opportunity", "spellId": 445700, "icon": "ability_hunter_catlikereflexes", "index": 200}]}, {"id": 94966, "name": "Pack Assault", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 43, "next": [], "prev": [94967, 94969, 94979], "entries": [{"id": 117563, "definitionId": 122575, "maxRanks": 1, "type": "passive", "name": "Pack Assault", "spellId": 445721, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}], "subTreeNodes": [{"id": 99833, "name": "Pack Leader / Sentinel", "type": "subtree", "posX": 9000, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123350, "type": "subtree", "name": "Pack Leader", "traitSubTreeId": 43, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-packleader", "nodes": [94991, 94985, 94992, 94962, 94972, 94984, 94988, 94969, 94967, 94979, 94966]}, {"id": 123349, "type": "subtree", "name": "Sentinel", "traitSubTreeId": 42, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-sentinel", "nodes": [94976, 94989, 94973, 94981, 94958, 94990, 94971, 94970, 94965, 94980, 94978]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/mage_arcane.json b/simc_support/game_data/data_files/trees/mage_arcane.json index 1306e0e..7f47445 100644 --- a/simc_support/game_data/data_files/trees/mage_arcane.json +++ b/simc_support/game_data/data_files/trees/mage_arcane.json @@ -1 +1 @@ -{"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Arcane", "specId": 62, "classNodes": [{"id": 62121, "name": "Prismatic Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80180, "definitionId": 85183, "maxRanks": 1, "type": "active", "name": "Prismatic Barrier", "spellId": 235450, "icon": "spell_magearmor", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62121], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62121], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62121], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "ability_ardenweald_mage", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring-of-frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 102467, "name": "Arcane Missiles", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102445, 102473, 102461], "prev": [], "entries": [{"id": 126537, "definitionId": 131363, "maxRanks": 1, "type": "active", "name": "Arcane Missiles", "spellId": 5143, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 102445, "name": "Amplification", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [102466, 102436], "prev": [102467], "entries": [{"id": 126515, "definitionId": 131341, "maxRanks": 1, "type": "passive", "name": "Amplification", "spellId": 236628, "icon": "spell_arcane_invocation", "index": 100}]}, {"id": 102473, "name": "Nether Precision", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [102448, 102458], "prev": [102467], "entries": [{"id": 126543, "definitionId": 131369, "maxRanks": 1, "type": "passive", "name": "Nether Precision", "spellId": 383782, "icon": "spell_arcane_blast_nightborne", "index": 100}]}, {"id": 102466, "name": "Charged Orb", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [102439], "prev": [102445], "entries": [{"id": 126536, "definitionId": 131362, "maxRanks": 1, "type": "passive", "name": "Charged Orb", "spellId": 384651, "icon": "spell_mage_arcaneorb", "index": 100}]}, {"id": 102436, "name": "Arcane Tempo", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [102439], "prev": [102445], "entries": [{"id": 126506, "definitionId": 131332, "maxRanks": 1, "type": "passive", "name": "Arcane Tempo", "spellId": 383980, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 102461, "name": "Concentrated Power", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [102449], "prev": [102467], "entries": [{"id": 126531, "definitionId": 131357, "maxRanks": 1, "type": "passive", "name": "Concentrated Power", "spellId": 414379, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 102448, "name": "Consortium's Bauble", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [102471], "prev": [102473], "entries": [{"id": 126518, "definitionId": 131344, "maxRanks": 1, "type": "passive", "name": "Consortium's Bauble", "spellId": 461260, "icon": "inv_6_2raid_trinket_1b", "index": 100}]}, {"id": 102458, "name": "Arcing Cleave", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [102471], "prev": [102473], "entries": [{"id": 126528, "definitionId": 131354, "maxRanks": 1, "type": "passive", "name": "Arcing Cleave", "spellId": 231564, "icon": "ability_mage_arcanebarrage", "index": 100}]}, {"id": 102439, "name": "Arcane Familiar", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [102446, 102462, 102460], "prev": [102466, 102436], "entries": [{"id": 126509, "definitionId": 131335, "maxRanks": 1, "type": "passive", "name": "Arcane Familiar", "spellId": 205022, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 102449, "name": "Arcane Surge", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [102460, 102440, 102469], "prev": [102461], "entries": [{"id": 126519, "definitionId": 131345, "maxRanks": 1, "type": "active", "name": "Arcane Surge", "spellId": 365350, "icon": "ability_mage_arcanesurge", "index": 100}]}, {"id": 102471, "name": "Improved Clearcasting", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [102469, 102475, 102437], "prev": [102458, 102448], "entries": [{"id": 126541, "definitionId": 131367, "maxRanks": 1, "type": "passive", "name": "Improved Clearcasting", "spellId": 321420, "icon": "spell_shadow_manaburn", "index": 100}]}, {"id": 102446, "name": "Big Brained", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480, 102453], "prev": [102439], "entries": [{"id": 126516, "definitionId": 131342, "maxRanks": 1, "type": "passive", "name": "Big Brained", "spellId": 461261, "icon": "ability_kaztik_dominatemind", "index": 100}]}, {"id": 102462, "name": "Energized Familiar", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480], "prev": [102439], "entries": [{"id": 126532, "definitionId": 131358, "maxRanks": 1, "type": "passive", "name": "Energized Familiar", "spellId": 452997, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 102460, "name": "Presence of Mind", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480, 102468], "prev": [102439, 102449], "entries": [{"id": 126530, "definitionId": 131356, "maxRanks": 1, "type": "active", "name": "Presence of Mind", "spellId": 205025, "icon": "spell_nature_enchantarmor", "index": 100}]}, {"id": 102440, "name": "Surging Urge", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [102449], "entries": [{"id": 126510, "definitionId": 131336, "maxRanks": 1, "type": "passive", "name": "Surging Urge", "spellId": 457521, "icon": "spell_holy_surgeoflight_shadow", "index": 100}]}, {"id": 102469, "name": "Slipstream", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102468, 102456], "prev": [102449, 102471], "entries": [{"id": 126539, "definitionId": 131365, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 236457, "icon": "spell_holy_mindsooth", "index": 100}]}, {"id": 102475, "name": "Static Cloud", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102456], "prev": [102471], "entries": [{"id": 126545, "definitionId": 131371, "maxRanks": 1, "type": "passive", "name": "Static Cloud", "spellId": 461257, "icon": "inv_misc_stormlordsfavor", "index": 100}]}, {"id": 102437, "name": "Resonance", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102456, 102441], "prev": [102471], "entries": [{"id": 126507, "definitionId": 131333, "maxRanks": 1, "type": "passive", "name": "Resonance", "spellId": 205028, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 102480, "name": "Impetus", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102453, 102444, 102459], "prev": [102462, 102460, 102446], "entries": [{"id": 126550, "definitionId": 131376, "maxRanks": 1, "type": "passive", "name": "Impetus", "spellId": 383676, "icon": "spell_arcane_arcanetorrent", "index": 100}]}, {"id": 102468, "name": "Touch of the Magi", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102459, 102452, 102455], "prev": [102469, 102460], "entries": [{"id": 126538, "definitionId": 131364, "maxRanks": 1, "type": "active", "name": "Touch of the Magi", "spellId": 321507, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 102456, "name": "Dematerialize", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102455, 102454, 102441], "prev": [102475, 102437, 102469], "entries": [{"id": 126526, "definitionId": 131352, "maxRanks": 1, "type": "passive", "name": "Dematerialize", "spellId": 461456, "icon": "inv_ore_eternium", "index": 100}]}, {"id": 102453, "name": "Resonant Orbs", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102446, 102480], "entries": [{"id": 126523, "definitionId": 131349, "maxRanks": 1, "type": "passive", "name": "Resonant Orbs", "spellId": 461453, "icon": "spell_mage_flameorb_purple", "index": 100}]}, {"id": 102444, "name": "Illuminated Thoughts", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102480], "entries": [{"id": 126514, "definitionId": 131340, "maxRanks": 1, "type": "passive", "name": "Illuminated Thoughts", "spellId": 384060, "icon": "spell_arcane_focusedpower", "index": 100}]}, {"id": 102459, "name": "Evocation", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102468, 102480], "entries": [{"id": 126529, "definitionId": 131355, "maxRanks": 1, "type": "active", "name": "Evocation", "spellId": 12051, "icon": "spell_nature_purge", "index": 100}]}, {"id": 102452, "name": "Improved Touch of the Magi", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102457], "prev": [102468], "entries": [{"id": 126522, "definitionId": 131348, "maxRanks": 1, "type": "passive", "name": "Improved Touch of the Magi", "spellId": 453002, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 102455, "name": "Eureka", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102468, 102456], "entries": [{"id": 126525, "definitionId": 131351, "maxRanks": 1, "type": "passive", "name": "Eureka", "spellId": 452198, "icon": "spell_mage_presenceofmind", "index": 100}]}, {"id": 102454, "name": "Energy Reconstitution", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102456], "entries": [{"id": 126524, "definitionId": 131350, "maxRanks": 1, "type": "passive", "name": "Energy Reconstitution", "spellId": 461457, "icon": "inv_seed_arcaneenergy", "index": 100}]}, {"id": 102441, "name": "Reverberate", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102437, 102456], "entries": [{"id": 126511, "definitionId": 131337, "maxRanks": 1, "type": "passive", "name": "Reverberate", "spellId": 281482, "icon": "spell_arcane_arcane04", "index": 100}]}, {"id": 102463, "name": "Arcane Debilitation", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102451, 102476, 102470], "prev": [102459, 102453, 102444], "entries": [{"id": 126533, "definitionId": 131359, "maxRanks": 2, "type": "passive", "name": "Arcane Debilitation", "spellId": 453598, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 102457, "name": "Arcane Echo", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102470, 102465, 102435], "prev": [102452], "entries": [{"id": 126527, "definitionId": 131353, "maxRanks": 1, "type": "passive", "name": "Arcane Echo", "spellId": 342231, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 102450, "name": "Prodigious Savant", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102465, 102477, 102438], "prev": [102454, 102441, 102455], "entries": [{"id": 126520, "definitionId": 131346, "maxRanks": 2, "type": "passive", "name": "Prodigious Savant", "spellId": 384612, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 102451, "name": "Time Loop", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102472], "prev": [102463], "entries": [{"id": 126521, "definitionId": 131347, "maxRanks": 1, "type": "passive", "name": "Time Loop", "spellId": 452924, "icon": "spell_mage_altertime_active", "index": 100}]}, {"id": 102476, "name": "Aether Attunement", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102472], "prev": [102463], "entries": [{"id": 126546, "definitionId": 131372, "maxRanks": 1, "type": "passive", "name": "Aether Attunement", "spellId": 453600, "icon": "inv_enchant_essencearcanelarge", "index": 100}]}, {"id": 102470, "name": "Enlightened", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102447], "prev": [102457, 102463], "entries": [{"id": 126540, "definitionId": 131366, "maxRanks": 1, "type": "passive", "name": "Enlightened", "spellId": 321387, "icon": "ability_socererking_arcanefortification", "index": 100}]}, {"id": 102465, "name": "Arcane Bombardment", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102443], "prev": [102450, 102457], "entries": [{"id": 126535, "definitionId": 131361, "maxRanks": 1, "type": "passive", "name": "Arcane Bombardment", "spellId": 384581, "icon": "ability_socererking_arcanereplication", "index": 100}]}, {"id": 102477, "name": "Leysight", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102474], "prev": [102450], "entries": [{"id": 126547, "definitionId": 131373, "maxRanks": 1, "type": "passive", "name": "Leysight", "spellId": 452187, "icon": "inv_enchant_essencecosmiclesser", "index": 100}]}, {"id": 102438, "name": "Concentration", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102474], "prev": [102450], "entries": [{"id": 126508, "definitionId": 131334, "maxRanks": 1, "type": "passive", "name": "Concentration", "spellId": 384374, "icon": "ability_mage_potentspirit", "index": 100}]}, {"id": 102472, "name": "High Voltage", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102476, 102451], "entries": [{"id": 126542, "definitionId": 131368, "maxRanks": 1, "type": "passive", "name": "High Voltage", "spellId": 461248, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 102447, "name": "Arcane Harmony", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102470], "entries": [{"id": 126517, "definitionId": 131343, "maxRanks": 1, "type": "passive", "name": "Arcane Harmony", "spellId": 384452, "icon": "ability_creature_cursed_04", "index": 100}]}, {"id": 102435, "name": "Magi's Spark / Nether Munitions", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102457], "entries": [{"id": 126505, "definitionId": 131331, "maxRanks": 1, "type": "passive", "name": "Magi's Spark", "spellId": 454016, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 126504, "definitionId": 131330, "maxRanks": 1, "type": "passive", "name": "Nether Munitions", "spellId": 450206, "icon": "inv_lightforgedmatrixability_shroudofarchaneechoes", "index": 200}]}, {"id": 102443, "name": "Orb Barrage", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102465], "entries": [{"id": 126513, "definitionId": 131339, "maxRanks": 1, "type": "passive", "name": "Orb Barrage", "spellId": 384858, "icon": "spell_mage_arcaneorb_nightborne", "index": 100}]}, {"id": 102474, "name": "Leydrinker", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102438, 102477], "entries": [{"id": 126544, "definitionId": 131370, "maxRanks": 1, "type": "passive", "name": "Leydrinker", "spellId": 452196, "icon": "spell_shadow_manafeed", "index": 100}]}], "heroNodes": [{"id": 94664, "name": "Splintering Sorcery", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 40, "next": [94662, 94663, 94661], "prev": [], "entries": [{"id": 117267, "definitionId": 122279, "maxRanks": 1, "type": "passive", "name": "Splintering Sorcery", "spellId": 443739, "icon": "achievement_dungeon_arcanevaults", "index": 100}], "freeNode": true}, {"id": 94662, "name": "Augury Abounds", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62171, "next": [94659], "prev": [94664], "entries": [{"id": 117265, "definitionId": 122277, "maxRanks": 1, "type": "passive", "name": "Augury Abounds", "spellId": 443783, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 94663, "name": "Controlled Instincts", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94660], "prev": [94664], "entries": [{"id": 117266, "definitionId": 122278, "maxRanks": 1, "type": "passive", "name": "Controlled Instincts", "spellId": 444483, "icon": "spell_frost_ice_shards", "index": 100}]}, {"id": 94661, "name": "Splintering Orbs", "type": "single", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94658], "prev": [94664], "entries": [{"id": 117264, "definitionId": 122276, "maxRanks": 1, "type": "passive", "name": "Splintering Orbs", "spellId": 444256, "icon": "item_azereansphere", "index": 100}]}, {"id": 94659, "name": "Slippery Slinging / Look Again", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94657], "prev": [94662], "entries": [{"id": 117262, "definitionId": 122274, "maxRanks": 1, "type": "passive", "name": "Slippery Slinging", "spellId": 444752, "icon": "ability_mage_icyfeet", "index": 100}, {"id": 123418, "definitionId": 128256, "maxRanks": 1, "type": "passive", "name": "Look Again", "spellId": 444756, "icon": "achievement_bg_tophealer_av", "index": 200}]}, {"id": 94660, "name": "Reactive Barrier / Phantasmal Image", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94656], "prev": [94663], "entries": [{"id": 117263, "definitionId": 122275, "maxRanks": 1, "type": "passive", "name": "Reactive Barrier", "spellId": 444827, "icon": "ability_racial_forceshield", "index": 100}, {"id": 123417, "definitionId": 128255, "maxRanks": 1, "type": "passive", "name": "Phantasmal Image", "spellId": 444784, "icon": "spell_arcane_prismaticcloak", "index": 200}]}, {"id": 94658, "name": "Volatile Magic / Unerring Proficiency", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94655], "prev": [94661], "entries": [{"id": 117261, "definitionId": 122273, "maxRanks": 1, "type": "passive", "name": "Volatile Magic", "spellId": 444968, "icon": "spell_mage_flameorb_blue", "index": 100}, {"id": 123407, "definitionId": 128245, "maxRanks": 1, "type": "passive", "name": "Unerring Proficiency", "spellId": 444974, "icon": "spell_mage_presenceofmind", "index": 200}]}, {"id": 94657, "name": "Shifting Shards", "type": "single", "posX": 7200, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62113, "next": [94654], "prev": [94659], "entries": [{"id": 117260, "definitionId": 122272, "maxRanks": 1, "type": "passive", "name": "Shifting Shards", "spellId": 444675, "icon": "ability_mage_freeze", "index": 100}]}, {"id": 94656, "name": "Force of Will", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94660], "entries": [{"id": 117259, "definitionId": 122271, "maxRanks": 1, "type": "passive", "name": "Force of Will", "spellId": 444719, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 94655, "name": "Spellfrost Teachings", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94658], "entries": [{"id": 117258, "definitionId": 122270, "maxRanks": 1, "type": "passive", "name": "Spellfrost Teachings", "spellId": 444986, "icon": "70_inscription_vantus_rune_azure", "index": 100}]}, {"id": 94654, "name": "Splinterstorm", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "subTreeId": 40, "next": [], "prev": [94656, 94657, 94655], "entries": [{"id": 117257, "definitionId": 122269, "maxRanks": 1, "type": "passive", "name": "Splinterstorm", "spellId": 443742, "icon": "ability_mage_burstofcold", "index": 100}]}, {"id": 94647, "name": "Spellfire Spheres", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "entryNode": true, "subTreeId": 39, "next": [94653, 94652, 94644], "prev": [], "entries": [{"id": 117250, "definitionId": 122262, "maxRanks": 1, "type": "passive", "name": "Spellfire Spheres", "spellId": 448601, "icon": "inv_ability_sunfurymage_spellfirespheres", "index": 100}], "freeNode": true}, {"id": 94653, "name": "Mana Cascade", "type": "single", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94649], "prev": [94647], "entries": [{"id": 117256, "definitionId": 122268, "maxRanks": 1, "type": "passive", "name": "Mana Cascade", "spellId": 449293, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 94652, "name": "Invocation: Arcane Phoenix", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [94651], "prev": [94647], "entries": [{"id": 117255, "definitionId": 122267, "maxRanks": 1, "type": "passive", "name": "Invocation: Arcane Phoenix", "spellId": 448658, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 94644, "name": "Burden of Power", "type": "single", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94645], "prev": [94647], "entries": [{"id": 117247, "definitionId": 122259, "maxRanks": 1, "type": "passive", "name": "Burden of Power", "spellId": 451035, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 94649, "name": "Merely a Setback", "type": "single", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94650], "prev": [94653], "entries": [{"id": 117252, "definitionId": 122264, "maxRanks": 1, "type": "passive", "name": "Merely a Setback", "spellId": 449330, "icon": "inv_helm_robe_raidmage_i_01", "index": 100}]}, {"id": 94651, "name": "Lessons in Debilitation / Gravity Lapse", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94643], "prev": [94652], "entries": [{"id": 117254, "definitionId": 122266, "maxRanks": 1, "type": "passive", "name": "Lessons in Debilitation", "spellId": 449627, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 123832, "definitionId": 128670, "maxRanks": 1, "type": "passive", "name": "Gravity Lapse", "spellId": 458513, "icon": "inv_cosmicvoid_wave", "index": 200}]}, {"id": 94645, "name": "Glorious Incandescence", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94648], "prev": [94644], "entries": [{"id": 117248, "definitionId": 122260, "maxRanks": 1, "type": "passive", "name": "Glorious Incandescence", "spellId": 449394, "icon": "spell_burningsoul", "index": 100}]}, {"id": 94650, "name": "Savor the Moment / Sunfury Execution", "type": "choice", "posX": 7200, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94649], "entries": [{"id": 117253, "definitionId": 122265, "maxRanks": 1, "type": "passive", "name": "Savor the Moment", "spellId": 449412, "icon": "spell_fire_masterofelements", "index": 100}, {"id": 123867, "definitionId": 128705, "maxRanks": 1, "type": "passive", "name": "Sunfury Execution", "spellId": 449349, "icon": "spell_shadow_shadowandflame", "index": 200}]}, {"id": 94643, "name": "Codex of the Sunstriders", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "requiresNode": 102449, "next": [94646], "prev": [94651], "entries": [{"id": 117246, "definitionId": 122258, "maxRanks": 1, "type": "passive", "name": "Codex of the Sunstriders", "spellId": 449382, "icon": "inv_10_inscription2_book3_color1", "index": 100}]}, {"id": 94648, "name": "Rondurmancy / Ignite the Future", "type": "choice", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94645], "entries": [{"id": 117251, "definitionId": 122263, "maxRanks": 1, "type": "passive", "name": "Rondurmancy", "spellId": 449596, "icon": "spell_arcane_focusedpower", "index": 100}, {"id": 123833, "definitionId": 128671, "maxRanks": 1, "type": "passive", "name": "Ignite the Future", "spellId": 449558, "icon": "inv_misc_matchbook", "index": 200}]}, {"id": 94646, "name": "Memory of Al'ar", "type": "single", "posX": 7800, "posY": 7500, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [], "prev": [94643, 94650, 94648], "entries": [{"id": 117249, "definitionId": 122261, "maxRanks": 1, "type": "passive", "name": "Memory of Al'ar", "spellId": 449619, "icon": "inv_misc_summerfest_brazierorange", "index": 100}]}], "subTreeNodes": [{"id": 99830, "name": "Spellslinger / Sunfury", "type": "subtree", "posX": 6900, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123344, "type": "subtree", "name": "Spellslinger", "traitSubTreeId": 40, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-spellslinger", "nodes": [94664, 94662, 94663, 94661, 94659, 94660, 94658, 94657, 94656, 94655, 94654]}, {"id": 123341, "type": "subtree", "name": "Sunfury", "traitSubTreeId": 39, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-sunfury", "nodes": [94647, 94653, 94652, 94644, 94649, 94651, 94645, 94650, 94643, 94648, 94646]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]} \ No newline at end of file +{"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Arcane", "specId": 62, "classNodes": [{"id": 62121, "name": "Prismatic Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80180, "definitionId": 85183, "maxRanks": 1, "type": "active", "name": "Prismatic Barrier", "spellId": 235450, "icon": "spell_magearmor", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62121], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62121], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62121], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "inv_ability_mage_shiftingpower", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring-of-frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 102467, "name": "Arcane Missiles", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102445, 102473, 102461], "prev": [], "entries": [{"id": 126537, "definitionId": 131363, "maxRanks": 1, "type": "active", "name": "Arcane Missiles", "spellId": 5143, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 102445, "name": "Amplification", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [102466, 102436], "prev": [102467], "entries": [{"id": 126515, "definitionId": 131341, "maxRanks": 1, "type": "passive", "name": "Amplification", "spellId": 236628, "icon": "spell_arcane_invocation", "index": 100}]}, {"id": 102473, "name": "Nether Precision", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [102448, 102458], "prev": [102467], "entries": [{"id": 126543, "definitionId": 131369, "maxRanks": 1, "type": "passive", "name": "Nether Precision", "spellId": 383782, "icon": "spell_arcane_blast_nightborne", "index": 100}]}, {"id": 102466, "name": "Charged Orb", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [102439], "prev": [102445], "entries": [{"id": 126536, "definitionId": 131362, "maxRanks": 1, "type": "passive", "name": "Charged Orb", "spellId": 384651, "icon": "spell_mage_arcaneorb", "index": 100}]}, {"id": 102436, "name": "Arcane Tempo", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [102439], "prev": [102445], "entries": [{"id": 126506, "definitionId": 131332, "maxRanks": 1, "type": "passive", "name": "Arcane Tempo", "spellId": 383980, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 102461, "name": "Concentrated Power", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [102449], "prev": [102467], "entries": [{"id": 126531, "definitionId": 131357, "maxRanks": 1, "type": "passive", "name": "Concentrated Power", "spellId": 414379, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 102448, "name": "Aethervision", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [102471], "prev": [102473], "entries": [{"id": 126518, "definitionId": 131344, "maxRanks": 1, "type": "passive", "name": "Aethervision", "spellId": 467633, "icon": "sha_ability_rogue_bloodyeye_nightborne", "index": 100}]}, {"id": 102458, "name": "Arcing Cleave", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [102471], "prev": [102473], "entries": [{"id": 126528, "definitionId": 131354, "maxRanks": 1, "type": "passive", "name": "Arcing Cleave", "spellId": 231564, "icon": "ability_mage_arcanebarrage", "index": 100}]}, {"id": 102439, "name": "Arcane Familiar", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [102446, 102462, 102460], "prev": [102466, 102436], "entries": [{"id": 126509, "definitionId": 131335, "maxRanks": 1, "type": "passive", "name": "Arcane Familiar", "spellId": 205022, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 102449, "name": "Arcane Surge", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [102460, 102440, 102469], "prev": [102461], "entries": [{"id": 126519, "definitionId": 131345, "maxRanks": 1, "type": "active", "name": "Arcane Surge", "spellId": 365350, "icon": "ability_mage_arcanesurge", "index": 100}]}, {"id": 102471, "name": "Improved Clearcasting", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [102469, 102475, 102437], "prev": [102458, 102448], "entries": [{"id": 126541, "definitionId": 131367, "maxRanks": 1, "type": "passive", "name": "Improved Clearcasting", "spellId": 321420, "icon": "spell_shadow_manaburn", "index": 100}]}, {"id": 102446, "name": "Big Brained", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480, 102453], "prev": [102439], "entries": [{"id": 126516, "definitionId": 131342, "maxRanks": 1, "type": "passive", "name": "Big Brained", "spellId": 461261, "icon": "ability_kaztik_dominatemind", "index": 100}]}, {"id": 102462, "name": "Energized Familiar", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480], "prev": [102439], "entries": [{"id": 126532, "definitionId": 131358, "maxRanks": 1, "type": "passive", "name": "Energized Familiar", "spellId": 452997, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 102460, "name": "Presence of Mind", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480, 102468], "prev": [102439, 102449], "entries": [{"id": 126530, "definitionId": 131356, "maxRanks": 1, "type": "active", "name": "Presence of Mind", "spellId": 205025, "icon": "spell_nature_enchantarmor", "index": 100}]}, {"id": 102440, "name": "Surging Urge", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [102449], "entries": [{"id": 126510, "definitionId": 131336, "maxRanks": 1, "type": "passive", "name": "Surging Urge", "spellId": 457521, "icon": "spell_holy_surgeoflight_shadow", "index": 100}]}, {"id": 102469, "name": "Slipstream", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102468, 102456], "prev": [102449, 102471], "entries": [{"id": 126539, "definitionId": 131365, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 236457, "icon": "spell_holy_mindsooth", "index": 100}]}, {"id": 102475, "name": "Consortium's Bauble", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102456], "prev": [102471], "entries": [{"id": 126545, "definitionId": 131371, "maxRanks": 1, "type": "passive", "name": "Consortium's Bauble", "spellId": 461260, "icon": "inv_6_2raid_trinket_1b", "index": 100}]}, {"id": 102437, "name": "Resonance", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102456, 102441], "prev": [102471], "entries": [{"id": 126507, "definitionId": 131333, "maxRanks": 1, "type": "passive", "name": "Resonance", "spellId": 205028, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 102480, "name": "Impetus", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102453, 102444, 102459], "prev": [102462, 102460, 102446], "entries": [{"id": 126550, "definitionId": 131376, "maxRanks": 1, "type": "passive", "name": "Impetus", "spellId": 383676, "icon": "spell_arcane_arcanetorrent", "index": 100}]}, {"id": 102468, "name": "Touch of the Magi", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102459, 102452, 102455], "prev": [102469, 102460], "entries": [{"id": 126538, "definitionId": 131364, "maxRanks": 1, "type": "active", "name": "Touch of the Magi", "spellId": 321507, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 102456, "name": "Dematerialize", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102455, 102454, 102441], "prev": [102475, 102437, 102469], "entries": [{"id": 126526, "definitionId": 131352, "maxRanks": 1, "type": "passive", "name": "Dematerialize", "spellId": 461456, "icon": "inv_ore_eternium", "index": 100}]}, {"id": 102453, "name": "Static Cloud", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102446, 102480], "entries": [{"id": 126523, "definitionId": 131349, "maxRanks": 1, "type": "passive", "name": "Static Cloud", "spellId": 461257, "icon": "inv_misc_stormlordsfavor", "index": 100}]}, {"id": 102444, "name": "Illuminated Thoughts", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102480], "entries": [{"id": 126514, "definitionId": 131340, "maxRanks": 1, "type": "passive", "name": "Illuminated Thoughts", "spellId": 384060, "icon": "spell_arcane_focusedpower", "index": 100}]}, {"id": 102459, "name": "Evocation", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102468, 102480], "entries": [{"id": 126529, "definitionId": 131355, "maxRanks": 1, "type": "active", "name": "Evocation", "spellId": 12051, "icon": "spell_nature_purge", "index": 100}]}, {"id": 102452, "name": "Improved Touch of the Magi", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102457], "prev": [102468], "entries": [{"id": 126522, "definitionId": 131348, "maxRanks": 1, "type": "passive", "name": "Improved Touch of the Magi", "spellId": 453002, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 102455, "name": "Eureka", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102468, 102456], "entries": [{"id": 126525, "definitionId": 131351, "maxRanks": 1, "type": "passive", "name": "Eureka", "spellId": 452198, "icon": "spell_mage_presenceofmind", "index": 100}]}, {"id": 102454, "name": "Energy Reconstitution", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102456], "entries": [{"id": 126524, "definitionId": 131350, "maxRanks": 1, "type": "passive", "name": "Energy Reconstitution", "spellId": 461457, "icon": "inv_seed_arcaneenergy", "index": 100}]}, {"id": 102441, "name": "Reverberate", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102437, 102456], "entries": [{"id": 126511, "definitionId": 131337, "maxRanks": 1, "type": "passive", "name": "Reverberate", "spellId": 281482, "icon": "spell_arcane_arcane04", "index": 100}]}, {"id": 102463, "name": "Arcane Debilitation", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102451, 102476, 102470], "prev": [102459, 102453, 102444], "entries": [{"id": 126533, "definitionId": 131359, "maxRanks": 2, "type": "passive", "name": "Arcane Debilitation", "spellId": 453598, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 102457, "name": "Arcane Echo", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102470, 102465, 102435], "prev": [102452], "entries": [{"id": 126527, "definitionId": 131353, "maxRanks": 1, "type": "passive", "name": "Arcane Echo", "spellId": 342231, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 102450, "name": "Prodigious Savant", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102465, 102477, 102438], "prev": [102454, 102441, 102455], "entries": [{"id": 126520, "definitionId": 131346, "maxRanks": 2, "type": "passive", "name": "Prodigious Savant", "spellId": 384612, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 102451, "name": "Time Loop", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102472], "prev": [102463], "entries": [{"id": 126521, "definitionId": 131347, "maxRanks": 1, "type": "passive", "name": "Time Loop", "spellId": 452924, "icon": "spell_mage_altertime_active", "index": 100}]}, {"id": 102476, "name": "Aether Attunement", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102472], "prev": [102463], "entries": [{"id": 126546, "definitionId": 131372, "maxRanks": 1, "type": "passive", "name": "Aether Attunement", "spellId": 453600, "icon": "inv_enchant_essencearcanelarge", "index": 100}]}, {"id": 102470, "name": "Enlightened", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102447], "prev": [102457, 102463], "entries": [{"id": 126540, "definitionId": 131366, "maxRanks": 1, "type": "passive", "name": "Enlightened", "spellId": 321387, "icon": "ability_socererking_arcanefortification", "index": 100}]}, {"id": 102465, "name": "Arcane Bombardment", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102443], "prev": [102450, 102457], "entries": [{"id": 126535, "definitionId": 131361, "maxRanks": 1, "type": "passive", "name": "Arcane Bombardment", "spellId": 384581, "icon": "ability_socererking_arcanereplication", "index": 100}]}, {"id": 102477, "name": "Leysight", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102474], "prev": [102450], "entries": [{"id": 126547, "definitionId": 131373, "maxRanks": 1, "type": "passive", "name": "Leysight", "spellId": 452187, "icon": "inv_enchant_essencecosmiclesser", "index": 100}]}, {"id": 102438, "name": "Concentration", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102474], "prev": [102450], "entries": [{"id": 126508, "definitionId": 131334, "maxRanks": 1, "type": "passive", "name": "Concentration", "spellId": 384374, "icon": "ability_mage_potentspirit", "index": 100}]}, {"id": 102472, "name": "High Voltage", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102476, 102451], "entries": [{"id": 126542, "definitionId": 131368, "maxRanks": 1, "type": "passive", "name": "High Voltage", "spellId": 461248, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 102447, "name": "Arcane Harmony", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102470], "entries": [{"id": 126517, "definitionId": 131343, "maxRanks": 1, "type": "passive", "name": "Arcane Harmony", "spellId": 384452, "icon": "ability_creature_cursed_04", "index": 100}]}, {"id": 102435, "name": "Magi's Spark / Nether Munitions", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102457], "entries": [{"id": 126505, "definitionId": 131331, "maxRanks": 1, "type": "passive", "name": "Magi's Spark", "spellId": 454016, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 126504, "definitionId": 131330, "maxRanks": 1, "type": "passive", "name": "Nether Munitions", "spellId": 450206, "icon": "inv_lightforgedmatrixability_shroudofarchaneechoes", "index": 200}]}, {"id": 102443, "name": "Orb Barrage", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102465], "entries": [{"id": 126513, "definitionId": 131339, "maxRanks": 1, "type": "passive", "name": "Orb Barrage", "spellId": 384858, "icon": "spell_mage_arcaneorb_nightborne", "index": 100}]}, {"id": 102474, "name": "Leydrinker", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102438, 102477], "entries": [{"id": 126544, "definitionId": 131370, "maxRanks": 1, "type": "passive", "name": "Leydrinker", "spellId": 452196, "icon": "spell_shadow_manafeed", "index": 100}]}], "heroNodes": [{"id": 94664, "name": "Splintering Sorcery", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 40, "next": [94662, 94663, 94661], "prev": [], "entries": [{"id": 117267, "definitionId": 122279, "maxRanks": 1, "type": "passive", "name": "Splintering Sorcery", "spellId": 443739, "icon": "achievement_dungeon_arcanevaults", "index": 100}], "freeNode": true}, {"id": 94662, "name": "Augury Abounds", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62171, "next": [94659], "prev": [94664], "entries": [{"id": 117265, "definitionId": 122277, "maxRanks": 1, "type": "passive", "name": "Augury Abounds", "spellId": 443783, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 94663, "name": "Controlled Instincts", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94660], "prev": [94664], "entries": [{"id": 117266, "definitionId": 122278, "maxRanks": 1, "type": "passive", "name": "Controlled Instincts", "spellId": 444483, "icon": "spell_frost_ice_shards", "index": 100}]}, {"id": 94661, "name": "Splintering Orbs", "type": "single", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94658], "prev": [94664], "entries": [{"id": 117264, "definitionId": 122276, "maxRanks": 1, "type": "passive", "name": "Splintering Orbs", "spellId": 444256, "icon": "item_azereansphere", "index": 100}]}, {"id": 94659, "name": "Slippery Slinging / Look Again", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94657], "prev": [94662], "entries": [{"id": 117262, "definitionId": 122274, "maxRanks": 1, "type": "passive", "name": "Slippery Slinging", "spellId": 444752, "icon": "ability_mage_icyfeet", "index": 100}, {"id": 123418, "definitionId": 128256, "maxRanks": 1, "type": "passive", "name": "Look Again", "spellId": 444756, "icon": "achievement_bg_tophealer_av", "index": 200}]}, {"id": 94660, "name": "Reactive Barrier / Phantasmal Image", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94656], "prev": [94663], "entries": [{"id": 117263, "definitionId": 122275, "maxRanks": 1, "type": "passive", "name": "Reactive Barrier", "spellId": 444827, "icon": "ability_racial_forceshield", "index": 100}, {"id": 123417, "definitionId": 128255, "maxRanks": 1, "type": "passive", "name": "Phantasmal Image", "spellId": 444784, "icon": "spell_arcane_prismaticcloak", "index": 200}]}, {"id": 94658, "name": "Volatile Magic / Unerring Proficiency", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94655], "prev": [94661], "entries": [{"id": 117261, "definitionId": 122273, "maxRanks": 1, "type": "passive", "name": "Volatile Magic", "spellId": 444968, "icon": "spell_mage_flameorb_blue", "index": 100}, {"id": 123407, "definitionId": 128245, "maxRanks": 1, "type": "passive", "name": "Unerring Proficiency", "spellId": 444974, "icon": "spell_mage_presenceofmind", "index": 200}]}, {"id": 94657, "name": "Shifting Shards / Signature Spell", "type": "choice", "posX": 7200, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62113, "next": [94654], "prev": [94659], "entries": [{"id": 117260, "definitionId": 122272, "maxRanks": 1, "type": "passive", "name": "Shifting Shards", "spellId": 444675, "icon": "ability_mage_freeze", "index": 100}, {"id": 128267, "definitionId": 133074, "maxRanks": 1, "type": "passive", "name": "Signature Spell", "spellId": 470021, "icon": "inv_enchanting_815_drustwand", "index": 200}]}, {"id": 94656, "name": "Force of Will", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94660], "entries": [{"id": 117259, "definitionId": 122271, "maxRanks": 1, "type": "passive", "name": "Force of Will", "spellId": 444719, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 94655, "name": "Spellfrost Teachings", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94658], "entries": [{"id": 117258, "definitionId": 122270, "maxRanks": 1, "type": "passive", "name": "Spellfrost Teachings", "spellId": 444986, "icon": "70_inscription_vantus_rune_azure", "index": 100}]}, {"id": 94654, "name": "Splinterstorm", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "subTreeId": 40, "next": [], "prev": [94656, 94657, 94655], "entries": [{"id": 117257, "definitionId": 122269, "maxRanks": 1, "type": "passive", "name": "Splinterstorm", "spellId": 443742, "icon": "ability_mage_burstofcold", "index": 100}]}, {"id": 94647, "name": "Spellfire Spheres", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "entryNode": true, "subTreeId": 39, "next": [94653, 94652, 94644], "prev": [], "entries": [{"id": 117250, "definitionId": 122262, "maxRanks": 1, "type": "passive", "name": "Spellfire Spheres", "spellId": 448601, "icon": "inv_ability_sunfurymage_spellfirespheres", "index": 100}], "freeNode": true}, {"id": 94653, "name": "Mana Cascade", "type": "single", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94649], "prev": [94647], "entries": [{"id": 117256, "definitionId": 122268, "maxRanks": 1, "type": "passive", "name": "Mana Cascade", "spellId": 449293, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 94652, "name": "Invocation: Arcane Phoenix", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [94651], "prev": [94647], "entries": [{"id": 117255, "definitionId": 122267, "maxRanks": 1, "type": "passive", "name": "Invocation: Arcane Phoenix", "spellId": 448658, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 94644, "name": "Burden of Power", "type": "single", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94645], "prev": [94647], "entries": [{"id": 117247, "definitionId": 122259, "maxRanks": 1, "type": "passive", "name": "Burden of Power", "spellId": 451035, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 94649, "name": "Merely a Setback", "type": "single", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94650], "prev": [94653], "entries": [{"id": 117252, "definitionId": 122264, "maxRanks": 1, "type": "passive", "name": "Merely a Setback", "spellId": 449330, "icon": "inv_helm_robe_raidmage_i_01", "index": 100}]}, {"id": 94651, "name": "Lessons in Debilitation / Gravity Lapse", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94643], "prev": [94652], "entries": [{"id": 117254, "definitionId": 122266, "maxRanks": 1, "type": "passive", "name": "Lessons in Debilitation", "spellId": 449627, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 123832, "definitionId": 128670, "maxRanks": 1, "type": "passive", "name": "Gravity Lapse", "spellId": 458513, "icon": "inv_cosmicvoid_wave", "index": 200}]}, {"id": 94645, "name": "Glorious Incandescence", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94648], "prev": [94644], "entries": [{"id": 117248, "definitionId": 122260, "maxRanks": 1, "type": "passive", "name": "Glorious Incandescence", "spellId": 449394, "icon": "spell_burningsoul", "index": 100}]}, {"id": 94650, "name": "Savor the Moment / Sunfury Execution", "type": "choice", "posX": 7200, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94649], "entries": [{"id": 117253, "definitionId": 122265, "maxRanks": 1, "type": "passive", "name": "Savor the Moment", "spellId": 449412, "icon": "spell_fire_masterofelements", "index": 100}, {"id": 123867, "definitionId": 128705, "maxRanks": 1, "type": "passive", "name": "Sunfury Execution", "spellId": 449349, "icon": "spell_shadow_shadowandflame", "index": 200}]}, {"id": 94643, "name": "Codex of the Sunstriders", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "requiresNode": 102449, "next": [94646], "prev": [94651], "entries": [{"id": 117246, "definitionId": 122258, "maxRanks": 1, "type": "passive", "name": "Codex of the Sunstriders", "spellId": 449382, "icon": "inv_10_inscription2_book3_color1", "index": 100}]}, {"id": 94648, "name": "Rondurmancy / Ignite the Future", "type": "choice", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94645], "entries": [{"id": 117251, "definitionId": 122263, "maxRanks": 1, "type": "passive", "name": "Rondurmancy", "spellId": 449596, "icon": "spell_arcane_focusedpower", "index": 100}, {"id": 123833, "definitionId": 128671, "maxRanks": 1, "type": "passive", "name": "Ignite the Future", "spellId": 449558, "icon": "inv_misc_matchbook", "index": 200}]}, {"id": 94646, "name": "Memory of Al'ar", "type": "single", "posX": 7800, "posY": 7500, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [], "prev": [94643, 94650, 94648], "entries": [{"id": 117249, "definitionId": 122261, "maxRanks": 1, "type": "passive", "name": "Memory of Al'ar", "spellId": 449619, "icon": "inv_misc_summerfest_brazierorange", "index": 100}]}], "subTreeNodes": [{"id": 99830, "name": "Spellslinger / Sunfury", "type": "subtree", "posX": 6900, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123344, "type": "subtree", "name": "Spellslinger", "traitSubTreeId": 40, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-spellslinger", "nodes": [94664, 94662, 94663, 94661, 94659, 94660, 94658, 94657, 94656, 94655, 94654]}, {"id": 123341, "type": "subtree", "name": "Sunfury", "traitSubTreeId": 39, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-sunfury", "nodes": [94647, 94653, 94652, 94644, 94649, 94651, 94645, 94650, 94643, 94648, 94646]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/mage_fire.json b/simc_support/game_data/data_files/trees/mage_fire.json index b7ac0b8..e8a1313 100644 --- a/simc_support/game_data/data_files/trees/mage_fire.json +++ b/simc_support/game_data/data_files/trees/mage_fire.json @@ -1 +1 @@ -{"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Fire", "specId": 63, "classNodes": [{"id": 62119, "name": "Blazing Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80178, "definitionId": 85181, "maxRanks": 1, "type": "active", "name": "Blazing Barrier", "spellId": 235313, "icon": "ability_mage_moltenarmor", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62119], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62119], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62119], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "ability_ardenweald_mage", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring-of-frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 100998, "name": "Pyroblast", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [100989, 102014, 101012], "prev": [], "entries": [{"id": 124759, "definitionId": 129597, "maxRanks": 1, "type": "active", "name": "Pyroblast", "spellId": 11366, "icon": "spell_fire_fireball02", "index": 100}]}, {"id": 100989, "name": "Fire Blast", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [100997, 101027], "prev": [100998], "entries": [{"id": 124750, "definitionId": 129588, "maxRanks": 1, "type": "active", "name": "Fire Blast", "spellId": 108853, "icon": "spell_fire_fireball", "index": 100}]}, {"id": 102014, "name": "Firestarter", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [100998], "entries": [{"id": 126025, "definitionId": 130856, "maxRanks": 1, "type": "passive", "name": "Firestarter", "spellId": 205026, "icon": "spell_fire_fire", "index": 100}]}, {"id": 101012, "name": "Phoenix Flames", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [100991, 101008], "prev": [100998], "entries": [{"id": 124775, "definitionId": 129613, "maxRanks": 1, "type": "active", "name": "Phoenix Flames", "spellId": 257541, "icon": "artifactability_firemage_phoenixbolt", "index": 100}]}, {"id": 100997, "name": "Pyrotechnics", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [100987], "prev": [100989], "entries": [{"id": 124758, "definitionId": 129596, "maxRanks": 1, "type": "passive", "name": "Pyrotechnics", "spellId": 157642, "icon": "spell_fire_flamebolt", "index": 100}]}, {"id": 101027, "name": "Fervent Flickering", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [100987, 101023], "prev": [100989], "entries": [{"id": 124793, "definitionId": 129631, "maxRanks": 1, "type": "passive", "name": "Fervent Flickering", "spellId": 387044, "icon": "ability_warlock_burningembers", "index": 100}]}, {"id": 100991, "name": "Call of the Sun King", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [101023, 100994], "prev": [101012], "entries": [{"id": 124752, "definitionId": 129590, "maxRanks": 1, "type": "passive", "name": "Call of the Sun King", "spellId": 343222, "icon": "artifactability_firemage_phoenixbolt", "index": 100}]}, {"id": 101008, "name": "Majesty of the Phoenix", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [100994], "prev": [101012], "entries": [{"id": 124770, "definitionId": 129608, "maxRanks": 1, "type": "passive", "name": "Majesty of the Phoenix", "spellId": 451440, "icon": "ability_mount_pandarenphoenix_yellow", "index": 100}]}, {"id": 100987, "name": "Scorch", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [101011, 102010, 101009], "prev": [100997, 101027], "entries": [{"id": 124748, "definitionId": 129586, "maxRanks": 1, "type": "active", "name": "Scorch", "spellId": 2948, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 101023, "name": "Surging Blaze", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [101009, 102012, 101029], "prev": [100991, 101027], "entries": [{"id": 126024, "definitionId": 130855, "maxRanks": 1, "type": "passive", "name": "Surging Blaze", "spellId": 343230, "icon": "spell_fire_selfdestruct", "index": 200}]}, {"id": 100994, "name": "Lit Fuse", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [101029, 102011, 101013], "prev": [101008, 100991], "entries": [{"id": 124755, "definitionId": 129593, "maxRanks": 1, "type": "passive", "name": "Lit Fuse", "spellId": 450716, "icon": "ability_mage_livingbomb", "index": 100}]}, {"id": 101011, "name": "Improved Scorch / Scald", "type": "choice", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102013, 101945], "prev": [100987], "entries": [{"id": 124774, "definitionId": 129612, "maxRanks": 1, "type": "passive", "name": "Improved Scorch", "spellId": 383604, "icon": "ability_mage_fierypayback", "index": 100}, {"id": 124773, "definitionId": 129611, "maxRanks": 1, "type": "passive", "name": "Scald", "spellId": 450746, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 102010, "name": "Heat Shimmer", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101945], "prev": [100987], "entries": [{"id": 126019, "definitionId": 130850, "maxRanks": 1, "type": "passive", "name": "Heat Shimmer", "spellId": 457735, "icon": "ability_rhyolith_magmaflow_wave", "index": 200}]}, {"id": 101009, "name": "Flame On", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101945, 101017, 100995], "prev": [100987, 101023], "entries": [{"id": 124771, "definitionId": 129609, "maxRanks": 1, "type": "passive", "name": "Flame On", "spellId": 205029, "icon": "inv_helm_circlet_firelands_d_01", "index": 100}]}, {"id": 102012, "name": "Flame Accelerant", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100995], "prev": [101023], "entries": [{"id": 126021, "definitionId": 130852, "maxRanks": 1, "type": "passive", "name": "Flame Accelerant", "spellId": 453282, "icon": "inv_ember", "index": 100}]}, {"id": 101029, "name": "Critical Mass", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100995, 101002, 101021], "prev": [100994, 101023], "entries": [{"id": 124795, "definitionId": 129633, "maxRanks": 1, "type": "passive", "name": "Critical Mass", "spellId": 117216, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 102011, "name": "Sparking Cinders", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101021], "prev": [100994], "entries": [{"id": 126020, "definitionId": 130851, "maxRanks": 1, "type": "passive", "name": "Sparking Cinders", "spellId": 457728, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 101013, "name": "Explosive Ingenuity", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101021, 100992], "prev": [100994], "entries": [{"id": 124776, "definitionId": 129614, "maxRanks": 1, "type": "passive", "name": "Explosive Ingenuity", "spellId": 451760, "icon": "achievement_dungeon_ignitionmagevalyri", "index": 200}]}, {"id": 102013, "name": "Inflame", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101006], "prev": [101011], "entries": [{"id": 126022, "definitionId": 130853, "maxRanks": 1, "type": "passive", "name": "Inflame", "spellId": 417467, "icon": "spell_fire_ragnaros_lavabolt", "index": 200}]}, {"id": 101945, "name": "Ashen Feather / Alexstrasza's Fury", "type": "choice", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101006, 101001, 101019], "prev": [101009, 101011, 102010], "entries": [{"id": 125944, "definitionId": 130775, "maxRanks": 1, "type": "passive", "name": "Ashen Feather", "spellId": 450813, "icon": "inv_icon_feather06a", "index": 100}, {"id": 126023, "definitionId": 130854, "maxRanks": 1, "type": "passive", "name": "Alexstrasza's Fury", "spellId": 235870, "icon": "spell_warrior_dragoncharge", "index": 200}]}, {"id": 101017, "name": "Intensifying Flame", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101001], "prev": [101009], "entries": [{"id": 124780, "definitionId": 129618, "maxRanks": 1, "type": "passive", "name": "Intensifying Flame", "spellId": 416714, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 100995, "name": "Combustion", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101001, 101007, 101014], "prev": [101029, 101009, 102012], "entries": [{"id": 124756, "definitionId": 129594, "maxRanks": 1, "type": "active", "name": "Combustion", "spellId": 190319, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 101002, "name": "Controlled Destruction", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101014], "prev": [101029], "entries": [{"id": 124763, "definitionId": 129601, "maxRanks": 1, "type": "passive", "name": "Controlled Destruction", "spellId": 383669, "icon": "spell_fire_playingwithfire", "index": 100}]}, {"id": 101021, "name": "Flame Patch / Quickflame", "type": "choice", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101014, 100988, 101004], "prev": [101013, 101029, 102011], "entries": [{"id": 124786, "definitionId": 129624, "maxRanks": 1, "type": "passive", "name": "Flame Patch", "spellId": 205037, "icon": "spell_mage_flameorb", "index": 100}, {"id": 126018, "definitionId": 130849, "maxRanks": 1, "type": "passive", "name": "Quickflame", "spellId": 450807, "icon": "ability_creature_cursed_01", "index": 200}]}, {"id": 100992, "name": "Convection", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100988], "prev": [101013], "entries": [{"id": 124753, "definitionId": 129591, "maxRanks": 1, "type": "passive", "name": "Convection", "spellId": 416715, "icon": "spell_fire_lavaspawn", "index": 100}]}, {"id": 101006, "name": "Master of Flame", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101019], "prev": [101945, 102013], "entries": [{"id": 124767, "definitionId": 129605, "maxRanks": 1, "type": "passive", "name": "Master of Flame", "spellId": 384174, "icon": "inv_trinket_firelands_02", "index": 200}]}, {"id": 101001, "name": "Wildfire", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101019], "prev": [100995, 101017, 101945], "entries": [{"id": 125942, "definitionId": 130773, "maxRanks": 1, "type": "passive", "name": "Wildfire", "spellId": 383489, "icon": "ability_warlock_inferno", "index": 200}]}, {"id": 101007, "name": "Improved Combustion / Spontaneous Combustion", "type": "choice", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101024], "prev": [100995], "entries": [{"id": 124769, "definitionId": 129607, "maxRanks": 1, "type": "passive", "name": "Improved Combustion", "spellId": 383967, "icon": "spell_fire_sealoffire", "index": 100}, {"id": 124768, "definitionId": 129606, "maxRanks": 1, "type": "passive", "name": "Spontaneous Combustion", "spellId": 451875, "icon": "ability_mage_worldinflames", "index": 200}]}, {"id": 101014, "name": "Feel the Burn", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101004], "prev": [101021, 100995, 101002], "entries": [{"id": 124777, "definitionId": 129615, "maxRanks": 1, "type": "passive", "name": "Feel the Burn", "spellId": 383391, "icon": "spell_fire_fireball", "index": 100}]}, {"id": 100988, "name": "Mark of the Firelord", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101004], "prev": [101021, 100992], "entries": [{"id": 124749, "definitionId": 129587, "maxRanks": 1, "type": "passive", "name": "Mark of the Firelord", "spellId": 450325, "icon": "achievement_firelands_raid_ragnaros", "index": 200}]}, {"id": 101019, "name": "Fevered Incantation", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101020, 101015, 100999], "prev": [101006, 101001, 101945], "entries": [{"id": 124783, "definitionId": 129621, "maxRanks": 2, "type": "passive", "name": "Fevered Incantation", "spellId": 383810, "icon": "inv_misc_enchantedpearld", "index": 100}]}, {"id": 101024, "name": "Kindling", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [100999, 101003, 101016], "prev": [101007], "entries": [{"id": 124789, "definitionId": 129627, "maxRanks": 1, "type": "passive", "name": "Kindling", "spellId": 155148, "icon": "spell_mage_kindling", "index": 100}]}, {"id": 101004, "name": "Fire's Ire", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101016, 100996, 100993], "prev": [101014, 100988, 101021], "entries": [{"id": 124765, "definitionId": 129603, "maxRanks": 2, "type": "passive", "name": "Fire's Ire", "spellId": 450831, "icon": "achievement_boss_lordanthricyst", "index": 100}]}, {"id": 101020, "name": "Pyromaniac", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101942], "prev": [101019], "entries": [{"id": 124784, "definitionId": 129622, "maxRanks": 1, "type": "passive", "name": "Pyromaniac", "spellId": 451466, "icon": "inv_misc_volatilefire", "index": 200}]}, {"id": 101015, "name": "Molten Fury", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101019], "entries": [{"id": 124778, "definitionId": 129616, "maxRanks": 1, "type": "passive", "name": "Molten Fury", "spellId": 457803, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 100999, "name": "From the Ashes", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101943], "prev": [101019, 101024], "entries": [{"id": 124760, "definitionId": 129598, "maxRanks": 1, "type": "passive", "name": "From the Ashes", "spellId": 342344, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 101003, "name": "Fiery Rush", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101025], "prev": [101024], "entries": [{"id": 124764, "definitionId": 129602, "maxRanks": 1, "type": "passive", "name": "Fiery Rush", "spellId": 383634, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 101016, "name": "Meteor", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101000], "prev": [101004, 101024], "entries": [{"id": 124779, "definitionId": 129617, "maxRanks": 1, "type": "active", "name": "Meteor", "spellId": 153561, "icon": "spell_mage_meteor", "index": 100}]}, {"id": 100996, "name": "Firefall", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101004], "entries": [{"id": 124757, "definitionId": 129595, "maxRanks": 1, "type": "passive", "name": "Firefall", "spellId": 384033, "icon": "ability_ironmaidens_rapidfire", "index": 100}]}, {"id": 100993, "name": "Explosivo", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101022], "prev": [101004], "entries": [{"id": 124754, "definitionId": 129592, "maxRanks": 1, "type": "passive", "name": "Explosivo", "spellId": 451757, "icon": "spell_sandexplosion", "index": 100}]}, {"id": 101942, "name": "Hyperthermia", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101020], "entries": [{"id": 125940, "definitionId": 130771, "maxRanks": 1, "type": "passive", "name": "Hyperthermia", "spellId": 383860, "icon": "spell_fire_burnout", "index": 200}]}, {"id": 101943, "name": "Phoenix Reborn", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [100999], "entries": [{"id": 125941, "definitionId": 130772, "maxRanks": 1, "type": "passive", "name": "Phoenix Reborn", "spellId": 453123, "icon": "inv_sword_1h_artifactfelomelorn_d_01", "index": 100}]}, {"id": 101025, "name": "Sun King's Blessing / Unleashed Inferno", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101003], "entries": [{"id": 124791, "definitionId": 129629, "maxRanks": 1, "type": "passive", "name": "Sun King's Blessing", "spellId": 383886, "icon": "ability_mage_firestarter", "index": 100}, {"id": 124790, "definitionId": 129628, "maxRanks": 1, "type": "passive", "name": "Unleashed Inferno", "spellId": 416506, "icon": "spell_fire_felflamering_red", "index": 200}]}, {"id": 101000, "name": "Deep Impact", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101016], "entries": [{"id": 124761, "definitionId": 129599, "maxRanks": 1, "type": "passive", "name": "Deep Impact", "spellId": 416719, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 101022, "name": "Blast Zone", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [100993], "entries": [{"id": 124787, "definitionId": 129625, "maxRanks": 1, "type": "passive", "name": "Blast Zone", "spellId": 451755, "icon": "spell_fire_elementaldevastation", "index": 100}]}], "heroNodes": [{"id": 94636, "name": "Frostfire Mastery", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 41, "next": [94642, 94641, 94633], "prev": [], "entries": [{"id": 117239, "definitionId": 122251, "maxRanks": 1, "type": "passive", "name": "Frostfire Mastery", "spellId": 431038, "icon": "spell_frostresistancetotem_01", "index": 100}], "freeNode": true}, {"id": 94642, "name": "Imbued Warding / Meltdown", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94638], "prev": [94636], "entries": [{"id": 117245, "definitionId": 122257, "maxRanks": 1, "type": "passive", "name": "Imbued Warding", "spellId": 431066, "icon": "inv_10_jewelcrafting_gem3primal_fire_cut_blue", "index": 100}, {"id": 117776, "definitionId": 122788, "maxRanks": 1, "type": "passive", "name": "Meltdown", "spellId": 431131, "icon": "spell_frost_arcticwinds", "index": 200}]}, {"id": 94641, "name": "Frostfire Bolt", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94640], "prev": [94636], "entries": [{"id": 117244, "definitionId": 122256, "maxRanks": 1, "type": "active", "name": "Frostfire Bolt", "spellId": 431044, "icon": "inv_ability_frostfiremage_frostfirebolt", "index": 100}]}, {"id": 94633, "name": "Elemental Affinity / Flame and Frost", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94634], "prev": [94636], "entries": [{"id": 117236, "definitionId": 122248, "maxRanks": 1, "type": "passive", "name": "Elemental Affinity", "spellId": 431067, "icon": "inv_10_dungeonjewelry_dragon_trinket_5_red", "index": 100}, {"id": 117775, "definitionId": 122787, "maxRanks": 1, "type": "passive", "name": "Flame and Frost", "spellId": 431112, "icon": "spell_firefrost_orb", "index": 200}]}, {"id": 94638, "name": "Isothermic Core", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "requiresNode": 101016, "next": [94639], "prev": [94642], "entries": [{"id": 117241, "definitionId": 122253, "maxRanks": 1, "type": "passive", "name": "Isothermic Core", "spellId": 431095, "icon": "inv_10_jewelcrafting_gem2standard_fire_cut_blue", "index": 100}]}, {"id": 94640, "name": "Severe Temperatures / Thermal Conditioning", "type": "choice", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94632], "prev": [94641], "entries": [{"id": 117243, "definitionId": 122255, "maxRanks": 1, "type": "passive", "name": "Severe Temperatures", "spellId": 431189, "icon": "inv_magemount_fire", "index": 100}, {"id": 117774, "definitionId": 122786, "maxRanks": 1, "type": "passive", "name": "Thermal Conditioning", "spellId": 431117, "icon": "spell_fireresistancetotem_01", "index": 200}]}, {"id": 94634, "name": "Frostfire Infusion", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94637], "prev": [94633], "entries": [{"id": 117237, "definitionId": 122249, "maxRanks": 1, "type": "passive", "name": "Frostfire Infusion", "spellId": 431166, "icon": "inv_10_blacksmithing_craftedbar_frostfirealloy", "index": 100}]}, {"id": 94639, "name": "Excess Frost", "type": "single", "posX": 14700, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94638], "entries": [{"id": 117242, "definitionId": 122254, "maxRanks": 1, "type": "passive", "name": "Excess Frost", "spellId": 438600, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 94632, "name": "Frostfire Empowerment", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94640], "entries": [{"id": 117235, "definitionId": 122247, "maxRanks": 1, "type": "passive", "name": "Frostfire Empowerment", "spellId": 431176, "icon": "spell_frostfire_orb", "index": 100}]}, {"id": 94637, "name": "Excess Fire", "type": "single", "posX": 15900, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94634], "entries": [{"id": 117240, "definitionId": 122252, "maxRanks": 1, "type": "passive", "name": "Excess Fire", "spellId": 438595, "icon": "ability_mage_fierypayback", "index": 100}]}, {"id": 94635, "name": "Flash Freezeburn", "type": "single", "posX": 15300, "posY": 4500, "maxRanks": 1, "subTreeId": 41, "next": [], "prev": [94632, 94639, 94637], "entries": [{"id": 117238, "definitionId": 122250, "maxRanks": 1, "type": "passive", "name": "Flash Freezeburn", "spellId": 431178, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 94647, "name": "Spellfire Spheres", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "entryNode": true, "subTreeId": 39, "next": [94653, 94652, 94644], "prev": [], "entries": [{"id": 117250, "definitionId": 122262, "maxRanks": 1, "type": "passive", "name": "Spellfire Spheres", "spellId": 448601, "icon": "inv_ability_sunfurymage_spellfirespheres", "index": 100}], "freeNode": true}, {"id": 94653, "name": "Mana Cascade", "type": "single", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94649], "prev": [94647], "entries": [{"id": 117256, "definitionId": 122268, "maxRanks": 1, "type": "passive", "name": "Mana Cascade", "spellId": 449293, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 94652, "name": "Invocation: Arcane Phoenix", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [94651], "prev": [94647], "entries": [{"id": 117255, "definitionId": 122267, "maxRanks": 1, "type": "passive", "name": "Invocation: Arcane Phoenix", "spellId": 448658, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 94644, "name": "Burden of Power", "type": "single", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94645], "prev": [94647], "entries": [{"id": 117247, "definitionId": 122259, "maxRanks": 1, "type": "passive", "name": "Burden of Power", "spellId": 451035, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 94649, "name": "Merely a Setback", "type": "single", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94650], "prev": [94653], "entries": [{"id": 117252, "definitionId": 122264, "maxRanks": 1, "type": "passive", "name": "Merely a Setback", "spellId": 449330, "icon": "inv_helm_robe_raidmage_i_01", "index": 100}]}, {"id": 94651, "name": "Lessons in Debilitation / Gravity Lapse", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94643], "prev": [94652], "entries": [{"id": 117254, "definitionId": 122266, "maxRanks": 1, "type": "passive", "name": "Lessons in Debilitation", "spellId": 449627, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 123832, "definitionId": 128670, "maxRanks": 1, "type": "passive", "name": "Gravity Lapse", "spellId": 458513, "icon": "inv_cosmicvoid_wave", "index": 200}]}, {"id": 94645, "name": "Glorious Incandescence", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94648], "prev": [94644], "entries": [{"id": 117248, "definitionId": 122260, "maxRanks": 1, "type": "passive", "name": "Glorious Incandescence", "spellId": 449394, "icon": "spell_burningsoul", "index": 100}]}, {"id": 94650, "name": "Savor the Moment / Sunfury Execution", "type": "choice", "posX": 7200, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94649], "entries": [{"id": 117253, "definitionId": 122265, "maxRanks": 1, "type": "passive", "name": "Savor the Moment", "spellId": 449412, "icon": "spell_fire_masterofelements", "index": 100}, {"id": 123867, "definitionId": 128705, "maxRanks": 1, "type": "passive", "name": "Sunfury Execution", "spellId": 449349, "icon": "spell_shadow_shadowandflame", "index": 200}]}, {"id": 94643, "name": "Codex of the Sunstriders", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "requiresNode": 102449, "next": [94646], "prev": [94651], "entries": [{"id": 117246, "definitionId": 122258, "maxRanks": 1, "type": "passive", "name": "Codex of the Sunstriders", "spellId": 449382, "icon": "inv_10_inscription2_book3_color1", "index": 100}]}, {"id": 94648, "name": "Rondurmancy / Ignite the Future", "type": "choice", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94645], "entries": [{"id": 117251, "definitionId": 122263, "maxRanks": 1, "type": "passive", "name": "Rondurmancy", "spellId": 449596, "icon": "spell_arcane_focusedpower", "index": 100}, {"id": 123833, "definitionId": 128671, "maxRanks": 1, "type": "passive", "name": "Ignite the Future", "spellId": 449558, "icon": "inv_misc_matchbook", "index": 200}]}, {"id": 94646, "name": "Memory of Al'ar", "type": "single", "posX": 7800, "posY": 7500, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [], "prev": [94643, 94650, 94648], "entries": [{"id": 117249, "definitionId": 122261, "maxRanks": 1, "type": "passive", "name": "Memory of Al'ar", "spellId": 449619, "icon": "inv_misc_summerfest_brazierorange", "index": 100}]}], "subTreeNodes": [{"id": 99829, "name": "Frostfire / Sunfury", "type": "subtree", "posX": 7800, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123343, "type": "subtree", "name": "Frostfire", "traitSubTreeId": 41, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-frostfire", "nodes": [94636, 94642, 94641, 94633, 94638, 94640, 94634, 94639, 94632, 94637, 94635]}, {"id": 123340, "type": "subtree", "name": "Sunfury", "traitSubTreeId": 39, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-sunfury", "nodes": [94647, 94653, 94652, 94644, 94649, 94651, 94645, 94650, 94643, 94648, 94646]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]} \ No newline at end of file +{"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Fire", "specId": 63, "classNodes": [{"id": 62119, "name": "Blazing Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80178, "definitionId": 85181, "maxRanks": 1, "type": "active", "name": "Blazing Barrier", "spellId": 235313, "icon": "ability_mage_moltenarmor", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62119], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62119], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62119], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "inv_ability_mage_shiftingpower", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring-of-frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 100998, "name": "Pyroblast", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [100989, 102014, 101012], "prev": [], "entries": [{"id": 124759, "definitionId": 129597, "maxRanks": 1, "type": "active", "name": "Pyroblast", "spellId": 11366, "icon": "spell_fire_fireball02", "index": 100}]}, {"id": 100989, "name": "Fire Blast", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [100997, 101027], "prev": [100998], "entries": [{"id": 124750, "definitionId": 129588, "maxRanks": 1, "type": "active", "name": "Fire Blast", "spellId": 108853, "icon": "spell_fire_fireball", "index": 100}]}, {"id": 102014, "name": "Firestarter", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [100998], "entries": [{"id": 126025, "definitionId": 130856, "maxRanks": 1, "type": "passive", "name": "Firestarter", "spellId": 205026, "icon": "spell_fire_fire", "index": 100}]}, {"id": 101012, "name": "Phoenix Flames", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [100991, 101008], "prev": [100998], "entries": [{"id": 124775, "definitionId": 129613, "maxRanks": 1, "type": "active", "name": "Phoenix Flames", "spellId": 257541, "icon": "artifactability_firemage_phoenixbolt", "index": 100}]}, {"id": 100997, "name": "Pyrotechnics", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [100987], "prev": [100989], "entries": [{"id": 124758, "definitionId": 129596, "maxRanks": 1, "type": "passive", "name": "Pyrotechnics", "spellId": 157642, "icon": "spell_fire_flamebolt", "index": 100}]}, {"id": 101027, "name": "Fervent Flickering", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [100987, 101023], "prev": [100989], "entries": [{"id": 124793, "definitionId": 129631, "maxRanks": 1, "type": "passive", "name": "Fervent Flickering", "spellId": 387044, "icon": "ability_warlock_burningembers", "index": 100}]}, {"id": 100991, "name": "Call of the Sun King", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [101023, 100994], "prev": [101012], "entries": [{"id": 124752, "definitionId": 129590, "maxRanks": 1, "type": "passive", "name": "Call of the Sun King", "spellId": 343222, "icon": "artifactability_firemage_phoenixbolt", "index": 100}]}, {"id": 101008, "name": "Majesty of the Phoenix", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [100994], "prev": [101012], "entries": [{"id": 124770, "definitionId": 129608, "maxRanks": 1, "type": "passive", "name": "Majesty of the Phoenix", "spellId": 451440, "icon": "ability_mount_pandarenphoenix_yellow", "index": 100}]}, {"id": 100987, "name": "Scorch", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [101011, 102010, 101009], "prev": [100997, 101027], "entries": [{"id": 124748, "definitionId": 129586, "maxRanks": 1, "type": "active", "name": "Scorch", "spellId": 2948, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 101023, "name": "Surging Blaze", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [101009, 102012, 101029], "prev": [100991, 101027], "entries": [{"id": 126024, "definitionId": 130855, "maxRanks": 1, "type": "passive", "name": "Surging Blaze", "spellId": 343230, "icon": "spell_fire_selfdestruct", "index": 200}]}, {"id": 100994, "name": "Lit Fuse", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [101029, 102011, 101013], "prev": [101008, 100991], "entries": [{"id": 124755, "definitionId": 129593, "maxRanks": 1, "type": "passive", "name": "Lit Fuse", "spellId": 450716, "icon": "ability_mage_livingbomb", "index": 100}]}, {"id": 101011, "name": "Improved Scorch / Scald", "type": "choice", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102013, 101945], "prev": [100987], "entries": [{"id": 124774, "definitionId": 129612, "maxRanks": 1, "type": "passive", "name": "Improved Scorch", "spellId": 383604, "icon": "ability_mage_fierypayback", "index": 100}, {"id": 124773, "definitionId": 129611, "maxRanks": 1, "type": "passive", "name": "Scald", "spellId": 450746, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 102010, "name": "Heat Shimmer", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101945], "prev": [100987], "entries": [{"id": 126019, "definitionId": 130850, "maxRanks": 1, "type": "passive", "name": "Heat Shimmer", "spellId": 457735, "icon": "ability_rhyolith_magmaflow_wave", "index": 200}]}, {"id": 101009, "name": "Flame On", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101945, 101017, 100995], "prev": [100987, 101023], "entries": [{"id": 124771, "definitionId": 129609, "maxRanks": 1, "type": "passive", "name": "Flame On", "spellId": 205029, "icon": "inv_helm_circlet_firelands_d_01", "index": 100}]}, {"id": 102012, "name": "Flame Accelerant", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100995], "prev": [101023], "entries": [{"id": 126021, "definitionId": 130852, "maxRanks": 1, "type": "passive", "name": "Flame Accelerant", "spellId": 453282, "icon": "inv_ember", "index": 100}]}, {"id": 101029, "name": "Critical Mass", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100995, 101002, 101021], "prev": [100994, 101023], "entries": [{"id": 124795, "definitionId": 129633, "maxRanks": 1, "type": "passive", "name": "Critical Mass", "spellId": 117216, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 102011, "name": "Sparking Cinders", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101021], "prev": [100994], "entries": [{"id": 126020, "definitionId": 130851, "maxRanks": 1, "type": "passive", "name": "Sparking Cinders", "spellId": 457728, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 101013, "name": "Explosive Ingenuity", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101021, 100992], "prev": [100994], "entries": [{"id": 124776, "definitionId": 129614, "maxRanks": 1, "type": "passive", "name": "Explosive Ingenuity", "spellId": 451760, "icon": "achievement_dungeon_ignitionmagevalyri", "index": 200}]}, {"id": 102013, "name": "Inflame", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101006], "prev": [101011], "entries": [{"id": 126022, "definitionId": 130853, "maxRanks": 1, "type": "passive", "name": "Inflame", "spellId": 417467, "icon": "spell_fire_ragnaros_lavabolt", "index": 200}]}, {"id": 101945, "name": "Ashen Feather / Alexstrasza's Fury", "type": "choice", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101006, 101001, 101019], "prev": [101009, 101011, 102010], "entries": [{"id": 125944, "definitionId": 130775, "maxRanks": 1, "type": "passive", "name": "Ashen Feather", "spellId": 450813, "icon": "inv_icon_feather06a", "index": 100}, {"id": 126023, "definitionId": 130854, "maxRanks": 1, "type": "passive", "name": "Alexstrasza's Fury", "spellId": 235870, "icon": "spell_warrior_dragoncharge", "index": 200}]}, {"id": 101017, "name": "Intensifying Flame", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101001], "prev": [101009], "entries": [{"id": 124780, "definitionId": 129618, "maxRanks": 1, "type": "passive", "name": "Intensifying Flame", "spellId": 416714, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 100995, "name": "Combustion", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101001, 101007, 101014], "prev": [101029, 101009, 102012], "entries": [{"id": 124756, "definitionId": 129594, "maxRanks": 1, "type": "active", "name": "Combustion", "spellId": 190319, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 101002, "name": "Controlled Destruction", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101014], "prev": [101029], "entries": [{"id": 124763, "definitionId": 129601, "maxRanks": 1, "type": "passive", "name": "Controlled Destruction", "spellId": 383669, "icon": "spell_fire_playingwithfire", "index": 100}]}, {"id": 101021, "name": "Flame Patch / Quickflame", "type": "choice", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101014, 100988, 101004], "prev": [101013, 101029, 102011], "entries": [{"id": 124786, "definitionId": 129624, "maxRanks": 1, "type": "passive", "name": "Flame Patch", "spellId": 205037, "icon": "spell_mage_flameorb", "index": 100}, {"id": 126018, "definitionId": 130849, "maxRanks": 1, "type": "passive", "name": "Quickflame", "spellId": 450807, "icon": "ability_creature_cursed_01", "index": 200}]}, {"id": 100992, "name": "Convection", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100988], "prev": [101013], "entries": [{"id": 124753, "definitionId": 129591, "maxRanks": 1, "type": "passive", "name": "Convection", "spellId": 416715, "icon": "spell_fire_lavaspawn", "index": 100}]}, {"id": 101006, "name": "Master of Flame", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101019], "prev": [101945, 102013], "entries": [{"id": 124767, "definitionId": 129605, "maxRanks": 1, "type": "passive", "name": "Master of Flame", "spellId": 384174, "icon": "inv_trinket_firelands_02", "index": 200}]}, {"id": 101001, "name": "Wildfire", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101019], "prev": [100995, 101017, 101945], "entries": [{"id": 125942, "definitionId": 130773, "maxRanks": 1, "type": "passive", "name": "Wildfire", "spellId": 383489, "icon": "ability_warlock_inferno", "index": 200}]}, {"id": 101007, "name": "Improved Combustion / Spontaneous Combustion", "type": "choice", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101024], "prev": [100995], "entries": [{"id": 124769, "definitionId": 129607, "maxRanks": 1, "type": "passive", "name": "Improved Combustion", "spellId": 383967, "icon": "spell_fire_sealoffire", "index": 100}, {"id": 124768, "definitionId": 129606, "maxRanks": 1, "type": "passive", "name": "Spontaneous Combustion", "spellId": 451875, "icon": "ability_mage_worldinflames", "index": 200}]}, {"id": 101014, "name": "Feel the Burn", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101004], "prev": [101021, 100995, 101002], "entries": [{"id": 124777, "definitionId": 129615, "maxRanks": 1, "type": "passive", "name": "Feel the Burn", "spellId": 383391, "icon": "spell_fire_fireball", "index": 100}]}, {"id": 100988, "name": "Mark of the Firelord", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101004], "prev": [101021, 100992], "entries": [{"id": 124749, "definitionId": 129587, "maxRanks": 1, "type": "passive", "name": "Mark of the Firelord", "spellId": 450325, "icon": "achievement_firelands_raid_ragnaros", "index": 200}]}, {"id": 101019, "name": "Fevered Incantation", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101020, 101015, 100999], "prev": [101006, 101001, 101945], "entries": [{"id": 124783, "definitionId": 129621, "maxRanks": 2, "type": "passive", "name": "Fevered Incantation", "spellId": 383810, "icon": "inv_misc_enchantedpearld", "index": 100}]}, {"id": 101024, "name": "Kindling", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [100999, 101003, 101016], "prev": [101007], "entries": [{"id": 124789, "definitionId": 129627, "maxRanks": 1, "type": "passive", "name": "Kindling", "spellId": 155148, "icon": "spell_mage_kindling", "index": 100}]}, {"id": 101004, "name": "Fire's Ire", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101016, 100996, 100993], "prev": [101014, 100988, 101021], "entries": [{"id": 124765, "definitionId": 129603, "maxRanks": 2, "type": "passive", "name": "Fire's Ire", "spellId": 450831, "icon": "achievement_boss_lordanthricyst", "index": 100}]}, {"id": 101020, "name": "Pyromaniac", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101942], "prev": [101019], "entries": [{"id": 124784, "definitionId": 129622, "maxRanks": 1, "type": "passive", "name": "Pyromaniac", "spellId": 451466, "icon": "inv_misc_volatilefire", "index": 200}]}, {"id": 101015, "name": "Molten Fury", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101019], "entries": [{"id": 124778, "definitionId": 129616, "maxRanks": 1, "type": "passive", "name": "Molten Fury", "spellId": 457803, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 100999, "name": "From the Ashes", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101943], "prev": [101019, 101024], "entries": [{"id": 124760, "definitionId": 129598, "maxRanks": 1, "type": "passive", "name": "From the Ashes", "spellId": 342344, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 101003, "name": "Fiery Rush", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101025], "prev": [101024], "entries": [{"id": 124764, "definitionId": 129602, "maxRanks": 1, "type": "passive", "name": "Fiery Rush", "spellId": 383634, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 101016, "name": "Meteor", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101000], "prev": [101004, 101024], "entries": [{"id": 124779, "definitionId": 129617, "maxRanks": 1, "type": "active", "name": "Meteor", "spellId": 153561, "icon": "spell_mage_meteor", "index": 100}]}, {"id": 100996, "name": "Firefall", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101004], "entries": [{"id": 124757, "definitionId": 129595, "maxRanks": 1, "type": "passive", "name": "Firefall", "spellId": 384033, "icon": "ability_ironmaidens_rapidfire", "index": 100}]}, {"id": 100993, "name": "Explosivo", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101022], "prev": [101004], "entries": [{"id": 124754, "definitionId": 129592, "maxRanks": 1, "type": "passive", "name": "Explosivo", "spellId": 451757, "icon": "spell_sandexplosion", "index": 100}]}, {"id": 101942, "name": "Hyperthermia", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101020], "entries": [{"id": 125940, "definitionId": 130771, "maxRanks": 1, "type": "passive", "name": "Hyperthermia", "spellId": 383860, "icon": "spell_fire_burnout", "index": 200}]}, {"id": 101943, "name": "Phoenix Reborn", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [100999], "entries": [{"id": 125941, "definitionId": 130772, "maxRanks": 1, "type": "passive", "name": "Phoenix Reborn", "spellId": 453123, "icon": "inv_sword_1h_artifactfelomelorn_d_01", "index": 100}]}, {"id": 101025, "name": "Sun King's Blessing / Unleashed Inferno", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101003], "entries": [{"id": 124791, "definitionId": 129629, "maxRanks": 1, "type": "passive", "name": "Sun King's Blessing", "spellId": 383886, "icon": "ability_mage_firestarter", "index": 100}, {"id": 124790, "definitionId": 129628, "maxRanks": 1, "type": "passive", "name": "Unleashed Inferno", "spellId": 416506, "icon": "spell_fire_felflamering_red", "index": 200}]}, {"id": 101000, "name": "Deep Impact", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101016], "entries": [{"id": 124761, "definitionId": 129599, "maxRanks": 1, "type": "passive", "name": "Deep Impact", "spellId": 416719, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 101022, "name": "Blast Zone", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [100993], "entries": [{"id": 124787, "definitionId": 129625, "maxRanks": 1, "type": "passive", "name": "Blast Zone", "spellId": 451755, "icon": "spell_fire_elementaldevastation", "index": 100}]}], "heroNodes": [{"id": 94636, "name": "Frostfire Mastery", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 41, "next": [94642, 94641, 94633], "prev": [], "entries": [{"id": 117239, "definitionId": 122251, "maxRanks": 1, "type": "passive", "name": "Frostfire Mastery", "spellId": 431038, "icon": "spell_frostresistancetotem_01", "index": 100}], "freeNode": true}, {"id": 94642, "name": "Imbued Warding / Meltdown", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94638], "prev": [94636], "entries": [{"id": 117245, "definitionId": 122257, "maxRanks": 1, "type": "passive", "name": "Imbued Warding", "spellId": 431066, "icon": "inv_10_jewelcrafting_gem3primal_fire_cut_blue", "index": 100}, {"id": 117776, "definitionId": 122788, "maxRanks": 1, "type": "passive", "name": "Meltdown", "spellId": 431131, "icon": "spell_frost_arcticwinds", "index": 200}]}, {"id": 94641, "name": "Frostfire Bolt", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94640], "prev": [94636], "entries": [{"id": 117244, "definitionId": 122256, "maxRanks": 1, "type": "active", "name": "Frostfire Bolt", "spellId": 431044, "icon": "inv_ability_frostfiremage_frostfirebolt", "index": 100}]}, {"id": 94633, "name": "Elemental Affinity / Flame and Frost", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94634], "prev": [94636], "entries": [{"id": 117236, "definitionId": 122248, "maxRanks": 1, "type": "passive", "name": "Elemental Affinity", "spellId": 431067, "icon": "inv_10_dungeonjewelry_dragon_trinket_5_red", "index": 100}, {"id": 117775, "definitionId": 122787, "maxRanks": 1, "type": "passive", "name": "Flame and Frost", "spellId": 431112, "icon": "spell_firefrost_orb", "index": 200}]}, {"id": 94638, "name": "Isothermic Core", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "requiresNode": 101016, "next": [94639], "prev": [94642], "entries": [{"id": 117241, "definitionId": 122253, "maxRanks": 1, "type": "passive", "name": "Isothermic Core", "spellId": 431095, "icon": "inv_10_jewelcrafting_gem2standard_fire_cut_blue", "index": 100}]}, {"id": 94640, "name": "Severe Temperatures / Thermal Conditioning", "type": "choice", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94632], "prev": [94641], "entries": [{"id": 117243, "definitionId": 122255, "maxRanks": 1, "type": "passive", "name": "Severe Temperatures", "spellId": 431189, "icon": "inv_magemount_fire", "index": 100}, {"id": 117774, "definitionId": 122786, "maxRanks": 1, "type": "passive", "name": "Thermal Conditioning", "spellId": 431117, "icon": "spell_fireresistancetotem_01", "index": 200}]}, {"id": 94634, "name": "Frostfire Infusion", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94637], "prev": [94633], "entries": [{"id": 117237, "definitionId": 122249, "maxRanks": 1, "type": "passive", "name": "Frostfire Infusion", "spellId": 431166, "icon": "inv_10_blacksmithing_craftedbar_frostfirealloy", "index": 100}]}, {"id": 94639, "name": "Excess Frost", "type": "single", "posX": 14700, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94638], "entries": [{"id": 117242, "definitionId": 122254, "maxRanks": 1, "type": "passive", "name": "Excess Frost", "spellId": 438600, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 94632, "name": "Frostfire Empowerment", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94640], "entries": [{"id": 117235, "definitionId": 122247, "maxRanks": 1, "type": "passive", "name": "Frostfire Empowerment", "spellId": 431176, "icon": "spell_frostfire_orb", "index": 100}]}, {"id": 94637, "name": "Excess Fire", "type": "single", "posX": 15900, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94634], "entries": [{"id": 117240, "definitionId": 122252, "maxRanks": 1, "type": "passive", "name": "Excess Fire", "spellId": 438595, "icon": "ability_mage_fierypayback", "index": 100}]}, {"id": 94635, "name": "Flash Freezeburn", "type": "single", "posX": 15300, "posY": 4500, "maxRanks": 1, "subTreeId": 41, "next": [], "prev": [94632, 94639, 94637], "entries": [{"id": 117238, "definitionId": 122250, "maxRanks": 1, "type": "passive", "name": "Flash Freezeburn", "spellId": 431178, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 94647, "name": "Spellfire Spheres", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "entryNode": true, "subTreeId": 39, "next": [94653, 94652, 94644], "prev": [], "entries": [{"id": 117250, "definitionId": 122262, "maxRanks": 1, "type": "passive", "name": "Spellfire Spheres", "spellId": 448601, "icon": "inv_ability_sunfurymage_spellfirespheres", "index": 100}], "freeNode": true}, {"id": 94653, "name": "Mana Cascade", "type": "single", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94649], "prev": [94647], "entries": [{"id": 117256, "definitionId": 122268, "maxRanks": 1, "type": "passive", "name": "Mana Cascade", "spellId": 449293, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 94652, "name": "Invocation: Arcane Phoenix", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [94651], "prev": [94647], "entries": [{"id": 117255, "definitionId": 122267, "maxRanks": 1, "type": "passive", "name": "Invocation: Arcane Phoenix", "spellId": 448658, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 94644, "name": "Burden of Power", "type": "single", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94645], "prev": [94647], "entries": [{"id": 117247, "definitionId": 122259, "maxRanks": 1, "type": "passive", "name": "Burden of Power", "spellId": 451035, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 94649, "name": "Merely a Setback", "type": "single", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94650], "prev": [94653], "entries": [{"id": 117252, "definitionId": 122264, "maxRanks": 1, "type": "passive", "name": "Merely a Setback", "spellId": 449330, "icon": "inv_helm_robe_raidmage_i_01", "index": 100}]}, {"id": 94651, "name": "Lessons in Debilitation / Gravity Lapse", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94643], "prev": [94652], "entries": [{"id": 117254, "definitionId": 122266, "maxRanks": 1, "type": "passive", "name": "Lessons in Debilitation", "spellId": 449627, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 123832, "definitionId": 128670, "maxRanks": 1, "type": "passive", "name": "Gravity Lapse", "spellId": 458513, "icon": "inv_cosmicvoid_wave", "index": 200}]}, {"id": 94645, "name": "Glorious Incandescence", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94648], "prev": [94644], "entries": [{"id": 117248, "definitionId": 122260, "maxRanks": 1, "type": "passive", "name": "Glorious Incandescence", "spellId": 449394, "icon": "spell_burningsoul", "index": 100}]}, {"id": 94650, "name": "Savor the Moment / Sunfury Execution", "type": "choice", "posX": 7200, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94649], "entries": [{"id": 117253, "definitionId": 122265, "maxRanks": 1, "type": "passive", "name": "Savor the Moment", "spellId": 449412, "icon": "spell_fire_masterofelements", "index": 100}, {"id": 123867, "definitionId": 128705, "maxRanks": 1, "type": "passive", "name": "Sunfury Execution", "spellId": 449349, "icon": "spell_shadow_shadowandflame", "index": 200}]}, {"id": 94643, "name": "Codex of the Sunstriders", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "requiresNode": 102449, "next": [94646], "prev": [94651], "entries": [{"id": 117246, "definitionId": 122258, "maxRanks": 1, "type": "passive", "name": "Codex of the Sunstriders", "spellId": 449382, "icon": "inv_10_inscription2_book3_color1", "index": 100}]}, {"id": 94648, "name": "Rondurmancy / Ignite the Future", "type": "choice", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94645], "entries": [{"id": 117251, "definitionId": 122263, "maxRanks": 1, "type": "passive", "name": "Rondurmancy", "spellId": 449596, "icon": "spell_arcane_focusedpower", "index": 100}, {"id": 123833, "definitionId": 128671, "maxRanks": 1, "type": "passive", "name": "Ignite the Future", "spellId": 449558, "icon": "inv_misc_matchbook", "index": 200}]}, {"id": 94646, "name": "Memory of Al'ar", "type": "single", "posX": 7800, "posY": 7500, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [], "prev": [94643, 94650, 94648], "entries": [{"id": 117249, "definitionId": 122261, "maxRanks": 1, "type": "passive", "name": "Memory of Al'ar", "spellId": 449619, "icon": "inv_misc_summerfest_brazierorange", "index": 100}]}], "subTreeNodes": [{"id": 99829, "name": "Frostfire / Sunfury", "type": "subtree", "posX": 7800, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123343, "type": "subtree", "name": "Frostfire", "traitSubTreeId": 41, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-frostfire", "nodes": [94636, 94642, 94641, 94633, 94638, 94640, 94634, 94639, 94632, 94637, 94635]}, {"id": 123340, "type": "subtree", "name": "Sunfury", "traitSubTreeId": 39, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-sunfury", "nodes": [94647, 94653, 94652, 94644, 94649, 94651, 94645, 94650, 94643, 94648, 94646]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/mage_frost.json b/simc_support/game_data/data_files/trees/mage_frost.json index 8825e7b..937c207 100644 --- a/simc_support/game_data/data_files/trees/mage_frost.json +++ b/simc_support/game_data/data_files/trees/mage_frost.json @@ -1 +1 @@ -{"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Frost", "specId": 64, "classNodes": [{"id": 62117, "name": "Ice Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80176, "definitionId": 85179, "maxRanks": 1, "type": "active", "name": "Ice Barrier", "spellId": 11426, "icon": "spell_ice_lament", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62117], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62117], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62117], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "ability_ardenweald_mage", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring-of-frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 62176, "name": "Ice Lance", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62177, 62164], "prev": [], "entries": [{"id": 80241, "definitionId": 85244, "maxRanks": 1, "type": "active", "name": "Ice Lance", "spellId": 30455, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 62177, "name": "Frozen Orb", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [62178], "prev": [62176], "entries": [{"id": 80242, "definitionId": 85245, "maxRanks": 1, "type": "active", "name": "Frozen Orb", "spellId": 84714, "icon": "spell_frost_frozenorb", "index": 100}]}, {"id": 62164, "name": "Fingers of Frost", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [62165], "prev": [62176], "entries": [{"id": 80227, "definitionId": 85230, "maxRanks": 1, "type": "passive", "name": "Fingers of Frost", "spellId": 112965, "icon": "ability_mage_wintersgrasp", "index": 100}]}, {"id": 62178, "name": "Flurry", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [62179, 81468, 62174], "prev": [62177], "entries": [{"id": 80243, "definitionId": 85246, "maxRanks": 1, "type": "active", "name": "Flurry", "spellId": 44614, "icon": "ability_warlock_burningembersblue", "index": 100}]}, {"id": 62165, "name": "Shatter", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [62174, 81467, 62166], "prev": [62164], "entries": [{"id": 80228, "definitionId": 85231, "maxRanks": 1, "type": "passive", "name": "Shatter", "spellId": 12982, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 62179, "name": "Brain Freeze", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [62181], "prev": [62178], "entries": [{"id": 80244, "definitionId": 85247, "maxRanks": 1, "type": "passive", "name": "Brain Freeze", "spellId": 190447, "icon": "ability_mage_brainfreeze", "index": 100}]}, {"id": 81468, "name": "Everlasting Frost", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [62181], "prev": [62178], "entries": [{"id": 102429, "definitionId": 107434, "maxRanks": 1, "type": "passive", "name": "Everlasting Frost", "spellId": 385167, "icon": "spell_frost_chillingbolt", "index": 100}]}, {"id": 62174, "name": "Winter's Blessing", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [62173, 62169], "prev": [62165, 62178], "entries": [{"id": 80239, "definitionId": 85242, "maxRanks": 1, "type": "passive", "name": "Winter's Blessing", "spellId": 417489, "icon": "spell_frost_wisp", "index": 100}]}, {"id": 81467, "name": "Frostbite", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [62167], "prev": [62165], "entries": [{"id": 102428, "definitionId": 107433, "maxRanks": 1, "type": "passive", "name": "Frostbite", "spellId": 378756, "icon": "spell_frost_frostarmor", "index": 100}]}, {"id": 62166, "name": "Piercing Cold", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [62167], "prev": [62165], "entries": [{"id": 80229, "definitionId": 85232, "maxRanks": 1, "type": "passive", "name": "Piercing Cold", "spellId": 378919, "icon": "spell_frost_frostbolt", "index": 100}]}, {"id": 62181, "name": "Perpetual Winter", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62182, 62180], "prev": [81468, 62179], "entries": [{"id": 80247, "definitionId": 85250, "maxRanks": 1, "type": "passive", "name": "Perpetual Winter", "spellId": 378198, "icon": "spell_frost_arcticwinds", "index": 100}]}, {"id": 62173, "name": "Lonely Winter", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62180, 62172], "prev": [62174], "entries": [{"id": 80237, "definitionId": 85240, "maxRanks": 1, "type": "passive", "name": "Lonely Winter", "spellId": 205024, "icon": "achievement_dungeon_frozenthrone", "index": 200}]}, {"id": 62169, "name": "Permafrost Lances", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62170, 62168], "prev": [62174], "entries": [{"id": 80233, "definitionId": 85236, "maxRanks": 1, "type": "passive", "name": "Permafrost Lances", "spellId": 460590, "icon": "ability_deathknight_icygrip", "index": 100}]}, {"id": 62167, "name": "Bone Chilling", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62168, 62160], "prev": [62166, 81467], "entries": [{"id": 80230, "definitionId": 85233, "maxRanks": 1, "type": "passive", "name": "Bone Chilling", "spellId": 205027, "icon": "ability_mage_chilledtothebone", "index": 100}]}, {"id": 62182, "name": "Comet Storm", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62183], "prev": [62181], "entries": [{"id": 80248, "definitionId": 85251, "maxRanks": 1, "type": "active", "name": "Comet Storm", "spellId": 153595, "icon": "spell_mage_cometstorm2", "index": 100}]}, {"id": 62180, "name": "Frozen Touch", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62159], "prev": [62181, 62173], "entries": [{"id": 80245, "definitionId": 85248, "maxRanks": 1, "type": "passive", "name": "Frozen Touch", "spellId": 205030, "icon": "ability_mage_burstofcold", "index": 200}]}, {"id": 62172, "name": "Wintertide", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [62171], "prev": [62173], "entries": [{"id": 80236, "definitionId": 85239, "maxRanks": 2, "type": "passive", "name": "Wintertide", "spellId": 378406, "icon": "ability_deathknight_frozencenter", "index": 100}]}, {"id": 62170, "name": "Ice Caller", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62171], "prev": [62169], "entries": [{"id": 80234, "definitionId": 85237, "maxRanks": 1, "type": "passive", "name": "Ice Caller", "spellId": 236662, "icon": "spell_frost_icestorm", "index": 100}]}, {"id": 62168, "name": "Flash Freeze", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62162], "prev": [62167, 62169], "entries": [{"id": 80231, "definitionId": 85234, "maxRanks": 1, "type": "passive", "name": "Flash Freeze", "spellId": 379993, "icon": "spell_hunter_icetrap", "index": 100}]}, {"id": 62160, "name": "Subzero", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [62161], "prev": [62167], "entries": [{"id": 80223, "definitionId": 85226, "maxRanks": 2, "type": "passive", "name": "Subzero", "spellId": 380154, "icon": "spell_ice_magicdamage", "index": 100}]}, {"id": 62159, "name": "Deep Shatter", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [62183, 62150], "prev": [62180], "entries": [{"id": 80222, "definitionId": 85225, "maxRanks": 2, "type": "passive", "name": "Deep Shatter", "spellId": 378749, "icon": "inv_misc_frostemblem_01", "index": 100}]}, {"id": 62171, "name": "Icy Veins", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62150, 62154, 62163], "prev": [62170, 62172], "entries": [{"id": 80235, "definitionId": 85238, "maxRanks": 1, "type": "active", "name": "Icy Veins", "spellId": 12472, "icon": "spell_frost_coldhearted", "index": 100}]}, {"id": 62162, "name": "Splintering Cold", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [62163, 62161], "prev": [62168], "entries": [{"id": 80225, "definitionId": 85228, "maxRanks": 2, "type": "passive", "name": "Splintering Cold", "spellId": 379049, "icon": "spell_fire_blueflamestrike", "index": 100}]}, {"id": 62183, "name": "Glacial Assault", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62151], "prev": [62159, 62182], "entries": [{"id": 80249, "definitionId": 85252, "maxRanks": 1, "type": "passive", "name": "Glacial Assault", "spellId": 378947, "icon": "inv_staff_15", "index": 100}]}, {"id": 62150, "name": "Freezing Rain", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62151, 62184], "prev": [62159, 62171], "entries": [{"id": 80212, "definitionId": 85215, "maxRanks": 1, "type": "passive", "name": "Freezing Rain", "spellId": 270233, "icon": "spell_frost_frozenorb", "index": 100}]}, {"id": 62154, "name": "Thermal Void", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62184, 62156, 62158], "prev": [62171], "entries": [{"id": 80217, "definitionId": 85220, "maxRanks": 1, "type": "passive", "name": "Thermal Void", "spellId": 155149, "icon": "spell_mage_thermalvoid", "index": 100}]}, {"id": 62163, "name": "Splitting Ice", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62158, 62153], "prev": [62162, 62171], "entries": [{"id": 80226, "definitionId": 85229, "maxRanks": 1, "type": "passive", "name": "Splitting Ice", "spellId": 56377, "icon": "spell_frost_ice-shards", "index": 200}]}, {"id": 62161, "name": "Chain Reaction", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62153], "prev": [62160, 62162], "entries": [{"id": 80224, "definitionId": 85227, "maxRanks": 1, "type": "passive", "name": "Chain Reaction", "spellId": 278309, "icon": "spell_frost_frostblast", "index": 200}]}, {"id": 62151, "name": "Fractured Frost", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101302, 62155], "prev": [62150, 62183], "entries": [{"id": 80214, "definitionId": 85217, "maxRanks": 1, "type": "passive", "name": "Fractured Frost", "spellId": 378448, "icon": "spell_fire_frostresistancetotem", "index": 100}]}, {"id": 62184, "name": "Freezing Winds", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62185], "prev": [62154, 62150], "entries": [{"id": 80250, "definitionId": 85253, "maxRanks": 1, "type": "passive", "name": "Freezing Winds", "spellId": 382103, "icon": "spell_fire_blueflamering", "index": 100}]}, {"id": 62156, "name": "Slick Ice", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62154], "entries": [{"id": 80219, "definitionId": 85222, "maxRanks": 1, "type": "passive", "name": "Slick Ice", "spellId": 382144, "icon": "inv_enchant_shardshadowfrostlarge", "index": 100}]}, {"id": 62158, "name": "Hailstones", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62157], "prev": [62154, 62163], "entries": [{"id": 80221, "definitionId": 85224, "maxRanks": 1, "type": "passive", "name": "Hailstones", "spellId": 381244, "icon": "artifactability_frostmage_blackicicles", "index": 100}]}, {"id": 62153, "name": "Ray of Frost", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62152, 103771], "prev": [62161, 62163], "entries": [{"id": 80216, "definitionId": 85219, "maxRanks": 1, "type": "active", "name": "Ray of Frost", "spellId": 205021, "icon": "ability_mage_rayoffrost", "index": 100}]}, {"id": 101302, "name": "Death's Chill", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62151], "entries": [{"id": 125131, "definitionId": 129963, "maxRanks": 1, "type": "passive", "name": "Death's Chill", "spellId": 450331, "icon": "inv_trinket_fragmentoffrostmourne", "index": 100}]}, {"id": 62155, "name": "Cold Front", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62151], "entries": [{"id": 80218, "definitionId": 85221, "maxRanks": 1, "type": "passive", "name": "Cold Front", "spellId": 382110, "icon": "ability_mage_coldasice", "index": 100}]}, {"id": 62185, "name": "Coldest Snap", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62184], "entries": [{"id": 80251, "definitionId": 85254, "maxRanks": 1, "type": "passive", "name": "Coldest Snap", "spellId": 417493, "icon": "spell_frost_wizardmark", "index": 100}]}, {"id": 62157, "name": "Glacial Spike", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62158], "entries": [{"id": 80220, "definitionId": 85223, "maxRanks": 1, "type": "active", "name": "Glacial Spike", "spellId": 199786, "icon": "ability_mage_glacialspike", "index": 100}]}, {"id": 62152, "name": "Cryopathy", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62153], "entries": [{"id": 80215, "definitionId": 85218, "maxRanks": 1, "type": "passive", "name": "Cryopathy", "spellId": 417491, "icon": "ability_hunter_pointofnoescape", "index": 100}]}, {"id": 103771, "name": "Splintering Ray", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62153], "entries": [{"id": 128077, "definitionId": 132886, "maxRanks": 1, "type": "passive", "name": "Splintering Ray", "spellId": 418733, "icon": "spell_fire_blueflamestrike", "index": 100}]}], "heroNodes": [{"id": 94664, "name": "Splintering Sorcery", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 40, "next": [94662, 94663, 94661], "prev": [], "entries": [{"id": 117267, "definitionId": 122279, "maxRanks": 1, "type": "passive", "name": "Splintering Sorcery", "spellId": 443739, "icon": "achievement_dungeon_arcanevaults", "index": 100}], "freeNode": true}, {"id": 94636, "name": "Frostfire Mastery", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 41, "next": [94642, 94641, 94633], "prev": [], "entries": [{"id": 117239, "definitionId": 122251, "maxRanks": 1, "type": "passive", "name": "Frostfire Mastery", "spellId": 431038, "icon": "spell_frostresistancetotem_01", "index": 100}], "freeNode": true}, {"id": 94662, "name": "Augury Abounds", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62171, "next": [94659], "prev": [94664], "entries": [{"id": 117265, "definitionId": 122277, "maxRanks": 1, "type": "passive", "name": "Augury Abounds", "spellId": 443783, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 94663, "name": "Controlled Instincts", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94660], "prev": [94664], "entries": [{"id": 117266, "definitionId": 122278, "maxRanks": 1, "type": "passive", "name": "Controlled Instincts", "spellId": 444483, "icon": "spell_frost_ice_shards", "index": 100}]}, {"id": 94661, "name": "Splintering Orbs", "type": "single", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94658], "prev": [94664], "entries": [{"id": 117264, "definitionId": 122276, "maxRanks": 1, "type": "passive", "name": "Splintering Orbs", "spellId": 444256, "icon": "item_azereansphere", "index": 100}]}, {"id": 94642, "name": "Imbued Warding / Meltdown", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94638], "prev": [94636], "entries": [{"id": 117245, "definitionId": 122257, "maxRanks": 1, "type": "passive", "name": "Imbued Warding", "spellId": 431066, "icon": "inv_10_jewelcrafting_gem3primal_fire_cut_blue", "index": 100}, {"id": 117776, "definitionId": 122788, "maxRanks": 1, "type": "passive", "name": "Meltdown", "spellId": 431131, "icon": "spell_frost_arcticwinds", "index": 200}]}, {"id": 94641, "name": "Frostfire Bolt", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94640], "prev": [94636], "entries": [{"id": 117244, "definitionId": 122256, "maxRanks": 1, "type": "active", "name": "Frostfire Bolt", "spellId": 431044, "icon": "inv_ability_frostfiremage_frostfirebolt", "index": 100}]}, {"id": 94633, "name": "Elemental Affinity / Flame and Frost", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94634], "prev": [94636], "entries": [{"id": 117236, "definitionId": 122248, "maxRanks": 1, "type": "passive", "name": "Elemental Affinity", "spellId": 431067, "icon": "inv_10_dungeonjewelry_dragon_trinket_5_red", "index": 100}, {"id": 117775, "definitionId": 122787, "maxRanks": 1, "type": "passive", "name": "Flame and Frost", "spellId": 431112, "icon": "spell_firefrost_orb", "index": 200}]}, {"id": 94659, "name": "Slippery Slinging / Look Again", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94657], "prev": [94662], "entries": [{"id": 117262, "definitionId": 122274, "maxRanks": 1, "type": "passive", "name": "Slippery Slinging", "spellId": 444752, "icon": "ability_mage_icyfeet", "index": 100}, {"id": 123418, "definitionId": 128256, "maxRanks": 1, "type": "passive", "name": "Look Again", "spellId": 444756, "icon": "achievement_bg_tophealer_av", "index": 200}]}, {"id": 94660, "name": "Reactive Barrier / Phantasmal Image", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94656], "prev": [94663], "entries": [{"id": 117263, "definitionId": 122275, "maxRanks": 1, "type": "passive", "name": "Reactive Barrier", "spellId": 444827, "icon": "ability_racial_forceshield", "index": 100}, {"id": 123417, "definitionId": 128255, "maxRanks": 1, "type": "passive", "name": "Phantasmal Image", "spellId": 444784, "icon": "spell_arcane_prismaticcloak", "index": 200}]}, {"id": 94658, "name": "Volatile Magic / Unerring Proficiency", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94655], "prev": [94661], "entries": [{"id": 117261, "definitionId": 122273, "maxRanks": 1, "type": "passive", "name": "Volatile Magic", "spellId": 444968, "icon": "spell_mage_flameorb_blue", "index": 100}, {"id": 123407, "definitionId": 128245, "maxRanks": 1, "type": "passive", "name": "Unerring Proficiency", "spellId": 444974, "icon": "spell_mage_presenceofmind", "index": 200}]}, {"id": 94638, "name": "Isothermic Core", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "requiresNode": 101016, "next": [94639], "prev": [94642], "entries": [{"id": 117241, "definitionId": 122253, "maxRanks": 1, "type": "passive", "name": "Isothermic Core", "spellId": 431095, "icon": "inv_10_jewelcrafting_gem2standard_fire_cut_blue", "index": 100}]}, {"id": 94640, "name": "Severe Temperatures / Thermal Conditioning", "type": "choice", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94632], "prev": [94641], "entries": [{"id": 117243, "definitionId": 122255, "maxRanks": 1, "type": "passive", "name": "Severe Temperatures", "spellId": 431189, "icon": "inv_magemount_fire", "index": 100}, {"id": 117774, "definitionId": 122786, "maxRanks": 1, "type": "passive", "name": "Thermal Conditioning", "spellId": 431117, "icon": "spell_fireresistancetotem_01", "index": 200}]}, {"id": 94634, "name": "Frostfire Infusion", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94637], "prev": [94633], "entries": [{"id": 117237, "definitionId": 122249, "maxRanks": 1, "type": "passive", "name": "Frostfire Infusion", "spellId": 431166, "icon": "inv_10_blacksmithing_craftedbar_frostfirealloy", "index": 100}]}, {"id": 94657, "name": "Shifting Shards", "type": "single", "posX": 7200, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62113, "next": [94654], "prev": [94659], "entries": [{"id": 117260, "definitionId": 122272, "maxRanks": 1, "type": "passive", "name": "Shifting Shards", "spellId": 444675, "icon": "ability_mage_freeze", "index": 100}]}, {"id": 94656, "name": "Force of Will", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94660], "entries": [{"id": 117259, "definitionId": 122271, "maxRanks": 1, "type": "passive", "name": "Force of Will", "spellId": 444719, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 94655, "name": "Spellfrost Teachings", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94658], "entries": [{"id": 117258, "definitionId": 122270, "maxRanks": 1, "type": "passive", "name": "Spellfrost Teachings", "spellId": 444986, "icon": "70_inscription_vantus_rune_azure", "index": 100}]}, {"id": 94639, "name": "Excess Frost", "type": "single", "posX": 14700, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94638], "entries": [{"id": 117242, "definitionId": 122254, "maxRanks": 1, "type": "passive", "name": "Excess Frost", "spellId": 438600, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 94632, "name": "Frostfire Empowerment", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94640], "entries": [{"id": 117235, "definitionId": 122247, "maxRanks": 1, "type": "passive", "name": "Frostfire Empowerment", "spellId": 431176, "icon": "spell_frostfire_orb", "index": 100}]}, {"id": 94637, "name": "Excess Fire", "type": "single", "posX": 15900, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94634], "entries": [{"id": 117240, "definitionId": 122252, "maxRanks": 1, "type": "passive", "name": "Excess Fire", "spellId": 438595, "icon": "ability_mage_fierypayback", "index": 100}]}, {"id": 94654, "name": "Splinterstorm", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "subTreeId": 40, "next": [], "prev": [94656, 94657, 94655], "entries": [{"id": 117257, "definitionId": 122269, "maxRanks": 1, "type": "passive", "name": "Splinterstorm", "spellId": 443742, "icon": "ability_mage_burstofcold", "index": 100}]}, {"id": 94635, "name": "Flash Freezeburn", "type": "single", "posX": 15300, "posY": 4500, "maxRanks": 1, "subTreeId": 41, "next": [], "prev": [94632, 94639, 94637], "entries": [{"id": 117238, "definitionId": 122250, "maxRanks": 1, "type": "passive", "name": "Flash Freezeburn", "spellId": 431178, "icon": "spell_fire_elementaldevastation", "index": 100}]}], "subTreeNodes": [{"id": 99828, "name": "Frostfire / Spellslinger", "type": "subtree", "posX": 8700, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123342, "type": "subtree", "name": "Frostfire", "traitSubTreeId": 41, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-frostfire", "nodes": [94636, 94642, 94641, 94633, 94638, 94640, 94634, 94639, 94632, 94637, 94635]}, {"id": 123339, "type": "subtree", "name": "Spellslinger", "traitSubTreeId": 40, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-spellslinger", "nodes": [94664, 94662, 94663, 94661, 94659, 94660, 94658, 94657, 94656, 94655, 94654]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]} \ No newline at end of file +{"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Frost", "specId": 64, "classNodes": [{"id": 62117, "name": "Ice Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80176, "definitionId": 85179, "maxRanks": 1, "type": "active", "name": "Ice Barrier", "spellId": 11426, "icon": "spell_ice_lament", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62117], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62117], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62117], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "inv_ability_mage_shiftingpower", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring-of-frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 62176, "name": "Ice Lance", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62177, 62164], "prev": [], "entries": [{"id": 80241, "definitionId": 85244, "maxRanks": 1, "type": "active", "name": "Ice Lance", "spellId": 30455, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 62177, "name": "Frozen Orb", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [62178], "prev": [62176], "entries": [{"id": 80242, "definitionId": 85245, "maxRanks": 1, "type": "active", "name": "Frozen Orb", "spellId": 84714, "icon": "spell_frost_frozenorb", "index": 100}]}, {"id": 62164, "name": "Fingers of Frost", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [62165], "prev": [62176], "entries": [{"id": 80227, "definitionId": 85230, "maxRanks": 1, "type": "passive", "name": "Fingers of Frost", "spellId": 112965, "icon": "ability_mage_wintersgrasp", "index": 100}]}, {"id": 62178, "name": "Flurry", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [62179, 81468, 62174], "prev": [62177], "entries": [{"id": 80243, "definitionId": 85246, "maxRanks": 1, "type": "active", "name": "Flurry", "spellId": 44614, "icon": "ability_warlock_burningembersblue", "index": 100}]}, {"id": 62165, "name": "Shatter", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [62174, 81467, 62166], "prev": [62164], "entries": [{"id": 80228, "definitionId": 85231, "maxRanks": 1, "type": "passive", "name": "Shatter", "spellId": 12982, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 62179, "name": "Brain Freeze", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [62181], "prev": [62178], "entries": [{"id": 80244, "definitionId": 85247, "maxRanks": 1, "type": "passive", "name": "Brain Freeze", "spellId": 190447, "icon": "ability_mage_brainfreeze", "index": 100}]}, {"id": 81468, "name": "Everlasting Frost", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [62181], "prev": [62178], "entries": [{"id": 102429, "definitionId": 107434, "maxRanks": 1, "type": "passive", "name": "Everlasting Frost", "spellId": 385167, "icon": "spell_frost_chillingbolt", "index": 100}]}, {"id": 62174, "name": "Winter's Blessing", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [62173, 62169], "prev": [62165, 62178], "entries": [{"id": 80239, "definitionId": 85242, "maxRanks": 1, "type": "passive", "name": "Winter's Blessing", "spellId": 417489, "icon": "spell_frost_wisp", "index": 100}]}, {"id": 81467, "name": "Frostbite", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [62167], "prev": [62165], "entries": [{"id": 102428, "definitionId": 107433, "maxRanks": 1, "type": "passive", "name": "Frostbite", "spellId": 378756, "icon": "spell_frost_frostarmor", "index": 100}]}, {"id": 62166, "name": "Piercing Cold", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [62167], "prev": [62165], "entries": [{"id": 80229, "definitionId": 85232, "maxRanks": 1, "type": "passive", "name": "Piercing Cold", "spellId": 378919, "icon": "spell_frost_frostbolt", "index": 100}]}, {"id": 62181, "name": "Perpetual Winter", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62182, 62180], "prev": [81468, 62179], "entries": [{"id": 80247, "definitionId": 85250, "maxRanks": 1, "type": "passive", "name": "Perpetual Winter", "spellId": 378198, "icon": "spell_frost_arcticwinds", "index": 100}]}, {"id": 62173, "name": "Lonely Winter", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62180, 62172], "prev": [62174], "entries": [{"id": 80237, "definitionId": 85240, "maxRanks": 1, "type": "passive", "name": "Lonely Winter", "spellId": 205024, "icon": "achievement_dungeon_frozenthrone", "index": 200}]}, {"id": 62169, "name": "Permafrost Lances", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62170, 62168], "prev": [62174], "entries": [{"id": 80233, "definitionId": 85236, "maxRanks": 1, "type": "passive", "name": "Permafrost Lances", "spellId": 460590, "icon": "ability_deathknight_icygrip", "index": 100}]}, {"id": 62167, "name": "Bone Chilling", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62168, 62160], "prev": [62166, 81467], "entries": [{"id": 80230, "definitionId": 85233, "maxRanks": 1, "type": "passive", "name": "Bone Chilling", "spellId": 205027, "icon": "ability_mage_chilledtothebone", "index": 100}]}, {"id": 62182, "name": "Comet Storm", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62183], "prev": [62181], "entries": [{"id": 80248, "definitionId": 85251, "maxRanks": 1, "type": "active", "name": "Comet Storm", "spellId": 153595, "icon": "spell_mage_cometstorm2", "index": 100}]}, {"id": 62180, "name": "Frozen Touch", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62159], "prev": [62181, 62173], "entries": [{"id": 80245, "definitionId": 85248, "maxRanks": 1, "type": "passive", "name": "Frozen Touch", "spellId": 205030, "icon": "ability_mage_burstofcold", "index": 200}]}, {"id": 62172, "name": "Wintertide", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [62171], "prev": [62173], "entries": [{"id": 80236, "definitionId": 85239, "maxRanks": 2, "type": "passive", "name": "Wintertide", "spellId": 378406, "icon": "ability_deathknight_frozencenter", "index": 100}]}, {"id": 62170, "name": "Ice Caller", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62171], "prev": [62169], "entries": [{"id": 80234, "definitionId": 85237, "maxRanks": 1, "type": "passive", "name": "Ice Caller", "spellId": 236662, "icon": "spell_frost_icestorm", "index": 100}]}, {"id": 62168, "name": "Flash Freeze", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62162], "prev": [62167, 62169], "entries": [{"id": 80231, "definitionId": 85234, "maxRanks": 1, "type": "passive", "name": "Flash Freeze", "spellId": 379993, "icon": "spell_hunter_icetrap", "index": 100}]}, {"id": 62160, "name": "Subzero", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [62161], "prev": [62167], "entries": [{"id": 80223, "definitionId": 85226, "maxRanks": 2, "type": "passive", "name": "Subzero", "spellId": 380154, "icon": "spell_ice_magicdamage", "index": 100}]}, {"id": 62159, "name": "Deep Shatter", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [62183, 62150], "prev": [62180], "entries": [{"id": 80222, "definitionId": 85225, "maxRanks": 2, "type": "passive", "name": "Deep Shatter", "spellId": 378749, "icon": "inv_misc_frostemblem_01", "index": 100}]}, {"id": 62171, "name": "Icy Veins", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62150, 62154, 62163], "prev": [62170, 62172], "entries": [{"id": 80235, "definitionId": 85238, "maxRanks": 1, "type": "active", "name": "Icy Veins", "spellId": 12472, "icon": "spell_frost_coldhearted", "index": 100}]}, {"id": 62162, "name": "Splintering Cold", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [62163, 62161], "prev": [62168], "entries": [{"id": 80225, "definitionId": 85228, "maxRanks": 2, "type": "passive", "name": "Splintering Cold", "spellId": 379049, "icon": "spell_fire_blueflamestrike", "index": 100}]}, {"id": 62183, "name": "Glacial Assault", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62151], "prev": [62159, 62182], "entries": [{"id": 80249, "definitionId": 85252, "maxRanks": 1, "type": "passive", "name": "Glacial Assault", "spellId": 378947, "icon": "inv_staff_15", "index": 100}]}, {"id": 62150, "name": "Freezing Rain", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62151, 62184], "prev": [62159, 62171], "entries": [{"id": 80212, "definitionId": 85215, "maxRanks": 1, "type": "passive", "name": "Freezing Rain", "spellId": 270233, "icon": "spell_frost_frozenorb", "index": 100}]}, {"id": 62154, "name": "Thermal Void", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62184, 62156, 62158], "prev": [62171], "entries": [{"id": 80217, "definitionId": 85220, "maxRanks": 1, "type": "passive", "name": "Thermal Void", "spellId": 155149, "icon": "spell_mage_thermalvoid", "index": 100}]}, {"id": 62163, "name": "Splitting Ice", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62158, 62153], "prev": [62162, 62171], "entries": [{"id": 80226, "definitionId": 85229, "maxRanks": 1, "type": "passive", "name": "Splitting Ice", "spellId": 56377, "icon": "spell_frost_ice-shards", "index": 200}]}, {"id": 62161, "name": "Chain Reaction", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62153], "prev": [62160, 62162], "entries": [{"id": 80224, "definitionId": 85227, "maxRanks": 1, "type": "passive", "name": "Chain Reaction", "spellId": 278309, "icon": "spell_frost_frostblast", "index": 200}]}, {"id": 62151, "name": "Fractured Frost", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101302, 62155], "prev": [62150, 62183], "entries": [{"id": 80214, "definitionId": 85217, "maxRanks": 1, "type": "passive", "name": "Fractured Frost", "spellId": 378448, "icon": "spell_fire_frostresistancetotem", "index": 100}]}, {"id": 62184, "name": "Freezing Winds", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62185], "prev": [62154, 62150], "entries": [{"id": 80250, "definitionId": 85253, "maxRanks": 1, "type": "passive", "name": "Freezing Winds", "spellId": 382103, "icon": "spell_fire_blueflamering", "index": 100}]}, {"id": 62156, "name": "Slick Ice", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62154], "entries": [{"id": 80219, "definitionId": 85222, "maxRanks": 1, "type": "passive", "name": "Slick Ice", "spellId": 382144, "icon": "inv_enchant_shardshadowfrostlarge", "index": 100}]}, {"id": 62158, "name": "Hailstones", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62157], "prev": [62154, 62163], "entries": [{"id": 80221, "definitionId": 85224, "maxRanks": 1, "type": "passive", "name": "Hailstones", "spellId": 381244, "icon": "artifactability_frostmage_blackicicles", "index": 100}]}, {"id": 62153, "name": "Ray of Frost", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62152, 103771], "prev": [62161, 62163], "entries": [{"id": 80216, "definitionId": 85219, "maxRanks": 1, "type": "active", "name": "Ray of Frost", "spellId": 205021, "icon": "ability_mage_rayoffrost", "index": 100}]}, {"id": 101302, "name": "Death's Chill", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62151], "entries": [{"id": 125131, "definitionId": 129963, "maxRanks": 1, "type": "passive", "name": "Death's Chill", "spellId": 450331, "icon": "inv_trinket_fragmentoffrostmourne", "index": 100}]}, {"id": 62155, "name": "Cold Front", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62151], "entries": [{"id": 80218, "definitionId": 85221, "maxRanks": 1, "type": "passive", "name": "Cold Front", "spellId": 382110, "icon": "ability_mage_coldasice", "index": 100}]}, {"id": 62185, "name": "Coldest Snap", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62184], "entries": [{"id": 80251, "definitionId": 85254, "maxRanks": 1, "type": "passive", "name": "Coldest Snap", "spellId": 417493, "icon": "spell_frost_wizardmark", "index": 100}]}, {"id": 62157, "name": "Glacial Spike", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62158], "entries": [{"id": 80220, "definitionId": 85223, "maxRanks": 1, "type": "active", "name": "Glacial Spike", "spellId": 199786, "icon": "ability_mage_glacialspike", "index": 100}]}, {"id": 62152, "name": "Cryopathy", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62153], "entries": [{"id": 80215, "definitionId": 85218, "maxRanks": 1, "type": "passive", "name": "Cryopathy", "spellId": 417491, "icon": "ability_hunter_pointofnoescape", "index": 100}]}, {"id": 103771, "name": "Splintering Ray", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62153], "entries": [{"id": 128077, "definitionId": 132886, "maxRanks": 1, "type": "passive", "name": "Splintering Ray", "spellId": 418733, "icon": "spell_fire_blueflamestrike", "index": 100}]}], "heroNodes": [{"id": 94664, "name": "Splintering Sorcery", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 40, "next": [94662, 94663, 94661], "prev": [], "entries": [{"id": 117267, "definitionId": 122279, "maxRanks": 1, "type": "passive", "name": "Splintering Sorcery", "spellId": 443739, "icon": "achievement_dungeon_arcanevaults", "index": 100}], "freeNode": true}, {"id": 94636, "name": "Frostfire Mastery", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 41, "next": [94642, 94641, 94633], "prev": [], "entries": [{"id": 117239, "definitionId": 122251, "maxRanks": 1, "type": "passive", "name": "Frostfire Mastery", "spellId": 431038, "icon": "spell_frostresistancetotem_01", "index": 100}], "freeNode": true}, {"id": 94662, "name": "Augury Abounds", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62171, "next": [94659], "prev": [94664], "entries": [{"id": 117265, "definitionId": 122277, "maxRanks": 1, "type": "passive", "name": "Augury Abounds", "spellId": 443783, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 94663, "name": "Controlled Instincts", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94660], "prev": [94664], "entries": [{"id": 117266, "definitionId": 122278, "maxRanks": 1, "type": "passive", "name": "Controlled Instincts", "spellId": 444483, "icon": "spell_frost_ice_shards", "index": 100}]}, {"id": 94661, "name": "Splintering Orbs", "type": "single", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94658], "prev": [94664], "entries": [{"id": 117264, "definitionId": 122276, "maxRanks": 1, "type": "passive", "name": "Splintering Orbs", "spellId": 444256, "icon": "item_azereansphere", "index": 100}]}, {"id": 94642, "name": "Imbued Warding / Meltdown", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94638], "prev": [94636], "entries": [{"id": 117245, "definitionId": 122257, "maxRanks": 1, "type": "passive", "name": "Imbued Warding", "spellId": 431066, "icon": "inv_10_jewelcrafting_gem3primal_fire_cut_blue", "index": 100}, {"id": 117776, "definitionId": 122788, "maxRanks": 1, "type": "passive", "name": "Meltdown", "spellId": 431131, "icon": "spell_frost_arcticwinds", "index": 200}]}, {"id": 94641, "name": "Frostfire Bolt", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94640], "prev": [94636], "entries": [{"id": 117244, "definitionId": 122256, "maxRanks": 1, "type": "active", "name": "Frostfire Bolt", "spellId": 431044, "icon": "inv_ability_frostfiremage_frostfirebolt", "index": 100}]}, {"id": 94633, "name": "Elemental Affinity / Flame and Frost", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94634], "prev": [94636], "entries": [{"id": 117236, "definitionId": 122248, "maxRanks": 1, "type": "passive", "name": "Elemental Affinity", "spellId": 431067, "icon": "inv_10_dungeonjewelry_dragon_trinket_5_red", "index": 100}, {"id": 117775, "definitionId": 122787, "maxRanks": 1, "type": "passive", "name": "Flame and Frost", "spellId": 431112, "icon": "spell_firefrost_orb", "index": 200}]}, {"id": 94659, "name": "Slippery Slinging / Look Again", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94657], "prev": [94662], "entries": [{"id": 117262, "definitionId": 122274, "maxRanks": 1, "type": "passive", "name": "Slippery Slinging", "spellId": 444752, "icon": "ability_mage_icyfeet", "index": 100}, {"id": 123418, "definitionId": 128256, "maxRanks": 1, "type": "passive", "name": "Look Again", "spellId": 444756, "icon": "achievement_bg_tophealer_av", "index": 200}]}, {"id": 94660, "name": "Reactive Barrier / Phantasmal Image", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94656], "prev": [94663], "entries": [{"id": 117263, "definitionId": 122275, "maxRanks": 1, "type": "passive", "name": "Reactive Barrier", "spellId": 444827, "icon": "ability_racial_forceshield", "index": 100}, {"id": 123417, "definitionId": 128255, "maxRanks": 1, "type": "passive", "name": "Phantasmal Image", "spellId": 444784, "icon": "spell_arcane_prismaticcloak", "index": 200}]}, {"id": 94658, "name": "Volatile Magic / Unerring Proficiency", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94655], "prev": [94661], "entries": [{"id": 117261, "definitionId": 122273, "maxRanks": 1, "type": "passive", "name": "Volatile Magic", "spellId": 444968, "icon": "spell_mage_flameorb_blue", "index": 100}, {"id": 123407, "definitionId": 128245, "maxRanks": 1, "type": "passive", "name": "Unerring Proficiency", "spellId": 444974, "icon": "spell_mage_presenceofmind", "index": 200}]}, {"id": 94638, "name": "Isothermic Core", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "requiresNode": 101016, "next": [94639], "prev": [94642], "entries": [{"id": 117241, "definitionId": 122253, "maxRanks": 1, "type": "passive", "name": "Isothermic Core", "spellId": 431095, "icon": "inv_10_jewelcrafting_gem2standard_fire_cut_blue", "index": 100}]}, {"id": 94640, "name": "Severe Temperatures / Thermal Conditioning", "type": "choice", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94632], "prev": [94641], "entries": [{"id": 117243, "definitionId": 122255, "maxRanks": 1, "type": "passive", "name": "Severe Temperatures", "spellId": 431189, "icon": "inv_magemount_fire", "index": 100}, {"id": 117774, "definitionId": 122786, "maxRanks": 1, "type": "passive", "name": "Thermal Conditioning", "spellId": 431117, "icon": "spell_fireresistancetotem_01", "index": 200}]}, {"id": 94634, "name": "Frostfire Infusion", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94637], "prev": [94633], "entries": [{"id": 117237, "definitionId": 122249, "maxRanks": 1, "type": "passive", "name": "Frostfire Infusion", "spellId": 431166, "icon": "inv_10_blacksmithing_craftedbar_frostfirealloy", "index": 100}]}, {"id": 94657, "name": "Shifting Shards / Signature Spell", "type": "choice", "posX": 7200, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62113, "next": [94654], "prev": [94659], "entries": [{"id": 117260, "definitionId": 122272, "maxRanks": 1, "type": "passive", "name": "Shifting Shards", "spellId": 444675, "icon": "ability_mage_freeze", "index": 100}, {"id": 128267, "definitionId": 133074, "maxRanks": 1, "type": "passive", "name": "Signature Spell", "spellId": 470021, "icon": "inv_enchanting_815_drustwand", "index": 200}]}, {"id": 94656, "name": "Force of Will", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94660], "entries": [{"id": 117259, "definitionId": 122271, "maxRanks": 1, "type": "passive", "name": "Force of Will", "spellId": 444719, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 94655, "name": "Spellfrost Teachings", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94658], "entries": [{"id": 117258, "definitionId": 122270, "maxRanks": 1, "type": "passive", "name": "Spellfrost Teachings", "spellId": 444986, "icon": "70_inscription_vantus_rune_azure", "index": 100}]}, {"id": 94639, "name": "Excess Frost", "type": "single", "posX": 14700, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94638], "entries": [{"id": 117242, "definitionId": 122254, "maxRanks": 1, "type": "passive", "name": "Excess Frost", "spellId": 438600, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 94632, "name": "Frostfire Empowerment", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94640], "entries": [{"id": 117235, "definitionId": 122247, "maxRanks": 1, "type": "passive", "name": "Frostfire Empowerment", "spellId": 431176, "icon": "spell_frostfire_orb", "index": 100}]}, {"id": 94637, "name": "Excess Fire", "type": "single", "posX": 15900, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94634], "entries": [{"id": 117240, "definitionId": 122252, "maxRanks": 1, "type": "passive", "name": "Excess Fire", "spellId": 438595, "icon": "ability_mage_fierypayback", "index": 100}]}, {"id": 94654, "name": "Splinterstorm", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "subTreeId": 40, "next": [], "prev": [94656, 94657, 94655], "entries": [{"id": 117257, "definitionId": 122269, "maxRanks": 1, "type": "passive", "name": "Splinterstorm", "spellId": 443742, "icon": "ability_mage_burstofcold", "index": 100}]}, {"id": 94635, "name": "Flash Freezeburn", "type": "single", "posX": 15300, "posY": 4500, "maxRanks": 1, "subTreeId": 41, "next": [], "prev": [94632, 94639, 94637], "entries": [{"id": 117238, "definitionId": 122250, "maxRanks": 1, "type": "passive", "name": "Flash Freezeburn", "spellId": 431178, "icon": "spell_fire_elementaldevastation", "index": 100}]}], "subTreeNodes": [{"id": 99828, "name": "Frostfire / Spellslinger", "type": "subtree", "posX": 8700, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123342, "type": "subtree", "name": "Frostfire", "traitSubTreeId": 41, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-frostfire", "nodes": [94636, 94642, 94641, 94633, 94638, 94640, 94634, 94639, 94632, 94637, 94635]}, {"id": 123339, "type": "subtree", "name": "Spellslinger", "traitSubTreeId": 40, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-spellslinger", "nodes": [94664, 94662, 94663, 94661, 94659, 94660, 94658, 94657, 94656, 94655, 94654]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/monk_brewmaster.json b/simc_support/game_data/data_files/trees/monk_brewmaster.json index 8d3301c..42bb68f 100644 --- a/simc_support/game_data/data_files/trees/monk_brewmaster.json +++ b/simc_support/game_data/data_files/trees/monk_brewmaster.json @@ -1 +1 @@ -{"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Brewmaster", "specId": 268, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101090], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101090, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 102433], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101090, "name": "Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184], "prev": [101185, 101149], "entries": [{"id": 124867, "definitionId": 129705, "maxRanks": 1, "type": "active", "name": "Detox", "spellId": 218164, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [102433, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102433, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101090, 101153, 101148], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101090, 101185], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 102433, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101146, 101160, 101145], "entries": [{"id": 126502, "definitionId": 131328, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 126501, "definitionId": 131327, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 123986, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101145, 102433], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101181], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101181], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101181, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101158, 101166, 102433], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101172], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101172], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101172, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101181, "name": "Dance of the Wind / Dampen Harm", "type": "choice", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124979, "definitionId": 129817, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 414132, "icon": "ability_monk_dematerialize", "index": 100}, {"id": 124978, "definitionId": 129816, "maxRanks": 1, "type": "active", "name": "Dampen Harm", "spellId": 122278, "icon": "ability_monk_dampenharm", "index": 200}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101172, "name": "Summon Black Ox Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101163, 101173, 101165], "entries": [{"id": 124967, "definitionId": 129805, "maxRanks": 1, "type": "active", "name": "Summon Black Ox Statue", "spellId": 115315, "icon": "monk_ability_summonoxstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101181, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101135, 101174, 101172], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101088, "name": "Keg Smash", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101064, 101087], "prev": [], "entries": [{"id": 124865, "definitionId": 129703, "maxRanks": 1, "type": "active", "name": "Keg Smash", "spellId": 121253, "icon": "achievement_brewery_2", "index": 100}]}, {"id": 101064, "name": "Purifying Brew", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101065, 101072], "prev": [101088], "entries": [{"id": 124838, "definitionId": 129676, "maxRanks": 1, "type": "active", "name": "Purifying Brew", "spellId": 119582, "icon": "inv_misc_beer_06", "index": 100}]}, {"id": 101087, "name": "Shuffle", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101086, 101063], "prev": [101088], "entries": [{"id": 124864, "definitionId": 129702, "maxRanks": 1, "type": "passive", "name": "Shuffle", "spellId": 322120, "icon": "ability_monk_shuffle", "index": 100}]}, {"id": 101065, "name": "Staggering Strikes", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101071], "prev": [101064], "entries": [{"id": 124839, "definitionId": 129677, "maxRanks": 1, "type": "passive", "name": "Staggering Strikes", "spellId": 387625, "icon": "ability_monk_blackoutstrike", "index": 100}]}, {"id": 101072, "name": "Gift of the Ox", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [101071, 101085], "prev": [101064], "entries": [{"id": 124846, "definitionId": 129684, "maxRanks": 1, "type": "passive", "name": "Gift of the Ox", "spellId": 124502, "icon": "ability_druid_giftoftheearthmother", "index": 100}]}, {"id": 101086, "name": "Spirit of the Ox", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [101085, 101202], "prev": [101087], "entries": [{"id": 124863, "definitionId": 129701, "maxRanks": 1, "type": "passive", "name": "Spirit of the Ox", "spellId": 400629, "icon": "ability_titankeeper_cleansingorb", "index": 100}]}, {"id": 101063, "name": "Quick Sip", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101202], "prev": [101087], "entries": [{"id": 124837, "definitionId": 129675, "maxRanks": 1, "type": "passive", "name": "Quick Sip", "spellId": 388505, "icon": "achievement_faction_brewmaster", "index": 100}]}, {"id": 101071, "name": "Hit Scheme", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [101070, 101067, 101084], "prev": [101065, 101072], "entries": [{"id": 124845, "definitionId": 129683, "maxRanks": 1, "type": "passive", "name": "Hit Scheme", "spellId": 383695, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101085, "name": "Elixir of Determination", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101084, 101710], "prev": [101086, 101072], "entries": [{"id": 124862, "definitionId": 129700, "maxRanks": 1, "type": "passive", "name": "Elixir of Determination", "spellId": 455139, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101202, "name": "Special Delivery / Rushing Jade Wind", "type": "choice", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [101710, 101201, 101076], "prev": [101086, 101063], "entries": [{"id": 125008, "definitionId": 129846, "maxRanks": 1, "type": "passive", "name": "Special Delivery", "spellId": 196730, "icon": "achievement_brewery_2", "index": 100}, {"id": 125007, "definitionId": 129845, "maxRanks": 1, "type": "active", "name": "Rushing Jade Wind", "spellId": 116847, "icon": "ability_monk_rushingjadewind", "index": 200}]}, {"id": 101070, "name": "Celestial Flames", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101069], "prev": [101071], "entries": [{"id": 124844, "definitionId": 129682, "maxRanks": 1, "type": "passive", "name": "Celestial Flames", "spellId": 325177, "icon": "inv_misc_volatilefire", "index": 100}]}, {"id": 101067, "name": "Celestial Brew", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101069, 102004, 101068], "prev": [101071], "entries": [{"id": 124841, "definitionId": 129679, "maxRanks": 1, "type": "active", "name": "Celestial Brew", "spellId": 322507, "icon": "ability_monk_ironskinbrew", "index": 100}]}, {"id": 101084, "name": "August Blessing", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102004, 101075], "prev": [101085, 101071], "entries": [{"id": 124861, "definitionId": 129699, "maxRanks": 1, "type": "passive", "name": "August Blessing", "spellId": 454483, "icon": "inv_celestialserpentmount", "index": 100}]}, {"id": 101710, "name": "One With the Wind", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101075, 101083], "prev": [101202, 101085], "entries": [{"id": 125611, "definitionId": 130443, "maxRanks": 1, "type": "passive", "name": "One With the Wind", "spellId": 454484, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 101201, "name": "Zen Meditation", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101083, 101078, 101077], "prev": [101202], "entries": [{"id": 125006, "definitionId": 129844, "maxRanks": 1, "type": "active", "name": "Zen Meditation", "spellId": 115176, "icon": "ability_monk_zenmeditation", "index": 100}]}, {"id": 101076, "name": "Strike At Dawn", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101078], "prev": [101202], "entries": [{"id": 124850, "definitionId": 129688, "maxRanks": 1, "type": "passive", "name": "Strike At Dawn", "spellId": 455043, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101069, "name": "Breath of Fire", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101188, 101068], "prev": [101067, 101070], "entries": [{"id": 124843, "definitionId": 129681, "maxRanks": 1, "type": "active", "name": "Breath of Fire", "spellId": 115181, "icon": "ability_monk_breathoffire", "index": 100}]}, {"id": 102004, "name": "Gai Plin's Imperial Brew", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101068, 101190], "prev": [101084, 101067], "entries": [{"id": 124859, "definitionId": 129697, "maxRanks": 1, "type": "passive", "name": "Gai Plin's Imperial Brew", "spellId": 383700, "icon": "inv_misc_beer_06", "index": 100}]}, {"id": 101075, "name": "Invoke Niuzao, the Black Ox", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101190, 101074, 101082], "prev": [101710, 101084], "entries": [{"id": 124849, "definitionId": 129687, "maxRanks": 1, "type": "active", "name": "Invoke Niuzao, the Black Ox", "spellId": 132578, "icon": "spell_monk_brewmaster_spec", "index": 100}]}, {"id": 101083, "name": "Tranquil Spirit", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101082, 101077], "prev": [101201, 101710], "entries": [{"id": 124860, "definitionId": 129698, "maxRanks": 1, "type": "passive", "name": "Tranquil Spirit", "spellId": 393357, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101078, "name": "Shadowboxing Treads / Fluidity of Motion", "type": "choice", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101077, 101080], "prev": [101201, 101076], "entries": [{"id": 124853, "definitionId": 129691, "maxRanks": 1, "type": "passive", "name": "Shadowboxing Treads", "spellId": 387638, "icon": "ability_monk_roundhousekick", "index": 100}, {"id": 124852, "definitionId": 129690, "maxRanks": 1, "type": "passive", "name": "Fluidity of Motion", "spellId": 387230, "icon": "ability_monk_standingkick", "index": 200}]}, {"id": 101188, "name": "Scalding Brew / Sal'salabim's Strength", "type": "choice", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101187, 101189], "prev": [101069], "entries": [{"id": 124989, "definitionId": 129827, "maxRanks": 1, "type": "passive", "name": "Scalding Brew", "spellId": 383698, "icon": "spell_brew_bolt_dark", "index": 100}, {"id": 124988, "definitionId": 129826, "maxRanks": 1, "type": "passive", "name": "Sal'salabim's Strength", "spellId": 383697, "icon": "ability_warrior_unrelentingassault", "index": 200}]}, {"id": 101068, "name": "Fortifying Brew: Determination", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101189], "prev": [101069, 101067, 102004], "entries": [{"id": 124842, "definitionId": 129680, "maxRanks": 1, "type": "active", "name": "Fortifying Brew: Determination", "spellId": 322960, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101190, "name": "Bob and Weave / Black Ox Brew", "type": "choice", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101189, 101197], "prev": [101075, 102004], "entries": [{"id": 124992, "definitionId": 129830, "maxRanks": 1, "type": "passive", "name": "Bob and Weave", "spellId": 280515, "icon": "ability_creature_cursed_04", "index": 100}, {"id": 124991, "definitionId": 129829, "maxRanks": 1, "type": "active", "name": "Black Ox Brew", "spellId": 115399, "icon": "ability_monk_chibrew", "index": 200}]}, {"id": 101074, "name": "Walk with the Ox", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [101197, 101073, 101194], "prev": [101075], "entries": [{"id": 124848, "definitionId": 129686, "maxRanks": 2, "type": "passive", "name": "Walk with the Ox", "spellId": 387219, "icon": "monk_stance_drunkenox", "index": 100}]}, {"id": 101082, "name": "Light Brewing / Training of Niuzao", "type": "choice", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101194, 101081], "prev": [101083, 101075], "entries": [{"id": 124858, "definitionId": 129696, "maxRanks": 1, "type": "passive", "name": "Light Brewing", "spellId": 325093, "icon": "spell_brew_wheat", "index": 100}, {"id": 124857, "definitionId": 129695, "maxRanks": 1, "type": "passive", "name": "Training of Niuzao", "spellId": 383714, "icon": "monk_stance_drunkenox", "index": 200}]}, {"id": 101077, "name": "Pretense of Instability", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101081], "prev": [101083, 101078, 101201], "entries": [{"id": 124851, "definitionId": 129689, "maxRanks": 1, "type": "passive", "name": "Pretense of Instability", "spellId": 393516, "icon": "inv_misc_archaeology_vrykuldrinkinghorn", "index": 100}]}, {"id": 101080, "name": "Counterstrike", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101081, 101079], "prev": [101078], "entries": [{"id": 124855, "definitionId": 129693, "maxRanks": 1, "type": "passive", "name": "Counterstrike", "spellId": 383785, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101187, "name": "Dragonfire Brew / Charred Passions", "type": "choice", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101199], "prev": [101188], "entries": [{"id": 124987, "definitionId": 129825, "maxRanks": 1, "type": "passive", "name": "Dragonfire Brew", "spellId": 383994, "icon": "spell_fire_burnout", "index": 100}, {"id": 124986, "definitionId": 129824, "maxRanks": 1, "type": "passive", "name": "Charred Passions", "spellId": 386965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101189, "name": "High Tolerance", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101199], "prev": [101068, 101188, 101190], "entries": [{"id": 124990, "definitionId": 129828, "maxRanks": 2, "type": "passive", "name": "High Tolerance", "spellId": 196737, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101197, "name": "Exploding Keg", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101199, 101196], "prev": [101074, 101190], "entries": [{"id": 125001, "definitionId": 129839, "maxRanks": 1, "type": "active", "name": "Exploding Keg", "spellId": 325153, "icon": "archaeology_5_0_emptykegofbrewfatherxinwoyin", "index": 100}]}, {"id": 101073, "name": "Improved Invoke Niuzao, the Black Ox", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101196, 101195], "prev": [101074], "entries": [{"id": 124847, "definitionId": 129685, "maxRanks": 1, "type": "passive", "name": "Improved Invoke Niuzao, the Black Ox", "spellId": 322740, "icon": "spell_monk_brewmaster_spec", "index": 100}]}, {"id": 101194, "name": "Elusive Footwork", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101195, 101193], "prev": [101074, 101082], "entries": [{"id": 124998, "definitionId": 129836, "maxRanks": 1, "type": "passive", "name": "Elusive Footwork", "spellId": 387046, "icon": "ability_monk_shuffle", "index": 100}]}, {"id": 101081, "name": "Anvil & Stave", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101193], "prev": [101082, 101077, 101080], "entries": [{"id": 124856, "definitionId": 129694, "maxRanks": 2, "type": "passive", "name": "Anvil & Stave", "spellId": 386937, "icon": "ability_monk_elusiveale", "index": 100}]}, {"id": 101079, "name": "Face Palm", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101193], "prev": [101080], "entries": [{"id": 124854, "definitionId": 129692, "maxRanks": 1, "type": "passive", "name": "Face Palm", "spellId": 389942, "icon": "ability_monk_tigerpalm", "index": 100}]}, {"id": 101199, "name": "Ox Stance", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101198, 101711], "prev": [101189, 101187, 101197], "entries": [{"id": 125004, "definitionId": 129842, "maxRanks": 1, "type": "passive", "name": "Ox Stance", "spellId": 455068, "icon": "ability_monk_leeroftheox", "index": 100}]}, {"id": 101196, "name": "Stormstout's Last Keg", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101073, 101197], "entries": [{"id": 125000, "definitionId": 129838, "maxRanks": 1, "type": "passive", "name": "Stormstout's Last Keg", "spellId": 383707, "icon": "achievement_brewery_2", "index": 100}]}, {"id": 101195, "name": "Blackout Combo", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101194, 101073], "entries": [{"id": 124999, "definitionId": 129837, "maxRanks": 1, "type": "passive", "name": "Blackout Combo", "spellId": 196736, "icon": "ability_monk_blackoutkick", "index": 100}]}, {"id": 101193, "name": "Press the Advantage / Weapons of Order", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101192, 101712], "prev": [101081, 101079, 101194], "entries": [{"id": 124997, "definitionId": 129835, "maxRanks": 1, "type": "passive", "name": "Press the Advantage", "spellId": 418359, "icon": "inv__fistofthewhitetiger", "index": 100}, {"id": 124996, "definitionId": 129834, "maxRanks": 1, "type": "active", "name": "Weapons of Order", "spellId": 387184, "icon": "ability_bastion_monk", "index": 200}]}, {"id": 101198, "name": "Black Ox Adept", "type": "single", "posX": 10800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101199], "entries": [{"id": 125003, "definitionId": 129841, "maxRanks": 1, "type": "passive", "name": "Black Ox Adept", "spellId": 455079, "icon": "spell_monk_brewmastertraining", "index": 100}]}, {"id": 101711, "name": "Heightened Guard", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101199], "entries": [{"id": 125002, "definitionId": 129840, "maxRanks": 1, "type": "passive", "name": "Heightened Guard", "spellId": 455081, "icon": "ability_monk_guard", "index": 100}]}, {"id": 101192, "name": "Call to Arms", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101193], "entries": [{"id": 124995, "definitionId": 129833, "maxRanks": 1, "type": "passive", "name": "Call to Arms", "spellId": 397251, "icon": "ability_bastion_monk", "index": 100}]}, {"id": 101712, "name": "Chi Surge", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101193], "entries": [{"id": 124994, "definitionId": 129832, "maxRanks": 1, "type": "passive", "name": "Chi Surge", "spellId": 393400, "icon": "ability_monk_chiexplosion", "index": 100}]}], "heroNodes": [{"id": 101248, "name": "Flurry Strikes", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 65, "next": [101247, 101249, 101246], "prev": [], "entries": [{"id": 125069, "definitionId": 129901, "maxRanks": 1, "type": "passive", "name": "Flurry Strikes", "spellId": 450615, "icon": "inv_ability_shadopanmonk_flurrystrikes", "index": 100}], "freeNode": true}, {"id": 101247, "name": "Pride of Pandaria / High Impact", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101254], "prev": [101248], "entries": [{"id": 125068, "definitionId": 129900, "maxRanks": 1, "type": "passive", "name": "Pride of Pandaria", "spellId": 450979, "icon": "inv_staff_2h_pandarenmonk_c_01", "index": 100}, {"id": 125067, "definitionId": 129899, "maxRanks": 1, "type": "passive", "name": "High Impact", "spellId": 450982, "icon": "ability_monk_powerstrikes", "index": 200}]}, {"id": 101249, "name": "Veteran's Eye", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101250], "prev": [101248], "entries": [{"id": 125070, "definitionId": 129902, "maxRanks": 1, "type": "passive", "name": "Veteran's Eye", "spellId": 450987, "icon": "ability_monk_provoke", "index": 100}]}, {"id": 101246, "name": "Martial Precision", "type": "single", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101245], "prev": [101248], "entries": [{"id": 125066, "definitionId": 129898, "maxRanks": 1, "type": "passive", "name": "Martial Precision", "spellId": 450990, "icon": "ability_monk_jab", "index": 100}]}, {"id": 101254, "name": "Protect and Serve / Lead from the Front", "type": "choice", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101253], "prev": [101247], "entries": [{"id": 125076, "definitionId": 129908, "maxRanks": 1, "type": "passive", "name": "Protect and Serve", "spellId": 450984, "icon": "ability_monk_vivify", "index": 100}, {"id": 125075, "definitionId": 129907, "maxRanks": 1, "type": "passive", "name": "Lead from the Front", "spellId": 450985, "icon": "ability_monk_quipunch", "index": 200}]}, {"id": 101250, "name": "One Versus Many", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101251], "prev": [101249], "entries": [{"id": 125071, "definitionId": 129903, "maxRanks": 1, "type": "passive", "name": "One Versus Many", "spellId": 450988, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101245, "name": "Whirling Steel / Predictive Training", "type": "choice", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101244], "prev": [101246], "entries": [{"id": 125065, "definitionId": 129897, "maxRanks": 1, "type": "passive", "name": "Whirling Steel", "spellId": 450991, "icon": "ability_whirlwind", "index": 100}, {"id": 125064, "definitionId": 129896, "maxRanks": 1, "type": "passive", "name": "Predictive Training", "spellId": 450992, "icon": "ability_monk_domeofmist", "index": 200}]}, {"id": 101253, "name": "Against All Odds", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101254], "entries": [{"id": 125074, "definitionId": 129906, "maxRanks": 1, "type": "passive", "name": "Against All Odds", "spellId": 450986, "icon": "achievement_legionpvp6tier1", "index": 100}]}, {"id": 101251, "name": "Efficient Training", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101250], "entries": [{"id": 125072, "definitionId": 129904, "maxRanks": 1, "type": "passive", "name": "Efficient Training", "spellId": 450989, "icon": "inv_fistofthewhitetiger", "index": 100}]}, {"id": 101244, "name": "Vigilant Watch", "type": "single", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101245], "entries": [{"id": 125063, "definitionId": 129895, "maxRanks": 1, "type": "passive", "name": "Vigilant Watch", "spellId": 450993, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 101252, "name": "Wisdom of the Wall", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 65, "next": [], "prev": [101244, 101253, 101251], "entries": [{"id": 125073, "definitionId": 129905, "maxRanks": 1, "type": "passive", "name": "Wisdom of the Wall", "spellId": 450994, "icon": "inv_legendary_sigilofwisdom", "index": 100}]}, {"id": 101223, "name": "Aspect of Harmony", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 66, "requiresNode": 101067, "next": [101222, 101224, 101230], "prev": [], "entries": [{"id": 125033, "definitionId": 129869, "maxRanks": 1, "type": "passive", "name": "Aspect of Harmony", "spellId": 450508, "icon": "inv_ability_masterofharmonymonk_aspectofharmony", "index": 100}], "freeNode": true}, {"id": 101222, "name": "Manifestation", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "requiresNode": 102433, "next": [101221], "prev": [101223], "entries": [{"id": 125032, "definitionId": 129868, "maxRanks": 1, "type": "passive", "name": "Manifestation", "spellId": 450875, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 100}]}, {"id": 101224, "name": "Purified Spirit / Harmonic Gambit", "type": "choice", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101225], "prev": [101223], "entries": [{"id": 125035, "definitionId": 129871, "maxRanks": 1, "type": "passive", "name": "Purified Spirit", "spellId": 450867, "icon": "ability_monk_explodingjadeblossom", "index": 100}, {"id": 125034, "definitionId": 129870, "maxRanks": 1, "type": "passive", "name": "Harmonic Gambit", "spellId": 450870, "icon": "passive_monk_teachingsofmonastery", "index": 200}]}, {"id": 101230, "name": "Balanced Stratagem", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101229], "prev": [101223], "entries": [{"id": 125043, "definitionId": 129879, "maxRanks": 1, "type": "passive", "name": "Balanced Stratagem", "spellId": 450889, "icon": "ability_monk_sphereharmonydiscord", "index": 100}]}, {"id": 101221, "name": "Tiger's Vigor / Roar from the Heavens", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101220], "prev": [101222], "entries": [{"id": 125031, "definitionId": 129867, "maxRanks": 1, "type": "passive", "name": "Tiger's Vigor", "spellId": 451041, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125030, "definitionId": 129866, "maxRanks": 1, "type": "passive", "name": "Roar from the Heavens", "spellId": 451043, "icon": "inv_celestialserpentmount", "index": 200}]}, {"id": 101225, "name": "Endless Draught", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101226], "prev": [101224], "entries": [{"id": 125036, "definitionId": 129872, "maxRanks": 1, "type": "passive", "name": "Endless Draught", "spellId": 450892, "icon": "inv_drink_25_honeytea", "index": 100}]}, {"id": 101229, "name": "Mantra of Purity / Mantra of Tenacity", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101228], "prev": [101230], "entries": [{"id": 125042, "definitionId": 129878, "maxRanks": 1, "type": "passive", "name": "Mantra of Purity", "spellId": 451036, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 125041, "definitionId": 129877, "maxRanks": 1, "type": "passive", "name": "Mantra of Tenacity", "spellId": 451029, "icon": "spell_monk_brewmastertraining", "index": 200}]}, {"id": 101220, "name": "Overwhelming Force", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101221], "entries": [{"id": 125029, "definitionId": 129865, "maxRanks": 1, "type": "passive", "name": "Overwhelming Force", "spellId": 451024, "icon": "ability_titankeeper_piercingcorruption", "index": 100}]}, {"id": 101226, "name": "Path of Resurgence / Way of a Thousand Strikes", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101225], "entries": [{"id": 125038, "definitionId": 129874, "maxRanks": 1, "type": "passive", "name": "Path of Resurgence", "spellId": 450912, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 125037, "definitionId": 129873, "maxRanks": 1, "type": "passive", "name": "Way of a Thousand Strikes", "spellId": 450965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101228, "name": "Clarity of Purpose", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101229], "entries": [{"id": 125040, "definitionId": 129876, "maxRanks": 1, "type": "passive", "name": "Clarity of Purpose", "spellId": 451017, "icon": "ability_titankeeper_cleanse", "index": 100}]}, {"id": 101227, "name": "Coalescence", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 66, "next": [], "prev": [101228, 101220, 101226], "entries": [{"id": 125039, "definitionId": 129875, "maxRanks": 1, "type": "passive", "name": "Coalescence", "spellId": 450529, "icon": "ability_monk_effuse", "index": 100}]}], "subTreeNodes": [{"id": 101219, "name": "Master of Harmony / Shado-Pan", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125028, "type": "subtree", "name": "Master of Harmony", "traitSubTreeId": 66, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-masterofharmony", "nodes": [101223, 101222, 101224, 101230, 101221, 101225, 101229, 101220, 101226, 101228, 101227]}, {"id": 125027, "type": "subtree", "name": "Shado-Pan", "traitSubTreeId": 65, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-shadopan", "nodes": [101248, 101247, 101249, 101246, 101254, 101250, 101245, 101253, 101251, 101244, 101252]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101105, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]} \ No newline at end of file +{"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Brewmaster", "specId": 268, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101090], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101090, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 102433], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101090, "name": "Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184], "prev": [101185, 101149], "entries": [{"id": 124867, "definitionId": 129705, "maxRanks": 1, "type": "active", "name": "Detox", "spellId": 218164, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [102433, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102433, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101090, 101153, 101148], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101090, 101185], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 102433, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101146, 101160, 101145], "entries": [{"id": 126502, "definitionId": 131328, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 126501, "definitionId": 131327, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 123986, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101145, 102433], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101181], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101181], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101181, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101158, 101166, 102433], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101172], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101172], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101172, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101181, "name": "Dance of the Wind / Dampen Harm", "type": "choice", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124979, "definitionId": 129817, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 414132, "icon": "ability_monk_dematerialize", "index": 100}, {"id": 124978, "definitionId": 129816, "maxRanks": 1, "type": "active", "name": "Dampen Harm", "spellId": 122278, "icon": "ability_monk_dampenharm", "index": 200}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101172, "name": "Summon Black Ox Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101163, 101173, 101165], "entries": [{"id": 124967, "definitionId": 129805, "maxRanks": 1, "type": "active", "name": "Summon Black Ox Statue", "spellId": 115315, "icon": "monk_ability_summonoxstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101181, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101135, 101174, 101172], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101088, "name": "Keg Smash", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101064, 101087], "prev": [], "entries": [{"id": 124865, "definitionId": 129703, "maxRanks": 1, "type": "active", "name": "Keg Smash", "spellId": 121253, "icon": "achievement_brewery_2", "index": 100}]}, {"id": 101064, "name": "Purifying Brew", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101065, 101072], "prev": [101088], "entries": [{"id": 124838, "definitionId": 129676, "maxRanks": 1, "type": "active", "name": "Purifying Brew", "spellId": 119582, "icon": "inv_misc_beer_06", "index": 100}]}, {"id": 101087, "name": "Shuffle", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101086, 101063], "prev": [101088], "entries": [{"id": 124864, "definitionId": 129702, "maxRanks": 1, "type": "passive", "name": "Shuffle", "spellId": 322120, "icon": "ability_monk_shuffle", "index": 100}]}, {"id": 101065, "name": "Staggering Strikes", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101071], "prev": [101064], "entries": [{"id": 124839, "definitionId": 129677, "maxRanks": 1, "type": "passive", "name": "Staggering Strikes", "spellId": 387625, "icon": "ability_monk_blackoutstrike", "index": 100}]}, {"id": 101072, "name": "Gift of the Ox", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [101071, 101085], "prev": [101064], "entries": [{"id": 124846, "definitionId": 129684, "maxRanks": 1, "type": "passive", "name": "Gift of the Ox", "spellId": 124502, "icon": "ability_druid_giftoftheearthmother", "index": 100}]}, {"id": 101086, "name": "Spirit of the Ox", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [101085, 101202], "prev": [101087], "entries": [{"id": 124863, "definitionId": 129701, "maxRanks": 1, "type": "passive", "name": "Spirit of the Ox", "spellId": 400629, "icon": "ability_titankeeper_cleansingorb", "index": 100}]}, {"id": 101063, "name": "Quick Sip", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101202], "prev": [101087], "entries": [{"id": 124837, "definitionId": 129675, "maxRanks": 1, "type": "passive", "name": "Quick Sip", "spellId": 388505, "icon": "achievement_faction_brewmaster", "index": 100}]}, {"id": 101071, "name": "Hit Scheme", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [101070, 101067, 101084], "prev": [101065, 101072], "entries": [{"id": 124845, "definitionId": 129683, "maxRanks": 1, "type": "passive", "name": "Hit Scheme", "spellId": 383695, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101085, "name": "Elixir of Determination", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101084, 101710], "prev": [101086, 101072], "entries": [{"id": 124862, "definitionId": 129700, "maxRanks": 1, "type": "passive", "name": "Elixir of Determination", "spellId": 455139, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101202, "name": "Special Delivery / Rushing Jade Wind", "type": "choice", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [101710, 101201, 101076], "prev": [101086, 101063], "entries": [{"id": 125008, "definitionId": 129846, "maxRanks": 1, "type": "passive", "name": "Special Delivery", "spellId": 196730, "icon": "achievement_brewery_2", "index": 100}, {"id": 125007, "definitionId": 129845, "maxRanks": 1, "type": "active", "name": "Rushing Jade Wind", "spellId": 116847, "icon": "ability_monk_rushingjadewind", "index": 200}]}, {"id": 101070, "name": "Celestial Flames", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101069], "prev": [101071], "entries": [{"id": 124844, "definitionId": 129682, "maxRanks": 1, "type": "passive", "name": "Celestial Flames", "spellId": 325177, "icon": "inv_misc_volatilefire", "index": 100}]}, {"id": 101067, "name": "Celestial Brew", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101069, 102004, 101068], "prev": [101071], "entries": [{"id": 124841, "definitionId": 129679, "maxRanks": 1, "type": "active", "name": "Celestial Brew", "spellId": 322507, "icon": "ability_monk_ironskinbrew", "index": 100}]}, {"id": 101084, "name": "August Blessing", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102004, 101075], "prev": [101085, 101071], "entries": [{"id": 124861, "definitionId": 129699, "maxRanks": 1, "type": "passive", "name": "August Blessing", "spellId": 454483, "icon": "inv_celestialserpentmount", "index": 100}]}, {"id": 101710, "name": "One With the Wind", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101075, 101083], "prev": [101202, 101085], "entries": [{"id": 125611, "definitionId": 130443, "maxRanks": 1, "type": "passive", "name": "One With the Wind", "spellId": 454484, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 101201, "name": "Zen Meditation", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101083, 101078, 101077], "prev": [101202], "entries": [{"id": 125006, "definitionId": 129844, "maxRanks": 1, "type": "active", "name": "Zen Meditation", "spellId": 115176, "icon": "ability_monk_zenmeditation", "index": 100}]}, {"id": 101076, "name": "Strike At Dawn", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101078], "prev": [101202], "entries": [{"id": 124850, "definitionId": 129688, "maxRanks": 1, "type": "passive", "name": "Strike At Dawn", "spellId": 455043, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101069, "name": "Breath of Fire", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101188, 101068], "prev": [101067, 101070], "entries": [{"id": 124843, "definitionId": 129681, "maxRanks": 1, "type": "active", "name": "Breath of Fire", "spellId": 115181, "icon": "ability_monk_breathoffire", "index": 100}]}, {"id": 102004, "name": "Gai Plin's Imperial Brew", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101068, 101190], "prev": [101084, 101067], "entries": [{"id": 124859, "definitionId": 129697, "maxRanks": 1, "type": "passive", "name": "Gai Plin's Imperial Brew", "spellId": 383700, "icon": "inv_misc_beer_06", "index": 100}]}, {"id": 101075, "name": "Invoke Niuzao, the Black Ox", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101190, 101074, 101082], "prev": [101710, 101084], "entries": [{"id": 124849, "definitionId": 129687, "maxRanks": 1, "type": "active", "name": "Invoke Niuzao, the Black Ox", "spellId": 132578, "icon": "spell_monk_brewmaster_spec", "index": 100}]}, {"id": 101083, "name": "Tranquil Spirit", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101082, 101077], "prev": [101201, 101710], "entries": [{"id": 124860, "definitionId": 129698, "maxRanks": 1, "type": "passive", "name": "Tranquil Spirit", "spellId": 393357, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101078, "name": "Shadowboxing Treads / Fluidity of Motion", "type": "choice", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101077, 101080], "prev": [101201, 101076], "entries": [{"id": 124853, "definitionId": 129691, "maxRanks": 1, "type": "passive", "name": "Shadowboxing Treads", "spellId": 387638, "icon": "ability_monk_roundhousekick", "index": 100}, {"id": 124852, "definitionId": 129690, "maxRanks": 1, "type": "passive", "name": "Fluidity of Motion", "spellId": 387230, "icon": "ability_monk_standingkick", "index": 200}]}, {"id": 101188, "name": "Scalding Brew / Sal'salabim's Strength", "type": "choice", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101187, 101189], "prev": [101069], "entries": [{"id": 124989, "definitionId": 129827, "maxRanks": 1, "type": "passive", "name": "Scalding Brew", "spellId": 383698, "icon": "spell_brew_bolt_dark", "index": 100}, {"id": 124988, "definitionId": 129826, "maxRanks": 1, "type": "passive", "name": "Sal'salabim's Strength", "spellId": 383697, "icon": "ability_warrior_unrelentingassault", "index": 200}]}, {"id": 101068, "name": "Fortifying Brew: Determination", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101189], "prev": [101069, 101067, 102004], "entries": [{"id": 124842, "definitionId": 129680, "maxRanks": 1, "type": "active", "name": "Fortifying Brew: Determination", "spellId": 322960, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101190, "name": "Bob and Weave / Black Ox Brew", "type": "choice", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101189, 101197], "prev": [101075, 102004], "entries": [{"id": 124992, "definitionId": 129830, "maxRanks": 1, "type": "passive", "name": "Bob and Weave", "spellId": 280515, "icon": "ability_creature_cursed_04", "index": 100}, {"id": 124991, "definitionId": 129829, "maxRanks": 1, "type": "active", "name": "Black Ox Brew", "spellId": 115399, "icon": "ability_monk_chibrew", "index": 200}]}, {"id": 101074, "name": "Walk with the Ox", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [101197, 101073, 101194], "prev": [101075], "entries": [{"id": 124848, "definitionId": 129686, "maxRanks": 2, "type": "passive", "name": "Walk with the Ox", "spellId": 387219, "icon": "monk_stance_drunkenox", "index": 100}]}, {"id": 101082, "name": "Light Brewing / Training of Niuzao", "type": "choice", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101194, 101081], "prev": [101083, 101075], "entries": [{"id": 124858, "definitionId": 129696, "maxRanks": 1, "type": "passive", "name": "Light Brewing", "spellId": 325093, "icon": "spell_brew_wheat", "index": 100}, {"id": 124857, "definitionId": 129695, "maxRanks": 1, "type": "passive", "name": "Training of Niuzao", "spellId": 383714, "icon": "monk_stance_drunkenox", "index": 200}]}, {"id": 101077, "name": "Pretense of Instability", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101081], "prev": [101083, 101078, 101201], "entries": [{"id": 124851, "definitionId": 129689, "maxRanks": 1, "type": "passive", "name": "Pretense of Instability", "spellId": 393516, "icon": "inv_misc_archaeology_vrykuldrinkinghorn", "index": 100}]}, {"id": 101080, "name": "Counterstrike", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101081, 101079], "prev": [101078], "entries": [{"id": 124855, "definitionId": 129693, "maxRanks": 1, "type": "passive", "name": "Counterstrike", "spellId": 383785, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101187, "name": "Dragonfire Brew / Charred Passions", "type": "choice", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101199], "prev": [101188], "entries": [{"id": 124987, "definitionId": 129825, "maxRanks": 1, "type": "passive", "name": "Dragonfire Brew", "spellId": 383994, "icon": "spell_fire_burnout", "index": 100}, {"id": 124986, "definitionId": 129824, "maxRanks": 1, "type": "passive", "name": "Charred Passions", "spellId": 386965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101189, "name": "High Tolerance", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101199], "prev": [101068, 101188, 101190], "entries": [{"id": 124990, "definitionId": 129828, "maxRanks": 2, "type": "passive", "name": "High Tolerance", "spellId": 196737, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101197, "name": "Exploding Keg", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101199, 101196], "prev": [101074, 101190], "entries": [{"id": 125001, "definitionId": 129839, "maxRanks": 1, "type": "active", "name": "Exploding Keg", "spellId": 325153, "icon": "archaeology_5_0_emptykegofbrewfatherxinwoyin", "index": 100}]}, {"id": 101073, "name": "Improved Invoke Niuzao, the Black Ox", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101196, 101195], "prev": [101074], "entries": [{"id": 124847, "definitionId": 129685, "maxRanks": 1, "type": "passive", "name": "Improved Invoke Niuzao, the Black Ox", "spellId": 322740, "icon": "spell_monk_brewmaster_spec", "index": 100}]}, {"id": 101194, "name": "Elusive Footwork", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101195, 101193], "prev": [101074, 101082], "entries": [{"id": 124998, "definitionId": 129836, "maxRanks": 1, "type": "passive", "name": "Elusive Footwork", "spellId": 387046, "icon": "ability_monk_shuffle", "index": 100}]}, {"id": 101081, "name": "Anvil & Stave", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101193], "prev": [101082, 101077, 101080], "entries": [{"id": 124856, "definitionId": 129694, "maxRanks": 2, "type": "passive", "name": "Anvil & Stave", "spellId": 386937, "icon": "ability_monk_elusiveale", "index": 100}]}, {"id": 101079, "name": "Face Palm", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101193], "prev": [101080], "entries": [{"id": 124854, "definitionId": 129692, "maxRanks": 1, "type": "passive", "name": "Face Palm", "spellId": 389942, "icon": "ability_monk_tigerpalm", "index": 100}]}, {"id": 101199, "name": "Ox Stance", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101198, 101711], "prev": [101189, 101187, 101197], "entries": [{"id": 125004, "definitionId": 129842, "maxRanks": 1, "type": "passive", "name": "Ox Stance", "spellId": 455068, "icon": "ability_monk_leeroftheox", "index": 100}]}, {"id": 101196, "name": "Stormstout's Last Keg", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101073, 101197], "entries": [{"id": 125000, "definitionId": 129838, "maxRanks": 1, "type": "passive", "name": "Stormstout's Last Keg", "spellId": 383707, "icon": "achievement_brewery_2", "index": 100}]}, {"id": 101195, "name": "Blackout Combo", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101194, 101073], "entries": [{"id": 124999, "definitionId": 129837, "maxRanks": 1, "type": "passive", "name": "Blackout Combo", "spellId": 196736, "icon": "ability_monk_blackoutkick", "index": 100}]}, {"id": 101193, "name": "Press the Advantage / Weapons of Order", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101192, 101712], "prev": [101081, 101079, 101194], "entries": [{"id": 124997, "definitionId": 129835, "maxRanks": 1, "type": "passive", "name": "Press the Advantage", "spellId": 418359, "icon": "inv__fistofthewhitetiger", "index": 100}, {"id": 124996, "definitionId": 129834, "maxRanks": 1, "type": "active", "name": "Weapons of Order", "spellId": 387184, "icon": "inv_ability_monk_weaponsoforder", "index": 200}]}, {"id": 101198, "name": "Black Ox Adept", "type": "single", "posX": 10800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101199], "entries": [{"id": 125003, "definitionId": 129841, "maxRanks": 1, "type": "passive", "name": "Black Ox Adept", "spellId": 455079, "icon": "spell_monk_brewmastertraining", "index": 100}]}, {"id": 101711, "name": "Heightened Guard", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101199], "entries": [{"id": 125002, "definitionId": 129840, "maxRanks": 1, "type": "passive", "name": "Heightened Guard", "spellId": 455081, "icon": "ability_monk_guard", "index": 100}]}, {"id": 101192, "name": "Call to Arms", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101193], "entries": [{"id": 124995, "definitionId": 129833, "maxRanks": 1, "type": "passive", "name": "Call to Arms", "spellId": 397251, "icon": "inv_ability_monk_jadefirestomp", "index": 100}]}, {"id": 101712, "name": "Chi Surge", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101193], "entries": [{"id": 124994, "definitionId": 129832, "maxRanks": 1, "type": "passive", "name": "Chi Surge", "spellId": 393400, "icon": "ability_monk_chiexplosion", "index": 100}]}], "heroNodes": [{"id": 101248, "name": "Flurry Strikes", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 65, "next": [101247, 101249, 101246], "prev": [], "entries": [{"id": 125069, "definitionId": 129901, "maxRanks": 1, "type": "passive", "name": "Flurry Strikes", "spellId": 450615, "icon": "inv_ability_shadopanmonk_flurrystrikes", "index": 100}], "freeNode": true}, {"id": 101247, "name": "Pride of Pandaria / High Impact", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101254], "prev": [101248], "entries": [{"id": 125068, "definitionId": 129900, "maxRanks": 1, "type": "passive", "name": "Pride of Pandaria", "spellId": 450979, "icon": "inv_staff_2h_pandarenmonk_c_01", "index": 100}, {"id": 125067, "definitionId": 129899, "maxRanks": 1, "type": "passive", "name": "High Impact", "spellId": 450982, "icon": "ability_monk_powerstrikes", "index": 200}]}, {"id": 101249, "name": "Veteran's Eye", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101250], "prev": [101248], "entries": [{"id": 125070, "definitionId": 129902, "maxRanks": 1, "type": "passive", "name": "Veteran's Eye", "spellId": 450987, "icon": "ability_monk_provoke", "index": 100}]}, {"id": 101246, "name": "Martial Precision", "type": "single", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101245], "prev": [101248], "entries": [{"id": 125066, "definitionId": 129898, "maxRanks": 1, "type": "passive", "name": "Martial Precision", "spellId": 450990, "icon": "ability_monk_jab", "index": 100}]}, {"id": 101254, "name": "Protect and Serve / Lead from the Front", "type": "choice", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101253], "prev": [101247], "entries": [{"id": 125076, "definitionId": 129908, "maxRanks": 1, "type": "passive", "name": "Protect and Serve", "spellId": 450984, "icon": "ability_monk_vivify", "index": 100}, {"id": 125075, "definitionId": 129907, "maxRanks": 1, "type": "passive", "name": "Lead from the Front", "spellId": 450985, "icon": "ability_monk_quipunch", "index": 200}]}, {"id": 101250, "name": "One Versus Many", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101251], "prev": [101249], "entries": [{"id": 125071, "definitionId": 129903, "maxRanks": 1, "type": "passive", "name": "One Versus Many", "spellId": 450988, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101245, "name": "Whirling Steel / Predictive Training", "type": "choice", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101244], "prev": [101246], "entries": [{"id": 125065, "definitionId": 129897, "maxRanks": 1, "type": "passive", "name": "Whirling Steel", "spellId": 450991, "icon": "ability_whirlwind", "index": 100}, {"id": 125064, "definitionId": 129896, "maxRanks": 1, "type": "passive", "name": "Predictive Training", "spellId": 450992, "icon": "ability_monk_domeofmist", "index": 200}]}, {"id": 101253, "name": "Against All Odds", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101254], "entries": [{"id": 125074, "definitionId": 129906, "maxRanks": 1, "type": "passive", "name": "Against All Odds", "spellId": 450986, "icon": "achievement_legionpvp6tier1", "index": 100}]}, {"id": 101251, "name": "Efficient Training", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101250], "entries": [{"id": 125072, "definitionId": 129904, "maxRanks": 1, "type": "passive", "name": "Efficient Training", "spellId": 450989, "icon": "inv_fistofthewhitetiger", "index": 100}]}, {"id": 101244, "name": "Vigilant Watch", "type": "single", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101245], "entries": [{"id": 125063, "definitionId": 129895, "maxRanks": 1, "type": "passive", "name": "Vigilant Watch", "spellId": 450993, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 101252, "name": "Wisdom of the Wall", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 65, "next": [], "prev": [101244, 101253, 101251], "entries": [{"id": 125073, "definitionId": 129905, "maxRanks": 1, "type": "passive", "name": "Wisdom of the Wall", "spellId": 450994, "icon": "inv_legendary_sigilofwisdom", "index": 100}]}, {"id": 101223, "name": "Aspect of Harmony", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 66, "requiresNode": 101067, "next": [101222, 101224, 101230], "prev": [], "entries": [{"id": 125033, "definitionId": 129869, "maxRanks": 1, "type": "passive", "name": "Aspect of Harmony", "spellId": 450508, "icon": "inv_ability_masterofharmonymonk_aspectofharmony", "index": 100}], "freeNode": true}, {"id": 101222, "name": "Manifestation", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "requiresNode": 102433, "next": [101221], "prev": [101223], "entries": [{"id": 125032, "definitionId": 129868, "maxRanks": 1, "type": "passive", "name": "Manifestation", "spellId": 450875, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 100}]}, {"id": 101224, "name": "Purified Spirit / Harmonic Gambit", "type": "choice", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101225], "prev": [101223], "entries": [{"id": 125035, "definitionId": 129871, "maxRanks": 1, "type": "passive", "name": "Purified Spirit", "spellId": 450867, "icon": "ability_monk_explodingjadeblossom", "index": 100}, {"id": 125034, "definitionId": 129870, "maxRanks": 1, "type": "passive", "name": "Harmonic Gambit", "spellId": 450870, "icon": "passive_monk_teachingsofmonastery", "index": 200}]}, {"id": 101230, "name": "Balanced Stratagem", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101229], "prev": [101223], "entries": [{"id": 125043, "definitionId": 129879, "maxRanks": 1, "type": "passive", "name": "Balanced Stratagem", "spellId": 450889, "icon": "ability_monk_sphereharmonydiscord", "index": 100}]}, {"id": 101221, "name": "Tiger's Vigor / Roar from the Heavens", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101220], "prev": [101222], "entries": [{"id": 125031, "definitionId": 129867, "maxRanks": 1, "type": "passive", "name": "Tiger's Vigor", "spellId": 451041, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125030, "definitionId": 129866, "maxRanks": 1, "type": "passive", "name": "Roar from the Heavens", "spellId": 451043, "icon": "inv_celestialserpentmount", "index": 200}]}, {"id": 101225, "name": "Endless Draught", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101226], "prev": [101224], "entries": [{"id": 125036, "definitionId": 129872, "maxRanks": 1, "type": "passive", "name": "Endless Draught", "spellId": 450892, "icon": "inv_drink_25_honeytea", "index": 100}]}, {"id": 101229, "name": "Mantra of Purity / Mantra of Tenacity", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101228], "prev": [101230], "entries": [{"id": 125042, "definitionId": 129878, "maxRanks": 1, "type": "passive", "name": "Mantra of Purity", "spellId": 451036, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 125041, "definitionId": 129877, "maxRanks": 1, "type": "passive", "name": "Mantra of Tenacity", "spellId": 451029, "icon": "spell_monk_brewmastertraining", "index": 200}]}, {"id": 101220, "name": "Overwhelming Force", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101221], "entries": [{"id": 125029, "definitionId": 129865, "maxRanks": 1, "type": "passive", "name": "Overwhelming Force", "spellId": 451024, "icon": "ability_titankeeper_piercingcorruption", "index": 100}]}, {"id": 101226, "name": "Path of Resurgence / Way of a Thousand Strikes", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101225], "entries": [{"id": 125038, "definitionId": 129874, "maxRanks": 1, "type": "passive", "name": "Path of Resurgence", "spellId": 450912, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 125037, "definitionId": 129873, "maxRanks": 1, "type": "passive", "name": "Way of a Thousand Strikes", "spellId": 450965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101228, "name": "Clarity of Purpose", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101229], "entries": [{"id": 125040, "definitionId": 129876, "maxRanks": 1, "type": "passive", "name": "Clarity of Purpose", "spellId": 451017, "icon": "ability_titankeeper_cleanse", "index": 100}]}, {"id": 101227, "name": "Coalescence", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 66, "next": [], "prev": [101228, 101220, 101226], "entries": [{"id": 125039, "definitionId": 129875, "maxRanks": 1, "type": "passive", "name": "Coalescence", "spellId": 450529, "icon": "ability_monk_effuse", "index": 100}]}], "subTreeNodes": [{"id": 101219, "name": "Master of Harmony / Shado-Pan", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125028, "type": "subtree", "name": "Master of Harmony", "traitSubTreeId": 66, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-masterofharmony", "nodes": [101223, 101222, 101224, 101230, 101221, 101225, 101229, 101220, 101226, 101228, 101227]}, {"id": 125027, "type": "subtree", "name": "Shado-Pan", "traitSubTreeId": 65, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-shadopan", "nodes": [101248, 101247, 101249, 101246, 101254, 101250, 101245, 101253, 101251, 101244, 101252]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/monk_mistweaver.json b/simc_support/game_data/data_files/trees/monk_mistweaver.json index c96a88c..fe05e0f 100644 --- a/simc_support/game_data/data_files/trees/monk_mistweaver.json +++ b/simc_support/game_data/data_files/trees/monk_mistweaver.json @@ -1 +1 @@ -{"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Mistweaver", "specId": 270, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101089], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101089, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 102432], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101089, "name": "Improved Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184], "prev": [101185, 101149], "entries": [{"id": 124866, "definitionId": 129704, "maxRanks": 1, "type": "passive", "name": "Improved Detox", "spellId": 388874, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [102432, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102432, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101089, 101153, 101148], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101089, 101185], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 102432, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101146, 101160, 101145], "entries": [{"id": 126500, "definitionId": 131326, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 126499, "definitionId": 131325, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 123986, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101145, 102432], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101139], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101139], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101139, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101158, 101166, 102432], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101164], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101164], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101164, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101139, "name": "Dance of the Wind", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124929, "definitionId": 129767, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 432181, "icon": "ability_monk_dematerialize", "index": 100}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101164, "name": "Summon Jade Serpent Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101173, 101163, 101165], "entries": [{"id": 124958, "definitionId": 129796, "maxRanks": 1, "type": "active", "name": "Summon Jade Serpent Statue", "spellId": 115313, "icon": "ability_monk_summonserpentstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101139, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101135, 101174, 101164], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101134, "name": "Enveloping Mist", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101133, 101107], "prev": [], "entries": [{"id": 124922, "definitionId": 129760, "maxRanks": 1, "type": "active", "name": "Enveloping Mist", "spellId": 124682, "icon": "spell_monk_envelopingmist", "index": 100}]}, {"id": 101133, "name": "Thunder Focus Tea", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101096, 101132], "prev": [101134], "entries": [{"id": 124921, "definitionId": 129759, "maxRanks": 1, "type": "active", "name": "Thunder Focus Tea", "spellId": 116680, "icon": "ability_monk_thunderfocustea", "index": 100}]}, {"id": 101107, "name": "Renewing Mist", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101132, 101110], "prev": [101134], "entries": [{"id": 124888, "definitionId": 129726, "maxRanks": 1, "type": "active", "name": "Renewing Mist", "spellId": 115151, "icon": "ability_monk_renewingmists", "index": 100}]}, {"id": 101096, "name": "Life Cocoon", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101097, 101095], "prev": [101133], "entries": [{"id": 124875, "definitionId": 129713, "maxRanks": 1, "type": "active", "name": "Life Cocoon", "spellId": 116849, "icon": "ability_monk_chicocoon", "index": 100}]}, {"id": 101132, "name": "Mana Tea", "type": "single", "posX": 12600, "posY": 2700, "maxRanks": 1, "next": [101131], "prev": [101133, 101107], "entries": [{"id": 124920, "definitionId": 129758, "maxRanks": 1, "type": "active", "name": "Mana Tea", "spellId": 115869, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101110, "name": "Invigorating Mists", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101109, 101108], "prev": [101107], "entries": [{"id": 124891, "definitionId": 129729, "maxRanks": 1, "type": "passive", "name": "Invigorating Mists", "spellId": 274586, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101097, "name": "Crane Style", "type": "single", "posX": 10800, "posY": 3300, "maxRanks": 1, "next": [101099], "prev": [101096], "entries": [{"id": 124876, "definitionId": 129714, "maxRanks": 1, "type": "passive", "name": "Crane Style", "spellId": 446260, "icon": "ability_monk_mightyoxkick", "index": 100}]}, {"id": 101131, "name": "Revival / Restoral", "type": "choice", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101092, 101130], "prev": [101132], "entries": [{"id": 124919, "definitionId": 129757, "maxRanks": 1, "type": "active", "name": "Revival", "spellId": 115310, "icon": "spell_monk_revival", "index": 100}, {"id": 124918, "definitionId": 129756, "maxRanks": 1, "type": "active", "name": "Restoral", "spellId": 388615, "icon": "ability_monk_tigerstyle", "index": 200}]}, {"id": 101109, "name": "Healing Elixir", "type": "single", "posX": 14400, "posY": 3300, "maxRanks": 1, "next": [101111], "prev": [101110], "entries": [{"id": 124890, "definitionId": 129728, "maxRanks": 1, "type": "passive", "name": "Healing Elixir", "spellId": 122280, "icon": "ability_monk_jasmineforcetea", "index": 100}]}, {"id": 101095, "name": "Nourishing Chi / Calming Coalescence", "type": "choice", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101099, 101094, 101100], "prev": [101096], "entries": [{"id": 124874, "definitionId": 129712, "maxRanks": 1, "type": "passive", "name": "Nourishing Chi", "spellId": 387765, "icon": "inv_misc_gem_pearl_06", "index": 100}, {"id": 124873, "definitionId": 129711, "maxRanks": 1, "type": "passive", "name": "Calming Coalescence", "spellId": 388218, "icon": "ability_monk_healthsphere", "index": 200}]}, {"id": 101092, "name": "Uplifted Spirits", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101094, 101129], "prev": [101131], "entries": [{"id": 124869, "definitionId": 129707, "maxRanks": 1, "type": "passive", "name": "Uplifted Spirits", "spellId": 388551, "icon": "monk_stance_wiseserpent", "index": 100}]}, {"id": 101130, "name": "Energizing Brew / Lifecycles", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101129], "prev": [101131], "entries": [{"id": 124917, "definitionId": 129755, "maxRanks": 1, "type": "passive", "name": "Energizing Brew", "spellId": 422031, "icon": "ui_profession_herbalism", "index": 100}, {"id": 124916, "definitionId": 129754, "maxRanks": 1, "type": "passive", "name": "Lifecycles", "spellId": 197915, "icon": "ability_monk_souldance", "index": 200}]}, {"id": 101108, "name": "Zen Pulse", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101122, 101111], "prev": [101110], "entries": [{"id": 124889, "definitionId": 129727, "maxRanks": 1, "type": "passive", "name": "Zen Pulse", "spellId": 446326, "icon": "ability_monk_forcesphere", "index": 100}]}, {"id": 101099, "name": "Mists of Life", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101098, 101100], "prev": [101095, 101097], "entries": [{"id": 124879, "definitionId": 129717, "maxRanks": 1, "type": "passive", "name": "Mists of Life", "spellId": 388548, "icon": "inv_shoulder__inv_leather_raidmonkmythic_s_01", "index": 100}]}, {"id": 101094, "name": "Overflowing Mists", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101100, 101093], "prev": [101095, 101092], "entries": [{"id": 124872, "definitionId": 129710, "maxRanks": 2, "type": "passive", "name": "Overflowing Mists", "spellId": 388511, "icon": "inv_legion_faction_dreamweavers", "index": 100}]}, {"id": 101129, "name": "Invoke Yu'lon, the Jade Serpent / Invoke Chi-Ji, the Red Crane", "type": "choice", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101093, 101128, 101112], "prev": [101092, 101130], "entries": [{"id": 124915, "definitionId": 129753, "maxRanks": 1, "type": "active", "name": "Invoke Yu'lon, the Jade Serpent", "spellId": 322118, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124914, "definitionId": 129752, "maxRanks": 1, "type": "active", "name": "Invoke Chi-Ji, the Red Crane", "spellId": 325197, "icon": "inv_pet_cranegod", "index": 200}]}, {"id": 101122, "name": "Deep Clarity", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101112, 101121], "prev": [101108], "entries": [{"id": 124906, "definitionId": 129744, "maxRanks": 1, "type": "passive", "name": "Deep Clarity", "spellId": 446345, "icon": "ability_monk_zenmeditation", "index": 200}]}, {"id": 101111, "name": "Rapid Diffusion", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101121, 101120], "prev": [101108, 101109], "entries": [{"id": 124892, "definitionId": 129730, "maxRanks": 2, "type": "passive", "name": "Rapid Diffusion", "spellId": 388847, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101098, "name": "Chrysalis / Burst of Life", "type": "choice", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101101], "prev": [101099], "entries": [{"id": 124878, "definitionId": 129716, "maxRanks": 1, "type": "passive", "name": "Chrysalis", "spellId": 202424, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 124877, "definitionId": 129715, "maxRanks": 1, "type": "passive", "name": "Burst of Life", "spellId": 399226, "icon": "ability_rogue_imrovedrecuperate", "index": 200}]}, {"id": 101100, "name": "Yu'lon's Whisper", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101101, 101127], "prev": [101095, 101094, 101099], "entries": [{"id": 124880, "definitionId": 129718, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Whisper", "spellId": 388038, "icon": "ability_monk_chiexplosion", "index": 200}]}, {"id": 101093, "name": "Mist Wrap / Refreshing Jade Wind", "type": "choice", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101127], "prev": [101129, 101094], "entries": [{"id": 124871, "definitionId": 129709, "maxRanks": 1, "type": "passive", "name": "Mist Wrap", "spellId": 197900, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 124870, "definitionId": 129708, "maxRanks": 1, "type": "passive", "name": "Refreshing Jade Wind", "spellId": 457397, "icon": "ability_monk_rushingjadewind", "index": 200}]}, {"id": 101128, "name": "Celestial Harmony", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101127, 101113], "prev": [101129], "entries": [{"id": 124913, "definitionId": 129751, "maxRanks": 1, "type": "passive", "name": "Celestial Harmony", "spellId": 343655, "icon": "ability_monk_jadeserpentbreath", "index": 100}]}, {"id": 101112, "name": "Dancing Mists", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101115], "prev": [101129, 101122], "entries": [{"id": 124893, "definitionId": 129731, "maxRanks": 1, "type": "passive", "name": "Dancing Mists", "spellId": 388701, "icon": "ability_monk_serenity", "index": 100}]}, {"id": 101121, "name": "Lotus Infusion / Chi Harmony", "type": "choice", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101115, 101120], "prev": [101111, 101122], "entries": [{"id": 124905, "definitionId": 129743, "maxRanks": 1, "type": "passive", "name": "Lotus Infusion", "spellId": 458431, "icon": "inv_misc_herb_chamlotus", "index": 100}, {"id": 126059, "definitionId": 130891, "maxRanks": 1, "type": "passive", "name": "Chi Harmony", "spellId": 448392, "icon": "inv_ability_monk_renewingmists_active", "index": 200}]}, {"id": 101101, "name": "Jadefire Stomp", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101105, 101102], "prev": [101098, 101100], "entries": [{"id": 124881, "definitionId": 129719, "maxRanks": 1, "type": "active", "name": "Jadefire Stomp", "spellId": 388193, "icon": "ability_ardenweald_monk", "index": 100}]}, {"id": 101127, "name": "Peer Into Peace / Pool of Mists", "type": "choice", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101126], "prev": [101128, 101100, 101093], "entries": [{"id": 124912, "definitionId": 129750, "maxRanks": 1, "type": "passive", "name": "Peer Into Peace", "spellId": 440008, "icon": "inv_staff_2h_monk_c_01", "index": 100}, {"id": 125932, "definitionId": 130763, "maxRanks": 1, "type": "passive", "name": "Pool of Mists", "spellId": 173841, "icon": "achievement_zone_sholazar_10", "index": 200}]}, {"id": 101113, "name": "Jade Bond / Gift of the Celestials", "type": "choice", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101126, 101124, 101114], "prev": [101128], "entries": [{"id": 124895, "definitionId": 129733, "maxRanks": 1, "type": "passive", "name": "Jade Bond", "spellId": 388031, "icon": "inv_inscription_deck_jadeserpent", "index": 100}, {"id": 124894, "definitionId": 129732, "maxRanks": 1, "type": "passive", "name": "Gift of the Celestials", "spellId": 388212, "icon": "inv_pet_jadeserpentpet", "index": 200}]}, {"id": 101115, "name": "Focused Thunder", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101114, 101116], "prev": [101112, 101121], "entries": [{"id": 124897, "definitionId": 129735, "maxRanks": 1, "type": "passive", "name": "Focused Thunder", "spellId": 197895, "icon": "spell_monk_nimblebrew", "index": 100}]}, {"id": 101120, "name": "Sheilun's Gift", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101116, 101119], "prev": [101111, 101121], "entries": [{"id": 124904, "definitionId": 129742, "maxRanks": 1, "type": "active", "name": "Sheilun's Gift", "spellId": 399491, "icon": "inv_staff_2h_artifactshaohao_d_01", "index": 100}]}, {"id": 101105, "name": "Ancient Concordance", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101104, 101106, 101103], "prev": [101101], "entries": [{"id": 124886, "definitionId": 129724, "maxRanks": 1, "type": "passive", "name": "Ancient Concordance", "spellId": 388740, "icon": "spell_animaardenweald_beam", "index": 100}]}, {"id": 101102, "name": "Ancient Teachings", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101103], "prev": [101101], "entries": [{"id": 124882, "definitionId": 129720, "maxRanks": 1, "type": "passive", "name": "Ancient Teachings", "spellId": 388023, "icon": "inv_misc_book_07", "index": 100}]}, {"id": 101126, "name": "Resplendent Mist", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101103, 101125], "prev": [101127, 101113], "entries": [{"id": 124911, "definitionId": 129749, "maxRanks": 2, "type": "passive", "name": "Resplendent Mist", "spellId": 388020, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 101124, "name": "Secret Infusion", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101125, 101123], "prev": [101113], "entries": [{"id": 124908, "definitionId": 129746, "maxRanks": 2, "type": "passive", "name": "Secret Infusion", "spellId": 388491, "icon": "ability_monk_chibrew", "index": 100}]}, {"id": 101114, "name": "Misty Peaks", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101117], "prev": [101115, 101113], "entries": [{"id": 124896, "definitionId": 129734, "maxRanks": 2, "type": "passive", "name": "Misty Peaks", "spellId": 388682, "icon": "achievement_zone_stormpeaks_10", "index": 100}]}, {"id": 101116, "name": "Peaceful Mending", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101117], "prev": [101115, 101120], "entries": [{"id": 124898, "definitionId": 129736, "maxRanks": 1, "type": "passive", "name": "Peaceful Mending", "spellId": 388593, "icon": "pandarenracial_innerpeace", "index": 100}]}, {"id": 101119, "name": "Veil of Pride / Shaohao's Lessons", "type": "choice", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101117, 101118], "prev": [101120], "entries": [{"id": 124903, "definitionId": 129741, "maxRanks": 1, "type": "passive", "name": "Veil of Pride", "spellId": 400053, "icon": "ability_monk_vivify", "index": 100}, {"id": 124902, "definitionId": 129740, "maxRanks": 1, "type": "passive", "name": "Shaohao's Lessons", "spellId": 400089, "icon": "ability_monk_dematerialize", "index": 200}]}, {"id": 101104, "name": "Awakened Jadefire", "type": "single", "posX": 10200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101105], "entries": [{"id": 124885, "definitionId": 129723, "maxRanks": 1, "type": "passive", "name": "Awakened Jadefire", "spellId": 388779, "icon": "spell_animaardenweald_buff", "index": 100}]}, {"id": 101106, "name": "Dance of Chi-Ji", "type": "single", "posX": 10800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101105], "entries": [{"id": 124887, "definitionId": 129725, "maxRanks": 1, "type": "passive", "name": "Dance of Chi-Ji", "spellId": 438439, "icon": "ability_monk_cranekick_new", "index": 100}]}, {"id": 101103, "name": "Tea of Serenity / Tea of Plenty", "type": "choice", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101102, 101126, 101105], "entries": [{"id": 124884, "definitionId": 129722, "maxRanks": 1, "type": "passive", "name": "Tea of Serenity", "spellId": 393460, "icon": "inv_misc_food_vendor_roastedbarlytea", "index": 200}, {"id": 124883, "definitionId": 129721, "maxRanks": 1, "type": "passive", "name": "Tea of Plenty", "spellId": 388517, "icon": "inv_misc_pearlmilktea", "index": 300}]}, {"id": 101125, "name": "Unison / Mending Proliferation", "type": "choice", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101126, 101124], "entries": [{"id": 124910, "definitionId": 129748, "maxRanks": 1, "type": "passive", "name": "Unison", "spellId": 388477, "icon": "ability_creature_cursed_04", "index": 100}, {"id": 124909, "definitionId": 129747, "maxRanks": 1, "type": "passive", "name": "Mending Proliferation", "spellId": 388509, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 200}]}, {"id": 101123, "name": "Invoker's Delight", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101124], "entries": [{"id": 124907, "definitionId": 129745, "maxRanks": 1, "type": "passive", "name": "Invoker's Delight", "spellId": 388661, "icon": "inv_inscription_80_warscroll_battleshout", "index": 200}]}, {"id": 101117, "name": "Tear of Morning / Rising Mist", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101119, 101114, 101116], "entries": [{"id": 124900, "definitionId": 129738, "maxRanks": 1, "type": "passive", "name": "Tear of Morning", "spellId": 387991, "icon": "ability_monk_uplift", "index": 100}, {"id": 124899, "definitionId": 129737, "maxRanks": 1, "type": "passive", "name": "Rising Mist", "spellId": 274909, "icon": "ability_monk_effuse", "index": 200}]}, {"id": 101118, "name": "Legacy of Wisdom", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101119], "entries": [{"id": 124901, "definitionId": 129739, "maxRanks": 1, "type": "passive", "name": "Legacy of Wisdom", "spellId": 404408, "icon": "misc_legionfall_monk", "index": 100}]}], "heroNodes": [{"id": 101243, "name": "Celestial Conduit", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 64, "next": [101236, 101242, 101233], "prev": [], "entries": [{"id": 125062, "definitionId": 129894, "maxRanks": 1, "type": "active", "name": "Celestial Conduit", "spellId": 443028, "icon": "inv_ability_conduitofthecelestialsmonk_celestialconduit", "index": 100}], "freeNode": true}, {"id": 101236, "name": "Temple Training / Xuen's Guidance", "type": "choice", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101237], "prev": [101243], "entries": [{"id": 125054, "definitionId": 129886, "maxRanks": 1, "type": "passive", "name": "Temple Training", "spellId": 442743, "icon": "ability_monk_provoke", "index": 100}, {"id": 125053, "definitionId": 129885, "maxRanks": 1, "type": "passive", "name": "Xuen's Guidance", "spellId": 442687, "icon": "ability_monk_dpsstance", "index": 200}]}, {"id": 101242, "name": "Courage of the White Tiger", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101241], "prev": [101243], "entries": [{"id": 125061, "definitionId": 129893, "maxRanks": 1, "type": "passive", "name": "Courage of the White Tiger", "spellId": 443087, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101233, "name": "Restore Balance / Yu'lon's Knowledge", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101234], "prev": [101243], "entries": [{"id": 125049, "definitionId": 129881, "maxRanks": 1, "type": "passive", "name": "Restore Balance", "spellId": 442719, "icon": "ability_monk_chiexplosion", "index": 100}, {"id": 125048, "definitionId": 129880, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Knowledge", "spellId": 443625, "icon": "inv_jewelcrafting_jadeserpent", "index": 200}]}, {"id": 101237, "name": "Heart of the Jade Serpent", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "requiresNode": 101120, "next": [101238], "prev": [101236], "entries": [{"id": 125055, "definitionId": 129887, "maxRanks": 1, "type": "passive", "name": "Heart of the Jade Serpent", "spellId": 443294, "icon": "ability_monk_dragonkick", "index": 100}]}, {"id": 101241, "name": "Strength of the Black Ox", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101240], "prev": [101242], "entries": [{"id": 125060, "definitionId": 129892, "maxRanks": 1, "type": "passive", "name": "Strength of the Black Ox", "spellId": 443110, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101234, "name": "Flight of the Red Crane", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101235], "prev": [101233], "entries": [{"id": 125050, "definitionId": 129882, "maxRanks": 1, "type": "passive", "name": "Flight of the Red Crane", "spellId": 443255, "icon": "inv_pet_cranegod", "index": 100}]}, {"id": 101238, "name": "Niuzao's Protection / Jade Sanctuary", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101237], "entries": [{"id": 125057, "definitionId": 129889, "maxRanks": 1, "type": "passive", "name": "Niuzao's Protection", "spellId": 442747, "icon": "ability_monk_chargingoxwave", "index": 100}, {"id": 125056, "definitionId": 129888, "maxRanks": 1, "type": "passive", "name": "Jade Sanctuary", "spellId": 443059, "icon": "ability_monk_jadeserpentbreath", "index": 200}]}, {"id": 101240, "name": "Chi-Ji's Swiftness", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101241], "entries": [{"id": 125059, "definitionId": 129891, "maxRanks": 1, "type": "passive", "name": "Chi-Ji's Swiftness", "spellId": 443566, "icon": "inv_shoulder_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101235, "name": "Inner Compass / August Dynasty", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101234], "entries": [{"id": 125052, "definitionId": 129884, "maxRanks": 1, "type": "passive", "name": "Inner Compass", "spellId": 443571, "icon": "inv_10_dungeonjewelry_explorer_trinket_1compass_color2", "index": 100}, {"id": 125051, "definitionId": 129883, "maxRanks": 1, "type": "passive", "name": "August Dynasty", "spellId": 442818, "icon": "ability_monk_legacyoftheemperor", "index": 200}]}, {"id": 101239, "name": "Unity Within", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 64, "next": [], "prev": [101240, 101235, 101238], "entries": [{"id": 125058, "definitionId": 129890, "maxRanks": 1, "type": "passive", "name": "Unity Within", "spellId": 443589, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101223, "name": "Aspect of Harmony", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 66, "requiresNode": 101067, "next": [101222, 101224, 101230], "prev": [], "entries": [{"id": 125033, "definitionId": 129869, "maxRanks": 1, "type": "passive", "name": "Aspect of Harmony", "spellId": 450508, "icon": "inv_ability_masterofharmonymonk_aspectofharmony", "index": 100}], "freeNode": true}, {"id": 101222, "name": "Manifestation", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "requiresNode": 102433, "next": [101221], "prev": [101223], "entries": [{"id": 125032, "definitionId": 129868, "maxRanks": 1, "type": "passive", "name": "Manifestation", "spellId": 450875, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 100}]}, {"id": 101224, "name": "Purified Spirit / Harmonic Gambit", "type": "choice", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101225], "prev": [101223], "entries": [{"id": 125035, "definitionId": 129871, "maxRanks": 1, "type": "passive", "name": "Purified Spirit", "spellId": 450867, "icon": "ability_monk_explodingjadeblossom", "index": 100}, {"id": 125034, "definitionId": 129870, "maxRanks": 1, "type": "passive", "name": "Harmonic Gambit", "spellId": 450870, "icon": "passive_monk_teachingsofmonastery", "index": 200}]}, {"id": 101230, "name": "Balanced Stratagem", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101229], "prev": [101223], "entries": [{"id": 125043, "definitionId": 129879, "maxRanks": 1, "type": "passive", "name": "Balanced Stratagem", "spellId": 450889, "icon": "ability_monk_sphereharmonydiscord", "index": 100}]}, {"id": 101221, "name": "Tiger's Vigor / Roar from the Heavens", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101220], "prev": [101222], "entries": [{"id": 125031, "definitionId": 129867, "maxRanks": 1, "type": "passive", "name": "Tiger's Vigor", "spellId": 451041, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125030, "definitionId": 129866, "maxRanks": 1, "type": "passive", "name": "Roar from the Heavens", "spellId": 451043, "icon": "inv_celestialserpentmount", "index": 200}]}, {"id": 101225, "name": "Endless Draught", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101226], "prev": [101224], "entries": [{"id": 125036, "definitionId": 129872, "maxRanks": 1, "type": "passive", "name": "Endless Draught", "spellId": 450892, "icon": "inv_drink_25_honeytea", "index": 100}]}, {"id": 101229, "name": "Mantra of Purity / Mantra of Tenacity", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101228], "prev": [101230], "entries": [{"id": 125042, "definitionId": 129878, "maxRanks": 1, "type": "passive", "name": "Mantra of Purity", "spellId": 451036, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 125041, "definitionId": 129877, "maxRanks": 1, "type": "passive", "name": "Mantra of Tenacity", "spellId": 451029, "icon": "spell_monk_brewmastertraining", "index": 200}]}, {"id": 101220, "name": "Overwhelming Force", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101221], "entries": [{"id": 125029, "definitionId": 129865, "maxRanks": 1, "type": "passive", "name": "Overwhelming Force", "spellId": 451024, "icon": "ability_titankeeper_piercingcorruption", "index": 100}]}, {"id": 101226, "name": "Path of Resurgence / Way of a Thousand Strikes", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101225], "entries": [{"id": 125038, "definitionId": 129874, "maxRanks": 1, "type": "passive", "name": "Path of Resurgence", "spellId": 450912, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 125037, "definitionId": 129873, "maxRanks": 1, "type": "passive", "name": "Way of a Thousand Strikes", "spellId": 450965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101228, "name": "Clarity of Purpose", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101229], "entries": [{"id": 125040, "definitionId": 129876, "maxRanks": 1, "type": "passive", "name": "Clarity of Purpose", "spellId": 451017, "icon": "ability_titankeeper_cleanse", "index": 100}]}, {"id": 101227, "name": "Coalescence", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 66, "next": [], "prev": [101228, 101220, 101226], "entries": [{"id": 125039, "definitionId": 129875, "maxRanks": 1, "type": "passive", "name": "Coalescence", "spellId": 450529, "icon": "ability_monk_effuse", "index": 100}]}], "subTreeNodes": [{"id": 101231, "name": "Conduit of the Celestials / Master of Harmony", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125045, "type": "subtree", "name": "Conduit of the Celestials", "traitSubTreeId": 64, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-conduitofthecelestials", "nodes": [101243, 101236, 101242, 101233, 101237, 101241, 101234, 101238, 101240, 101235, 101239]}, {"id": 125044, "type": "subtree", "name": "Master of Harmony", "traitSubTreeId": 66, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-masterofharmony", "nodes": [101223, 101222, 101224, 101230, 101221, 101225, 101229, 101220, 101226, 101228, 101227]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101105, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]} \ No newline at end of file +{"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Mistweaver", "specId": 270, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101089], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101089, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 102432], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101089, "name": "Improved Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184], "prev": [101185, 101149], "entries": [{"id": 124866, "definitionId": 129704, "maxRanks": 1, "type": "passive", "name": "Improved Detox", "spellId": 388874, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [102432, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102432, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101089, 101153, 101148], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101089, 101185], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 102432, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101146, 101160, 101145], "entries": [{"id": 126500, "definitionId": 131326, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 126499, "definitionId": 131325, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 123986, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101145, 102432], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101139], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101139], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101139, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101158, 101166, 102432], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101164], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101164], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101164, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101139, "name": "Dance of the Wind", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124929, "definitionId": 129767, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 432181, "icon": "ability_monk_dematerialize", "index": 100}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101164, "name": "Summon Jade Serpent Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101173, 101163, 101165], "entries": [{"id": 124958, "definitionId": 129796, "maxRanks": 1, "type": "active", "name": "Summon Jade Serpent Statue", "spellId": 115313, "icon": "ability_monk_summonserpentstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101139, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101135, 101174, 101164], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101134, "name": "Enveloping Mist", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101133, 101107], "prev": [], "entries": [{"id": 124922, "definitionId": 129760, "maxRanks": 1, "type": "active", "name": "Enveloping Mist", "spellId": 124682, "icon": "spell_monk_envelopingmist", "index": 100}]}, {"id": 101133, "name": "Thunder Focus Tea", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101096, 101132], "prev": [101134], "entries": [{"id": 124921, "definitionId": 129759, "maxRanks": 1, "type": "active", "name": "Thunder Focus Tea", "spellId": 116680, "icon": "ability_monk_thunderfocustea", "index": 100}]}, {"id": 101107, "name": "Renewing Mist", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101132, 101110], "prev": [101134], "entries": [{"id": 124888, "definitionId": 129726, "maxRanks": 1, "type": "active", "name": "Renewing Mist", "spellId": 115151, "icon": "ability_monk_renewingmists", "index": 100}]}, {"id": 101096, "name": "Life Cocoon", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101097, 101095], "prev": [101133], "entries": [{"id": 124875, "definitionId": 129713, "maxRanks": 1, "type": "active", "name": "Life Cocoon", "spellId": 116849, "icon": "ability_monk_chicocoon", "index": 100}]}, {"id": 101132, "name": "Mana Tea", "type": "single", "posX": 12600, "posY": 2700, "maxRanks": 1, "next": [101131], "prev": [101133, 101107], "entries": [{"id": 124920, "definitionId": 129758, "maxRanks": 1, "type": "active", "name": "Mana Tea", "spellId": 115869, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101110, "name": "Invigorating Mists", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101109, 101108], "prev": [101107], "entries": [{"id": 124891, "definitionId": 129729, "maxRanks": 1, "type": "passive", "name": "Invigorating Mists", "spellId": 274586, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101097, "name": "Crane Style", "type": "single", "posX": 10800, "posY": 3300, "maxRanks": 1, "next": [101099], "prev": [101096], "entries": [{"id": 124876, "definitionId": 129714, "maxRanks": 1, "type": "passive", "name": "Crane Style", "spellId": 446260, "icon": "ability_monk_mightyoxkick", "index": 100}]}, {"id": 101131, "name": "Revival / Restoral", "type": "choice", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101092, 101130, 101129], "prev": [101132], "entries": [{"id": 124919, "definitionId": 129757, "maxRanks": 1, "type": "active", "name": "Revival", "spellId": 115310, "icon": "spell_monk_revival", "index": 100}, {"id": 124918, "definitionId": 129756, "maxRanks": 1, "type": "active", "name": "Restoral", "spellId": 388615, "icon": "ability_monk_tigerstyle", "index": 200}]}, {"id": 101109, "name": "Healing Elixir", "type": "single", "posX": 14400, "posY": 3300, "maxRanks": 1, "next": [101111], "prev": [101110], "entries": [{"id": 124890, "definitionId": 129728, "maxRanks": 1, "type": "passive", "name": "Healing Elixir", "spellId": 122280, "icon": "ability_monk_jasmineforcetea", "index": 100}]}, {"id": 101095, "name": "Calming Coalescence / Refreshment", "type": "choice", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101099, 101094, 101100], "prev": [101096], "entries": [{"id": 124874, "definitionId": 129712, "maxRanks": 1, "type": "passive", "name": "Calming Coalescence", "spellId": 388218, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124873, "definitionId": 129711, "maxRanks": 1, "type": "passive", "name": "Refreshment", "spellId": 467270, "icon": "inv_misc_gem_pearl_06", "index": 200}]}, {"id": 101092, "name": "Uplifted Spirits", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101094, 101129], "prev": [101131], "entries": [{"id": 124869, "definitionId": 129707, "maxRanks": 1, "type": "passive", "name": "Uplifted Spirits", "spellId": 388551, "icon": "monk_stance_wiseserpent", "index": 100}]}, {"id": 101130, "name": "Energizing Brew / Lifecycles", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101129], "prev": [101131], "entries": [{"id": 124917, "definitionId": 129755, "maxRanks": 1, "type": "passive", "name": "Energizing Brew", "spellId": 422031, "icon": "ui_profession_herbalism", "index": 100}, {"id": 124916, "definitionId": 129754, "maxRanks": 1, "type": "passive", "name": "Lifecycles", "spellId": 197915, "icon": "ability_monk_souldance", "index": 200}]}, {"id": 101108, "name": "Zen Pulse", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101122, 101111], "prev": [101110], "entries": [{"id": 124889, "definitionId": 129727, "maxRanks": 1, "type": "passive", "name": "Zen Pulse", "spellId": 446326, "icon": "ability_monk_forcesphere", "index": 100}]}, {"id": 101099, "name": "Mists of Life", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101098, 101100], "prev": [101095, 101097], "entries": [{"id": 124879, "definitionId": 129717, "maxRanks": 1, "type": "passive", "name": "Mists of Life", "spellId": 388548, "icon": "inv_shoulder__inv_leather_raidmonkmythic_s_01", "index": 100}]}, {"id": 101094, "name": "Overflowing Mists", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101100, 101093], "prev": [101095, 101092], "entries": [{"id": 124872, "definitionId": 129710, "maxRanks": 2, "type": "passive", "name": "Overflowing Mists", "spellId": 388511, "icon": "inv_legion_faction_dreamweavers", "index": 100}]}, {"id": 101129, "name": "Invoke Yu'lon, the Jade Serpent / Invoke Chi-Ji, the Red Crane", "type": "choice", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101093, 101128, 101112], "prev": [101092, 101130, 101131], "entries": [{"id": 124915, "definitionId": 129753, "maxRanks": 1, "type": "active", "name": "Invoke Yu'lon, the Jade Serpent", "spellId": 322118, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124914, "definitionId": 129752, "maxRanks": 1, "type": "active", "name": "Invoke Chi-Ji, the Red Crane", "spellId": 325197, "icon": "inv_pet_cranegod", "index": 200}]}, {"id": 101122, "name": "Deep Clarity", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101112, 101121], "prev": [101108], "entries": [{"id": 124906, "definitionId": 129744, "maxRanks": 1, "type": "passive", "name": "Deep Clarity", "spellId": 446345, "icon": "ability_monk_zenmeditation", "index": 200}]}, {"id": 101111, "name": "Rapid Diffusion", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101121, 101120], "prev": [101108, 101109], "entries": [{"id": 124892, "definitionId": 129730, "maxRanks": 2, "type": "passive", "name": "Rapid Diffusion", "spellId": 388847, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101098, "name": "Chrysalis / Burst of Life", "type": "choice", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101101], "prev": [101099], "entries": [{"id": 124878, "definitionId": 129716, "maxRanks": 1, "type": "passive", "name": "Chrysalis", "spellId": 202424, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 124877, "definitionId": 129715, "maxRanks": 1, "type": "passive", "name": "Burst of Life", "spellId": 399226, "icon": "ability_rogue_imrovedrecuperate", "index": 200}]}, {"id": 101100, "name": "Yu'lon's Whisper", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101101, 101127], "prev": [101095, 101094, 101099], "entries": [{"id": 124880, "definitionId": 129718, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Whisper", "spellId": 388038, "icon": "ability_monk_chiexplosion", "index": 200}]}, {"id": 101093, "name": "Mist Wrap / Refreshing Jade Wind", "type": "choice", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101127], "prev": [101129, 101094], "entries": [{"id": 124871, "definitionId": 129709, "maxRanks": 1, "type": "passive", "name": "Mist Wrap", "spellId": 197900, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 124870, "definitionId": 129708, "maxRanks": 1, "type": "passive", "name": "Refreshing Jade Wind", "spellId": 457397, "icon": "ability_monk_rushingjadewind", "index": 200}]}, {"id": 101128, "name": "Celestial Harmony", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101127, 101113, 101106], "prev": [101129], "entries": [{"id": 124913, "definitionId": 129751, "maxRanks": 1, "type": "passive", "name": "Celestial Harmony", "spellId": 343655, "icon": "ability_monk_jadeserpentbreath", "index": 100}]}, {"id": 101112, "name": "Dancing Mists", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101106, 101115], "prev": [101129, 101122], "entries": [{"id": 124893, "definitionId": 129731, "maxRanks": 1, "type": "passive", "name": "Dancing Mists", "spellId": 388701, "icon": "ability_monk_serenity", "index": 100}]}, {"id": 101121, "name": "Lotus Infusion / Chi Harmony", "type": "choice", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101115, 101120], "prev": [101111, 101122], "entries": [{"id": 124905, "definitionId": 129743, "maxRanks": 1, "type": "passive", "name": "Lotus Infusion", "spellId": 458431, "icon": "inv_misc_herb_chamlotus", "index": 100}, {"id": 126059, "definitionId": 130891, "maxRanks": 1, "type": "passive", "name": "Chi Harmony", "spellId": 448392, "icon": "inv_ability_monk_renewingmists_active", "index": 200}]}, {"id": 101101, "name": "Jadefire Stomp", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101104, 101102], "prev": [101098, 101100], "entries": [{"id": 124881, "definitionId": 129719, "maxRanks": 1, "type": "active", "name": "Jadefire Stomp", "spellId": 388193, "icon": "inv_ability_monk_jadefirestomp", "index": 100}]}, {"id": 101127, "name": "Peer Into Peace / Pool of Mists", "type": "choice", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101102, 101126], "prev": [101128, 101100, 101093], "entries": [{"id": 124912, "definitionId": 129750, "maxRanks": 1, "type": "passive", "name": "Peer Into Peace", "spellId": 440008, "icon": "inv_staff_2h_monk_c_01", "index": 100}, {"id": 125932, "definitionId": 130763, "maxRanks": 1, "type": "passive", "name": "Pool of Mists", "spellId": 173841, "icon": "achievement_zone_sholazar_10", "index": 200}]}, {"id": 101113, "name": "Jade Bond / Gift of the Celestials", "type": "choice", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101126, 101124, 101114], "prev": [101128], "entries": [{"id": 124895, "definitionId": 129733, "maxRanks": 1, "type": "passive", "name": "Jade Bond", "spellId": 388031, "icon": "inv_inscription_deck_jadeserpent", "index": 100}, {"id": 124894, "definitionId": 129732, "maxRanks": 1, "type": "passive", "name": "Gift of the Celestials", "spellId": 388212, "icon": "inv_pet_jadeserpentpet", "index": 200}]}, {"id": 101106, "name": "Dance of Chi-Ji / Jade Empowerment", "type": "choice", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101114, 101116], "prev": [101112, 101128], "entries": [{"id": 124887, "definitionId": 129725, "maxRanks": 1, "type": "passive", "name": "Dance of Chi-Ji", "spellId": 438439, "icon": "ability_monk_cranekick_new", "index": 100}, {"id": 128220, "definitionId": 133027, "maxRanks": 1, "type": "passive", "name": "Jade Empowerment", "spellId": 467316, "icon": "ability_monk_cracklingjadelightning", "index": 200}]}, {"id": 101115, "name": "Focused Thunder", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101116], "prev": [101121, 101112], "entries": [{"id": 124897, "definitionId": 129735, "maxRanks": 1, "type": "passive", "name": "Focused Thunder", "spellId": 197895, "icon": "spell_monk_nimblebrew", "index": 100}]}, {"id": 101120, "name": "Sheilun's Gift", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101116, 101119], "prev": [101111, 101121], "entries": [{"id": 124904, "definitionId": 129742, "maxRanks": 1, "type": "active", "name": "Sheilun's Gift", "spellId": 399491, "icon": "inv_staff_2h_artifactshaohao_d_01", "index": 100}]}, {"id": 101104, "name": "Awakened Jadefire", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101103], "prev": [101101], "entries": [{"id": 124885, "definitionId": 129723, "maxRanks": 1, "type": "passive", "name": "Awakened Jadefire", "spellId": 388779, "icon": "spell_animaardenweald_buff", "index": 100}]}, {"id": 101102, "name": "Jadefire Teachings / Rushing Wind Kick", "type": "choice", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101103], "prev": [101101, 101127], "entries": [{"id": 124882, "definitionId": 129720, "maxRanks": 1, "type": "passive", "name": "Jadefire Teachings", "spellId": 467293, "icon": "inv_misc_book_07", "index": 100}, {"id": 128221, "definitionId": 133028, "maxRanks": 1, "type": "active", "name": "Rushing Wind Kick", "spellId": 467307, "icon": "ability_monk_ridethewind", "index": 200}]}, {"id": 101126, "name": "Resplendent Mist", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101103, 101125], "prev": [101127, 101113], "entries": [{"id": 124911, "definitionId": 129749, "maxRanks": 2, "type": "passive", "name": "Resplendent Mist", "spellId": 388020, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 101124, "name": "Secret Infusion", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101125, 101123], "prev": [101113], "entries": [{"id": 124908, "definitionId": 129746, "maxRanks": 2, "type": "passive", "name": "Secret Infusion", "spellId": 388491, "icon": "ability_monk_chibrew", "index": 100}]}, {"id": 101114, "name": "Misty Peaks", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101117], "prev": [101113, 101106], "entries": [{"id": 124896, "definitionId": 129734, "maxRanks": 2, "type": "passive", "name": "Misty Peaks", "spellId": 388682, "icon": "achievement_zone_stormpeaks_10", "index": 100}]}, {"id": 101116, "name": "Peaceful Mending", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101117], "prev": [101120, 101115, 101106], "entries": [{"id": 124898, "definitionId": 129736, "maxRanks": 1, "type": "passive", "name": "Peaceful Mending", "spellId": 388593, "icon": "pandarenracial_innerpeace", "index": 100}]}, {"id": 101119, "name": "Veil of Pride / Shaohao's Lessons", "type": "choice", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101117, 101118], "prev": [101120], "entries": [{"id": 124903, "definitionId": 129741, "maxRanks": 1, "type": "passive", "name": "Veil of Pride", "spellId": 400053, "icon": "ability_monk_vivify", "index": 100}, {"id": 124902, "definitionId": 129740, "maxRanks": 1, "type": "passive", "name": "Shaohao's Lessons", "spellId": 400089, "icon": "ability_monk_dematerialize", "index": 200}]}, {"id": 101103, "name": "Tea of Serenity / Tea of Plenty", "type": "choice", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101102, 101126, 101104], "entries": [{"id": 124884, "definitionId": 129722, "maxRanks": 1, "type": "passive", "name": "Tea of Serenity", "spellId": 393460, "icon": "inv_misc_food_vendor_roastedbarlytea", "index": 200}, {"id": 124883, "definitionId": 129721, "maxRanks": 1, "type": "passive", "name": "Tea of Plenty", "spellId": 388517, "icon": "inv_misc_pearlmilktea", "index": 300}]}, {"id": 101125, "name": "Unison / Mending Proliferation", "type": "choice", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101126, 101124], "entries": [{"id": 124910, "definitionId": 129748, "maxRanks": 1, "type": "passive", "name": "Unison", "spellId": 388477, "icon": "ability_creature_cursed_04", "index": 100}, {"id": 124909, "definitionId": 129747, "maxRanks": 1, "type": "passive", "name": "Mending Proliferation", "spellId": 388509, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 200}]}, {"id": 101123, "name": "Invoker's Delight", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101124], "entries": [{"id": 124907, "definitionId": 129745, "maxRanks": 1, "type": "passive", "name": "Invoker's Delight", "spellId": 388661, "icon": "inv_inscription_80_warscroll_battleshout", "index": 200}]}, {"id": 101117, "name": "Tear of Morning / Rising Mist", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101119, 101114, 101116], "entries": [{"id": 124900, "definitionId": 129738, "maxRanks": 1, "type": "passive", "name": "Tear of Morning", "spellId": 387991, "icon": "ability_monk_uplift", "index": 100}, {"id": 124899, "definitionId": 129737, "maxRanks": 1, "type": "passive", "name": "Rising Mist", "spellId": 274909, "icon": "ability_monk_effuse", "index": 200}]}, {"id": 101118, "name": "Legacy of Wisdom", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101119], "entries": [{"id": 124901, "definitionId": 129739, "maxRanks": 1, "type": "passive", "name": "Legacy of Wisdom", "spellId": 404408, "icon": "misc_legionfall_monk", "index": 100}]}], "heroNodes": [{"id": 101243, "name": "Celestial Conduit", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 64, "next": [101236, 101242, 101233], "prev": [], "entries": [{"id": 125062, "definitionId": 129894, "maxRanks": 1, "type": "active", "name": "Celestial Conduit", "spellId": 443028, "icon": "inv_ability_conduitofthecelestialsmonk_celestialconduit", "index": 100}], "freeNode": true}, {"id": 101236, "name": "Temple Training / Xuen's Guidance", "type": "choice", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101237], "prev": [101243], "entries": [{"id": 125054, "definitionId": 129886, "maxRanks": 1, "type": "passive", "name": "Temple Training", "spellId": 442743, "icon": "ability_monk_provoke", "index": 100}, {"id": 125053, "definitionId": 129885, "maxRanks": 1, "type": "passive", "name": "Xuen's Guidance", "spellId": 442687, "icon": "ability_monk_dpsstance", "index": 200}]}, {"id": 101242, "name": "Courage of the White Tiger", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101241], "prev": [101243], "entries": [{"id": 125061, "definitionId": 129893, "maxRanks": 1, "type": "passive", "name": "Courage of the White Tiger", "spellId": 443087, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101233, "name": "Restore Balance / Yu'lon's Knowledge", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101234], "prev": [101243], "entries": [{"id": 125049, "definitionId": 129881, "maxRanks": 1, "type": "passive", "name": "Restore Balance", "spellId": 442719, "icon": "ability_monk_chiexplosion", "index": 100}, {"id": 125048, "definitionId": 129880, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Knowledge", "spellId": 443625, "icon": "inv_jewelcrafting_jadeserpent", "index": 200}]}, {"id": 101237, "name": "Heart of the Jade Serpent", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "requiresNode": 101120, "next": [101238], "prev": [101236], "entries": [{"id": 125055, "definitionId": 129887, "maxRanks": 1, "type": "passive", "name": "Heart of the Jade Serpent", "spellId": 443294, "icon": "ability_monk_dragonkick", "index": 100}]}, {"id": 101241, "name": "Strength of the Black Ox", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101240], "prev": [101242], "entries": [{"id": 125060, "definitionId": 129892, "maxRanks": 1, "type": "passive", "name": "Strength of the Black Ox", "spellId": 443110, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101234, "name": "Flight of the Red Crane", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101235], "prev": [101233], "entries": [{"id": 125050, "definitionId": 129882, "maxRanks": 1, "type": "passive", "name": "Flight of the Red Crane", "spellId": 443255, "icon": "inv_pet_cranegod", "index": 100}]}, {"id": 101238, "name": "Niuzao's Protection / Jade Sanctuary", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101237], "entries": [{"id": 125057, "definitionId": 129889, "maxRanks": 1, "type": "passive", "name": "Niuzao's Protection", "spellId": 442747, "icon": "ability_monk_chargingoxwave", "index": 100}, {"id": 125056, "definitionId": 129888, "maxRanks": 1, "type": "passive", "name": "Jade Sanctuary", "spellId": 443059, "icon": "ability_monk_jadeserpentbreath", "index": 200}]}, {"id": 101240, "name": "Chi-Ji's Swiftness", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101241], "entries": [{"id": 125059, "definitionId": 129891, "maxRanks": 1, "type": "passive", "name": "Chi-Ji's Swiftness", "spellId": 443566, "icon": "inv_shoulder_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101235, "name": "Inner Compass / August Dynasty", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101234], "entries": [{"id": 125052, "definitionId": 129884, "maxRanks": 1, "type": "passive", "name": "Inner Compass", "spellId": 443571, "icon": "inv_10_dungeonjewelry_explorer_trinket_1compass_color2", "index": 100}, {"id": 125051, "definitionId": 129883, "maxRanks": 1, "type": "passive", "name": "August Dynasty", "spellId": 442818, "icon": "ability_monk_legacyoftheemperor", "index": 200}]}, {"id": 101239, "name": "Unity Within", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 64, "next": [], "prev": [101240, 101235, 101238], "entries": [{"id": 125058, "definitionId": 129890, "maxRanks": 1, "type": "passive", "name": "Unity Within", "spellId": 443589, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101223, "name": "Aspect of Harmony", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 66, "requiresNode": 101067, "next": [101222, 101224, 101230], "prev": [], "entries": [{"id": 125033, "definitionId": 129869, "maxRanks": 1, "type": "passive", "name": "Aspect of Harmony", "spellId": 450508, "icon": "inv_ability_masterofharmonymonk_aspectofharmony", "index": 100}], "freeNode": true}, {"id": 101222, "name": "Manifestation", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "requiresNode": 102433, "next": [101221], "prev": [101223], "entries": [{"id": 125032, "definitionId": 129868, "maxRanks": 1, "type": "passive", "name": "Manifestation", "spellId": 450875, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 100}]}, {"id": 101224, "name": "Purified Spirit / Harmonic Gambit", "type": "choice", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101225], "prev": [101223], "entries": [{"id": 125035, "definitionId": 129871, "maxRanks": 1, "type": "passive", "name": "Purified Spirit", "spellId": 450867, "icon": "ability_monk_explodingjadeblossom", "index": 100}, {"id": 125034, "definitionId": 129870, "maxRanks": 1, "type": "passive", "name": "Harmonic Gambit", "spellId": 450870, "icon": "passive_monk_teachingsofmonastery", "index": 200}]}, {"id": 101230, "name": "Balanced Stratagem", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101229], "prev": [101223], "entries": [{"id": 125043, "definitionId": 129879, "maxRanks": 1, "type": "passive", "name": "Balanced Stratagem", "spellId": 450889, "icon": "ability_monk_sphereharmonydiscord", "index": 100}]}, {"id": 101221, "name": "Tiger's Vigor / Roar from the Heavens", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101220], "prev": [101222], "entries": [{"id": 125031, "definitionId": 129867, "maxRanks": 1, "type": "passive", "name": "Tiger's Vigor", "spellId": 451041, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125030, "definitionId": 129866, "maxRanks": 1, "type": "passive", "name": "Roar from the Heavens", "spellId": 451043, "icon": "inv_celestialserpentmount", "index": 200}]}, {"id": 101225, "name": "Endless Draught", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101226], "prev": [101224], "entries": [{"id": 125036, "definitionId": 129872, "maxRanks": 1, "type": "passive", "name": "Endless Draught", "spellId": 450892, "icon": "inv_drink_25_honeytea", "index": 100}]}, {"id": 101229, "name": "Mantra of Purity / Mantra of Tenacity", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101228], "prev": [101230], "entries": [{"id": 125042, "definitionId": 129878, "maxRanks": 1, "type": "passive", "name": "Mantra of Purity", "spellId": 451036, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 125041, "definitionId": 129877, "maxRanks": 1, "type": "passive", "name": "Mantra of Tenacity", "spellId": 451029, "icon": "spell_monk_brewmastertraining", "index": 200}]}, {"id": 101220, "name": "Overwhelming Force", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101221], "entries": [{"id": 125029, "definitionId": 129865, "maxRanks": 1, "type": "passive", "name": "Overwhelming Force", "spellId": 451024, "icon": "ability_titankeeper_piercingcorruption", "index": 100}]}, {"id": 101226, "name": "Path of Resurgence / Way of a Thousand Strikes", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101225], "entries": [{"id": 125038, "definitionId": 129874, "maxRanks": 1, "type": "passive", "name": "Path of Resurgence", "spellId": 450912, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 125037, "definitionId": 129873, "maxRanks": 1, "type": "passive", "name": "Way of a Thousand Strikes", "spellId": 450965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101228, "name": "Clarity of Purpose", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101229], "entries": [{"id": 125040, "definitionId": 129876, "maxRanks": 1, "type": "passive", "name": "Clarity of Purpose", "spellId": 451017, "icon": "ability_titankeeper_cleanse", "index": 100}]}, {"id": 101227, "name": "Coalescence", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 66, "next": [], "prev": [101228, 101220, 101226], "entries": [{"id": 125039, "definitionId": 129875, "maxRanks": 1, "type": "passive", "name": "Coalescence", "spellId": 450529, "icon": "ability_monk_effuse", "index": 100}]}], "subTreeNodes": [{"id": 101231, "name": "Conduit of the Celestials / Master of Harmony", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125045, "type": "subtree", "name": "Conduit of the Celestials", "traitSubTreeId": 64, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-conduitofthecelestials", "nodes": [101243, 101236, 101242, 101233, 101237, 101241, 101234, 101238, 101240, 101235, 101239]}, {"id": 125044, "type": "subtree", "name": "Master of Harmony", "traitSubTreeId": 66, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-masterofharmony", "nodes": [101223, 101222, 101224, 101230, 101221, 101225, 101229, 101220, 101226, 101228, 101227]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/monk_windwalker.json b/simc_support/game_data/data_files/trees/monk_windwalker.json index 3433405..7da7768 100644 --- a/simc_support/game_data/data_files/trees/monk_windwalker.json +++ b/simc_support/game_data/data_files/trees/monk_windwalker.json @@ -1 +1 @@ -{"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Windwalker", "specId": 269, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101150], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101150, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 101159], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101150, "name": "Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184, 101183], "prev": [101185, 101149], "entries": [{"id": 124941, "definitionId": 129779, "maxRanks": 1, "type": "active", "name": "Detox", "spellId": 218164, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [101159, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [101159, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101153, 101148, 101150], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101185, 101150], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 101159, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101160, 101146, 101145], "entries": [{"id": 124953, "definitionId": 129791, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 124952, "definitionId": 129790, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 460485, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152, 101150], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101159, 101145], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101137], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101137], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101137, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101159, 101158, 101166], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101162], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101162], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101162, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101137, "name": "Dance of the Wind", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124927, "definitionId": 129765, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 432181, "icon": "ability_monk_dematerialize", "index": 100}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101162, "name": "Summon White Tiger Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101163, 101165, 101173], "entries": [{"id": 124956, "definitionId": 129794, "maxRanks": 1, "type": "passive", "name": "Summon White Tiger Statue", "spellId": 450639, "icon": "ability_monk_summonwhitetigerstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101137, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101162, 101135, 101174], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101218, "name": "Fists of Fury", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101048, 101217, 101036], "prev": [], "entries": [{"id": 125026, "definitionId": 129864, "maxRanks": 1, "type": "active", "name": "Fists of Fury", "spellId": 113656, "icon": "monk_ability_fistoffury", "index": 100}]}, {"id": 101048, "name": "Momentum Boost", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101049, 101047], "prev": [101218], "entries": [{"id": 124820, "definitionId": 129658, "maxRanks": 1, "type": "passive", "name": "Momentum Boost", "spellId": 451294, "icon": "inv_belt_leather_raidmonk_n_01", "index": 100}]}, {"id": 101217, "name": "Combat Wisdom", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [101054], "prev": [101218], "entries": [{"id": 125025, "definitionId": 129863, "maxRanks": 1, "type": "passive", "name": "Combat Wisdom", "spellId": 121817, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101036, "name": "Acclamation", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101037, 101035], "prev": [101218], "entries": [{"id": 124806, "definitionId": 129644, "maxRanks": 1, "type": "passive", "name": "Acclamation", "spellId": 451432, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101049, "name": "Touch of the Tiger", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101055], "prev": [101048], "entries": [{"id": 124821, "definitionId": 129659, "maxRanks": 1, "type": "passive", "name": "Touch of the Tiger", "spellId": 388856, "icon": "ability_monk_tigerpalm", "index": 100}]}, {"id": 101047, "name": "Hardened Soles", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [101055], "prev": [101048], "entries": [{"id": 124819, "definitionId": 129657, "maxRanks": 1, "type": "passive", "name": "Hardened Soles", "spellId": 391383, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101037, "name": "Ascension", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [101039], "prev": [101036], "entries": [{"id": 124807, "definitionId": 129645, "maxRanks": 1, "type": "passive", "name": "Ascension", "spellId": 115396, "icon": "ability_monk_ascension", "index": 100}]}, {"id": 101035, "name": "Ferociousness", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101039], "prev": [101036], "entries": [{"id": 124805, "definitionId": 129643, "maxRanks": 1, "type": "passive", "name": "Ferociousness", "spellId": 458623, "icon": "ability_mount_whitetiger", "index": 100}]}, {"id": 101055, "name": "Crane Vortex", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [101050, 101061, 101060], "prev": [101049, 101047], "entries": [{"id": 124828, "definitionId": 129666, "maxRanks": 1, "type": "passive", "name": "Crane Vortex", "spellId": 388848, "icon": "ability_monk_cranekick_new", "index": 100}]}, {"id": 101054, "name": "Teachings of the Monastery", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101061, 101053, 101216], "prev": [101217], "entries": [{"id": 124827, "definitionId": 129665, "maxRanks": 1, "type": "passive", "name": "Teachings of the Monastery", "spellId": 116645, "icon": "passive_monk_teachingsofmonastery", "index": 100}]}, {"id": 101039, "name": "Glory of the Dawn", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [101216, 101038, 101215], "prev": [101037, 101035], "entries": [{"id": 124810, "definitionId": 129648, "maxRanks": 1, "type": "passive", "name": "Glory of the Dawn", "spellId": 392958, "icon": "ability_monk_mightyoxkick", "index": 100}]}, {"id": 101050, "name": "Jade Ignition", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101060], "prev": [101055], "entries": [{"id": 124822, "definitionId": 129660, "maxRanks": 1, "type": "passive", "name": "Jade Ignition", "spellId": 392979, "icon": "ability_monk_chiexplosion", "index": 100}]}, {"id": 101061, "name": "Courageous Impulse", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101060], "prev": [101055, 101054], "entries": [{"id": 124835, "definitionId": 129673, "maxRanks": 1, "type": "passive", "name": "Courageous Impulse", "spellId": 451495, "icon": "inv_glove_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101053, "name": "Storm, Earth, and Fire", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101052, 101051, 101206], "prev": [101054], "entries": [{"id": 124826, "definitionId": 129664, "maxRanks": 1, "type": "active", "name": "Storm, Earth, and Fire", "spellId": 137639, "icon": "spell_nature_giftofthewild", "index": 100}]}, {"id": 101216, "name": "Flurry of Xuen / Hit Combo", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101215], "prev": [101039, 101054], "entries": [{"id": 125024, "definitionId": 129862, "maxRanks": 1, "type": "passive", "name": "Flurry of Xuen", "spellId": 452137, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125023, "definitionId": 129861, "maxRanks": 1, "type": "passive", "name": "Hit Combo", "spellId": 196740, "icon": "ability_monk_palmstrike", "index": 200}]}, {"id": 101038, "name": "Brawler's Intensity / Meridian Strikes", "type": "choice", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101215], "prev": [101039], "entries": [{"id": 124809, "definitionId": 129647, "maxRanks": 1, "type": "passive", "name": "Brawler's Intensity", "spellId": 451485, "icon": "inv_staff_2h_artifactmonkeyking_d_03", "index": 100}, {"id": 124808, "definitionId": 129646, "maxRanks": 1, "type": "passive", "name": "Meridian Strikes", "spellId": 391330, "icon": "ability_monk_touchofdeath", "index": 200}]}, {"id": 101060, "name": "Dance of Chi-Ji", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101057, 101056, 101062], "prev": [101061, 101055, 101050], "entries": [{"id": 124834, "definitionId": 129672, "maxRanks": 1, "type": "passive", "name": "Dance of Chi-Ji", "spellId": 325201, "icon": "ability_monk_cranekick_new", "index": 100}]}, {"id": 101052, "name": "Drinking Horn Cover / Spiritual Focus", "type": "choice", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101062, 101206], "prev": [101053], "entries": [{"id": 124825, "definitionId": 129663, "maxRanks": 1, "type": "passive", "name": "Drinking Horn Cover", "spellId": 391370, "icon": "ability_warrior_unrelentingassault", "index": 100}, {"id": 124824, "definitionId": 129662, "maxRanks": 1, "type": "passive", "name": "Spiritual Focus", "spellId": 280197, "icon": "spell_nature_giftofthewild", "index": 200}]}, {"id": 101051, "name": "Ordered Elements", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101206, 101214], "prev": [101053], "entries": [{"id": 124823, "definitionId": 129661, "maxRanks": 1, "type": "passive", "name": "Ordered Elements", "spellId": 451463, "icon": "ability_revendreth_monk", "index": 100}]}, {"id": 101215, "name": "Strike of the Windlord", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101214, 101046, 101040], "prev": [101038, 101039, 101216], "entries": [{"id": 125022, "definitionId": 129860, "maxRanks": 1, "type": "active", "name": "Strike of the Windlord", "spellId": 392983, "icon": "inv_hand_1h_artifactskywall_d_01", "index": 100}]}, {"id": 101057, "name": "Martial Mixture", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101059], "prev": [101060], "entries": [{"id": 124830, "definitionId": 129668, "maxRanks": 1, "type": "passive", "name": "Martial Mixture", "spellId": 451454, "icon": "ability_monk_powerstrikes", "index": 100}]}, {"id": 101056, "name": "Energy Burst", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101059, 101205], "prev": [101060], "entries": [{"id": 124829, "definitionId": 129667, "maxRanks": 1, "type": "passive", "name": "Energy Burst", "spellId": 451498, "icon": "ability_monk_blackoutstrike", "index": 100}]}, {"id": 101062, "name": "Shadowboxing Treads", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101205], "prev": [101052, 101060], "entries": [{"id": 124836, "definitionId": 129674, "maxRanks": 1, "type": "passive", "name": "Shadowboxing Treads", "spellId": 392982, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101206, "name": "Invoke Xuen, the White Tiger", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101205, 101207, 101213], "prev": [101053, 101052, 101051], "entries": [{"id": 125013, "definitionId": 129851, "maxRanks": 1, "type": "active", "name": "Invoke Xuen, the White Tiger", "spellId": 123904, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101214, "name": "Inner Peace", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101213], "prev": [101215, 101051], "entries": [{"id": 125021, "definitionId": 129859, "maxRanks": 1, "type": "passive", "name": "Inner Peace", "spellId": 397768, "icon": "ability_monk_jasmineforcetea", "index": 100}]}, {"id": 101046, "name": "Rushing Jade Wind", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101213, 101045], "prev": [101215], "entries": [{"id": 124818, "definitionId": 129656, "maxRanks": 1, "type": "passive", "name": "Rushing Jade Wind", "spellId": 451505, "icon": "ability_monk_rushingjadewind", "index": 100}]}, {"id": 101040, "name": "Thunderfist", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101045], "prev": [101215], "entries": [{"id": 124811, "definitionId": 129649, "maxRanks": 1, "type": "passive", "name": "Thunderfist", "spellId": 392985, "icon": "inv_hand_1h_artifactskywall_d_01", "index": 100}]}, {"id": 101059, "name": "Sequenced Strikes", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101058, 101204], "prev": [101056, 101057], "entries": [{"id": 124833, "definitionId": 129671, "maxRanks": 1, "type": "passive", "name": "Sequenced Strikes", "spellId": 451515, "icon": "ability_monk_sparring", "index": 100}]}, {"id": 101205, "name": "Rising Star", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101204], "prev": [101062, 101206, 101056], "entries": [{"id": 125012, "definitionId": 129850, "maxRanks": 1, "type": "passive", "name": "Rising Star", "spellId": 388849, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101207, "name": "Invoker's Delight", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101208, 101210, 101212], "prev": [101206], "entries": [{"id": 125014, "definitionId": 129852, "maxRanks": 1, "type": "passive", "name": "Invoker's Delight", "spellId": 388661, "icon": "inv_inscription_80_warscroll_battleshout", "index": 100}]}, {"id": 101213, "name": "Dual Threat", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101212, 101044], "prev": [101214, 101046, 101206], "entries": [{"id": 125020, "definitionId": 129858, "maxRanks": 1, "type": "passive", "name": "Dual Threat", "spellId": 451823, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101045, "name": "Gale Force", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101044, 101041], "prev": [101040, 101046], "entries": [{"id": 124817, "definitionId": 129655, "maxRanks": 1, "type": "passive", "name": "Gale Force", "spellId": 451580, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 101058, "name": "Last Emperor's Capacitor / ", "type": "single", "posX": 10200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102251], "prev": [101059], "entries": [{"id": 124832, "definitionId": 129670, "maxRanks": 1, "type": "passive", "name": "Last Emperor's Capacitor", "spellId": 392989, "icon": "ability_warrior_unrelentingassault", "index": 100}, {}]}, {"id": 101204, "name": "Whirling Dragon Punch", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101203, 101209], "prev": [101059, 101205], "entries": [{"id": 125011, "definitionId": 129849, "maxRanks": 1, "type": "active", "name": "Whirling Dragon Punch", "spellId": 152175, "icon": "ability_monk_hurricanestrike", "index": 100}]}, {"id": 101208, "name": "Xuen's Bond", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101209], "prev": [101207], "entries": [{"id": 125015, "definitionId": 129853, "maxRanks": 1, "type": "passive", "name": "Xuen's Bond", "spellId": 392986, "icon": "ability_demonhunter_netherbond", "index": 100}]}, {"id": 101210, "name": "Xuen's Battlegear", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101209, 101211], "prev": [101207], "entries": [{"id": 125017, "definitionId": 129855, "maxRanks": 1, "type": "passive", "name": "Xuen's Battlegear", "spellId": 392993, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101212, "name": "Transfer the Power", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101211], "prev": [101207, 101213], "entries": [{"id": 125019, "definitionId": 129857, "maxRanks": 1, "type": "passive", "name": "Transfer the Power", "spellId": 195300, "icon": "ability_thunderking_kickshell", "index": 100}]}, {"id": 101044, "name": "Jadefire Fists / Jadefire Stomp", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101043, 101042], "prev": [101045, 101213], "entries": [{"id": 124816, "definitionId": 129654, "maxRanks": 1, "type": "passive", "name": "Jadefire Fists", "spellId": 457974, "icon": "spell_animaardenweald_missile", "index": 100}, {"id": 126026, "definitionId": 130858, "maxRanks": 1, "type": "active", "name": "Jadefire Stomp", "spellId": 388193, "icon": "ability_ardenweald_monk", "index": 200}]}, {"id": 101041, "name": "Communion With Wind", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102250], "prev": [101045], "entries": [{"id": 124812, "definitionId": 129650, "maxRanks": 1, "type": "passive", "name": "Communion With Wind", "spellId": 451576, "icon": "ability_skyreach_wind_wall", "index": 100}]}, {"id": 102251, "name": "Power of the Thunder King / ", "type": "single", "posX": 10200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101058], "entries": [{"id": 126309, "definitionId": 131135, "maxRanks": 1, "type": "passive", "name": "Power of the Thunder King", "spellId": 459809, "icon": "ability_thunderking_thunderstruck", "index": 100}, {}]}, {"id": 101203, "name": "Revolving Whirl / Knowledge of the Broken Temple", "type": "choice", "posX": 10800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101204], "entries": [{"id": 125010, "definitionId": 129848, "maxRanks": 1, "type": "passive", "name": "Revolving Whirl", "spellId": 451524, "icon": "ability_monk_chiswirl", "index": 100}, {"id": 125009, "definitionId": 129847, "maxRanks": 1, "type": "passive", "name": "Knowledge of the Broken Temple", "spellId": 451529, "icon": "inv_glove_leather_pvpmonk_f_01", "index": 200}]}, {"id": 101209, "name": "Memory of the Monastery", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101204, 101210, 101208], "entries": [{"id": 125016, "definitionId": 129854, "maxRanks": 1, "type": "passive", "name": "Memory of the Monastery", "spellId": 454969, "icon": "ability_mount_goatmountwhite", "index": 100}]}, {"id": 101211, "name": "Fury of Xuen", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101212, 101210], "entries": [{"id": 125018, "definitionId": 129856, "maxRanks": 1, "type": "passive", "name": "Fury of Xuen", "spellId": 396166, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101043, "name": "Path of Jade / Singularly Focused Jade", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101044], "entries": [{"id": 124815, "definitionId": 129653, "maxRanks": 1, "type": "passive", "name": "Path of Jade", "spellId": 392994, "icon": "spell_animaardenweald_beam", "index": 100}, {"id": 124814, "definitionId": 129652, "maxRanks": 1, "type": "passive", "name": "Singularly Focused Jade", "spellId": 451573, "icon": "ability_monk_fortuneturned", "index": 200}]}, {"id": 101042, "name": "Jadefire Harmony", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101044], "entries": [{"id": 124813, "definitionId": 129651, "maxRanks": 1, "type": "passive", "name": "Jadefire Harmony", "spellId": 391412, "icon": "ability_ardenweald_monk", "index": 100}]}, {"id": 102250, "name": "Darting Hurricane", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101041], "entries": [{"id": 126307, "definitionId": 131133, "maxRanks": 1, "type": "passive", "name": "Darting Hurricane", "spellId": 459839, "icon": "ability_skyreach_four_wind", "index": 100}]}], "heroNodes": [{"id": 101243, "name": "Celestial Conduit", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 64, "next": [101236, 101242, 101233], "prev": [], "entries": [{"id": 125062, "definitionId": 129894, "maxRanks": 1, "type": "active", "name": "Celestial Conduit", "spellId": 443028, "icon": "inv_ability_conduitofthecelestialsmonk_celestialconduit", "index": 100}], "freeNode": true}, {"id": 101248, "name": "Flurry Strikes", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 65, "next": [101247, 101249, 101246], "prev": [], "entries": [{"id": 125069, "definitionId": 129901, "maxRanks": 1, "type": "passive", "name": "Flurry Strikes", "spellId": 450615, "icon": "inv_ability_shadopanmonk_flurrystrikes", "index": 100}], "freeNode": true}, {"id": 101236, "name": "Temple Training / Xuen's Guidance", "type": "choice", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101237], "prev": [101243], "entries": [{"id": 125054, "definitionId": 129886, "maxRanks": 1, "type": "passive", "name": "Temple Training", "spellId": 442743, "icon": "ability_monk_provoke", "index": 100}, {"id": 125053, "definitionId": 129885, "maxRanks": 1, "type": "passive", "name": "Xuen's Guidance", "spellId": 442687, "icon": "ability_monk_dpsstance", "index": 200}]}, {"id": 101242, "name": "Courage of the White Tiger", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101241], "prev": [101243], "entries": [{"id": 125061, "definitionId": 129893, "maxRanks": 1, "type": "passive", "name": "Courage of the White Tiger", "spellId": 443087, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101233, "name": "Restore Balance / Yu'lon's Knowledge", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101234], "prev": [101243], "entries": [{"id": 125049, "definitionId": 129881, "maxRanks": 1, "type": "passive", "name": "Restore Balance", "spellId": 442719, "icon": "ability_monk_chiexplosion", "index": 100}, {"id": 125048, "definitionId": 129880, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Knowledge", "spellId": 443625, "icon": "inv_jewelcrafting_jadeserpent", "index": 200}]}, {"id": 101247, "name": "Pride of Pandaria / High Impact", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101254], "prev": [101248], "entries": [{"id": 125068, "definitionId": 129900, "maxRanks": 1, "type": "passive", "name": "Pride of Pandaria", "spellId": 450979, "icon": "inv_staff_2h_pandarenmonk_c_01", "index": 100}, {"id": 125067, "definitionId": 129899, "maxRanks": 1, "type": "passive", "name": "High Impact", "spellId": 450982, "icon": "ability_monk_powerstrikes", "index": 200}]}, {"id": 101249, "name": "Veteran's Eye", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101250], "prev": [101248], "entries": [{"id": 125070, "definitionId": 129902, "maxRanks": 1, "type": "passive", "name": "Veteran's Eye", "spellId": 450987, "icon": "ability_monk_provoke", "index": 100}]}, {"id": 101246, "name": "Martial Precision", "type": "single", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101245], "prev": [101248], "entries": [{"id": 125066, "definitionId": 129898, "maxRanks": 1, "type": "passive", "name": "Martial Precision", "spellId": 450990, "icon": "ability_monk_jab", "index": 100}]}, {"id": 101237, "name": "Heart of the Jade Serpent", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "requiresNode": 101120, "next": [101238], "prev": [101236], "entries": [{"id": 125055, "definitionId": 129887, "maxRanks": 1, "type": "passive", "name": "Heart of the Jade Serpent", "spellId": 443294, "icon": "ability_monk_dragonkick", "index": 100}]}, {"id": 101241, "name": "Strength of the Black Ox", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101240], "prev": [101242], "entries": [{"id": 125060, "definitionId": 129892, "maxRanks": 1, "type": "passive", "name": "Strength of the Black Ox", "spellId": 443110, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101234, "name": "Flight of the Red Crane", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101235], "prev": [101233], "entries": [{"id": 125050, "definitionId": 129882, "maxRanks": 1, "type": "passive", "name": "Flight of the Red Crane", "spellId": 443255, "icon": "inv_pet_cranegod", "index": 100}]}, {"id": 101254, "name": "Protect and Serve / Lead from the Front", "type": "choice", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101253], "prev": [101247], "entries": [{"id": 125076, "definitionId": 129908, "maxRanks": 1, "type": "passive", "name": "Protect and Serve", "spellId": 450984, "icon": "ability_monk_vivify", "index": 100}, {"id": 125075, "definitionId": 129907, "maxRanks": 1, "type": "passive", "name": "Lead from the Front", "spellId": 450985, "icon": "ability_monk_quipunch", "index": 200}]}, {"id": 101250, "name": "One Versus Many", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101251], "prev": [101249], "entries": [{"id": 125071, "definitionId": 129903, "maxRanks": 1, "type": "passive", "name": "One Versus Many", "spellId": 450988, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101245, "name": "Whirling Steel / Predictive Training", "type": "choice", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101244], "prev": [101246], "entries": [{"id": 125065, "definitionId": 129897, "maxRanks": 1, "type": "passive", "name": "Whirling Steel", "spellId": 450991, "icon": "ability_whirlwind", "index": 100}, {"id": 125064, "definitionId": 129896, "maxRanks": 1, "type": "passive", "name": "Predictive Training", "spellId": 450992, "icon": "ability_monk_domeofmist", "index": 200}]}, {"id": 101238, "name": "Niuzao's Protection / Jade Sanctuary", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101237], "entries": [{"id": 125057, "definitionId": 129889, "maxRanks": 1, "type": "passive", "name": "Niuzao's Protection", "spellId": 442747, "icon": "ability_monk_chargingoxwave", "index": 100}, {"id": 125056, "definitionId": 129888, "maxRanks": 1, "type": "passive", "name": "Jade Sanctuary", "spellId": 443059, "icon": "ability_monk_jadeserpentbreath", "index": 200}]}, {"id": 101240, "name": "Chi-Ji's Swiftness", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101241], "entries": [{"id": 125059, "definitionId": 129891, "maxRanks": 1, "type": "passive", "name": "Chi-Ji's Swiftness", "spellId": 443566, "icon": "inv_shoulder_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101235, "name": "Inner Compass / August Dynasty", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101234], "entries": [{"id": 125052, "definitionId": 129884, "maxRanks": 1, "type": "passive", "name": "Inner Compass", "spellId": 443571, "icon": "inv_10_dungeonjewelry_explorer_trinket_1compass_color2", "index": 100}, {"id": 125051, "definitionId": 129883, "maxRanks": 1, "type": "passive", "name": "August Dynasty", "spellId": 442818, "icon": "ability_monk_legacyoftheemperor", "index": 200}]}, {"id": 101253, "name": "Against All Odds", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101254], "entries": [{"id": 125074, "definitionId": 129906, "maxRanks": 1, "type": "passive", "name": "Against All Odds", "spellId": 450986, "icon": "achievement_legionpvp6tier1", "index": 100}]}, {"id": 101251, "name": "Efficient Training", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101250], "entries": [{"id": 125072, "definitionId": 129904, "maxRanks": 1, "type": "passive", "name": "Efficient Training", "spellId": 450989, "icon": "inv_fistofthewhitetiger", "index": 100}]}, {"id": 101244, "name": "Vigilant Watch", "type": "single", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101245], "entries": [{"id": 125063, "definitionId": 129895, "maxRanks": 1, "type": "passive", "name": "Vigilant Watch", "spellId": 450993, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 101239, "name": "Unity Within", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 64, "next": [], "prev": [101240, 101235, 101238], "entries": [{"id": 125058, "definitionId": 129890, "maxRanks": 1, "type": "passive", "name": "Unity Within", "spellId": 443589, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101252, "name": "Wisdom of the Wall", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 65, "next": [], "prev": [101244, 101253, 101251], "entries": [{"id": 125073, "definitionId": 129905, "maxRanks": 1, "type": "passive", "name": "Wisdom of the Wall", "spellId": 450994, "icon": "inv_legendary_sigilofwisdom", "index": 100}]}], "subTreeNodes": [{"id": 101232, "name": "Conduit of the Celestials / Shado-Pan", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125047, "type": "subtree", "name": "Conduit of the Celestials", "traitSubTreeId": 64, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-conduitofthecelestials", "nodes": [101243, 101236, 101242, 101233, 101237, 101241, 101234, 101238, 101240, 101235, 101239]}, {"id": 125046, "type": "subtree", "name": "Shado-Pan", "traitSubTreeId": 65, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-shadopan", "nodes": [101248, 101247, 101249, 101246, 101254, 101250, 101245, 101253, 101251, 101244, 101252]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101105, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]} \ No newline at end of file +{"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Windwalker", "specId": 269, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101150], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101150, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 101159], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101150, "name": "Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184, 101183], "prev": [101185, 101149], "entries": [{"id": 124941, "definitionId": 129779, "maxRanks": 1, "type": "active", "name": "Detox", "spellId": 218164, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [101159, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [101159, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101153, 101148, 101150], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101185, 101150], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 101159, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101160, 101146, 101145], "entries": [{"id": 124953, "definitionId": 129791, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 124952, "definitionId": 129790, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 460485, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152, 101150], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101159, 101145], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101137], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101137], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101137, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101159, 101158, 101166], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101162], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101162], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101162, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101137, "name": "Dance of the Wind", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124927, "definitionId": 129765, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 432181, "icon": "ability_monk_dematerialize", "index": 100}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101162, "name": "Summon White Tiger Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101163, 101165, 101173], "entries": [{"id": 124956, "definitionId": 129794, "maxRanks": 1, "type": "passive", "name": "Summon White Tiger Statue", "spellId": 450639, "icon": "ability_monk_summonwhitetigerstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101137, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101162, 101135, 101174], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101218, "name": "Fists of Fury", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101048, 101217, 101036], "prev": [], "entries": [{"id": 125026, "definitionId": 129864, "maxRanks": 1, "type": "active", "name": "Fists of Fury", "spellId": 113656, "icon": "monk_ability_fistoffury", "index": 100}]}, {"id": 101048, "name": "Momentum Boost", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101049, 101047], "prev": [101218], "entries": [{"id": 124820, "definitionId": 129658, "maxRanks": 1, "type": "passive", "name": "Momentum Boost", "spellId": 451294, "icon": "inv_belt_leather_raidmonk_n_01", "index": 100}]}, {"id": 101217, "name": "Combat Wisdom", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [101054], "prev": [101218], "entries": [{"id": 125025, "definitionId": 129863, "maxRanks": 1, "type": "passive", "name": "Combat Wisdom", "spellId": 121817, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101036, "name": "Acclamation", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101037, 101035], "prev": [101218], "entries": [{"id": 124806, "definitionId": 129644, "maxRanks": 1, "type": "passive", "name": "Acclamation", "spellId": 451432, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101049, "name": "Touch of the Tiger", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101055], "prev": [101048], "entries": [{"id": 124821, "definitionId": 129659, "maxRanks": 1, "type": "passive", "name": "Touch of the Tiger", "spellId": 388856, "icon": "ability_monk_tigerpalm", "index": 100}]}, {"id": 101047, "name": "Hardened Soles", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [101055], "prev": [101048], "entries": [{"id": 124819, "definitionId": 129657, "maxRanks": 1, "type": "passive", "name": "Hardened Soles", "spellId": 391383, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101037, "name": "Ascension", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [101039], "prev": [101036], "entries": [{"id": 124807, "definitionId": 129645, "maxRanks": 1, "type": "passive", "name": "Ascension", "spellId": 115396, "icon": "ability_monk_ascension", "index": 100}]}, {"id": 101035, "name": "Ferociousness", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101039], "prev": [101036], "entries": [{"id": 124805, "definitionId": 129643, "maxRanks": 1, "type": "passive", "name": "Ferociousness", "spellId": 458623, "icon": "ability_mount_whitetiger", "index": 100}]}, {"id": 101055, "name": "Crane Vortex", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [101050, 101061, 101060], "prev": [101049, 101047], "entries": [{"id": 124828, "definitionId": 129666, "maxRanks": 1, "type": "passive", "name": "Crane Vortex", "spellId": 388848, "icon": "ability_monk_cranekick_new", "index": 100}]}, {"id": 101054, "name": "Teachings of the Monastery", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101061, 101053, 101216], "prev": [101217], "entries": [{"id": 124827, "definitionId": 129665, "maxRanks": 1, "type": "passive", "name": "Teachings of the Monastery", "spellId": 116645, "icon": "passive_monk_teachingsofmonastery", "index": 100}]}, {"id": 101039, "name": "Glory of the Dawn", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [101216, 101038, 101215], "prev": [101037, 101035], "entries": [{"id": 124810, "definitionId": 129648, "maxRanks": 1, "type": "passive", "name": "Glory of the Dawn", "spellId": 392958, "icon": "ability_monk_mightyoxkick", "index": 100}]}, {"id": 101050, "name": "Jade Ignition", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101060], "prev": [101055], "entries": [{"id": 124822, "definitionId": 129660, "maxRanks": 1, "type": "passive", "name": "Jade Ignition", "spellId": 392979, "icon": "ability_monk_chiexplosion", "index": 100}]}, {"id": 101061, "name": "Courageous Impulse", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101060], "prev": [101055, 101054], "entries": [{"id": 124835, "definitionId": 129673, "maxRanks": 1, "type": "passive", "name": "Courageous Impulse", "spellId": 451495, "icon": "inv_glove_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101053, "name": "Storm, Earth, and Fire", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101052, 101051, 101206], "prev": [101054], "entries": [{"id": 124826, "definitionId": 129664, "maxRanks": 1, "type": "active", "name": "Storm, Earth, and Fire", "spellId": 137639, "icon": "spell_nature_giftofthewild", "index": 100}]}, {"id": 101216, "name": "Flurry of Xuen / Hit Combo", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101215], "prev": [101039, 101054], "entries": [{"id": 125024, "definitionId": 129862, "maxRanks": 1, "type": "passive", "name": "Flurry of Xuen", "spellId": 452137, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125023, "definitionId": 129861, "maxRanks": 1, "type": "passive", "name": "Hit Combo", "spellId": 196740, "icon": "ability_monk_palmstrike", "index": 200}]}, {"id": 101038, "name": "Brawler's Intensity / Meridian Strikes", "type": "choice", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101215], "prev": [101039], "entries": [{"id": 124809, "definitionId": 129647, "maxRanks": 1, "type": "passive", "name": "Brawler's Intensity", "spellId": 451485, "icon": "inv_staff_2h_artifactmonkeyking_d_03", "index": 100}, {"id": 124808, "definitionId": 129646, "maxRanks": 1, "type": "passive", "name": "Meridian Strikes", "spellId": 391330, "icon": "ability_monk_touchofdeath", "index": 200}]}, {"id": 101060, "name": "Dance of Chi-Ji", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101057, 101056, 101062], "prev": [101061, 101055, 101050], "entries": [{"id": 124834, "definitionId": 129672, "maxRanks": 1, "type": "passive", "name": "Dance of Chi-Ji", "spellId": 325201, "icon": "ability_monk_cranekick_new", "index": 100}]}, {"id": 101052, "name": "Drinking Horn Cover / Spiritual Focus", "type": "choice", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101062, 101206], "prev": [101053], "entries": [{"id": 124825, "definitionId": 129663, "maxRanks": 1, "type": "passive", "name": "Drinking Horn Cover", "spellId": 391370, "icon": "ability_warrior_unrelentingassault", "index": 100}, {"id": 124824, "definitionId": 129662, "maxRanks": 1, "type": "passive", "name": "Spiritual Focus", "spellId": 280197, "icon": "spell_nature_giftofthewild", "index": 200}]}, {"id": 101051, "name": "Ordered Elements", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101206, 101214], "prev": [101053], "entries": [{"id": 124823, "definitionId": 129661, "maxRanks": 1, "type": "passive", "name": "Ordered Elements", "spellId": 451463, "icon": "ability_revendreth_monk", "index": 100}]}, {"id": 101215, "name": "Strike of the Windlord", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101214, 101046, 101040], "prev": [101038, 101039, 101216], "entries": [{"id": 125022, "definitionId": 129860, "maxRanks": 1, "type": "active", "name": "Strike of the Windlord", "spellId": 392983, "icon": "inv_hand_1h_artifactskywall_d_01", "index": 100}]}, {"id": 101057, "name": "Martial Mixture", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101059], "prev": [101060], "entries": [{"id": 124830, "definitionId": 129668, "maxRanks": 1, "type": "passive", "name": "Martial Mixture", "spellId": 451454, "icon": "ability_monk_powerstrikes", "index": 100}]}, {"id": 101056, "name": "Energy Burst", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101059, 101205], "prev": [101060], "entries": [{"id": 124829, "definitionId": 129667, "maxRanks": 1, "type": "passive", "name": "Energy Burst", "spellId": 451498, "icon": "ability_monk_blackoutstrike", "index": 100}]}, {"id": 101062, "name": "Shadowboxing Treads", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101205], "prev": [101052, 101060], "entries": [{"id": 124836, "definitionId": 129674, "maxRanks": 1, "type": "passive", "name": "Shadowboxing Treads", "spellId": 392982, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101206, "name": "Invoke Xuen, the White Tiger", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101205, 101207, 101213], "prev": [101053, 101052, 101051], "entries": [{"id": 125013, "definitionId": 129851, "maxRanks": 1, "type": "active", "name": "Invoke Xuen, the White Tiger", "spellId": 123904, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101214, "name": "Inner Peace", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101213], "prev": [101215, 101051], "entries": [{"id": 125021, "definitionId": 129859, "maxRanks": 1, "type": "passive", "name": "Inner Peace", "spellId": 397768, "icon": "ability_monk_jasmineforcetea", "index": 100}]}, {"id": 101046, "name": "Rushing Jade Wind", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101213, 101045], "prev": [101215], "entries": [{"id": 124818, "definitionId": 129656, "maxRanks": 1, "type": "passive", "name": "Rushing Jade Wind", "spellId": 451505, "icon": "ability_monk_rushingjadewind", "index": 100}]}, {"id": 101040, "name": "Thunderfist", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101045], "prev": [101215], "entries": [{"id": 124811, "definitionId": 129649, "maxRanks": 1, "type": "passive", "name": "Thunderfist", "spellId": 392985, "icon": "inv_hand_1h_artifactskywall_d_01", "index": 100}]}, {"id": 101059, "name": "Sequenced Strikes", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101058, 101204], "prev": [101056, 101057], "entries": [{"id": 124833, "definitionId": 129671, "maxRanks": 1, "type": "passive", "name": "Sequenced Strikes", "spellId": 451515, "icon": "ability_monk_sparring", "index": 100}]}, {"id": 101205, "name": "Rising Star", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101204], "prev": [101062, 101206, 101056], "entries": [{"id": 125012, "definitionId": 129850, "maxRanks": 1, "type": "passive", "name": "Rising Star", "spellId": 388849, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101207, "name": "Invoker's Delight", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101208, 101210, 101212], "prev": [101206], "entries": [{"id": 125014, "definitionId": 129852, "maxRanks": 1, "type": "passive", "name": "Invoker's Delight", "spellId": 388661, "icon": "inv_inscription_80_warscroll_battleshout", "index": 100}]}, {"id": 101213, "name": "Dual Threat", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101212, 101044], "prev": [101214, 101046, 101206], "entries": [{"id": 125020, "definitionId": 129858, "maxRanks": 1, "type": "passive", "name": "Dual Threat", "spellId": 451823, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101045, "name": "Gale Force", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101044, 101041], "prev": [101040, 101046], "entries": [{"id": 124817, "definitionId": 129655, "maxRanks": 1, "type": "passive", "name": "Gale Force", "spellId": 451580, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 101058, "name": "Last Emperor's Capacitor / ", "type": "single", "posX": 10200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102251], "prev": [101059], "entries": [{"id": 124832, "definitionId": 129670, "maxRanks": 1, "type": "passive", "name": "Last Emperor's Capacitor", "spellId": 392989, "icon": "ability_warrior_unrelentingassault", "index": 100}, {}]}, {"id": 101204, "name": "Whirling Dragon Punch", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101203, 101209], "prev": [101059, 101205], "entries": [{"id": 125011, "definitionId": 129849, "maxRanks": 1, "type": "active", "name": "Whirling Dragon Punch", "spellId": 152175, "icon": "ability_monk_hurricanestrike", "index": 100}]}, {"id": 101208, "name": "Xuen's Bond", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101209], "prev": [101207], "entries": [{"id": 125015, "definitionId": 129853, "maxRanks": 1, "type": "passive", "name": "Xuen's Bond", "spellId": 392986, "icon": "ability_demonhunter_netherbond", "index": 100}]}, {"id": 101210, "name": "Xuen's Battlegear", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101209, 101211], "prev": [101207], "entries": [{"id": 125017, "definitionId": 129855, "maxRanks": 1, "type": "passive", "name": "Xuen's Battlegear", "spellId": 392993, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101212, "name": "Transfer the Power", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101211], "prev": [101207, 101213], "entries": [{"id": 125019, "definitionId": 129857, "maxRanks": 1, "type": "passive", "name": "Transfer the Power", "spellId": 195300, "icon": "ability_thunderking_kickshell", "index": 100}]}, {"id": 101044, "name": "Jadefire Fists / Jadefire Stomp", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101043, 101042], "prev": [101045, 101213], "entries": [{"id": 124816, "definitionId": 129654, "maxRanks": 1, "type": "passive", "name": "Jadefire Fists", "spellId": 457974, "icon": "spell_animaardenweald_missile", "index": 100}, {"id": 126026, "definitionId": 130858, "maxRanks": 1, "type": "active", "name": "Jadefire Stomp", "spellId": 388193, "icon": "inv_ability_monk_jadefirestomp", "index": 200}]}, {"id": 101041, "name": "Communion With Wind", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102250], "prev": [101045], "entries": [{"id": 124812, "definitionId": 129650, "maxRanks": 1, "type": "passive", "name": "Communion With Wind", "spellId": 451576, "icon": "ability_skyreach_wind_wall", "index": 100}]}, {"id": 102251, "name": "Power of the Thunder King / ", "type": "single", "posX": 10200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101058], "entries": [{"id": 126309, "definitionId": 131135, "maxRanks": 1, "type": "passive", "name": "Power of the Thunder King", "spellId": 459809, "icon": "ability_thunderking_thunderstruck", "index": 100}, {}]}, {"id": 101203, "name": "Revolving Whirl / Knowledge of the Broken Temple", "type": "choice", "posX": 10800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101204], "entries": [{"id": 125010, "definitionId": 129848, "maxRanks": 1, "type": "passive", "name": "Revolving Whirl", "spellId": 451524, "icon": "ability_monk_chiswirl", "index": 100}, {"id": 125009, "definitionId": 129847, "maxRanks": 1, "type": "passive", "name": "Knowledge of the Broken Temple", "spellId": 451529, "icon": "inv_glove_leather_pvpmonk_f_01", "index": 200}]}, {"id": 101209, "name": "Memory of the Monastery", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101204, 101210, 101208], "entries": [{"id": 125016, "definitionId": 129854, "maxRanks": 1, "type": "passive", "name": "Memory of the Monastery", "spellId": 454969, "icon": "ability_mount_goatmountwhite", "index": 100}]}, {"id": 101211, "name": "Fury of Xuen", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101212, 101210], "entries": [{"id": 125018, "definitionId": 129856, "maxRanks": 1, "type": "passive", "name": "Fury of Xuen", "spellId": 396166, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101043, "name": "Path of Jade / Singularly Focused Jade", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101044], "entries": [{"id": 124815, "definitionId": 129653, "maxRanks": 1, "type": "passive", "name": "Path of Jade", "spellId": 392994, "icon": "spell_animaardenweald_beam", "index": 100}, {"id": 124814, "definitionId": 129652, "maxRanks": 1, "type": "passive", "name": "Singularly Focused Jade", "spellId": 451573, "icon": "ability_monk_fortuneturned", "index": 200}]}, {"id": 101042, "name": "Jadefire Harmony", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101044], "entries": [{"id": 124813, "definitionId": 129651, "maxRanks": 1, "type": "passive", "name": "Jadefire Harmony", "spellId": 391412, "icon": "ability_ardenweald_monk", "index": 100}]}, {"id": 102250, "name": "Darting Hurricane", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101041], "entries": [{"id": 126307, "definitionId": 131133, "maxRanks": 1, "type": "passive", "name": "Darting Hurricane", "spellId": 459839, "icon": "ability_skyreach_four_wind", "index": 100}]}], "heroNodes": [{"id": 101243, "name": "Celestial Conduit", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 64, "next": [101236, 101242, 101233], "prev": [], "entries": [{"id": 125062, "definitionId": 129894, "maxRanks": 1, "type": "active", "name": "Celestial Conduit", "spellId": 443028, "icon": "inv_ability_conduitofthecelestialsmonk_celestialconduit", "index": 100}], "freeNode": true}, {"id": 101248, "name": "Flurry Strikes", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 65, "next": [101247, 101249, 101246], "prev": [], "entries": [{"id": 125069, "definitionId": 129901, "maxRanks": 1, "type": "passive", "name": "Flurry Strikes", "spellId": 450615, "icon": "inv_ability_shadopanmonk_flurrystrikes", "index": 100}], "freeNode": true}, {"id": 101236, "name": "Temple Training / Xuen's Guidance", "type": "choice", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101237], "prev": [101243], "entries": [{"id": 125054, "definitionId": 129886, "maxRanks": 1, "type": "passive", "name": "Temple Training", "spellId": 442743, "icon": "ability_monk_provoke", "index": 100}, {"id": 125053, "definitionId": 129885, "maxRanks": 1, "type": "passive", "name": "Xuen's Guidance", "spellId": 442687, "icon": "ability_monk_dpsstance", "index": 200}]}, {"id": 101242, "name": "Courage of the White Tiger", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101241], "prev": [101243], "entries": [{"id": 125061, "definitionId": 129893, "maxRanks": 1, "type": "passive", "name": "Courage of the White Tiger", "spellId": 443087, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101233, "name": "Restore Balance / Yu'lon's Knowledge", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101234], "prev": [101243], "entries": [{"id": 125049, "definitionId": 129881, "maxRanks": 1, "type": "passive", "name": "Restore Balance", "spellId": 442719, "icon": "ability_monk_chiexplosion", "index": 100}, {"id": 125048, "definitionId": 129880, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Knowledge", "spellId": 443625, "icon": "inv_jewelcrafting_jadeserpent", "index": 200}]}, {"id": 101247, "name": "Pride of Pandaria / High Impact", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101254], "prev": [101248], "entries": [{"id": 125068, "definitionId": 129900, "maxRanks": 1, "type": "passive", "name": "Pride of Pandaria", "spellId": 450979, "icon": "inv_staff_2h_pandarenmonk_c_01", "index": 100}, {"id": 125067, "definitionId": 129899, "maxRanks": 1, "type": "passive", "name": "High Impact", "spellId": 450982, "icon": "ability_monk_powerstrikes", "index": 200}]}, {"id": 101249, "name": "Veteran's Eye", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101250], "prev": [101248], "entries": [{"id": 125070, "definitionId": 129902, "maxRanks": 1, "type": "passive", "name": "Veteran's Eye", "spellId": 450987, "icon": "ability_monk_provoke", "index": 100}]}, {"id": 101246, "name": "Martial Precision", "type": "single", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101245], "prev": [101248], "entries": [{"id": 125066, "definitionId": 129898, "maxRanks": 1, "type": "passive", "name": "Martial Precision", "spellId": 450990, "icon": "ability_monk_jab", "index": 100}]}, {"id": 101237, "name": "Heart of the Jade Serpent", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "requiresNode": 101120, "next": [101238], "prev": [101236], "entries": [{"id": 125055, "definitionId": 129887, "maxRanks": 1, "type": "passive", "name": "Heart of the Jade Serpent", "spellId": 443294, "icon": "ability_monk_dragonkick", "index": 100}]}, {"id": 101241, "name": "Strength of the Black Ox", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101240], "prev": [101242], "entries": [{"id": 125060, "definitionId": 129892, "maxRanks": 1, "type": "passive", "name": "Strength of the Black Ox", "spellId": 443110, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101234, "name": "Flight of the Red Crane", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101235], "prev": [101233], "entries": [{"id": 125050, "definitionId": 129882, "maxRanks": 1, "type": "passive", "name": "Flight of the Red Crane", "spellId": 443255, "icon": "inv_pet_cranegod", "index": 100}]}, {"id": 101254, "name": "Protect and Serve / Lead from the Front", "type": "choice", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101253], "prev": [101247], "entries": [{"id": 125076, "definitionId": 129908, "maxRanks": 1, "type": "passive", "name": "Protect and Serve", "spellId": 450984, "icon": "ability_monk_vivify", "index": 100}, {"id": 125075, "definitionId": 129907, "maxRanks": 1, "type": "passive", "name": "Lead from the Front", "spellId": 450985, "icon": "ability_monk_quipunch", "index": 200}]}, {"id": 101250, "name": "One Versus Many", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101251], "prev": [101249], "entries": [{"id": 125071, "definitionId": 129903, "maxRanks": 1, "type": "passive", "name": "One Versus Many", "spellId": 450988, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101245, "name": "Whirling Steel / Predictive Training", "type": "choice", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101244], "prev": [101246], "entries": [{"id": 125065, "definitionId": 129897, "maxRanks": 1, "type": "passive", "name": "Whirling Steel", "spellId": 450991, "icon": "ability_whirlwind", "index": 100}, {"id": 125064, "definitionId": 129896, "maxRanks": 1, "type": "passive", "name": "Predictive Training", "spellId": 450992, "icon": "ability_monk_domeofmist", "index": 200}]}, {"id": 101238, "name": "Niuzao's Protection / Jade Sanctuary", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101237], "entries": [{"id": 125057, "definitionId": 129889, "maxRanks": 1, "type": "passive", "name": "Niuzao's Protection", "spellId": 442747, "icon": "ability_monk_chargingoxwave", "index": 100}, {"id": 125056, "definitionId": 129888, "maxRanks": 1, "type": "passive", "name": "Jade Sanctuary", "spellId": 443059, "icon": "ability_monk_jadeserpentbreath", "index": 200}]}, {"id": 101240, "name": "Chi-Ji's Swiftness", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101241], "entries": [{"id": 125059, "definitionId": 129891, "maxRanks": 1, "type": "passive", "name": "Chi-Ji's Swiftness", "spellId": 443566, "icon": "inv_shoulder_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101235, "name": "Inner Compass / August Dynasty", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101234], "entries": [{"id": 125052, "definitionId": 129884, "maxRanks": 1, "type": "passive", "name": "Inner Compass", "spellId": 443571, "icon": "inv_10_dungeonjewelry_explorer_trinket_1compass_color2", "index": 100}, {"id": 125051, "definitionId": 129883, "maxRanks": 1, "type": "passive", "name": "August Dynasty", "spellId": 442818, "icon": "ability_monk_legacyoftheemperor", "index": 200}]}, {"id": 101253, "name": "Against All Odds", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101254], "entries": [{"id": 125074, "definitionId": 129906, "maxRanks": 1, "type": "passive", "name": "Against All Odds", "spellId": 450986, "icon": "achievement_legionpvp6tier1", "index": 100}]}, {"id": 101251, "name": "Efficient Training", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101250], "entries": [{"id": 125072, "definitionId": 129904, "maxRanks": 1, "type": "passive", "name": "Efficient Training", "spellId": 450989, "icon": "inv_fistofthewhitetiger", "index": 100}]}, {"id": 101244, "name": "Vigilant Watch", "type": "single", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101245], "entries": [{"id": 125063, "definitionId": 129895, "maxRanks": 1, "type": "passive", "name": "Vigilant Watch", "spellId": 450993, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 101239, "name": "Unity Within", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 64, "next": [], "prev": [101240, 101235, 101238], "entries": [{"id": 125058, "definitionId": 129890, "maxRanks": 1, "type": "passive", "name": "Unity Within", "spellId": 443589, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101252, "name": "Wisdom of the Wall", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 65, "next": [], "prev": [101244, 101253, 101251], "entries": [{"id": 125073, "definitionId": 129905, "maxRanks": 1, "type": "passive", "name": "Wisdom of the Wall", "spellId": 450994, "icon": "inv_legendary_sigilofwisdom", "index": 100}]}], "subTreeNodes": [{"id": 101232, "name": "Conduit of the Celestials / Shado-Pan", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125047, "type": "subtree", "name": "Conduit of the Celestials", "traitSubTreeId": 64, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-conduitofthecelestials", "nodes": [101243, 101236, 101242, 101233, 101237, 101241, 101234, 101238, 101240, 101235, 101239]}, {"id": 125046, "type": "subtree", "name": "Shado-Pan", "traitSubTreeId": 65, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-shadopan", "nodes": [101248, 101247, 101249, 101246, 101254, 101250, 101245, 101253, 101251, 101244, 101252]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/paladin_holy.json b/simc_support/game_data/data_files/trees/paladin_holy.json index be5610a..ddd6e3e 100644 --- a/simc_support/game_data/data_files/trees/paladin_holy.json +++ b/simc_support/game_data/data_files/trees/paladin_holy.json @@ -1 +1 @@ -{"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Holy", "specId": 65, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81508, 81602], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}], "freeNode": true}, {"id": 81600, "name": "Blessing of Freedom", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81601, 81630], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 100}], "freeNode": true}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81601, 93010, 92220], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81508, "name": "Improved Cleanse", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [81602, 81598], "prev": [81597], "entries": [{"id": 102477, "definitionId": 107482, "maxRanks": 1, "type": "passive", "name": "Improved Cleanse", "spellId": 393024, "icon": "spell_holy_purify", "index": 100}]}, {"id": 81599, "name": "Auras of the Resolute", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [81632, 81602], "prev": [81600, 81597], "entries": [{"id": 102586, "definitionId": 107591, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}], "freeNode": true}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [81632], "prev": [81600], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81601, "name": "Crusader Aura", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 92220], "prev": [81600, 81510], "entries": [{"id": 102588, "definitionId": 107593, "maxRanks": 1, "type": "active", "name": "Crusader Aura", "spellId": 32223, "icon": "spell_holy_crusaderaura", "index": 100}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [92220, 81604], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 2, "next": [81598, 81609], "prev": [81508, 81597, 81599], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 2, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [81605, 81631, 81606], "prev": [81601, 81599, 81630], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 92220, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 81509], "prev": [93010, 81601, 81510], "entries": [{"id": 114292, "definitionId": 119297, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231644, "icon": "spell_holy_righteousfury", "index": 0}]}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81609, 81610], "prev": [81508, 81602], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81609, 81606], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 81631, "name": "Seasoned Warhorse", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81606, 81509], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Seasoned Warhorse", "spellId": 376996, "icon": "spell_nature_swiftness", "index": 200}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93165, 81509], "prev": [92220, 93010], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81610, 81614, 93520], "prev": [81605, 81598, 81602], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 2, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81606, "name": "Avenging Wrath", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81614, 81616, 93009], "prev": [81605, 81631, 81632], "entries": [{"id": 102593, "definitionId": 107598, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 384376, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}]}, {"id": 81509, "name": "Justification", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616, 93168], "prev": [92220, 81604, 81631], "entries": [{"id": 102478, "definitionId": 107483, "maxRanks": 1, "type": "passive", "name": "Justification", "spellId": 377043, "icon": "ability_paladin_empoweredsealsrighteous", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93168], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81610, "name": "Golden Path", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81611, 81613], "prev": [81609, 81598], "entries": [{"id": 102598, "definitionId": 107603, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}]}, {"id": 93520, "name": "Echoing Blessings", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81613], "prev": [81609], "entries": [{"id": 115872, "definitionId": 120884, "maxRanks": 1, "type": "passive", "name": "Echoing Blessings", "spellId": 387801, "icon": "achievement_dungeon_heroic_gloryoftheraider", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81615, 81613], "prev": [81606, 81609], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [81615], "prev": [81606], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81617, 81543], "prev": [81606, 81509], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 93168, "name": "Lightforged Blessing", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81543, 81495], "prev": [93165, 81509], "entries": [{"id": 115447, "definitionId": 120459, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 406468, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 81611, "name": "Seal of Mercy", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480], "prev": [81610], "entries": [{"id": 102599, "definitionId": 107604, "maxRanks": 1, "type": "passive", "name": "Seal of Mercy", "spellId": 384897, "icon": "spell_holy_greaterblessingofsalvation", "index": 100}]}, {"id": 81613, "name": "Afterimage", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480, 81608], "prev": [81610, 81614, 93520], "entries": [{"id": 102601, "definitionId": 107606, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81608, 81621], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81621, 93191, 81619], "prev": [81616, 81614, 93009], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81619, 81628], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Touch of Light", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81628, 81495], "prev": [81616, 93168], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Touch of Light", "spellId": 385349, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 81480, "name": "Strength of Conviction", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93357], "prev": [81613, 81611], "entries": [{"id": 102444, "definitionId": 107455, "maxRanks": 2, "type": "passive", "name": "Strength of Conviction", "spellId": 379008, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93357], "prev": [81613, 81607], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81496, 93357], "prev": [81615, 81607], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 93191, "name": "Divine Purpose", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81496], "prev": [81615], "entries": [{"id": 115489, "definitionId": 120501, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 223817, "icon": "spell_holy_divinepurpose", "index": 100}]}, {"id": 81619, "name": "Seal of Alacrity", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81496, 93683], "prev": [81615, 81617], "entries": [{"id": 102609, "definitionId": 107614, "maxRanks": 2, "type": "passive", "name": "Seal of Alacrity", "spellId": 385425, "icon": "spell_holy_sealofvengeance", "index": 100}]}, {"id": 81628, "name": "Incandescence", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93683], "prev": [81543, 81617], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Incandescence", "spellId": 385464, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93683], "prev": [81543, 93168], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 93357, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81623], "prev": [81621, 81608, 81480], "entries": [{"id": 115673, "definitionId": 120685, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 409439, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93180], "prev": [81619, 81621, 93191], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "ability_bastion_paladin", "index": 100}]}, {"id": 93683, "name": "Seal of the Crusader", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93176], "prev": [81628, 81495, 81619], "entries": [{"id": 116064, "definitionId": 121076, "maxRanks": 2, "type": "passive", "name": "Seal of the Crusader", "spellId": 416770, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 81623, "name": "Seal of Order / Fading Light", "type": "choice", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93357], "entries": [{"id": 102614, "definitionId": 107619, "maxRanks": 1, "type": "passive", "name": "Seal of Order", "spellId": 385129, "icon": "spell_holy_sealofwisdom", "index": 100}, {"id": 115169, "definitionId": 120176, "maxRanks": 1, "type": "passive", "name": "Fading Light", "spellId": 405768, "icon": "spell_shadow_sealofkings", "index": 200}]}, {"id": 93180, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 115466, "definitionId": 120478, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 386738, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115465, "definitionId": 120477, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 93176, "name": "Vanguard's Momentum", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93683], "entries": [{"id": 115456, "definitionId": 120468, "maxRanks": 1, "type": "passive", "name": "Vanguard's Momentum", "spellId": 416869, "icon": "ability_paladin_speedoflight", "index": 100}]}], "specNodes": [{"id": 81555, "name": "Holy Shock", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81569, 81565], "prev": [], "entries": [{"id": 102534, "definitionId": 107539, "maxRanks": 1, "type": "active", "name": "Holy Shock", "spellId": 20473, "icon": "spell_holy_searinglight", "index": 100}]}, {"id": 81569, "name": "Extrication", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [93927, 81567], "prev": [81555], "entries": [{"id": 102550, "definitionId": 107555, "maxRanks": 1, "type": "passive", "name": "Extrication", "spellId": 461278, "icon": "ability_paladin_righteousvengeance", "index": 100}]}, {"id": 81565, "name": "Light of Dawn", "type": "single", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [81567, 81568], "prev": [81555], "entries": [{"id": 102545, "definitionId": 107550, "maxRanks": 1, "type": "active", "name": "Light of Dawn", "spellId": 85222, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 93927, "name": "Light's Conviction", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [81586, 81573, 81577], "prev": [81569], "entries": [{"id": 116376, "definitionId": 121388, "maxRanks": 1, "type": "passive", "name": "Light's Conviction", "spellId": 414073, "icon": "paladin_holy", "index": 100}]}, {"id": 81567, "name": "Aura Mastery", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [81566], "prev": [81569, 81565], "entries": [{"id": 102548, "definitionId": 107553, "maxRanks": 1, "type": "active", "name": "Aura Mastery", "spellId": 31821, "icon": "spell_holy_auramastery", "index": 100}]}, {"id": 81568, "name": "Beacon of the Lightbringer", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [81564, 81575, 81557], "prev": [81565], "entries": [{"id": 102549, "definitionId": 107554, "maxRanks": 1, "type": "passive", "name": "Beacon of the Lightbringer", "spellId": 197446, "icon": "spell_paladin_clarityofpurpose", "index": 100}]}, {"id": 81586, "name": "Tower of Radiance", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [81571, 93523], "prev": [93927], "entries": [{"id": 102571, "definitionId": 107576, "maxRanks": 1, "type": "passive", "name": "Tower of Radiance", "spellId": 231642, "icon": "inv_helm_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 81573, "name": "Tirion's Devotion", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [81574], "prev": [93927], "entries": [{"id": 102556, "definitionId": 107561, "maxRanks": 1, "type": "passive", "name": "Tirion's Devotion", "spellId": 414720, "icon": "spell_holy_revivechampion", "index": 200}]}, {"id": 81575, "name": "Unending Light", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [93522], "prev": [81568], "entries": [{"id": 102558, "definitionId": 107563, "maxRanks": 1, "type": "passive", "name": "Unending Light", "spellId": 387998, "icon": "spell_holy_holybolt", "index": 100}]}, {"id": 81564, "name": "Awestruck", "type": "single", "posX": 15000, "posY": 3300, "maxRanks": 1, "next": [81561, 81562], "prev": [81568], "entries": [{"id": 102544, "definitionId": 107549, "maxRanks": 1, "type": "passive", "name": "Awestruck", "spellId": 417855, "icon": "ability_paladin_blindinglight2", "index": 100}]}, {"id": 81571, "name": "Moment of Compassion / Resplendent Light", "type": "choice", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102502], "prev": [81586], "entries": [{"id": 102553, "definitionId": 107558, "maxRanks": 1, "type": "passive", "name": "Moment of Compassion", "spellId": 387786, "icon": "spell_holy_flashheal", "index": 100}, {"id": 102552, "definitionId": 107557, "maxRanks": 1, "type": "passive", "name": "Resplendent Light", "spellId": 392902, "icon": "ability_priest_voidshift", "index": 200}]}, {"id": 81577, "name": "Holy Prism / Barrier of Faith", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93523, 81570, 81574], "prev": [93927], "entries": [{"id": 102561, "definitionId": 107566, "maxRanks": 1, "type": "active", "name": "Holy Prism", "spellId": 114165, "icon": "spell_paladin_holyprism", "index": 100}, {"id": 102560, "definitionId": 107565, "maxRanks": 1, "type": "active", "name": "Barrier of Faith", "spellId": 148039, "icon": "ability_paladin_barrieroffaith", "index": 200}]}, {"id": 81566, "name": "Unwavering Spirit / Protection of Tyr", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93522, 81574], "prev": [81567], "entries": [{"id": 102547, "definitionId": 107552, "maxRanks": 1, "type": "passive", "name": "Unwavering Spirit", "spellId": 392911, "icon": "spell_holy_fanaticism", "index": 100}, {"id": 102546, "definitionId": 107551, "maxRanks": 1, "type": "passive", "name": "Protection of Tyr", "spellId": 200430, "icon": "spell_holy_auramastery", "index": 200}]}, {"id": 81557, "name": "Imbued Infusions", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93522, 81556, 81562], "prev": [81568], "entries": [{"id": 102536, "definitionId": 107541, "maxRanks": 1, "type": "passive", "name": "Imbued Infusions", "spellId": 392961, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 81561, "name": "Light of the Martyr", "type": "single", "posX": 15600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81560], "prev": [81564], "entries": [{"id": 102540, "definitionId": 107545, "maxRanks": 1, "type": "passive", "name": "Light of the Martyr", "spellId": 447985, "icon": "ability_paladin_lightofthemartyr", "index": 100}]}, {"id": 93523, "name": "Righteous Judgment", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102502, 81580], "prev": [81577, 81586], "entries": [{"id": 115875, "definitionId": 120887, "maxRanks": 1, "type": "passive", "name": "Righteous Judgment", "spellId": 414113, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 81570, "name": "Divine Favor / Hand of Divinity", "type": "choice", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81580], "prev": [81577], "entries": [{"id": 102551, "definitionId": 107556, "maxRanks": 1, "type": "passive", "name": "Divine Favor", "spellId": 460422, "icon": "spell_holy_heal", "index": 100}, {"id": 115876, "definitionId": 120888, "maxRanks": 1, "type": "active", "name": "Hand of Divinity", "spellId": 414273, "icon": "spell_holy_vindication", "index": 200}]}, {"id": 81574, "name": "Saved by the Light", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81580, 81576, 81583], "prev": [81573, 81577, 81566], "entries": [{"id": 102557, "definitionId": 107562, "maxRanks": 1, "type": "passive", "name": "Saved by the Light", "spellId": 157047, "icon": "ability_paladin_savedbythelight", "index": 200}]}, {"id": 93522, "name": "Light's Protection", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81583, 81578, 81585], "prev": [81557, 81566, 81575], "entries": [{"id": 115874, "definitionId": 120886, "maxRanks": 1, "type": "passive", "name": "Light's Protection", "spellId": 461243, "icon": "spell_holy_absolution", "index": 100}]}, {"id": 81556, "name": "Overflowing Light", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81585], "prev": [81557], "entries": [{"id": 102535, "definitionId": 107540, "maxRanks": 1, "type": "passive", "name": "Overflowing Light", "spellId": 461244, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 81562, "name": "Shining Righteousness", "type": "single", "posX": 15000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81585], "prev": [81557, 81564], "entries": [{"id": 102541, "definitionId": 107546, "maxRanks": 1, "type": "passive", "name": "Shining Righteousness", "spellId": 414443, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 102502, "name": "Liberation", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81554], "prev": [93523, 81571], "entries": [{"id": 126571, "definitionId": 131398, "maxRanks": 1, "type": "passive", "name": "Liberation", "spellId": 461287, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81580, "name": "Commanding Light", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81554, 103831, 81581], "prev": [81574, 81570, 93523], "entries": [{"id": 102564, "definitionId": 107569, "maxRanks": 1, "type": "passive", "name": "Commanding Light", "spellId": 387781, "icon": "ability_paladin_beaconoflight", "index": 100}]}, {"id": 81576, "name": "Glistening Radiance", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81581], "prev": [81574], "entries": [{"id": 102559, "definitionId": 107564, "maxRanks": 1, "type": "passive", "name": "Glistening Radiance", "spellId": 461245, "icon": "spell_paladin_divinecircle", "index": 100}]}, {"id": 81583, "name": "Breaking Dawn", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [81581, 81584], "prev": [93522, 81574], "entries": [{"id": 102567, "definitionId": 107572, "maxRanks": 2, "type": "passive", "name": "Breaking Dawn", "spellId": 387879, "icon": "spell_holy_rune", "index": 100}]}, {"id": 81578, "name": "Divine Revelations", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81584], "prev": [93522], "entries": [{"id": 102562, "definitionId": 107567, "maxRanks": 1, "type": "passive", "name": "Divine Revelations", "spellId": 387808, "icon": "ability_paladin_infusionoflight", "index": 100}]}, {"id": 81585, "name": "Divine Glimpse", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81584, 81589, 81588], "prev": [81556, 93522, 81562], "entries": [{"id": 102570, "definitionId": 107575, "maxRanks": 1, "type": "passive", "name": "Divine Glimpse", "spellId": 387805, "icon": "spell_holy_healingaura", "index": 100}]}, {"id": 81560, "name": "Bestow Light", "type": "single", "posX": 15600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81588], "prev": [81561], "entries": [{"id": 102539, "definitionId": 107544, "maxRanks": 1, "type": "passive", "name": "Bestow Light", "spellId": 448040, "icon": "ability_paladin_sheathoflight", "index": 100}]}, {"id": 81554, "name": "Beacon of Faith / Beacon of Virtue", "type": "choice", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594, 81579, 81595], "prev": [81580, 102502], "entries": [{"id": 102533, "definitionId": 107538, "maxRanks": 1, "type": "active", "name": "Beacon of Faith", "spellId": 156910, "icon": "ability_paladin_beaconsoflight", "index": 100}, {"id": 102532, "definitionId": 107537, "maxRanks": 1, "type": "active", "name": "Beacon of Virtue", "spellId": 200025, "icon": "ability_paladin_beaconofinsight", "index": 200}]}, {"id": 103831, "name": "Empyrean Legacy", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594], "prev": [81580], "entries": [{"id": 102576, "definitionId": 107581, "maxRanks": 1, "type": "passive", "name": "Empyrean Legacy", "spellId": 387170, "icon": "item_holyspark", "index": 100}]}, {"id": 81581, "name": "Veneration", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594, 81592], "prev": [81580, 81583, 81576], "entries": [{"id": 102565, "definitionId": 107570, "maxRanks": 1, "type": "passive", "name": "Veneration", "spellId": 392938, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 81584, "name": "Avenging Wrath: Might / Avenging Crusader", "type": "choice", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81592, 81558], "prev": [81583, 81585, 81578], "entries": [{"id": 102569, "definitionId": 107574, "maxRanks": 1, "type": "active", "name": "Avenging Wrath: Might", "spellId": 384442, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}, {"id": 102568, "definitionId": 107573, "maxRanks": 1, "type": "active", "name": "Avenging Crusader", "spellId": 394088, "visibleSpellId": 216331, "icon": "ability_paladin_veneration", "index": 200}]}, {"id": 81589, "name": "Power of the Silver Hand", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81558], "prev": [81585], "entries": [{"id": 102574, "definitionId": 107579, "maxRanks": 1, "type": "passive", "name": "Power of the Silver Hand", "spellId": 200474, "icon": "ability_paladin_blessedhands", "index": 100}]}, {"id": 81588, "name": "Tyr's Deliverance", "type": "single", "posX": 15000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81558, 81590, 81587], "prev": [81560, 81585], "entries": [{"id": 102573, "definitionId": 107578, "maxRanks": 1, "type": "active", "name": "Tyr's Deliverance", "spellId": 200652, "icon": "inv_mace_2h_artifactsilverhand_d_01", "index": 100}]}, {"id": 81579, "name": "Truth Prevails", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81554], "entries": [{"id": 102563, "definitionId": 107568, "maxRanks": 1, "type": "passive", "name": "Truth Prevails", "spellId": 461273, "icon": "spell_holy_spiritualguidence", "index": 100}]}, {"id": 81594, "name": "Crusader's Might", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93521], "prev": [81554, 81581, 103831], "entries": [{"id": 102580, "definitionId": 107585, "maxRanks": 1, "type": "passive", "name": "Crusader's Might", "spellId": 196926, "icon": "ability_paladin_swiftretribution", "index": 100}]}, {"id": 81592, "name": "Sanctified Wrath / Awakening", "type": "choice", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93521, 81593, 81591], "prev": [81584, 81581], "entries": [{"id": 102578, "definitionId": 107583, "maxRanks": 1, "type": "passive", "name": "Sanctified Wrath", "spellId": 53376, "icon": "ability_paladin_judgementsofthejust", "index": 100}, {"id": 116205, "definitionId": 121217, "maxRanks": 1, "type": "passive", "name": "Awakening", "spellId": 414195, "icon": "inv_helm_plate_raidpaladin_n_01", "index": 200}]}, {"id": 81558, "name": "Reclamation", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81591], "prev": [81588, 81584, 81589], "entries": [{"id": 102537, "definitionId": 107542, "maxRanks": 1, "type": "passive", "name": "Reclamation", "spellId": 415364, "icon": "ability_paladin_longarmofthelaw", "index": 100}]}, {"id": 81590, "name": "Relentless Inquisitor", "type": "single", "posX": 15600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81588], "entries": [{"id": 102575, "definitionId": 107580, "maxRanks": 1, "type": "passive", "name": "Relentless Inquisitor", "spellId": 383388, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81595, "name": "Rising Sunlight", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81554], "entries": [{"id": 102581, "definitionId": 107586, "maxRanks": 1, "type": "passive", "name": "Rising Sunlight", "spellId": 461250, "icon": "spell_priest_divinestar_holy", "index": 100}]}, {"id": 93521, "name": "Glorious Dawn", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81594, 81592], "entries": [{"id": 115873, "definitionId": 120885, "maxRanks": 1, "type": "passive", "name": "Glorious Dawn", "spellId": 461246, "icon": "ability_paladin_holyavenger", "index": 100}]}, {"id": 81593, "name": "Merciful Auras / Blessing of Summer", "type": "choice", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81592], "entries": [{"id": 102579, "definitionId": 107584, "maxRanks": 1, "type": "passive", "name": "Merciful Auras", "spellId": 183415, "icon": "spell_holy_blessedlife", "index": 100}, {"id": 116183, "definitionId": 121195, "maxRanks": 1, "type": "active", "name": "Blessing of Summer", "spellId": 388007, "icon": "ability_ardenweald_paladin_summer", "index": 200}]}, {"id": 81591, "name": "Inflorescence of the Sunwell", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81558, 81592], "entries": [{"id": 102577, "definitionId": 107582, "maxRanks": 1, "type": "passive", "name": "Inflorescence of the Sunwell", "spellId": 392907, "icon": "spell_lfieblood", "index": 100}]}, {"id": 81587, "name": "Boundless Salvation", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81588], "entries": [{"id": 102572, "definitionId": 107577, "maxRanks": 1, "type": "passive", "name": "Boundless Salvation", "spellId": 392951, "icon": "ability_paladin_selflesshealer", "index": 100}]}], "heroNodes": [{"id": 95099, "name": "Dawnlight", "type": "single", "posX": 8700, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 50, "requiresNode": 81577, "next": [95073, 95095, 95080], "prev": [], "entries": [{"id": 117696, "definitionId": 122708, "maxRanks": 1, "type": "passive", "name": "Dawnlight", "spellId": 431377, "icon": "inv_ability_heraldofthesunpaladin_dawnlight", "index": 100}], "freeNode": true}, {"id": 95073, "name": "Morning Star / Gleaming Rays", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95098], "prev": [95099], "entries": [{"id": 117670, "definitionId": 122682, "maxRanks": 1, "type": "passive", "name": "Morning Star", "spellId": 431482, "icon": "spell_holy_persecution", "index": 100}, {"id": 117778, "definitionId": 122790, "maxRanks": 1, "type": "passive", "name": "Gleaming Rays", "spellId": 431480, "icon": "spell_priest_power_word", "index": 200}]}, {"id": 95095, "name": "Eternal Flame", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95071], "prev": [95099], "entries": [{"id": 117692, "definitionId": 122704, "maxRanks": 1, "type": "active", "name": "Eternal Flame", "spellId": 156322, "icon": "inv_torch_thrown", "index": 100}]}, {"id": 95080, "name": "Luminosity", "type": "single", "posX": 9300, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95072], "prev": [95099], "entries": [{"id": 117677, "definitionId": 122689, "maxRanks": 1, "type": "passive", "name": "Luminosity", "spellId": 431402, "icon": "inv_qirajidol_sun", "index": 100}]}, {"id": 95098, "name": "Illumine / Will of the Dawn", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95069], "prev": [95073], "entries": [{"id": 117695, "definitionId": 122707, "maxRanks": 1, "type": "passive", "name": "Illumine", "spellId": 431423, "icon": "spell_holy_divineillumination", "index": 100}, {"id": 117777, "definitionId": 122789, "maxRanks": 1, "type": "passive", "name": "Will of the Dawn", "spellId": 431406, "icon": "spell_holy_divineprovidence", "index": 200}]}, {"id": 95071, "name": "Blessing of An'she / Lingering Radiance", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95094], "prev": [95095], "entries": [{"id": 117668, "definitionId": 122680, "maxRanks": 1, "type": "passive", "name": "Blessing of An'she", "spellId": 445200, "icon": "inv_ability_holyfire_orb", "index": 100}, {"id": 117779, "definitionId": 122791, "maxRanks": 1, "type": "passive", "name": "Lingering Radiance", "spellId": 431407, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 95072, "name": "Sun Sear", "type": "single", "posX": 9300, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95086], "prev": [95080], "entries": [{"id": 117669, "definitionId": 122681, "maxRanks": 1, "type": "passive", "name": "Sun Sear", "spellId": 431413, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 95069, "name": "Aurora", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81577, "next": [95105], "prev": [95098], "entries": [{"id": 117666, "definitionId": 122678, "maxRanks": 1, "type": "passive", "name": "Aurora", "spellId": 439760, "icon": "spell_holy_rune", "index": 100}]}, {"id": 95094, "name": "Solar Grace", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95105], "prev": [95071], "entries": [{"id": 117691, "definitionId": 122703, "maxRanks": 1, "type": "passive", "name": "Solar Grace", "spellId": 431404, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 100}]}, {"id": 95086, "name": "Second Sunrise", "type": "single", "posX": 9300, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "next": [95105], "prev": [95072], "entries": [{"id": 117683, "definitionId": 122695, "maxRanks": 1, "type": "passive", "name": "Second Sunrise", "spellId": 431474, "icon": "ability_priest_halo", "index": 100}]}, {"id": 95105, "name": "Sun's Avatar", "type": "single", "posX": 8700, "posY": 3600, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81606, "next": [], "prev": [95094, 95069, 95086], "entries": [{"id": 117702, "definitionId": 122714, "maxRanks": 1, "type": "passive", "name": "Sun's Avatar", "spellId": 431425, "icon": "ability_paladin_holyavenger", "index": 100}]}, {"id": 95234, "name": "Holy Armaments", "type": "single", "posX": 8690, "posY": 4190, "maxRanks": 1, "entryNode": true, "subTreeId": 49, "next": [95233, 95228, 95235], "prev": [], "entries": [{"id": 117882, "definitionId": 122894, "maxRanks": 1, "type": "active", "name": "Holy Armaments", "spellId": 432459, "icon": "inv_ability_lightsmithpaladin_holybulwark", "index": 100}], "freeNode": true}, {"id": 95233, "name": "Rite of Sanctification / Rite of Adjuration", "type": "choice", "posX": 8100, "posY": 4790, "maxRanks": 1, "subTreeId": 49, "next": [95236], "prev": [95234], "entries": [{"id": 117881, "definitionId": 122893, "maxRanks": 1, "type": "active", "name": "Rite of Sanctification", "spellId": 433568, "icon": "inv_inscription_weaponscroll01", "index": 100}, {"id": 117880, "definitionId": 122892, "maxRanks": 1, "type": "active", "name": "Rite of Adjuration", "spellId": 433583, "icon": "inv_inscription_armorscroll02", "index": 200}]}, {"id": 95228, "name": "Solidarity", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95231], "prev": [95234], "entries": [{"id": 117873, "definitionId": 122885, "maxRanks": 1, "type": "passive", "name": "Solidarity", "spellId": 432802, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 95235, "name": "Divine Guidance / Blessed Assurance", "type": "choice", "posX": 9300, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95232], "prev": [95234], "entries": [{"id": 117884, "definitionId": 122896, "maxRanks": 1, "type": "passive", "name": "Divine Guidance", "spellId": 433106, "icon": "spell_holy_lightsgrace", "index": 100}, {"id": 117883, "definitionId": 122895, "maxRanks": 1, "type": "passive", "name": "Blessed Assurance", "spellId": 433015, "icon": "spell_holy_blessedlife", "index": 200}]}, {"id": 95231, "name": "Divine Inspiration / Forewarning", "type": "choice", "posX": 8700, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95229], "prev": [95228], "entries": [{"id": 117877, "definitionId": 122889, "maxRanks": 1, "type": "passive", "name": "Divine Inspiration", "spellId": 432964, "icon": "ability_priest_flashoflight", "index": 100}, {"id": 117876, "definitionId": 122888, "maxRanks": 1, "type": "passive", "name": "Forewarning", "spellId": 432804, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 95232, "name": "Fear No Evil / Excoriation", "type": "choice", "posX": 9290, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95238], "prev": [95235], "entries": [{"id": 117879, "definitionId": 122891, "maxRanks": 1, "type": "passive", "name": "Fear No Evil", "spellId": 432834, "icon": "spell_holy_senseundead", "index": 100}, {"id": 117878, "definitionId": 122890, "maxRanks": 1, "type": "passive", "name": "Excoriation", "spellId": 433896, "icon": "ability_paladin_sanctifiedwrath", "index": 200}]}, {"id": 95236, "name": "Laying Down Arms", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 49, "next": [95237], "prev": [95233], "entries": [{"id": 117885, "definitionId": 122897, "maxRanks": 1, "type": "passive", "name": "Laying Down Arms", "spellId": 432866, "icon": "ability_paladin_handoflight", "index": 100}]}, {"id": 95229, "name": "Valiance", "type": "single", "posX": 8700, "posY": 5980, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95231], "entries": [{"id": 117874, "definitionId": 122886, "maxRanks": 1, "type": "passive", "name": "Valiance", "spellId": 432919, "icon": "inv_mace_47", "index": 100}]}, {"id": 95237, "name": "Shared Resolve", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95236], "entries": [{"id": 117886, "definitionId": 122898, "maxRanks": 1, "type": "passive", "name": "Shared Resolve", "spellId": 432821, "icon": "spell_holy_devotionaura", "index": 100}]}, {"id": 95238, "name": "Hammer and Anvil", "type": "single", "posX": 9300, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95232], "entries": [{"id": 117887, "definitionId": 122899, "maxRanks": 1, "type": "passive", "name": "Hammer and Anvil", "spellId": 433718, "icon": "inv_10_blacksmithing_consumable_repairhammer_color1", "index": 100}]}, {"id": 95230, "name": "Blessing of the Forge", "type": "single", "posX": 8690, "posY": 6600, "maxRanks": 1, "subTreeId": 49, "requiresNode": 81606, "next": [], "prev": [95229, 95237, 95238], "entries": [{"id": 117875, "definitionId": 122887, "maxRanks": 1, "type": "passive", "name": "Blessing of the Forge", "spellId": 433011, "icon": "inv_ability_lightsmithpaladin_sacredweapon", "index": 100}]}], "subTreeNodes": [{"id": 99839, "name": "Herald of the Sun / Lightsmith", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123362, "type": "subtree", "name": "Herald of the Sun", "traitSubTreeId": 50, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-heraldofthesun", "nodes": [95099, 95073, 95095, 95080, 95098, 95071, 95072, 95069, 95094, 95086, 95105]}, {"id": 123359, "type": "subtree", "name": "Lightsmith", "traitSubTreeId": 49, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-lightsmith", "nodes": [95234, 95233, 95228, 95235, 95231, 95232, 95236, 95229, 95237, 95238, 95230]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81480, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81509, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81599, 81600, 81601, 81602, 81603, 81604, 81605, 81606, 81607, 81608, 81609, 81610, 81611, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81619, 81620, 81621, 81623, 81624, 81625, 81626, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93176, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93684, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831]} \ No newline at end of file +{"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Holy", "specId": 65, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103859, 81602, 81508], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}], "freeNode": true}, {"id": 81600, "name": "Auras of the Resolute", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81602, 81598, 81632], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}], "freeNode": true}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81598, 93010, 92220], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81508, "name": "Improved Cleanse", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [103858, 81613], "prev": [81597], "entries": [{"id": 102477, "definitionId": 107482, "maxRanks": 1, "type": "passive", "name": "Improved Cleanse", "spellId": 393024, "icon": "spell_holy_purify", "index": 100}]}, {"id": 103859, "name": "Empyreal Ward", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [81613], "prev": [81597], "entries": [{"id": 128255, "definitionId": 133062, "maxRanks": 1, "type": "passive", "name": "Empyreal Ward", "spellId": 387791, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [81613, 81632], "prev": [81600, 81597], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 1, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 103854, 92220], "prev": [81510, 81600], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [103855], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 103858, "name": "A Just Reward", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [103860], "prev": [81508], "entries": [{"id": 128254, "definitionId": 133061, "maxRanks": 1, "type": "passive", "name": "A Just Reward", "spellId": 469411, "icon": "spell_holy_blindingheal", "index": 100}]}, {"id": 81613, "name": "Afterimage", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [103860, 81630], "prev": [81508, 103859, 81602], "entries": [{"id": 102601, "definitionId": 107606, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [103857, 81605, 81631], "prev": [81602, 81598, 81600], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}], "freeNode": true}, {"id": 103854, "name": "Light's Countenance", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [81598], "entries": [{"id": 128247, "definitionId": 133054, "maxRanks": 1, "type": "passive", "name": "Light's Countenance", "spellId": 469325, "icon": "inv_shoulder_raidpaladindragon_d_01", "index": 100}]}, {"id": 92220, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 93009], "prev": [81510, 81598], "entries": [{"id": 114292, "definitionId": 119297, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231644, "icon": "spell_holy_righteousfury", "index": 0}]}, {"id": 103855, "name": "Wrench Evil / Stand Against Evil", "type": "choice", "posX": 6600, "posY": 2700, "maxRanks": 1, "next": [81604], "prev": [93010], "entries": [{"id": 128250, "definitionId": 133057, "maxRanks": 1, "type": "passive", "name": "Wrench Evil", "spellId": 460720, "icon": "ability_paladin_turnevil", "index": 100}, {"id": 128249, "definitionId": 133056, "maxRanks": 1, "type": "passive", "name": "Stand Against Evil", "spellId": 469317, "icon": "spell_holy_excorcism", "index": 200}]}, {"id": 103860, "name": "Holy Reprieve", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81630, 93168], "prev": [103858, 81613], "entries": [{"id": 128256, "definitionId": 133063, "maxRanks": 1, "type": "passive", "name": "Holy Reprieve", "spellId": 469445, "icon": "spell_holy_sealofsalvation", "index": 100}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81630, 81496, 81614], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 103857, "name": "Divine Spurs", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [], "prev": [81632], "entries": [{"id": 128253, "definitionId": 133060, "maxRanks": 1, "type": "passive", "name": "Divine Spurs", "spellId": 469409, "icon": "ability_mount_charger", "index": 100}]}, {"id": 81631, "name": "Steed of Liberty / Blessing of Freedom", "type": "choice", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81496, 93520, 93009], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Steed of Liberty", "spellId": 469304, "icon": "spell_holy_crusaderaura", "index": 200}, {"id": 128251, "definitionId": 133058, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 300}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93009, 93165], "prev": [92220, 103855], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93168, 81614, 81609], "prev": [103860, 81613, 81605], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93180, 81614, 81616], "prev": [81631, 81605], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "inv_ability_paladin_divinetoll", "index": 100}]}, {"id": 93520, "name": "Echoing Blessings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616], "prev": [81631], "entries": [{"id": 115872, "definitionId": 120884, "maxRanks": 1, "type": "passive", "name": "Echoing Blessings", "spellId": 387801, "icon": "achievement_dungeon_heroic_gloryoftheraider", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81543, 81616, 81615], "prev": [81604, 92220, 81631], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81543], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 93168, "name": "Divine Reach", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81609, 103852], "prev": [103860, 81630], "entries": [{"id": 115447, "definitionId": 120459, "maxRanks": 1, "type": "passive", "name": "Divine Reach", "spellId": 469476, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81609, 93191], "prev": [81605, 81630, 81496], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 93180, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 115466, "definitionId": 120478, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 386738, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115465, "definitionId": 120477, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81617, 93191, 81615], "prev": [93520, 81496, 93009], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Consecrated Ground", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81608], "prev": [93165, 93009], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Consecrated Ground", "spellId": 204054, "icon": "ability_paladin_righteousvengeance", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103852, 103867], "prev": [81630, 93168, 81614], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 1, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103867, 103865, 103866], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 93191, "name": "Sacred Strength / Divine Purpose", "type": "choice", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103866, 103868], "prev": [81614, 81616], "entries": [{"id": 115489, "definitionId": 120501, "maxRanks": 1, "type": "passive", "name": "Sacred Strength", "spellId": 469337, "icon": "spell_holy_righteousnessaura", "index": 100}, {"id": 128246, "definitionId": 133053, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 223817, "icon": "spell_holy_divinepurpose", "index": 200}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103868, 103864], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103864, 81608], "prev": [93009, 81543, 81616], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 103852, "name": "Lightforged Blessing", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495], "prev": [93168, 81609], "entries": [{"id": 128242, "definitionId": 133049, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 406468, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 103867, "name": "Lead the Charge", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495, 103862, 81621], "prev": [81609, 81607], "entries": [{"id": 128263, "definitionId": 133070, "maxRanks": 1, "type": "passive", "name": "Lead the Charge", "spellId": 469780, "icon": "inv_helm_plate_raidpaladin_r_01mythic", "index": 100}]}, {"id": 103865, "name": "Worthy Sacrifice / Righteous Protection", "type": "choice", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621], "prev": [81607], "entries": [{"id": 128261, "definitionId": 133068, "maxRanks": 1, "type": "passive", "name": "Worthy Sacrifice", "spellId": 469279, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 128248, "definitionId": 133055, "maxRanks": 1, "type": "passive", "name": "Righteous Protection", "spellId": 469321, "icon": "spell_holy_blessingofprotection", "index": 200}]}, {"id": 103866, "name": "Holy Ritual", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621, 93683, 93177], "prev": [81607, 93191], "entries": [{"id": 128262, "definitionId": 133069, "maxRanks": 1, "type": "passive", "name": "Holy Ritual", "spellId": 199422, "icon": "inv_relics_libramoftruth", "index": 100}]}, {"id": 103868, "name": "Blessed Calling", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81617, 93191], "entries": [{"id": 128264, "definitionId": 133071, "maxRanks": 1, "type": "passive", "name": "Blessed Calling", "spellId": 469770, "icon": "ability_paladin_judgementofthepure", "index": 100}]}, {"id": 103864, "name": "Inspired Guard", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81628, 103856], "prev": [81617, 81615], "entries": [{"id": 128260, "definitionId": 133067, "maxRanks": 1, "type": "passive", "name": "Inspired Guard", "spellId": 469439, "icon": "spell_holy_divineprotection", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [103856], "prev": [81615, 81543], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93357], "prev": [103852, 103867], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 103862, "name": "Stoicism", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93357], "prev": [103867], "entries": [{"id": 128258, "definitionId": 133065, "maxRanks": 1, "type": "passive", "name": "Stoicism", "spellId": 469316, "icon": "spell_magic_magearmor", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93357, 103861], "prev": [103866, 103865, 103867], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 93683, "name": "Seal of the Crusader", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103861], "prev": [103866], "entries": [{"id": 116064, "definitionId": 121076, "maxRanks": 1, "type": "passive", "name": "Seal of the Crusader", "spellId": 416770, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 93177, "name": "Vengeful Wrath", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [103861, 103863], "prev": [103866], "entries": [{"id": 115457, "definitionId": 120469, "maxRanks": 2, "type": "passive", "name": "Vengeful Wrath", "spellId": 406835, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81628, "name": "Eye for an Eye", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Eye for an Eye", "spellId": 469309, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 103856, "name": "Golden Path / Selfless Healer", "type": "choice", "posX": 6600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864, 81608], "entries": [{"id": 128252, "definitionId": 133059, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}, {"id": 128309, "definitionId": 133116, "maxRanks": 1, "type": "passive", "name": "Selfless Healer", "spellId": 469434, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 93357, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81495, 81621, 103862], "entries": [{"id": 115673, "definitionId": 120685, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 409439, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 103861, "name": "Lightbearer", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93177, 81621, 93683], "entries": [{"id": 128257, "definitionId": 133064, "maxRanks": 1, "type": "passive", "name": "Lightbearer", "spellId": 469416, "icon": "spell_paladin_clarityofpurpose", "index": 100}]}, {"id": 103863, "name": "Light's Revocation", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103856, 93177, 81628], "entries": [{"id": 128259, "definitionId": 133066, "maxRanks": 1, "type": "passive", "name": "Light's Revocation", "spellId": 146956, "icon": "spell_holy_divineshield", "index": 100}]}], "specNodes": [{"id": 81555, "name": "Holy Shock", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81569, 81565], "prev": [], "entries": [{"id": 102534, "definitionId": 107539, "maxRanks": 1, "type": "active", "name": "Holy Shock", "spellId": 20473, "icon": "spell_holy_searinglight", "index": 100}]}, {"id": 81569, "name": "Extrication", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [93927, 81567], "prev": [81555], "entries": [{"id": 102550, "definitionId": 107555, "maxRanks": 1, "type": "passive", "name": "Extrication", "spellId": 461278, "icon": "spell_holy_spiritualguidence", "index": 100}]}, {"id": 81565, "name": "Light of Dawn", "type": "single", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [81567, 81568], "prev": [81555], "entries": [{"id": 102545, "definitionId": 107550, "maxRanks": 1, "type": "active", "name": "Light of Dawn", "spellId": 85222, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 93927, "name": "Light's Conviction", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [81586, 81573, 81577], "prev": [81569], "entries": [{"id": 116376, "definitionId": 121388, "maxRanks": 1, "type": "passive", "name": "Light's Conviction", "spellId": 414073, "icon": "paladin_holy", "index": 100}]}, {"id": 81567, "name": "Aura Mastery", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [81566], "prev": [81569, 81565], "entries": [{"id": 102548, "definitionId": 107553, "maxRanks": 1, "type": "active", "name": "Aura Mastery", "spellId": 31821, "icon": "spell_holy_auramastery", "index": 100}]}, {"id": 81568, "name": "Beacon of the Lightbringer", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [81564, 81575, 81557], "prev": [81565], "entries": [{"id": 102549, "definitionId": 107554, "maxRanks": 1, "type": "passive", "name": "Beacon of the Lightbringer", "spellId": 197446, "icon": "spell_paladin_clarityofpurpose", "index": 100}]}, {"id": 81586, "name": "Tower of Radiance", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [81571, 93523], "prev": [93927], "entries": [{"id": 102571, "definitionId": 107576, "maxRanks": 1, "type": "passive", "name": "Tower of Radiance", "spellId": 231642, "icon": "inv_helm_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 81573, "name": "Tirion's Devotion", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [81574], "prev": [93927], "entries": [{"id": 102556, "definitionId": 107561, "maxRanks": 1, "type": "passive", "name": "Tirion's Devotion", "spellId": 414720, "icon": "spell_holy_revivechampion", "index": 200}]}, {"id": 81575, "name": "Unending Light", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [93522], "prev": [81568], "entries": [{"id": 102558, "definitionId": 107563, "maxRanks": 1, "type": "passive", "name": "Unending Light", "spellId": 387998, "icon": "spell_holy_holybolt", "index": 100}]}, {"id": 81564, "name": "Awestruck", "type": "single", "posX": 15000, "posY": 3300, "maxRanks": 1, "next": [81561, 81562], "prev": [81568], "entries": [{"id": 102544, "definitionId": 107549, "maxRanks": 1, "type": "passive", "name": "Awestruck", "spellId": 417855, "icon": "ability_paladin_blindinglight2", "index": 100}]}, {"id": 81571, "name": "Moment of Compassion / Resplendent Light", "type": "choice", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102502], "prev": [81586], "entries": [{"id": 102553, "definitionId": 107558, "maxRanks": 1, "type": "passive", "name": "Moment of Compassion", "spellId": 387786, "icon": "spell_holy_flashheal", "index": 100}, {"id": 102552, "definitionId": 107557, "maxRanks": 1, "type": "passive", "name": "Resplendent Light", "spellId": 392902, "icon": "ability_priest_voidshift", "index": 200}]}, {"id": 81577, "name": "Holy Prism / Barrier of Faith", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93523, 81570, 81574], "prev": [93927], "entries": [{"id": 102561, "definitionId": 107566, "maxRanks": 1, "type": "active", "name": "Holy Prism", "spellId": 114165, "icon": "spell_paladin_holyprism", "index": 100}, {"id": 102560, "definitionId": 107565, "maxRanks": 1, "type": "active", "name": "Barrier of Faith", "spellId": 148039, "icon": "ability_paladin_barrieroffaith", "index": 200}]}, {"id": 81566, "name": "Unwavering Spirit / Protection of Tyr", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93522, 81574], "prev": [81567], "entries": [{"id": 102547, "definitionId": 107552, "maxRanks": 1, "type": "passive", "name": "Unwavering Spirit", "spellId": 392911, "icon": "spell_holy_fanaticism", "index": 100}, {"id": 102546, "definitionId": 107551, "maxRanks": 1, "type": "passive", "name": "Protection of Tyr", "spellId": 200430, "icon": "spell_holy_auramastery", "index": 200}]}, {"id": 81557, "name": "Imbued Infusions", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93522, 81556, 81562], "prev": [81568], "entries": [{"id": 102536, "definitionId": 107541, "maxRanks": 1, "type": "passive", "name": "Imbued Infusions", "spellId": 392961, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 81561, "name": "Light of the Martyr", "type": "single", "posX": 15600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81560], "prev": [81564], "entries": [{"id": 102540, "definitionId": 107545, "maxRanks": 1, "type": "passive", "name": "Light of the Martyr", "spellId": 447985, "icon": "ability_paladin_lightofthemartyr", "index": 100}]}, {"id": 93523, "name": "Righteous Judgment", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102502, 81580], "prev": [81577, 81586], "entries": [{"id": 115875, "definitionId": 120887, "maxRanks": 1, "type": "passive", "name": "Righteous Judgment", "spellId": 414113, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 81570, "name": "Divine Favor / Hand of Divinity", "type": "choice", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81580], "prev": [81577], "entries": [{"id": 102551, "definitionId": 107556, "maxRanks": 1, "type": "passive", "name": "Divine Favor", "spellId": 460422, "icon": "spell_holy_heal", "index": 100}, {"id": 115876, "definitionId": 120888, "maxRanks": 1, "type": "active", "name": "Hand of Divinity", "spellId": 414273, "icon": "spell_holy_vindication", "index": 200}]}, {"id": 81574, "name": "Saved by the Light", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81580, 81576, 81583], "prev": [81573, 81577, 81566], "entries": [{"id": 102557, "definitionId": 107562, "maxRanks": 1, "type": "passive", "name": "Saved by the Light", "spellId": 157047, "icon": "ability_paladin_savedbythelight", "index": 200}]}, {"id": 93522, "name": "Light's Protection", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81583, 81578, 81585], "prev": [81557, 81566, 81575], "entries": [{"id": 115874, "definitionId": 120886, "maxRanks": 1, "type": "passive", "name": "Light's Protection", "spellId": 461243, "icon": "spell_holy_absolution", "index": 100}]}, {"id": 81556, "name": "Overflowing Light", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81585], "prev": [81557], "entries": [{"id": 102535, "definitionId": 107540, "maxRanks": 1, "type": "passive", "name": "Overflowing Light", "spellId": 461244, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 81562, "name": "Shining Righteousness", "type": "single", "posX": 15000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81585], "prev": [81557, 81564], "entries": [{"id": 102541, "definitionId": 107546, "maxRanks": 1, "type": "passive", "name": "Shining Righteousness", "spellId": 414443, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 102502, "name": "Liberation", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81554], "prev": [93523, 81571], "entries": [{"id": 126571, "definitionId": 131398, "maxRanks": 1, "type": "passive", "name": "Liberation", "spellId": 461287, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81580, "name": "Commanding Light", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81554, 103831, 81581], "prev": [81574, 81570, 93523], "entries": [{"id": 102564, "definitionId": 107569, "maxRanks": 1, "type": "passive", "name": "Commanding Light", "spellId": 387781, "icon": "ability_paladin_beaconoflight", "index": 100}]}, {"id": 81576, "name": "Glistening Radiance", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81581], "prev": [81574], "entries": [{"id": 102559, "definitionId": 107564, "maxRanks": 1, "type": "passive", "name": "Glistening Radiance", "spellId": 461245, "icon": "spell_paladin_divinecircle", "index": 100}]}, {"id": 81583, "name": "Breaking Dawn", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [81581, 81584], "prev": [93522, 81574], "entries": [{"id": 102567, "definitionId": 107572, "maxRanks": 2, "type": "passive", "name": "Breaking Dawn", "spellId": 387879, "icon": "spell_holy_rune", "index": 100}]}, {"id": 81578, "name": "Divine Revelations", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81584], "prev": [93522], "entries": [{"id": 102562, "definitionId": 107567, "maxRanks": 1, "type": "passive", "name": "Divine Revelations", "spellId": 387808, "icon": "ability_paladin_infusionoflight", "index": 100}]}, {"id": 81585, "name": "Divine Glimpse", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81584, 81589, 81588], "prev": [81556, 93522, 81562], "entries": [{"id": 102570, "definitionId": 107575, "maxRanks": 1, "type": "passive", "name": "Divine Glimpse", "spellId": 387805, "icon": "spell_holy_healingaura", "index": 100}]}, {"id": 81560, "name": "Bestow Light", "type": "single", "posX": 15600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81588], "prev": [81561], "entries": [{"id": 102539, "definitionId": 107544, "maxRanks": 1, "type": "passive", "name": "Bestow Light", "spellId": 448040, "icon": "ability_paladin_sheathoflight", "index": 100}]}, {"id": 81554, "name": "Beacon of Faith / Beacon of Virtue", "type": "choice", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594, 81579, 81595], "prev": [81580, 102502], "entries": [{"id": 102533, "definitionId": 107538, "maxRanks": 1, "type": "active", "name": "Beacon of Faith", "spellId": 156910, "icon": "ability_paladin_beaconsoflight", "index": 100}, {"id": 102532, "definitionId": 107537, "maxRanks": 1, "type": "active", "name": "Beacon of Virtue", "spellId": 200025, "icon": "ability_paladin_beaconofinsight", "index": 200}]}, {"id": 103831, "name": "Empyrean Legacy", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594], "prev": [81580], "entries": [{"id": 102576, "definitionId": 107581, "maxRanks": 1, "type": "passive", "name": "Empyrean Legacy", "spellId": 387170, "icon": "item_holyspark", "index": 100}]}, {"id": 81581, "name": "Veneration", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594], "prev": [81580, 81583, 81576], "entries": [{"id": 102565, "definitionId": 107570, "maxRanks": 1, "type": "passive", "name": "Veneration", "spellId": 392938, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 81584, "name": "Avenging Wrath / Avenging Crusader", "type": "choice", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81592, 81558], "prev": [81583, 81585, 81578], "entries": [{"id": 102569, "definitionId": 107574, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 31884, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}, {"id": 102568, "definitionId": 107573, "maxRanks": 1, "type": "active", "name": "Avenging Crusader", "spellId": 394088, "visibleSpellId": 216331, "icon": "ability_paladin_veneration", "index": 200}]}, {"id": 81589, "name": "Power of the Silver Hand", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81558], "prev": [81585], "entries": [{"id": 102574, "definitionId": 107579, "maxRanks": 1, "type": "passive", "name": "Power of the Silver Hand", "spellId": 200474, "icon": "ability_paladin_blessedhands", "index": 100}]}, {"id": 81588, "name": "Tyr's Deliverance", "type": "single", "posX": 15000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81558, 81590, 81587], "prev": [81560, 81585], "entries": [{"id": 102573, "definitionId": 107578, "maxRanks": 1, "type": "active", "name": "Tyr's Deliverance", "spellId": 200652, "icon": "inv_mace_2h_artifactsilverhand_d_01", "index": 100}]}, {"id": 81579, "name": "Truth Prevails", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81554], "entries": [{"id": 102563, "definitionId": 107568, "maxRanks": 1, "type": "passive", "name": "Truth Prevails", "spellId": 461273, "icon": "ability_paladin_artofwar", "index": 100}]}, {"id": 81594, "name": "Crusader's Might", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93521], "prev": [81554, 81581, 103831], "entries": [{"id": 102580, "definitionId": 107585, "maxRanks": 1, "type": "passive", "name": "Crusader's Might", "spellId": 196926, "icon": "ability_paladin_swiftretribution", "index": 100}]}, {"id": 81592, "name": "Sanctified Wrath / Awakening", "type": "choice", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93521, 81593, 81591], "prev": [81584], "entries": [{"id": 102578, "definitionId": 107583, "maxRanks": 1, "type": "passive", "name": "Sanctified Wrath", "spellId": 53376, "icon": "ability_paladin_judgementsofthejust", "index": 100}, {"id": 116205, "definitionId": 121217, "maxRanks": 1, "type": "passive", "name": "Awakening", "spellId": 414195, "icon": "inv_helm_plate_raidpaladin_n_01", "index": 200}]}, {"id": 81558, "name": "Reclamation", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81591], "prev": [81588, 81584, 81589], "entries": [{"id": 102537, "definitionId": 107542, "maxRanks": 1, "type": "passive", "name": "Reclamation", "spellId": 415364, "icon": "ability_paladin_longarmofthelaw", "index": 100}]}, {"id": 81590, "name": "Relentless Inquisitor", "type": "single", "posX": 15600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81588], "entries": [{"id": 102575, "definitionId": 107580, "maxRanks": 1, "type": "passive", "name": "Relentless Inquisitor", "spellId": 383388, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81595, "name": "Rising Sunlight", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81554], "entries": [{"id": 102581, "definitionId": 107586, "maxRanks": 1, "type": "passive", "name": "Rising Sunlight", "spellId": 461250, "icon": "spell_priest_divinestar_holy", "index": 100}]}, {"id": 93521, "name": "Glorious Dawn", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81594, 81592], "entries": [{"id": 115873, "definitionId": 120885, "maxRanks": 1, "type": "passive", "name": "Glorious Dawn", "spellId": 461246, "icon": "ability_paladin_holyavenger", "index": 100}]}, {"id": 81593, "name": "Merciful Auras / Blessing of Summer", "type": "choice", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81592], "entries": [{"id": 102579, "definitionId": 107584, "maxRanks": 1, "type": "passive", "name": "Merciful Auras", "spellId": 183415, "icon": "spell_holy_blessedlife", "index": 100}, {"id": 116183, "definitionId": 121195, "maxRanks": 1, "type": "active", "name": "Blessing of Summer", "spellId": 388007, "icon": "ability_ardenweald_paladin_summer", "index": 200}]}, {"id": 81591, "name": "Inflorescence of the Sunwell", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81558, 81592], "entries": [{"id": 102577, "definitionId": 107582, "maxRanks": 1, "type": "passive", "name": "Inflorescence of the Sunwell", "spellId": 392907, "icon": "spell_lfieblood", "index": 100}]}, {"id": 81587, "name": "Boundless Salvation", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81588], "entries": [{"id": 102572, "definitionId": 107577, "maxRanks": 1, "type": "passive", "name": "Boundless Salvation", "spellId": 392951, "icon": "ability_paladin_selflesshealer", "index": 100}]}], "heroNodes": [{"id": 95099, "name": "Dawnlight", "type": "single", "posX": 8700, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 50, "requiresNode": 81577, "next": [95073, 95095, 95080], "prev": [], "entries": [{"id": 117696, "definitionId": 122708, "maxRanks": 1, "type": "passive", "name": "Dawnlight", "spellId": 431377, "icon": "inv_ability_heraldofthesunpaladin_dawnlight", "index": 100}], "freeNode": true}, {"id": 95073, "name": "Morning Star / Gleaming Rays", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95098], "prev": [95099], "entries": [{"id": 117670, "definitionId": 122682, "maxRanks": 1, "type": "passive", "name": "Morning Star", "spellId": 431482, "icon": "spell_holy_persecution", "index": 100}, {"id": 117778, "definitionId": 122790, "maxRanks": 1, "type": "passive", "name": "Gleaming Rays", "spellId": 431480, "icon": "spell_priest_power_word", "index": 200}]}, {"id": 95095, "name": "Eternal Flame", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95071], "prev": [95099], "entries": [{"id": 117692, "definitionId": 122704, "maxRanks": 1, "type": "active", "name": "Eternal Flame", "spellId": 156322, "icon": "inv_torch_thrown", "index": 100}]}, {"id": 95080, "name": "Luminosity", "type": "single", "posX": 9300, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95072], "prev": [95099], "entries": [{"id": 117677, "definitionId": 122689, "maxRanks": 1, "type": "passive", "name": "Luminosity", "spellId": 431402, "icon": "inv_qirajidol_sun", "index": 100}]}, {"id": 95098, "name": "Illumine / Will of the Dawn", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95069], "prev": [95073], "entries": [{"id": 117695, "definitionId": 122707, "maxRanks": 1, "type": "passive", "name": "Illumine", "spellId": 431423, "icon": "spell_holy_divineillumination", "index": 100}, {"id": 117777, "definitionId": 122789, "maxRanks": 1, "type": "passive", "name": "Will of the Dawn", "spellId": 431406, "icon": "spell_holy_divineprovidence", "index": 200}]}, {"id": 95071, "name": "Blessing of An'she / Lingering Radiance", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95094], "prev": [95095], "entries": [{"id": 117668, "definitionId": 122680, "maxRanks": 1, "type": "passive", "name": "Blessing of An'she", "spellId": 445200, "icon": "inv_ability_holyfire_orb", "index": 100}, {"id": 117779, "definitionId": 122791, "maxRanks": 1, "type": "passive", "name": "Lingering Radiance", "spellId": 431407, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 95072, "name": "Sun Sear", "type": "single", "posX": 9300, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95086], "prev": [95080], "entries": [{"id": 117669, "definitionId": 122681, "maxRanks": 1, "type": "passive", "name": "Sun Sear", "spellId": 431413, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 95069, "name": "Aurora", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81577, "next": [95105], "prev": [95098], "entries": [{"id": 117666, "definitionId": 122678, "maxRanks": 1, "type": "passive", "name": "Aurora", "spellId": 439760, "icon": "spell_holy_rune", "index": 100}]}, {"id": 95094, "name": "Solar Grace", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95105], "prev": [95071], "entries": [{"id": 117691, "definitionId": 122703, "maxRanks": 1, "type": "passive", "name": "Solar Grace", "spellId": 431404, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 100}]}, {"id": 95086, "name": "Second Sunrise", "type": "single", "posX": 9300, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "next": [95105], "prev": [95072], "entries": [{"id": 117683, "definitionId": 122695, "maxRanks": 1, "type": "passive", "name": "Second Sunrise", "spellId": 431474, "icon": "ability_priest_halo", "index": 100}]}, {"id": 95105, "name": "Sun's Avatar", "type": "single", "posX": 8700, "posY": 3600, "maxRanks": 1, "subTreeId": 50, "next": [], "prev": [95094, 95069, 95086], "entries": [{"id": 117702, "definitionId": 122714, "maxRanks": 1, "type": "passive", "name": "Sun's Avatar", "spellId": 431425, "icon": "ability_paladin_holyavenger", "index": 100}]}, {"id": 95234, "name": "Holy Armaments", "type": "single", "posX": 8690, "posY": 4190, "maxRanks": 1, "entryNode": true, "subTreeId": 49, "next": [95233, 95228, 95235], "prev": [], "entries": [{"id": 117882, "definitionId": 122894, "maxRanks": 1, "type": "active", "name": "Holy Armaments", "spellId": 432459, "icon": "inv_ability_lightsmithpaladin_holybulwark", "index": 100}], "freeNode": true}, {"id": 95233, "name": "Rite of Sanctification / Rite of Adjuration", "type": "choice", "posX": 8100, "posY": 4790, "maxRanks": 1, "subTreeId": 49, "next": [95236], "prev": [95234], "entries": [{"id": 117881, "definitionId": 122893, "maxRanks": 1, "type": "active", "name": "Rite of Sanctification", "spellId": 433568, "icon": "inv_inscription_weaponscroll01", "index": 100}, {"id": 117880, "definitionId": 122892, "maxRanks": 1, "type": "active", "name": "Rite of Adjuration", "spellId": 433583, "icon": "inv_inscription_armorscroll02", "index": 200}]}, {"id": 95228, "name": "Solidarity", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95231], "prev": [95234], "entries": [{"id": 117873, "definitionId": 122885, "maxRanks": 1, "type": "passive", "name": "Solidarity", "spellId": 432802, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 95235, "name": "Divine Guidance / Blessed Assurance", "type": "choice", "posX": 9300, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95232], "prev": [95234], "entries": [{"id": 117884, "definitionId": 122896, "maxRanks": 1, "type": "passive", "name": "Divine Guidance", "spellId": 433106, "icon": "spell_holy_lightsgrace", "index": 100}, {"id": 117883, "definitionId": 122895, "maxRanks": 1, "type": "passive", "name": "Blessed Assurance", "spellId": 433015, "icon": "spell_holy_blessedlife", "index": 200}]}, {"id": 95231, "name": "Divine Inspiration / Forewarning", "type": "choice", "posX": 8700, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95229], "prev": [95228], "entries": [{"id": 117877, "definitionId": 122889, "maxRanks": 1, "type": "passive", "name": "Divine Inspiration", "spellId": 432964, "icon": "ability_priest_flashoflight", "index": 100}, {"id": 117876, "definitionId": 122888, "maxRanks": 1, "type": "passive", "name": "Forewarning", "spellId": 432804, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 95232, "name": "Authoritative Rebuke / Tempered in Battle", "type": "choice", "posX": 9290, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95238], "prev": [95235], "entries": [{"id": 117879, "definitionId": 122891, "maxRanks": 1, "type": "passive", "name": "Authoritative Rebuke", "spellId": 469886, "icon": "inv_misc_symbolofkings_01", "index": 100}, {"id": 117878, "definitionId": 122890, "maxRanks": 1, "type": "passive", "name": "Tempered in Battle", "spellId": 469701, "icon": "inv_everburningforge_yellow", "index": 200}]}, {"id": 95236, "name": "Laying Down Arms", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 49, "next": [95237], "prev": [95233], "entries": [{"id": 117885, "definitionId": 122897, "maxRanks": 1, "type": "passive", "name": "Laying Down Arms", "spellId": 432866, "icon": "ability_paladin_handoflight", "index": 100}]}, {"id": 95229, "name": "Valiance", "type": "single", "posX": 8700, "posY": 5980, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95231], "entries": [{"id": 117874, "definitionId": 122886, "maxRanks": 1, "type": "passive", "name": "Valiance", "spellId": 432919, "icon": "inv_mace_47", "index": 100}]}, {"id": 95237, "name": "Shared Resolve", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95236], "entries": [{"id": 117886, "definitionId": 122898, "maxRanks": 1, "type": "passive", "name": "Shared Resolve", "spellId": 432821, "icon": "spell_holy_devotionaura", "index": 100}]}, {"id": 95238, "name": "Hammer and Anvil", "type": "single", "posX": 9300, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95232], "entries": [{"id": 117887, "definitionId": 122899, "maxRanks": 1, "type": "passive", "name": "Hammer and Anvil", "spellId": 433718, "icon": "inv_10_blacksmithing_consumable_repairhammer_color1", "index": 100}]}, {"id": 95230, "name": "Blessing of the Forge", "type": "single", "posX": 8690, "posY": 6600, "maxRanks": 1, "subTreeId": 49, "next": [], "prev": [95229, 95237, 95238], "entries": [{"id": 117875, "definitionId": 122887, "maxRanks": 1, "type": "passive", "name": "Blessing of the Forge", "spellId": 433011, "icon": "inv_ability_lightsmithpaladin_sacredweapon", "index": 100}]}], "subTreeNodes": [{"id": 99839, "name": "Herald of the Sun / Lightsmith", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123362, "type": "subtree", "name": "Herald of the Sun", "traitSubTreeId": 50, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-heraldofthesun", "nodes": [95099, 95073, 95095, 95080, 95098, 95071, 95072, 95069, 95094, 95086, 95105]}, {"id": 123359, "type": "subtree", "name": "Lightsmith", "traitSubTreeId": 49, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-lightsmith", "nodes": [95234, 95233, 95228, 95235, 95231, 95232, 95236, 95229, 95237, 95238, 95230]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81600, 81602, 81603, 81604, 81605, 81607, 81608, 81609, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81621, 81624, 81625, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831, 103849, 103850, 103851, 103852, 103853, 103854, 103855, 103856, 103857, 103858, 103859, 103860, 103861, 103862, 103863, 103864, 103865, 103866, 103867, 103868, 103877]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/paladin_protection.json b/simc_support/game_data/data_files/trees/paladin_protection.json index 4f5859c..992f1a3 100644 --- a/simc_support/game_data/data_files/trees/paladin_protection.json +++ b/simc_support/game_data/data_files/trees/paladin_protection.json @@ -1 +1 @@ -{"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Protection", "specId": 66, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81507, 81602], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}], "freeNode": true}, {"id": 81600, "name": "Blessing of Freedom", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81601, 81630], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 100}]}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81601, 93010, 81603], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81507, "name": "Cleanse Toxins", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [81602, 81598], "prev": [81597], "entries": [{"id": 102476, "definitionId": 107481, "maxRanks": 1, "type": "active", "name": "Cleanse Toxins", "spellId": 213644, "icon": "spell_holy_renew", "index": 100}]}, {"id": 81599, "name": "Auras of the Resolute", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [81632, 81602], "prev": [81600, 81597], "entries": [{"id": 102586, "definitionId": 107591, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}], "freeNode": true}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [81632], "prev": [81600], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81601, "name": "Crusader Aura", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 81603], "prev": [81600, 81510], "entries": [{"id": 102588, "definitionId": 107593, "maxRanks": 1, "type": "active", "name": "Crusader Aura", "spellId": 32223, "icon": "spell_holy_crusaderaura", "index": 100}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [81603, 81604], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 2, "next": [81598, 81609], "prev": [81597, 81599, 81507], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 2, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [81605, 81631, 81606], "prev": [81601, 81599, 81630], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 81603, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 81509], "prev": [93010, 81601, 81510], "entries": [{"id": 102590, "definitionId": 107595, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231663, "icon": "spell_holy_righteousfury", "index": 0}]}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81609, 81610], "prev": [81507, 81602], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81609, 81606], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 81631, "name": "Seasoned Warhorse", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81606, 81509], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Seasoned Warhorse", "spellId": 376996, "icon": "spell_nature_swiftness", "index": 200}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93165, 81509], "prev": [81603, 93010], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81610, 81614], "prev": [81605, 81598, 81602], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 2, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81606, "name": "Avenging Wrath", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81614, 81616, 93009], "prev": [81605, 81631, 81632], "entries": [{"id": 102593, "definitionId": 107598, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 384376, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}]}, {"id": 81509, "name": "Justification", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616, 93187, 93168], "prev": [81604, 81631, 81603], "entries": [{"id": 102478, "definitionId": 107483, "maxRanks": 1, "type": "passive", "name": "Justification", "spellId": 377043, "icon": "ability_paladin_empoweredsealsrighteous", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93168], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81610, "name": "Golden Path", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81611, 93188], "prev": [81609, 81598], "entries": [{"id": 102598, "definitionId": 107603, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81615, 93188], "prev": [81606, 81609], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [81615], "prev": [81606], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81617, 81543], "prev": [81606, 81509], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 93187, "name": "Unbound Freedom", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81543], "prev": [81509], "entries": [{"id": 115479, "definitionId": 120491, "maxRanks": 1, "type": "passive", "name": "Unbound Freedom", "spellId": 305394, "icon": "spell_holy_sealofvalor", "index": 100}]}, {"id": 93168, "name": "Lightforged Blessing", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81543, 81495], "prev": [93165, 81509], "entries": [{"id": 115447, "definitionId": 120459, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 406468, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 81611, "name": "Seal of Mercy", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480], "prev": [81610], "entries": [{"id": 102599, "definitionId": 107604, "maxRanks": 1, "type": "passive", "name": "Seal of Mercy", "spellId": 384897, "icon": "spell_holy_greaterblessingofsalvation", "index": 100}]}, {"id": 93188, "name": "Afterimage", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480, 81608], "prev": [81610, 81614], "entries": [{"id": 115480, "definitionId": 120492, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81608, 81621], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81621, 93192, 81619], "prev": [81616, 81614, 93009], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81619, 81628], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Touch of Light", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81628, 81495], "prev": [81616, 93168, 93187], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Touch of Light", "spellId": 385349, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 81480, "name": "Strength of Conviction", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93356], "prev": [81611, 93188], "entries": [{"id": 102444, "definitionId": 107455, "maxRanks": 2, "type": "passive", "name": "Strength of Conviction", "spellId": 379008, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93356], "prev": [81607, 93188], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81496, 93356], "prev": [81615, 81607], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 93192, "name": "Divine Purpose", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81496], "prev": [81615], "entries": [{"id": 115490, "definitionId": 120502, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 223817, "icon": "spell_holy_divinepurpose", "index": 100}]}, {"id": 81619, "name": "Seal of Alacrity", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81496, 93684], "prev": [81615, 81617], "entries": [{"id": 102609, "definitionId": 107614, "maxRanks": 2, "type": "passive", "name": "Seal of Alacrity", "spellId": 385425, "icon": "spell_holy_sealofvengeance", "index": 100}]}, {"id": 81628, "name": "Incandescence", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93684], "prev": [81543, 81617], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Incandescence", "spellId": 385464, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93684], "prev": [81543, 93168], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 93356, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81623], "prev": [81621, 81608, 81480], "entries": [{"id": 115672, "definitionId": 120684, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 409441, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81479], "prev": [81619, 81621, 93192], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "ability_bastion_paladin", "index": 100}]}, {"id": 93684, "name": "Seal of the Crusader", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81625], "prev": [81495, 81628, 81619], "entries": [{"id": 116065, "definitionId": 121077, "maxRanks": 2, "type": "passive", "name": "Seal of the Crusader", "spellId": 385728, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 81623, "name": "Seal of Order / Fading Light", "type": "choice", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93356], "entries": [{"id": 102614, "definitionId": 107619, "maxRanks": 1, "type": "passive", "name": "Seal of Order", "spellId": 385129, "icon": "spell_holy_sealofwisdom", "index": 100}, {"id": 115169, "definitionId": 120176, "maxRanks": 1, "type": "passive", "name": "Fading Light", "spellId": 405768, "icon": "spell_shadow_sealofkings", "index": 200}]}, {"id": 81479, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 102443, "definitionId": 107448, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 386738, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115168, "definitionId": 120175, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 81625, "name": "Zealot's Paragon", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93684], "entries": [{"id": 102616, "definitionId": 107621, "maxRanks": 1, "type": "passive", "name": "Zealot's Paragon", "spellId": 391142, "icon": "ability_paladin_conviction", "index": 100}]}], "specNodes": [{"id": 81502, "name": "Avenger's Shield", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81489, 81469], "prev": [], "entries": [{"id": 102471, "definitionId": 107476, "maxRanks": 1, "type": "active", "name": "Avenger's Shield", "spellId": 31935, "icon": "spell_holy_avengersshield", "index": 100}]}, {"id": 81489, "name": "Holy Shield", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [81487, 81494], "prev": [81502], "entries": [{"id": 102455, "definitionId": 107460, "maxRanks": 1, "type": "passive", "name": "Holy Shield", "spellId": 152261, "icon": "inv_shield_1h_hyrja_d_01", "index": 100}]}, {"id": 81469, "name": "Hammer of the Righteous / Blessed Hammer", "type": "choice", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [81487, 81498], "prev": [81502], "entries": [{"id": 102431, "definitionId": 107436, "maxRanks": 1, "type": "active", "name": "Hammer of the Righteous", "spellId": 53595, "icon": "ability_paladin_hammeroftherighteous", "index": 100}, {"id": 102430, "definitionId": 107435, "maxRanks": 1, "type": "active", "name": "Blessed Hammer", "spellId": 204019, "icon": "paladin_retribution", "index": 200}]}, {"id": 81494, "name": "Inner Light / Redoubt", "type": "choice", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [81486], "prev": [81489], "entries": [{"id": 102463, "definitionId": 107468, "maxRanks": 1, "type": "passive", "name": "Inner Light", "spellId": 386568, "icon": "ability_paladin_shieldofvengeance", "index": 100}, {"id": 102462, "definitionId": 107467, "maxRanks": 1, "type": "passive", "name": "Redoubt", "spellId": 280373, "icon": "ability_warrior_shieldguard", "index": 200}]}, {"id": 81487, "name": "Grand Crusader", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [81481, 81501, 81476], "prev": [81489, 81469], "entries": [{"id": 102453, "definitionId": 107458, "maxRanks": 1, "type": "passive", "name": "Grand Crusader", "spellId": 85043, "icon": "inv_helmet_74", "index": 100}]}, {"id": 81498, "name": "Shining Light", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [101927], "prev": [81469], "entries": [{"id": 102467, "definitionId": 107472, "maxRanks": 1, "type": "passive", "name": "Shining Light", "spellId": 321136, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81486, "name": "Improved Holy Shield", "type": "single", "posX": 12000, "posY": 3300, "maxRanks": 1, "next": [81499, 81492], "prev": [81494], "entries": [{"id": 102452, "definitionId": 107457, "maxRanks": 1, "type": "passive", "name": "Improved Holy Shield", "spellId": 393030, "icon": "inv_shield_1h_hyrja_d_01", "index": 100}]}, {"id": 81476, "name": "Inspiring Vanguard", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [81499], "prev": [81487], "entries": [{"id": 102439, "definitionId": 107444, "maxRanks": 1, "type": "passive", "name": "Inspiring Vanguard", "spellId": 393022, "icon": "inv_helmet_74", "index": 100}]}, {"id": 81481, "name": "Ardent Defender", "type": "single", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [81499, 81503, 90062], "prev": [81487], "entries": [{"id": 102445, "definitionId": 107450, "maxRanks": 1, "type": "active", "name": "Ardent Defender", "spellId": 31850, "icon": "spell_holy_ardentdefender", "index": 100}]}, {"id": 81501, "name": "Barricade of Faith", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [81503], "prev": [81487], "entries": [{"id": 102470, "definitionId": 107475, "maxRanks": 1, "type": "passive", "name": "Barricade of Faith", "spellId": 385726, "icon": "ability_paladin_barrieroffaith", "index": 100}]}, {"id": 101927, "name": "Sanctuary", "type": "single", "posX": 14400, "posY": 3300, "maxRanks": 1, "next": [81503, 81470], "prev": [81498], "entries": [{"id": 102451, "definitionId": 107456, "maxRanks": 1, "type": "passive", "name": "Sanctuary", "spellId": 379021, "icon": "spell_holy_innerfire", "index": 100}]}, {"id": 81492, "name": "Consecrated Ground", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81474, 101928], "prev": [81486], "entries": [{"id": 102459, "definitionId": 107464, "maxRanks": 1, "type": "passive", "name": "Consecrated Ground", "spellId": 204054, "icon": "ability_paladin_righteousvengeance", "index": 0}]}, {"id": 81499, "name": "Bulwark of Order", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81474, 81506, 81483], "prev": [81476, 81481, 81486], "entries": [{"id": 102468, "definitionId": 107473, "maxRanks": 1, "type": "passive", "name": "Bulwark of Order", "spellId": 209389, "icon": "spell_holy_pureofheart", "index": 100}]}, {"id": 90062, "name": "Improved Ardent Defender / Blessing of Spellwarding", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81483], "prev": [81481], "entries": [{"id": 111887, "definitionId": 116892, "maxRanks": 1, "type": "passive", "name": "Improved Ardent Defender", "spellId": 393114, "icon": "spell_holy_ardentdefender", "index": 100}, {"id": 111886, "definitionId": 116891, "maxRanks": 1, "type": "active", "name": "Blessing of Spellwarding", "spellId": 204018, "icon": "spell_holy_blessingofprotection", "index": 200}]}, {"id": 81503, "name": "Light of the Titans / Tirion's Devotion", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81485, 81483, 81612], "prev": [81501, 81481, 101927], "entries": [{"id": 102472, "definitionId": 107477, "maxRanks": 1, "type": "passive", "name": "Light of the Titans", "spellId": 378405, "icon": "spell_paladin_lightofdawn", "index": 100}, {"id": 125873, "definitionId": 130704, "maxRanks": 1, "type": "passive", "name": "Tirion's Devotion", "spellId": 392928, "icon": "spell_holy_revivechampion", "index": 200}]}, {"id": 81470, "name": "Consecration in Flame", "type": "single", "posX": 15000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81485, 81473], "prev": [101927], "entries": [{"id": 102432, "definitionId": 107437, "maxRanks": 1, "type": "passive", "name": "Consecration in Flame", "spellId": 379022, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 81474, "name": "Tyr's Enforcer", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101928, 81629, 81472], "prev": [81499, 81492], "entries": [{"id": 102437, "definitionId": 107442, "maxRanks": 2, "type": "passive", "name": "Tyr's Enforcer", "spellId": 378285, "icon": "spell_holy_persecution", "index": 0}]}, {"id": 81506, "name": "Relentless Inquisitor", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81490, 81629], "prev": [81499], "entries": [{"id": 102475, "definitionId": 107480, "maxRanks": 1, "type": "passive", "name": "Relentless Inquisitor", "spellId": 383388, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81483, "name": "Avenging Wrath: Might / Sentinel", "type": "choice", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81490], "prev": [81503, 81499, 90062], "entries": [{"id": 102448, "definitionId": 107453, "maxRanks": 1, "type": "active", "name": "Avenging Wrath: Might", "spellId": 384442, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}, {"id": 102447, "definitionId": 107452, "maxRanks": 1, "type": "active", "name": "Sentinel", "spellId": 385438, "visibleSpellId": 389539, "icon": "spell_holy_holynova", "index": 200}]}, {"id": 81612, "name": "Seal of Charity", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81490, 81475], "prev": [81503], "entries": [{"id": 102600, "definitionId": 107605, "maxRanks": 1, "type": "passive", "name": "Seal of Charity", "spellId": 384815, "icon": "spell_priest_power-word", "index": 100}]}, {"id": 81485, "name": "Faith in the Light", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [81475, 81473, 81620], "prev": [81503, 81470], "entries": [{"id": 102450, "definitionId": 107449, "maxRanks": 2, "type": "passive", "name": "Faith in the Light", "spellId": 379043, "icon": "spell_holy_redemption", "index": 100}]}, {"id": 101928, "name": "Soaring Shield", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81472, 81493], "prev": [81474, 81492], "entries": [{"id": 102434, "definitionId": 107439, "maxRanks": 1, "type": "passive", "name": "Soaring Shield", "spellId": 378457, "icon": "spell_burningbladeshaman_lavaslash", "index": 100}]}, {"id": 81629, "name": "Seal of Reprisal", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81472], "prev": [81474, 81506], "entries": [{"id": 102621, "definitionId": 107626, "maxRanks": 1, "type": "passive", "name": "Seal of Reprisal", "spellId": 377053, "icon": "spell_holy_sealoffury", "index": 100}]}, {"id": 81490, "name": "Guardian of Ancient Kings", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81484, 81500, 81497], "prev": [81483, 81506, 81612], "entries": [{"id": 102456, "definitionId": 107461, "maxRanks": 1, "type": "active", "name": "Guardian of Ancient Kings", "spellId": 86659, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 81475, "name": "Hand of the Protector", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81620], "prev": [81485, 81612], "entries": [{"id": 102438, "definitionId": 107443, "maxRanks": 1, "type": "passive", "name": "Hand of the Protector", "spellId": 315924, "icon": "ability_paladin_blessedhands", "index": 100}]}, {"id": 81473, "name": "Crusader's Judgment", "type": "single", "posX": 15000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81620, 81488], "prev": [81485, 81470], "entries": [{"id": 102436, "definitionId": 107441, "maxRanks": 1, "type": "passive", "name": "Crusader's Judgment", "spellId": 204023, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 81472, "name": "Focused Enmity", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81493, 81482], "prev": [81474, 81629, 101928], "entries": [{"id": 102435, "definitionId": 107440, "maxRanks": 1, "type": "passive", "name": "Focused Enmity", "spellId": 378845, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 81484, "name": "Gift of the Golden Val'kyr", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81482, 81497, 81491], "prev": [81490], "entries": [{"id": 102449, "definitionId": 107454, "maxRanks": 2, "type": "passive", "name": "Gift of the Golden Val'kyr", "spellId": 378279, "icon": "inv_valkiergoldpet", "index": 100}]}, {"id": 81500, "name": "Uther's Counsel", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81471, 81497, 81504], "prev": [81490], "entries": [{"id": 102469, "definitionId": 107474, "maxRanks": 2, "type": "passive", "name": "Uther's Counsel", "spellId": 378425, "icon": "spell_holy_greaterblessingofsalvation", "index": 100}]}, {"id": 81620, "name": "Sanctified Wrath", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81471, 81488], "prev": [81485, 81473, 81475], "entries": [{"id": 102611, "definitionId": 107616, "maxRanks": 1, "type": "active", "name": "Sanctified Wrath", "spellId": 53376, "visibleSpellId": 31884, "icon": "ability_paladin_judgementsofthejust", "index": 100}]}, {"id": 81493, "name": "Strength in Adversity / Crusader's Resolve", "type": "choice", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81505], "prev": [81472, 101928], "entries": [{"id": 102461, "definitionId": 107466, "maxRanks": 1, "type": "passive", "name": "Strength in Adversity", "spellId": 393071, "icon": "spell_holy_weaponmastery", "index": 100}, {"id": 102460, "definitionId": 107465, "maxRanks": 1, "type": "passive", "name": "Crusader's Resolve", "spellId": 380188, "icon": "ability_priest_angelicbulwark", "index": 200}]}, {"id": 81482, "name": "Ferren Marcus's Fervor", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81505, 81491], "prev": [81472, 81484], "entries": [{"id": 102446, "definitionId": 107451, "maxRanks": 2, "type": "passive", "name": "Ferren Marcus's Fervor", "spellId": 378762, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 81497, "name": "Eye of Tyr", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81491, 92953, 81504], "prev": [81490, 81500, 81484], "entries": [{"id": 102466, "definitionId": 107471, "maxRanks": 1, "type": "active", "name": "Eye of Tyr", "spellId": 387174, "icon": "inv_shield_1h_artifactnorgannon_d_01", "index": 100}]}, {"id": 81471, "name": "Resolute Defender", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81504, 81477], "prev": [81620, 81500], "entries": [{"id": 102433, "definitionId": 107438, "maxRanks": 2, "type": "passive", "name": "Resolute Defender", "spellId": 385422, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 81488, "name": "Bastion of Light", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81477], "prev": [81620, 81473], "entries": [{"id": 102454, "definitionId": 107459, "maxRanks": 1, "type": "active", "name": "Bastion of Light", "spellId": 378974, "icon": "paladin_protection", "index": 100}]}, {"id": 81505, "name": "Moment of Glory", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81482, 81493], "entries": [{"id": 102474, "definitionId": 107479, "maxRanks": 1, "type": "active", "name": "Moment of Glory", "spellId": 327193, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81491, "name": "Bulwark of Righteous Fury", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81482, 81484, 81497], "entries": [{"id": 102457, "definitionId": 107462, "maxRanks": 1, "type": "passive", "name": "Bulwark of Righteous Fury", "spellId": 386653, "icon": "spell_holy_sealofrighteousness", "index": 0}]}, {"id": 92953, "name": "Inmost Light", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81497], "entries": [{"id": 115167, "definitionId": 120174, "maxRanks": 1, "type": "passive", "name": "Inmost Light", "spellId": 405757, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81504, "name": "Final Stand", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81471, 81500, 81497], "entries": [{"id": 102473, "definitionId": 107478, "maxRanks": 1, "type": "passive", "name": "Final Stand", "spellId": 204077, "icon": "spell_holy_crusade", "index": 400}]}, {"id": 81477, "name": "Righteous Protector", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81471, 81488], "entries": [{"id": 102440, "definitionId": 107445, "maxRanks": 1, "type": "passive", "name": "Righteous Protector", "spellId": 204074, "icon": "ability_paladin_shieldofthetemplar", "index": 100}]}], "heroNodes": [{"id": 95180, "name": "Light's Guidance", "type": "single", "posX": 15900, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 48, "requiresNode": 81497, "next": [95187, 95183, 95177], "prev": [], "entries": [{"id": 117813, "definitionId": 122825, "maxRanks": 1, "type": "passive", "name": "Light's Guidance", "spellId": 427445, "icon": "ability_paladin_longarmofthelaw", "index": 100}], "freeNode": true}, {"id": 95183, "name": "Zealous Vindication / For Whom the Bell Tolls", "type": "choice", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95179], "prev": [95180], "entries": [{"id": 117816, "definitionId": 122828, "maxRanks": 1, "type": "passive", "name": "Zealous Vindication", "spellId": 431463, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 117859, "definitionId": 122871, "maxRanks": 1, "type": "passive", "name": "For Whom the Bell Tolls", "spellId": 432929, "icon": "ability_paladin_hammeroftherighteous", "index": 200}]}, {"id": 95187, "name": "Shake the Heavens", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95178], "prev": [95180], "entries": [{"id": 117823, "definitionId": 122835, "maxRanks": 1, "type": "passive", "name": "Shake the Heavens", "spellId": 431533, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 95177, "name": "Wrathful Descent", "type": "single", "posX": 16500, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95181], "prev": [95180], "entries": [{"id": 117810, "definitionId": 122822, "maxRanks": 1, "type": "passive", "name": "Wrathful Descent", "spellId": 431551, "icon": "ability_paladin_intercession", "index": 100}]}, {"id": 95179, "name": "Sacrosanct Crusade", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95185], "prev": [95183], "entries": [{"id": 117812, "definitionId": 122824, "maxRanks": 1, "type": "passive", "name": "Sacrosanct Crusade", "spellId": 431730, "icon": "inv_plate_raidpaladinprimalist_d_01_cape", "index": 100}]}, {"id": 95178, "name": "Higher Calling", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95184], "prev": [95187], "entries": [{"id": 117811, "definitionId": 122823, "maxRanks": 1, "type": "passive", "name": "Higher Calling", "spellId": 431687, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 95181, "name": "Bonds of Fellowship / Unrelenting Charger", "type": "choice", "posX": 16500, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95186], "prev": [95177], "entries": [{"id": 117814, "definitionId": 122826, "maxRanks": 1, "type": "passive", "name": "Bonds of Fellowship", "spellId": 432992, "icon": "spell_holy_crusade", "index": 100}, {"id": 117858, "definitionId": 122870, "maxRanks": 1, "type": "passive", "name": "Unrelenting Charger", "spellId": 432990, "icon": "ability_mount_mawhorsespikes_yellow", "index": 200}]}, {"id": 95185, "name": "Endless Wrath / Sanctification", "type": "choice", "posX": 15290, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95179], "entries": [{"id": 117820, "definitionId": 122832, "maxRanks": 1, "type": "passive", "name": "Endless Wrath", "spellId": 432615, "icon": "spell_holy_divinepurpose", "index": 100}, {"id": 117819, "definitionId": 122831, "maxRanks": 1, "type": "passive", "name": "Sanctification", "spellId": 432977, "icon": "ability_paladin_blessedhands", "index": 200}]}, {"id": 95184, "name": "Hammerfall", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95178], "entries": [{"id": 117818, "definitionId": 122830, "maxRanks": 1, "type": "passive", "name": "Hammerfall", "spellId": 432463, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 95186, "name": "Undisputed Ruling", "type": "single", "posX": 16500, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95182], "prev": [95181], "entries": [{"id": 117822, "definitionId": 122834, "maxRanks": 1, "type": "passive", "name": "Undisputed Ruling", "spellId": 432626, "icon": "spell_holy_righteousfury", "index": 100}]}, {"id": 95182, "name": "Light's Deliverance", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [], "prev": [95184, 95185, 95186], "entries": [{"id": 117815, "definitionId": 122827, "maxRanks": 1, "type": "passive", "name": "Light's Deliverance", "spellId": 425518, "icon": "inv_glove_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 95234, "name": "Holy Armaments", "type": "single", "posX": 8690, "posY": 4190, "maxRanks": 1, "entryNode": true, "subTreeId": 49, "next": [95233, 95228, 95235], "prev": [], "entries": [{"id": 117882, "definitionId": 122894, "maxRanks": 1, "type": "active", "name": "Holy Armaments", "spellId": 432459, "icon": "inv_ability_lightsmithpaladin_holybulwark", "index": 100}], "freeNode": true}, {"id": 95233, "name": "Rite of Sanctification / Rite of Adjuration", "type": "choice", "posX": 8100, "posY": 4790, "maxRanks": 1, "subTreeId": 49, "next": [95236], "prev": [95234], "entries": [{"id": 117881, "definitionId": 122893, "maxRanks": 1, "type": "active", "name": "Rite of Sanctification", "spellId": 433568, "icon": "inv_inscription_weaponscroll01", "index": 100}, {"id": 117880, "definitionId": 122892, "maxRanks": 1, "type": "active", "name": "Rite of Adjuration", "spellId": 433583, "icon": "inv_inscription_armorscroll02", "index": 200}]}, {"id": 95228, "name": "Solidarity", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95231], "prev": [95234], "entries": [{"id": 117873, "definitionId": 122885, "maxRanks": 1, "type": "passive", "name": "Solidarity", "spellId": 432802, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 95235, "name": "Divine Guidance / Blessed Assurance", "type": "choice", "posX": 9300, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95232], "prev": [95234], "entries": [{"id": 117884, "definitionId": 122896, "maxRanks": 1, "type": "passive", "name": "Divine Guidance", "spellId": 433106, "icon": "spell_holy_lightsgrace", "index": 100}, {"id": 117883, "definitionId": 122895, "maxRanks": 1, "type": "passive", "name": "Blessed Assurance", "spellId": 433015, "icon": "spell_holy_blessedlife", "index": 200}]}, {"id": 95231, "name": "Divine Inspiration / Forewarning", "type": "choice", "posX": 8700, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95229], "prev": [95228], "entries": [{"id": 117877, "definitionId": 122889, "maxRanks": 1, "type": "passive", "name": "Divine Inspiration", "spellId": 432964, "icon": "ability_priest_flashoflight", "index": 100}, {"id": 117876, "definitionId": 122888, "maxRanks": 1, "type": "passive", "name": "Forewarning", "spellId": 432804, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 95232, "name": "Fear No Evil / Excoriation", "type": "choice", "posX": 9290, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95238], "prev": [95235], "entries": [{"id": 117879, "definitionId": 122891, "maxRanks": 1, "type": "passive", "name": "Fear No Evil", "spellId": 432834, "icon": "spell_holy_senseundead", "index": 100}, {"id": 117878, "definitionId": 122890, "maxRanks": 1, "type": "passive", "name": "Excoriation", "spellId": 433896, "icon": "ability_paladin_sanctifiedwrath", "index": 200}]}, {"id": 95236, "name": "Laying Down Arms", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 49, "next": [95237], "prev": [95233], "entries": [{"id": 117885, "definitionId": 122897, "maxRanks": 1, "type": "passive", "name": "Laying Down Arms", "spellId": 432866, "icon": "ability_paladin_handoflight", "index": 100}]}, {"id": 95229, "name": "Valiance", "type": "single", "posX": 8700, "posY": 5980, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95231], "entries": [{"id": 117874, "definitionId": 122886, "maxRanks": 1, "type": "passive", "name": "Valiance", "spellId": 432919, "icon": "inv_mace_47", "index": 100}]}, {"id": 95237, "name": "Shared Resolve", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95236], "entries": [{"id": 117886, "definitionId": 122898, "maxRanks": 1, "type": "passive", "name": "Shared Resolve", "spellId": 432821, "icon": "spell_holy_devotionaura", "index": 100}]}, {"id": 95238, "name": "Hammer and Anvil", "type": "single", "posX": 9300, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95232], "entries": [{"id": 117887, "definitionId": 122899, "maxRanks": 1, "type": "passive", "name": "Hammer and Anvil", "spellId": 433718, "icon": "inv_10_blacksmithing_consumable_repairhammer_color1", "index": 100}]}, {"id": 95230, "name": "Blessing of the Forge", "type": "single", "posX": 8690, "posY": 6600, "maxRanks": 1, "subTreeId": 49, "requiresNode": 81606, "next": [], "prev": [95229, 95237, 95238], "entries": [{"id": 117875, "definitionId": 122887, "maxRanks": 1, "type": "passive", "name": "Blessing of the Forge", "spellId": 433011, "icon": "inv_ability_lightsmithpaladin_sacredweapon", "index": 100}]}], "subTreeNodes": [{"id": 99838, "name": "Lightsmith / Templar", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123361, "type": "subtree", "name": "Lightsmith", "traitSubTreeId": 49, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-lightsmith", "nodes": [95234, 95233, 95228, 95235, 95231, 95232, 95236, 95229, 95237, 95238, 95230]}, {"id": 123358, "type": "subtree", "name": "Templar", "traitSubTreeId": 48, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-templar", "nodes": [95180, 95183, 95187, 95177, 95179, 95178, 95181, 95185, 95184, 95186, 95182]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81480, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81509, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81599, 81600, 81601, 81602, 81603, 81604, 81605, 81606, 81607, 81608, 81609, 81610, 81611, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81619, 81620, 81621, 81623, 81624, 81625, 81626, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93176, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93684, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831]} \ No newline at end of file +{"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Protection", "specId": 66, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103859, 81602, 81507], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}], "freeNode": true}, {"id": 81600, "name": "Auras of the Resolute", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81602, 81598, 81632], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}], "freeNode": true}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81598, 93010, 81603], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81507, "name": "Cleanse Toxins", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [103858, 93188], "prev": [81597], "entries": [{"id": 102476, "definitionId": 107481, "maxRanks": 1, "type": "active", "name": "Cleanse Toxins", "spellId": 213644, "icon": "spell_holy_renew", "index": 100}]}, {"id": 103859, "name": "Empyreal Ward", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [93188], "prev": [81597], "entries": [{"id": 128255, "definitionId": 133062, "maxRanks": 1, "type": "passive", "name": "Empyreal Ward", "spellId": 387791, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [93188, 81632], "prev": [81600, 81597], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 1, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 103854, 81603], "prev": [81510, 81600], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [103855], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 103858, "name": "A Just Reward", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [103860], "prev": [81507], "entries": [{"id": 128254, "definitionId": 133061, "maxRanks": 1, "type": "passive", "name": "A Just Reward", "spellId": 469411, "icon": "spell_holy_blindingheal", "index": 100}]}, {"id": 93188, "name": "Afterimage", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [103860, 81630], "prev": [81507, 81602, 103859], "entries": [{"id": 115480, "definitionId": 120492, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [103857, 81605, 81631], "prev": [81602, 81598, 81600], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}], "freeNode": true}, {"id": 103854, "name": "Light's Countenance", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [81598], "entries": [{"id": 128247, "definitionId": 133054, "maxRanks": 1, "type": "passive", "name": "Light's Countenance", "spellId": 469325, "icon": "inv_shoulder_raidpaladindragon_d_01", "index": 100}]}, {"id": 81603, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 93009], "prev": [81510, 81598], "entries": [{"id": 102590, "definitionId": 107595, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231663, "icon": "spell_holy_righteousfury", "index": 0}]}, {"id": 103855, "name": "Wrench Evil / Stand Against Evil", "type": "choice", "posX": 6600, "posY": 2700, "maxRanks": 1, "next": [81604], "prev": [93010], "entries": [{"id": 128250, "definitionId": 133057, "maxRanks": 1, "type": "passive", "name": "Wrench Evil", "spellId": 460720, "icon": "ability_paladin_turnevil", "index": 100}, {"id": 128249, "definitionId": 133056, "maxRanks": 1, "type": "passive", "name": "Stand Against Evil", "spellId": 469317, "icon": "spell_holy_excorcism", "index": 200}]}, {"id": 103860, "name": "Holy Reprieve", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81630, 93168], "prev": [93188, 103858], "entries": [{"id": 128256, "definitionId": 133063, "maxRanks": 1, "type": "passive", "name": "Holy Reprieve", "spellId": 469445, "icon": "spell_holy_sealofsalvation", "index": 100}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81630, 81496, 81614], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 103857, "name": "Divine Spurs", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [], "prev": [81632], "entries": [{"id": 128253, "definitionId": 133060, "maxRanks": 1, "type": "passive", "name": "Divine Spurs", "spellId": 469409, "icon": "ability_mount_charger", "index": 100}]}, {"id": 81631, "name": "Steed of Liberty / Blessing of Freedom", "type": "choice", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81496, 93187, 93009], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Steed of Liberty", "spellId": 469304, "icon": "spell_holy_crusaderaura", "index": 200}, {"id": 128251, "definitionId": 133058, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 300}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93009, 93165], "prev": [81603, 103855], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93168, 81614, 81609], "prev": [93188, 103860, 81605], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81479, 81614, 81616], "prev": [81631, 81605], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "inv_ability_paladin_divinetoll", "index": 100}]}, {"id": 93187, "name": "Unbound Freedom", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616], "prev": [81631], "entries": [{"id": 115479, "definitionId": 120491, "maxRanks": 1, "type": "passive", "name": "Unbound Freedom", "spellId": 305394, "icon": "spell_holy_sealofvalor", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81543, 81616, 81615], "prev": [81603, 81604, 81631], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81543], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 93168, "name": "Divine Reach", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81609, 103850], "prev": [103860, 81630], "entries": [{"id": 115447, "definitionId": 120459, "maxRanks": 1, "type": "passive", "name": "Divine Reach", "spellId": 469476, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81609, 93192], "prev": [81605, 81630, 81496], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 81479, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 102443, "definitionId": 107448, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 386738, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115168, "definitionId": 120175, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81617, 93192, 81615], "prev": [93187, 81496, 93009], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Consecrated Ground", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81608], "prev": [93165, 93009], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Consecrated Ground", "spellId": 204054, "icon": "ability_paladin_righteousvengeance", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103850, 103867], "prev": [81630, 93168, 81614], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 1, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103867, 103865, 103866], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 93192, "name": "Sacred Strength / Divine Purpose", "type": "choice", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103866, 103868], "prev": [81614, 81616], "entries": [{"id": 115490, "definitionId": 120502, "maxRanks": 1, "type": "passive", "name": "Sacred Strength", "spellId": 469337, "icon": "spell_holy_righteousnessaura", "index": 100}, {"id": 128244, "definitionId": 133051, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 223817, "icon": "spell_holy_divinepurpose", "index": 200}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103868, 103864], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103864, 81608], "prev": [93009, 81543, 81616], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 103850, "name": "Lightforged Blessing", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495], "prev": [81609, 93168], "entries": [{"id": 128240, "definitionId": 133047, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 406468, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 103867, "name": "Lead the Charge", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495, 103862, 81621], "prev": [81609, 81607], "entries": [{"id": 128263, "definitionId": 133070, "maxRanks": 1, "type": "passive", "name": "Lead the Charge", "spellId": 469780, "icon": "inv_helm_plate_raidpaladin_r_01mythic", "index": 100}]}, {"id": 103865, "name": "Worthy Sacrifice / Righteous Protection", "type": "choice", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621], "prev": [81607], "entries": [{"id": 128261, "definitionId": 133068, "maxRanks": 1, "type": "passive", "name": "Worthy Sacrifice", "spellId": 469279, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 128248, "definitionId": 133055, "maxRanks": 1, "type": "passive", "name": "Righteous Protection", "spellId": 469321, "icon": "spell_holy_blessingofprotection", "index": 200}]}, {"id": 103866, "name": "Holy Ritual", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621, 93683, 81625], "prev": [93192, 81607], "entries": [{"id": 128262, "definitionId": 133069, "maxRanks": 1, "type": "passive", "name": "Holy Ritual", "spellId": 199422, "icon": "inv_relics_libramoftruth", "index": 100}]}, {"id": 103868, "name": "Blessed Calling", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81625], "prev": [81617, 93192], "entries": [{"id": 128264, "definitionId": 133071, "maxRanks": 1, "type": "passive", "name": "Blessed Calling", "spellId": 469770, "icon": "ability_paladin_judgementofthepure", "index": 100}]}, {"id": 103864, "name": "Inspired Guard", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81625, 81628, 103856], "prev": [81617, 81615], "entries": [{"id": 128260, "definitionId": 133067, "maxRanks": 1, "type": "passive", "name": "Inspired Guard", "spellId": 469439, "icon": "spell_holy_divineprotection", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [103856], "prev": [81615, 81543], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93356], "prev": [103850, 103867], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 103862, "name": "Stoicism", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93356], "prev": [103867], "entries": [{"id": 128258, "definitionId": 133065, "maxRanks": 1, "type": "passive", "name": "Stoicism", "spellId": 469316, "icon": "spell_magic_magearmor", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93356, 103861], "prev": [103866, 103865, 103867], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 93683, "name": "Seal of the Crusader", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103861], "prev": [103866], "entries": [{"id": 116064, "definitionId": 121076, "maxRanks": 1, "type": "passive", "name": "Seal of the Crusader", "spellId": 416770, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 81625, "name": "Zealot's Paragon", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [103861, 103863], "prev": [103866, 103868, 103864], "entries": [{"id": 102616, "definitionId": 107621, "maxRanks": 2, "type": "passive", "name": "Zealot's Paragon", "spellId": 391142, "icon": "ability_paladin_conviction", "index": 100}]}, {"id": 81628, "name": "Eye for an Eye", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Eye for an Eye", "spellId": 469309, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 103856, "name": "Golden Path / Selfless Healer", "type": "choice", "posX": 6600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864, 81608], "entries": [{"id": 128252, "definitionId": 133059, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}, {"id": 128309, "definitionId": 133116, "maxRanks": 1, "type": "passive", "name": "Selfless Healer", "spellId": 469434, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 93356, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81495, 81621, 103862], "entries": [{"id": 115672, "definitionId": 120684, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 409441, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 103861, "name": "Lightbearer", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81625, 81621, 93683], "entries": [{"id": 128257, "definitionId": 133064, "maxRanks": 1, "type": "passive", "name": "Lightbearer", "spellId": 469416, "icon": "spell_paladin_clarityofpurpose", "index": 100}]}, {"id": 103863, "name": "Light's Revocation", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81625, 103856, 81628], "entries": [{"id": 128259, "definitionId": 133066, "maxRanks": 1, "type": "passive", "name": "Light's Revocation", "spellId": 146956, "icon": "spell_holy_divineshield", "index": 100}]}], "specNodes": [{"id": 81502, "name": "Avenger's Shield", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81489, 81469], "prev": [], "entries": [{"id": 102471, "definitionId": 107476, "maxRanks": 1, "type": "active", "name": "Avenger's Shield", "spellId": 31935, "icon": "spell_holy_avengersshield", "index": 100}]}, {"id": 81489, "name": "Holy Shield", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [81487, 81494], "prev": [81502], "entries": [{"id": 102455, "definitionId": 107460, "maxRanks": 1, "type": "passive", "name": "Holy Shield", "spellId": 152261, "icon": "inv_shield_1h_hyrja_d_01", "index": 100}]}, {"id": 81469, "name": "Hammer of the Righteous / Blessed Hammer", "type": "choice", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [81487, 81498], "prev": [81502], "entries": [{"id": 102431, "definitionId": 107436, "maxRanks": 1, "type": "active", "name": "Hammer of the Righteous", "spellId": 53595, "icon": "ability_paladin_hammeroftherighteous", "index": 100}, {"id": 102430, "definitionId": 107435, "maxRanks": 1, "type": "active", "name": "Blessed Hammer", "spellId": 204019, "icon": "paladin_retribution", "index": 200}]}, {"id": 81494, "name": "Inner Light / Redoubt", "type": "choice", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [81486], "prev": [81489], "entries": [{"id": 102463, "definitionId": 107468, "maxRanks": 1, "type": "passive", "name": "Inner Light", "spellId": 386568, "icon": "ability_paladin_shieldofvengeance", "index": 100}, {"id": 102462, "definitionId": 107467, "maxRanks": 1, "type": "passive", "name": "Redoubt", "spellId": 280373, "icon": "ability_warrior_shieldguard", "index": 200}]}, {"id": 81487, "name": "Grand Crusader", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [81481, 81501, 81476], "prev": [81489, 81469], "entries": [{"id": 102453, "definitionId": 107458, "maxRanks": 1, "type": "passive", "name": "Grand Crusader", "spellId": 85043, "icon": "inv_helmet_74", "index": 100}]}, {"id": 81498, "name": "Shining Light", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [101927], "prev": [81469], "entries": [{"id": 102467, "definitionId": 107472, "maxRanks": 1, "type": "passive", "name": "Shining Light", "spellId": 321136, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81486, "name": "Improved Holy Shield", "type": "single", "posX": 12000, "posY": 3300, "maxRanks": 1, "next": [81499, 81492], "prev": [81494], "entries": [{"id": 102452, "definitionId": 107457, "maxRanks": 1, "type": "passive", "name": "Improved Holy Shield", "spellId": 393030, "icon": "inv_shield_1h_hyrja_d_01", "index": 100}]}, {"id": 81476, "name": "Inspiring Vanguard", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [81499], "prev": [81487], "entries": [{"id": 102439, "definitionId": 107444, "maxRanks": 1, "type": "passive", "name": "Inspiring Vanguard", "spellId": 393022, "icon": "inv_helmet_74", "index": 100}]}, {"id": 81481, "name": "Ardent Defender", "type": "single", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [81499, 81503, 90062], "prev": [81487], "entries": [{"id": 102445, "definitionId": 107450, "maxRanks": 1, "type": "active", "name": "Ardent Defender", "spellId": 31850, "icon": "spell_holy_ardentdefender", "index": 100}]}, {"id": 81501, "name": "Barricade of Faith", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [81503], "prev": [81487], "entries": [{"id": 102470, "definitionId": 107475, "maxRanks": 1, "type": "passive", "name": "Barricade of Faith", "spellId": 385726, "icon": "ability_paladin_barrieroffaith", "index": 100}]}, {"id": 101927, "name": "Sanctuary", "type": "single", "posX": 14400, "posY": 3300, "maxRanks": 1, "next": [81503, 81470], "prev": [81498], "entries": [{"id": 102451, "definitionId": 107456, "maxRanks": 1, "type": "passive", "name": "Sanctuary", "spellId": 379021, "icon": "spell_holy_innerfire", "index": 100}]}, {"id": 81492, "name": "Refining Fire", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81474, 101928], "prev": [81486], "entries": [{"id": 102459, "definitionId": 107464, "maxRanks": 1, "type": "passive", "name": "Refining Fire", "spellId": 469883, "icon": "inv_everburningignition_yellow", "index": 0}]}, {"id": 81499, "name": "Bulwark of Order", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81474, 81506, 81483], "prev": [81476, 81481, 81486], "entries": [{"id": 102468, "definitionId": 107473, "maxRanks": 1, "type": "passive", "name": "Bulwark of Order", "spellId": 209389, "icon": "spell_holy_pureofheart", "index": 100}]}, {"id": 90062, "name": "Improved Ardent Defender / Blessing of Spellwarding", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81483], "prev": [81481], "entries": [{"id": 111887, "definitionId": 116892, "maxRanks": 1, "type": "passive", "name": "Improved Ardent Defender", "spellId": 393114, "icon": "spell_holy_ardentdefender", "index": 100}, {"id": 111886, "definitionId": 116891, "maxRanks": 1, "type": "active", "name": "Blessing of Spellwarding", "spellId": 204018, "icon": "spell_holy_blessingofprotection", "index": 200}]}, {"id": 81503, "name": "Light of the Titans / Tirion's Devotion", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81485, 81483, 81612], "prev": [81501, 81481, 101927], "entries": [{"id": 102472, "definitionId": 107477, "maxRanks": 1, "type": "passive", "name": "Light of the Titans", "spellId": 378405, "icon": "spell_paladin_lightofdawn", "index": 100}, {"id": 125873, "definitionId": 130704, "maxRanks": 1, "type": "passive", "name": "Tirion's Devotion", "spellId": 392928, "icon": "spell_holy_revivechampion", "index": 200}]}, {"id": 81470, "name": "Consecration in Flame", "type": "single", "posX": 15000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81485, 81473], "prev": [101927], "entries": [{"id": 102432, "definitionId": 107437, "maxRanks": 1, "type": "passive", "name": "Consecration in Flame", "spellId": 379022, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 81474, "name": "Tyr's Enforcer", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101928, 81629, 81472], "prev": [81499, 81492], "entries": [{"id": 102437, "definitionId": 107442, "maxRanks": 2, "type": "passive", "name": "Tyr's Enforcer", "spellId": 378285, "icon": "spell_holy_persecution", "index": 0}]}, {"id": 81506, "name": "Relentless Inquisitor", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81629], "prev": [81499], "entries": [{"id": 102475, "definitionId": 107480, "maxRanks": 1, "type": "passive", "name": "Relentless Inquisitor", "spellId": 383388, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81483, "name": "Avenging Wrath / Sentinel", "type": "choice", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81490, 81629, 81475], "prev": [81503, 81499, 90062], "entries": [{"id": 102448, "definitionId": 107453, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 31884, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}, {"id": 102447, "definitionId": 107452, "maxRanks": 1, "type": "active", "name": "Sentinel", "spellId": 389539, "visibleSpellId": 389539, "icon": "spell_holy_holynova", "index": 200}]}, {"id": 81612, "name": "Seal of Charity", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81475], "prev": [81503], "entries": [{"id": 102600, "definitionId": 107605, "maxRanks": 1, "type": "passive", "name": "Seal of Charity", "spellId": 384815, "icon": "spell_priest_power-word", "index": 100}]}, {"id": 81485, "name": "Faith in the Light", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [81475, 81473], "prev": [81503, 81470], "entries": [{"id": 102450, "definitionId": 107449, "maxRanks": 2, "type": "passive", "name": "Faith in the Light", "spellId": 379043, "icon": "spell_holy_redemption", "index": 100}]}, {"id": 101928, "name": "Soaring Shield", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81472, 81493], "prev": [81474, 81492], "entries": [{"id": 102434, "definitionId": 107439, "maxRanks": 1, "type": "passive", "name": "Soaring Shield", "spellId": 378457, "icon": "spell_burningbladeshaman_lavaslash", "index": 100}]}, {"id": 81629, "name": "Seal of Reprisal", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81472], "prev": [81474, 81506, 81483], "entries": [{"id": 102621, "definitionId": 107626, "maxRanks": 1, "type": "passive", "name": "Seal of Reprisal", "spellId": 377053, "icon": "spell_holy_sealoffury", "index": 100}]}, {"id": 81490, "name": "Guardian of Ancient Kings", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81484, 103877, 81497], "prev": [81483], "entries": [{"id": 102456, "definitionId": 107461, "maxRanks": 1, "type": "active", "name": "Guardian of Ancient Kings", "spellId": 86659, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 81475, "name": "Hand of the Protector", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81500], "prev": [81485, 81612, 81483], "entries": [{"id": 102438, "definitionId": 107443, "maxRanks": 1, "type": "passive", "name": "Hand of the Protector", "spellId": 315924, "icon": "ability_paladin_blessedhands", "index": 100}]}, {"id": 81473, "name": "Crusader's Judgment", "type": "single", "posX": 15000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81500, 81488], "prev": [81485, 81470], "entries": [{"id": 102436, "definitionId": 107441, "maxRanks": 1, "type": "passive", "name": "Crusader's Judgment", "spellId": 204023, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 81472, "name": "Focused Enmity", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81493, 81482], "prev": [81474, 81629, 101928], "entries": [{"id": 102435, "definitionId": 107440, "maxRanks": 1, "type": "passive", "name": "Focused Enmity", "spellId": 378845, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 81484, "name": "Gift of the Golden Val'kyr", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81482, 81497, 81491], "prev": [81490], "entries": [{"id": 102449, "definitionId": 107454, "maxRanks": 1, "type": "passive", "name": "Gift of the Golden Val'kyr", "spellId": 378279, "icon": "inv_valkiergoldpet", "index": 100}]}, {"id": 103877, "name": "Sanctified Wrath", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81471, 81497], "prev": [81490], "entries": [{"id": 128278, "definitionId": 133085, "maxRanks": 1, "type": "passive", "name": "Sanctified Wrath", "spellId": 53376, "icon": "ability_paladin_judgementsofthejust", "index": 100}]}, {"id": 81500, "name": "Uther's Counsel", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81471], "prev": [81473, 81475], "entries": [{"id": 102469, "definitionId": 107474, "maxRanks": 1, "type": "passive", "name": "Uther's Counsel", "spellId": 378425, "icon": "spell_holy_greaterblessingofsalvation", "index": 100}]}, {"id": 81493, "name": "Strength in Adversity / Crusader's Resolve", "type": "choice", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81505], "prev": [81472, 101928], "entries": [{"id": 102461, "definitionId": 107466, "maxRanks": 1, "type": "passive", "name": "Strength in Adversity", "spellId": 393071, "icon": "spell_holy_weaponmastery", "index": 100}, {"id": 102460, "definitionId": 107465, "maxRanks": 1, "type": "passive", "name": "Crusader's Resolve", "spellId": 380188, "icon": "ability_priest_angelicbulwark", "index": 200}]}, {"id": 81482, "name": "Ferren Marcus's Fervor", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81505, 81491], "prev": [81472, 81484], "entries": [{"id": 102446, "definitionId": 107451, "maxRanks": 2, "type": "passive", "name": "Ferren Marcus's Fervor", "spellId": 378762, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 81497, "name": "Eye of Tyr", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81491, 92953, 81504], "prev": [81490, 81484, 103877], "entries": [{"id": 102466, "definitionId": 107471, "maxRanks": 1, "type": "active", "name": "Eye of Tyr", "spellId": 387174, "icon": "inv_shield_1h_artifactnorgannon_d_01", "index": 100}]}, {"id": 81471, "name": "Resolute Defender", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81504, 81477], "prev": [81500, 103877], "entries": [{"id": 102433, "definitionId": 107438, "maxRanks": 2, "type": "passive", "name": "Resolute Defender", "spellId": 385422, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 81488, "name": "Bastion of Light", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81477], "prev": [81473], "entries": [{"id": 102454, "definitionId": 107459, "maxRanks": 1, "type": "active", "name": "Bastion of Light", "spellId": 378974, "icon": "paladin_protection", "index": 100}]}, {"id": 81505, "name": "Moment of Glory", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81482, 81493], "entries": [{"id": 102474, "definitionId": 107479, "maxRanks": 1, "type": "active", "name": "Moment of Glory", "spellId": 327193, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81491, "name": "Bulwark of Righteous Fury", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81482, 81484, 81497], "entries": [{"id": 102457, "definitionId": 107462, "maxRanks": 1, "type": "passive", "name": "Bulwark of Righteous Fury", "spellId": 386653, "icon": "spell_holy_sealofrighteousness", "index": 0}]}, {"id": 92953, "name": "Inmost Light", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81497], "entries": [{"id": 115167, "definitionId": 120174, "maxRanks": 1, "type": "passive", "name": "Inmost Light", "spellId": 405757, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81504, "name": "Final Stand", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81471, 81497], "entries": [{"id": 102473, "definitionId": 107478, "maxRanks": 1, "type": "passive", "name": "Final Stand", "spellId": 204077, "icon": "spell_holy_crusade", "index": 400}]}, {"id": 81477, "name": "Righteous Protector", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81471, 81488], "entries": [{"id": 102440, "definitionId": 107445, "maxRanks": 1, "type": "passive", "name": "Righteous Protector", "spellId": 204074, "icon": "ability_paladin_shieldofthetemplar", "index": 100}]}], "heroNodes": [{"id": 95180, "name": "Light's Guidance", "type": "single", "posX": 15900, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 48, "requiresNode": 81497, "next": [95187, 95183, 95177], "prev": [], "entries": [{"id": 117813, "definitionId": 122825, "maxRanks": 1, "type": "passive", "name": "Light's Guidance", "spellId": 427445, "icon": "ability_paladin_longarmofthelaw", "index": 100}], "freeNode": true}, {"id": 95183, "name": "Zealous Vindication / For Whom the Bell Tolls", "type": "choice", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95179], "prev": [95180], "entries": [{"id": 117816, "definitionId": 122828, "maxRanks": 1, "type": "passive", "name": "Zealous Vindication", "spellId": 431463, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 117859, "definitionId": 122871, "maxRanks": 1, "type": "passive", "name": "For Whom the Bell Tolls", "spellId": 432929, "icon": "ability_paladin_hammeroftherighteous", "index": 200}]}, {"id": 95187, "name": "Shake the Heavens", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95178], "prev": [95180], "entries": [{"id": 117823, "definitionId": 122835, "maxRanks": 1, "type": "passive", "name": "Shake the Heavens", "spellId": 431533, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 95177, "name": "Wrathful Descent", "type": "single", "posX": 16500, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95181], "prev": [95180], "entries": [{"id": 117810, "definitionId": 122822, "maxRanks": 1, "type": "passive", "name": "Wrathful Descent", "spellId": 431551, "icon": "ability_paladin_intercession", "index": 100}]}, {"id": 95179, "name": "Sacrosanct Crusade", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95185], "prev": [95183], "entries": [{"id": 117812, "definitionId": 122824, "maxRanks": 1, "type": "passive", "name": "Sacrosanct Crusade", "spellId": 431730, "icon": "inv_plate_raidpaladinprimalist_d_01_cape", "index": 100}]}, {"id": 95178, "name": "Higher Calling", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95184], "prev": [95187], "entries": [{"id": 117811, "definitionId": 122823, "maxRanks": 1, "type": "passive", "name": "Higher Calling", "spellId": 431687, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 95181, "name": "Bonds of Fellowship / Unrelenting Charger", "type": "choice", "posX": 16500, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95186], "prev": [95177], "entries": [{"id": 117814, "definitionId": 122826, "maxRanks": 1, "type": "passive", "name": "Bonds of Fellowship", "spellId": 432992, "icon": "spell_holy_crusade", "index": 100}, {"id": 117858, "definitionId": 122870, "maxRanks": 1, "type": "passive", "name": "Unrelenting Charger", "spellId": 432990, "icon": "ability_mount_mawhorsespikes_yellow", "index": 200}]}, {"id": 95185, "name": "Endless Wrath / Sanctification", "type": "choice", "posX": 15290, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95179], "entries": [{"id": 117820, "definitionId": 122832, "maxRanks": 1, "type": "passive", "name": "Endless Wrath", "spellId": 432615, "icon": "spell_holy_divinepurpose", "index": 100}, {"id": 117819, "definitionId": 122831, "maxRanks": 1, "type": "passive", "name": "Sanctification", "spellId": 432977, "icon": "ability_paladin_blessedhands", "index": 200}]}, {"id": 95184, "name": "Hammerfall", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95178], "entries": [{"id": 117818, "definitionId": 122830, "maxRanks": 1, "type": "passive", "name": "Hammerfall", "spellId": 432463, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 95186, "name": "Undisputed Ruling", "type": "single", "posX": 16500, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95182], "prev": [95181], "entries": [{"id": 117822, "definitionId": 122834, "maxRanks": 1, "type": "passive", "name": "Undisputed Ruling", "spellId": 432626, "icon": "spell_holy_righteousfury", "index": 100}]}, {"id": 95182, "name": "Light's Deliverance", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [], "prev": [95184, 95185, 95186], "entries": [{"id": 117815, "definitionId": 122827, "maxRanks": 1, "type": "passive", "name": "Light's Deliverance", "spellId": 425518, "icon": "inv_glove_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 95234, "name": "Holy Armaments", "type": "single", "posX": 8690, "posY": 4190, "maxRanks": 1, "entryNode": true, "subTreeId": 49, "next": [95233, 95228, 95235], "prev": [], "entries": [{"id": 117882, "definitionId": 122894, "maxRanks": 1, "type": "active", "name": "Holy Armaments", "spellId": 432459, "icon": "inv_ability_lightsmithpaladin_holybulwark", "index": 100}], "freeNode": true}, {"id": 95233, "name": "Rite of Sanctification / Rite of Adjuration", "type": "choice", "posX": 8100, "posY": 4790, "maxRanks": 1, "subTreeId": 49, "next": [95236], "prev": [95234], "entries": [{"id": 117881, "definitionId": 122893, "maxRanks": 1, "type": "active", "name": "Rite of Sanctification", "spellId": 433568, "icon": "inv_inscription_weaponscroll01", "index": 100}, {"id": 117880, "definitionId": 122892, "maxRanks": 1, "type": "active", "name": "Rite of Adjuration", "spellId": 433583, "icon": "inv_inscription_armorscroll02", "index": 200}]}, {"id": 95228, "name": "Solidarity", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95231], "prev": [95234], "entries": [{"id": 117873, "definitionId": 122885, "maxRanks": 1, "type": "passive", "name": "Solidarity", "spellId": 432802, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 95235, "name": "Divine Guidance / Blessed Assurance", "type": "choice", "posX": 9300, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95232], "prev": [95234], "entries": [{"id": 117884, "definitionId": 122896, "maxRanks": 1, "type": "passive", "name": "Divine Guidance", "spellId": 433106, "icon": "spell_holy_lightsgrace", "index": 100}, {"id": 117883, "definitionId": 122895, "maxRanks": 1, "type": "passive", "name": "Blessed Assurance", "spellId": 433015, "icon": "spell_holy_blessedlife", "index": 200}]}, {"id": 95231, "name": "Divine Inspiration / Forewarning", "type": "choice", "posX": 8700, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95229], "prev": [95228], "entries": [{"id": 117877, "definitionId": 122889, "maxRanks": 1, "type": "passive", "name": "Divine Inspiration", "spellId": 432964, "icon": "ability_priest_flashoflight", "index": 100}, {"id": 117876, "definitionId": 122888, "maxRanks": 1, "type": "passive", "name": "Forewarning", "spellId": 432804, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 95232, "name": "Authoritative Rebuke / Tempered in Battle", "type": "choice", "posX": 9290, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95238], "prev": [95235], "entries": [{"id": 117879, "definitionId": 122891, "maxRanks": 1, "type": "passive", "name": "Authoritative Rebuke", "spellId": 469886, "icon": "inv_misc_symbolofkings_01", "index": 100}, {"id": 117878, "definitionId": 122890, "maxRanks": 1, "type": "passive", "name": "Tempered in Battle", "spellId": 469701, "icon": "inv_everburningforge_yellow", "index": 200}]}, {"id": 95236, "name": "Laying Down Arms", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 49, "next": [95237], "prev": [95233], "entries": [{"id": 117885, "definitionId": 122897, "maxRanks": 1, "type": "passive", "name": "Laying Down Arms", "spellId": 432866, "icon": "ability_paladin_handoflight", "index": 100}]}, {"id": 95229, "name": "Valiance", "type": "single", "posX": 8700, "posY": 5980, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95231], "entries": [{"id": 117874, "definitionId": 122886, "maxRanks": 1, "type": "passive", "name": "Valiance", "spellId": 432919, "icon": "inv_mace_47", "index": 100}]}, {"id": 95237, "name": "Shared Resolve", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95236], "entries": [{"id": 117886, "definitionId": 122898, "maxRanks": 1, "type": "passive", "name": "Shared Resolve", "spellId": 432821, "icon": "spell_holy_devotionaura", "index": 100}]}, {"id": 95238, "name": "Hammer and Anvil", "type": "single", "posX": 9300, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95232], "entries": [{"id": 117887, "definitionId": 122899, "maxRanks": 1, "type": "passive", "name": "Hammer and Anvil", "spellId": 433718, "icon": "inv_10_blacksmithing_consumable_repairhammer_color1", "index": 100}]}, {"id": 95230, "name": "Blessing of the Forge", "type": "single", "posX": 8690, "posY": 6600, "maxRanks": 1, "subTreeId": 49, "next": [], "prev": [95229, 95237, 95238], "entries": [{"id": 117875, "definitionId": 122887, "maxRanks": 1, "type": "passive", "name": "Blessing of the Forge", "spellId": 433011, "icon": "inv_ability_lightsmithpaladin_sacredweapon", "index": 100}]}], "subTreeNodes": [{"id": 99838, "name": "Lightsmith / Templar", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123361, "type": "subtree", "name": "Lightsmith", "traitSubTreeId": 49, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-lightsmith", "nodes": [95234, 95233, 95228, 95235, 95231, 95232, 95236, 95229, 95237, 95238, 95230]}, {"id": 123358, "type": "subtree", "name": "Templar", "traitSubTreeId": 48, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-templar", "nodes": [95180, 95183, 95187, 95177, 95179, 95178, 95181, 95185, 95184, 95186, 95182]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81600, 81602, 81603, 81604, 81605, 81607, 81608, 81609, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81621, 81624, 81625, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831, 103849, 103850, 103851, 103852, 103853, 103854, 103855, 103856, 103857, 103858, 103859, 103860, 103861, 103862, 103863, 103864, 103865, 103866, 103867, 103868, 103877]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/paladin_retribution.json b/simc_support/game_data/data_files/trees/paladin_retribution.json index b634403..388a6f2 100644 --- a/simc_support/game_data/data_files/trees/paladin_retribution.json +++ b/simc_support/game_data/data_files/trees/paladin_retribution.json @@ -1 +1 @@ -{"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Retribution", "specId": 70, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81507, 81602], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 81600, "name": "Blessing of Freedom", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81601, 81630], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 100}], "freeNode": true}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81601, 93010, 81603], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}], "freeNode": true}, {"id": 81507, "name": "Cleanse Toxins", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [81602, 81598], "prev": [81597], "entries": [{"id": 102476, "definitionId": 107481, "maxRanks": 1, "type": "active", "name": "Cleanse Toxins", "spellId": 213644, "icon": "spell_holy_renew", "index": 100}]}, {"id": 81599, "name": "Auras of the Resolute", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [81632, 81602], "prev": [81600, 81597], "entries": [{"id": 102586, "definitionId": 107591, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}]}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [81632], "prev": [81600], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81601, "name": "Crusader Aura", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 81603], "prev": [81600, 81510], "entries": [{"id": 102588, "definitionId": 107593, "maxRanks": 1, "type": "active", "name": "Crusader Aura", "spellId": 32223, "icon": "spell_holy_crusaderaura", "index": 100}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [81603, 81604], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 2, "next": [81598, 81609], "prev": [81597, 81599, 81507], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 2, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [81605, 81631, 81606], "prev": [81601, 81599, 81630], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 81603, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 81509], "prev": [93010, 81601, 81510], "entries": [{"id": 102590, "definitionId": 107595, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231663, "icon": "spell_holy_righteousfury", "index": 0}], "freeNode": true}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81609, 81610], "prev": [81507, 81602], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81609, 81606], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 81631, "name": "Seasoned Warhorse", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81606, 81509], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Seasoned Warhorse", "spellId": 376996, "icon": "spell_nature_swiftness", "index": 200}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93165, 81509], "prev": [81603, 93010], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81610, 81614], "prev": [81605, 81598, 81602], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 2, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81606, "name": "Avenging Wrath", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81614, 81616, 93009], "prev": [81605, 81631, 81632], "entries": [{"id": 102593, "definitionId": 107598, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 384376, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}]}, {"id": 81509, "name": "Justification", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616, 93174, 93008], "prev": [81604, 81631, 81603], "entries": [{"id": 102478, "definitionId": 107483, "maxRanks": 1, "type": "passive", "name": "Justification", "spellId": 377043, "icon": "ability_paladin_empoweredsealsrighteous", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93008], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81610, "name": "Golden Path", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81611, 93189], "prev": [81609, 81598], "entries": [{"id": 102598, "definitionId": 107603, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81615, 93189], "prev": [81606, 81609], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [81615], "prev": [81606], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81617, 81543], "prev": [81606, 81509], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 93174, "name": "Unbound Freedom", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81543], "prev": [81509], "entries": [{"id": 115454, "definitionId": 120466, "maxRanks": 1, "type": "passive", "name": "Unbound Freedom", "spellId": 305394, "icon": "spell_holy_sealofvalor", "index": 100}]}, {"id": 93008, "name": "Lightforged Blessing", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81543, 81495], "prev": [81509, 93165], "entries": [{"id": 115239, "definitionId": 120251, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 403479, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 81611, "name": "Seal of Mercy", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480], "prev": [81610], "entries": [{"id": 102599, "definitionId": 107604, "maxRanks": 1, "type": "passive", "name": "Seal of Mercy", "spellId": 384897, "icon": "spell_holy_greaterblessingofsalvation", "index": 100}]}, {"id": 93189, "name": "Afterimage / Healing Hands", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480, 81608], "prev": [81614, 81610], "entries": [{"id": 115482, "definitionId": 120494, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}, {"id": 115481, "definitionId": 120493, "maxRanks": 1, "type": "passive", "name": "Healing Hands", "spellId": 326734, "icon": "ability_paladin_infusionoflight", "index": 200}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81608, 81621], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81621, 81618, 81619], "prev": [81616, 81614, 93009], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81619, 81628], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Touch of Light", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81628, 81495], "prev": [81616, 93008, 93174], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Touch of Light", "spellId": 385349, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 81480, "name": "Strength of Conviction", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81624], "prev": [81611, 93189], "entries": [{"id": 102444, "definitionId": 107455, "maxRanks": 2, "type": "passive", "name": "Strength of Conviction", "spellId": 379008, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81624], "prev": [81607, 93189], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81624, 81496], "prev": [81615, 81607], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 81618, "name": "Divine Purpose", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81496], "prev": [81615], "entries": [{"id": 102608, "definitionId": 107613, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 408459, "icon": "spell_holy_divinepurpose", "index": 100}]}, {"id": 81619, "name": "Seal of Alacrity", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81626, 81496], "prev": [81615, 81617], "entries": [{"id": 102609, "definitionId": 107614, "maxRanks": 2, "type": "passive", "name": "Seal of Alacrity", "spellId": 385425, "icon": "spell_holy_sealofvengeance", "index": 100}]}, {"id": 81628, "name": "Incandescence", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81626], "prev": [81543, 81617], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Incandescence", "spellId": 385464, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81626], "prev": [81543, 93008], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 81624, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81623], "prev": [81608, 81621, 81480], "entries": [{"id": 102615, "definitionId": 107620, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 385125, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93181], "prev": [81618, 81619, 81621], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "ability_bastion_paladin", "index": 100}]}, {"id": 81626, "name": "Seal of the Crusader", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93177], "prev": [81619, 81628, 81495], "entries": [{"id": 102617, "definitionId": 107622, "maxRanks": 2, "type": "passive", "name": "Seal of the Crusader", "spellId": 385728, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 81623, "name": "Seal of Order / Fading Light", "type": "choice", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81624], "entries": [{"id": 102614, "definitionId": 107619, "maxRanks": 1, "type": "passive", "name": "Seal of Order", "spellId": 385129, "icon": "spell_holy_sealofwisdom", "index": 100}, {"id": 115169, "definitionId": 120176, "maxRanks": 1, "type": "passive", "name": "Fading Light", "spellId": 405768, "icon": "spell_shadow_sealofkings", "index": 200}]}, {"id": 93181, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 115468, "definitionId": 120480, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 384027, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115467, "definitionId": 120479, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 93177, "name": "Vengeful Wrath", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81626], "entries": [{"id": 115457, "definitionId": 120469, "maxRanks": 1, "type": "passive", "name": "Vengeful Wrath", "spellId": 406835, "icon": "spell_paladin_hammerofwrath", "index": 100}]}], "specNodes": [{"id": 81526, "name": "Blade of Justice", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81527], "prev": [], "entries": [{"id": 102498, "definitionId": 107503, "maxRanks": 1, "type": "active", "name": "Blade of Justice", "spellId": 184575, "icon": "ability_paladin_bladeofjustice", "index": 100}]}, {"id": 81527, "name": "Divine Storm", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [81521, 92689, 93161, 92838], "prev": [81526], "entries": [{"id": 102499, "definitionId": 107504, "maxRanks": 1, "type": "active", "name": "Divine Storm", "spellId": 53385, "icon": "ability_paladin_divinestorm", "index": 100}]}, {"id": 81521, "name": "Swift Justice / Light of Justice", "type": "choice", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [81532, 81531], "prev": [81527], "entries": [{"id": 102491, "definitionId": 107496, "maxRanks": 1, "type": "passive", "name": "Swift Justice", "spellId": 383228, "icon": "ability_paladin_judgementofthepure", "index": 100}, {"id": 114828, "definitionId": 119835, "maxRanks": 1, "type": "passive", "name": "Light of Justice", "spellId": 404436, "icon": "inv_offhand_1h_ulduarraid_d_01", "index": 200}]}, {"id": 92689, "name": "Expurgation", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [81531], "prev": [81527], "entries": [{"id": 114830, "definitionId": 119837, "maxRanks": 1, "type": "passive", "name": "Expurgation", "spellId": 383344, "icon": "ability_paladin_bladeofjusticeblue", "index": 100}]}, {"id": 93161, "name": "Judgment of Justice", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [81531], "prev": [81527], "entries": [{"id": 115440, "definitionId": 120452, "maxRanks": 1, "type": "passive", "name": "Judgment of Justice", "spellId": 403495, "icon": "ability_paladin_judgementblue", "index": 100}]}, {"id": 92838, "name": "Improved Blade of Justice / Holy Blade", "type": "choice", "posX": 15000, "posY": 2700, "maxRanks": 1, "next": [81531, 81523], "prev": [81527], "entries": [{"id": 115023, "definitionId": 120030, "maxRanks": 1, "type": "passive", "name": "Improved Blade of Justice", "spellId": 403745, "icon": "ability_paladin_bladeofjustice", "index": 100}, {"id": 115022, "definitionId": 120029, "maxRanks": 1, "type": "passive", "name": "Holy Blade", "spellId": 383342, "icon": "ability_paladin_lightoftheprotector", "index": 200}]}, {"id": 81532, "name": "Final Verdict / Justicar's Vengeance", "type": "choice", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [81542, 92951, 81533], "prev": [81521], "entries": [{"id": 102504, "definitionId": 107509, "maxRanks": 1, "type": "active", "name": "Final Verdict", "spellId": 383328, "icon": "spell_paladin_templarsverdict", "index": 0}, {"id": 114831, "definitionId": 119838, "maxRanks": 1, "type": "active", "name": "Justicar's Vengeance", "spellId": 215661, "icon": "spell_holy_retributionaura", "index": 100}]}, {"id": 81531, "name": "Light's Celerity / Guided Prayer", "type": "choice", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [92688, 92951, 81544], "prev": [81521, 92838, 93161, 92689], "entries": [{"id": 102503, "definitionId": 107508, "maxRanks": 1, "type": "passive", "name": "Light's Celerity", "spellId": 403698, "icon": "spell_holy_flashheal", "index": 100}, {"id": 115020, "definitionId": 120027, "maxRanks": 1, "type": "passive", "name": "Guided Prayer", "spellId": 404357, "icon": "ability_crown_of_the_heavens_icon", "index": 200}]}, {"id": 81523, "name": "Righteous Cause / Art of War", "type": "choice", "posX": 15000, "posY": 3300, "maxRanks": 1, "next": [92688, 81512, 92952], "prev": [92838], "entries": [{"id": 102494, "definitionId": 107499, "maxRanks": 1, "type": "passive", "name": "Righteous Cause", "spellId": 402912, "icon": "inv_sword_133", "index": 100}, {"id": 102493, "definitionId": 107498, "maxRanks": 1, "type": "passive", "name": "Art of War", "spellId": 406064, "icon": "ability_paladin_artofwar", "index": 200}]}, {"id": 81542, "name": "Jurisdiction", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81533, 93173], "prev": [81532], "entries": [{"id": 102516, "definitionId": 107521, "maxRanks": 1, "type": "passive", "name": "Jurisdiction", "spellId": 402971, "icon": "ability_paladin_longarmofthelaw", "index": 100}]}, {"id": 92951, "name": "Inquisitor's Ire / Tempest of the Lightbringer", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81533, 81534], "prev": [81531, 81532], "entries": [{"id": 115164, "definitionId": 120171, "maxRanks": 1, "type": "passive", "name": "Inquisitor's Ire", "spellId": 403975, "icon": "inv_helmet_plate_raidpaladin_j_01", "index": 100}, {"id": 115452, "definitionId": 120464, "maxRanks": 1, "type": "passive", "name": "Tempest of the Lightbringer", "spellId": 383396, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 200}]}, {"id": 81544, "name": "Avenging Wrath: Might / Crusade", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93186, 93160, 81516], "prev": [81531], "entries": [{"id": 102519, "definitionId": 107524, "maxRanks": 1, "type": "active", "name": "Avenging Wrath: Might", "spellId": 384442, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 0}, {"id": 125129, "definitionId": 129961, "maxRanks": 1, "type": "active", "name": "Crusade", "spellId": 384392, "icon": "ability_paladin_sanctifiedwrath", "index": 100}]}, {"id": 92688, "name": "Vanguard's Momentum / Sanctify", "type": "choice", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81545, 81541], "prev": [81531, 81523], "entries": [{"id": 114826, "definitionId": 119833, "maxRanks": 1, "type": "passive", "name": "Vanguard's Momentum", "spellId": 383314, "icon": "ability_paladin_speedoflight", "index": 100}, {"id": 115488, "definitionId": 120500, "maxRanks": 1, "type": "passive", "name": "Sanctify", "spellId": 382536, "icon": "achievement_zone_firelands", "index": 200}]}, {"id": 92952, "name": "Zealot's Fervor", "type": "single", "posX": 15000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81545], "prev": [81523], "entries": [{"id": 115165, "definitionId": 120172, "maxRanks": 2, "type": "passive", "name": "Zealot's Fervor", "spellId": 403509, "icon": "spell_holy_weaponmastery", "index": 100}]}, {"id": 81512, "name": "Consecrated Ground / Rush of Light", "type": "choice", "posX": 15600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81545, 92860], "prev": [81523], "entries": [{"id": 102481, "definitionId": 107486, "maxRanks": 1, "type": "passive", "name": "Consecrated Ground", "spellId": 204054, "icon": "ability_paladin_righteousvengeance", "index": 100}, {"id": 115475, "definitionId": 120487, "maxRanks": 1, "type": "passive", "name": "Rush of Light", "spellId": 407067, "icon": "spell_holy_borrowedtime", "index": 200}]}, {"id": 81533, "name": "Improved Judgment / Boundless Judgment", "type": "choice", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93173, 93190, 81534], "prev": [81542, 92951, 81532], "entries": [{"id": 102505, "definitionId": 107510, "maxRanks": 1, "type": "passive", "name": "Improved Judgment", "spellId": 405461, "icon": "spell_holy_righteousfury", "index": 100}, {"id": 115021, "definitionId": 120028, "maxRanks": 1, "type": "passive", "name": "Boundless Judgment", "spellId": 405278, "icon": "ability_paladin_judgementofthewise", "index": 200}]}, {"id": 93186, "name": "Crusading Strikes / Templar Strikes", "type": "choice", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81534, 81525], "prev": [81544], "entries": [{"id": 115474, "definitionId": 120486, "maxRanks": 1, "type": "passive", "name": "Crusading Strikes", "spellId": 404542, "icon": "inv_sword_08", "index": 100}, {"id": 115473, "definitionId": 120485, "maxRanks": 1, "type": "active", "name": "Templar Strikes", "spellId": 406646, "icon": "inv_sword_2h_artifactashbringer_d_01", "index": 200}]}, {"id": 93160, "name": "Divine Wrath", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81525], "prev": [81544], "entries": [{"id": 115439, "definitionId": 120451, "maxRanks": 1, "type": "passive", "name": "Divine Wrath", "spellId": 406872, "icon": "spell_holy_greaterblessingofkings", "index": 100}]}, {"id": 81516, "name": "Divine Hammer", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81541, 81525], "prev": [81544], "entries": [{"id": 115016, "definitionId": 120023, "maxRanks": 1, "type": "active", "name": "Divine Hammer", "spellId": 198034, "icon": "classicon_paladin", "index": 200}]}, {"id": 81545, "name": "Blade of Vengeance / Holy Flames", "type": "choice", "posX": 15000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81541, 92860, 92839], "prev": [92952, 81512, 92688], "entries": [{"id": 102521, "definitionId": 107526, "maxRanks": 1, "type": "passive", "name": "Blade of Vengeance", "spellId": 403826, "icon": "ability_paladin_bladeofjustice", "index": 100}, {"id": 115438, "definitionId": 120450, "maxRanks": 1, "type": "passive", "name": "Holy Flames", "spellId": 406545, "icon": "ability_warlock_inferno", "index": 200}]}, {"id": 93173, "name": "Empyrean Legacy", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537], "prev": [81542, 81533], "entries": [{"id": 115453, "definitionId": 120465, "maxRanks": 1, "type": "passive", "name": "Empyrean Legacy", "spellId": 387170, "icon": "item_holyspark", "index": 100}]}, {"id": 93190, "name": "Heart of the Crusader", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [81537], "prev": [81533], "entries": [{"id": 115483, "definitionId": 120495, "maxRanks": 2, "type": "passive", "name": "Heart of the Crusader", "spellId": 406154, "icon": "spell_brokenheart", "index": 100}]}, {"id": 81534, "name": "Highlord's Wrath", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537], "prev": [93186, 92951, 81533], "entries": [{"id": 102506, "definitionId": 107511, "maxRanks": 1, "type": "passive", "name": "Highlord's Wrath", "spellId": 404512, "icon": "ability_paladin_judgementred", "index": 100}]}, {"id": 81525, "name": "Wake of Ashes", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537, 81550, 92839], "prev": [93160, 81516, 93186], "entries": [{"id": 102497, "definitionId": 107502, "maxRanks": 1, "type": "active", "name": "Wake of Ashes", "spellId": 255937, "icon": "inv_sword_2h_artifactashbringerfire_d_03", "index": 100}]}, {"id": 81541, "name": "Blessed Champion", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [92839], "prev": [81545, 81516, 92688], "entries": [{"id": 102515, "definitionId": 107520, "maxRanks": 1, "type": "passive", "name": "Blessed Champion", "spellId": 403010, "icon": "achievement_bg_trueavshutout", "index": 0}]}, {"id": 92860, "name": "Empyrean Power / Judge, Jury and Executioner", "type": "choice", "posX": 15600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [92839], "prev": [81512, 81545], "entries": [{"id": 115051, "definitionId": 120058, "maxRanks": 1, "type": "passive", "name": "Empyrean Power", "spellId": 326732, "icon": "ability_paladin_sheathoflight", "index": 100}, {"id": 115477, "definitionId": 120489, "maxRanks": 1, "type": "passive", "name": "Judge, Jury and Executioner", "spellId": 405607, "icon": "spell_paladin_inquisition", "index": 200}]}, {"id": 81537, "name": "Adjudication", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93164], "prev": [81525, 93173, 93190, 81534], "entries": [{"id": 102511, "definitionId": 107516, "maxRanks": 1, "type": "passive", "name": "Adjudication", "spellId": 406157, "icon": "spell_holy_vindication", "index": 100}]}, {"id": 81550, "name": "Aegis of Protection / Shield of Vengeance", "type": "choice", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81539, 92854], "prev": [81525], "entries": [{"id": 102526, "definitionId": 107531, "maxRanks": 1, "type": "passive", "name": "Aegis of Protection", "spellId": 403654, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 125130, "definitionId": 129962, "maxRanks": 1, "type": "passive", "name": "Shield of Vengeance", "spellId": 184662, "icon": "ability_paladin_shieldofthetemplar", "index": 200}]}, {"id": 92839, "name": "Penitence", "type": "single", "posX": 15000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81536], "prev": [81545, 92860, 81541, 81525], "entries": [{"id": 115024, "definitionId": 120031, "maxRanks": 1, "type": "passive", "name": "Penitence", "spellId": 403026, "icon": "ability_paladin_lightofthemartyr", "index": 100}]}, {"id": 93164, "name": "Blades of Light", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81540], "prev": [81537], "entries": [{"id": 115443, "definitionId": 120455, "maxRanks": 1, "type": "passive", "name": "Blades of Light", "spellId": 403664, "icon": "achievement_arena_3v3_7", "index": 100}]}, {"id": 81539, "name": "Final Reckoning / Execution Sentence", "type": "choice", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81548, 81538], "prev": [81550], "entries": [{"id": 102513, "definitionId": 107518, "maxRanks": 1, "type": "active", "name": "Final Reckoning", "spellId": 343721, "icon": "spell_holy_blessedresillience", "index": 100}, {"id": 115435, "definitionId": 120447, "maxRanks": 1, "type": "active", "name": "Execution Sentence", "spellId": 343527, "icon": "spell_paladin_executionsentence", "index": 200}]}, {"id": 92854, "name": "Seething Flames", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81549, 92686], "prev": [81550], "entries": [{"id": 115043, "definitionId": 120050, "maxRanks": 1, "type": "passive", "name": "Seething Flames", "spellId": 405355, "icon": "ability_mage_flamecannon", "index": 100}]}, {"id": 81536, "name": "Burning Crusade", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81552], "prev": [92839], "entries": [{"id": 102510, "definitionId": 107515, "maxRanks": 1, "type": "passive", "name": "Burning Crusade", "spellId": 405289, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 81540, "name": "Divine Arbiter", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93164], "entries": [{"id": 102514, "definitionId": 107519, "maxRanks": 1, "type": "passive", "name": "Divine Arbiter", "spellId": 404306, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 81548, "name": "Executioner's Will", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81539], "entries": [{"id": 102524, "definitionId": 107529, "maxRanks": 1, "type": "passive", "name": "Executioner's Will", "spellId": 406940, "icon": "inv_helm_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 81538, "name": "Divine Auxiliary", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81539], "entries": [{"id": 102512, "definitionId": 107517, "maxRanks": 1, "type": "passive", "name": "Divine Auxiliary", "spellId": 406158, "icon": "inv_polearm_2h_odynspear_d_02", "index": 100}]}, {"id": 81549, "name": "Radiant Glory", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92854], "entries": [{"id": 102525, "definitionId": 107530, "maxRanks": 1, "type": "passive", "name": "Radiant Glory", "spellId": 458359, "icon": "achievement_dungeon_gloryoftheraider", "index": 0}]}, {"id": 92686, "name": "Burn to Ash", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92854], "entries": [{"id": 114824, "definitionId": 119831, "maxRanks": 1, "type": "passive", "name": "Burn to Ash", "spellId": 446663, "icon": "spell_burningsoul", "index": 0}]}, {"id": 81552, "name": "Searing Light", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81536], "entries": [{"id": 102530, "definitionId": 107535, "maxRanks": 1, "type": "passive", "name": "Searing Light", "spellId": 404540, "icon": "spell_fire_felflamering_red", "index": 200}]}], "heroNodes": [{"id": 95180, "name": "Light's Guidance", "type": "single", "posX": 15900, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 48, "requiresNode": 81497, "next": [95187, 95183, 95177], "prev": [], "entries": [{"id": 117813, "definitionId": 122825, "maxRanks": 1, "type": "passive", "name": "Light's Guidance", "spellId": 427445, "icon": "ability_paladin_longarmofthelaw", "index": 100}], "freeNode": true}, {"id": 95099, "name": "Dawnlight", "type": "single", "posX": 8700, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 50, "requiresNode": 81577, "next": [95073, 95095, 95080], "prev": [], "entries": [{"id": 117696, "definitionId": 122708, "maxRanks": 1, "type": "passive", "name": "Dawnlight", "spellId": 431377, "icon": "inv_ability_heraldofthesunpaladin_dawnlight", "index": 100}], "freeNode": true}, {"id": 95183, "name": "Zealous Vindication / For Whom the Bell Tolls", "type": "choice", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95179], "prev": [95180], "entries": [{"id": 117816, "definitionId": 122828, "maxRanks": 1, "type": "passive", "name": "Zealous Vindication", "spellId": 431463, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 117859, "definitionId": 122871, "maxRanks": 1, "type": "passive", "name": "For Whom the Bell Tolls", "spellId": 432929, "icon": "ability_paladin_hammeroftherighteous", "index": 200}]}, {"id": 95187, "name": "Shake the Heavens", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95178], "prev": [95180], "entries": [{"id": 117823, "definitionId": 122835, "maxRanks": 1, "type": "passive", "name": "Shake the Heavens", "spellId": 431533, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 95177, "name": "Wrathful Descent", "type": "single", "posX": 16500, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95181], "prev": [95180], "entries": [{"id": 117810, "definitionId": 122822, "maxRanks": 1, "type": "passive", "name": "Wrathful Descent", "spellId": 431551, "icon": "ability_paladin_intercession", "index": 100}]}, {"id": 95073, "name": "Morning Star / Gleaming Rays", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95098], "prev": [95099], "entries": [{"id": 117670, "definitionId": 122682, "maxRanks": 1, "type": "passive", "name": "Morning Star", "spellId": 431482, "icon": "spell_holy_persecution", "index": 100}, {"id": 117778, "definitionId": 122790, "maxRanks": 1, "type": "passive", "name": "Gleaming Rays", "spellId": 431480, "icon": "spell_priest_power_word", "index": 200}]}, {"id": 95095, "name": "Eternal Flame", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95071], "prev": [95099], "entries": [{"id": 117692, "definitionId": 122704, "maxRanks": 1, "type": "active", "name": "Eternal Flame", "spellId": 156322, "icon": "inv_torch_thrown", "index": 100}]}, {"id": 95080, "name": "Luminosity", "type": "single", "posX": 9300, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95072], "prev": [95099], "entries": [{"id": 117677, "definitionId": 122689, "maxRanks": 1, "type": "passive", "name": "Luminosity", "spellId": 431402, "icon": "inv_qirajidol_sun", "index": 100}]}, {"id": 95179, "name": "Sacrosanct Crusade", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95185], "prev": [95183], "entries": [{"id": 117812, "definitionId": 122824, "maxRanks": 1, "type": "passive", "name": "Sacrosanct Crusade", "spellId": 431730, "icon": "inv_plate_raidpaladinprimalist_d_01_cape", "index": 100}]}, {"id": 95178, "name": "Higher Calling", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95184], "prev": [95187], "entries": [{"id": 117811, "definitionId": 122823, "maxRanks": 1, "type": "passive", "name": "Higher Calling", "spellId": 431687, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 95181, "name": "Bonds of Fellowship / Unrelenting Charger", "type": "choice", "posX": 16500, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95186], "prev": [95177], "entries": [{"id": 117814, "definitionId": 122826, "maxRanks": 1, "type": "passive", "name": "Bonds of Fellowship", "spellId": 432992, "icon": "spell_holy_crusade", "index": 100}, {"id": 117858, "definitionId": 122870, "maxRanks": 1, "type": "passive", "name": "Unrelenting Charger", "spellId": 432990, "icon": "ability_mount_mawhorsespikes_yellow", "index": 200}]}, {"id": 95098, "name": "Illumine / Will of the Dawn", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95069], "prev": [95073], "entries": [{"id": 117695, "definitionId": 122707, "maxRanks": 1, "type": "passive", "name": "Illumine", "spellId": 431423, "icon": "spell_holy_divineillumination", "index": 100}, {"id": 117777, "definitionId": 122789, "maxRanks": 1, "type": "passive", "name": "Will of the Dawn", "spellId": 431406, "icon": "spell_holy_divineprovidence", "index": 200}]}, {"id": 95071, "name": "Blessing of An'she / Lingering Radiance", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95094], "prev": [95095], "entries": [{"id": 117668, "definitionId": 122680, "maxRanks": 1, "type": "passive", "name": "Blessing of An'she", "spellId": 445200, "icon": "inv_ability_holyfire_orb", "index": 100}, {"id": 117779, "definitionId": 122791, "maxRanks": 1, "type": "passive", "name": "Lingering Radiance", "spellId": 431407, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 95072, "name": "Sun Sear", "type": "single", "posX": 9300, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95086], "prev": [95080], "entries": [{"id": 117669, "definitionId": 122681, "maxRanks": 1, "type": "passive", "name": "Sun Sear", "spellId": 431413, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 95185, "name": "Endless Wrath / Sanctification", "type": "choice", "posX": 15290, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95179], "entries": [{"id": 117820, "definitionId": 122832, "maxRanks": 1, "type": "passive", "name": "Endless Wrath", "spellId": 432615, "icon": "spell_holy_divinepurpose", "index": 100}, {"id": 117819, "definitionId": 122831, "maxRanks": 1, "type": "passive", "name": "Sanctification", "spellId": 432977, "icon": "ability_paladin_blessedhands", "index": 200}]}, {"id": 95184, "name": "Hammerfall", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95178], "entries": [{"id": 117818, "definitionId": 122830, "maxRanks": 1, "type": "passive", "name": "Hammerfall", "spellId": 432463, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 95186, "name": "Undisputed Ruling", "type": "single", "posX": 16500, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95182], "prev": [95181], "entries": [{"id": 117822, "definitionId": 122834, "maxRanks": 1, "type": "passive", "name": "Undisputed Ruling", "spellId": 432626, "icon": "spell_holy_righteousfury", "index": 100}]}, {"id": 95069, "name": "Aurora", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81577, "next": [95105], "prev": [95098], "entries": [{"id": 117666, "definitionId": 122678, "maxRanks": 1, "type": "passive", "name": "Aurora", "spellId": 439760, "icon": "spell_holy_rune", "index": 100}]}, {"id": 95094, "name": "Solar Grace", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95105], "prev": [95071], "entries": [{"id": 117691, "definitionId": 122703, "maxRanks": 1, "type": "passive", "name": "Solar Grace", "spellId": 431404, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 100}]}, {"id": 95086, "name": "Second Sunrise", "type": "single", "posX": 9300, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "next": [95105], "prev": [95072], "entries": [{"id": 117683, "definitionId": 122695, "maxRanks": 1, "type": "passive", "name": "Second Sunrise", "spellId": 431474, "icon": "ability_priest_halo", "index": 100}]}, {"id": 95182, "name": "Light's Deliverance", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [], "prev": [95184, 95185, 95186], "entries": [{"id": 117815, "definitionId": 122827, "maxRanks": 1, "type": "passive", "name": "Light's Deliverance", "spellId": 425518, "icon": "inv_glove_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 95105, "name": "Sun's Avatar", "type": "single", "posX": 8700, "posY": 3600, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81606, "next": [], "prev": [95094, 95069, 95086], "entries": [{"id": 117702, "definitionId": 122714, "maxRanks": 1, "type": "passive", "name": "Sun's Avatar", "spellId": 431425, "icon": "ability_paladin_holyavenger", "index": 100}]}], "subTreeNodes": [{"id": 99837, "name": "Herald of the Sun / Templar", "type": "subtree", "posX": 9600, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123360, "type": "subtree", "name": "Herald of the Sun", "traitSubTreeId": 50, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-heraldofthesun", "nodes": [95099, 95073, 95095, 95080, 95098, 95071, 95072, 95069, 95094, 95086, 95105]}, {"id": 123357, "type": "subtree", "name": "Templar", "traitSubTreeId": 48, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-templar", "nodes": [95180, 95183, 95187, 95177, 95179, 95178, 95181, 95185, 95184, 95186, 95182]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81480, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81509, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81599, 81600, 81601, 81602, 81603, 81604, 81605, 81606, 81607, 81608, 81609, 81610, 81611, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81619, 81620, 81621, 81623, 81624, 81625, 81626, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93176, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93684, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831]} \ No newline at end of file +{"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Retribution", "specId": 70, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103859, 81602, 81507], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 81600, "name": "Auras of the Resolute", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81602, 81598, 81632], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}], "freeNode": true}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81598, 93010, 81603], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}], "freeNode": true}, {"id": 81507, "name": "Cleanse Toxins", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [103858, 93189], "prev": [81597], "entries": [{"id": 102476, "definitionId": 107481, "maxRanks": 1, "type": "active", "name": "Cleanse Toxins", "spellId": 213644, "icon": "spell_holy_renew", "index": 100}]}, {"id": 103859, "name": "Empyreal Ward", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [93189], "prev": [81597], "entries": [{"id": 128255, "definitionId": 133062, "maxRanks": 1, "type": "passive", "name": "Empyreal Ward", "spellId": 387791, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [93189, 81632], "prev": [81600, 81597], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 1, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 103854, 81603], "prev": [81510, 81600], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [103855], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 103858, "name": "A Just Reward", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [103860], "prev": [81507], "entries": [{"id": 128254, "definitionId": 133061, "maxRanks": 1, "type": "passive", "name": "A Just Reward", "spellId": 469411, "icon": "spell_holy_blindingheal", "index": 100}]}, {"id": 93189, "name": "Afterimage / Healing Hands", "type": "choice", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [103860, 81630], "prev": [81507, 103859, 81602], "entries": [{"id": 115482, "definitionId": 120494, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}, {"id": 115481, "definitionId": 120493, "maxRanks": 1, "type": "passive", "name": "Healing Hands", "spellId": 326734, "icon": "ability_paladin_infusionoflight", "index": 200}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [103857, 81605, 81631], "prev": [81602, 81598, 81600], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 103854, "name": "Light's Countenance", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [81598], "entries": [{"id": 128247, "definitionId": 133054, "maxRanks": 1, "type": "passive", "name": "Light's Countenance", "spellId": 469325, "icon": "inv_shoulder_raidpaladindragon_d_01", "index": 100}]}, {"id": 81603, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 93009], "prev": [81510, 81598], "entries": [{"id": 102590, "definitionId": 107595, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231663, "icon": "spell_holy_righteousfury", "index": 0}], "freeNode": true}, {"id": 103855, "name": "Wrench Evil / Stand Against Evil", "type": "choice", "posX": 6600, "posY": 2700, "maxRanks": 1, "next": [81604], "prev": [93010], "entries": [{"id": 128250, "definitionId": 133057, "maxRanks": 1, "type": "passive", "name": "Wrench Evil", "spellId": 460720, "icon": "ability_paladin_turnevil", "index": 100}, {"id": 128249, "definitionId": 133056, "maxRanks": 1, "type": "passive", "name": "Stand Against Evil", "spellId": 469317, "icon": "spell_holy_excorcism", "index": 200}]}, {"id": 103860, "name": "Holy Reprieve", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81630, 93168], "prev": [93189, 103858], "entries": [{"id": 128256, "definitionId": 133063, "maxRanks": 1, "type": "passive", "name": "Holy Reprieve", "spellId": 469445, "icon": "spell_holy_sealofsalvation", "index": 100}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81630, 81496, 81614], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 103857, "name": "Divine Spurs", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [], "prev": [81632], "entries": [{"id": 128253, "definitionId": 133060, "maxRanks": 1, "type": "passive", "name": "Divine Spurs", "spellId": 469409, "icon": "ability_mount_charger", "index": 100}]}, {"id": 81631, "name": "Steed of Liberty / Blessing of Freedom", "type": "choice", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81496, 93174, 93009], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Steed of Liberty", "spellId": 469304, "icon": "spell_holy_crusaderaura", "index": 200}, {"id": 128251, "definitionId": 133058, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 300}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93009, 93165], "prev": [81603, 103855], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93168, 81614, 81609], "prev": [93189, 103860, 81605], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93181, 81614, 81616], "prev": [81631, 81605], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "inv_ability_paladin_divinetoll", "index": 100}]}, {"id": 93174, "name": "Unbound Freedom", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616], "prev": [81631], "entries": [{"id": 115454, "definitionId": 120466, "maxRanks": 1, "type": "passive", "name": "Unbound Freedom", "spellId": 305394, "icon": "spell_holy_sealofvalor", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81543, 81616, 81615], "prev": [81603, 81604, 81631], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81543], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 93168, "name": "Divine Reach", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81609, 93008], "prev": [103860, 81630], "entries": [{"id": 115447, "definitionId": 120459, "maxRanks": 1, "type": "passive", "name": "Divine Reach", "spellId": 469476, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81609, 81618], "prev": [81605, 81630, 81496], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 93181, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 115468, "definitionId": 120480, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 384027, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115467, "definitionId": 120479, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81617, 81618, 81615], "prev": [93174, 81496, 93009], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Consecrated Ground", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81608], "prev": [93165, 93009], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Consecrated Ground", "spellId": 204054, "icon": "ability_paladin_righteousvengeance", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93008, 103867], "prev": [81630, 93168, 81614], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 1, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103867, 103865, 103866], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 81618, "name": "Sacred Strength / Divine Purpose", "type": "choice", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103866, 103868], "prev": [81616, 81614], "entries": [{"id": 102608, "definitionId": 107613, "maxRanks": 1, "type": "passive", "name": "Sacred Strength", "spellId": 469337, "icon": "spell_holy_righteousnessaura", "index": 100}, {"id": 128243, "definitionId": 133050, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 408459, "icon": "spell_holy_divinepurpose", "index": 200}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103868, 103864], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103864, 81608], "prev": [93009, 81543, 81616], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 93008, "name": "Lightforged Blessing", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495], "prev": [93168, 81609], "entries": [{"id": 115239, "definitionId": 120251, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 403479, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 103867, "name": "Lead the Charge", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495, 103862, 81621], "prev": [81609, 81607], "entries": [{"id": 128263, "definitionId": 133070, "maxRanks": 1, "type": "passive", "name": "Lead the Charge", "spellId": 469780, "icon": "inv_helm_plate_raidpaladin_r_01mythic", "index": 100}]}, {"id": 103865, "name": "Worthy Sacrifice / Righteous Protection", "type": "choice", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621], "prev": [81607], "entries": [{"id": 128261, "definitionId": 133068, "maxRanks": 1, "type": "passive", "name": "Worthy Sacrifice", "spellId": 469279, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 128248, "definitionId": 133055, "maxRanks": 1, "type": "passive", "name": "Righteous Protection", "spellId": 469321, "icon": "spell_holy_blessingofprotection", "index": 200}]}, {"id": 103866, "name": "Holy Ritual", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621, 93683, 103849], "prev": [81618, 81607], "entries": [{"id": 128262, "definitionId": 133069, "maxRanks": 1, "type": "passive", "name": "Holy Ritual", "spellId": 199422, "icon": "inv_relics_libramoftruth", "index": 100}]}, {"id": 103868, "name": "Blessed Calling", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [103849], "prev": [81617, 81618], "entries": [{"id": 128264, "definitionId": 133071, "maxRanks": 1, "type": "passive", "name": "Blessed Calling", "spellId": 469770, "icon": "ability_paladin_judgementofthepure", "index": 100}]}, {"id": 103864, "name": "Inspired Guard", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [103849, 81628, 103856], "prev": [81617, 81615], "entries": [{"id": 128260, "definitionId": 133067, "maxRanks": 1, "type": "passive", "name": "Inspired Guard", "spellId": 469439, "icon": "spell_holy_divineprotection", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [103856], "prev": [81615, 81543], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81624], "prev": [93008, 103867], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 103862, "name": "Stoicism", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81624], "prev": [103867], "entries": [{"id": 128258, "definitionId": 133065, "maxRanks": 1, "type": "passive", "name": "Stoicism", "spellId": 469316, "icon": "spell_magic_magearmor", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81624, 103861], "prev": [103866, 103865, 103867], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 93683, "name": "Seal of the Crusader", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103861], "prev": [103866], "entries": [{"id": 116064, "definitionId": 121076, "maxRanks": 1, "type": "passive", "name": "Seal of the Crusader", "spellId": 416770, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 103849, "name": "Vengeful Wrath", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [103861, 103863], "prev": [103866, 103868, 103864], "entries": [{"id": 128239, "definitionId": 133046, "maxRanks": 2, "type": "passive", "name": "Vengeful Wrath", "spellId": 406835, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81628, "name": "Eye for an Eye", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Eye for an Eye", "spellId": 469309, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 103856, "name": "Golden Path / Selfless Healer", "type": "choice", "posX": 6600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864, 81608], "entries": [{"id": 128252, "definitionId": 133059, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}, {"id": 128309, "definitionId": 133116, "maxRanks": 1, "type": "passive", "name": "Selfless Healer", "spellId": 469434, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 81624, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81621, 81495, 103862], "entries": [{"id": 102615, "definitionId": 107620, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 385125, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 103861, "name": "Lightbearer", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103849, 81621, 93683], "entries": [{"id": 128257, "definitionId": 133064, "maxRanks": 1, "type": "passive", "name": "Lightbearer", "spellId": 469416, "icon": "spell_paladin_clarityofpurpose", "index": 100}]}, {"id": 103863, "name": "Light's Revocation", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103849, 103856, 81628], "entries": [{"id": 128259, "definitionId": 133066, "maxRanks": 1, "type": "passive", "name": "Light's Revocation", "spellId": 146956, "icon": "spell_holy_divineshield", "index": 100}]}], "specNodes": [{"id": 81526, "name": "Blade of Justice", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81527], "prev": [], "entries": [{"id": 102498, "definitionId": 107503, "maxRanks": 1, "type": "active", "name": "Blade of Justice", "spellId": 184575, "icon": "ability_paladin_bladeofjustice", "index": 100}]}, {"id": 81527, "name": "Divine Storm", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [81521, 92689, 93161, 92838], "prev": [81526], "entries": [{"id": 102499, "definitionId": 107504, "maxRanks": 1, "type": "active", "name": "Divine Storm", "spellId": 53385, "icon": "ability_paladin_divinestorm", "index": 100}]}, {"id": 81521, "name": "Swift Justice / Light of Justice", "type": "choice", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [81532, 81531], "prev": [81527], "entries": [{"id": 102491, "definitionId": 107496, "maxRanks": 1, "type": "passive", "name": "Swift Justice", "spellId": 383228, "icon": "ability_paladin_judgementofthepure", "index": 100}, {"id": 114828, "definitionId": 119835, "maxRanks": 1, "type": "passive", "name": "Light of Justice", "spellId": 404436, "icon": "inv_offhand_1h_ulduarraid_d_01", "index": 200}]}, {"id": 92689, "name": "Expurgation", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [81531], "prev": [81527], "entries": [{"id": 114830, "definitionId": 119837, "maxRanks": 1, "type": "passive", "name": "Expurgation", "spellId": 383344, "icon": "ability_paladin_bladeofjusticeblue", "index": 100}]}, {"id": 93161, "name": "Judgment of Justice", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [81531], "prev": [81527], "entries": [{"id": 115440, "definitionId": 120452, "maxRanks": 1, "type": "passive", "name": "Judgment of Justice", "spellId": 403495, "icon": "ability_paladin_judgementblue", "index": 100}]}, {"id": 92838, "name": "Improved Blade of Justice / Holy Blade", "type": "choice", "posX": 15000, "posY": 2700, "maxRanks": 1, "next": [81531, 81523], "prev": [81527], "entries": [{"id": 115023, "definitionId": 120030, "maxRanks": 1, "type": "passive", "name": "Improved Blade of Justice", "spellId": 403745, "icon": "ability_paladin_bladeofjustice", "index": 100}, {"id": 115022, "definitionId": 120029, "maxRanks": 1, "type": "passive", "name": "Holy Blade", "spellId": 383342, "icon": "ability_paladin_lightoftheprotector", "index": 200}]}, {"id": 81532, "name": "Final Verdict / Justicar's Vengeance", "type": "choice", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [81542, 92951, 81533], "prev": [81521], "entries": [{"id": 102504, "definitionId": 107509, "maxRanks": 1, "type": "active", "name": "Final Verdict", "spellId": 383328, "icon": "spell_paladin_templarsverdict", "index": 0}, {"id": 114831, "definitionId": 119838, "maxRanks": 1, "type": "active", "name": "Justicar's Vengeance", "spellId": 215661, "icon": "spell_holy_retributionaura", "index": 100}]}, {"id": 81531, "name": "Light's Celerity / Guided Prayer", "type": "choice", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [92688, 92951, 81544], "prev": [81521, 92838, 93161, 92689], "entries": [{"id": 102503, "definitionId": 107508, "maxRanks": 1, "type": "passive", "name": "Light's Celerity", "spellId": 403698, "icon": "spell_holy_flashheal", "index": 100}, {"id": 115020, "definitionId": 120027, "maxRanks": 1, "type": "passive", "name": "Guided Prayer", "spellId": 404357, "icon": "ability_crown_of_the_heavens_icon", "index": 200}]}, {"id": 81523, "name": "Righteous Cause / Art of War", "type": "choice", "posX": 15000, "posY": 3300, "maxRanks": 1, "next": [92688, 81512, 92952], "prev": [92838], "entries": [{"id": 102494, "definitionId": 107499, "maxRanks": 1, "type": "passive", "name": "Righteous Cause", "spellId": 402912, "icon": "inv_sword_133", "index": 100}, {"id": 102493, "definitionId": 107498, "maxRanks": 1, "type": "passive", "name": "Art of War", "spellId": 406064, "icon": "ability_paladin_artofwar", "index": 200}]}, {"id": 81542, "name": "Jurisdiction", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81533, 93173], "prev": [81532], "entries": [{"id": 102516, "definitionId": 107521, "maxRanks": 1, "type": "passive", "name": "Jurisdiction", "spellId": 402971, "icon": "ability_paladin_longarmofthelaw", "index": 100}]}, {"id": 92951, "name": "Inquisitor's Ire / Tempest of the Lightbringer", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81533, 81534], "prev": [81531, 81532], "entries": [{"id": 115164, "definitionId": 120171, "maxRanks": 1, "type": "passive", "name": "Inquisitor's Ire", "spellId": 403975, "icon": "inv_helmet_plate_raidpaladin_j_01", "index": 100}, {"id": 115452, "definitionId": 120464, "maxRanks": 1, "type": "passive", "name": "Tempest of the Lightbringer", "spellId": 383396, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 200}]}, {"id": 81544, "name": "Avenging Wrath / Crusade", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93186, 93160, 81516], "prev": [81531], "entries": [{"id": 102519, "definitionId": 107524, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 31884, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 0}, {"id": 125129, "definitionId": 129961, "maxRanks": 1, "type": "active", "name": "Crusade", "spellId": 231895, "icon": "ability_paladin_sanctifiedwrath", "index": 100}]}, {"id": 92688, "name": "Vanguard's Momentum / Sanctify", "type": "choice", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81545, 81541], "prev": [81531, 81523], "entries": [{"id": 114826, "definitionId": 119833, "maxRanks": 1, "type": "passive", "name": "Vanguard's Momentum", "spellId": 383314, "icon": "ability_paladin_speedoflight", "index": 100}, {"id": 115488, "definitionId": 120500, "maxRanks": 1, "type": "passive", "name": "Sanctify", "spellId": 382536, "icon": "achievement_zone_firelands", "index": 200}]}, {"id": 92952, "name": "Zealot's Fervor", "type": "single", "posX": 15000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81545], "prev": [81523], "entries": [{"id": 115165, "definitionId": 120172, "maxRanks": 2, "type": "passive", "name": "Zealot's Fervor", "spellId": 403509, "icon": "spell_holy_weaponmastery", "index": 100}]}, {"id": 81512, "name": "Rush of Light", "type": "single", "posX": 15600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81545, 92860], "prev": [81523], "entries": [{"id": 115475, "definitionId": 120487, "maxRanks": 1, "type": "passive", "name": "Rush of Light", "spellId": 407067, "icon": "spell_holy_borrowedtime", "index": 200}]}, {"id": 81533, "name": "Improved Judgment / Boundless Judgment", "type": "choice", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93173, 93190, 81534], "prev": [81542, 92951, 81532], "entries": [{"id": 102505, "definitionId": 107510, "maxRanks": 1, "type": "passive", "name": "Improved Judgment", "spellId": 405461, "icon": "spell_holy_righteousfury", "index": 100}, {"id": 115021, "definitionId": 120028, "maxRanks": 1, "type": "passive", "name": "Boundless Judgment", "spellId": 405278, "icon": "ability_paladin_judgementofthewise", "index": 200}]}, {"id": 93186, "name": "Crusading Strikes / Templar Strikes", "type": "choice", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81534, 81525], "prev": [81544], "entries": [{"id": 115474, "definitionId": 120486, "maxRanks": 1, "type": "passive", "name": "Crusading Strikes", "spellId": 404542, "icon": "inv_sword_08", "index": 100}, {"id": 115473, "definitionId": 120485, "maxRanks": 1, "type": "active", "name": "Templar Strikes", "spellId": 406646, "icon": "inv_sword_2h_artifactashbringer_d_01", "index": 200}]}, {"id": 93160, "name": "Divine Wrath", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81525], "prev": [81544], "entries": [{"id": 115439, "definitionId": 120451, "maxRanks": 1, "type": "passive", "name": "Divine Wrath", "spellId": 406872, "icon": "spell_holy_greaterblessingofkings", "index": 100}]}, {"id": 81516, "name": "Divine Hammer", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81541, 81525], "prev": [81544], "entries": [{"id": 115016, "definitionId": 120023, "maxRanks": 1, "type": "active", "name": "Divine Hammer", "spellId": 198034, "icon": "classicon_paladin", "index": 200}]}, {"id": 81545, "name": "Blade of Vengeance / Holy Flames", "type": "choice", "posX": 15000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81541, 92860, 92839], "prev": [92952, 81512, 92688], "entries": [{"id": 102521, "definitionId": 107526, "maxRanks": 1, "type": "passive", "name": "Blade of Vengeance", "spellId": 403826, "icon": "ability_paladin_bladeofjustice", "index": 100}, {"id": 115438, "definitionId": 120450, "maxRanks": 1, "type": "passive", "name": "Holy Flames", "spellId": 406545, "icon": "ability_warlock_inferno", "index": 200}]}, {"id": 93173, "name": "Empyrean Legacy", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537], "prev": [81542, 81533], "entries": [{"id": 115453, "definitionId": 120465, "maxRanks": 1, "type": "passive", "name": "Empyrean Legacy", "spellId": 387170, "icon": "item_holyspark", "index": 100}]}, {"id": 93190, "name": "Heart of the Crusader", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [81537], "prev": [81533], "entries": [{"id": 115483, "definitionId": 120495, "maxRanks": 2, "type": "passive", "name": "Heart of the Crusader", "spellId": 406154, "icon": "spell_brokenheart", "index": 100}]}, {"id": 81534, "name": "Highlord's Wrath", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537], "prev": [93186, 92951, 81533], "entries": [{"id": 102506, "definitionId": 107511, "maxRanks": 1, "type": "passive", "name": "Highlord's Wrath", "spellId": 404512, "icon": "ability_paladin_judgementred", "index": 100}]}, {"id": 81525, "name": "Wake of Ashes", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537, 81550, 92839], "prev": [93160, 81516, 93186], "entries": [{"id": 102497, "definitionId": 107502, "maxRanks": 1, "type": "active", "name": "Wake of Ashes", "spellId": 255937, "icon": "inv_sword_2h_artifactashbringerfire_d_03", "index": 100}]}, {"id": 81541, "name": "Blessed Champion", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [92839], "prev": [81545, 81516, 92688], "entries": [{"id": 102515, "definitionId": 107520, "maxRanks": 1, "type": "passive", "name": "Blessed Champion", "spellId": 403010, "icon": "achievement_bg_trueavshutout", "index": 0}]}, {"id": 92860, "name": "Empyrean Power / Judge, Jury and Executioner", "type": "choice", "posX": 15600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [92839], "prev": [81512, 81545], "entries": [{"id": 115051, "definitionId": 120058, "maxRanks": 1, "type": "passive", "name": "Empyrean Power", "spellId": 326732, "icon": "ability_paladin_sheathoflight", "index": 100}, {"id": 115477, "definitionId": 120489, "maxRanks": 1, "type": "passive", "name": "Judge, Jury and Executioner", "spellId": 405607, "icon": "spell_paladin_inquisition", "index": 200}]}, {"id": 81537, "name": "Adjudication", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93164], "prev": [81525, 93173, 93190, 81534], "entries": [{"id": 102511, "definitionId": 107516, "maxRanks": 1, "type": "passive", "name": "Adjudication", "spellId": 406157, "icon": "spell_holy_vindication", "index": 100}]}, {"id": 81550, "name": "Aegis of Protection / Shield of Vengeance", "type": "choice", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81539, 92854], "prev": [81525], "entries": [{"id": 102526, "definitionId": 107531, "maxRanks": 1, "type": "passive", "name": "Aegis of Protection", "spellId": 403654, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 125130, "definitionId": 129962, "maxRanks": 1, "type": "passive", "name": "Shield of Vengeance", "spellId": 184662, "icon": "ability_paladin_shieldofthetemplar", "index": 200}]}, {"id": 92839, "name": "Penitence", "type": "single", "posX": 15000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81536], "prev": [81545, 92860, 81541, 81525], "entries": [{"id": 115024, "definitionId": 120031, "maxRanks": 1, "type": "passive", "name": "Penitence", "spellId": 403026, "icon": "ability_paladin_lightofthemartyr", "index": 100}]}, {"id": 93164, "name": "Blades of Light", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81540], "prev": [81537], "entries": [{"id": 115443, "definitionId": 120455, "maxRanks": 1, "type": "passive", "name": "Blades of Light", "spellId": 403664, "icon": "achievement_arena_3v3_7", "index": 100}]}, {"id": 81539, "name": "Final Reckoning / Execution Sentence", "type": "choice", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81548, 81538], "prev": [81550], "entries": [{"id": 102513, "definitionId": 107518, "maxRanks": 1, "type": "active", "name": "Final Reckoning", "spellId": 343721, "icon": "spell_holy_blessedresillience", "index": 100}, {"id": 115435, "definitionId": 120447, "maxRanks": 1, "type": "active", "name": "Execution Sentence", "spellId": 343527, "icon": "spell_paladin_executionsentence", "index": 200}]}, {"id": 92854, "name": "Seething Flames", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81549, 92686], "prev": [81550], "entries": [{"id": 115043, "definitionId": 120050, "maxRanks": 1, "type": "passive", "name": "Seething Flames", "spellId": 405355, "icon": "ability_mage_flamecannon", "index": 100}]}, {"id": 81536, "name": "Burning Crusade", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81552], "prev": [92839], "entries": [{"id": 102510, "definitionId": 107515, "maxRanks": 1, "type": "passive", "name": "Burning Crusade", "spellId": 405289, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 81540, "name": "Divine Arbiter", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93164], "entries": [{"id": 102514, "definitionId": 107519, "maxRanks": 1, "type": "passive", "name": "Divine Arbiter", "spellId": 404306, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 81548, "name": "Executioner's Will", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81539], "entries": [{"id": 102524, "definitionId": 107529, "maxRanks": 1, "type": "passive", "name": "Executioner's Will", "spellId": 406940, "icon": "inv_helm_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 81538, "name": "Divine Auxiliary", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81539], "entries": [{"id": 102512, "definitionId": 107517, "maxRanks": 1, "type": "passive", "name": "Divine Auxiliary", "spellId": 406158, "icon": "inv_polearm_2h_odynspear_d_02", "index": 100}]}, {"id": 81549, "name": "Radiant Glory", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92854], "entries": [{"id": 102525, "definitionId": 107530, "maxRanks": 1, "type": "passive", "name": "Radiant Glory", "spellId": 458359, "icon": "achievement_dungeon_gloryoftheraider", "index": 0}]}, {"id": 92686, "name": "Burn to Ash", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92854], "entries": [{"id": 114824, "definitionId": 119831, "maxRanks": 1, "type": "passive", "name": "Burn to Ash", "spellId": 446663, "icon": "spell_burningsoul", "index": 0}]}, {"id": 81552, "name": "Searing Light", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81536], "entries": [{"id": 102530, "definitionId": 107535, "maxRanks": 1, "type": "passive", "name": "Searing Light", "spellId": 404540, "icon": "spell_fire_felflamering_red", "index": 200}]}], "heroNodes": [{"id": 95180, "name": "Light's Guidance", "type": "single", "posX": 15900, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 48, "requiresNode": 81497, "next": [95187, 95183, 95177], "prev": [], "entries": [{"id": 117813, "definitionId": 122825, "maxRanks": 1, "type": "passive", "name": "Light's Guidance", "spellId": 427445, "icon": "ability_paladin_longarmofthelaw", "index": 100}], "freeNode": true}, {"id": 95099, "name": "Dawnlight", "type": "single", "posX": 8700, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 50, "requiresNode": 81577, "next": [95073, 95095, 95080], "prev": [], "entries": [{"id": 117696, "definitionId": 122708, "maxRanks": 1, "type": "passive", "name": "Dawnlight", "spellId": 431377, "icon": "inv_ability_heraldofthesunpaladin_dawnlight", "index": 100}], "freeNode": true}, {"id": 95183, "name": "Zealous Vindication / For Whom the Bell Tolls", "type": "choice", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95179], "prev": [95180], "entries": [{"id": 117816, "definitionId": 122828, "maxRanks": 1, "type": "passive", "name": "Zealous Vindication", "spellId": 431463, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 117859, "definitionId": 122871, "maxRanks": 1, "type": "passive", "name": "For Whom the Bell Tolls", "spellId": 432929, "icon": "ability_paladin_hammeroftherighteous", "index": 200}]}, {"id": 95187, "name": "Shake the Heavens", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95178], "prev": [95180], "entries": [{"id": 117823, "definitionId": 122835, "maxRanks": 1, "type": "passive", "name": "Shake the Heavens", "spellId": 431533, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 95177, "name": "Wrathful Descent", "type": "single", "posX": 16500, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95181], "prev": [95180], "entries": [{"id": 117810, "definitionId": 122822, "maxRanks": 1, "type": "passive", "name": "Wrathful Descent", "spellId": 431551, "icon": "ability_paladin_intercession", "index": 100}]}, {"id": 95073, "name": "Morning Star / Gleaming Rays", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95098], "prev": [95099], "entries": [{"id": 117670, "definitionId": 122682, "maxRanks": 1, "type": "passive", "name": "Morning Star", "spellId": 431482, "icon": "spell_holy_persecution", "index": 100}, {"id": 117778, "definitionId": 122790, "maxRanks": 1, "type": "passive", "name": "Gleaming Rays", "spellId": 431480, "icon": "spell_priest_power_word", "index": 200}]}, {"id": 95095, "name": "Eternal Flame", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95071], "prev": [95099], "entries": [{"id": 117692, "definitionId": 122704, "maxRanks": 1, "type": "active", "name": "Eternal Flame", "spellId": 156322, "icon": "inv_torch_thrown", "index": 100}]}, {"id": 95080, "name": "Luminosity", "type": "single", "posX": 9300, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95072], "prev": [95099], "entries": [{"id": 117677, "definitionId": 122689, "maxRanks": 1, "type": "passive", "name": "Luminosity", "spellId": 431402, "icon": "inv_qirajidol_sun", "index": 100}]}, {"id": 95179, "name": "Sacrosanct Crusade", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95185], "prev": [95183], "entries": [{"id": 117812, "definitionId": 122824, "maxRanks": 1, "type": "passive", "name": "Sacrosanct Crusade", "spellId": 431730, "icon": "inv_plate_raidpaladinprimalist_d_01_cape", "index": 100}]}, {"id": 95178, "name": "Higher Calling", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95184], "prev": [95187], "entries": [{"id": 117811, "definitionId": 122823, "maxRanks": 1, "type": "passive", "name": "Higher Calling", "spellId": 431687, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 95181, "name": "Bonds of Fellowship / Unrelenting Charger", "type": "choice", "posX": 16500, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95186], "prev": [95177], "entries": [{"id": 117814, "definitionId": 122826, "maxRanks": 1, "type": "passive", "name": "Bonds of Fellowship", "spellId": 432992, "icon": "spell_holy_crusade", "index": 100}, {"id": 117858, "definitionId": 122870, "maxRanks": 1, "type": "passive", "name": "Unrelenting Charger", "spellId": 432990, "icon": "ability_mount_mawhorsespikes_yellow", "index": 200}]}, {"id": 95098, "name": "Illumine / Will of the Dawn", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95069], "prev": [95073], "entries": [{"id": 117695, "definitionId": 122707, "maxRanks": 1, "type": "passive", "name": "Illumine", "spellId": 431423, "icon": "spell_holy_divineillumination", "index": 100}, {"id": 117777, "definitionId": 122789, "maxRanks": 1, "type": "passive", "name": "Will of the Dawn", "spellId": 431406, "icon": "spell_holy_divineprovidence", "index": 200}]}, {"id": 95071, "name": "Blessing of An'she / Lingering Radiance", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95094], "prev": [95095], "entries": [{"id": 117668, "definitionId": 122680, "maxRanks": 1, "type": "passive", "name": "Blessing of An'she", "spellId": 445200, "icon": "inv_ability_holyfire_orb", "index": 100}, {"id": 117779, "definitionId": 122791, "maxRanks": 1, "type": "passive", "name": "Lingering Radiance", "spellId": 431407, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 95072, "name": "Sun Sear", "type": "single", "posX": 9300, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95086], "prev": [95080], "entries": [{"id": 117669, "definitionId": 122681, "maxRanks": 1, "type": "passive", "name": "Sun Sear", "spellId": 431413, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 95185, "name": "Endless Wrath / Sanctification", "type": "choice", "posX": 15290, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95179], "entries": [{"id": 117820, "definitionId": 122832, "maxRanks": 1, "type": "passive", "name": "Endless Wrath", "spellId": 432615, "icon": "spell_holy_divinepurpose", "index": 100}, {"id": 117819, "definitionId": 122831, "maxRanks": 1, "type": "passive", "name": "Sanctification", "spellId": 432977, "icon": "ability_paladin_blessedhands", "index": 200}]}, {"id": 95184, "name": "Hammerfall", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95178], "entries": [{"id": 117818, "definitionId": 122830, "maxRanks": 1, "type": "passive", "name": "Hammerfall", "spellId": 432463, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 95186, "name": "Undisputed Ruling", "type": "single", "posX": 16500, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95182], "prev": [95181], "entries": [{"id": 117822, "definitionId": 122834, "maxRanks": 1, "type": "passive", "name": "Undisputed Ruling", "spellId": 432626, "icon": "spell_holy_righteousfury", "index": 100}]}, {"id": 95069, "name": "Aurora", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81577, "next": [95105], "prev": [95098], "entries": [{"id": 117666, "definitionId": 122678, "maxRanks": 1, "type": "passive", "name": "Aurora", "spellId": 439760, "icon": "spell_holy_rune", "index": 100}]}, {"id": 95094, "name": "Solar Grace", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95105], "prev": [95071], "entries": [{"id": 117691, "definitionId": 122703, "maxRanks": 1, "type": "passive", "name": "Solar Grace", "spellId": 431404, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 100}]}, {"id": 95086, "name": "Second Sunrise", "type": "single", "posX": 9300, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "next": [95105], "prev": [95072], "entries": [{"id": 117683, "definitionId": 122695, "maxRanks": 1, "type": "passive", "name": "Second Sunrise", "spellId": 431474, "icon": "ability_priest_halo", "index": 100}]}, {"id": 95182, "name": "Light's Deliverance", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [], "prev": [95184, 95185, 95186], "entries": [{"id": 117815, "definitionId": 122827, "maxRanks": 1, "type": "passive", "name": "Light's Deliverance", "spellId": 425518, "icon": "inv_glove_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 95105, "name": "Sun's Avatar", "type": "single", "posX": 8700, "posY": 3600, "maxRanks": 1, "subTreeId": 50, "next": [], "prev": [95094, 95069, 95086], "entries": [{"id": 117702, "definitionId": 122714, "maxRanks": 1, "type": "passive", "name": "Sun's Avatar", "spellId": 431425, "icon": "ability_paladin_holyavenger", "index": 100}]}], "subTreeNodes": [{"id": 99837, "name": "Herald of the Sun / Templar", "type": "subtree", "posX": 9600, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123360, "type": "subtree", "name": "Herald of the Sun", "traitSubTreeId": 50, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-heraldofthesun", "nodes": [95099, 95073, 95095, 95080, 95098, 95071, 95072, 95069, 95094, 95086, 95105]}, {"id": 123357, "type": "subtree", "name": "Templar", "traitSubTreeId": 48, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-templar", "nodes": [95180, 95183, 95187, 95177, 95179, 95178, 95181, 95185, 95184, 95186, 95182]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81600, 81602, 81603, 81604, 81605, 81607, 81608, 81609, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81621, 81624, 81625, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831, 103849, 103850, 103851, 103852, 103853, 103854, 103855, 103856, 103857, 103858, 103859, 103860, 103861, 103862, 103863, 103864, 103865, 103866, 103867, 103868, 103877]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/priest_discipline.json b/simc_support/game_data/data_files/trees/priest_discipline.json index 1f9b4ed..0bf8fbf 100644 --- a/simc_support/game_data/data_files/trees/priest_discipline.json +++ b/simc_support/game_data/data_files/trees/priest_discipline.json @@ -1 +1 @@ -{"traitTreeId": 795, "className": "Priest", "classId": 5, "specName": "Discipline", "specId": 256, "classNodes": [{"id": 82717, "name": "Renew", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82718, 82714], "prev": [], "entries": [{"id": 103869, "definitionId": 108874, "maxRanks": 1, "type": "active", "name": "Renew", "spellId": 139, "icon": "spell_holy_renew", "index": 100}], "freeNode": true}, {"id": 82715, "name": "Dispel Magic", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82714, 82705, 82695], "prev": [], "entries": [{"id": 103867, "definitionId": 108872, "maxRanks": 1, "type": "active", "name": "Dispel Magic", "spellId": 528, "icon": "spell_nature_nullifydisease", "index": 100}]}, {"id": 82713, "name": "Shadowfiend", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82695, 82712], "prev": [], "entries": [{"id": 103865, "definitionId": 108870, "maxRanks": 1, "type": "active", "name": "Shadowfiend", "spellId": 34433, "icon": "spell_shadow_shadowfiend", "index": 100}], "freeNode": true}, {"id": 82718, "name": "Prayer of Mending", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82719, 82701, 82720], "prev": [82717], "entries": [{"id": 103870, "definitionId": 108875, "maxRanks": 1, "type": "active", "name": "Prayer of Mending", "spellId": 33076, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 82714, "name": "Improved Flash Heal", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82701, 82707, 82703], "prev": [82715, 82717], "entries": [{"id": 103866, "definitionId": 108871, "maxRanks": 1, "type": "passive", "name": "Improved Flash Heal", "spellId": 393870, "icon": "spell_holy_heal", "index": 100}]}, {"id": 82705, "name": "Improved Purify", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [82703], "prev": [82715], "entries": [{"id": 103855, "definitionId": 108860, "maxRanks": 1, "type": "passive", "name": "Improved Purify", "spellId": 390632, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 82695, "name": "Psychic Voice / Petrifying Scream", "type": "choice", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82703, 82556], "prev": [82715, 82713], "entries": [{"id": 103845, "definitionId": 108850, "maxRanks": 1, "type": "passive", "name": "Psychic Voice", "spellId": 196704, "icon": "ability_warrior_commandingshout", "index": 100}, {"id": 114588, "definitionId": 119593, "maxRanks": 1, "type": "passive", "name": "Petrifying Scream", "spellId": 55676, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82712, "name": "Shadow Word: Death", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [82556, 82711], "prev": [82713], "entries": [{"id": 103864, "definitionId": 108869, "maxRanks": 1, "type": "active", "name": "Shadow Word: Death", "spellId": 32379, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82719, "name": "Focused Mending", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82720], "prev": [82718], "entries": [{"id": 103871, "definitionId": 108876, "maxRanks": 1, "type": "passive", "name": "Focused Mending", "spellId": 372354, "icon": "achievement_bg_returnxflags_def_wsg", "index": 100}]}, {"id": 82701, "name": "Holy Nova", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82720, 82700, 82716], "prev": [82714, 82718], "entries": [{"id": 103851, "definitionId": 108856, "maxRanks": 1, "type": "active", "name": "Holy Nova", "spellId": 132157, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82707, "name": "Protective Light / From Darkness Comes Light", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82716], "prev": [82714], "entries": [{"id": 103858, "definitionId": 108863, "maxRanks": 1, "type": "passive", "name": "Protective Light", "spellId": 193063, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 103857, "definitionId": 108862, "maxRanks": 1, "type": "passive", "name": "From Darkness Comes Light", "spellId": 390615, "icon": "spell_holy_flashheal", "index": 200}]}, {"id": 82703, "name": "Angelic Feather", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82716, 82693, 82708], "prev": [82714, 82705, 82695], "entries": [{"id": 103853, "definitionId": 108858, "maxRanks": 1, "type": "active", "name": "Angelic Feather", "spellId": 121536, "icon": "ability_priest_angelicfeather", "index": 0}]}, {"id": 82556, "name": "Phantasm", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82708, 82710], "prev": [82695, 82712], "entries": [{"id": 103834, "definitionId": 108839, "maxRanks": 1, "type": "passive", "name": "Phantasm", "spellId": 108942, "icon": "ability_priest_phantasm", "index": 100}]}, {"id": 82711, "name": "Death and Madness", "type": "single", "posX": 6900, "posY": 2700, "maxRanks": 1, "next": [82710, 82688], "prev": [82712], "entries": [{"id": 103863, "definitionId": 108868, "maxRanks": 1, "type": "passive", "name": "Death and Madness", "spellId": 321291, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82720, "name": "Spell Warding / Blessed Recovery", "type": "choice", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [82721, 82699, 82696], "prev": [82718, 82701, 82719], "entries": [{"id": 103872, "definitionId": 108877, "maxRanks": 1, "type": "passive", "name": "Spell Warding", "spellId": 390667, "icon": "spell_holy_spellwarding", "index": 100}, {"id": 103677, "definitionId": 108682, "maxRanks": 1, "type": "passive", "name": "Blessed Recovery", "spellId": 390767, "icon": "spell_holy_blessedrecovery", "index": 200}]}, {"id": 82700, "name": "Rhapsody", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [82699], "prev": [82701], "entries": [{"id": 103850, "definitionId": 108855, "maxRanks": 1, "type": "passive", "name": "Rhapsody", "spellId": 390622, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82716, "name": "Leap of Faith", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [82699, 82702, 82694], "prev": [82703, 82701, 82707], "entries": [{"id": 103868, "definitionId": 108873, "maxRanks": 1, "type": "active", "name": "Leap of Faith", "spellId": 73325, "icon": "priest_spell_leapoffaith_a", "index": 100}]}, {"id": 82693, "name": "Shackle Undead", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [82694], "prev": [82703], "entries": [{"id": 103843, "definitionId": 108848, "maxRanks": 1, "type": "active", "name": "Shackle Undead", "spellId": 9484, "icon": "spell_nature_slow", "index": 100}]}, {"id": 82708, "name": "Sheer Terror / Void Tendrils", "type": "choice", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [82694, 82691], "prev": [82703, 82556], "entries": [{"id": 103860, "definitionId": 108865, "maxRanks": 1, "type": "passive", "name": "Sheer Terror", "spellId": 390919, "icon": "spell_nzinsanity_fearofdeath", "index": 100}, {"id": 103859, "definitionId": 108864, "maxRanks": 1, "type": "active", "name": "Void Tendrils", "spellId": 108920, "icon": "spell_priest_voidtendrils", "index": 200}]}, {"id": 82710, "name": "Mind Control / Dominate Mind", "type": "choice", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [82691, 82689], "prev": [82556, 82711], "entries": [{"id": 103862, "definitionId": 108867, "maxRanks": 1, "type": "active", "name": "Mind Control", "spellId": 605, "icon": "spell_shadow_shadowworddominate", "index": 100}, {"id": 103678, "definitionId": 108683, "maxRanks": 1, "type": "active", "name": "Dominate Mind", "spellId": 205364, "icon": "spell_priest_void-flay", "index": 200}]}, {"id": 82721, "name": "Words of the Pious", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696], "prev": [82720], "entries": [{"id": 103873, "definitionId": 108878, "maxRanks": 1, "type": "passive", "name": "Words of the Pious", "spellId": 377438, "icon": "ability_priest_clarityofwill", "index": 200}]}, {"id": 82699, "name": "Mass Dispel", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696, 82698, 82706], "prev": [82716, 82720, 82700], "entries": [{"id": 103849, "definitionId": 108854, "maxRanks": 1, "type": "active", "name": "Mass Dispel", "spellId": 32375, "icon": "spell_arcane_massdispel", "index": 100}]}, {"id": 82702, "name": "Move with Grace", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706], "prev": [82716], "entries": [{"id": 103852, "definitionId": 108857, "maxRanks": 1, "type": "passive", "name": "Move with Grace", "spellId": 390620, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82694, "name": "Power Infusion", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706, 82683, 82692], "prev": [82716, 82693, 82708], "entries": [{"id": 103844, "definitionId": 108849, "maxRanks": 1, "type": "active", "name": "Power Infusion", "spellId": 10060, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 82691, "name": "Sanguine Teachings / Vampiric Embrace", "type": "choice", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82692, 82690, 82689], "prev": [82710, 82708], "entries": [{"id": 114735, "definitionId": 108846, "maxRanks": 1, "type": "passive", "name": "Sanguine Teachings", "spellId": 373218, "icon": "inv_archaeology_80_zandalari_sanguinetotem", "index": 100}, {"id": 103841, "definitionId": 119742, "maxRanks": 1, "type": "active", "name": "Vampiric Embrace", "spellId": 15286, "icon": "spell_shadow_unsummonbuilding", "index": 200}]}, {"id": 82688, "name": "Tithe Evasion", "type": "single", "posX": 6900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82689], "prev": [82711], "entries": [{"id": 103838, "definitionId": 108843, "maxRanks": 1, "type": "passive", "name": "Tithe Evasion", "spellId": 373223, "icon": "spell_nzinsanity_bloodthirst", "index": 100}]}, {"id": 82696, "name": "Inspiration", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82721, 82699, 82720], "entries": [{"id": 103846, "definitionId": 108851, "maxRanks": 1, "type": "passive", "name": "Inspiration", "spellId": 390676, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 82698, "name": "Mental Agility", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82699], "entries": [{"id": 103848, "definitionId": 108853, "maxRanks": 1, "type": "passive", "name": "Mental Agility", "spellId": 341167, "icon": "spell_holy_dispelmagic", "index": 100}]}, {"id": 82706, "name": "Body and Soul", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697, 82684], "prev": [82694, 82699, 82702], "entries": [{"id": 103856, "definitionId": 108861, "maxRanks": 1, "type": "passive", "name": "Body and Soul", "spellId": 64129, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82683, "name": "Twins of the Sun Priestess", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684], "prev": [82694], "entries": [{"id": 103832, "definitionId": 108837, "maxRanks": 1, "type": "passive", "name": "Twins of the Sun Priestess", "spellId": 373466, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82692, "name": "Void Shield", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684, 82709], "prev": [82691, 82694], "entries": [{"id": 103842, "definitionId": 108847, "maxRanks": 1, "type": "passive", "name": "Void Shield", "spellId": 280749, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 82690, "name": "San'layn", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82691], "entries": [{"id": 103840, "definitionId": 108845, "maxRanks": 1, "type": "passive", "name": "San'layn", "spellId": 199855, "icon": "achievement_boss_lanathel", "index": 100}]}, {"id": 82689, "name": "Apathy", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82710, 82688, 82691], "entries": [{"id": 103839, "definitionId": 108844, "maxRanks": 1, "type": "passive", "name": "Apathy", "spellId": 390668, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 82697, "name": "Unwavering Will", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82678, 82682], "prev": [82706, 82696, 82698], "entries": [{"id": 103847, "definitionId": 108852, "maxRanks": 2, "type": "passive", "name": "Unwavering Will", "spellId": 373456, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 82684, "name": "Twist of Fate", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82682, 82685], "prev": [82706, 82692, 82683], "entries": [{"id": 103833, "definitionId": 108838, "maxRanks": 2, "type": "passive", "name": "Twist of Fate", "spellId": 390972, "icon": "spell_shadow_mindtwisting", "index": 100}]}, {"id": 82709, "name": "Throes of Pain", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82685, 82687], "prev": [82692, 82690, 82689], "entries": [{"id": 103861, "definitionId": 108866, "maxRanks": 2, "type": "passive", "name": "Throes of Pain", "spellId": 377422, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 82678, "name": "Angel's Mercy / Binding Heals", "type": "choice", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82677, 82679], "prev": [82697], "entries": [{"id": 103825, "definitionId": 108830, "maxRanks": 1, "type": "passive", "name": "Angel's Mercy", "spellId": 238100, "icon": "spell_holy_testoffaith", "index": 100}, {"id": 103824, "definitionId": 108829, "maxRanks": 1, "type": "passive", "name": "Binding Heals", "spellId": 368275, "icon": "spell_holy_blindingheal", "index": 200}]}, {"id": 82682, "name": "Divine Star / Halo", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82679, 82681], "prev": [82697, 82684], "entries": [{"id": 103831, "definitionId": 108836, "maxRanks": 1, "type": "active", "name": "Divine Star", "spellId": 110744, "icon": "spell_priest_divinestar", "index": 200}, {"id": 103830, "definitionId": 108835, "maxRanks": 1, "type": "active", "name": "Halo", "spellId": 120517, "icon": "ability_priest_halo", "index": 300}]}, {"id": 82685, "name": "Translucent Image", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82681, 82686], "prev": [82709, 82684], "entries": [{"id": 103835, "definitionId": 108840, "maxRanks": 1, "type": "passive", "name": "Translucent Image", "spellId": 373446, "icon": "spell_nature_invisibilty", "index": 100}]}, {"id": 82687, "name": "Cauterizing Shadows", "type": "single", "posX": 6300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82686, 82672], "prev": [82709], "entries": [{"id": 103837, "definitionId": 108842, "maxRanks": 1, "type": "passive", "name": "Cauterizing Shadows", "spellId": 459990, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82677, "name": "Surge of Light", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82676], "prev": [82678], "entries": [{"id": 103823, "definitionId": 108828, "maxRanks": 1, "type": "passive", "name": "Surge of Light", "spellId": 109186, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 82679, "name": "Light's Inspiration", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82676, 82675], "prev": [82682, 82678], "entries": [{"id": 103826, "definitionId": 108831, "maxRanks": 2, "type": "passive", "name": "Light's Inspiration", "spellId": 373450, "icon": "spell_holy_restoration", "index": 100}]}, {"id": 82681, "name": "Crystalline Reflection", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82675, 82674], "prev": [82685, 82682], "entries": [{"id": 103829, "definitionId": 108834, "maxRanks": 2, "type": "passive", "name": "Crystalline Reflection", "spellId": 373457, "icon": "ability_priest_reflectiveshield", "index": 100}]}, {"id": 82686, "name": "Improved Fade", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82674, 82673], "prev": [82685, 82687], "entries": [{"id": 103836, "definitionId": 108841, "maxRanks": 2, "type": "passive", "name": "Improved Fade", "spellId": 390670, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 82672, "name": "Manipulation", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82673], "prev": [82687], "entries": [{"id": 103818, "definitionId": 108823, "maxRanks": 1, "type": "passive", "name": "Manipulation", "spellId": 459985, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82676, "name": "Benevolence / Power Word: Life", "type": "choice", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82677, 82679], "entries": [{"id": 115884, "definitionId": 120896, "maxRanks": 1, "type": "passive", "name": "Benevolence", "spellId": 415416, "icon": "ability_priest_spiritoftheredeemer", "index": 100}, {"id": 103822, "definitionId": 108827, "maxRanks": 1, "type": "active", "name": "Power Word: Life", "spellId": 373481, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 82675, "name": "Angelic Bulwark", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82679, 82681], "entries": [{"id": 103821, "definitionId": 108826, "maxRanks": 1, "type": "passive", "name": "Angelic Bulwark", "spellId": 108945, "icon": "ability_priest_angelicbulwark", "index": 100}]}, {"id": 82674, "name": "Essence Devourer / Void Shift", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82681, 82686], "entries": [{"id": 115883, "definitionId": 120895, "maxRanks": 1, "type": "passive", "name": "Essence Devourer", "spellId": 415479, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}, {"id": 103820, "definitionId": 108825, "maxRanks": 1, "type": "active", "name": "Void Shift", "spellId": 108968, "icon": "spell_priest_voidshift", "index": 200}]}, {"id": 82673, "name": "Phantom Reach", "type": "single", "posX": 6300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82672, 82686], "entries": [{"id": 103819, "definitionId": 108824, "maxRanks": 1, "type": "passive", "name": "Phantom Reach", "spellId": 459559, "icon": "spell_shadow_chilltouch", "index": 100}]}], "specNodes": [{"id": 82594, "name": "Atonement", "type": "single", "posX": 12900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82593, 82587, 82595], "prev": [], "entries": [{"id": 103723, "definitionId": 108728, "maxRanks": 1, "type": "passive", "name": "Atonement", "spellId": 81749, "icon": "ability_priest_atonement", "index": 100}]}, {"id": 82593, "name": "Power Word: Radiance", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82592, 92225], "prev": [82594], "entries": [{"id": 103722, "definitionId": 108727, "maxRanks": 1, "type": "active", "name": "Power Word: Radiance", "spellId": 194509, "icon": "spell_priest_power-word", "index": 100}]}, {"id": 82587, "name": "Pain Suppression", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [92225, 82588], "prev": [82594], "entries": [{"id": 103713, "definitionId": 108718, "maxRanks": 1, "type": "active", "name": "Pain Suppression", "spellId": 33206, "icon": "spell_holy_painsupression", "index": 100}]}, {"id": 82595, "name": "Power of the Dark Side", "type": "single", "posX": 13500, "posY": 2100, "maxRanks": 1, "next": [82596, 82579], "prev": [82594], "entries": [{"id": 103724, "definitionId": 108729, "maxRanks": 1, "type": "passive", "name": "Power of the Dark Side", "spellId": 198068, "icon": "inv_artifact_powerofthedarkside", "index": 100}]}, {"id": 82592, "name": "Light's Promise", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82591, 82589], "prev": [82593], "entries": [{"id": 103721, "definitionId": 108726, "maxRanks": 1, "type": "passive", "name": "Light's Promise", "spellId": 322115, "icon": "spell_priest_power-word", "index": 100}]}, {"id": 92225, "name": "Sanctuary", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82589, 82564], "prev": [82587, 82593], "entries": [{"id": 108225, "definitionId": 113230, "maxRanks": 1, "type": "passive", "name": "Sanctuary", "spellId": 231682, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 82588, "name": "Pain Transformation / Protector of the Frail", "type": "choice", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82564], "prev": [82587], "entries": [{"id": 103715, "definitionId": 108720, "maxRanks": 1, "type": "passive", "name": "Pain Transformation", "spellId": 372991, "icon": "spell_holy_blessedrecovery", "index": 200}, {"id": 103714, "definitionId": 108719, "maxRanks": 1, "type": "passive", "name": "Protector of the Frail", "spellId": 373035, "icon": "ability_racial_forceshield", "index": 300}]}, {"id": 82596, "name": "Dark Indulgence", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82564, 82597], "prev": [82595], "entries": [{"id": 103725, "definitionId": 108730, "maxRanks": 1, "type": "passive", "name": "Dark Indulgence", "spellId": 372972, "icon": "spell_shadow_unholyfrenzy", "index": 100}]}, {"id": 82579, "name": "Schism", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [82597, 82580, 82581], "prev": [82595], "entries": [{"id": 103704, "definitionId": 108709, "maxRanks": 1, "type": "passive", "name": "Schism", "spellId": 424509, "icon": "spell_warlock_focusshadow", "index": 100}]}, {"id": 82591, "name": "Bright Pupil / Enduring Luminescence", "type": "choice", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82590], "prev": [82592], "entries": [{"id": 103720, "definitionId": 108725, "maxRanks": 1, "type": "passive", "name": "Bright Pupil", "spellId": 390684, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 103719, "definitionId": 108724, "maxRanks": 1, "type": "passive", "name": "Enduring Luminescence", "spellId": 390685, "icon": "ability_priest_holybolts01", "index": 200}]}, {"id": 82589, "name": "Shield Discipline", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82590, 82598], "prev": [82592, 92225], "entries": [{"id": 103717, "definitionId": 108722, "maxRanks": 1, "type": "passive", "name": "Shield Discipline", "spellId": 197045, "icon": "spell_holy_divineprotection", "index": 200}]}, {"id": 82564, "name": "Luminous Barrier / Power Word: Barrier", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82598], "prev": [82596, 92225, 82588], "entries": [{"id": 116182, "definitionId": 121194, "maxRanks": 1, "type": "active", "name": "Luminous Barrier", "spellId": 271466, "icon": "spell_priest_burningwill", "index": 100}, {"id": 103687, "definitionId": 108692, "maxRanks": 1, "type": "active", "name": "Power Word: Barrier", "spellId": 62618, "icon": "spell_holy_powerwordbarrier", "index": 200}]}, {"id": 82597, "name": "Painful Punishment", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82598, 82581], "prev": [82579, 82596], "entries": [{"id": 103726, "definitionId": 108731, "maxRanks": 1, "type": "passive", "name": "Painful Punishment", "spellId": 390686, "icon": "ability_priest_clarityofpower", "index": 100}]}, {"id": 82580, "name": "Malicious Intent", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "next": [82581], "prev": [82579], "entries": [{"id": 103705, "definitionId": 108710, "maxRanks": 1, "type": "passive", "name": "Malicious Intent", "spellId": 372969, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 82590, "name": "Purge the Wicked", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82566, 82599], "prev": [82589, 82591], "entries": [{"id": 103718, "definitionId": 108723, "maxRanks": 1, "type": "active", "name": "Purge the Wicked", "spellId": 204197, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82598, "name": "Rapture", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82599, 82576, 82578], "prev": [82589, 82564, 82597], "entries": [{"id": 103727, "definitionId": 108732, "maxRanks": 1, "type": "active", "name": "Rapture", "spellId": 47536, "icon": "spell_holy_rapture", "index": 100}]}, {"id": 82581, "name": "Shadow Covenant", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82578, 82582], "prev": [82597, 82579, 82580], "entries": [{"id": 103706, "definitionId": 108711, "maxRanks": 1, "type": "passive", "name": "Shadow Covenant", "spellId": 314867, "icon": "spell_shadow_summonvoidwalker", "index": 100}]}, {"id": 82566, "name": "Revel in Purity", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82600, 82601], "prev": [82590], "entries": [{"id": 103690, "definitionId": 108695, "maxRanks": 1, "type": "passive", "name": "Revel in Purity", "spellId": 373003, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82599, "name": "Contrition", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82600, 82577], "prev": [82590, 82598], "entries": [{"id": 103728, "definitionId": 108733, "maxRanks": 1, "type": "passive", "name": "Contrition", "spellId": 197419, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82576, "name": "Exaltation / Indemnity", "type": "choice", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82577], "prev": [82598], "entries": [{"id": 103701, "definitionId": 108706, "maxRanks": 1, "type": "passive", "name": "Exaltation", "spellId": 373042, "icon": "spell_holy_spiritualguidence", "index": 200}, {"id": 108226, "definitionId": 113231, "maxRanks": 1, "type": "passive", "name": "Indemnity", "spellId": 373049, "icon": "ability_priest_clarityofwill", "index": 300}]}, {"id": 82578, "name": "Pain and Suffering", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [82577, 82583], "prev": [82598, 82581], "entries": [{"id": 103703, "definitionId": 108708, "maxRanks": 2, "type": "passive", "name": "Pain and Suffering", "spellId": 390689, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82582, "name": "Twilight Corruption", "type": "single", "posX": 14700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82583, 82570], "prev": [82581], "entries": [{"id": 103708, "definitionId": 108713, "maxRanks": 1, "type": "passive", "name": "Twilight Corruption", "spellId": 373065, "icon": "spell_fire_twilightimmolation", "index": 100}]}, {"id": 82600, "name": "Borrowed Time", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82601, 82575], "prev": [82566, 82599], "entries": [{"id": 103729, "definitionId": 108734, "maxRanks": 2, "type": "passive", "name": "Borrowed Time", "spellId": 390691, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 82577, "name": "Castigation", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82575, 82567], "prev": [82576, 82599, 82578], "entries": [{"id": 103702, "definitionId": 108707, "maxRanks": 1, "type": "passive", "name": "Castigation", "spellId": 193134, "icon": "spell_holy_searinglightpriest", "index": 100}]}, {"id": 82583, "name": "Abyssal Reverie", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82567, 82570], "prev": [82578, 82582], "entries": [{"id": 103709, "definitionId": 108714, "maxRanks": 2, "type": "passive", "name": "Abyssal Reverie", "spellId": 373054, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 82601, "name": "Train of Thought", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82602, 82568], "prev": [82600, 82566], "entries": [{"id": 103731, "definitionId": 108736, "maxRanks": 1, "type": "passive", "name": "Train of Thought", "spellId": 390693, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 82575, "name": "Ultimate Penitence", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82568, 82574, 82572], "prev": [82600, 82577], "entries": [{"id": 103700, "definitionId": 108705, "maxRanks": 1, "type": "active", "name": "Ultimate Penitence", "spellId": 421453, "icon": "ability_priest_ascendance", "index": 200}]}, {"id": 82567, "name": "Lenience / Evangelism", "type": "choice", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82572, 82585], "prev": [82577, 82583], "entries": [{"id": 103692, "definitionId": 108697, "maxRanks": 1, "type": "passive", "name": "Lenience", "spellId": 238063, "icon": "ability_priest_atonement", "index": 0}, {"id": 103691, "definitionId": 108696, "maxRanks": 1, "type": "active", "name": "Evangelism", "spellId": 246287, "icon": "spell_holy_divineillumination", "index": 100}]}, {"id": 82570, "name": "Void Summoner", "type": "single", "posX": 14700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82585, 82586], "prev": [82583, 82582], "entries": [{"id": 103695, "definitionId": 108700, "maxRanks": 1, "type": "passive", "name": "Void Summoner", "spellId": 390770, "icon": "spell_shadow_shadowfiend", "index": 100}]}, {"id": 82602, "name": "Divine Aegis", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [86730], "prev": [82601], "entries": [{"id": 103732, "definitionId": 108737, "maxRanks": 1, "type": "passive", "name": "Divine Aegis", "spellId": 47515, "icon": "spell_holy_devineaegis", "index": 100}]}, {"id": 82568, "name": "Blaze of Light", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82569], "prev": [82601, 82575], "entries": [{"id": 103693, "definitionId": 108698, "maxRanks": 2, "type": "passive", "name": "Blaze of Light", "spellId": 215768, "icon": "spell_holy_searinglight", "index": 100}]}, {"id": 82574, "name": "Heaven's Wrath", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82573], "prev": [82575], "entries": [{"id": 103699, "definitionId": 108704, "maxRanks": 1, "type": "passive", "name": "Heaven's Wrath", "spellId": 421558, "icon": "spell_holy_penance", "index": 100}]}, {"id": 82572, "name": "Harsh Discipline", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82571], "prev": [82575, 82567], "entries": [{"id": 103697, "definitionId": 108702, "maxRanks": 2, "type": "passive", "name": "Harsh Discipline", "spellId": 373180, "icon": "ability_paladin_handoflight", "index": 200}]}, {"id": 82585, "name": "Expiation", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82571], "prev": [82567, 82570], "entries": [{"id": 103711, "definitionId": 108716, "maxRanks": 2, "type": "passive", "name": "Expiation", "spellId": 390832, "icon": "spell_shadow_shadowpower", "index": 200}]}, {"id": 82586, "name": "Inescapable Torment", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82584], "prev": [82570], "entries": [{"id": 103712, "definitionId": 108717, "maxRanks": 1, "type": "passive", "name": "Inescapable Torment", "spellId": 373427, "icon": "spell_shadow_chilltouch", "index": 100}]}, {"id": 86730, "name": "Aegis of Wrath", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82602], "entries": [{"id": 103688, "definitionId": 108693, "maxRanks": 1, "type": "passive", "name": "Aegis of Wrath", "spellId": 238135, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 82569, "name": "Weal and Woe", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82568], "entries": [{"id": 103694, "definitionId": 108699, "maxRanks": 1, "type": "passive", "name": "Weal and Woe", "spellId": 390786, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 82573, "name": "Overloaded with Light", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82574], "entries": [{"id": 103698, "definitionId": 108703, "maxRanks": 1, "type": "passive", "name": "Overloaded with Light", "spellId": 421557, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 82571, "name": "Twilight Equilibrium", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82572, 82585], "entries": [{"id": 103696, "definitionId": 108701, "maxRanks": 1, "type": "passive", "name": "Twilight Equilibrium", "spellId": 390705, "icon": "ability_priest_innerlightandshadow", "index": 100}]}, {"id": 82584, "name": "Mindbender", "type": "single", "posX": 14700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82586], "entries": [{"id": 103710, "definitionId": 108715, "maxRanks": 1, "type": "active", "name": "Mindbender", "spellId": 123040, "icon": "spell_shadow_soulleech_3", "index": 100}]}], "heroNodes": [{"id": 94683, "name": "Premonition", "type": "single", "posX": 8400, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 20, "next": [94698, 94674, 94679], "prev": [], "entries": [{"id": 117286, "definitionId": 122298, "maxRanks": 1, "type": "active", "name": "Premonition", "spellId": 428924, "icon": "inv_ability_oraclepriest_premonitioninsight", "index": 100}], "freeNode": true}, {"id": 94698, "name": "Preventive Measures", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94691], "prev": [94683], "entries": [{"id": 117301, "definitionId": 122313, "maxRanks": 1, "type": "passive", "name": "Preventive Measures", "spellId": 440662, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 94674, "name": "Preemptive Care", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94675], "prev": [94683], "entries": [{"id": 117277, "definitionId": 122289, "maxRanks": 1, "type": "passive", "name": "Preemptive Care", "spellId": 440671, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 94679, "name": "Waste No Time / Miraculous Recovery", "type": "choice", "posX": 9000, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94689], "prev": [94683], "entries": [{"id": 117282, "definitionId": 122294, "maxRanks": 1, "type": "passive", "name": "Waste No Time", "spellId": 440681, "icon": "spell_nature_timestop", "index": 100}, {"id": 119332, "definitionId": 124232, "maxRanks": 1, "type": "passive", "name": "Miraculous Recovery", "spellId": 440674, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 94691, "name": "Assured Safety", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94690], "prev": [94698], "entries": [{"id": 117294, "definitionId": 122306, "maxRanks": 1, "type": "passive", "name": "Assured Safety", "spellId": 440766, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 94675, "name": "Divine Feathers / Save the Day", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94673], "prev": [94674], "entries": [{"id": 117278, "definitionId": 122290, "maxRanks": 1, "type": "passive", "name": "Divine Feathers", "spellId": 440670, "icon": "ability_priest_angelicfeather", "index": 100}, {"id": 119331, "definitionId": 124231, "maxRanks": 1, "type": "passive", "name": "Save the Day", "spellId": 440669, "icon": "priest_spell_leapoffaith_a", "index": 200}]}, {"id": 94689, "name": "Foreseen Circumstances", "type": "single", "posX": 9000, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94700], "prev": [94679], "entries": [{"id": 117292, "definitionId": 122304, "maxRanks": 1, "type": "passive", "name": "Foreseen Circumstances", "spellId": 440738, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 94690, "name": "Prophet's Will / Desperate Measures", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94691], "entries": [{"id": 117293, "definitionId": 122305, "maxRanks": 1, "type": "passive", "name": "Prophet's Will", "spellId": 433905, "icon": "ability_priest_clarityofpurpose", "index": 100}, {"id": 126068, "definitionId": 130900, "maxRanks": 1, "type": "passive", "name": "Desperate Measures", "spellId": 458718, "icon": "spell_holy_testoffaith", "index": 200}]}, {"id": 94673, "name": "Divine Providence", "type": "single", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94675], "entries": [{"id": 117276, "definitionId": 122288, "maxRanks": 1, "type": "passive", "name": "Divine Providence", "spellId": 440742, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 94700, "name": "Fatebender / Perfect Vision", "type": "choice", "posX": 9000, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94689], "entries": [{"id": 117303, "definitionId": 122315, "maxRanks": 1, "type": "passive", "name": "Fatebender", "spellId": 440743, "icon": "ability_priest_voidshift", "index": 100}, {"id": 119330, "definitionId": 124230, "maxRanks": 1, "type": "passive", "name": "Perfect Vision", "spellId": 440661, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 94687, "name": "Clairvoyance", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 20, "next": [], "prev": [94700, 94673, 94690], "entries": [{"id": 117290, "definitionId": 122302, "maxRanks": 1, "type": "passive", "name": "Clairvoyance", "spellId": 428940, "icon": "inv_inscription_vantusrune_progenitor", "index": 100}]}, {"id": 94684, "name": "Entropic Rift", "type": "single", "posX": 8400, "posY": 4500, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "subTreeId": 18, "requiresNode": 82654, "next": [94693, 94703, 94670], "prev": [], "entries": [{"id": 117287, "definitionId": 122299, "maxRanks": 1, "type": "passive", "name": "Entropic Rift", "spellId": 447444, "icon": "inv_ability_voidweaverpriest_entropicrift", "index": 100}], "freeNode": true}, {"id": 94693, "name": "No Escape / Dark Energy", "type": "choice", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94668], "prev": [94684], "entries": [{"id": 117296, "definitionId": 122308, "maxRanks": 1, "type": "passive", "name": "No Escape", "spellId": 451204, "icon": "spell_fire_twilighthellfire", "index": 100}, {"id": 123845, "definitionId": 128683, "maxRanks": 1, "type": "passive", "name": "Dark Energy", "spellId": 451018, "icon": "achievement_boss_triumvirate_darknaaru", "index": 200}]}, {"id": 94703, "name": "Void Blast", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94695], "prev": [94684], "entries": [{"id": 117306, "definitionId": 122318, "maxRanks": 1, "type": "active", "name": "Void Blast", "spellId": 450405, "icon": "inv_cosmicvoid_missile", "index": 100}]}, {"id": 94670, "name": "Inner Quietus", "type": "single", "posX": 9000, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "next": [100212], "prev": [94684], "entries": [{"id": 117273, "definitionId": 122285, "maxRanks": 1, "type": "passive", "name": "Inner Quietus", "spellId": 448278, "icon": "inv_cosmicvoid_buff", "index": 100}]}, {"id": 94668, "name": "Devour Matter / Darkening Horizon", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94692], "prev": [94693], "entries": [{"id": 117271, "definitionId": 122283, "maxRanks": 1, "type": "passive", "name": "Devour Matter", "spellId": 451840, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 117298, "definitionId": 122310, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 94695, "name": "Void Empowerment / Darkening Horizon", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94669], "prev": [94703], "entries": [{"id": 125821, "definitionId": 128681, "maxRanks": 1, "type": "passive", "name": "Void Empowerment", "spellId": 450138, "icon": "inv_cosmicvoid_nova", "index": 100}, {"id": 125982, "definitionId": 130813, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 100212, "name": "Depth of Shadows / Voidwraith", "type": "choice", "posX": 9000, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94696], "prev": [94670], "entries": [{"id": 123842, "definitionId": 128680, "maxRanks": 1, "type": "passive", "name": "Depth of Shadows", "spellId": 451308, "icon": "warlock_summon__voidlord", "index": 100}, {"id": 123841, "definitionId": 128679, "maxRanks": 1, "type": "passive", "name": "Voidwraith", "spellId": 451234, "icon": "warlock_curse_shadow", "index": 200}]}, {"id": 94692, "name": "Voidheart", "type": "single", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94668], "entries": [{"id": 117295, "definitionId": 122307, "maxRanks": 1, "type": "passive", "name": "Voidheart", "spellId": 449880, "icon": "inv_cosmicvoid_orb", "index": 100}]}, {"id": 94669, "name": "Void Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94695], "entries": [{"id": 117272, "definitionId": 122284, "maxRanks": 1, "type": "passive", "name": "Void Infusion", "spellId": 450612, "icon": "inv_misc_volatileshadow", "index": 100}]}, {"id": 94696, "name": "Void Leech / Embrace the Shadow", "type": "choice", "posX": 9000, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "next": [94694], "prev": [100212], "entries": [{"id": 117299, "definitionId": 122311, "maxRanks": 1, "type": "passive", "name": "Void Leech", "spellId": 451311, "icon": "spell_shadow_soulleech_2", "index": 100}, {"id": 123844, "definitionId": 128682, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadow", "spellId": 451569, "icon": "spell_shadow_shadesofdarkness", "index": 200}]}, {"id": 94694, "name": "Collapsing Void", "type": "single", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [], "prev": [94669, 94692, 94696], "entries": [{"id": 117297, "definitionId": 122309, "maxRanks": 1, "type": "passive", "name": "Collapsing Void", "spellId": 448403, "icon": "inv_cosmicvoid_groundsate", "index": 100}]}], "subTreeNodes": [{"id": 99801, "name": "Oracle / Voidweaver", "type": "subtree", "posX": 8400, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123290, "type": "subtree", "name": "Oracle", "traitSubTreeId": 20, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-oracle", "nodes": [94683, 94698, 94674, 94679, 94691, 94675, 94689, 94690, 94673, 94700, 94687]}, {"id": 123288, "type": "subtree", "name": "Voidweaver", "traitSubTreeId": 18, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-voidweaver", "nodes": [94684, 94693, 94703, 94670, 94668, 94695, 100212, 94692, 94669, 94696, 94694]}]}], "fullNodeOrder": [82552, 82553, 82554, 82555, 82556, 82557, 82558, 82559, 82560, 82561, 82563, 82564, 82566, 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, 82647, 82648, 82649, 82651, 82652, 82653, 82654, 82655, 82656, 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82665, 82666, 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, 82687, 82688, 82689, 82690, 82691, 82692, 82693, 82694, 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, 82715, 82716, 82717, 82718, 82719, 82720, 82721, 86730, 92225, 93170, 93171, 93172, 94668, 94669, 94670, 94673, 94674, 94675, 94676, 94677, 94678, 94679, 94680, 94681, 94683, 94684, 94685, 94686, 94687, 94688, 94689, 94690, 94691, 94692, 94693, 94694, 94695, 94696, 94697, 94698, 94699, 94700, 94702, 94703, 99800, 99801, 99802, 100212]} \ No newline at end of file +{"traitTreeId": 795, "className": "Priest", "classId": 5, "specName": "Discipline", "specId": 256, "classNodes": [{"id": 82717, "name": "Renew", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82718, 82714], "prev": [], "entries": [{"id": 103869, "definitionId": 108874, "maxRanks": 1, "type": "active", "name": "Renew", "spellId": 139, "icon": "spell_holy_renew", "index": 100}], "freeNode": true}, {"id": 82715, "name": "Dispel Magic", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82714, 82705, 82695], "prev": [], "entries": [{"id": 103867, "definitionId": 108872, "maxRanks": 1, "type": "active", "name": "Dispel Magic", "spellId": 528, "icon": "spell_nature_nullifydisease", "index": 100}]}, {"id": 82713, "name": "Shadowfiend", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82695, 82712], "prev": [], "entries": [{"id": 103865, "definitionId": 108870, "maxRanks": 1, "type": "active", "name": "Shadowfiend", "spellId": 34433, "icon": "spell_shadow_shadowfiend", "index": 100}], "freeNode": true}, {"id": 82718, "name": "Prayer of Mending", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82719, 82701, 82720], "prev": [82717], "entries": [{"id": 103870, "definitionId": 108875, "maxRanks": 1, "type": "active", "name": "Prayer of Mending", "spellId": 33076, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 82714, "name": "Improved Flash Heal", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82701, 82707, 82703], "prev": [82715, 82717], "entries": [{"id": 103866, "definitionId": 108871, "maxRanks": 1, "type": "passive", "name": "Improved Flash Heal", "spellId": 393870, "icon": "spell_holy_heal", "index": 100}]}, {"id": 82705, "name": "Improved Purify", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [82703], "prev": [82715], "entries": [{"id": 103855, "definitionId": 108860, "maxRanks": 1, "type": "passive", "name": "Improved Purify", "spellId": 390632, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 82695, "name": "Psychic Voice / Petrifying Scream", "type": "choice", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82703, 82556], "prev": [82715, 82713], "entries": [{"id": 103845, "definitionId": 108850, "maxRanks": 1, "type": "passive", "name": "Psychic Voice", "spellId": 196704, "icon": "ability_warrior_commandingshout", "index": 100}, {"id": 114588, "definitionId": 119593, "maxRanks": 1, "type": "passive", "name": "Petrifying Scream", "spellId": 55676, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82712, "name": "Shadow Word: Death", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [82556, 82711], "prev": [82713], "entries": [{"id": 103864, "definitionId": 108869, "maxRanks": 1, "type": "active", "name": "Shadow Word: Death", "spellId": 32379, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82719, "name": "Focused Mending", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82720], "prev": [82718], "entries": [{"id": 103871, "definitionId": 108876, "maxRanks": 1, "type": "passive", "name": "Focused Mending", "spellId": 372354, "icon": "achievement_bg_returnxflags_def_wsg", "index": 100}]}, {"id": 82701, "name": "Holy Nova", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82720, 82700, 82716], "prev": [82714, 82718], "entries": [{"id": 103851, "definitionId": 108856, "maxRanks": 1, "type": "active", "name": "Holy Nova", "spellId": 132157, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82707, "name": "Protective Light / From Darkness Comes Light", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82716], "prev": [82714], "entries": [{"id": 103858, "definitionId": 108863, "maxRanks": 1, "type": "passive", "name": "Protective Light", "spellId": 193063, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 103857, "definitionId": 108862, "maxRanks": 1, "type": "passive", "name": "From Darkness Comes Light", "spellId": 390615, "icon": "spell_holy_flashheal", "index": 200}]}, {"id": 82703, "name": "Angelic Feather", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82716, 82693, 82708], "prev": [82714, 82705, 82695], "entries": [{"id": 103853, "definitionId": 108858, "maxRanks": 1, "type": "active", "name": "Angelic Feather", "spellId": 121536, "icon": "ability_priest_angelicfeather", "index": 0}]}, {"id": 82556, "name": "Phantasm", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82708, 82710], "prev": [82695, 82712], "entries": [{"id": 103834, "definitionId": 108839, "maxRanks": 1, "type": "passive", "name": "Phantasm", "spellId": 108942, "icon": "ability_priest_phantasm", "index": 100}]}, {"id": 82711, "name": "Death and Madness", "type": "single", "posX": 6900, "posY": 2700, "maxRanks": 1, "next": [82710, 82688], "prev": [82712], "entries": [{"id": 103863, "definitionId": 108868, "maxRanks": 1, "type": "passive", "name": "Death and Madness", "spellId": 321291, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82720, "name": "Spell Warding / Blessed Recovery", "type": "choice", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [82721, 82699, 82696], "prev": [82718, 82701, 82719], "entries": [{"id": 103872, "definitionId": 108877, "maxRanks": 1, "type": "passive", "name": "Spell Warding", "spellId": 390667, "icon": "spell_holy_spellwarding", "index": 100}, {"id": 103677, "definitionId": 108682, "maxRanks": 1, "type": "passive", "name": "Blessed Recovery", "spellId": 390767, "icon": "spell_holy_blessedrecovery", "index": 200}]}, {"id": 82700, "name": "Rhapsody", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [82699], "prev": [82701], "entries": [{"id": 103850, "definitionId": 108855, "maxRanks": 1, "type": "passive", "name": "Rhapsody", "spellId": 390622, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82716, "name": "Leap of Faith", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [82699, 82702, 82694], "prev": [82703, 82701, 82707], "entries": [{"id": 103868, "definitionId": 108873, "maxRanks": 1, "type": "active", "name": "Leap of Faith", "spellId": 73325, "icon": "priest_spell_leapoffaith_a", "index": 100}]}, {"id": 82693, "name": "Shackle Undead", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [82694], "prev": [82703], "entries": [{"id": 103843, "definitionId": 108848, "maxRanks": 1, "type": "active", "name": "Shackle Undead", "spellId": 9484, "icon": "spell_nature_slow", "index": 100}]}, {"id": 82708, "name": "Sheer Terror / Void Tendrils", "type": "choice", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [82694, 82691], "prev": [82703, 82556], "entries": [{"id": 103860, "definitionId": 108865, "maxRanks": 1, "type": "passive", "name": "Sheer Terror", "spellId": 390919, "icon": "spell_nzinsanity_fearofdeath", "index": 100}, {"id": 103859, "definitionId": 108864, "maxRanks": 1, "type": "active", "name": "Void Tendrils", "spellId": 108920, "icon": "spell_priest_voidtendrils", "index": 200}]}, {"id": 82710, "name": "Mind Control / Dominate Mind", "type": "choice", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [82691, 82689], "prev": [82556, 82711], "entries": [{"id": 103862, "definitionId": 108867, "maxRanks": 1, "type": "active", "name": "Mind Control", "spellId": 605, "icon": "spell_shadow_shadowworddominate", "index": 100}, {"id": 103678, "definitionId": 108683, "maxRanks": 1, "type": "active", "name": "Dominate Mind", "spellId": 205364, "icon": "spell_priest_void-flay", "index": 200}]}, {"id": 82721, "name": "Words of the Pious", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696], "prev": [82720], "entries": [{"id": 103873, "definitionId": 108878, "maxRanks": 1, "type": "passive", "name": "Words of the Pious", "spellId": 377438, "icon": "ability_priest_clarityofwill", "index": 200}]}, {"id": 82699, "name": "Mass Dispel", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696, 82698, 82706], "prev": [82716, 82720, 82700], "entries": [{"id": 103849, "definitionId": 108854, "maxRanks": 1, "type": "active", "name": "Mass Dispel", "spellId": 32375, "icon": "spell_arcane_massdispel", "index": 100}]}, {"id": 82702, "name": "Move with Grace", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706], "prev": [82716], "entries": [{"id": 103852, "definitionId": 108857, "maxRanks": 1, "type": "passive", "name": "Move with Grace", "spellId": 390620, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82694, "name": "Power Infusion", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706, 82683, 82692], "prev": [82716, 82693, 82708], "entries": [{"id": 103844, "definitionId": 108849, "maxRanks": 1, "type": "active", "name": "Power Infusion", "spellId": 10060, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 82691, "name": "Sanguine Teachings / Vampiric Embrace", "type": "choice", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82692, 82690, 82689], "prev": [82710, 82708], "entries": [{"id": 114735, "definitionId": 108846, "maxRanks": 1, "type": "passive", "name": "Sanguine Teachings", "spellId": 373218, "icon": "inv_archaeology_80_zandalari_sanguinetotem", "index": 100}, {"id": 103841, "definitionId": 119742, "maxRanks": 1, "type": "active", "name": "Vampiric Embrace", "spellId": 15286, "icon": "spell_shadow_unsummonbuilding", "index": 200}]}, {"id": 82688, "name": "Tithe Evasion", "type": "single", "posX": 6900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82689], "prev": [82711], "entries": [{"id": 103838, "definitionId": 108843, "maxRanks": 1, "type": "passive", "name": "Tithe Evasion", "spellId": 373223, "icon": "spell_nzinsanity_bloodthirst", "index": 100}]}, {"id": 82696, "name": "Inspiration", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82721, 82699, 82720], "entries": [{"id": 103846, "definitionId": 108851, "maxRanks": 1, "type": "passive", "name": "Inspiration", "spellId": 390676, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 82698, "name": "Mental Agility", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82699], "entries": [{"id": 103848, "definitionId": 108853, "maxRanks": 1, "type": "passive", "name": "Mental Agility", "spellId": 341167, "icon": "spell_holy_dispelmagic", "index": 100}]}, {"id": 82706, "name": "Body and Soul", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697, 82684], "prev": [82694, 82699, 82702], "entries": [{"id": 103856, "definitionId": 108861, "maxRanks": 1, "type": "passive", "name": "Body and Soul", "spellId": 64129, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82683, "name": "Twins of the Sun Priestess", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684], "prev": [82694], "entries": [{"id": 103832, "definitionId": 108837, "maxRanks": 1, "type": "passive", "name": "Twins of the Sun Priestess", "spellId": 373466, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82692, "name": "Void Shield", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684, 82709], "prev": [82691, 82694], "entries": [{"id": 103842, "definitionId": 108847, "maxRanks": 1, "type": "passive", "name": "Void Shield", "spellId": 280749, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 82690, "name": "San'layn", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82691], "entries": [{"id": 103840, "definitionId": 108845, "maxRanks": 1, "type": "passive", "name": "San'layn", "spellId": 199855, "icon": "achievement_boss_lanathel", "index": 100}]}, {"id": 82689, "name": "Apathy", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82710, 82688, 82691], "entries": [{"id": 103839, "definitionId": 108844, "maxRanks": 1, "type": "passive", "name": "Apathy", "spellId": 390668, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 82697, "name": "Unwavering Will", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82678, 82682], "prev": [82706, 82696, 82698], "entries": [{"id": 103847, "definitionId": 108852, "maxRanks": 2, "type": "passive", "name": "Unwavering Will", "spellId": 373456, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 82684, "name": "Twist of Fate", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82682, 82685], "prev": [82706, 82692, 82683], "entries": [{"id": 103833, "definitionId": 108838, "maxRanks": 2, "type": "passive", "name": "Twist of Fate", "spellId": 390972, "icon": "spell_shadow_mindtwisting", "index": 100}]}, {"id": 82709, "name": "Throes of Pain", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82685, 82687], "prev": [82692, 82690, 82689], "entries": [{"id": 103861, "definitionId": 108866, "maxRanks": 2, "type": "passive", "name": "Throes of Pain", "spellId": 377422, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 82678, "name": "Angel's Mercy / Binding Heals", "type": "choice", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82677, 82679], "prev": [82697], "entries": [{"id": 103825, "definitionId": 108830, "maxRanks": 1, "type": "passive", "name": "Angel's Mercy", "spellId": 238100, "icon": "spell_holy_testoffaith", "index": 100}, {"id": 103824, "definitionId": 108829, "maxRanks": 1, "type": "passive", "name": "Binding Heals", "spellId": 368275, "icon": "spell_holy_blindingheal", "index": 200}]}, {"id": 82682, "name": "Divine Star / Halo", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82679, 82681], "prev": [82697, 82684], "entries": [{"id": 103831, "definitionId": 108836, "maxRanks": 1, "type": "active", "name": "Divine Star", "spellId": 110744, "icon": "spell_priest_divinestar", "index": 200}, {"id": 103830, "definitionId": 108835, "maxRanks": 1, "type": "active", "name": "Halo", "spellId": 120517, "icon": "ability_priest_halo", "index": 300}]}, {"id": 82685, "name": "Translucent Image", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82681, 82686], "prev": [82709, 82684], "entries": [{"id": 103835, "definitionId": 108840, "maxRanks": 1, "type": "passive", "name": "Translucent Image", "spellId": 373446, "icon": "spell_nature_invisibilty", "index": 100}]}, {"id": 82687, "name": "Cauterizing Shadows", "type": "single", "posX": 6300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82686, 82672], "prev": [82709], "entries": [{"id": 103837, "definitionId": 108842, "maxRanks": 1, "type": "passive", "name": "Cauterizing Shadows", "spellId": 459990, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82677, "name": "Surge of Light", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82676], "prev": [82678], "entries": [{"id": 103823, "definitionId": 108828, "maxRanks": 1, "type": "passive", "name": "Surge of Light", "spellId": 109186, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 82679, "name": "Light's Inspiration", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82676, 82675], "prev": [82682, 82678], "entries": [{"id": 103826, "definitionId": 108831, "maxRanks": 2, "type": "passive", "name": "Light's Inspiration", "spellId": 373450, "icon": "spell_holy_restoration", "index": 100}]}, {"id": 82681, "name": "Crystalline Reflection", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82675, 82674], "prev": [82685, 82682], "entries": [{"id": 103829, "definitionId": 108834, "maxRanks": 2, "type": "passive", "name": "Crystalline Reflection", "spellId": 373457, "icon": "ability_priest_reflectiveshield", "index": 100}]}, {"id": 82686, "name": "Improved Fade", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82674, 82673], "prev": [82685, 82687], "entries": [{"id": 103836, "definitionId": 108841, "maxRanks": 2, "type": "passive", "name": "Improved Fade", "spellId": 390670, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 82672, "name": "Manipulation", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82673], "prev": [82687], "entries": [{"id": 103818, "definitionId": 108823, "maxRanks": 1, "type": "passive", "name": "Manipulation", "spellId": 459985, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82676, "name": "Benevolence / Power Word: Life", "type": "choice", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82677, 82679], "entries": [{"id": 115884, "definitionId": 120896, "maxRanks": 1, "type": "passive", "name": "Benevolence", "spellId": 415416, "icon": "ability_priest_spiritoftheredeemer", "index": 100}, {"id": 103822, "definitionId": 108827, "maxRanks": 1, "type": "active", "name": "Power Word: Life", "spellId": 373481, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 82675, "name": "Angelic Bulwark", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82679, 82681], "entries": [{"id": 103821, "definitionId": 108826, "maxRanks": 1, "type": "passive", "name": "Angelic Bulwark", "spellId": 108945, "icon": "ability_priest_angelicbulwark", "index": 100}]}, {"id": 82674, "name": "Essence Devourer / Void Shift", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82681, 82686], "entries": [{"id": 115883, "definitionId": 120895, "maxRanks": 1, "type": "passive", "name": "Essence Devourer", "spellId": 415479, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}, {"id": 103820, "definitionId": 108825, "maxRanks": 1, "type": "active", "name": "Void Shift", "spellId": 108968, "icon": "spell_priest_voidshift", "index": 200}]}, {"id": 82673, "name": "Phantom Reach", "type": "single", "posX": 6300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82672, 82686], "entries": [{"id": 103819, "definitionId": 108824, "maxRanks": 1, "type": "passive", "name": "Phantom Reach", "spellId": 459559, "icon": "spell_shadow_chilltouch", "index": 100}]}], "specNodes": [{"id": 82594, "name": "Atonement", "type": "single", "posX": 12900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82593, 82587, 82595], "prev": [], "entries": [{"id": 103723, "definitionId": 108728, "maxRanks": 1, "type": "passive", "name": "Atonement", "spellId": 81749, "icon": "ability_priest_atonement", "index": 100}]}, {"id": 82593, "name": "Power Word: Radiance", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82592, 92225], "prev": [82594], "entries": [{"id": 103722, "definitionId": 108727, "maxRanks": 1, "type": "active", "name": "Power Word: Radiance", "spellId": 194509, "icon": "spell_priest_power-word", "index": 100}]}, {"id": 82587, "name": "Pain Suppression", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [92225, 82588], "prev": [82594], "entries": [{"id": 103713, "definitionId": 108718, "maxRanks": 1, "type": "active", "name": "Pain Suppression", "spellId": 33206, "icon": "spell_holy_painsupression", "index": 100}]}, {"id": 82595, "name": "Power of the Dark Side", "type": "single", "posX": 13500, "posY": 2100, "maxRanks": 1, "next": [82596, 82579], "prev": [82594], "entries": [{"id": 103724, "definitionId": 108729, "maxRanks": 1, "type": "passive", "name": "Power of the Dark Side", "spellId": 198068, "icon": "inv_artifact_powerofthedarkside", "index": 100}]}, {"id": 82592, "name": "Light's Promise", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82591, 82589], "prev": [82593], "entries": [{"id": 103721, "definitionId": 108726, "maxRanks": 1, "type": "passive", "name": "Light's Promise", "spellId": 322115, "icon": "spell_priest_power-word", "index": 100}]}, {"id": 92225, "name": "Sanctuary", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82589, 82564], "prev": [82587, 82593], "entries": [{"id": 108225, "definitionId": 113230, "maxRanks": 1, "type": "passive", "name": "Sanctuary", "spellId": 231682, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 82588, "name": "Pain Transformation / Protector of the Frail", "type": "choice", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82564], "prev": [82587], "entries": [{"id": 103715, "definitionId": 108720, "maxRanks": 1, "type": "passive", "name": "Pain Transformation", "spellId": 372991, "icon": "spell_holy_blessedrecovery", "index": 200}, {"id": 103714, "definitionId": 108719, "maxRanks": 1, "type": "passive", "name": "Protector of the Frail", "spellId": 373035, "icon": "ability_racial_forceshield", "index": 300}]}, {"id": 82596, "name": "Dark Indulgence", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82564, 82597], "prev": [82595], "entries": [{"id": 103725, "definitionId": 108730, "maxRanks": 1, "type": "passive", "name": "Dark Indulgence", "spellId": 372972, "icon": "spell_shadow_unholyfrenzy", "index": 100}]}, {"id": 82579, "name": "Schism", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [82597, 82580, 82581], "prev": [82595], "entries": [{"id": 103704, "definitionId": 108709, "maxRanks": 1, "type": "passive", "name": "Schism", "spellId": 424509, "icon": "spell_warlock_focusshadow", "index": 100}]}, {"id": 82591, "name": "Bright Pupil / Enduring Luminescence", "type": "choice", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82590], "prev": [82592], "entries": [{"id": 103720, "definitionId": 108725, "maxRanks": 1, "type": "passive", "name": "Bright Pupil", "spellId": 390684, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 103719, "definitionId": 108724, "maxRanks": 1, "type": "passive", "name": "Enduring Luminescence", "spellId": 390685, "icon": "ability_priest_holybolts01", "index": 200}]}, {"id": 82589, "name": "Shield Discipline", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82590, 82598], "prev": [82592, 92225], "entries": [{"id": 103717, "definitionId": 108722, "maxRanks": 1, "type": "passive", "name": "Shield Discipline", "spellId": 197045, "icon": "spell_holy_divineprotection", "index": 200}]}, {"id": 82564, "name": "Luminous Barrier / Power Word: Barrier", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82598], "prev": [82596, 92225, 82588], "entries": [{"id": 116182, "definitionId": 121194, "maxRanks": 1, "type": "active", "name": "Luminous Barrier", "spellId": 271466, "icon": "spell_priest_burningwill", "index": 100}, {"id": 103687, "definitionId": 108692, "maxRanks": 1, "type": "active", "name": "Power Word: Barrier", "spellId": 62618, "icon": "spell_holy_powerwordbarrier", "index": 200}]}, {"id": 82597, "name": "Painful Punishment", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82598, 82581], "prev": [82579, 82596], "entries": [{"id": 103726, "definitionId": 108731, "maxRanks": 1, "type": "passive", "name": "Painful Punishment", "spellId": 390686, "icon": "ability_priest_clarityofpower", "index": 100}]}, {"id": 82580, "name": "Malicious Intent", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "next": [82581], "prev": [82579], "entries": [{"id": 103705, "definitionId": 108710, "maxRanks": 1, "type": "passive", "name": "Malicious Intent", "spellId": 372969, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 82590, "name": "Purge the Wicked", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82566, 82599], "prev": [82589, 82591], "entries": [{"id": 103718, "definitionId": 108723, "maxRanks": 1, "type": "active", "name": "Purge the Wicked", "spellId": 204197, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82598, "name": "Rapture", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82599, 82576, 82578], "prev": [82589, 82564, 82597], "entries": [{"id": 103727, "definitionId": 108732, "maxRanks": 1, "type": "active", "name": "Rapture", "spellId": 47536, "icon": "spell_holy_rapture", "index": 100}]}, {"id": 82581, "name": "Shadow Covenant", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82578, 82582], "prev": [82597, 82579, 82580], "entries": [{"id": 103706, "definitionId": 108711, "maxRanks": 1, "type": "passive", "name": "Shadow Covenant", "spellId": 314867, "icon": "spell_shadow_summonvoidwalker", "index": 100}]}, {"id": 82566, "name": "Revel in Purity", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82600, 82601], "prev": [82590], "entries": [{"id": 103690, "definitionId": 108695, "maxRanks": 1, "type": "passive", "name": "Revel in Purity", "spellId": 373003, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82599, "name": "Contrition", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82600, 82577], "prev": [82590, 82598], "entries": [{"id": 103728, "definitionId": 108733, "maxRanks": 1, "type": "passive", "name": "Contrition", "spellId": 197419, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82576, "name": "Exaltation / Indemnity", "type": "choice", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82577], "prev": [82598], "entries": [{"id": 103701, "definitionId": 108706, "maxRanks": 1, "type": "passive", "name": "Exaltation", "spellId": 373042, "icon": "spell_holy_spiritualguidence", "index": 200}, {"id": 108226, "definitionId": 113231, "maxRanks": 1, "type": "passive", "name": "Indemnity", "spellId": 373049, "icon": "ability_priest_clarityofwill", "index": 300}]}, {"id": 82578, "name": "Pain and Suffering", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [82577, 82583], "prev": [82598, 82581], "entries": [{"id": 103703, "definitionId": 108708, "maxRanks": 2, "type": "passive", "name": "Pain and Suffering", "spellId": 390689, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82582, "name": "Twilight Corruption", "type": "single", "posX": 14700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82583, 82570], "prev": [82581], "entries": [{"id": 103708, "definitionId": 108713, "maxRanks": 1, "type": "passive", "name": "Twilight Corruption", "spellId": 373065, "icon": "spell_fire_twilightimmolation", "index": 100}]}, {"id": 82600, "name": "Borrowed Time", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82601, 82575], "prev": [82566, 82599], "entries": [{"id": 103729, "definitionId": 108734, "maxRanks": 2, "type": "passive", "name": "Borrowed Time", "spellId": 390691, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 82577, "name": "Castigation", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82575, 82567], "prev": [82576, 82599, 82578], "entries": [{"id": 103702, "definitionId": 108707, "maxRanks": 1, "type": "passive", "name": "Castigation", "spellId": 193134, "icon": "spell_holy_searinglightpriest", "index": 100}]}, {"id": 82583, "name": "Abyssal Reverie", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82567, 82570], "prev": [82578, 82582], "entries": [{"id": 103709, "definitionId": 108714, "maxRanks": 2, "type": "passive", "name": "Abyssal Reverie", "spellId": 373054, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 82601, "name": "Train of Thought", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82602, 82568], "prev": [82600, 82566], "entries": [{"id": 103731, "definitionId": 108736, "maxRanks": 1, "type": "passive", "name": "Train of Thought", "spellId": 390693, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 82575, "name": "Ultimate Penitence", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82568, 82574, 82572], "prev": [82600, 82577], "entries": [{"id": 103700, "definitionId": 108705, "maxRanks": 1, "type": "active", "name": "Ultimate Penitence", "spellId": 421453, "icon": "ability_priest_ascendance", "index": 200}]}, {"id": 82567, "name": "Lenience / Evangelism", "type": "choice", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82572, 82585], "prev": [82577, 82583], "entries": [{"id": 103692, "definitionId": 108697, "maxRanks": 1, "type": "passive", "name": "Lenience", "spellId": 238063, "icon": "ability_priest_atonement", "index": 0}, {"id": 103691, "definitionId": 108696, "maxRanks": 1, "type": "active", "name": "Evangelism", "spellId": 246287, "icon": "spell_holy_divineillumination", "index": 100}]}, {"id": 82570, "name": "Void Summoner", "type": "single", "posX": 14700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82585, 82586], "prev": [82583, 82582], "entries": [{"id": 103695, "definitionId": 108700, "maxRanks": 1, "type": "passive", "name": "Void Summoner", "spellId": 390770, "icon": "spell_shadow_shadowfiend", "index": 100}]}, {"id": 82602, "name": "Divine Aegis", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [86730], "prev": [82601], "entries": [{"id": 103732, "definitionId": 108737, "maxRanks": 1, "type": "passive", "name": "Divine Aegis", "spellId": 47515, "icon": "spell_holy_devineaegis", "index": 100}]}, {"id": 82568, "name": "Blaze of Light", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82569], "prev": [82601, 82575], "entries": [{"id": 103693, "definitionId": 108698, "maxRanks": 2, "type": "passive", "name": "Blaze of Light", "spellId": 215768, "icon": "spell_holy_searinglight", "index": 100}]}, {"id": 82574, "name": "Heaven's Wrath", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82573], "prev": [82575], "entries": [{"id": 103699, "definitionId": 108704, "maxRanks": 1, "type": "passive", "name": "Heaven's Wrath", "spellId": 421558, "icon": "spell_holy_penance", "index": 100}]}, {"id": 82572, "name": "Harsh Discipline", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82571], "prev": [82575, 82567], "entries": [{"id": 103697, "definitionId": 108702, "maxRanks": 2, "type": "passive", "name": "Harsh Discipline", "spellId": 373180, "icon": "ability_paladin_handoflight", "index": 200}]}, {"id": 82585, "name": "Expiation", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82571], "prev": [82567, 82570], "entries": [{"id": 103711, "definitionId": 108716, "maxRanks": 2, "type": "passive", "name": "Expiation", "spellId": 390832, "icon": "spell_shadow_shadowpower", "index": 200}]}, {"id": 82586, "name": "Inescapable Torment", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82584], "prev": [82570], "entries": [{"id": 103712, "definitionId": 108717, "maxRanks": 1, "type": "passive", "name": "Inescapable Torment", "spellId": 373427, "icon": "spell_shadow_chilltouch", "index": 100}]}, {"id": 86730, "name": "Aegis of Wrath", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82602], "entries": [{"id": 103688, "definitionId": 108693, "maxRanks": 1, "type": "passive", "name": "Aegis of Wrath", "spellId": 238135, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 82569, "name": "Weal and Woe", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82568], "entries": [{"id": 103694, "definitionId": 108699, "maxRanks": 1, "type": "passive", "name": "Weal and Woe", "spellId": 390786, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 82573, "name": "Overloaded with Light", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82574], "entries": [{"id": 103698, "definitionId": 108703, "maxRanks": 1, "type": "passive", "name": "Overloaded with Light", "spellId": 421557, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 82571, "name": "Twilight Equilibrium", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82572, 82585], "entries": [{"id": 103696, "definitionId": 108701, "maxRanks": 1, "type": "passive", "name": "Twilight Equilibrium", "spellId": 390705, "icon": "ability_priest_innerlightandshadow", "index": 100}]}, {"id": 82584, "name": "Mindbender", "type": "single", "posX": 14700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82586], "entries": [{"id": 103710, "definitionId": 108715, "maxRanks": 1, "type": "active", "name": "Mindbender", "spellId": 123040, "icon": "spell_shadow_soulleech_3", "index": 100}]}], "heroNodes": [{"id": 94683, "name": "Premonition", "type": "single", "posX": 8400, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 20, "next": [94698, 94674, 94679], "prev": [], "entries": [{"id": 117286, "definitionId": 122298, "maxRanks": 1, "type": "active", "name": "Premonition", "spellId": 428924, "icon": "inv_ability_oraclepriest_premonitioninsight", "index": 100}], "freeNode": true}, {"id": 94698, "name": "Preventive Measures", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94691], "prev": [94683], "entries": [{"id": 117301, "definitionId": 122313, "maxRanks": 1, "type": "passive", "name": "Preventive Measures", "spellId": 440662, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 94674, "name": "Preemptive Care", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94675], "prev": [94683], "entries": [{"id": 117277, "definitionId": 122289, "maxRanks": 1, "type": "passive", "name": "Preemptive Care", "spellId": 440671, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 94679, "name": "Waste No Time / Miraculous Recovery", "type": "choice", "posX": 9000, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94689], "prev": [94683], "entries": [{"id": 117282, "definitionId": 122294, "maxRanks": 1, "type": "passive", "name": "Waste No Time", "spellId": 440681, "icon": "spell_nature_timestop", "index": 100}, {"id": 119332, "definitionId": 124232, "maxRanks": 1, "type": "passive", "name": "Miraculous Recovery", "spellId": 440674, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 94691, "name": "Assured Safety", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94690], "prev": [94698], "entries": [{"id": 117294, "definitionId": 122306, "maxRanks": 1, "type": "passive", "name": "Assured Safety", "spellId": 440766, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 94675, "name": "Divine Feathers / Save the Day", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94673], "prev": [94674], "entries": [{"id": 117278, "definitionId": 122290, "maxRanks": 1, "type": "passive", "name": "Divine Feathers", "spellId": 440670, "icon": "ability_priest_angelicfeather", "index": 100}, {"id": 119331, "definitionId": 124231, "maxRanks": 1, "type": "passive", "name": "Save the Day", "spellId": 440669, "icon": "priest_spell_leapoffaith_a", "index": 200}]}, {"id": 94689, "name": "Foreseen Circumstances", "type": "single", "posX": 9000, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94700], "prev": [94679], "entries": [{"id": 117292, "definitionId": 122304, "maxRanks": 1, "type": "passive", "name": "Foreseen Circumstances", "spellId": 440738, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 94690, "name": "Prophet's Will / Desperate Measures", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94691], "entries": [{"id": 117293, "definitionId": 122305, "maxRanks": 1, "type": "passive", "name": "Prophet's Will", "spellId": 433905, "icon": "ability_priest_clarityofpurpose", "index": 100}, {"id": 126068, "definitionId": 130900, "maxRanks": 1, "type": "passive", "name": "Desperate Measures", "spellId": 458718, "icon": "spell_holy_testoffaith", "index": 200}]}, {"id": 94673, "name": "Divine Providence", "type": "single", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94675], "entries": [{"id": 117276, "definitionId": 122288, "maxRanks": 1, "type": "passive", "name": "Divine Providence", "spellId": 440742, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 94700, "name": "Fatebender / Perfect Vision", "type": "choice", "posX": 9000, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94689], "entries": [{"id": 117303, "definitionId": 122315, "maxRanks": 1, "type": "passive", "name": "Fatebender", "spellId": 440743, "icon": "ability_priest_voidshift", "index": 100}, {"id": 119330, "definitionId": 124230, "maxRanks": 1, "type": "passive", "name": "Perfect Vision", "spellId": 440661, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 94687, "name": "Clairvoyance", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 20, "next": [], "prev": [94700, 94673, 94690], "entries": [{"id": 117290, "definitionId": 122302, "maxRanks": 1, "type": "passive", "name": "Clairvoyance", "spellId": 428940, "icon": "inv_ability_oraclepriest_clairvoyance", "index": 100}]}, {"id": 94684, "name": "Entropic Rift", "type": "single", "posX": 8400, "posY": 4500, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "subTreeId": 18, "requiresNode": 82654, "next": [94693, 94703, 94670], "prev": [], "entries": [{"id": 117287, "definitionId": 122299, "maxRanks": 1, "type": "passive", "name": "Entropic Rift", "spellId": 447444, "icon": "inv_ability_voidweaverpriest_entropicrift", "index": 100}], "freeNode": true}, {"id": 94693, "name": "No Escape / Dark Energy", "type": "choice", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94668], "prev": [94684], "entries": [{"id": 117296, "definitionId": 122308, "maxRanks": 1, "type": "passive", "name": "No Escape", "spellId": 451204, "icon": "spell_fire_twilighthellfire", "index": 100}, {"id": 123845, "definitionId": 128683, "maxRanks": 1, "type": "passive", "name": "Dark Energy", "spellId": 451018, "icon": "achievement_boss_triumvirate_darknaaru", "index": 200}]}, {"id": 94703, "name": "Void Blast", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94695], "prev": [94684], "entries": [{"id": 117306, "definitionId": 122318, "maxRanks": 1, "type": "active", "name": "Void Blast", "spellId": 450405, "icon": "inv_cosmicvoid_missile", "index": 100}]}, {"id": 94670, "name": "Inner Quietus", "type": "single", "posX": 9000, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "next": [100212], "prev": [94684], "entries": [{"id": 117273, "definitionId": 122285, "maxRanks": 1, "type": "passive", "name": "Inner Quietus", "spellId": 448278, "icon": "inv_cosmicvoid_buff", "index": 100}]}, {"id": 94668, "name": "Devour Matter / Darkening Horizon", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94692], "prev": [94693], "entries": [{"id": 117271, "definitionId": 122283, "maxRanks": 1, "type": "passive", "name": "Devour Matter", "spellId": 451840, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 117298, "definitionId": 122310, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 94695, "name": "Void Empowerment / Darkening Horizon", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94669], "prev": [94703], "entries": [{"id": 125821, "definitionId": 128681, "maxRanks": 1, "type": "passive", "name": "Void Empowerment", "spellId": 450138, "icon": "inv_cosmicvoid_nova", "index": 100}, {"id": 125982, "definitionId": 130813, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 100212, "name": "Depth of Shadows / Voidwraith", "type": "choice", "posX": 9000, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94696], "prev": [94670], "entries": [{"id": 123842, "definitionId": 128680, "maxRanks": 1, "type": "passive", "name": "Depth of Shadows", "spellId": 451308, "icon": "warlock_summon__voidlord", "index": 100}, {"id": 123841, "definitionId": 128679, "maxRanks": 1, "type": "passive", "name": "Voidwraith", "spellId": 451234, "icon": "warlock_curse_shadow", "index": 200}]}, {"id": 94692, "name": "Voidheart", "type": "single", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94668], "entries": [{"id": 117295, "definitionId": 122307, "maxRanks": 1, "type": "passive", "name": "Voidheart", "spellId": 449880, "icon": "inv_cosmicvoid_orb", "index": 100}]}, {"id": 94669, "name": "Void Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94695], "entries": [{"id": 117272, "definitionId": 122284, "maxRanks": 1, "type": "passive", "name": "Void Infusion", "spellId": 450612, "icon": "inv_misc_volatileshadow", "index": 100}]}, {"id": 94696, "name": "Void Leech / Embrace the Shadow", "type": "choice", "posX": 9000, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "next": [94694], "prev": [100212], "entries": [{"id": 117299, "definitionId": 122311, "maxRanks": 1, "type": "passive", "name": "Void Leech", "spellId": 451311, "icon": "spell_shadow_soulleech_2", "index": 100}, {"id": 123844, "definitionId": 128682, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadow", "spellId": 451569, "icon": "spell_shadow_shadesofdarkness", "index": 200}]}, {"id": 94694, "name": "Collapsing Void", "type": "single", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [], "prev": [94669, 94692, 94696], "entries": [{"id": 117297, "definitionId": 122309, "maxRanks": 1, "type": "passive", "name": "Collapsing Void", "spellId": 448403, "icon": "inv_cosmicvoid_groundsate", "index": 100}]}], "subTreeNodes": [{"id": 99801, "name": "Oracle / Voidweaver", "type": "subtree", "posX": 8400, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123290, "type": "subtree", "name": "Oracle", "traitSubTreeId": 20, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-oracle", "nodes": [94683, 94698, 94674, 94679, 94691, 94675, 94689, 94690, 94673, 94700, 94687]}, {"id": 123288, "type": "subtree", "name": "Voidweaver", "traitSubTreeId": 18, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-voidweaver", "nodes": [94684, 94693, 94703, 94670, 94668, 94695, 100212, 94692, 94669, 94696, 94694]}]}], "fullNodeOrder": [82552, 82553, 82554, 82555, 82556, 82557, 82558, 82559, 82560, 82561, 82563, 82564, 82566, 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, 82647, 82648, 82649, 82651, 82652, 82653, 82654, 82655, 82656, 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82665, 82666, 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, 82687, 82688, 82689, 82690, 82691, 82692, 82693, 82694, 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, 82715, 82716, 82717, 82718, 82719, 82720, 82721, 86730, 92225, 93170, 93171, 93172, 94668, 94669, 94670, 94673, 94674, 94675, 94676, 94677, 94678, 94679, 94680, 94681, 94683, 94684, 94685, 94686, 94687, 94688, 94689, 94690, 94691, 94692, 94693, 94694, 94695, 94696, 94697, 94698, 94699, 94700, 94702, 94703, 99800, 99801, 99802, 100212]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/priest_holy.json b/simc_support/game_data/data_files/trees/priest_holy.json index 138a87b..1c64389 100644 --- a/simc_support/game_data/data_files/trees/priest_holy.json +++ b/simc_support/game_data/data_files/trees/priest_holy.json @@ -1 +1 @@ -{"traitTreeId": 795, "className": "Priest", "classId": 5, "specName": "Holy", "specId": 257, "classNodes": [{"id": 82717, "name": "Renew", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82718, 82714], "prev": [], "entries": [{"id": 103869, "definitionId": 108874, "maxRanks": 1, "type": "active", "name": "Renew", "spellId": 139, "icon": "spell_holy_renew", "index": 100}], "freeNode": true}, {"id": 82715, "name": "Dispel Magic", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82714, 82705, 82695], "prev": [], "entries": [{"id": 103867, "definitionId": 108872, "maxRanks": 1, "type": "active", "name": "Dispel Magic", "spellId": 528, "icon": "spell_nature_nullifydisease", "index": 100}]}, {"id": 82713, "name": "Shadowfiend", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82695, 82712], "prev": [], "entries": [{"id": 103865, "definitionId": 108870, "maxRanks": 1, "type": "active", "name": "Shadowfiend", "spellId": 34433, "icon": "spell_shadow_shadowfiend", "index": 100}]}, {"id": 82718, "name": "Prayer of Mending", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82719, 82701, 82720], "prev": [82717], "entries": [{"id": 103870, "definitionId": 108875, "maxRanks": 1, "type": "active", "name": "Prayer of Mending", "spellId": 33076, "icon": "spell_holy_prayerofmendingtga", "index": 100}], "freeNode": true}, {"id": 82714, "name": "Improved Flash Heal", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82701, 82707, 82703], "prev": [82715, 82717], "entries": [{"id": 103866, "definitionId": 108871, "maxRanks": 1, "type": "passive", "name": "Improved Flash Heal", "spellId": 393870, "icon": "spell_holy_heal", "index": 100}]}, {"id": 82705, "name": "Improved Purify", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [82703], "prev": [82715], "entries": [{"id": 103855, "definitionId": 108860, "maxRanks": 1, "type": "passive", "name": "Improved Purify", "spellId": 390632, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 82695, "name": "Psychic Voice / Petrifying Scream", "type": "choice", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82703, 82556], "prev": [82715, 82713], "entries": [{"id": 103845, "definitionId": 108850, "maxRanks": 1, "type": "passive", "name": "Psychic Voice", "spellId": 196704, "icon": "ability_warrior_commandingshout", "index": 100}, {"id": 114588, "definitionId": 119593, "maxRanks": 1, "type": "passive", "name": "Petrifying Scream", "spellId": 55676, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82712, "name": "Shadow Word: Death", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [82556, 82711], "prev": [82713], "entries": [{"id": 103864, "definitionId": 108869, "maxRanks": 1, "type": "active", "name": "Shadow Word: Death", "spellId": 32379, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82719, "name": "Focused Mending", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82720], "prev": [82718], "entries": [{"id": 103871, "definitionId": 108876, "maxRanks": 1, "type": "passive", "name": "Focused Mending", "spellId": 372354, "icon": "achievement_bg_returnxflags_def_wsg", "index": 100}]}, {"id": 82701, "name": "Holy Nova", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82720, 82700, 82716], "prev": [82714, 82718], "entries": [{"id": 103851, "definitionId": 108856, "maxRanks": 1, "type": "active", "name": "Holy Nova", "spellId": 132157, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82707, "name": "Protective Light / From Darkness Comes Light", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82716], "prev": [82714], "entries": [{"id": 103858, "definitionId": 108863, "maxRanks": 1, "type": "passive", "name": "Protective Light", "spellId": 193063, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 103857, "definitionId": 108862, "maxRanks": 1, "type": "passive", "name": "From Darkness Comes Light", "spellId": 390615, "icon": "spell_holy_flashheal", "index": 200}]}, {"id": 82703, "name": "Angelic Feather", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82716, 82693, 82708], "prev": [82714, 82705, 82695], "entries": [{"id": 103853, "definitionId": 108858, "maxRanks": 1, "type": "active", "name": "Angelic Feather", "spellId": 121536, "icon": "ability_priest_angelicfeather", "index": 0}]}, {"id": 82556, "name": "Phantasm", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82708, 82710], "prev": [82695, 82712], "entries": [{"id": 103834, "definitionId": 108839, "maxRanks": 1, "type": "passive", "name": "Phantasm", "spellId": 108942, "icon": "ability_priest_phantasm", "index": 100}]}, {"id": 82711, "name": "Death and Madness", "type": "single", "posX": 6900, "posY": 2700, "maxRanks": 1, "next": [82710, 82688], "prev": [82712], "entries": [{"id": 103863, "definitionId": 108868, "maxRanks": 1, "type": "passive", "name": "Death and Madness", "spellId": 321291, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82720, "name": "Spell Warding / Blessed Recovery", "type": "choice", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [82721, 82699, 82696], "prev": [82718, 82701, 82719], "entries": [{"id": 103872, "definitionId": 108877, "maxRanks": 1, "type": "passive", "name": "Spell Warding", "spellId": 390667, "icon": "spell_holy_spellwarding", "index": 100}, {"id": 103677, "definitionId": 108682, "maxRanks": 1, "type": "passive", "name": "Blessed Recovery", "spellId": 390767, "icon": "spell_holy_blessedrecovery", "index": 200}]}, {"id": 82700, "name": "Rhapsody", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [82699], "prev": [82701], "entries": [{"id": 103850, "definitionId": 108855, "maxRanks": 1, "type": "passive", "name": "Rhapsody", "spellId": 390622, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82716, "name": "Leap of Faith", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [82699, 82702, 82694], "prev": [82703, 82701, 82707], "entries": [{"id": 103868, "definitionId": 108873, "maxRanks": 1, "type": "active", "name": "Leap of Faith", "spellId": 73325, "icon": "priest_spell_leapoffaith_a", "index": 100}]}, {"id": 82693, "name": "Shackle Undead", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [82694], "prev": [82703], "entries": [{"id": 103843, "definitionId": 108848, "maxRanks": 1, "type": "active", "name": "Shackle Undead", "spellId": 9484, "icon": "spell_nature_slow", "index": 100}]}, {"id": 82708, "name": "Sheer Terror / Void Tendrils", "type": "choice", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [82694, 82691], "prev": [82703, 82556], "entries": [{"id": 103860, "definitionId": 108865, "maxRanks": 1, "type": "passive", "name": "Sheer Terror", "spellId": 390919, "icon": "spell_nzinsanity_fearofdeath", "index": 100}, {"id": 103859, "definitionId": 108864, "maxRanks": 1, "type": "active", "name": "Void Tendrils", "spellId": 108920, "icon": "spell_priest_voidtendrils", "index": 200}]}, {"id": 82710, "name": "Mind Control / Dominate Mind", "type": "choice", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [82691, 82689], "prev": [82556, 82711], "entries": [{"id": 103862, "definitionId": 108867, "maxRanks": 1, "type": "active", "name": "Mind Control", "spellId": 605, "icon": "spell_shadow_shadowworddominate", "index": 100}, {"id": 103678, "definitionId": 108683, "maxRanks": 1, "type": "active", "name": "Dominate Mind", "spellId": 205364, "icon": "spell_priest_void-flay", "index": 200}]}, {"id": 82721, "name": "Words of the Pious", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696], "prev": [82720], "entries": [{"id": 103873, "definitionId": 108878, "maxRanks": 1, "type": "passive", "name": "Words of the Pious", "spellId": 377438, "icon": "ability_priest_clarityofwill", "index": 200}]}, {"id": 82699, "name": "Mass Dispel", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696, 82698, 82706], "prev": [82716, 82720, 82700], "entries": [{"id": 103849, "definitionId": 108854, "maxRanks": 1, "type": "active", "name": "Mass Dispel", "spellId": 32375, "icon": "spell_arcane_massdispel", "index": 100}]}, {"id": 82702, "name": "Move with Grace", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706], "prev": [82716], "entries": [{"id": 103852, "definitionId": 108857, "maxRanks": 1, "type": "passive", "name": "Move with Grace", "spellId": 390620, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82694, "name": "Power Infusion", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706, 82683, 82692], "prev": [82716, 82693, 82708], "entries": [{"id": 103844, "definitionId": 108849, "maxRanks": 1, "type": "active", "name": "Power Infusion", "spellId": 10060, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 82691, "name": "Sanguine Teachings / Vampiric Embrace", "type": "choice", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82692, 82690, 82689], "prev": [82710, 82708], "entries": [{"id": 114735, "definitionId": 108846, "maxRanks": 1, "type": "passive", "name": "Sanguine Teachings", "spellId": 373218, "icon": "inv_archaeology_80_zandalari_sanguinetotem", "index": 100}, {"id": 103841, "definitionId": 119742, "maxRanks": 1, "type": "active", "name": "Vampiric Embrace", "spellId": 15286, "icon": "spell_shadow_unsummonbuilding", "index": 200}]}, {"id": 82688, "name": "Tithe Evasion", "type": "single", "posX": 6900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82689], "prev": [82711], "entries": [{"id": 103838, "definitionId": 108843, "maxRanks": 1, "type": "passive", "name": "Tithe Evasion", "spellId": 373223, "icon": "spell_nzinsanity_bloodthirst", "index": 100}]}, {"id": 82696, "name": "Inspiration", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82721, 82699, 82720], "entries": [{"id": 103846, "definitionId": 108851, "maxRanks": 1, "type": "passive", "name": "Inspiration", "spellId": 390676, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 82698, "name": "Mental Agility", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82699], "entries": [{"id": 103848, "definitionId": 108853, "maxRanks": 1, "type": "passive", "name": "Mental Agility", "spellId": 341167, "icon": "spell_holy_dispelmagic", "index": 100}]}, {"id": 82706, "name": "Body and Soul", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697, 82684], "prev": [82694, 82699, 82702], "entries": [{"id": 103856, "definitionId": 108861, "maxRanks": 1, "type": "passive", "name": "Body and Soul", "spellId": 64129, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82683, "name": "Twins of the Sun Priestess", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684], "prev": [82694], "entries": [{"id": 103832, "definitionId": 108837, "maxRanks": 1, "type": "passive", "name": "Twins of the Sun Priestess", "spellId": 373466, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82692, "name": "Void Shield", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684, 82709], "prev": [82691, 82694], "entries": [{"id": 103842, "definitionId": 108847, "maxRanks": 1, "type": "passive", "name": "Void Shield", "spellId": 280749, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 82690, "name": "San'layn", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82691], "entries": [{"id": 103840, "definitionId": 108845, "maxRanks": 1, "type": "passive", "name": "San'layn", "spellId": 199855, "icon": "achievement_boss_lanathel", "index": 100}]}, {"id": 82689, "name": "Apathy", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82710, 82688, 82691], "entries": [{"id": 103839, "definitionId": 108844, "maxRanks": 1, "type": "passive", "name": "Apathy", "spellId": 390668, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 82697, "name": "Unwavering Will", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82678, 82682], "prev": [82706, 82696, 82698], "entries": [{"id": 103847, "definitionId": 108852, "maxRanks": 2, "type": "passive", "name": "Unwavering Will", "spellId": 373456, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 82684, "name": "Twist of Fate", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82682, 82685], "prev": [82706, 82692, 82683], "entries": [{"id": 103833, "definitionId": 108838, "maxRanks": 2, "type": "passive", "name": "Twist of Fate", "spellId": 390972, "icon": "spell_shadow_mindtwisting", "index": 100}]}, {"id": 82709, "name": "Throes of Pain", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82685, 82687], "prev": [82692, 82690, 82689], "entries": [{"id": 103861, "definitionId": 108866, "maxRanks": 2, "type": "passive", "name": "Throes of Pain", "spellId": 377422, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 82678, "name": "Angel's Mercy / Binding Heals", "type": "choice", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82677, 82679], "prev": [82697], "entries": [{"id": 103825, "definitionId": 108830, "maxRanks": 1, "type": "passive", "name": "Angel's Mercy", "spellId": 238100, "icon": "spell_holy_testoffaith", "index": 100}, {"id": 103824, "definitionId": 108829, "maxRanks": 1, "type": "passive", "name": "Binding Heals", "spellId": 368275, "icon": "spell_holy_blindingheal", "index": 200}]}, {"id": 82682, "name": "Divine Star / Halo", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82679, 82681], "prev": [82697, 82684], "entries": [{"id": 103831, "definitionId": 108836, "maxRanks": 1, "type": "active", "name": "Divine Star", "spellId": 110744, "icon": "spell_priest_divinestar", "index": 200}, {"id": 103830, "definitionId": 108835, "maxRanks": 1, "type": "active", "name": "Halo", "spellId": 120517, "icon": "ability_priest_halo", "index": 300}]}, {"id": 82685, "name": "Translucent Image", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82681, 82686], "prev": [82709, 82684], "entries": [{"id": 103835, "definitionId": 108840, "maxRanks": 1, "type": "passive", "name": "Translucent Image", "spellId": 373446, "icon": "spell_nature_invisibilty", "index": 100}]}, {"id": 82687, "name": "Cauterizing Shadows", "type": "single", "posX": 6300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82686, 82672], "prev": [82709], "entries": [{"id": 103837, "definitionId": 108842, "maxRanks": 1, "type": "passive", "name": "Cauterizing Shadows", "spellId": 459990, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82677, "name": "Surge of Light", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82676], "prev": [82678], "entries": [{"id": 103823, "definitionId": 108828, "maxRanks": 1, "type": "passive", "name": "Surge of Light", "spellId": 109186, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 82679, "name": "Light's Inspiration", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82676, 82675], "prev": [82682, 82678], "entries": [{"id": 103826, "definitionId": 108831, "maxRanks": 2, "type": "passive", "name": "Light's Inspiration", "spellId": 373450, "icon": "spell_holy_restoration", "index": 100}]}, {"id": 82681, "name": "Crystalline Reflection", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82675, 82674], "prev": [82685, 82682], "entries": [{"id": 103829, "definitionId": 108834, "maxRanks": 2, "type": "passive", "name": "Crystalline Reflection", "spellId": 373457, "icon": "ability_priest_reflectiveshield", "index": 100}]}, {"id": 82686, "name": "Improved Fade", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82674, 82673], "prev": [82685, 82687], "entries": [{"id": 103836, "definitionId": 108841, "maxRanks": 2, "type": "passive", "name": "Improved Fade", "spellId": 390670, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 82672, "name": "Manipulation", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82673], "prev": [82687], "entries": [{"id": 103818, "definitionId": 108823, "maxRanks": 1, "type": "passive", "name": "Manipulation", "spellId": 459985, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82676, "name": "Benevolence / Power Word: Life", "type": "choice", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82677, 82679], "entries": [{"id": 115884, "definitionId": 120896, "maxRanks": 1, "type": "passive", "name": "Benevolence", "spellId": 415416, "icon": "ability_priest_spiritoftheredeemer", "index": 100}, {"id": 103822, "definitionId": 108827, "maxRanks": 1, "type": "active", "name": "Power Word: Life", "spellId": 373481, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 82675, "name": "Angelic Bulwark", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82679, 82681], "entries": [{"id": 103821, "definitionId": 108826, "maxRanks": 1, "type": "passive", "name": "Angelic Bulwark", "spellId": 108945, "icon": "ability_priest_angelicbulwark", "index": 100}]}, {"id": 82674, "name": "Essence Devourer / Void Shift", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82681, 82686], "entries": [{"id": 115883, "definitionId": 120895, "maxRanks": 1, "type": "passive", "name": "Essence Devourer", "spellId": 415479, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}, {"id": 103820, "definitionId": 108825, "maxRanks": 1, "type": "active", "name": "Void Shift", "spellId": 108968, "icon": "spell_priest_voidshift", "index": 200}]}, {"id": 82673, "name": "Phantom Reach", "type": "single", "posX": 6300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82672, 82686], "entries": [{"id": 103819, "definitionId": 108824, "maxRanks": 1, "type": "passive", "name": "Phantom Reach", "spellId": 459559, "icon": "spell_shadow_chilltouch", "index": 100}]}], "specNodes": [{"id": 82638, "name": "Holy Word: Serenity", "type": "single", "posX": 12900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82631, 82637, 82639], "prev": [], "entries": [{"id": 103775, "definitionId": 108780, "maxRanks": 1, "type": "active", "name": "Holy Word: Serenity", "spellId": 2050, "icon": "spell_holy_persuitofjustice", "index": 100}]}, {"id": 82631, "name": "Holy Word: Sanctify", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82632, 82630], "prev": [82638], "entries": [{"id": 103766, "definitionId": 108771, "maxRanks": 1, "type": "active", "name": "Holy Word: Sanctify", "spellId": 34861, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 82637, "name": "Guardian Spirit", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82636], "prev": [82638], "entries": [{"id": 103774, "definitionId": 108779, "maxRanks": 1, "type": "active", "name": "Guardian Spirit", "spellId": 47788, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 82639, "name": "Holy Word: Chastise", "type": "single", "posX": 13500, "posY": 2100, "maxRanks": 1, "next": [82619, 82640], "prev": [82638], "entries": [{"id": 103776, "definitionId": 108781, "maxRanks": 1, "type": "active", "name": "Holy Word: Chastise", "spellId": 88625, "icon": "spell_holy_chastise", "index": 100}]}, {"id": 82632, "name": "Prayer of Healing", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82624, 82633, 82630], "prev": [82631], "entries": [{"id": 103767, "definitionId": 108772, "maxRanks": 1, "type": "active", "name": "Prayer of Healing", "spellId": 596, "icon": "spell_holy_prayerofhealing02", "index": 100}]}, {"id": 82636, "name": "Guardian Angel / Guardians of the Light", "type": "choice", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82630, 82635, 82620], "prev": [82637], "entries": [{"id": 103773, "definitionId": 108778, "maxRanks": 1, "type": "passive", "name": "Guardian Angel", "spellId": 200209, "icon": "ability_priest_pathofthedevout", "index": 100}, {"id": 103772, "definitionId": 108777, "maxRanks": 1, "type": "passive", "name": "Guardians of the Light", "spellId": 196437, "icon": "spell_holy_guardianspirit", "index": 200}]}, {"id": 82619, "name": "Censure", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82620], "prev": [82639], "entries": [{"id": 103753, "definitionId": 108758, "maxRanks": 1, "type": "passive", "name": "Censure", "spellId": 200199, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 82640, "name": "Empyreal Blaze", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [82620, 82607], "prev": [82639], "entries": [{"id": 103777, "definitionId": 108782, "maxRanks": 1, "type": "passive", "name": "Empyreal Blaze", "spellId": 372616, "icon": "ability_priest_empyrealblaze", "index": 100}]}, {"id": 82624, "name": "Circle of Healing", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82625, 82623], "prev": [82632], "entries": [{"id": 103758, "definitionId": 108763, "maxRanks": 1, "type": "active", "name": "Circle of Healing", "spellId": 204883, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 82633, "name": "Revitalizing Prayers / Sanctified Prayers", "type": "choice", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82623, 82634], "prev": [82632], "entries": [{"id": 103769, "definitionId": 108774, "maxRanks": 1, "type": "passive", "name": "Revitalizing Prayers", "spellId": 391208, "icon": "inv_staff_2h_artifacttome_d_06", "index": 100}, {"id": 103768, "definitionId": 108773, "maxRanks": 1, "type": "passive", "name": "Sanctified Prayers", "spellId": 196489, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 82630, "name": "Cosmic Ripple", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82634, 82621], "prev": [82636, 82632, 82631], "entries": [{"id": 103765, "definitionId": 108770, "maxRanks": 1, "type": "passive", "name": "Cosmic Ripple", "spellId": 238136, "icon": "spell_holy_summonlightwell", "index": 100}]}, {"id": 82635, "name": "Afterlife", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82621], "prev": [82636], "entries": [{"id": 103771, "definitionId": 108776, "maxRanks": 1, "type": "passive", "name": "Afterlife", "spellId": 196707, "icon": "inv_enchant_essencemagiclarge", "index": 100}]}, {"id": 82620, "name": "Renewed Faith", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82621, 82618, 82641], "prev": [82640, 82636, 82619], "entries": [{"id": 103754, "definitionId": 108759, "maxRanks": 1, "type": "passive", "name": "Renewed Faith", "spellId": 341997, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 82607, "name": "Burning Vehemence", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "next": [82641], "prev": [82640], "entries": [{"id": 103739, "definitionId": 108744, "maxRanks": 1, "type": "passive", "name": "Burning Vehemence", "spellId": 372307, "icon": "ability_paladin_sacredcleansing", "index": 100}]}, {"id": 82625, "name": "Prayer Circle / Healing Chorus", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82626], "prev": [82624], "entries": [{"id": 103760, "definitionId": 108765, "maxRanks": 1, "type": "passive", "name": "Prayer Circle", "spellId": 321377, "icon": "spell_paladin_divinecircle", "index": 100}, {"id": 103759, "definitionId": 108764, "maxRanks": 1, "type": "passive", "name": "Healing Chorus", "spellId": 390881, "icon": "spell_holy_circleofrenewal", "index": 200}]}, {"id": 82623, "name": "Prayerful Litany", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622, 82627], "prev": [82633, 82624], "entries": [{"id": 103757, "definitionId": 108762, "maxRanks": 1, "type": "passive", "name": "Prayerful Litany", "spellId": 391209, "icon": "spell_holy_prayerofhealing02", "index": 100}]}, {"id": 82634, "name": "Trail of Light", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622], "prev": [82630, 82633], "entries": [{"id": 103770, "definitionId": 108775, "maxRanks": 1, "type": "passive", "name": "Trail of Light", "spellId": 200128, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 82621, "name": "Divine Hymn", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622, 82613, 82617], "prev": [82635, 82630, 82620], "entries": [{"id": 103755, "definitionId": 108760, "maxRanks": 1, "type": "active", "name": "Divine Hymn", "spellId": 64843, "icon": "spell_holy_divinehymn", "index": 100}]}, {"id": 82618, "name": "Enlightenment", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82617], "prev": [82620], "entries": [{"id": 103752, "definitionId": 108757, "maxRanks": 1, "type": "passive", "name": "Enlightenment", "spellId": 193155, "icon": "spell_arcane_mindmastery", "index": 100}]}, {"id": 82641, "name": "Benediction / Holy Mending", "type": "choice", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82617, 82642], "prev": [82607, 82620], "entries": [{"id": 103779, "definitionId": 108784, "maxRanks": 1, "type": "passive", "name": "Benediction", "spellId": 193157, "icon": "spell_monk_diffusemagic", "index": 100}, {"id": 103778, "definitionId": 108783, "maxRanks": 1, "type": "passive", "name": "Holy Mending", "spellId": 391154, "icon": "spell_holy_healingfocus", "index": 200}]}, {"id": 82626, "name": "Orison", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82627, 82628], "prev": [82625], "entries": [{"id": 103761, "definitionId": 108766, "maxRanks": 1, "type": "passive", "name": "Orison", "spellId": 390947, "icon": "spell_holy_fanaticism", "index": 100}]}, {"id": 82622, "name": "Everlasting Light", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614, 82627], "prev": [82634, 82621, 82623], "entries": [{"id": 103756, "definitionId": 108761, "maxRanks": 1, "type": "passive", "name": "Everlasting Light", "spellId": 391161, "icon": "inv_mace_1h_artifactheartofkure_d_01", "index": 100}]}, {"id": 82613, "name": "Gales of Song", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614], "prev": [82621], "entries": [{"id": 103747, "definitionId": 108752, "maxRanks": 1, "type": "passive", "name": "Gales of Song", "spellId": 372370, "icon": "inv_misc_volatileair", "index": 100}]}, {"id": 82617, "name": "Symbol of Hope", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614, 82616], "prev": [82641, 82621, 82618], "entries": [{"id": 103751, "definitionId": 108756, "maxRanks": 1, "type": "active", "name": "Symbol of Hope", "spellId": 64901, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82642, "name": "Divine Service", "type": "single", "posX": 14700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82616, 82615], "prev": [82641], "entries": [{"id": 103780, "definitionId": 108785, "maxRanks": 1, "type": "passive", "name": "Divine Service", "spellId": 391233, "icon": "spell_holy_prayerofspirit", "index": 100}]}, {"id": 82627, "name": "Crisis Management", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82628, 82610], "prev": [82623, 82622, 82626], "entries": [{"id": 103762, "definitionId": 108767, "maxRanks": 2, "type": "passive", "name": "Crisis Management", "spellId": 390954, "icon": "spell_holy_flashheal", "index": 100}]}, {"id": 82614, "name": "Prismatic Echoes", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82610, 82612], "prev": [82613, 82622, 82617], "entries": [{"id": 103748, "definitionId": 108753, "maxRanks": 2, "type": "passive", "name": "Prismatic Echoes", "spellId": 390967, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 82616, "name": "Prayers of the Virtuous", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82612, 82615], "prev": [82617, 82642], "entries": [{"id": 103750, "definitionId": 108755, "maxRanks": 2, "type": "passive", "name": "Prayers of the Virtuous", "spellId": 390977, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 82628, "name": "Pontifex", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82604, 82629], "prev": [82627, 82626], "entries": [{"id": 103763, "definitionId": 108768, "maxRanks": 1, "type": "passive", "name": "Pontifex", "spellId": 390980, "icon": "spell_priest_pontifex", "index": 100}]}, {"id": 82610, "name": "Apotheosis / Holy Word: Salvation", "type": "choice", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82629, 82608, 82611], "prev": [82627, 82614], "entries": [{"id": 103743, "definitionId": 108748, "maxRanks": 1, "type": "active", "name": "Apotheosis", "spellId": 200183, "icon": "ability_priest_ascension", "index": 100}, {"id": 103742, "definitionId": 108747, "maxRanks": 1, "type": "active", "name": "Holy Word: Salvation", "spellId": 265202, "icon": "ability_priest_archangel", "index": 200}]}, {"id": 82612, "name": "Miracle Worker", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82611, 82609], "prev": [82614, 82616], "entries": [{"id": 103745, "definitionId": 108750, "maxRanks": 1, "type": "passive", "name": "Miracle Worker", "spellId": 235587, "icon": "spell_holy_persuitofjustice", "index": 200}]}, {"id": 82615, "name": "Say Your Prayers", "type": "single", "posX": 14700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82609, 82606], "prev": [82616, 82642], "entries": [{"id": 103749, "definitionId": 108754, "maxRanks": 1, "type": "passive", "name": "Say Your Prayers", "spellId": 391186, "icon": "ability_priest_bindingprayers", "index": 100}]}, {"id": 82604, "name": "Resonant Words", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82603], "prev": [82628], "entries": [{"id": 103735, "definitionId": 108740, "maxRanks": 2, "type": "passive", "name": "Resonant Words", "spellId": 372309, "icon": "spell_holy_holybolt", "index": 100}]}, {"id": 82629, "name": "Light of the Naaru", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82603], "prev": [82628, 82610], "entries": [{"id": 103764, "definitionId": 108769, "maxRanks": 2, "type": "passive", "name": "Light of the Naaru", "spellId": 196985, "icon": "inv_pet_naaru", "index": 100}]}, {"id": 82608, "name": "Answered Prayers", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82554], "prev": [82610], "entries": [{"id": 103740, "definitionId": 108745, "maxRanks": 2, "type": "passive", "name": "Answered Prayers", "spellId": 391387, "icon": "inv_staff_2h_artifactheartofkure_d_06", "index": 100}]}, {"id": 82611, "name": "Voice of Harmony", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82554], "prev": [82612, 82610], "entries": [{"id": 103744, "definitionId": 108749, "maxRanks": 2, "type": "passive", "name": "Voice of Harmony", "spellId": 390994, "icon": "ability_priest_heavanlyvoice", "index": 100}]}, {"id": 82609, "name": "Desperate Times", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82605], "prev": [82615, 82612], "entries": [{"id": 103741, "definitionId": 108746, "maxRanks": 2, "type": "passive", "name": "Desperate Times", "spellId": 391381, "icon": "ability_pvp_defenderoftheweak", "index": 100}]}, {"id": 82606, "name": "Epiphany", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82605], "prev": [82615], "entries": [{"id": 103738, "definitionId": 108743, "maxRanks": 2, "type": "passive", "name": "Epiphany", "spellId": 414553, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 82603, "name": "Lightweaver / Lightwell", "type": "choice", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82629, 82604], "entries": [{"id": 103734, "definitionId": 108739, "maxRanks": 1, "type": "passive", "name": "Lightweaver", "spellId": 390992, "icon": "spell_holy_greaterheal", "index": 100}, {"id": 103733, "definitionId": 108738, "maxRanks": 1, "type": "active", "name": "Lightwell", "spellId": 372835, "icon": "spell_holy_summonlightwell", "index": 200}]}, {"id": 82554, "name": "Divine Image", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82611, 82608], "entries": [{"id": 103675, "definitionId": 108680, "maxRanks": 1, "type": "passive", "name": "Divine Image", "spellId": 392988, "icon": "inv_staff_2h_artifactheartofkure_d_04", "index": 200}]}, {"id": 82605, "name": "Restitution / Divine Word", "type": "choice", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82606, 82609], "entries": [{"id": 103737, "definitionId": 108742, "maxRanks": 1, "type": "passive", "name": "Restitution", "spellId": 391124, "icon": "inv_staff_2h_artifactheartofkure_d_03", "index": 100}, {"id": 103676, "definitionId": 108681, "maxRanks": 1, "type": "active", "name": "Divine Word", "spellId": 372760, "icon": "spell_priest_chakra", "index": 200}]}], "heroNodes": [{"id": 94683, "name": "Premonition", "type": "single", "posX": 8400, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 20, "next": [94698, 94674, 94679], "prev": [], "entries": [{"id": 117286, "definitionId": 122298, "maxRanks": 1, "type": "active", "name": "Premonition", "spellId": 428924, "icon": "inv_ability_oraclepriest_premonitioninsight", "index": 100}], "freeNode": true}, {"id": 94697, "name": "Power Surge", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 19, "requiresNode": 0, "next": [94677, 94681, 94699], "prev": [], "entries": [{"id": 117300, "definitionId": 122312, "maxRanks": 1, "type": "passive", "name": "Power Surge", "spellId": 453109, "icon": "inv_ability_holyfire_groundstate", "index": 100}], "freeNode": true}, {"id": 94698, "name": "Preventive Measures", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94691], "prev": [94683], "entries": [{"id": 117301, "definitionId": 122313, "maxRanks": 1, "type": "passive", "name": "Preventive Measures", "spellId": 440662, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 94674, "name": "Preemptive Care", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94675], "prev": [94683], "entries": [{"id": 117277, "definitionId": 122289, "maxRanks": 1, "type": "passive", "name": "Preemptive Care", "spellId": 440671, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 94679, "name": "Waste No Time / Miraculous Recovery", "type": "choice", "posX": 9000, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94689], "prev": [94683], "entries": [{"id": 117282, "definitionId": 122294, "maxRanks": 1, "type": "passive", "name": "Waste No Time", "spellId": 440681, "icon": "spell_nature_timestop", "index": 100}, {"id": 119332, "definitionId": 124232, "maxRanks": 1, "type": "passive", "name": "Miraculous Recovery", "spellId": 440674, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 94677, "name": "Perfected Form", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "next": [94686], "prev": [94697], "entries": [{"id": 117280, "definitionId": 122292, "maxRanks": 1, "type": "passive", "name": "Perfected Form", "spellId": 453917, "icon": "inv_ability_holyfire_buff", "index": 100}]}, {"id": 94681, "name": "Resonant Energy", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94680], "prev": [94697], "entries": [{"id": 117284, "definitionId": 122296, "maxRanks": 1, "type": "passive", "name": "Resonant Energy", "spellId": 453845, "icon": "ability_priest_halo", "index": 100}]}, {"id": 94699, "name": "Manifested Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94688], "prev": [94697], "entries": [{"id": 117302, "definitionId": 122314, "maxRanks": 1, "type": "passive", "name": "Manifested Power", "spellId": 453783, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 94691, "name": "Assured Safety", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94690], "prev": [94698], "entries": [{"id": 117294, "definitionId": 122306, "maxRanks": 1, "type": "passive", "name": "Assured Safety", "spellId": 440766, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 94675, "name": "Divine Feathers / Save the Day", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94673], "prev": [94674], "entries": [{"id": 117278, "definitionId": 122290, "maxRanks": 1, "type": "passive", "name": "Divine Feathers", "spellId": 440670, "icon": "ability_priest_angelicfeather", "index": 100}, {"id": 119331, "definitionId": 124231, "maxRanks": 1, "type": "passive", "name": "Save the Day", "spellId": 440669, "icon": "priest_spell_leapoffaith_a", "index": 200}]}, {"id": 94689, "name": "Foreseen Circumstances", "type": "single", "posX": 9000, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94700], "prev": [94679], "entries": [{"id": 117292, "definitionId": 122304, "maxRanks": 1, "type": "passive", "name": "Foreseen Circumstances", "spellId": 440738, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 94686, "name": "Shock Pulse / Incessant Screams", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94678], "prev": [94677], "entries": [{"id": 117289, "definitionId": 122301, "maxRanks": 1, "type": "passive", "name": "Shock Pulse", "spellId": 453852, "icon": "spell_priest_pathofdevout", "index": 100}, {"id": 125083, "definitionId": 129915, "maxRanks": 1, "type": "passive", "name": "Incessant Screams", "spellId": 453918, "icon": "spell_shadow_psychicscream", "index": 200}]}, {"id": 94680, "name": "Word of Supremacy / Heightened Alteration", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94676], "prev": [94681], "entries": [{"id": 117283, "definitionId": 122295, "maxRanks": 1, "type": "passive", "name": "Word of Supremacy", "spellId": 453726, "icon": "spell_holy_wordfortitude", "index": 100}, {"id": 125084, "definitionId": 129916, "maxRanks": 1, "type": "passive", "name": "Heightened Alteration", "spellId": 453729, "icon": "inv_enchant_essenceeternallarge", "index": 200}]}, {"id": 94688, "name": "Empowered Surges", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94685], "prev": [94699], "entries": [{"id": 117291, "definitionId": 122303, "maxRanks": 1, "type": "passive", "name": "Empowered Surges", "spellId": 453799, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 94690, "name": "Prophet's Will / Desperate Measures", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94691], "entries": [{"id": 117293, "definitionId": 122305, "maxRanks": 1, "type": "passive", "name": "Prophet's Will", "spellId": 433905, "icon": "ability_priest_clarityofpurpose", "index": 100}, {"id": 126068, "definitionId": 130900, "maxRanks": 1, "type": "passive", "name": "Desperate Measures", "spellId": 458718, "icon": "spell_holy_testoffaith", "index": 200}]}, {"id": 94673, "name": "Divine Providence", "type": "single", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94675], "entries": [{"id": 117276, "definitionId": 122288, "maxRanks": 1, "type": "passive", "name": "Divine Providence", "spellId": 440742, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 94700, "name": "Fatebender / Perfect Vision", "type": "choice", "posX": 9000, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94689], "entries": [{"id": 117303, "definitionId": 122315, "maxRanks": 1, "type": "passive", "name": "Fatebender", "spellId": 440743, "icon": "ability_priest_voidshift", "index": 100}, {"id": 119330, "definitionId": 124230, "maxRanks": 1, "type": "passive", "name": "Perfect Vision", "spellId": 440661, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 94678, "name": "Energy Compression / Sustained Potency", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94702], "prev": [94686], "entries": [{"id": 117281, "definitionId": 122293, "maxRanks": 1, "type": "passive", "name": "Energy Compression", "spellId": 449874, "icon": "spell_holy_circleofrenewal", "index": 100}, {"id": 125085, "definitionId": 129917, "maxRanks": 1, "type": "passive", "name": "Sustained Potency", "spellId": 454001, "icon": "ability_priest_ascension", "index": 200}]}, {"id": 94676, "name": "Concentrated Infusion", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 82694, "next": [94702], "prev": [94680], "entries": [{"id": 117279, "definitionId": 122291, "maxRanks": 1, "type": "passive", "name": "Concentrated Infusion", "spellId": 453844, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 94685, "name": "Energy Cycle", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "next": [94702], "prev": [94688], "entries": [{"id": 117288, "definitionId": 122300, "maxRanks": 1, "type": "passive", "name": "Energy Cycle", "spellId": 453828, "icon": "ability_priest_voidshift", "index": 100}]}, {"id": 94687, "name": "Clairvoyance", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 20, "next": [], "prev": [94700, 94673, 94690], "entries": [{"id": 117290, "definitionId": 122302, "maxRanks": 1, "type": "passive", "name": "Clairvoyance", "spellId": 428940, "icon": "inv_inscription_vantusrune_progenitor", "index": 100}]}, {"id": 94702, "name": "Divine Halo", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [], "prev": [94678, 94685, 94676], "entries": [{"id": 117305, "definitionId": 122317, "maxRanks": 1, "type": "passive", "name": "Divine Halo", "spellId": 449806, "icon": "inv_ability_holyfire_nova", "index": 100}]}], "subTreeNodes": [{"id": 99802, "name": "Oracle / Archon", "type": "subtree", "posX": 7500, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123292, "type": "subtree", "name": "Oracle", "traitSubTreeId": 20, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-oracle", "nodes": [94683, 94698, 94674, 94679, 94691, 94675, 94689, 94690, 94673, 94700, 94687]}, {"id": 123291, "type": "subtree", "name": "Archon", "traitSubTreeId": 19, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-archon", "nodes": [94697, 94677, 94681, 94699, 94686, 94680, 94688, 94678, 94676, 94685, 94702]}]}], "fullNodeOrder": [82552, 82553, 82554, 82555, 82556, 82557, 82558, 82559, 82560, 82561, 82563, 82564, 82566, 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, 82647, 82648, 82649, 82651, 82652, 82653, 82654, 82655, 82656, 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82665, 82666, 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, 82687, 82688, 82689, 82690, 82691, 82692, 82693, 82694, 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, 82715, 82716, 82717, 82718, 82719, 82720, 82721, 86730, 92225, 93170, 93171, 93172, 94668, 94669, 94670, 94673, 94674, 94675, 94676, 94677, 94678, 94679, 94680, 94681, 94683, 94684, 94685, 94686, 94687, 94688, 94689, 94690, 94691, 94692, 94693, 94694, 94695, 94696, 94697, 94698, 94699, 94700, 94702, 94703, 99800, 99801, 99802, 100212]} \ No newline at end of file +{"traitTreeId": 795, "className": "Priest", "classId": 5, "specName": "Holy", "specId": 257, "classNodes": [{"id": 82717, "name": "Renew", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82718, 82714], "prev": [], "entries": [{"id": 103869, "definitionId": 108874, "maxRanks": 1, "type": "active", "name": "Renew", "spellId": 139, "icon": "spell_holy_renew", "index": 100}], "freeNode": true}, {"id": 82715, "name": "Dispel Magic", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82714, 82705, 82695], "prev": [], "entries": [{"id": 103867, "definitionId": 108872, "maxRanks": 1, "type": "active", "name": "Dispel Magic", "spellId": 528, "icon": "spell_nature_nullifydisease", "index": 100}]}, {"id": 82713, "name": "Shadowfiend", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82695, 82712], "prev": [], "entries": [{"id": 103865, "definitionId": 108870, "maxRanks": 1, "type": "active", "name": "Shadowfiend", "spellId": 34433, "icon": "spell_shadow_shadowfiend", "index": 100}]}, {"id": 82718, "name": "Prayer of Mending", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82719, 82701, 82720], "prev": [82717], "entries": [{"id": 103870, "definitionId": 108875, "maxRanks": 1, "type": "active", "name": "Prayer of Mending", "spellId": 33076, "icon": "spell_holy_prayerofmendingtga", "index": 100}], "freeNode": true}, {"id": 82714, "name": "Improved Flash Heal", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82701, 82707, 82703], "prev": [82715, 82717], "entries": [{"id": 103866, "definitionId": 108871, "maxRanks": 1, "type": "passive", "name": "Improved Flash Heal", "spellId": 393870, "icon": "spell_holy_heal", "index": 100}]}, {"id": 82705, "name": "Improved Purify", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [82703], "prev": [82715], "entries": [{"id": 103855, "definitionId": 108860, "maxRanks": 1, "type": "passive", "name": "Improved Purify", "spellId": 390632, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 82695, "name": "Psychic Voice / Petrifying Scream", "type": "choice", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82703, 82556], "prev": [82715, 82713], "entries": [{"id": 103845, "definitionId": 108850, "maxRanks": 1, "type": "passive", "name": "Psychic Voice", "spellId": 196704, "icon": "ability_warrior_commandingshout", "index": 100}, {"id": 114588, "definitionId": 119593, "maxRanks": 1, "type": "passive", "name": "Petrifying Scream", "spellId": 55676, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82712, "name": "Shadow Word: Death", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [82556, 82711], "prev": [82713], "entries": [{"id": 103864, "definitionId": 108869, "maxRanks": 1, "type": "active", "name": "Shadow Word: Death", "spellId": 32379, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82719, "name": "Focused Mending", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82720], "prev": [82718], "entries": [{"id": 103871, "definitionId": 108876, "maxRanks": 1, "type": "passive", "name": "Focused Mending", "spellId": 372354, "icon": "achievement_bg_returnxflags_def_wsg", "index": 100}]}, {"id": 82701, "name": "Holy Nova", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82720, 82700, 82716], "prev": [82714, 82718], "entries": [{"id": 103851, "definitionId": 108856, "maxRanks": 1, "type": "active", "name": "Holy Nova", "spellId": 132157, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82707, "name": "Protective Light / From Darkness Comes Light", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82716], "prev": [82714], "entries": [{"id": 103858, "definitionId": 108863, "maxRanks": 1, "type": "passive", "name": "Protective Light", "spellId": 193063, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 103857, "definitionId": 108862, "maxRanks": 1, "type": "passive", "name": "From Darkness Comes Light", "spellId": 390615, "icon": "spell_holy_flashheal", "index": 200}]}, {"id": 82703, "name": "Angelic Feather", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82716, 82693, 82708], "prev": [82714, 82705, 82695], "entries": [{"id": 103853, "definitionId": 108858, "maxRanks": 1, "type": "active", "name": "Angelic Feather", "spellId": 121536, "icon": "ability_priest_angelicfeather", "index": 0}]}, {"id": 82556, "name": "Phantasm", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82708, 82710], "prev": [82695, 82712], "entries": [{"id": 103834, "definitionId": 108839, "maxRanks": 1, "type": "passive", "name": "Phantasm", "spellId": 108942, "icon": "ability_priest_phantasm", "index": 100}]}, {"id": 82711, "name": "Death and Madness", "type": "single", "posX": 6900, "posY": 2700, "maxRanks": 1, "next": [82710, 82688], "prev": [82712], "entries": [{"id": 103863, "definitionId": 108868, "maxRanks": 1, "type": "passive", "name": "Death and Madness", "spellId": 321291, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82720, "name": "Spell Warding / Blessed Recovery", "type": "choice", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [82721, 82699, 82696], "prev": [82718, 82701, 82719], "entries": [{"id": 103872, "definitionId": 108877, "maxRanks": 1, "type": "passive", "name": "Spell Warding", "spellId": 390667, "icon": "spell_holy_spellwarding", "index": 100}, {"id": 103677, "definitionId": 108682, "maxRanks": 1, "type": "passive", "name": "Blessed Recovery", "spellId": 390767, "icon": "spell_holy_blessedrecovery", "index": 200}]}, {"id": 82700, "name": "Rhapsody", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [82699], "prev": [82701], "entries": [{"id": 103850, "definitionId": 108855, "maxRanks": 1, "type": "passive", "name": "Rhapsody", "spellId": 390622, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82716, "name": "Leap of Faith", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [82699, 82702, 82694], "prev": [82703, 82701, 82707], "entries": [{"id": 103868, "definitionId": 108873, "maxRanks": 1, "type": "active", "name": "Leap of Faith", "spellId": 73325, "icon": "priest_spell_leapoffaith_a", "index": 100}]}, {"id": 82693, "name": "Shackle Undead", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [82694], "prev": [82703], "entries": [{"id": 103843, "definitionId": 108848, "maxRanks": 1, "type": "active", "name": "Shackle Undead", "spellId": 9484, "icon": "spell_nature_slow", "index": 100}]}, {"id": 82708, "name": "Sheer Terror / Void Tendrils", "type": "choice", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [82694, 82691], "prev": [82703, 82556], "entries": [{"id": 103860, "definitionId": 108865, "maxRanks": 1, "type": "passive", "name": "Sheer Terror", "spellId": 390919, "icon": "spell_nzinsanity_fearofdeath", "index": 100}, {"id": 103859, "definitionId": 108864, "maxRanks": 1, "type": "active", "name": "Void Tendrils", "spellId": 108920, "icon": "spell_priest_voidtendrils", "index": 200}]}, {"id": 82710, "name": "Mind Control / Dominate Mind", "type": "choice", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [82691, 82689], "prev": [82556, 82711], "entries": [{"id": 103862, "definitionId": 108867, "maxRanks": 1, "type": "active", "name": "Mind Control", "spellId": 605, "icon": "spell_shadow_shadowworddominate", "index": 100}, {"id": 103678, "definitionId": 108683, "maxRanks": 1, "type": "active", "name": "Dominate Mind", "spellId": 205364, "icon": "spell_priest_void-flay", "index": 200}]}, {"id": 82721, "name": "Words of the Pious", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696], "prev": [82720], "entries": [{"id": 103873, "definitionId": 108878, "maxRanks": 1, "type": "passive", "name": "Words of the Pious", "spellId": 377438, "icon": "ability_priest_clarityofwill", "index": 200}]}, {"id": 82699, "name": "Mass Dispel", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696, 82698, 82706], "prev": [82716, 82720, 82700], "entries": [{"id": 103849, "definitionId": 108854, "maxRanks": 1, "type": "active", "name": "Mass Dispel", "spellId": 32375, "icon": "spell_arcane_massdispel", "index": 100}]}, {"id": 82702, "name": "Move with Grace", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706], "prev": [82716], "entries": [{"id": 103852, "definitionId": 108857, "maxRanks": 1, "type": "passive", "name": "Move with Grace", "spellId": 390620, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82694, "name": "Power Infusion", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706, 82683, 82692], "prev": [82716, 82693, 82708], "entries": [{"id": 103844, "definitionId": 108849, "maxRanks": 1, "type": "active", "name": "Power Infusion", "spellId": 10060, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 82691, "name": "Sanguine Teachings / Vampiric Embrace", "type": "choice", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82692, 82690, 82689], "prev": [82710, 82708], "entries": [{"id": 114735, "definitionId": 108846, "maxRanks": 1, "type": "passive", "name": "Sanguine Teachings", "spellId": 373218, "icon": "inv_archaeology_80_zandalari_sanguinetotem", "index": 100}, {"id": 103841, "definitionId": 119742, "maxRanks": 1, "type": "active", "name": "Vampiric Embrace", "spellId": 15286, "icon": "spell_shadow_unsummonbuilding", "index": 200}]}, {"id": 82688, "name": "Tithe Evasion", "type": "single", "posX": 6900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82689], "prev": [82711], "entries": [{"id": 103838, "definitionId": 108843, "maxRanks": 1, "type": "passive", "name": "Tithe Evasion", "spellId": 373223, "icon": "spell_nzinsanity_bloodthirst", "index": 100}]}, {"id": 82696, "name": "Inspiration", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82721, 82699, 82720], "entries": [{"id": 103846, "definitionId": 108851, "maxRanks": 1, "type": "passive", "name": "Inspiration", "spellId": 390676, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 82698, "name": "Mental Agility", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82699], "entries": [{"id": 103848, "definitionId": 108853, "maxRanks": 1, "type": "passive", "name": "Mental Agility", "spellId": 341167, "icon": "spell_holy_dispelmagic", "index": 100}]}, {"id": 82706, "name": "Body and Soul", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697, 82684], "prev": [82694, 82699, 82702], "entries": [{"id": 103856, "definitionId": 108861, "maxRanks": 1, "type": "passive", "name": "Body and Soul", "spellId": 64129, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82683, "name": "Twins of the Sun Priestess", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684], "prev": [82694], "entries": [{"id": 103832, "definitionId": 108837, "maxRanks": 1, "type": "passive", "name": "Twins of the Sun Priestess", "spellId": 373466, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82692, "name": "Void Shield", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684, 82709], "prev": [82691, 82694], "entries": [{"id": 103842, "definitionId": 108847, "maxRanks": 1, "type": "passive", "name": "Void Shield", "spellId": 280749, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 82690, "name": "San'layn", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82691], "entries": [{"id": 103840, "definitionId": 108845, "maxRanks": 1, "type": "passive", "name": "San'layn", "spellId": 199855, "icon": "achievement_boss_lanathel", "index": 100}]}, {"id": 82689, "name": "Apathy", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82710, 82688, 82691], "entries": [{"id": 103839, "definitionId": 108844, "maxRanks": 1, "type": "passive", "name": "Apathy", "spellId": 390668, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 82697, "name": "Unwavering Will", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82678, 82682], "prev": [82706, 82696, 82698], "entries": [{"id": 103847, "definitionId": 108852, "maxRanks": 2, "type": "passive", "name": "Unwavering Will", "spellId": 373456, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 82684, "name": "Twist of Fate", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82682, 82685], "prev": [82706, 82692, 82683], "entries": [{"id": 103833, "definitionId": 108838, "maxRanks": 2, "type": "passive", "name": "Twist of Fate", "spellId": 390972, "icon": "spell_shadow_mindtwisting", "index": 100}]}, {"id": 82709, "name": "Throes of Pain", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82685, 82687], "prev": [82692, 82690, 82689], "entries": [{"id": 103861, "definitionId": 108866, "maxRanks": 2, "type": "passive", "name": "Throes of Pain", "spellId": 377422, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 82678, "name": "Angel's Mercy / Binding Heals", "type": "choice", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82677, 82679], "prev": [82697], "entries": [{"id": 103825, "definitionId": 108830, "maxRanks": 1, "type": "passive", "name": "Angel's Mercy", "spellId": 238100, "icon": "spell_holy_testoffaith", "index": 100}, {"id": 103824, "definitionId": 108829, "maxRanks": 1, "type": "passive", "name": "Binding Heals", "spellId": 368275, "icon": "spell_holy_blindingheal", "index": 200}]}, {"id": 82682, "name": "Divine Star / Halo", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82679, 82681], "prev": [82697, 82684], "entries": [{"id": 103831, "definitionId": 108836, "maxRanks": 1, "type": "active", "name": "Divine Star", "spellId": 110744, "icon": "spell_priest_divinestar", "index": 200}, {"id": 103830, "definitionId": 108835, "maxRanks": 1, "type": "active", "name": "Halo", "spellId": 120517, "icon": "ability_priest_halo", "index": 300}]}, {"id": 82685, "name": "Translucent Image", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82681, 82686], "prev": [82709, 82684], "entries": [{"id": 103835, "definitionId": 108840, "maxRanks": 1, "type": "passive", "name": "Translucent Image", "spellId": 373446, "icon": "spell_nature_invisibilty", "index": 100}]}, {"id": 82687, "name": "Cauterizing Shadows", "type": "single", "posX": 6300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82686, 82672], "prev": [82709], "entries": [{"id": 103837, "definitionId": 108842, "maxRanks": 1, "type": "passive", "name": "Cauterizing Shadows", "spellId": 459990, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82677, "name": "Surge of Light", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82676], "prev": [82678], "entries": [{"id": 103823, "definitionId": 108828, "maxRanks": 1, "type": "passive", "name": "Surge of Light", "spellId": 109186, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 82679, "name": "Light's Inspiration", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82676, 82675], "prev": [82682, 82678], "entries": [{"id": 103826, "definitionId": 108831, "maxRanks": 2, "type": "passive", "name": "Light's Inspiration", "spellId": 373450, "icon": "spell_holy_restoration", "index": 100}]}, {"id": 82681, "name": "Crystalline Reflection", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82675, 82674], "prev": [82685, 82682], "entries": [{"id": 103829, "definitionId": 108834, "maxRanks": 2, "type": "passive", "name": "Crystalline Reflection", "spellId": 373457, "icon": "ability_priest_reflectiveshield", "index": 100}]}, {"id": 82686, "name": "Improved Fade", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82674, 82673], "prev": [82685, 82687], "entries": [{"id": 103836, "definitionId": 108841, "maxRanks": 2, "type": "passive", "name": "Improved Fade", "spellId": 390670, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 82672, "name": "Manipulation", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82673], "prev": [82687], "entries": [{"id": 103818, "definitionId": 108823, "maxRanks": 1, "type": "passive", "name": "Manipulation", "spellId": 459985, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82676, "name": "Benevolence / Power Word: Life", "type": "choice", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82677, 82679], "entries": [{"id": 115884, "definitionId": 120896, "maxRanks": 1, "type": "passive", "name": "Benevolence", "spellId": 415416, "icon": "ability_priest_spiritoftheredeemer", "index": 100}, {"id": 103822, "definitionId": 108827, "maxRanks": 1, "type": "active", "name": "Power Word: Life", "spellId": 373481, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 82675, "name": "Angelic Bulwark", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82679, 82681], "entries": [{"id": 103821, "definitionId": 108826, "maxRanks": 1, "type": "passive", "name": "Angelic Bulwark", "spellId": 108945, "icon": "ability_priest_angelicbulwark", "index": 100}]}, {"id": 82674, "name": "Essence Devourer / Void Shift", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82681, 82686], "entries": [{"id": 115883, "definitionId": 120895, "maxRanks": 1, "type": "passive", "name": "Essence Devourer", "spellId": 415479, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}, {"id": 103820, "definitionId": 108825, "maxRanks": 1, "type": "active", "name": "Void Shift", "spellId": 108968, "icon": "spell_priest_voidshift", "index": 200}]}, {"id": 82673, "name": "Phantom Reach", "type": "single", "posX": 6300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82672, 82686], "entries": [{"id": 103819, "definitionId": 108824, "maxRanks": 1, "type": "passive", "name": "Phantom Reach", "spellId": 459559, "icon": "spell_shadow_chilltouch", "index": 100}]}], "specNodes": [{"id": 82638, "name": "Holy Word: Serenity", "type": "single", "posX": 12900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82631, 82637, 82639], "prev": [], "entries": [{"id": 103775, "definitionId": 108780, "maxRanks": 1, "type": "active", "name": "Holy Word: Serenity", "spellId": 2050, "icon": "spell_holy_persuitofjustice", "index": 100}]}, {"id": 82631, "name": "Holy Word: Sanctify", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82632, 82630], "prev": [82638], "entries": [{"id": 103766, "definitionId": 108771, "maxRanks": 1, "type": "active", "name": "Holy Word: Sanctify", "spellId": 34861, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 82637, "name": "Guardian Spirit", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82636], "prev": [82638], "entries": [{"id": 103774, "definitionId": 108779, "maxRanks": 1, "type": "active", "name": "Guardian Spirit", "spellId": 47788, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 82639, "name": "Holy Word: Chastise", "type": "single", "posX": 13500, "posY": 2100, "maxRanks": 1, "next": [82619, 82640], "prev": [82638], "entries": [{"id": 103776, "definitionId": 108781, "maxRanks": 1, "type": "active", "name": "Holy Word: Chastise", "spellId": 88625, "icon": "spell_holy_chastise", "index": 100}]}, {"id": 82632, "name": "Prayer of Healing", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82624, 82633, 82630], "prev": [82631], "entries": [{"id": 103767, "definitionId": 108772, "maxRanks": 1, "type": "active", "name": "Prayer of Healing", "spellId": 596, "icon": "spell_holy_prayerofhealing02", "index": 100}]}, {"id": 82636, "name": "Guardian Angel / Guardians of the Light", "type": "choice", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82630, 82635, 82620], "prev": [82637], "entries": [{"id": 103773, "definitionId": 108778, "maxRanks": 1, "type": "passive", "name": "Guardian Angel", "spellId": 200209, "icon": "ability_priest_pathofthedevout", "index": 100}, {"id": 103772, "definitionId": 108777, "maxRanks": 1, "type": "passive", "name": "Guardians of the Light", "spellId": 196437, "icon": "spell_holy_guardianspirit", "index": 200}]}, {"id": 82619, "name": "Censure", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82620], "prev": [82639], "entries": [{"id": 103753, "definitionId": 108758, "maxRanks": 1, "type": "passive", "name": "Censure", "spellId": 200199, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 82640, "name": "Empyreal Blaze", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [82620, 82607], "prev": [82639], "entries": [{"id": 103777, "definitionId": 108782, "maxRanks": 1, "type": "passive", "name": "Empyreal Blaze", "spellId": 372616, "icon": "ability_priest_empyrealblaze", "index": 100}]}, {"id": 82624, "name": "Circle of Healing", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82625, 82623], "prev": [82632], "entries": [{"id": 103758, "definitionId": 108763, "maxRanks": 1, "type": "active", "name": "Circle of Healing", "spellId": 204883, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 82633, "name": "Revitalizing Prayers / Sanctified Prayers", "type": "choice", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82623, 82634], "prev": [82632], "entries": [{"id": 103769, "definitionId": 108774, "maxRanks": 1, "type": "passive", "name": "Revitalizing Prayers", "spellId": 391208, "icon": "inv_staff_2h_artifacttome_d_06", "index": 100}, {"id": 103768, "definitionId": 108773, "maxRanks": 1, "type": "passive", "name": "Sanctified Prayers", "spellId": 196489, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 82630, "name": "Cosmic Ripple", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82634, 82621], "prev": [82636, 82632, 82631], "entries": [{"id": 103765, "definitionId": 108770, "maxRanks": 1, "type": "passive", "name": "Cosmic Ripple", "spellId": 238136, "icon": "spell_holy_summonlightwell", "index": 100}]}, {"id": 82635, "name": "Afterlife", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82621], "prev": [82636], "entries": [{"id": 103771, "definitionId": 108776, "maxRanks": 1, "type": "passive", "name": "Afterlife", "spellId": 196707, "icon": "inv_enchant_essencemagiclarge", "index": 100}]}, {"id": 82620, "name": "Renewed Faith", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82621, 82618, 82641], "prev": [82640, 82636, 82619], "entries": [{"id": 103754, "definitionId": 108759, "maxRanks": 1, "type": "passive", "name": "Renewed Faith", "spellId": 341997, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 82607, "name": "Burning Vehemence", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "next": [82641], "prev": [82640], "entries": [{"id": 103739, "definitionId": 108744, "maxRanks": 1, "type": "passive", "name": "Burning Vehemence", "spellId": 372307, "icon": "ability_paladin_sacredcleansing", "index": 100}]}, {"id": 82625, "name": "Prayer Circle / Healing Chorus", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82626], "prev": [82624], "entries": [{"id": 103760, "definitionId": 108765, "maxRanks": 1, "type": "passive", "name": "Prayer Circle", "spellId": 321377, "icon": "spell_paladin_divinecircle", "index": 100}, {"id": 103759, "definitionId": 108764, "maxRanks": 1, "type": "passive", "name": "Healing Chorus", "spellId": 390881, "icon": "spell_holy_circleofrenewal", "index": 200}]}, {"id": 82623, "name": "Prayerful Litany", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622, 82627], "prev": [82633, 82624], "entries": [{"id": 103757, "definitionId": 108762, "maxRanks": 1, "type": "passive", "name": "Prayerful Litany", "spellId": 391209, "icon": "spell_holy_prayerofhealing02", "index": 100}]}, {"id": 82634, "name": "Trail of Light", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622], "prev": [82630, 82633], "entries": [{"id": 103770, "definitionId": 108775, "maxRanks": 1, "type": "passive", "name": "Trail of Light", "spellId": 200128, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 82621, "name": "Divine Hymn", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622, 82613, 82617], "prev": [82635, 82630, 82620], "entries": [{"id": 103755, "definitionId": 108760, "maxRanks": 1, "type": "active", "name": "Divine Hymn", "spellId": 64843, "icon": "spell_holy_divinehymn", "index": 100}]}, {"id": 82618, "name": "Enlightenment", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82617], "prev": [82620], "entries": [{"id": 103752, "definitionId": 108757, "maxRanks": 1, "type": "passive", "name": "Enlightenment", "spellId": 193155, "icon": "spell_arcane_mindmastery", "index": 100}]}, {"id": 82641, "name": "Benediction / Holy Mending", "type": "choice", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82617, 82642], "prev": [82607, 82620], "entries": [{"id": 103779, "definitionId": 108784, "maxRanks": 1, "type": "passive", "name": "Benediction", "spellId": 193157, "icon": "spell_monk_diffusemagic", "index": 100}, {"id": 103778, "definitionId": 108783, "maxRanks": 1, "type": "passive", "name": "Holy Mending", "spellId": 391154, "icon": "spell_holy_healingfocus", "index": 200}]}, {"id": 82626, "name": "Orison", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82627, 82628], "prev": [82625], "entries": [{"id": 103761, "definitionId": 108766, "maxRanks": 1, "type": "passive", "name": "Orison", "spellId": 390947, "icon": "spell_holy_fanaticism", "index": 100}]}, {"id": 82622, "name": "Everlasting Light", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614, 82627], "prev": [82634, 82621, 82623], "entries": [{"id": 103756, "definitionId": 108761, "maxRanks": 1, "type": "passive", "name": "Everlasting Light", "spellId": 391161, "icon": "inv_mace_1h_artifactheartofkure_d_01", "index": 100}]}, {"id": 82613, "name": "Gales of Song", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614], "prev": [82621], "entries": [{"id": 103747, "definitionId": 108752, "maxRanks": 1, "type": "passive", "name": "Gales of Song", "spellId": 372370, "icon": "inv_misc_volatileair", "index": 100}]}, {"id": 82617, "name": "Symbol of Hope", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614, 82616], "prev": [82641, 82621, 82618], "entries": [{"id": 103751, "definitionId": 108756, "maxRanks": 1, "type": "active", "name": "Symbol of Hope", "spellId": 64901, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82642, "name": "Divine Service", "type": "single", "posX": 14700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82616, 82615], "prev": [82641], "entries": [{"id": 103780, "definitionId": 108785, "maxRanks": 1, "type": "passive", "name": "Divine Service", "spellId": 391233, "icon": "spell_holy_prayerofspirit", "index": 100}]}, {"id": 82627, "name": "Crisis Management", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82628, 82610], "prev": [82623, 82622, 82626], "entries": [{"id": 103762, "definitionId": 108767, "maxRanks": 2, "type": "passive", "name": "Crisis Management", "spellId": 390954, "icon": "spell_holy_flashheal", "index": 100}]}, {"id": 82614, "name": "Prismatic Echoes", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82610, 82612], "prev": [82613, 82622, 82617], "entries": [{"id": 103748, "definitionId": 108753, "maxRanks": 2, "type": "passive", "name": "Prismatic Echoes", "spellId": 390967, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 82616, "name": "Prayers of the Virtuous", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82612, 82615], "prev": [82617, 82642], "entries": [{"id": 103750, "definitionId": 108755, "maxRanks": 2, "type": "passive", "name": "Prayers of the Virtuous", "spellId": 390977, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 82628, "name": "Pontifex", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82604, 82629], "prev": [82627, 82626], "entries": [{"id": 103763, "definitionId": 108768, "maxRanks": 1, "type": "passive", "name": "Pontifex", "spellId": 390980, "icon": "spell_priest_pontifex", "index": 100}]}, {"id": 82610, "name": "Apotheosis / Holy Word: Salvation", "type": "choice", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82629, 82608, 82611], "prev": [82627, 82614], "entries": [{"id": 103743, "definitionId": 108748, "maxRanks": 1, "type": "active", "name": "Apotheosis", "spellId": 200183, "icon": "ability_priest_ascension", "index": 100}, {"id": 103742, "definitionId": 108747, "maxRanks": 1, "type": "active", "name": "Holy Word: Salvation", "spellId": 265202, "icon": "ability_priest_archangel", "index": 200}]}, {"id": 82612, "name": "Miracle Worker", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82611, 82609], "prev": [82614, 82616], "entries": [{"id": 103745, "definitionId": 108750, "maxRanks": 1, "type": "passive", "name": "Miracle Worker", "spellId": 235587, "icon": "spell_holy_persuitofjustice", "index": 200}]}, {"id": 82615, "name": "Say Your Prayers", "type": "single", "posX": 14700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82609, 82606], "prev": [82616, 82642], "entries": [{"id": 103749, "definitionId": 108754, "maxRanks": 1, "type": "passive", "name": "Say Your Prayers", "spellId": 391186, "icon": "ability_priest_bindingprayers", "index": 100}]}, {"id": 82604, "name": "Resonant Words", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82603], "prev": [82628], "entries": [{"id": 103735, "definitionId": 108740, "maxRanks": 2, "type": "passive", "name": "Resonant Words", "spellId": 372309, "icon": "spell_holy_holybolt", "index": 100}]}, {"id": 82629, "name": "Light of the Naaru", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82603], "prev": [82628, 82610], "entries": [{"id": 103764, "definitionId": 108769, "maxRanks": 2, "type": "passive", "name": "Light of the Naaru", "spellId": 196985, "icon": "inv_pet_naaru", "index": 100}]}, {"id": 82608, "name": "Answered Prayers", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82554], "prev": [82610], "entries": [{"id": 103740, "definitionId": 108745, "maxRanks": 2, "type": "passive", "name": "Answered Prayers", "spellId": 391387, "icon": "inv_staff_2h_artifactheartofkure_d_06", "index": 100}]}, {"id": 82611, "name": "Voice of Harmony", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82554], "prev": [82612, 82610], "entries": [{"id": 103744, "definitionId": 108749, "maxRanks": 2, "type": "passive", "name": "Voice of Harmony", "spellId": 390994, "icon": "ability_priest_heavanlyvoice", "index": 100}]}, {"id": 82609, "name": "Desperate Times", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82605], "prev": [82615, 82612], "entries": [{"id": 103741, "definitionId": 108746, "maxRanks": 2, "type": "passive", "name": "Desperate Times", "spellId": 391381, "icon": "ability_pvp_defenderoftheweak", "index": 100}]}, {"id": 82606, "name": "Epiphany", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82605], "prev": [82615], "entries": [{"id": 103738, "definitionId": 108743, "maxRanks": 2, "type": "passive", "name": "Epiphany", "spellId": 414553, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 82603, "name": "Lightweaver / Lightwell", "type": "choice", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82629, 82604], "entries": [{"id": 103734, "definitionId": 108739, "maxRanks": 1, "type": "passive", "name": "Lightweaver", "spellId": 390992, "icon": "spell_holy_greaterheal", "index": 100}, {"id": 103733, "definitionId": 108738, "maxRanks": 1, "type": "active", "name": "Lightwell", "spellId": 372835, "icon": "spell_holy_summonlightwell", "index": 200}]}, {"id": 82554, "name": "Divine Image", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82611, 82608], "entries": [{"id": 103675, "definitionId": 108680, "maxRanks": 1, "type": "passive", "name": "Divine Image", "spellId": 392988, "icon": "inv_staff_2h_artifactheartofkure_d_04", "index": 200}]}, {"id": 82605, "name": "Restitution / Divine Word", "type": "choice", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82606, 82609], "entries": [{"id": 103737, "definitionId": 108742, "maxRanks": 1, "type": "passive", "name": "Restitution", "spellId": 391124, "icon": "inv_staff_2h_artifactheartofkure_d_03", "index": 100}, {"id": 103676, "definitionId": 108681, "maxRanks": 1, "type": "active", "name": "Divine Word", "spellId": 372760, "icon": "spell_priest_chakra", "index": 200}]}], "heroNodes": [{"id": 94683, "name": "Premonition", "type": "single", "posX": 8400, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 20, "next": [94698, 94674, 94679], "prev": [], "entries": [{"id": 117286, "definitionId": 122298, "maxRanks": 1, "type": "active", "name": "Premonition", "spellId": 428924, "icon": "inv_ability_oraclepriest_premonitioninsight", "index": 100}], "freeNode": true}, {"id": 94697, "name": "Power Surge", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 19, "requiresNode": 0, "next": [94677, 94681, 94699], "prev": [], "entries": [{"id": 117300, "definitionId": 122312, "maxRanks": 1, "type": "passive", "name": "Power Surge", "spellId": 453109, "icon": "inv_ability_holyfire_groundstate", "index": 100}], "freeNode": true}, {"id": 94698, "name": "Preventive Measures", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94691], "prev": [94683], "entries": [{"id": 117301, "definitionId": 122313, "maxRanks": 1, "type": "passive", "name": "Preventive Measures", "spellId": 440662, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 94674, "name": "Preemptive Care", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94675], "prev": [94683], "entries": [{"id": 117277, "definitionId": 122289, "maxRanks": 1, "type": "passive", "name": "Preemptive Care", "spellId": 440671, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 94679, "name": "Waste No Time / Miraculous Recovery", "type": "choice", "posX": 9000, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94689], "prev": [94683], "entries": [{"id": 117282, "definitionId": 122294, "maxRanks": 1, "type": "passive", "name": "Waste No Time", "spellId": 440681, "icon": "spell_nature_timestop", "index": 100}, {"id": 119332, "definitionId": 124232, "maxRanks": 1, "type": "passive", "name": "Miraculous Recovery", "spellId": 440674, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 94677, "name": "Perfected Form", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "next": [94686], "prev": [94697], "entries": [{"id": 117280, "definitionId": 122292, "maxRanks": 1, "type": "passive", "name": "Perfected Form", "spellId": 453917, "icon": "inv_ability_holyfire_buff", "index": 100}]}, {"id": 94681, "name": "Resonant Energy", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94680], "prev": [94697], "entries": [{"id": 117284, "definitionId": 122296, "maxRanks": 1, "type": "passive", "name": "Resonant Energy", "spellId": 453845, "icon": "ability_priest_halo", "index": 100}]}, {"id": 94699, "name": "Manifested Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94688], "prev": [94697], "entries": [{"id": 117302, "definitionId": 122314, "maxRanks": 1, "type": "passive", "name": "Manifested Power", "spellId": 453783, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 94691, "name": "Assured Safety", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94690], "prev": [94698], "entries": [{"id": 117294, "definitionId": 122306, "maxRanks": 1, "type": "passive", "name": "Assured Safety", "spellId": 440766, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 94675, "name": "Divine Feathers / Save the Day", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94673], "prev": [94674], "entries": [{"id": 117278, "definitionId": 122290, "maxRanks": 1, "type": "passive", "name": "Divine Feathers", "spellId": 440670, "icon": "ability_priest_angelicfeather", "index": 100}, {"id": 119331, "definitionId": 124231, "maxRanks": 1, "type": "passive", "name": "Save the Day", "spellId": 440669, "icon": "priest_spell_leapoffaith_a", "index": 200}]}, {"id": 94689, "name": "Foreseen Circumstances", "type": "single", "posX": 9000, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94700], "prev": [94679], "entries": [{"id": 117292, "definitionId": 122304, "maxRanks": 1, "type": "passive", "name": "Foreseen Circumstances", "spellId": 440738, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 94686, "name": "Shock Pulse / Incessant Screams", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94678], "prev": [94677], "entries": [{"id": 117289, "definitionId": 122301, "maxRanks": 1, "type": "passive", "name": "Shock Pulse", "spellId": 453852, "icon": "spell_priest_pathofdevout", "index": 100}, {"id": 125083, "definitionId": 129915, "maxRanks": 1, "type": "passive", "name": "Incessant Screams", "spellId": 453918, "icon": "spell_shadow_psychicscream", "index": 200}]}, {"id": 94680, "name": "Word of Supremacy / Heightened Alteration", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94676], "prev": [94681], "entries": [{"id": 117283, "definitionId": 122295, "maxRanks": 1, "type": "passive", "name": "Word of Supremacy", "spellId": 453726, "icon": "spell_holy_wordfortitude", "index": 100}, {"id": 125084, "definitionId": 129916, "maxRanks": 1, "type": "passive", "name": "Heightened Alteration", "spellId": 453729, "icon": "inv_enchant_essenceeternallarge", "index": 200}]}, {"id": 94688, "name": "Empowered Surges", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94685], "prev": [94699], "entries": [{"id": 117291, "definitionId": 122303, "maxRanks": 1, "type": "passive", "name": "Empowered Surges", "spellId": 453799, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 94690, "name": "Prophet's Will / Desperate Measures", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94691], "entries": [{"id": 117293, "definitionId": 122305, "maxRanks": 1, "type": "passive", "name": "Prophet's Will", "spellId": 433905, "icon": "ability_priest_clarityofpurpose", "index": 100}, {"id": 126068, "definitionId": 130900, "maxRanks": 1, "type": "passive", "name": "Desperate Measures", "spellId": 458718, "icon": "spell_holy_testoffaith", "index": 200}]}, {"id": 94673, "name": "Divine Providence", "type": "single", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94675], "entries": [{"id": 117276, "definitionId": 122288, "maxRanks": 1, "type": "passive", "name": "Divine Providence", "spellId": 440742, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 94700, "name": "Fatebender / Perfect Vision", "type": "choice", "posX": 9000, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94689], "entries": [{"id": 117303, "definitionId": 122315, "maxRanks": 1, "type": "passive", "name": "Fatebender", "spellId": 440743, "icon": "ability_priest_voidshift", "index": 100}, {"id": 119330, "definitionId": 124230, "maxRanks": 1, "type": "passive", "name": "Perfect Vision", "spellId": 440661, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 94678, "name": "Energy Compression / Sustained Potency", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94702], "prev": [94686], "entries": [{"id": 117281, "definitionId": 122293, "maxRanks": 1, "type": "passive", "name": "Energy Compression", "spellId": 449874, "icon": "spell_holy_circleofrenewal", "index": 100}, {"id": 125085, "definitionId": 129917, "maxRanks": 1, "type": "passive", "name": "Sustained Potency", "spellId": 454001, "icon": "ability_priest_ascension", "index": 200}]}, {"id": 94676, "name": "Concentrated Infusion", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 82694, "next": [94702], "prev": [94680], "entries": [{"id": 117279, "definitionId": 122291, "maxRanks": 1, "type": "passive", "name": "Concentrated Infusion", "spellId": 453844, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 94685, "name": "Energy Cycle", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "next": [94702], "prev": [94688], "entries": [{"id": 117288, "definitionId": 122300, "maxRanks": 1, "type": "passive", "name": "Energy Cycle", "spellId": 453828, "icon": "ability_priest_voidshift", "index": 100}]}, {"id": 94687, "name": "Clairvoyance", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 20, "next": [], "prev": [94700, 94673, 94690], "entries": [{"id": 117290, "definitionId": 122302, "maxRanks": 1, "type": "passive", "name": "Clairvoyance", "spellId": 428940, "icon": "inv_ability_oraclepriest_clairvoyance", "index": 100}]}, {"id": 94702, "name": "Divine Halo", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [], "prev": [94678, 94685, 94676], "entries": [{"id": 117305, "definitionId": 122317, "maxRanks": 1, "type": "passive", "name": "Divine Halo", "spellId": 449806, "icon": "inv_ability_holyfire_nova", "index": 100}]}], "subTreeNodes": [{"id": 99802, "name": "Oracle / Archon", "type": "subtree", "posX": 7500, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123292, "type": "subtree", "name": "Oracle", "traitSubTreeId": 20, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-oracle", "nodes": [94683, 94698, 94674, 94679, 94691, 94675, 94689, 94690, 94673, 94700, 94687]}, {"id": 123291, "type": "subtree", "name": "Archon", "traitSubTreeId": 19, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-archon", "nodes": [94697, 94677, 94681, 94699, 94686, 94680, 94688, 94678, 94676, 94685, 94702]}]}], "fullNodeOrder": [82552, 82553, 82554, 82555, 82556, 82557, 82558, 82559, 82560, 82561, 82563, 82564, 82566, 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, 82647, 82648, 82649, 82651, 82652, 82653, 82654, 82655, 82656, 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82665, 82666, 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, 82687, 82688, 82689, 82690, 82691, 82692, 82693, 82694, 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, 82715, 82716, 82717, 82718, 82719, 82720, 82721, 86730, 92225, 93170, 93171, 93172, 94668, 94669, 94670, 94673, 94674, 94675, 94676, 94677, 94678, 94679, 94680, 94681, 94683, 94684, 94685, 94686, 94687, 94688, 94689, 94690, 94691, 94692, 94693, 94694, 94695, 94696, 94697, 94698, 94699, 94700, 94702, 94703, 99800, 99801, 99802, 100212]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/raw_raidbots_talent_information.json b/simc_support/game_data/data_files/trees/raw_raidbots_talent_information.json index f759ae4..daef72f 100644 --- a/simc_support/game_data/data_files/trees/raw_raidbots_talent_information.json +++ b/simc_support/game_data/data_files/trees/raw_raidbots_talent_information.json @@ -1 +1 @@ -[{"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Balance", "specId": 102, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82205, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82201, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82202, 82208], "prev": [], "entries": [{"id": 103279, "definitionId": 108284, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 194153, "icon": "spell_arcane_starfire", "index": 100}], "freeNode": true}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82205, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103283, "definitionId": 108288, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82202, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82201], "entries": [{"id": 103280, "definitionId": 108285, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 78674, "icon": "spell_arcane_arcane03", "index": 100}], "freeNode": true}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [82201], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82205, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 88223, "name": "Eclipse", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [88225, 88231], "prev": [], "entries": [{"id": 109858, "definitionId": 114863, "maxRanks": 1, "type": "passive", "name": "Eclipse", "spellId": 79577, "icon": "ability_druid_eclipseorange", "index": 100}]}, {"id": 88225, "name": "Shooting Stars", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [88203, 88210], "prev": [88223], "entries": [{"id": 109861, "definitionId": 114866, "maxRanks": 1, "type": "passive", "name": "Shooting Stars", "spellId": 202342, "icon": "spell_priest_divinestar_shadow2", "index": 100}]}, {"id": 88231, "name": "Solar Beam", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [88210, 88211, 88201], "prev": [88223], "entries": [{"id": 109867, "definitionId": 114872, "maxRanks": 1, "type": "active", "name": "Solar Beam", "spellId": 78675, "icon": "ability_vehicle_sonicshockwave", "index": 100}]}, {"id": 88203, "name": "Solstice", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [91048, 88226], "prev": [88225], "entries": [{"id": 109835, "definitionId": 114840, "maxRanks": 1, "type": "passive", "name": "Solstice", "spellId": 343647, "icon": "artifactability_balancedruid_moonandstars", "index": 100}]}, {"id": 88210, "name": "Force of Nature / Warrior of Elune", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [88226, 88208], "prev": [88225, 88231], "entries": [{"id": 109844, "definitionId": 114849, "maxRanks": 1, "type": "active", "name": "Force of Nature", "spellId": 205636, "icon": "ability_druid_forceofnature", "index": 100}, {"id": 114648, "definitionId": 119654, "maxRanks": 1, "type": "active", "name": "Warrior of Elune", "spellId": 202425, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 88211, "name": "Light of the Sun", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [88208], "prev": [88231], "entries": [{"id": 109845, "definitionId": 114850, "maxRanks": 1, "type": "passive", "name": "Light of the Sun", "spellId": 202918, "icon": "ability_vehicle_sonicshockwave", "index": 100}]}, {"id": 88201, "name": "Starfall", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [88208, 88209], "prev": [88231], "entries": [{"id": 109833, "definitionId": 114838, "maxRanks": 1, "type": "active", "name": "Starfall", "spellId": 191034, "icon": "ability_druid_starfall", "index": 100}]}, {"id": 91048, "name": "Wild Surges / Stellar Flare", "type": "choice", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [88204, 88202], "prev": [88203], "entries": [{"id": 115458, "definitionId": 120470, "maxRanks": 1, "type": "passive", "name": "Wild Surges", "spellId": 406890, "icon": "ability_skyreach_lens_flare", "index": 100}, {"id": 109841, "definitionId": 114846, "maxRanks": 1, "type": "active", "name": "Stellar Flare", "spellId": 202347, "icon": "ability_druid_stellarflare", "index": 200}]}, {"id": 88226, "name": "Nature's Balance", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [88204, 88215], "prev": [88203, 88210], "entries": [{"id": 109862, "definitionId": 114867, "maxRanks": 1, "type": "passive", "name": "Nature's Balance", "spellId": 202430, "icon": "ability_druid_balanceofpower", "index": 100}]}, {"id": 88208, "name": "Twin Moons", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [88215, 88219], "prev": [88211, 88201, 88210], "entries": [{"id": 109842, "definitionId": 114847, "maxRanks": 1, "type": "passive", "name": "Twin Moons", "spellId": 279620, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 88209, "name": "Aetherial Kindling", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [88219, 88232], "prev": [88201], "entries": [{"id": 109843, "definitionId": 114848, "maxRanks": 1, "type": "passive", "name": "Aetherial Kindling", "spellId": 327541, "icon": "ability_druid_starfall", "index": 100}]}, {"id": 88204, "name": "Astral Smolder", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [88212, 88202, 88229], "prev": [91048, 88226], "entries": [{"id": 109836, "definitionId": 114841, "maxRanks": 1, "type": "passive", "name": "Astral Smolder", "spellId": 394058, "icon": "spell_fire_bluefire", "index": 0}]}, {"id": 88215, "name": "Celestial Alignment", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [88212, 88221, 88222], "prev": [88208, 88226], "entries": [{"id": 109849, "definitionId": 114854, "maxRanks": 1, "type": "active", "name": "Celestial Alignment", "spellId": 395022, "visibleSpellId": 194223, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 88219, "name": "Umbral Intensity", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [88222, 100222, 88232], "prev": [88209, 88208], "entries": [{"id": 109853, "definitionId": 114858, "maxRanks": 2, "type": "passive", "name": "Umbral Intensity", "spellId": 383195, "icon": "ability_druid_eclipse", "index": 100}]}, {"id": 88202, "name": "Waning Twilight", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227, 88220], "prev": [91048, 88204], "entries": [{"id": 109834, "definitionId": 114839, "maxRanks": 1, "type": "passive", "name": "Waning Twilight", "spellId": 393956, "icon": "spell_shadow_twilight", "index": 0}]}, {"id": 88229, "name": "Stellar Amplification", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227], "prev": [88204], "entries": [{"id": 109865, "definitionId": 114870, "maxRanks": 1, "type": "passive", "name": "Stellar Amplification", "spellId": 450212, "icon": "spell_arcane_arcane04", "index": 100}]}, {"id": 88212, "name": "Soul of the Forest", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227, 88216], "prev": [88204, 88215], "entries": [{"id": 109846, "definitionId": 114851, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 114107, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 88221, "name": "Greater Alignment / Orbital Strike", "type": "choice", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88216], "prev": [88215], "entries": [{"id": 109856, "definitionId": 114861, "maxRanks": 1, "type": "passive", "name": "Greater Alignment", "spellId": 450184, "icon": "spell_druid_equinox", "index": 100}, {"id": 109855, "definitionId": 114860, "maxRanks": 1, "type": "passive", "name": "Orbital Strike", "spellId": 390378, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 88222, "name": "Nature's Grace", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88216, 88207], "prev": [88219, 88215], "entries": [{"id": 109857, "definitionId": 114862, "maxRanks": 1, "type": "passive", "name": "Nature's Grace", "spellId": 450347, "icon": "ability_druid_lunarguidance", "index": 0}]}, {"id": 100222, "name": "Touch the Cosmos", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88207], "prev": [88219], "entries": [{"id": 123859, "definitionId": 128697, "maxRanks": 1, "type": "passive", "name": "Touch the Cosmos", "spellId": 450356, "icon": "ability_bossgorefiend_touchofdoom", "index": 100}]}, {"id": 88232, "name": "Lunar Shrapnel", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88207, 88235], "prev": [88209, 88219], "entries": [{"id": 109868, "definitionId": 114873, "maxRanks": 1, "type": "passive", "name": "Lunar Shrapnel", "spellId": 415169, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 88227, "name": "Cosmic Rapidity", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [88220, 88199, 88214], "prev": [88229, 88212, 88202], "entries": [{"id": 109863, "definitionId": 114868, "maxRanks": 2, "type": "passive", "name": "Cosmic Rapidity", "spellId": 400059, "icon": "spell_druid_swarm", "index": 100}]}, {"id": 88216, "name": "Umbral Embrace", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [88214, 88217, 88200], "prev": [88221, 88212, 88222], "entries": [{"id": 109850, "definitionId": 114855, "maxRanks": 1, "type": "passive", "name": "Umbral Embrace", "spellId": 393760, "icon": "ability_druid_improvedmoonkinform", "index": 0}]}, {"id": 88207, "name": "Starlord", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [88200, 88236, 88235], "prev": [88232, 88222, 100222], "entries": [{"id": 109840, "definitionId": 114845, "maxRanks": 2, "type": "passive", "name": "Starlord", "spellId": 202345, "icon": "spell_shaman_measuredinsight", "index": 100}]}, {"id": 88220, "name": "Wild Mushroom", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88218], "prev": [88202, 88227], "entries": [{"id": 117100, "definitionId": 122112, "maxRanks": 1, "type": "active", "name": "Wild Mushroom", "spellId": 88747, "icon": "druid_ability_wildmushroom_a", "index": 0}]}, {"id": 88199, "name": "Sundered Firmament / Orbit Breaker", "type": "choice", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88218], "prev": [88227], "entries": [{"id": 109831, "definitionId": 114836, "maxRanks": 1, "type": "passive", "name": "Sundered Firmament", "spellId": 394094, "icon": "spell_druid_equinox", "index": 100}, {"id": 123860, "definitionId": 128698, "maxRanks": 1, "type": "passive", "name": "Orbit Breaker", "spellId": 383197, "icon": "artifactability_balancedruid_moonandstars", "index": 200}]}, {"id": 88214, "name": "Balance of All Things", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [88206, 88218], "prev": [88227, 88216], "entries": [{"id": 109848, "definitionId": 114853, "maxRanks": 2, "type": "passive", "name": "Balance of All Things", "spellId": 394048, "icon": "ability_druid_earthandsky", "index": 0}]}, {"id": 88217, "name": "Umbral Inspiration", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88206], "prev": [88216], "entries": [{"id": 109851, "definitionId": 114856, "maxRanks": 1, "type": "passive", "name": "Umbral Inspiration", "spellId": 450418, "icon": "ability_eyeoftheowl", "index": 100}]}, {"id": 88200, "name": "Power of Goldrinn", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [88206, 88224], "prev": [88207, 88216], "entries": [{"id": 109832, "definitionId": 114837, "maxRanks": 2, "type": "passive", "name": "Power of Goldrinn", "spellId": 394046, "icon": "inv_mount_spectralwolf", "index": 100}]}, {"id": 88236, "name": "Starweaver / Rattle the Stars", "type": "choice", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88224], "prev": [88207], "entries": [{"id": 109873, "definitionId": 114878, "maxRanks": 1, "type": "passive", "name": "Starweaver", "spellId": 393940, "icon": "spell_arcane_invocation", "index": 100}, {"id": 109872, "definitionId": 114877, "maxRanks": 1, "type": "passive", "name": "Rattle the Stars", "spellId": 393954, "icon": "spell_arcane_arcane01", "index": 200}]}, {"id": 88235, "name": "Astral Communion", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88224], "prev": [88232, 88207], "entries": [{"id": 109871, "definitionId": 114876, "maxRanks": 1, "type": "passive", "name": "Astral Communion", "spellId": 450598, "icon": "talentspec_druid_balance", "index": 0}]}, {"id": 88218, "name": "Harmony of the Heavens", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88234], "prev": [88214, 88199, 88220], "entries": [{"id": 109852, "definitionId": 114857, "maxRanks": 1, "type": "passive", "name": "Harmony of the Heavens", "spellId": 450558, "icon": "spell_arcane_massdispel", "index": 0}]}, {"id": 88206, "name": "Incarnation: Chosen of Elune / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88228], "prev": [88214, 88200, 88217], "entries": [{"id": 109839, "definitionId": 114844, "maxRanks": 1, "type": "active", "name": "Incarnation: Chosen of Elune", "spellId": 394013, "visibleSpellId": 102560, "icon": "spell_druid_incarnation", "index": 100}, {"id": 109838, "definitionId": 114843, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "ability_ardenweald_druid", "index": 200}]}, {"id": 88224, "name": "Fury of Elune / New Moon", "type": "choice", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88213], "prev": [88200, 88236, 88235], "entries": [{"id": 109859, "definitionId": 114864, "maxRanks": 1, "type": "active", "name": "Fury of Elune", "spellId": 202770, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 109860, "definitionId": 114865, "maxRanks": 1, "type": "active", "name": "New Moon", "spellId": 274281, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 88234, "name": "Denizen of the Dream", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88218], "entries": [{"id": 109870, "definitionId": 114875, "maxRanks": 1, "type": "passive", "name": "Denizen of the Dream", "spellId": 394065, "icon": "inv_faeriedragon2_orange", "index": 0}]}, {"id": 88228, "name": "Elune's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88206], "entries": [{"id": 109864, "definitionId": 114869, "maxRanks": 1, "type": "passive", "name": "Elune's Guidance", "spellId": 393991, "icon": "ability_ardenweald_druid", "index": 100}]}, {"id": 88213, "name": "Radiant Moonlight", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88224], "entries": [{"id": 109847, "definitionId": 114852, "maxRanks": 1, "type": "passive", "name": "Radiant Moonlight", "spellId": 394121, "icon": "artifactability_balancedruid_fullmoon", "index": 100}]}], "heroNodes": [{"id": 94608, "name": "Boundless Moonlight", "type": "single", "posX": 7800, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 24, "requiresNode": 92587, "next": [94598, 94588, 94594], "prev": [], "entries": [{"id": 117205, "definitionId": 122217, "maxRanks": 1, "type": "passive", "name": "Boundless Moonlight", "spellId": 424058, "icon": "inv_ability_eluneschosendruid_boundlessmoonlight", "index": 100}], "freeNode": true}, {"id": 94598, "name": "Moon Guardian", "type": "single", "posX": 7200, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "requiresNode": 82145, "next": [94596], "prev": [94608], "entries": [{"id": 117193, "definitionId": 122205, "maxRanks": 1, "type": "passive", "name": "Moon Guardian", "spellId": 429520, "icon": "spell_nature_moonglow", "index": 100}]}, {"id": 94588, "name": "Lunar Insight", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94607], "prev": [94608], "entries": [{"id": 117181, "definitionId": 122193, "maxRanks": 1, "type": "passive", "name": "Lunar Insight", "spellId": 429530, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94594, "name": "Glistening Fur", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94597], "prev": [94608], "entries": [{"id": 117769, "definitionId": 122781, "maxRanks": 1, "type": "passive", "name": "Glistening Fur", "spellId": 429533, "icon": "ability_druid_ironfur", "index": 200}]}, {"id": 94596, "name": "Lunar Amplification", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94590], "prev": [94598], "entries": [{"id": 117190, "definitionId": 122202, "maxRanks": 1, "type": "passive", "name": "Lunar Amplification", "spellId": 429529, "icon": "spell_druid_lunarinspiration", "index": 200}]}, {"id": 94607, "name": "Atmospheric Exposure", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [94585], "prev": [94588], "entries": [{"id": 117204, "definitionId": 122216, "maxRanks": 1, "type": "passive", "name": "Atmospheric Exposure", "spellId": 429532, "icon": "inv_cosmicvoid_nova", "index": 100}]}, {"id": 94597, "name": "Moondust / Elune's Grace", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94586], "prev": [94594], "entries": [{"id": 117192, "definitionId": 122204, "maxRanks": 1, "type": "passive", "name": "Moondust", "spellId": 429538, "icon": "inv_enchant_dust", "index": 100}, {"id": 123304, "definitionId": 128177, "maxRanks": 1, "type": "passive", "name": "Elune's Grace", "spellId": 443046, "icon": "spell_druid_wildcharge", "index": 200}]}, {"id": 94590, "name": "Stellar Command / Lunar Calling", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94596], "entries": [{"id": 117183, "definitionId": 122195, "maxRanks": 1, "type": "passive", "name": "Stellar Command", "spellId": 429668, "icon": "artifactability_balancedruid_moonandstars", "index": 100}, {"id": 117770, "definitionId": 122782, "maxRanks": 1, "type": "passive", "name": "Lunar Calling", "spellId": 429523, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 94585, "name": "The Light of Elune / Astral Insight", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94607], "entries": [{"id": 117176, "definitionId": 122188, "maxRanks": 1, "type": "passive", "name": "The Light of Elune", "spellId": 428655, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 117772, "definitionId": 122784, "maxRanks": 1, "type": "passive", "name": "Astral Insight", "spellId": 429536, "icon": "spell_druid_incarnation", "index": 200}]}, {"id": 94586, "name": "Arcane Affinity / Lunation", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94597], "entries": [{"id": 117178, "definitionId": 122190, "maxRanks": 1, "type": "passive", "name": "Arcane Affinity", "spellId": 429540, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 117177, "definitionId": 122189, "maxRanks": 1, "type": "passive", "name": "Lunation", "spellId": 429539, "icon": "spell_nature_moonglow", "index": 200}]}, {"id": 94587, "name": "The Eternal Moon", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [], "prev": [94590, 94585, 94586], "entries": [{"id": 117179, "definitionId": 122191, "maxRanks": 1, "type": "passive", "name": "The Eternal Moon", "spellId": 424113, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 94600, "name": "Dream Surge", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "entryNode": true, "subTreeId": 23, "requiresNode": 0, "next": [94599, 94602, 94593], "prev": [], "entries": [{"id": 117195, "definitionId": 122207, "maxRanks": 1, "type": "passive", "name": "Dream Surge", "spellId": 433831, "icon": "inv_ability_keeperofthegrovedruid_dreamsurge_fiendly", "index": 100}], "freeNode": true}, {"id": 94599, "name": "Treants of the Moon", "type": "single", "posX": 7200, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94605], "prev": [94600], "entries": [{"id": 117194, "definitionId": 122206, "maxRanks": 1, "type": "passive", "name": "Treants of the Moon", "spellId": 428544, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94602, "name": "Expansiveness", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94604], "prev": [94600], "entries": [{"id": 117197, "definitionId": 122209, "maxRanks": 1, "type": "passive", "name": "Expansiveness", "spellId": 429399, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 94593, "name": "Protective Growth", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94595], "prev": [94600], "entries": [{"id": 117186, "definitionId": 122198, "maxRanks": 1, "type": "passive", "name": "Protective Growth", "spellId": 433748, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 94605, "name": "Power of Nature / Durability of Nature", "type": "choice", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94591], "prev": [94599], "entries": [{"id": 117201, "definitionId": 122213, "maxRanks": 1, "type": "passive", "name": "Power of Nature", "spellId": 428859, "icon": "spell_nature_naturesblessing", "index": 100}, {"id": 117200, "definitionId": 122212, "maxRanks": 1, "type": "passive", "name": "Durability of Nature", "spellId": 429227, "icon": "ability_druid_manatree", "index": 200}]}, {"id": 94604, "name": "Cenarius' Might", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94592], "prev": [94602], "entries": [{"id": 117199, "definitionId": 122211, "maxRanks": 1, "type": "passive", "name": "Cenarius' Might", "spellId": 455797, "icon": "achievement_reputation_guardiansofcenarius", "index": 100}]}, {"id": 94595, "name": "Grove's Inspiration / Potent Enchantments", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94601], "prev": [94593], "entries": [{"id": 117189, "definitionId": 122201, "maxRanks": 1, "type": "passive", "name": "Grove's Inspiration", "spellId": 429402, "icon": "ability_druid_protectionofthegrove", "index": 100}, {"id": 117188, "definitionId": 122200, "maxRanks": 1, "type": "passive", "name": "Potent Enchantments", "spellId": 429420, "icon": "ability_druid_serenefocus", "index": 200}]}, {"id": 94591, "name": "Bounteous Bloom / Early Spring", "type": "choice", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94606], "prev": [94605], "entries": [{"id": 117184, "definitionId": 122196, "maxRanks": 1, "type": "passive", "name": "Bounteous Bloom", "spellId": 429215, "icon": "inv_herbalism_70_dreamleaf", "index": 100}, {"id": 117895, "definitionId": 122907, "maxRanks": 1, "type": "passive", "name": "Early Spring", "spellId": 428937, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94592, "name": "Power of the Dream / Control of the Dream", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94604], "entries": [{"id": 117185, "definitionId": 122197, "maxRanks": 1, "type": "passive", "name": "Power of the Dream", "spellId": 434220, "icon": "ability_xavius_dreamsimulacrum", "index": 100}, {"id": 117894, "definitionId": 122906, "maxRanks": 1, "type": "passive", "name": "Control of the Dream", "spellId": 434249, "icon": "inv_cloth_outdooremeralddream_d_01_buckle", "index": 200}]}, {"id": 94601, "name": "Blooming Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94595], "entries": [{"id": 117196, "definitionId": 122208, "maxRanks": 1, "type": "passive", "name": "Blooming Infusion", "spellId": 429433, "icon": "spell_nature_thorns", "index": 100}]}, {"id": 94606, "name": "Harmony of the Grove", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [], "prev": [94601, 94592, 94591], "entries": [{"id": 117203, "definitionId": 122215, "maxRanks": 1, "type": "passive", "name": "Harmony of the Grove", "spellId": 428731, "icon": "ability_druid_forceofnature", "index": 100}]}], "subTreeNodes": [{"id": 99808, "name": "Elune's Chosen / Keeper of the Grove", "type": "subtree", "posX": 7200, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123302, "type": "subtree", "name": "Elune's Chosen", "traitSubTreeId": 24, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-eluneschosen", "nodes": [94608, 94598, 94588, 94594, 94596, 94607, 94597, 94590, 94585, 94586, 94587]}, {"id": 123300, "type": "subtree", "name": "Keeper of the Grove", "traitSubTreeId": 23, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-keeperofthegrove", "nodes": [94600, 94599, 94602, 94593, 94605, 94604, 94595, 94591, 94592, 94601, 94606]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82084, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100222, 100223]}, {"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Feral", "specId": 103, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}], "freeNode": true}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82204, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 91044, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112967, "definitionId": 117972, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82204, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103282, "definitionId": 108287, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91044], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}], "freeNode": true}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91044], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82204, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82124, "name": "Tiger's Fury", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82123, 82085, 82120], "prev": [], "entries": [{"id": 103188, "definitionId": 108193, "maxRanks": 1, "type": "active", "name": "Tiger's Fury", "spellId": 5217, "icon": "ability_mount_jungletiger", "index": 100}]}, {"id": 82123, "name": "Omen of Clarity", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [82098, 82122, 82102], "prev": [82124], "entries": [{"id": 103187, "definitionId": 108192, "maxRanks": 1, "type": "passive", "name": "Omen of Clarity", "spellId": 16864, "icon": "spell_nature_crystalball", "index": 100}]}, {"id": 82085, "name": "Coiled to Spring", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82124], "entries": [{"id": 103144, "definitionId": 108149, "maxRanks": 1, "type": "passive", "name": "Coiled to Spring", "spellId": 449537, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 82120, "name": "Primal Wrath", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82122, 82086, 82119], "prev": [82124], "entries": [{"id": 103184, "definitionId": 108189, "maxRanks": 1, "type": "active", "name": "Primal Wrath", "spellId": 285381, "icon": "artifactability_feraldruid_ashamanesbite", "index": 100}]}, {"id": 82098, "name": "Merciless Claws / Thrashing Claws", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82102], "prev": [82123], "entries": [{"id": 103159, "definitionId": 108164, "maxRanks": 1, "type": "passive", "name": "Merciless Claws", "spellId": 231063, "icon": "inv_misc_monsterclaw_03", "index": 100}, {"id": 114823, "definitionId": 119830, "maxRanks": 1, "type": "passive", "name": "Thrashing Claws", "spellId": 405300, "icon": "spell_druid_thrash", "index": 200}]}, {"id": 82122, "name": "Predator", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82102, 82121, 82119], "prev": [82123, 82120], "entries": [{"id": 103186, "definitionId": 108191, "maxRanks": 1, "type": "passive", "name": "Predator", "spellId": 202021, "icon": "ability_hunter_catlikereflexes", "index": 100}]}, {"id": 82086, "name": "Double-Clawed Rake", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82119], "prev": [82120], "entries": [{"id": 103145, "definitionId": 108150, "maxRanks": 1, "type": "passive", "name": "Double-Clawed Rake", "spellId": 391700, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82102, "name": "Sabertooth", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82104, 82099, 82116], "prev": [82098, 82122, 82123], "entries": [{"id": 103163, "definitionId": 108168, "maxRanks": 1, "type": "passive", "name": "Sabertooth", "spellId": 202031, "icon": "inv_misc_monsterfang_01", "index": 100}]}, {"id": 82121, "name": "Tireless Energy", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 2, "next": [], "prev": [82122], "entries": [{"id": 103185, "definitionId": 108190, "maxRanks": 2, "type": "passive", "name": "Tireless Energy", "spellId": 383352, "icon": "spell_chargepositive", "index": 100}]}, {"id": 82119, "name": "Pouncing Strikes", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82116, 82103, 82118], "prev": [82086, 82122, 82120], "entries": [{"id": 103183, "definitionId": 108188, "maxRanks": 1, "type": "passive", "name": "Pouncing Strikes", "spellId": 390772, "icon": "ability_druid_prowl", "index": 100}]}, {"id": 82104, "name": "Sudden Ambush", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [92641, 82106], "prev": [82102], "entries": [{"id": 103165, "definitionId": 108170, "maxRanks": 1, "type": "passive", "name": "Sudden Ambush", "spellId": 384667, "icon": "ability_hunter_catlikereflexes", "index": 100}]}, {"id": 82099, "name": "Savage Fury", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82106], "prev": [82102], "entries": [{"id": 103160, "definitionId": 108165, "maxRanks": 1, "type": "passive", "name": "Savage Fury", "spellId": 449645, "icon": "ability_druid_kingofthejungle", "index": 100}]}, {"id": 82116, "name": "Survival Instincts", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82101], "prev": [82119, 82102], "entries": [{"id": 103180, "definitionId": 108185, "maxRanks": 1, "type": "active", "name": "Survival Instincts", "spellId": 61336, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82103, "name": "Rampant Ferocity", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82117], "prev": [82119], "entries": [{"id": 103164, "definitionId": 108169, "maxRanks": 1, "type": "passive", "name": "Rampant Ferocity", "spellId": 391709, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 82118, "name": "Infected Wounds", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82117, 82088], "prev": [82119], "entries": [{"id": 103182, "definitionId": 108187, "maxRanks": 1, "type": "passive", "name": "Infected Wounds", "spellId": 48484, "icon": "ability_druid_infectedwound", "index": 100}]}, {"id": 92641, "name": "Lunar Inspiration", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82104], "entries": [{"id": 114771, "definitionId": 119778, "maxRanks": 1, "type": "passive", "name": "Lunar Inspiration", "spellId": 155580, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 82106, "name": "Predatory Swiftness", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82107, 82110], "prev": [82104, 82099], "entries": [{"id": 103167, "definitionId": 108172, "maxRanks": 1, "type": "passive", "name": "Predatory Swiftness", "spellId": 16974, "icon": "ability_hunter_pet_cat", "index": 100}]}, {"id": 82101, "name": "Berserk", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82105, 82100, 82090], "prev": [82116], "entries": [{"id": 103162, "definitionId": 108167, "maxRanks": 1, "type": "active", "name": "Berserk", "spellId": 343223, "visibleSpellId": 106951, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82117, "name": "Dreadful Bleeding", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82091, 82094], "prev": [82118, 82103], "entries": [{"id": 103181, "definitionId": 108186, "maxRanks": 1, "type": "passive", "name": "Dreadful Bleeding", "spellId": 391045, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82088, "name": "Taste for Blood", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82118], "entries": [{"id": 103147, "definitionId": 108152, "maxRanks": 1, "type": "passive", "name": "Taste for Blood", "spellId": 384665, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 82107, "name": "Raging Fury / Tiger's Tenacity", "type": "choice", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82110, 82109], "prev": [82106], "entries": [{"id": 103169, "definitionId": 108174, "maxRanks": 1, "type": "passive", "name": "Raging Fury", "spellId": 391078, "icon": "ability_druid_predatoryinstincts", "index": 100}, {"id": 103168, "definitionId": 108173, "maxRanks": 1, "type": "passive", "name": "Tiger's Tenacity", "spellId": 391872, "icon": "ability_druid_healinginstincts", "index": 200}]}, {"id": 82105, "name": "Berserk: Heart of the Lion", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103166, "definitionId": 108171, "maxRanks": 1, "type": "passive", "name": "Berserk: Heart of the Lion", "spellId": 391174, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82100, "name": "Moment of Clarity", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103161, "definitionId": 108166, "maxRanks": 1, "type": "passive", "name": "Moment of Clarity", "spellId": 236068, "icon": "spell_druid_momentofclarity", "index": 100}]}, {"id": 82090, "name": "Berserk: Frenzy", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103149, "definitionId": 108154, "maxRanks": 1, "type": "passive", "name": "Berserk: Frenzy", "spellId": 384668, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82091, "name": "Wild Slashes / Brutal Slash", "type": "choice", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82094, 82093], "prev": [82117], "entries": [{"id": 103150, "definitionId": 108155, "maxRanks": 1, "type": "passive", "name": "Wild Slashes", "spellId": 390864, "icon": "ability_xavius_tormentingswipe", "index": 100}, {"id": 103151, "definitionId": 108156, "maxRanks": 1, "type": "active", "name": "Brutal Slash", "spellId": 202028, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 82110, "name": "Carnivorous Instinct", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82112, 82109, 82108], "prev": [82107, 82106], "entries": [{"id": 103173, "definitionId": 108178, "maxRanks": 2, "type": "passive", "name": "Carnivorous Instinct", "spellId": 390902, "icon": "ability_mount_jungletiger", "index": 100}]}, {"id": 82115, "name": "Frantic Momentum", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82112, 82114, 82096], "prev": [82090, 82100, 82105], "entries": [{"id": 103179, "definitionId": 108184, "maxRanks": 2, "type": "passive", "name": "Frantic Momentum", "spellId": 391875, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 82094, "name": "Saber Jaws", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82096, 82093, 82092], "prev": [82091, 82117], "entries": [{"id": 103155, "definitionId": 108160, "maxRanks": 2, "type": "passive", "name": "Saber Jaws", "spellId": 421432, "icon": "inv_misc_monsterfang_02", "index": 100}]}, {"id": 82109, "name": "Lion's Strength / Bloodtalons", "type": "choice", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82108], "prev": [82110, 82107], "entries": [{"id": 103172, "definitionId": 108177, "maxRanks": 1, "type": "passive", "name": "Lion's Strength", "spellId": 391972, "icon": "ability_hunter_masterscall", "index": 100}, {"id": 103171, "definitionId": 108176, "maxRanks": 1, "type": "passive", "name": "Bloodtalons", "spellId": 319439, "icon": "spell_druid_bloodythrash", "index": 200}]}, {"id": 82112, "name": "Adaptive Swarm", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82111], "prev": [82110, 82115], "entries": [{"id": 103175, "definitionId": 108180, "maxRanks": 1, "type": "active", "name": "Adaptive Swarm", "spellId": 391888, "icon": "ability_maldraxxus_druid", "index": 100}]}, {"id": 82114, "name": "Incarnation: Avatar of Ashamane / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82113], "prev": [82115], "entries": [{"id": 103178, "definitionId": 108183, "maxRanks": 1, "type": "active", "name": "Incarnation: Avatar of Ashamane", "spellId": 102543, "icon": "spell_druid_incarnation", "index": 100}, {"id": 103177, "definitionId": 108182, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "ability_ardenweald_druid", "index": 200}]}, {"id": 82096, "name": "Soul of the Forest", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82095], "prev": [82094, 82115], "entries": [{"id": 103157, "definitionId": 108162, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158476, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 82093, "name": "Veinripper / Rip and Tear", "type": "choice", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82092], "prev": [82091, 82094], "entries": [{"id": 103154, "definitionId": 108159, "maxRanks": 1, "type": "passive", "name": "Veinripper", "spellId": 391978, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}, {"id": 103153, "definitionId": 108158, "maxRanks": 1, "type": "passive", "name": "Rip and Tear", "spellId": 391347, "icon": "ability_ghoulfrenzy", "index": 200}]}, {"id": 82108, "name": "Feral Frenzy", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82109, 82110], "entries": [{"id": 103170, "definitionId": 108175, "maxRanks": 1, "type": "active", "name": "Feral Frenzy", "spellId": 274837, "icon": "ability_druid_rake", "index": 100}]}, {"id": 82111, "name": "Unbridled Swarm", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82112], "entries": [{"id": 103174, "definitionId": 108179, "maxRanks": 1, "type": "passive", "name": "Unbridled Swarm", "spellId": 391951, "icon": "ability_maldraxxus_druid", "index": 100}]}, {"id": 82113, "name": "Ashamane's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82114], "entries": [{"id": 103176, "definitionId": 108181, "maxRanks": 1, "type": "passive", "name": "Ashamane's Guidance", "spellId": 391548, "icon": "spell_druid_incarnation", "index": 100}]}, {"id": 82095, "name": "Circle of Life and Death", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82096], "entries": [{"id": 103156, "definitionId": 108161, "maxRanks": 1, "type": "passive", "name": "Circle of Life and Death", "spellId": 400320, "icon": "ability_druid_cyclone", "index": 100}]}, {"id": 82092, "name": "Apex Predator's Craving", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82093, 82094], "entries": [{"id": 103152, "definitionId": 108157, "maxRanks": 1, "type": "passive", "name": "Apex Predator's Craving", "spellId": 391881, "icon": "ability_druid_primaltenacity", "index": 100}]}], "heroNodes": [{"id": 94626, "name": "Thriving Growth", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 22, "next": [94629, 94621, 94623], "prev": [], "entries": [{"id": 117226, "definitionId": 122238, "maxRanks": 1, "type": "passive", "name": "Thriving Growth", "spellId": 439528, "icon": "inv_ability_wildstalkerdruid_thrivinggrowth", "index": 100}], "freeNode": true}, {"id": 94629, "name": "Hunt Beneath the Open Skies", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94624], "prev": [94626], "entries": [{"id": 117231, "definitionId": 122243, "maxRanks": 1, "type": "passive", "name": "Hunt Beneath the Open Skies", "spellId": 439868, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 94623, "name": "Strategic Infusion", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94622], "prev": [94626], "entries": [{"id": 117223, "definitionId": 122235, "maxRanks": 1, "type": "passive", "name": "Strategic Infusion", "spellId": 439890, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 94621, "name": "Wildstalker's Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94625], "prev": [94626], "entries": [{"id": 117221, "definitionId": 122233, "maxRanks": 1, "type": "passive", "name": "Wildstalker's Power", "spellId": 439926, "icon": "ability_druid_skinteeth", "index": 100}]}, {"id": 94624, "name": "Lethal Preservation", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94631], "prev": [94629], "entries": [{"id": 117224, "definitionId": 122236, "maxRanks": 1, "type": "passive", "name": "Lethal Preservation", "spellId": 455461, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 94622, "name": "Entangling Vortex / Flower Walk", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94630], "prev": [94623], "entries": [{"id": 117222, "definitionId": 122234, "maxRanks": 1, "type": "passive", "name": "Entangling Vortex", "spellId": 439895, "icon": "spell_druid_ursolsvortex", "index": 100}, {"id": 119855, "definitionId": 124755, "maxRanks": 1, "type": "passive", "name": "Flower Walk", "spellId": 439901, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94625, "name": "Bond with Nature / Harmonious Constitution", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94628], "prev": [94621], "entries": [{"id": 117225, "definitionId": 122237, "maxRanks": 1, "type": "passive", "name": "Bond with Nature", "spellId": 439929, "icon": "inv_misc_marrigolds_01", "index": 100}, {"id": 119854, "definitionId": 124754, "maxRanks": 1, "type": "passive", "name": "Harmonious Constitution", "spellId": 440116, "icon": "talentspec_druid_restoration", "index": 200}]}, {"id": 94631, "name": "Resilient Flourishing / Root Network", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94624], "entries": [{"id": 117234, "definitionId": 122246, "maxRanks": 1, "type": "passive", "name": "Resilient Flourishing", "spellId": 439880, "icon": "inv_misc_herb_16", "index": 100}, {"id": 117233, "definitionId": 122245, "maxRanks": 1, "type": "passive", "name": "Root Network", "spellId": 439882, "icon": "ability_creature_poison_04", "index": 200}]}, {"id": 94630, "name": "Bursting Growth", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94622], "entries": [{"id": 117232, "definitionId": 122244, "maxRanks": 1, "type": "passive", "name": "Bursting Growth", "spellId": 440120, "icon": "inv_collections_armor_flowerbracelet_b_01", "index": 100}]}, {"id": 94628, "name": "Twin Sprouts / Implant", "type": "choice", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94625], "entries": [{"id": 117230, "definitionId": 122242, "maxRanks": 1, "type": "passive", "name": "Twin Sprouts", "spellId": 440117, "icon": "inv_misc_herb_evergreenmoss", "index": 100}, {"id": 117229, "definitionId": 122241, "maxRanks": 1, "type": "passive", "name": "Implant", "spellId": 440118, "icon": "ability_creature_poison_03", "index": 200}]}, {"id": 94627, "name": "Vigorous Creepers", "type": "single", "posX": 15290, "posY": 3900, "maxRanks": 1, "subTreeId": 22, "next": [], "prev": [94630, 94628, 94631], "entries": [{"id": 117227, "definitionId": 122239, "maxRanks": 1, "type": "passive", "name": "Vigorous Creepers", "spellId": 440119, "icon": "spell_druid_massentanglement", "index": 200}]}, {"id": 94609, "name": "Ravage", "type": "single", "posX": 1200, "posY": 5110, "maxRanks": 1, "entryNode": true, "subTreeId": 21, "next": [94620, 94611, 94618], "prev": [], "entries": [{"id": 117206, "definitionId": 122218, "maxRanks": 1, "type": "passive", "name": "Ravage", "spellId": 441583, "icon": "inv_ability_druidoftheclawdruid_ravage", "index": 100}], "freeNode": true}, {"id": 94618, "name": "Fount of Strength", "type": "single", "posX": 600, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94610], "prev": [94609], "entries": [{"id": 117218, "definitionId": 122230, "maxRanks": 1, "type": "passive", "name": "Fount of Strength", "spellId": 441675, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 94620, "name": "Dreadful Wound", "type": "single", "posX": 1200, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94619], "prev": [94609], "entries": [{"id": 117220, "definitionId": 122232, "maxRanks": 1, "type": "passive", "name": "Dreadful Wound", "spellId": 441809, "icon": "artifactability_feraldruid_openwounds", "index": 100}]}, {"id": 94611, "name": "Bestial Strength", "type": "single", "posX": 1800, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94615], "prev": [94609], "entries": [{"id": 117208, "definitionId": 122220, "maxRanks": 1, "type": "passive", "name": "Bestial Strength", "spellId": 441841, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 94610, "name": "Wildshape Mastery", "type": "single", "posX": 600, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94612], "prev": [94618], "entries": [{"id": 117207, "definitionId": 122219, "maxRanks": 1, "type": "passive", "name": "Wildshape Mastery", "spellId": 441678, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 94619, "name": "Ruthless Aggression / Killing Strikes", "type": "choice", "posX": 1200, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94616], "prev": [94620], "entries": [{"id": 117219, "definitionId": 122231, "maxRanks": 1, "type": "passive", "name": "Ruthless Aggression", "spellId": 441814, "icon": "ability_druid_rake", "index": 100}, {"id": 123048, "definitionId": 127929, "maxRanks": 1, "type": "passive", "name": "Killing Strikes", "spellId": 441824, "icon": "ability_druid_kingofthejungle", "index": 200}]}, {"id": 94615, "name": "Pack's Endurance", "type": "single", "posX": 1800, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "requiresNode": 82234, "next": [94614], "prev": [94611], "entries": [{"id": 117215, "definitionId": 122227, "maxRanks": 1, "type": "passive", "name": "Pack's Endurance", "spellId": 441844, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 94612, "name": "Empowered Shapeshifting / Wildpower Surge", "type": "choice", "posX": 600, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94610], "entries": [{"id": 117210, "definitionId": 122222, "maxRanks": 1, "type": "passive", "name": "Empowered Shapeshifting", "spellId": 441689, "icon": "spell_druid_primaltenacity", "index": 100}, {"id": 117209, "definitionId": 122221, "maxRanks": 1, "type": "passive", "name": "Wildpower Surge", "spellId": 441691, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 94616, "name": "Aggravate Wounds", "type": "single", "posX": 1200, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94619], "entries": [{"id": 117216, "definitionId": 122228, "maxRanks": 1, "type": "passive", "name": "Aggravate Wounds", "spellId": 441829, "icon": "artifactability_guardiandruid_goryfur", "index": 100}]}, {"id": 94614, "name": "Strike for the Heart / Tear Down the Mighty", "type": "choice", "posX": 1800, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94615], "entries": [{"id": 117214, "definitionId": 122226, "maxRanks": 1, "type": "passive", "name": "Strike for the Heart", "spellId": 441845, "icon": "ability_druid_primalagression", "index": 100}, {"id": 117213, "definitionId": 122225, "maxRanks": 1, "type": "passive", "name": "Tear Down the Mighty", "spellId": 441846, "icon": "spell_druid_malfurionstenacity", "index": 200}]}, {"id": 94613, "name": "Claw Rampage", "type": "single", "posX": 1200, "posY": 7510, "maxRanks": 1, "subTreeId": 21, "next": [], "prev": [94614, 94616, 94612], "entries": [{"id": 117211, "definitionId": 122223, "maxRanks": 1, "type": "passive", "name": "Claw Rampage", "spellId": 441835, "icon": "ability_xavius_tormentingswipe", "index": 200}]}], "subTreeNodes": [{"id": 99805, "name": "Druid of the Claw / Wildstalker", "type": "subtree", "posX": 8100, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123297, "type": "subtree", "name": "Druid of the Claw", "traitSubTreeId": 21, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-druidoftheclaw", "nodes": [94609, 94618, 94620, 94611, 94610, 94619, 94615, 94612, 94616, 94614, 94613]}, {"id": 123296, "type": "subtree", "name": "Wildstalker", "traitSubTreeId": 22, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-wildstalker", "nodes": [94626, 94629, 94623, 94621, 94624, 94622, 94625, 94631, 94630, 94628, 94627]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82084, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100222, 100223]}, {"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Guardian", "specId": 104, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}], "freeNode": true}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82215, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 91041, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112964, "definitionId": 117969, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}], "freeNode": true}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82215, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103293, "definitionId": 108298, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91041], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91041], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82215, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82127, "name": "Maul", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82129, 82126], "prev": [], "entries": [{"id": 103191, "definitionId": 108196, "maxRanks": 1, "type": "active", "name": "Maul", "spellId": 6807, "icon": "ability_druid_maul", "index": 0}]}, {"id": 82126, "name": "Gore", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [92227, 82161], "prev": [82127], "entries": [{"id": 103190, "definitionId": 108195, "maxRanks": 1, "type": "passive", "name": "Gore", "spellId": 210706, "icon": "spell_druid_bearhug", "index": 0}]}, {"id": 82129, "name": "Survival Instincts", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82131, 82128], "prev": [82127], "entries": [{"id": 103193, "definitionId": 108198, "maxRanks": 1, "type": "active", "name": "Survival Instincts", "spellId": 61336, "icon": "ability_druid_tigersroar", "index": 0}]}, {"id": 92227, "name": "Dream of Cenarius", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82160], "prev": [82126], "entries": [{"id": 103218, "definitionId": 108223, "maxRanks": 1, "type": "passive", "name": "Dream of Cenarius", "spellId": 372119, "icon": "ability_druid_dreamstate", "index": 100}]}, {"id": 82161, "name": "Brambles / Bristling Fur", "type": "choice", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82160, 82162, 82149], "prev": [82126], "entries": [{"id": 103231, "definitionId": 108236, "maxRanks": 1, "type": "passive", "name": "Brambles", "spellId": 203953, "icon": "inv_misc_thornnecklace", "index": 0}, {"id": 103230, "definitionId": 108235, "maxRanks": 1, "type": "active", "name": "Bristling Fur", "spellId": 155835, "icon": "spell_druid_bristlingfur", "index": 1}]}, {"id": 82131, "name": "Mangle", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82149, 82130, 82132], "prev": [82129], "entries": [{"id": 103195, "definitionId": 108200, "maxRanks": 1, "type": "passive", "name": "Mangle", "spellId": 231064, "icon": "ability_druid_mangle2", "index": 0}]}, {"id": 82128, "name": "Improved Survival Instincts", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82132], "prev": [82129], "entries": [{"id": 103192, "definitionId": 108197, "maxRanks": 1, "type": "passive", "name": "Improved Survival Instincts", "spellId": 328767, "icon": "ability_druid_tigersroar", "index": 0}]}, {"id": 82160, "name": "Innate Resolve", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82157, 82159], "prev": [82161, 92227], "entries": [{"id": 103229, "definitionId": 108234, "maxRanks": 1, "type": "passive", "name": "Innate Resolve", "spellId": 377811, "icon": "spell_nature_healingway", "index": 0}]}, {"id": 82162, "name": "Infected Wounds", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82159], "prev": [82161], "entries": [{"id": 103232, "definitionId": 108237, "maxRanks": 1, "type": "passive", "name": "Infected Wounds", "spellId": 345208, "icon": "ability_druid_infectedwound", "index": 0}]}, {"id": 82149, "name": "Berserk: Ravage", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82159, 82148], "prev": [82161, 82131], "entries": [{"id": 103216, "definitionId": 108221, "maxRanks": 1, "type": "active", "name": "Berserk: Ravage", "spellId": 343240, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82130, "name": "Ursoc's Endurance", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82148], "prev": [82131], "entries": [{"id": 103194, "definitionId": 108199, "maxRanks": 1, "type": "passive", "name": "Ursoc's Endurance", "spellId": 393611, "icon": "ability_hunter_pet_bear", "index": 0}]}, {"id": 82132, "name": "Gory Fur", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82148, 82143], "prev": [82131, 82128], "entries": [{"id": 103196, "definitionId": 108201, "maxRanks": 1, "type": "passive", "name": "Gory Fur", "spellId": 200854, "icon": "artifactability_guardiandruid_goryfur", "index": 0}]}, {"id": 82157, "name": "Reinvigoration", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [82156, 82158], "prev": [82160], "entries": [{"id": 103226, "definitionId": 108231, "maxRanks": 2, "type": "passive", "name": "Reinvigoration", "spellId": 372945, "icon": "ability_druid_overgrowth", "index": 0}]}, {"id": 82159, "name": "Vulnerable Flesh", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92226, 82158, 82133], "prev": [82149, 82160, 82162], "entries": [{"id": 103228, "definitionId": 108233, "maxRanks": 2, "type": "passive", "name": "Vulnerable Flesh", "spellId": 372618, "icon": "ability_druid_primalagression", "index": 0}]}, {"id": 82148, "name": "Layered Mane", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92226, 92585, 82139], "prev": [82149, 82132, 82130], "entries": [{"id": 103215, "definitionId": 108220, "maxRanks": 2, "type": "passive", "name": "Layered Mane", "spellId": 384721, "icon": "ability_druid_ironfur", "index": 0}]}, {"id": 82143, "name": "Survival of the Fittest", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92585, 82140], "prev": [82132], "entries": [{"id": 103210, "definitionId": 108215, "maxRanks": 2, "type": "passive", "name": "Survival of the Fittest", "spellId": 203965, "icon": "ability_druid_enrage", "index": 0}]}, {"id": 82156, "name": "Earthwarden", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155, 82152], "prev": [82157], "entries": [{"id": 103225, "definitionId": 108230, "maxRanks": 1, "type": "passive", "name": "Earthwarden", "spellId": 203974, "icon": "spell_shaman_blessingofeternals", "index": 0}]}, {"id": 82158, "name": "Vicious Cycle", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155], "prev": [82157, 82159], "entries": [{"id": 103227, "definitionId": 108232, "maxRanks": 1, "type": "passive", "name": "Vicious Cycle", "spellId": 371999, "icon": "ability_druid_rake", "index": 0}]}, {"id": 82133, "name": "Tooth and Claw", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155, 82138, 82137], "prev": [82159], "entries": [{"id": 103197, "definitionId": 108202, "maxRanks": 1, "type": "passive", "name": "Tooth and Claw", "spellId": 135288, "icon": "inv_misc_monsterfang_01", "index": 0}]}, {"id": 92226, "name": "Soul of the Forest", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82138], "prev": [82148, 82159], "entries": [{"id": 103208, "definitionId": 108213, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158477, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 82139, "name": "Reinforced Fur", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82138, 82144, 82134], "prev": [82148], "entries": [{"id": 103204, "definitionId": 108209, "maxRanks": 1, "type": "passive", "name": "Reinforced Fur", "spellId": 393618, "icon": "spell_nature_spiritarmor", "index": 0}]}, {"id": 92585, "name": "Thorns of Iron", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82144], "prev": [82143, 82148], "entries": [{"id": 114698, "definitionId": 119704, "maxRanks": 1, "type": "passive", "name": "Thorns of Iron", "spellId": 400222, "icon": "spell_nature_thorns_iron", "index": 0}]}, {"id": 82140, "name": "After the Wildfire / Guardian of Elune", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82144, 82145], "prev": [82143], "entries": [{"id": 103206, "definitionId": 108211, "maxRanks": 1, "type": "passive", "name": "After the Wildfire", "spellId": 371905, "icon": "spell_nature_naturetouchgrow", "index": 0}, {"id": 103205, "definitionId": 108210, "maxRanks": 1, "type": "passive", "name": "Guardian of Elune", "spellId": 155578, "icon": "spell_druid_guardianofelune", "index": 1}]}, {"id": 82155, "name": "Berserk: Unchecked Aggression", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82152, 82137, 82154], "prev": [82133, 82156, 82158], "entries": [{"id": 103224, "definitionId": 108229, "maxRanks": 1, "type": "active", "name": "Berserk: Unchecked Aggression", "spellId": 377623, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82138, "name": "Fury of Nature", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82137, 82134], "prev": [82133, 82139, 92226], "entries": [{"id": 103203, "definitionId": 108208, "maxRanks": 2, "type": "passive", "name": "Fury of Nature", "spellId": 370695, "icon": "ability_druid_cresentburn", "index": 0}]}, {"id": 82144, "name": "Berserk: Persistence", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82134, 82145, 82146], "prev": [82139, 82140, 92585], "entries": [{"id": 103211, "definitionId": 108216, "maxRanks": 1, "type": "active", "name": "Berserk: Persistence", "spellId": 377779, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82152, "name": "Rend and Tear / Untamed Savagery", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82151, 82154], "prev": [82155, 82156], "entries": [{"id": 103221, "definitionId": 108226, "maxRanks": 1, "type": "passive", "name": "Rend and Tear", "spellId": 204053, "icon": "ability_druid_swipe", "index": 0}, {"id": 103220, "definitionId": 108225, "maxRanks": 1, "type": "passive", "name": "Untamed Savagery", "spellId": 372943, "icon": "spell_druid_bloodythrash", "index": 1}]}, {"id": 82137, "name": "Circle of Life and Death", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82142, 82136, 82154], "prev": [82155, 82133, 82138], "entries": [{"id": 103202, "definitionId": 108207, "maxRanks": 1, "type": "passive", "name": "Circle of Life and Death", "spellId": 391969, "icon": "ability_druid_cyclone", "index": 0}]}, {"id": 82134, "name": "Elune's Favored", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82136, 92586, 82146], "prev": [82139, 82144, 82138], "entries": [{"id": 103198, "definitionId": 108203, "maxRanks": 1, "type": "passive", "name": "Elune's Favored", "spellId": 370586, "icon": "spell_holy_elunesgrace", "index": 0}]}, {"id": 82145, "name": "Galactic Guardian", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82147, 82146], "prev": [82140, 82144], "entries": [{"id": 103212, "definitionId": 108217, "maxRanks": 1, "type": "passive", "name": "Galactic Guardian", "spellId": 203964, "icon": "spell_frost_iceclaw", "index": 0}]}, {"id": 82151, "name": "Ursoc's Fury", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82153], "prev": [82152], "entries": [{"id": 103219, "definitionId": 108224, "maxRanks": 1, "type": "passive", "name": "Ursoc's Fury", "spellId": 377210, "icon": "achievement_emeraldnightmare_ursoc", "index": 0}]}, {"id": 82154, "name": "Flashing Claws", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82153, 92588], "prev": [82155, 82137, 82152], "entries": [{"id": 103223, "definitionId": 108228, "maxRanks": 2, "type": "passive", "name": "Flashing Claws", "spellId": 393427, "icon": "spell_druid_thrash", "index": 0}]}, {"id": 82142, "name": "Blood Frenzy", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [92588], "prev": [82137], "entries": [{"id": 103209, "definitionId": 108214, "maxRanks": 1, "type": "passive", "name": "Blood Frenzy", "spellId": 203962, "icon": "ability_druid_primaltenacity", "index": 0}]}, {"id": 82136, "name": "Incarnation: Guardian of Ursoc / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82135, 92588, 82141], "prev": [82137, 82134], "entries": [{"id": 103201, "definitionId": 108206, "maxRanks": 1, "type": "active", "name": "Incarnation: Guardian of Ursoc", "spellId": 394786, "visibleSpellId": 102558, "icon": "spell_druid_incarnation", "index": 0}, {"id": 103200, "definitionId": 108205, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "ability_ardenweald_druid", "index": 1}]}, {"id": 92586, "name": "Moonless Night", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82141], "prev": [82134], "entries": [{"id": 114699, "definitionId": 119705, "maxRanks": 1, "type": "passive", "name": "Moonless Night", "spellId": 400278, "icon": "artifactability_balancedruid_newmoon", "index": 0}]}, {"id": 82146, "name": "Scintillating Moonlight", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [92587, 82141], "prev": [82144, 82145, 82134], "entries": [{"id": 103213, "definitionId": 108218, "maxRanks": 2, "type": "passive", "name": "Scintillating Moonlight", "spellId": 238049, "icon": "spell_fire_twilightfireward", "index": 0}]}, {"id": 82147, "name": "Twin Moonfire", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [92587], "prev": [82145], "entries": [{"id": 103214, "definitionId": 108219, "maxRanks": 1, "type": "passive", "name": "Twin Moonfire", "spellId": 372567, "icon": "spell_nature_starfall", "index": 0}]}, {"id": 82153, "name": "Pulverize", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82151, 82154], "entries": [{"id": 103222, "definitionId": 108227, "maxRanks": 1, "type": "active", "name": "Pulverize", "spellId": 80313, "icon": "spell_druid_malfurionstenacity", "index": 0}]}, {"id": 92588, "name": "Raze", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82142, 82154, 82136], "entries": [{"id": 114701, "definitionId": 119707, "maxRanks": 1, "type": "active", "name": "Raze", "spellId": 400254, "icon": "ability_druid_lacerate", "index": 0}]}, {"id": 82135, "name": "Ursoc's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82136], "entries": [{"id": 103199, "definitionId": 108204, "maxRanks": 1, "type": "passive", "name": "Ursoc's Guidance", "spellId": 393414, "icon": "ability_ardenweald_druid", "index": 0}]}, {"id": 82141, "name": "Rage of the Sleeper", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82146, 92586, 82136], "entries": [{"id": 103207, "definitionId": 108212, "maxRanks": 1, "type": "active", "name": "Rage of the Sleeper", "spellId": 200851, "icon": "inv_hand_1h_artifactursoc_d_01", "index": 0}]}, {"id": 92587, "name": "Lunar Beam", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82146, 82147], "entries": [{"id": 114700, "definitionId": 119706, "maxRanks": 1, "type": "active", "name": "Lunar Beam", "spellId": 204066, "icon": "spell_nature_moonglow", "index": 0}]}], "heroNodes": [{"id": 94608, "name": "Boundless Moonlight", "type": "single", "posX": 7800, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 24, "requiresNode": 92587, "next": [94598, 94588, 94594], "prev": [], "entries": [{"id": 117205, "definitionId": 122217, "maxRanks": 1, "type": "passive", "name": "Boundless Moonlight", "spellId": 424058, "icon": "inv_ability_eluneschosendruid_boundlessmoonlight", "index": 100}], "freeNode": true}, {"id": 94598, "name": "Moon Guardian", "type": "single", "posX": 7200, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "requiresNode": 82145, "next": [94596], "prev": [94608], "entries": [{"id": 117193, "definitionId": 122205, "maxRanks": 1, "type": "passive", "name": "Moon Guardian", "spellId": 429520, "icon": "spell_nature_moonglow", "index": 100}]}, {"id": 94588, "name": "Lunar Insight", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94607], "prev": [94608], "entries": [{"id": 117181, "definitionId": 122193, "maxRanks": 1, "type": "passive", "name": "Lunar Insight", "spellId": 429530, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94594, "name": "Glistening Fur", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94597], "prev": [94608], "entries": [{"id": 117769, "definitionId": 122781, "maxRanks": 1, "type": "passive", "name": "Glistening Fur", "spellId": 429533, "icon": "ability_druid_ironfur", "index": 200}]}, {"id": 94596, "name": "Lunar Amplification", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94590], "prev": [94598], "entries": [{"id": 117190, "definitionId": 122202, "maxRanks": 1, "type": "passive", "name": "Lunar Amplification", "spellId": 429529, "icon": "spell_druid_lunarinspiration", "index": 200}]}, {"id": 94607, "name": "Atmospheric Exposure", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [94585], "prev": [94588], "entries": [{"id": 117204, "definitionId": 122216, "maxRanks": 1, "type": "passive", "name": "Atmospheric Exposure", "spellId": 429532, "icon": "inv_cosmicvoid_nova", "index": 100}]}, {"id": 94597, "name": "Moondust / Elune's Grace", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94586], "prev": [94594], "entries": [{"id": 117192, "definitionId": 122204, "maxRanks": 1, "type": "passive", "name": "Moondust", "spellId": 429538, "icon": "inv_enchant_dust", "index": 100}, {"id": 123304, "definitionId": 128177, "maxRanks": 1, "type": "passive", "name": "Elune's Grace", "spellId": 443046, "icon": "spell_druid_wildcharge", "index": 200}]}, {"id": 94590, "name": "Stellar Command / Lunar Calling", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94596], "entries": [{"id": 117183, "definitionId": 122195, "maxRanks": 1, "type": "passive", "name": "Stellar Command", "spellId": 429668, "icon": "artifactability_balancedruid_moonandstars", "index": 100}, {"id": 117770, "definitionId": 122782, "maxRanks": 1, "type": "passive", "name": "Lunar Calling", "spellId": 429523, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 94585, "name": "The Light of Elune / Astral Insight", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94607], "entries": [{"id": 117176, "definitionId": 122188, "maxRanks": 1, "type": "passive", "name": "The Light of Elune", "spellId": 428655, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 117772, "definitionId": 122784, "maxRanks": 1, "type": "passive", "name": "Astral Insight", "spellId": 429536, "icon": "spell_druid_incarnation", "index": 200}]}, {"id": 94586, "name": "Arcane Affinity / Lunation", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94597], "entries": [{"id": 117178, "definitionId": 122190, "maxRanks": 1, "type": "passive", "name": "Arcane Affinity", "spellId": 429540, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 117177, "definitionId": 122189, "maxRanks": 1, "type": "passive", "name": "Lunation", "spellId": 429539, "icon": "spell_nature_moonglow", "index": 200}]}, {"id": 94587, "name": "The Eternal Moon", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [], "prev": [94590, 94585, 94586], "entries": [{"id": 117179, "definitionId": 122191, "maxRanks": 1, "type": "passive", "name": "The Eternal Moon", "spellId": 424113, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 94609, "name": "Ravage", "type": "single", "posX": 1200, "posY": 5110, "maxRanks": 1, "entryNode": true, "subTreeId": 21, "next": [94620, 94611, 94618], "prev": [], "entries": [{"id": 117206, "definitionId": 122218, "maxRanks": 1, "type": "passive", "name": "Ravage", "spellId": 441583, "icon": "inv_ability_druidoftheclawdruid_ravage", "index": 100}], "freeNode": true}, {"id": 94618, "name": "Fount of Strength", "type": "single", "posX": 600, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94610], "prev": [94609], "entries": [{"id": 117218, "definitionId": 122230, "maxRanks": 1, "type": "passive", "name": "Fount of Strength", "spellId": 441675, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 94620, "name": "Dreadful Wound", "type": "single", "posX": 1200, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94619], "prev": [94609], "entries": [{"id": 117220, "definitionId": 122232, "maxRanks": 1, "type": "passive", "name": "Dreadful Wound", "spellId": 441809, "icon": "artifactability_feraldruid_openwounds", "index": 100}]}, {"id": 94611, "name": "Bestial Strength", "type": "single", "posX": 1800, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94615], "prev": [94609], "entries": [{"id": 117208, "definitionId": 122220, "maxRanks": 1, "type": "passive", "name": "Bestial Strength", "spellId": 441841, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 94610, "name": "Wildshape Mastery", "type": "single", "posX": 600, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94612], "prev": [94618], "entries": [{"id": 117207, "definitionId": 122219, "maxRanks": 1, "type": "passive", "name": "Wildshape Mastery", "spellId": 441678, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 94619, "name": "Ruthless Aggression / Killing Strikes", "type": "choice", "posX": 1200, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94616], "prev": [94620], "entries": [{"id": 117219, "definitionId": 122231, "maxRanks": 1, "type": "passive", "name": "Ruthless Aggression", "spellId": 441814, "icon": "ability_druid_rake", "index": 100}, {"id": 123048, "definitionId": 127929, "maxRanks": 1, "type": "passive", "name": "Killing Strikes", "spellId": 441824, "icon": "ability_druid_kingofthejungle", "index": 200}]}, {"id": 94615, "name": "Pack's Endurance", "type": "single", "posX": 1800, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "requiresNode": 82234, "next": [94614], "prev": [94611], "entries": [{"id": 117215, "definitionId": 122227, "maxRanks": 1, "type": "passive", "name": "Pack's Endurance", "spellId": 441844, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 94612, "name": "Empowered Shapeshifting / Wildpower Surge", "type": "choice", "posX": 600, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94610], "entries": [{"id": 117210, "definitionId": 122222, "maxRanks": 1, "type": "passive", "name": "Empowered Shapeshifting", "spellId": 441689, "icon": "spell_druid_primaltenacity", "index": 100}, {"id": 117209, "definitionId": 122221, "maxRanks": 1, "type": "passive", "name": "Wildpower Surge", "spellId": 441691, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 94616, "name": "Aggravate Wounds", "type": "single", "posX": 1200, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94619], "entries": [{"id": 117216, "definitionId": 122228, "maxRanks": 1, "type": "passive", "name": "Aggravate Wounds", "spellId": 441829, "icon": "artifactability_guardiandruid_goryfur", "index": 100}]}, {"id": 94614, "name": "Strike for the Heart / Tear Down the Mighty", "type": "choice", "posX": 1800, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94615], "entries": [{"id": 117214, "definitionId": 122226, "maxRanks": 1, "type": "passive", "name": "Strike for the Heart", "spellId": 441845, "icon": "ability_druid_primalagression", "index": 100}, {"id": 117213, "definitionId": 122225, "maxRanks": 1, "type": "passive", "name": "Tear Down the Mighty", "spellId": 441846, "icon": "spell_druid_malfurionstenacity", "index": 200}]}, {"id": 94613, "name": "Claw Rampage", "type": "single", "posX": 1200, "posY": 7510, "maxRanks": 1, "subTreeId": 21, "next": [], "prev": [94614, 94616, 94612], "entries": [{"id": 117211, "definitionId": 122223, "maxRanks": 1, "type": "passive", "name": "Claw Rampage", "spellId": 441835, "icon": "ability_xavius_tormentingswipe", "index": 200}]}], "subTreeNodes": [{"id": 99807, "name": "Druid of the Claw / Elune's Chosen", "type": "subtree", "posX": 8700, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123301, "type": "subtree", "name": "Druid of the Claw", "traitSubTreeId": 21, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-druidoftheclaw", "nodes": [94609, 94618, 94620, 94611, 94610, 94619, 94615, 94612, 94616, 94614, 94613]}, {"id": 123295, "type": "subtree", "name": "Elune's Chosen", "traitSubTreeId": 24, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-eluneschosen", "nodes": [94608, 94598, 94588, 94594, 94596, 94607, 94597, 94590, 94585, 94586, 94587]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82084, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100222, 100223]}, {"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Restoration", "specId": 105, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82203, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}], "freeNode": true}, {"id": 91040, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112963, "definitionId": 117968, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82203, "name": "Improved Nature's Cure", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103281, "definitionId": 108286, "maxRanks": 1, "type": "passive", "name": "Improved Nature's Cure", "spellId": 392378, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91040], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}], "freeNode": true}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91040], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82203, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82049, "name": "Lifebloom", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82048, 82050, 82084], "prev": [], "entries": [{"id": 103100, "definitionId": 108105, "maxRanks": 1, "type": "active", "name": "Lifebloom", "spellId": 33763, "icon": "inv_misc_herb_felblossom", "index": 100}]}, {"id": 82048, "name": "Ysera's Gift", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [82047], "prev": [82049], "entries": [{"id": 103099, "definitionId": 108104, "maxRanks": 1, "type": "passive", "name": "Ysera's Gift", "spellId": 145108, "icon": "inv_misc_head_dragon_green", "index": 100}]}, {"id": 82050, "name": "Nature's Swiftness", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82051], "prev": [82049], "entries": [{"id": 103101, "definitionId": 108106, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 132158, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 82084, "name": "Omen of Clarity", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82083], "prev": [82049], "entries": [{"id": 103143, "definitionId": 108148, "maxRanks": 1, "type": "passive", "name": "Omen of Clarity", "spellId": 113043, "icon": "spell_nature_crystalball", "index": 100}]}, {"id": 82047, "name": "Grove Tending", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82046, 82055, 82057], "prev": [82048], "entries": [{"id": 103098, "definitionId": 108103, "maxRanks": 1, "type": "passive", "name": "Grove Tending", "spellId": 383192, "icon": "inv_relics_idolofrejuvenation", "index": 100}]}, {"id": 82051, "name": "Nature's Splendor / Passing Seasons", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82055, 82052], "prev": [82050], "entries": [{"id": 103103, "definitionId": 108108, "maxRanks": 1, "type": "passive", "name": "Nature's Splendor", "spellId": 392288, "icon": "spell_nature_spiritarmor", "index": 100}, {"id": 103102, "definitionId": 108107, "maxRanks": 1, "type": "passive", "name": "Passing Seasons", "spellId": 382550, "icon": "spell_nature_ravenform", "index": 200}]}, {"id": 82083, "name": "Flash of Clarity", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82052, 92674, 82082], "prev": [82084], "entries": [{"id": 103142, "definitionId": 108147, "maxRanks": 1, "type": "passive", "name": "Flash of Clarity", "spellId": 392220, "icon": "spell_nature_crystalball", "index": 100}]}, {"id": 82046, "name": "Waking Dream", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82047], "entries": [{"id": 103097, "definitionId": 108102, "maxRanks": 1, "type": "passive", "name": "Waking Dream", "spellId": 392221, "icon": "inv_misc_head_dragon_green", "index": 100}]}, {"id": 82055, "name": "Improved Regrowth", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82057, 82054], "prev": [82047, 82051], "entries": [{"id": 103109, "definitionId": 108114, "maxRanks": 1, "type": "passive", "name": "Improved Regrowth", "spellId": 231032, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 82052, "name": "Abundance / Cenarion Ward", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82054, 82082], "prev": [82083, 82051], "entries": [{"id": 103105, "definitionId": 108110, "maxRanks": 1, "type": "passive", "name": "Abundance", "spellId": 207383, "icon": "ability_druid_empoweredrejuvination", "index": 100}, {"id": 103104, "definitionId": 108109, "maxRanks": 1, "type": "active", "name": "Cenarion Ward", "spellId": 102351, "icon": "ability_druid_naturalperfection", "index": 200}]}, {"id": 92674, "name": "Tranquil Mind", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82083], "entries": [{"id": 114808, "definitionId": 119815, "maxRanks": 1, "type": "passive", "name": "Tranquil Mind", "spellId": 403521, "icon": "ability_druid_serenefocus", "index": 100}]}, {"id": 82057, "name": "Efflorescence", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82043, 82059], "prev": [82047, 82055], "entries": [{"id": 103111, "definitionId": 108116, "maxRanks": 1, "type": "active", "name": "Efflorescence", "spellId": 145205, "icon": "inv_misc_herb_talandrasrose", "index": 100}]}, {"id": 82054, "name": "Tranquility", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82053], "prev": [82055, 82052], "entries": [{"id": 103108, "definitionId": 108113, "maxRanks": 1, "type": "active", "name": "Tranquility", "spellId": 740, "icon": "spell_nature_tranquility", "index": 100}]}, {"id": 82082, "name": "Ironbark", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82045, 82056, 82081], "prev": [82083, 82052], "entries": [{"id": 103141, "definitionId": 108146, "maxRanks": 1, "type": "active", "name": "Ironbark", "spellId": 102342, "icon": "spell_druid_ironbark", "index": 100}]}, {"id": 82059, "name": "Soul of the Forest", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82058, 82060, 82062], "prev": [82057], "entries": [{"id": 103113, "definitionId": 108118, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158478, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 82043, "name": "Nourish / Grove Guardians", "type": "choice", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [94535, 82065, 82062], "prev": [82057], "entries": [{"id": 103094, "definitionId": 108099, "maxRanks": 1, "type": "active", "name": "Nourish", "spellId": 50464, "icon": "ability_druid_nourish", "index": 100}, {"id": 117104, "definitionId": 122116, "maxRanks": 1, "type": "active", "name": "Grove Guardians", "spellId": 102693, "icon": "ability_druid_forceofnature", "index": 200}]}, {"id": 82053, "name": "Inner Peace / Dreamstate", "type": "choice", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82065], "prev": [82054], "entries": [{"id": 103107, "definitionId": 108112, "maxRanks": 1, "type": "passive", "name": "Inner Peace", "spellId": 197073, "icon": "ability_druid_dreamstate", "index": 200}, {"id": 103106, "definitionId": 108111, "maxRanks": 1, "type": "passive", "name": "Dreamstate", "spellId": 392162, "icon": "spell_unused", "index": 300}]}, {"id": 82056, "name": "Cultivation", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82065, 82080], "prev": [82082], "entries": [{"id": 103110, "definitionId": 108115, "maxRanks": 1, "type": "passive", "name": "Cultivation", "spellId": 200390, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 82045, "name": "Improved Wild Growth", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82080], "prev": [82082], "entries": [{"id": 103096, "definitionId": 108101, "maxRanks": 1, "type": "passive", "name": "Improved Wild Growth", "spellId": 328025, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82081, "name": "Stonebark / Improved Ironbark", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82075, 82080], "prev": [82082], "entries": [{"id": 103140, "definitionId": 108145, "maxRanks": 1, "type": "passive", "name": "Stonebark", "spellId": 197061, "icon": "archaeology_5_0_crackedmogurunestone", "index": 100}, {"id": 103139, "definitionId": 108144, "maxRanks": 1, "type": "passive", "name": "Improved Ironbark", "spellId": 382552, "icon": "spell_druid_ironbark", "index": 200}]}, {"id": 82060, "name": "Verdancy", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82061, 82074], "prev": [82059], "entries": [{"id": 103114, "definitionId": 108119, "maxRanks": 1, "type": "passive", "name": "Verdancy", "spellId": 392325, "icon": "inv_10_herb_seed_magiccolor5", "index": 100}]}, {"id": 82058, "name": "Rampant Growth", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82061], "prev": [82059], "entries": [{"id": 103112, "definitionId": 108117, "maxRanks": 1, "type": "passive", "name": "Rampant Growth", "spellId": 404521, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 82062, "name": "Regenesis", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82061, 82064], "prev": [82059, 82043], "entries": [{"id": 103117, "definitionId": 108122, "maxRanks": 2, "type": "passive", "name": "Regenesis", "spellId": 383191, "icon": "inv_misc_herb_liferoot_stem", "index": 100}]}, {"id": 94535, "name": "Wild Synthesis", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82064], "prev": [82043], "entries": [{"id": 117105, "definitionId": 122117, "maxRanks": 1, "type": "passive", "name": "Wild Synthesis", "spellId": 400533, "icon": "spell_nature_protectionformnature", "index": 100}]}, {"id": 82065, "name": "Harmonious Blooming", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82067, 82064], "prev": [82056, 82043, 82053], "entries": [{"id": 103121, "definitionId": 108126, "maxRanks": 2, "type": "passive", "name": "Harmonious Blooming", "spellId": 392256, "icon": "inv_misc_herb_felblossom", "index": 100}]}, {"id": 82080, "name": "Unstoppable Growth", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82067, 82079], "prev": [82081, 82045, 82056], "entries": [{"id": 103138, "definitionId": 108143, "maxRanks": 2, "type": "passive", "name": "Unstoppable Growth", "spellId": 382559, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82075, "name": "Regenerative Heartwood", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82079, 82076], "prev": [82081], "entries": [{"id": 103131, "definitionId": 108136, "maxRanks": 1, "type": "passive", "name": "Regenerative Heartwood", "spellId": 392116, "icon": "spell_nature_naturetouchgrow", "index": 100}]}, {"id": 82061, "name": "Spring Blossoms / Overgrowth", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82070, 82074, 82073], "prev": [82058, 82060, 82062], "entries": [{"id": 103116, "definitionId": 108121, "maxRanks": 1, "type": "passive", "name": "Spring Blossoms", "spellId": 207385, "icon": "inv_misc_trailofflowers", "index": 100}, {"id": 103115, "definitionId": 108120, "maxRanks": 1, "type": "active", "name": "Overgrowth", "spellId": 203651, "icon": "ability_druid_overgrowth", "index": 200}]}, {"id": 82064, "name": "Incarnation: Tree of Life / Convoke the Spirits", "type": "choice", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82070, 82063, 82072], "prev": [82062, 82065, 94535], "entries": [{"id": 103120, "definitionId": 108125, "maxRanks": 1, "type": "active", "name": "Incarnation: Tree of Life", "spellId": 33891, "icon": "ability_druid_improvedtreeform", "index": 100}, {"id": 103119, "definitionId": 108124, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "ability_ardenweald_druid", "index": 200}]}, {"id": 82067, "name": "Call of the Elder Druid", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82068, 82066, 82072], "prev": [82080, 82065], "entries": [{"id": 103123, "definitionId": 108128, "maxRanks": 1, "type": "passive", "name": "Call of the Elder Druid", "spellId": 426784, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82079, "name": "Verdant Infusion / Prosperity", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82068, 82076], "prev": [82075, 82080], "entries": [{"id": 103137, "definitionId": 108142, "maxRanks": 1, "type": "passive", "name": "Verdant Infusion", "spellId": 392410, "icon": "inv_relics_totemoflife", "index": 100}, {"id": 103136, "definitionId": 108141, "maxRanks": 1, "type": "passive", "name": "Prosperity", "spellId": 200383, "icon": "ability_druid_giftoftheearthmother", "index": 200}]}, {"id": 82074, "name": "Liveliness / Master Shapeshifter", "type": "choice", "posX": 9900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82073], "prev": [82060, 82061], "entries": [{"id": 103130, "definitionId": 108135, "maxRanks": 1, "type": "passive", "name": "Liveliness", "spellId": 426702, "icon": "spell_druid_symbiosis", "index": 100}, {"id": 114809, "definitionId": 119816, "maxRanks": 1, "type": "passive", "name": "Master Shapeshifter", "spellId": 289237, "icon": "ability_druid_mastershapeshifter", "index": 200}]}, {"id": 82070, "name": "Embrace of the Dream / Invigorate", "type": "choice", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82073, 82077], "prev": [82061, 82064], "entries": [{"id": 103126, "definitionId": 108131, "maxRanks": 1, "type": "passive", "name": "Embrace of the Dream", "spellId": 392124, "icon": "ability_druid_healinginstincts", "index": 100}, {"id": 123777, "definitionId": 128615, "maxRanks": 1, "type": "active", "name": "Invigorate", "spellId": 392160, "icon": "spell_nature_preservation", "index": 200}]}, {"id": 82063, "name": "Cenarius' Guidance", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82077], "prev": [82064], "entries": [{"id": 103118, "definitionId": 108123, "maxRanks": 1, "type": "passive", "name": "Cenarius' Guidance", "spellId": 393371, "icon": "ability_druid_treeoflife", "index": 100}]}, {"id": 82072, "name": "Budding Leaves", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82077, 82069], "prev": [82067, 82064], "entries": [{"id": 103128, "definitionId": 108133, "maxRanks": 2, "type": "passive", "name": "Budding Leaves", "spellId": 392167, "icon": "inv_misc_herb_fellotus", "index": 100}]}, {"id": 82066, "name": "Dream of Cenarius", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82069], "prev": [82067], "entries": [{"id": 103122, "definitionId": 108127, "maxRanks": 1, "type": "passive", "name": "Dream of Cenarius", "spellId": 158504, "icon": "ability_druid_dreamstate", "index": 100}]}, {"id": 82068, "name": "Thriving Vegetation", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82069, 82071], "prev": [82067, 82079], "entries": [{"id": 103124, "definitionId": 108129, "maxRanks": 2, "type": "passive", "name": "Thriving Vegetation", "spellId": 447131, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82076, "name": "Nurturing Dormancy", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82071], "prev": [82079, 82075], "entries": [{"id": 103132, "definitionId": 108137, "maxRanks": 1, "type": "passive", "name": "Nurturing Dormancy", "spellId": 392099, "icon": "ability_druid_replenish", "index": 100}]}, {"id": 82073, "name": "Photosynthesis / Flourish", "type": "choice", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82074, 82070, 82061], "entries": [{"id": 103129, "definitionId": 108134, "maxRanks": 1, "type": "passive", "name": "Photosynthesis", "spellId": 274902, "icon": "spell_lifegivingseed", "index": 200}, {"id": 123776, "definitionId": 128614, "maxRanks": 1, "type": "active", "name": "Flourish", "spellId": 197721, "icon": "spell_druid_wildburst", "index": 300}]}, {"id": 82077, "name": "Power of the Archdruid / Undergrowth", "type": "choice", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82063, 82072, 82070], "entries": [{"id": 103134, "definitionId": 108139, "maxRanks": 1, "type": "passive", "name": "Power of the Archdruid", "spellId": 392302, "icon": "spell_druid_rampantgrowth", "index": 100}, {"id": 103133, "definitionId": 108138, "maxRanks": 1, "type": "passive", "name": "Undergrowth", "spellId": 392301, "icon": "spell_druid_germination_rejuvenation", "index": 200}]}, {"id": 82069, "name": "Reforestation", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82068, 82066, 82072], "entries": [{"id": 103125, "definitionId": 108130, "maxRanks": 1, "type": "passive", "name": "Reforestation", "spellId": 392356, "icon": "inv_herbalism_70_yserallineseed", "index": 100}]}, {"id": 82071, "name": "Germination", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82076, 82068], "entries": [{"id": 103127, "definitionId": 108132, "maxRanks": 1, "type": "passive", "name": "Germination", "spellId": 155675, "icon": "spell_druid_germination", "index": 100}]}], "heroNodes": [{"id": 94626, "name": "Thriving Growth", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 22, "next": [94629, 94621, 94623], "prev": [], "entries": [{"id": 117226, "definitionId": 122238, "maxRanks": 1, "type": "passive", "name": "Thriving Growth", "spellId": 439528, "icon": "inv_ability_wildstalkerdruid_thrivinggrowth", "index": 100}], "freeNode": true}, {"id": 94629, "name": "Hunt Beneath the Open Skies", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94624], "prev": [94626], "entries": [{"id": 117231, "definitionId": 122243, "maxRanks": 1, "type": "passive", "name": "Hunt Beneath the Open Skies", "spellId": 439868, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 94623, "name": "Strategic Infusion", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94622], "prev": [94626], "entries": [{"id": 117223, "definitionId": 122235, "maxRanks": 1, "type": "passive", "name": "Strategic Infusion", "spellId": 439890, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 94621, "name": "Wildstalker's Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94625], "prev": [94626], "entries": [{"id": 117221, "definitionId": 122233, "maxRanks": 1, "type": "passive", "name": "Wildstalker's Power", "spellId": 439926, "icon": "ability_druid_skinteeth", "index": 100}]}, {"id": 94624, "name": "Lethal Preservation", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94631], "prev": [94629], "entries": [{"id": 117224, "definitionId": 122236, "maxRanks": 1, "type": "passive", "name": "Lethal Preservation", "spellId": 455461, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 94622, "name": "Entangling Vortex / Flower Walk", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94630], "prev": [94623], "entries": [{"id": 117222, "definitionId": 122234, "maxRanks": 1, "type": "passive", "name": "Entangling Vortex", "spellId": 439895, "icon": "spell_druid_ursolsvortex", "index": 100}, {"id": 119855, "definitionId": 124755, "maxRanks": 1, "type": "passive", "name": "Flower Walk", "spellId": 439901, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94625, "name": "Bond with Nature / Harmonious Constitution", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94628], "prev": [94621], "entries": [{"id": 117225, "definitionId": 122237, "maxRanks": 1, "type": "passive", "name": "Bond with Nature", "spellId": 439929, "icon": "inv_misc_marrigolds_01", "index": 100}, {"id": 119854, "definitionId": 124754, "maxRanks": 1, "type": "passive", "name": "Harmonious Constitution", "spellId": 440116, "icon": "talentspec_druid_restoration", "index": 200}]}, {"id": 94631, "name": "Resilient Flourishing / Root Network", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94624], "entries": [{"id": 117234, "definitionId": 122246, "maxRanks": 1, "type": "passive", "name": "Resilient Flourishing", "spellId": 439880, "icon": "inv_misc_herb_16", "index": 100}, {"id": 117233, "definitionId": 122245, "maxRanks": 1, "type": "passive", "name": "Root Network", "spellId": 439882, "icon": "ability_creature_poison_04", "index": 200}]}, {"id": 94630, "name": "Bursting Growth", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94622], "entries": [{"id": 117232, "definitionId": 122244, "maxRanks": 1, "type": "passive", "name": "Bursting Growth", "spellId": 440120, "icon": "inv_collections_armor_flowerbracelet_b_01", "index": 100}]}, {"id": 94628, "name": "Twin Sprouts / Implant", "type": "choice", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94625], "entries": [{"id": 117230, "definitionId": 122242, "maxRanks": 1, "type": "passive", "name": "Twin Sprouts", "spellId": 440117, "icon": "inv_misc_herb_evergreenmoss", "index": 100}, {"id": 117229, "definitionId": 122241, "maxRanks": 1, "type": "passive", "name": "Implant", "spellId": 440118, "icon": "ability_creature_poison_03", "index": 200}]}, {"id": 94627, "name": "Vigorous Creepers", "type": "single", "posX": 15290, "posY": 3900, "maxRanks": 1, "subTreeId": 22, "next": [], "prev": [94630, 94628, 94631], "entries": [{"id": 117227, "definitionId": 122239, "maxRanks": 1, "type": "passive", "name": "Vigorous Creepers", "spellId": 440119, "icon": "spell_druid_massentanglement", "index": 200}]}, {"id": 94600, "name": "Dream Surge", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "entryNode": true, "subTreeId": 23, "requiresNode": 0, "next": [94599, 94602, 94593], "prev": [], "entries": [{"id": 117195, "definitionId": 122207, "maxRanks": 1, "type": "passive", "name": "Dream Surge", "spellId": 433831, "icon": "inv_ability_keeperofthegrovedruid_dreamsurge_fiendly", "index": 100}], "freeNode": true}, {"id": 94599, "name": "Treants of the Moon", "type": "single", "posX": 7200, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94605], "prev": [94600], "entries": [{"id": 117194, "definitionId": 122206, "maxRanks": 1, "type": "passive", "name": "Treants of the Moon", "spellId": 428544, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94602, "name": "Expansiveness", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94604], "prev": [94600], "entries": [{"id": 117197, "definitionId": 122209, "maxRanks": 1, "type": "passive", "name": "Expansiveness", "spellId": 429399, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 94593, "name": "Protective Growth", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94595], "prev": [94600], "entries": [{"id": 117186, "definitionId": 122198, "maxRanks": 1, "type": "passive", "name": "Protective Growth", "spellId": 433748, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 94605, "name": "Power of Nature / Durability of Nature", "type": "choice", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94591], "prev": [94599], "entries": [{"id": 117201, "definitionId": 122213, "maxRanks": 1, "type": "passive", "name": "Power of Nature", "spellId": 428859, "icon": "spell_nature_naturesblessing", "index": 100}, {"id": 117200, "definitionId": 122212, "maxRanks": 1, "type": "passive", "name": "Durability of Nature", "spellId": 429227, "icon": "ability_druid_manatree", "index": 200}]}, {"id": 94604, "name": "Cenarius' Might", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94592], "prev": [94602], "entries": [{"id": 117199, "definitionId": 122211, "maxRanks": 1, "type": "passive", "name": "Cenarius' Might", "spellId": 455797, "icon": "achievement_reputation_guardiansofcenarius", "index": 100}]}, {"id": 94595, "name": "Grove's Inspiration / Potent Enchantments", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94601], "prev": [94593], "entries": [{"id": 117189, "definitionId": 122201, "maxRanks": 1, "type": "passive", "name": "Grove's Inspiration", "spellId": 429402, "icon": "ability_druid_protectionofthegrove", "index": 100}, {"id": 117188, "definitionId": 122200, "maxRanks": 1, "type": "passive", "name": "Potent Enchantments", "spellId": 429420, "icon": "ability_druid_serenefocus", "index": 200}]}, {"id": 94591, "name": "Bounteous Bloom / Early Spring", "type": "choice", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94606], "prev": [94605], "entries": [{"id": 117184, "definitionId": 122196, "maxRanks": 1, "type": "passive", "name": "Bounteous Bloom", "spellId": 429215, "icon": "inv_herbalism_70_dreamleaf", "index": 100}, {"id": 117895, "definitionId": 122907, "maxRanks": 1, "type": "passive", "name": "Early Spring", "spellId": 428937, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94592, "name": "Power of the Dream / Control of the Dream", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94604], "entries": [{"id": 117185, "definitionId": 122197, "maxRanks": 1, "type": "passive", "name": "Power of the Dream", "spellId": 434220, "icon": "ability_xavius_dreamsimulacrum", "index": 100}, {"id": 117894, "definitionId": 122906, "maxRanks": 1, "type": "passive", "name": "Control of the Dream", "spellId": 434249, "icon": "inv_cloth_outdooremeralddream_d_01_buckle", "index": 200}]}, {"id": 94601, "name": "Blooming Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94595], "entries": [{"id": 117196, "definitionId": 122208, "maxRanks": 1, "type": "passive", "name": "Blooming Infusion", "spellId": 429433, "icon": "spell_nature_thorns", "index": 100}]}, {"id": 94606, "name": "Harmony of the Grove", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [], "prev": [94601, 94592, 94591], "entries": [{"id": 117203, "definitionId": 122215, "maxRanks": 1, "type": "passive", "name": "Harmony of the Grove", "spellId": 428731, "icon": "ability_druid_forceofnature", "index": 100}]}], "subTreeNodes": [{"id": 99806, "name": "Keeper of the Grove / Wildstalker", "type": "subtree", "posX": 9300, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123299, "type": "subtree", "name": "Keeper of the Grove", "traitSubTreeId": 23, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-keeperofthegrove", "nodes": [94600, 94599, 94602, 94593, 94605, 94604, 94595, 94591, 94592, 94601, 94606]}, {"id": 123298, "type": "subtree", "name": "Wildstalker", "traitSubTreeId": 22, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-wildstalker", "nodes": [94626, 94629, 94623, 94621, 94624, 94622, 94625, 94631, 94630, 94628, 94627]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82084, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100222, 100223]}, {"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Devastation", "specId": 1467, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}], "freeNode": true}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93303], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}]}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}]}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}], "freeNode": true}, {"id": 93303, "name": "Permeating Chill", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 115612, "definitionId": 120624, "maxRanks": 1, "type": "passive", "name": "Permeating Chill", "spellId": 370897, "icon": "spell_frost_coldhearted", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}]}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 93296], "prev": [93312, 93303], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93303], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [93296, 93290, 93294], "prev": [93303, 93341], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 93296, "name": "Heavy Wingbeats / Clobbering Sweep", "type": "choice", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93302, 93295], "entries": [{"id": 115605, "definitionId": 120617, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}, {"id": 115604, "definitionId": 120616, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 200}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93334, "name": "Pyre", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93285, 93333], "prev": [], "entries": [{"id": 115647, "definitionId": 120659, "maxRanks": 1, "type": "active", "name": "Pyre", "spellId": 357211, "icon": "ability_evoker_pyre", "index": 100}]}, {"id": 93285, "name": "Ruby Essence Burst", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93284, 93332], "prev": [93334], "entries": [{"id": 115593, "definitionId": 120605, "maxRanks": 1, "type": "passive", "name": "Ruby Essence Burst", "spellId": 376872, "icon": "ability_evoker_essenceburst4", "index": 100}]}, {"id": 93333, "name": "Azure Essence Burst", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93332, 93275], "prev": [93334], "entries": [{"id": 115646, "definitionId": 120658, "maxRanks": 1, "type": "passive", "name": "Azure Essence Burst", "spellId": 375721, "icon": "ability_evoker_essenceburst2", "index": 100}]}, {"id": 93284, "name": "Dense Energy", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93283, 93276], "prev": [93285], "entries": [{"id": 115592, "definitionId": 120604, "maxRanks": 1, "type": "passive", "name": "Dense Energy", "spellId": 370962, "icon": "ability_evoker_pyre", "index": 100}]}, {"id": 93332, "name": "Imposing Presence / Inner Radiance", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93331], "prev": [93333, 93285], "entries": [{"id": 115645, "definitionId": 120657, "maxRanks": 1, "type": "passive", "name": "Imposing Presence", "spellId": 371016, "icon": "ability_evoker_quell", "index": 100}, {"id": 115644, "definitionId": 120656, "maxRanks": 1, "type": "passive", "name": "Inner Radiance", "spellId": 386405, "icon": "spell_holy_spellwarding", "index": 200}]}, {"id": 93275, "name": "Eternity Surge", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93273, 93274], "prev": [93333], "entries": [{"id": 115581, "definitionId": 120593, "maxRanks": 1, "type": "active", "name": "Eternity Surge", "spellId": 359073, "icon": "ability_evoker_eternitysurge", "index": 100}]}, {"id": 93283, "name": "Volatility", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 2, "next": [93282], "prev": [93284], "entries": [{"id": 115591, "definitionId": 120603, "maxRanks": 2, "type": "passive", "name": "Volatility", "spellId": 369089, "icon": "spell_fire_ragnaros_lavabolt", "index": 100}]}, {"id": 93276, "name": "Power Nexus", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [93282], "prev": [93284], "entries": [{"id": 115582, "definitionId": 120594, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93331, "name": "Dragonrage", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93330], "prev": [93332], "entries": [{"id": 115643, "definitionId": 120655, "maxRanks": 1, "type": "active", "name": "Dragonrage", "spellId": 375087, "icon": "ability_evoker_dragonrage", "index": 100}]}, {"id": 93273, "name": "Lay Waste", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [93319], "prev": [93275], "entries": [{"id": 115579, "definitionId": 120591, "maxRanks": 1, "type": "passive", "name": "Lay Waste", "spellId": 371034, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 93274, "name": "Arcane Intensity", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 2, "next": [93319], "prev": [93275], "entries": [{"id": 115580, "definitionId": 120592, "maxRanks": 2, "type": "passive", "name": "Arcane Intensity", "spellId": 375618, "icon": "ability_evoker_disintegrate", "index": 100}]}, {"id": 93282, "name": "Ruby Embers / Engulfing Blaze", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93278, 93281], "prev": [93283, 93276], "entries": [{"id": 115590, "definitionId": 120602, "maxRanks": 1, "type": "passive", "name": "Ruby Embers", "spellId": 365937, "icon": "inv_tradeskillitem_lessersorcerersfire", "index": 100}, {"id": 115589, "definitionId": 120601, "maxRanks": 1, "type": "passive", "name": "Engulfing Blaze", "spellId": 370837, "icon": "inv_inscription_pigment_ruby", "index": 200}]}, {"id": 93330, "name": "Animosity", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93281, 93329], "prev": [93331], "entries": [{"id": 115642, "definitionId": 120654, "maxRanks": 1, "type": "passive", "name": "Animosity", "spellId": 375797, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 93319, "name": "Essence Attunement", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93329, 93320, 93318], "prev": [93274, 93273], "entries": [{"id": 115631, "definitionId": 120643, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93278, "name": "Firestorm", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93280, 93277], "prev": [93282], "entries": [{"id": 115585, "definitionId": 120597, "maxRanks": 1, "type": "active", "name": "Firestorm", "spellId": 368847, "icon": "ability_evoker_firestorm", "index": 100}]}, {"id": 93281, "name": "Heat Wave", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93280, 93328], "prev": [93282, 93330], "entries": [{"id": 115588, "definitionId": 120600, "maxRanks": 2, "type": "passive", "name": "Heat Wave", "spellId": 375725, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 93329, "name": "Honed Aggression", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93328, 93317], "prev": [93319, 93330], "entries": [{"id": 115641, "definitionId": 120653, "maxRanks": 2, "type": "passive", "name": "Honed Aggression", "spellId": 371038, "icon": "spell_fire_blueimmolation", "index": 100}]}, {"id": 93320, "name": "Eternity's Span", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93319], "entries": [{"id": 115632, "definitionId": 120644, "maxRanks": 1, "type": "passive", "name": "Eternity's Span", "spellId": 375757, "icon": "spell_arcane_arcanetorrent", "index": 100}]}, {"id": 93318, "name": "Eye of Infinity / Event Horizon", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93317, 93316], "prev": [93319], "entries": [{"id": 115630, "definitionId": 120642, "maxRanks": 1, "type": "passive", "name": "Eye of Infinity", "spellId": 411165, "icon": "ability_evoker_dragonrage2_blue", "index": 100}, {"id": 115629, "definitionId": 120641, "maxRanks": 1, "type": "passive", "name": "Event Horizon", "spellId": 411164, "icon": "ability_priest_cascade_shadow", "index": 200}]}, {"id": 93280, "name": "Catalyze", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93314], "prev": [93278, 93281], "entries": [{"id": 115587, "definitionId": 120599, "maxRanks": 1, "type": "passive", "name": "Catalyze", "spellId": 386283, "icon": "spell_fire_masterofelements", "index": 100}]}, {"id": 93328, "name": "Tyranny", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93314, 93327, 93323], "prev": [93281, 93329], "entries": [{"id": 115640, "definitionId": 120652, "maxRanks": 1, "type": "passive", "name": "Tyranny", "spellId": 376888, "icon": "ability_evoker_dragonrage2", "index": 100}]}, {"id": 93317, "name": "Charged Blast", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93323], "prev": [93318, 93329], "entries": [{"id": 115628, "definitionId": 120640, "maxRanks": 1, "type": "passive", "name": "Charged Blast", "spellId": 370455, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 93316, "name": "Shattering Star", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93315], "prev": [93318], "entries": [{"id": 115627, "definitionId": 120639, "maxRanks": 1, "type": "active", "name": "Shattering Star", "spellId": 370452, "icon": "ability_evoker_chargedblast", "index": 100}]}, {"id": 93277, "name": "Snapfire", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93326], "prev": [93278], "entries": [{"id": 115584, "definitionId": 120596, "maxRanks": 1, "type": "passive", "name": "Snapfire", "spellId": 370783, "icon": "spell_shaman_improvedfirenova", "index": 200}]}, {"id": 93314, "name": "Burnout", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93326, 93279, 93272], "prev": [93328, 93280], "entries": [{"id": 115624, "definitionId": 120636, "maxRanks": 1, "type": "passive", "name": "Burnout", "spellId": 375801, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93327, "name": "Onyx Legacy", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93328], "entries": [{"id": 115639, "definitionId": 120651, "maxRanks": 1, "type": "passive", "name": "Onyx Legacy", "spellId": 386348, "icon": "inv_misc_head_dragon_black", "index": 100}]}, {"id": 93323, "name": "Spellweaver's Dominance", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93272, 93325, 93322], "prev": [93328, 93317], "entries": [{"id": 115635, "definitionId": 120647, "maxRanks": 1, "type": "passive", "name": "Spellweaver's Dominance", "spellId": 370845, "icon": "spell_shaman_shockinglava", "index": 100}]}, {"id": 93315, "name": "Focusing Iris / Arcane Vigor", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93322], "prev": [93316], "entries": [{"id": 115626, "definitionId": 120638, "maxRanks": 1, "type": "passive", "name": "Focusing Iris", "spellId": 386336, "icon": "spell_mage_temporalshield", "index": 100}, {"id": 115625, "definitionId": 120637, "maxRanks": 1, "type": "passive", "name": "Arcane Vigor", "spellId": 386342, "icon": "spell_arcane_arcane01", "index": 200}]}, {"id": 93326, "name": "Imminent Destruction", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93313], "prev": [93277, 93314], "entries": [{"id": 115638, "definitionId": 120650, "maxRanks": 1, "type": "passive", "name": "Imminent Destruction", "spellId": 370781, "icon": "spell_burningbladeshaman_blazing_radiance", "index": 100}]}, {"id": 93279, "name": "Font of Magic", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93365], "prev": [93314], "entries": [{"id": 115586, "definitionId": 120598, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 411212, "icon": "ability_evoker_fontofmagic", "index": 100}]}, {"id": 93272, "name": "Titanic Wrath", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93366], "prev": [93314, 93323], "entries": [{"id": 115578, "definitionId": 120590, "maxRanks": 1, "type": "passive", "name": "Titanic Wrath", "spellId": 386272, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 93325, "name": "Hoarded Power", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93324], "prev": [93323], "entries": [{"id": 115637, "definitionId": 120649, "maxRanks": 1, "type": "passive", "name": "Hoarded Power", "spellId": 375796, "icon": "ability_evoker_innatemagic2", "index": 100}]}, {"id": 93322, "name": "Power Swell", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93321], "prev": [93323, 93315], "entries": [{"id": 115634, "definitionId": 120646, "maxRanks": 1, "type": "passive", "name": "Power Swell", "spellId": 370839, "icon": "ability_evoker_powernexus2", "index": 100}]}, {"id": 93313, "name": "Feed the Flames", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93326], "entries": [{"id": 115623, "definitionId": 120635, "maxRanks": 1, "type": "passive", "name": "Feed the Flames", "spellId": 369846, "icon": "mace_1h_blacksmithing_d_04_icon", "index": 100}]}, {"id": 93365, "name": "Scorching Embers", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93279], "entries": [{"id": 115622, "definitionId": 120634, "maxRanks": 1, "type": "passive", "name": "Scorching Embers", "spellId": 370819, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 93366, "name": "Causality", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93272], "entries": [{"id": 115683, "definitionId": 120695, "maxRanks": 1, "type": "passive", "name": "Causality", "spellId": 375777, "icon": "spell_azerite_essence_16", "index": 100}]}, {"id": 93324, "name": "Scintillation", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93325], "entries": [{"id": 115636, "definitionId": 120648, "maxRanks": 1, "type": "passive", "name": "Scintillation", "spellId": 370821, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 93321, "name": "Iridescence", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93322], "entries": [{"id": 115633, "definitionId": 120645, "maxRanks": 1, "type": "passive", "name": "Iridescence", "spellId": 370867, "icon": "ability_evoker_powerswell", "index": 100}]}], "heroNodes": [{"id": 94939, "name": "Mass Disintegrate", "type": "single", "posX": 15000, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 36, "next": [94952, 94936, 94944], "prev": [], "entries": [{"id": 117536, "definitionId": 122548, "maxRanks": 1, "type": "passive", "name": "Mass Disintegrate", "spellId": 436335, "icon": "ability_evoker_disintegrate", "index": 100}], "freeNode": true}, {"id": 94950, "name": "Engulf", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 37, "next": [94937, 99857, 94956], "prev": [], "entries": [{"id": 117547, "definitionId": 122559, "maxRanks": 1, "type": "active", "name": "Engulf", "spellId": 443328, "icon": "inv_ability_flameshaperevoker_engulf", "index": 100}], "freeNode": true}, {"id": 94952, "name": "Might of the Black Dragonflight", "type": "single", "posX": 14400, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94921], "prev": [94939, 98931], "entries": [{"id": 117549, "definitionId": 122561, "maxRanks": 1, "type": "passive", "name": "Might of the Black Dragonflight", "spellId": 441705, "icon": "ability_evoker_blackattunementalt", "index": 100}]}, {"id": 94936, "name": "Bombardments", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94953], "prev": [94939, 98931], "entries": [{"id": 117533, "definitionId": 122545, "maxRanks": 1, "type": "passive", "name": "Bombardments", "spellId": 434300, "icon": "inv_ability_scalecommanderevoker_bombardments", "index": 100}]}, {"id": 94944, "name": "Onslaught", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94934], "prev": [94939, 98931], "entries": [{"id": 117541, "definitionId": 122553, "maxRanks": 1, "type": "passive", "name": "Onslaught", "spellId": 441245, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 94937, "name": "Trailblazer / Shape of Flame", "type": "choice", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94949], "prev": [94950], "entries": [{"id": 117534, "definitionId": 122546, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 444849, "icon": "ability_deathwing_fierygrip", "index": 100}, {"id": 123404, "definitionId": 128242, "maxRanks": 1, "type": "passive", "name": "Shape of Flame", "spellId": 445074, "icon": "ability_mage_flamecannon", "index": 200}]}, {"id": 99857, "name": "Traveling Flame", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94946], "prev": [94950], "entries": [{"id": 123416, "definitionId": 128254, "maxRanks": 1, "type": "passive", "name": "Traveling Flame", "spellId": 444140, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 94956, "name": "Enkindle", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94923], "prev": [94950], "entries": [{"id": 117553, "definitionId": 122565, "maxRanks": 1, "type": "passive", "name": "Enkindle", "spellId": 444016, "icon": "inv_10_elementalcombinedfoozles_purifiedshadowflame", "index": 100}]}, {"id": 94921, "name": "Melt Armor", "type": "single", "posX": 14400, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94933], "prev": [94952], "entries": [{"id": 117518, "definitionId": 122530, "maxRanks": 1, "type": "passive", "name": "Melt Armor", "spellId": 441176, "icon": "inv_10_gearupgrade_drakesshadowflameenhancedcrest", "index": 100}]}, {"id": 94953, "name": "Wingleader", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94928], "prev": [94936], "entries": [{"id": 117550, "definitionId": 122562, "maxRanks": 1, "type": "passive", "name": "Wingleader", "spellId": 441206, "icon": "ability_racial_soar", "index": 100}]}, {"id": 94934, "name": "Unrelenting Siege", "type": "single", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94943], "prev": [94944], "entries": [{"id": 117531, "definitionId": 122543, "maxRanks": 1, "type": "passive", "name": "Unrelenting Siege", "spellId": 441246, "icon": "ability_siege_engineer_superheated", "index": 100}]}, {"id": 94949, "name": "Conduit of Flame", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94920], "prev": [94937], "entries": [{"id": 117546, "definitionId": 122558, "maxRanks": 1, "type": "passive", "name": "Conduit of Flame", "spellId": 444843, "icon": "ability_evoker_innatemagic5", "index": 100}]}, {"id": 94946, "name": "Burning Adrenaline", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94945], "prev": [99857], "entries": [{"id": 117543, "definitionId": 122555, "maxRanks": 1, "type": "passive", "name": "Burning Adrenaline", "spellId": 444020, "icon": "inv_gauntlets_03", "index": 100}]}, {"id": 94923, "name": "Fan the Flames / Expanded Lungs", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94931], "prev": [94956], "entries": [{"id": 117520, "definitionId": 122532, "maxRanks": 1, "type": "passive", "name": "Fan the Flames", "spellId": 444318, "icon": "ability_evoker_oppressingroar2", "index": 100}, {"id": 123767, "definitionId": 128605, "maxRanks": 1, "type": "passive", "name": "Expanded Lungs", "spellId": 444845, "icon": "inv_fyrakk_dragonbreath", "index": 200}]}, {"id": 94933, "name": "Hardened Scales / Menacing Presence", "type": "choice", "posX": 14400, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94921], "entries": [{"id": 117530, "definitionId": 122542, "maxRanks": 1, "type": "passive", "name": "Hardened Scales", "spellId": 441180, "icon": "inv_10_skinning_scales_black", "index": 100}, {"id": 120125, "definitionId": 125025, "maxRanks": 1, "type": "passive", "name": "Menacing Presence", "spellId": 441181, "icon": "ability_racial_wingbuffet", "index": 200}]}, {"id": 94928, "name": "Extended Battle / Diverted Power", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94953], "entries": [{"id": 117525, "definitionId": 122537, "maxRanks": 1, "type": "passive", "name": "Extended Battle", "spellId": 441212, "icon": "ability_evoker_divideandconquer", "index": 100}, {"id": 120124, "definitionId": 125024, "maxRanks": 1, "type": "passive", "name": "Diverted Power", "spellId": 441219, "icon": "ability_evoker_powerswell", "index": 200}]}, {"id": 94943, "name": "Nimble Flyer / Slipstream", "type": "choice", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94934], "entries": [{"id": 117540, "definitionId": 122552, "maxRanks": 1, "type": "passive", "name": "Nimble Flyer", "spellId": 441253, "icon": "ability_evoker_hover", "index": 100}, {"id": 120123, "definitionId": 125023, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 441257, "icon": "ability_dragonriding_barrelroll01", "index": 200}]}, {"id": 94920, "name": "Titanic Precision", "type": "single", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94949], "entries": [{"id": 117517, "definitionId": 122529, "maxRanks": 1, "type": "passive", "name": "Titanic Precision", "spellId": 445625, "icon": "inv_10_misc_titansspark_shadowflame", "index": 100}]}, {"id": 94945, "name": "Red Hot", "type": "single", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94946], "entries": [{"id": 117542, "definitionId": 122554, "maxRanks": 1, "type": "passive", "name": "Red Hot", "spellId": 444081, "icon": "ability_ironmaidens_grapeshotblast", "index": 100}]}, {"id": 94931, "name": "Lifecinders / Draconic Instincts", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94923], "entries": [{"id": 117528, "definitionId": 122540, "maxRanks": 1, "type": "passive", "name": "Lifecinders", "spellId": 444322, "icon": "inv_misc_herb_cinderbloom_petal", "index": 100}, {"id": 123405, "definitionId": 128243, "maxRanks": 1, "type": "passive", "name": "Draconic Instincts", "spellId": 445958, "icon": "inv_misc_scales_basilliskorange", "index": 200}]}, {"id": 94941, "name": "Maneuverability", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 36, "next": [], "prev": [94928, 94933, 94943], "entries": [{"id": 117538, "definitionId": 122550, "maxRanks": 1, "type": "passive", "name": "Maneuverability", "spellId": 433871, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 94922, "name": "Consume Flame", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 37, "next": [], "prev": [94920, 94945, 94931], "entries": [{"id": 117519, "definitionId": 122531, "maxRanks": 1, "type": "passive", "name": "Consume Flame", "spellId": 444088, "icon": "inv_shadowflames_wave", "index": 100}]}], "subTreeNodes": [{"id": 99827, "name": "Flameshaper / Scalecommander", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123336, "type": "subtree", "name": "Flameshaper", "traitSubTreeId": 37, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-flameshaper", "nodes": [94950, 94937, 99857, 94956, 94949, 94946, 94923, 94920, 94945, 94931, 94922]}, {"id": 123333, "type": "subtree", "name": "Scalecommander", "traitSubTreeId": 36, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-scalecommander", "nodes": [94939, 98931, 94952, 94936, 94944, 94921, 94953, 94934, 94933, 94928, 94943, 94941]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93296, 93297, 93298, 93299, 93300, 93301, 93302, 93303, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249]}, {"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Preservation", "specId": 1468, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93303], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}]}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}], "freeNode": true}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 93303, "name": "Permeating Chill", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 115612, "definitionId": 120624, "maxRanks": 1, "type": "passive", "name": "Permeating Chill", "spellId": 370897, "icon": "spell_frost_coldhearted", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}], "freeNode": true}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 93296], "prev": [93312, 93303], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93303], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [93296, 93290, 93294], "prev": [93303, 93341], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 93296, "name": "Heavy Wingbeats / Clobbering Sweep", "type": "choice", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93302, 93295], "entries": [{"id": 115605, "definitionId": 120617, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}, {"id": 115604, "definitionId": 120616, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 200}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93339, "name": "Echo", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93240, 93338], "prev": [], "entries": [{"id": 115653, "definitionId": 120665, "maxRanks": 1, "type": "active", "name": "Echo", "spellId": 364343, "icon": "ability_evoker_echo", "index": 100}]}, {"id": 93240, "name": "Dream Breath", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93241, 93239], "prev": [93339], "entries": [{"id": 115542, "definitionId": 120554, "maxRanks": 1, "type": "active", "name": "Dream Breath", "spellId": 355936, "icon": "ability_evoker_dreambreath", "index": 100}]}, {"id": 93338, "name": "Reversion", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93239, 93337], "prev": [93339], "entries": [{"id": 115652, "definitionId": 120664, "maxRanks": 1, "type": "active", "name": "Reversion", "spellId": 366155, "icon": "ability_evoker_reversion", "index": 100}]}, {"id": 93241, "name": "Temporal Compression", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93243], "prev": [93240], "entries": [{"id": 115543, "definitionId": 120555, "maxRanks": 1, "type": "passive", "name": "Temporal Compression", "spellId": 362874, "icon": "ability_evoker_rewind2", "index": 100}]}, {"id": 93239, "name": "Essence Burst", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93238], "prev": [93338, 93240], "entries": [{"id": 115541, "definitionId": 120553, "maxRanks": 1, "type": "passive", "name": "Essence Burst", "spellId": 369297, "icon": "ability_evoker_essenceburst", "index": 100}]}, {"id": 93337, "name": "Rewind", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93336], "prev": [93338], "entries": [{"id": 115651, "definitionId": 120663, "maxRanks": 1, "type": "active", "name": "Rewind", "spellId": 363534, "icon": "ability_evoker_rewind", "index": 100}]}, {"id": 93243, "name": "Spiritbloom", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [93245, 93242, 93247], "prev": [93241], "entries": [{"id": 115546, "definitionId": 120558, "maxRanks": 1, "type": "active", "name": "Spiritbloom", "spellId": 367226, "icon": "ability_evoker_spiritbloom2", "index": 100}]}, {"id": 93238, "name": "Essence Attunement", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93247, 93252, 93255], "prev": [93239], "entries": [{"id": 115540, "definitionId": 120552, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93336, "name": "Time Dilation", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [93255, 93335, 93257], "prev": [93337], "entries": [{"id": 115650, "definitionId": 120662, "maxRanks": 1, "type": "active", "name": "Time Dilation", "spellId": 357170, "icon": "ability_evoker_timedilation", "index": 100}]}, {"id": 93245, "name": "Emerald Communion", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93244, 93246], "prev": [93243], "entries": [{"id": 115549, "definitionId": 120561, "maxRanks": 1, "type": "active", "name": "Emerald Communion", "spellId": 370960, "icon": "ability_evoker_green_01", "index": 100}]}, {"id": 93242, "name": "Empath / Spiritual Clarity", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93243], "entries": [{"id": 115545, "definitionId": 120557, "maxRanks": 1, "type": "passive", "name": "Empath", "spellId": 376138, "icon": "ability_evoker_powernexus2", "index": 100}, {"id": 115544, "definitionId": 120556, "maxRanks": 1, "type": "passive", "name": "Spiritual Clarity", "spellId": 376150, "icon": "ability_evoker_spiritbloom", "index": 200}]}, {"id": 93247, "name": "Fluttering Seedlings", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93246, 93248], "prev": [93238, 93243], "entries": [{"id": 115551, "definitionId": 120563, "maxRanks": 2, "type": "passive", "name": "Fluttering Seedlings", "spellId": 359793, "icon": "inv_herbalism_70_yserallineseed", "index": 100}]}, {"id": 93252, "name": "Font of Magic", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93249], "prev": [93238], "entries": [{"id": 115556, "definitionId": 120568, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 375783, "icon": "ability_evoker_fontofmagic", "index": 200}]}, {"id": 93255, "name": "Golden Hour", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93254, 93256], "prev": [93336, 93238], "entries": [{"id": 115559, "definitionId": 120571, "maxRanks": 1, "type": "passive", "name": "Golden Hour", "spellId": 378196, "icon": "inv_belt_armor_waistoftime_d_01", "index": 100}]}, {"id": 93335, "name": "Delay Harm / Just in Time", "type": "choice", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93336], "entries": [{"id": 115649, "definitionId": 120661, "maxRanks": 1, "type": "passive", "name": "Delay Harm", "spellId": 376207, "icon": "ability_racial_magicalresistance", "index": 100}, {"id": 115648, "definitionId": 120660, "maxRanks": 1, "type": "passive", "name": "Just in Time", "spellId": 376204, "icon": "inv_offhand_1h_artifactsilverhand_d_01", "index": 200}]}, {"id": 93257, "name": "Temporal Anomaly", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93256, 93258], "prev": [93336], "entries": [{"id": 115561, "definitionId": 120573, "maxRanks": 1, "type": "active", "name": "Temporal Anomaly", "spellId": 373861, "icon": "ability_evoker_temporalanomaly", "index": 100}]}, {"id": 93244, "name": "Dreamwalker / Rush of Vitality", "type": "choice", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93250], "prev": [93245], "entries": [{"id": 115548, "definitionId": 120560, "maxRanks": 1, "type": "passive", "name": "Dreamwalker", "spellId": 377082, "icon": "ability_hunter_onewithnature", "index": 100}, {"id": 115547, "definitionId": 120559, "maxRanks": 1, "type": "passive", "name": "Rush of Vitality", "spellId": 377086, "icon": "trade_enchanting_greatermysteriousessence", "index": 200}]}, {"id": 93246, "name": "Exhilarating Burst", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [], "prev": [93247, 93245], "entries": [{"id": 115550, "definitionId": 120562, "maxRanks": 2, "type": "passive", "name": "Exhilarating Burst", "spellId": 377100, "icon": "ability_evoker_essenceburst3", "index": 100}]}, {"id": 93248, "name": "Field of Dreams", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93250, 93253], "prev": [93247], "entries": [{"id": 115552, "definitionId": 120564, "maxRanks": 1, "type": "passive", "name": "Field of Dreams", "spellId": 370062, "icon": "inv_misc_herb_chamlotus", "index": 100}]}, {"id": 93249, "name": "Power Nexus", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93253], "prev": [93252], "entries": [{"id": 115553, "definitionId": 120565, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93254, "name": "Time Lord", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93253, 93260], "prev": [93255], "entries": [{"id": 115558, "definitionId": 120570, "maxRanks": 2, "type": "passive", "name": "Time Lord", "spellId": 372527, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93256, "name": "Flow State", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [], "prev": [93257, 93255], "entries": [{"id": 115560, "definitionId": 120572, "maxRanks": 2, "type": "passive", "name": "Flow State", "spellId": 385696, "icon": "ability_evoker_timespiral", "index": 100}]}, {"id": 93258, "name": "Resonating Sphere / Nozdormu's Teachings", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93260], "prev": [93257], "entries": [{"id": 115563, "definitionId": 120575, "maxRanks": 1, "type": "passive", "name": "Resonating Sphere", "spellId": 376236, "icon": "ability_evoker_bronze_01", "index": 100}, {"id": 115562, "definitionId": 120574, "maxRanks": 1, "type": "passive", "name": "Nozdormu's Teachings", "spellId": 376237, "icon": "inv_misc_head_dragon_bronze", "index": 200}]}, {"id": 93250, "name": "Call of Ysera", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93269, 93251, 93237], "prev": [93244, 93248], "entries": [{"id": 115554, "definitionId": 120566, "maxRanks": 1, "type": "passive", "name": "Call of Ysera", "spellId": 373834, "icon": "", "index": 200}]}, {"id": 93253, "name": "Lifebind", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93237, 99803, 93264], "prev": [93248, 93254, 93249], "entries": [{"id": 115557, "definitionId": 120569, "maxRanks": 1, "type": "passive", "name": "Lifebind", "spellId": 373270, "icon": "ability_evoker_hoverred", "index": 100}]}, {"id": 93260, "name": "Punctuality", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93264, 93261, 93259], "prev": [93258, 93254], "entries": [{"id": 115565, "definitionId": 120577, "maxRanks": 1, "type": "passive", "name": "Punctuality", "spellId": 371270, "icon": "inv_offhand_1h_ulduarraid_d_01", "index": 100}]}, {"id": 93269, "name": "Spark of Insight", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268], "prev": [93250], "entries": [{"id": 115575, "definitionId": 120587, "maxRanks": 1, "type": "passive", "name": "Spark of Insight", "spellId": 377099, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 93251, "name": "Ouroboros", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268], "prev": [93250], "entries": [{"id": 115555, "definitionId": 120567, "maxRanks": 1, "type": "passive", "name": "Ouroboros", "spellId": 381921, "icon": "ability_evoker_innatemagic", "index": 100}]}, {"id": 93237, "name": "Life-Giver's Flame", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268, 93236], "prev": [93253, 93250], "entries": [{"id": 115539, "definitionId": 120551, "maxRanks": 1, "type": "passive", "name": "Life-Giver's Flame", "spellId": 371426, "icon": "item_sparkofragnoros", "index": 100}]}, {"id": 99803, "name": "Titan's Gift", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93236], "prev": [93253], "entries": [{"id": 123293, "definitionId": 128171, "maxRanks": 1, "type": "passive", "name": "Titan's Gift", "spellId": 443264, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 93264, "name": "Erasure / Temporal Artificer", "type": "choice", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93236, 93263], "prev": [93253, 93260], "entries": [{"id": 115570, "definitionId": 120582, "maxRanks": 1, "type": "passive", "name": "Erasure", "spellId": 376210, "icon": "ability_bossmagistrix_timewarp2", "index": 100}, {"id": 115569, "definitionId": 120581, "maxRanks": 1, "type": "passive", "name": "Temporal Artificer", "spellId": 381922, "icon": "ability_evoker_rewind", "index": 200}]}, {"id": 93261, "name": "Energy Loop", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93263], "prev": [93260], "entries": [{"id": 115566, "definitionId": 120578, "maxRanks": 1, "type": "passive", "name": "Energy Loop", "spellId": 372233, "icon": "inv_elemental_mote_mana", "index": 100}]}, {"id": 93259, "name": "Time of Need", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93263], "prev": [93260], "entries": [{"id": 115564, "definitionId": 120576, "maxRanks": 1, "type": "passive", "name": "Time of Need", "spellId": 368412, "icon": "ability_evoker_masterylifebinder_bronze", "index": 300}]}, {"id": 93268, "name": "Renewing Breath", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93267, 93266], "prev": [93237, 93269, 93251], "entries": [{"id": 115574, "definitionId": 120586, "maxRanks": 2, "type": "passive", "name": "Renewing Breath", "spellId": 371257, "icon": "ability_evoker_dreambreath", "index": 100}]}, {"id": 93236, "name": "Lifeforce Mender", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [99804], "prev": [93264, 93237, 99803], "entries": [{"id": 115538, "definitionId": 120550, "maxRanks": 2, "type": "passive", "name": "Lifeforce Mender", "spellId": 376179, "icon": "ability_evoker_dragonrage2", "index": 100}]}, {"id": 93263, "name": "Timeless Magic", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93265, 93262], "prev": [93264, 93259, 93261], "entries": [{"id": 115568, "definitionId": 120580, "maxRanks": 2, "type": "passive", "name": "Timeless Magic", "spellId": 376240, "icon": "inv_artifact_xp05", "index": 100}]}, {"id": 93267, "name": "Dream Flight", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93268], "entries": [{"id": 115573, "definitionId": 120585, "maxRanks": 1, "type": "active", "name": "Dream Flight", "spellId": 359816, "icon": "ability_evoker_dreamflight", "index": 200}]}, {"id": 93266, "name": "Cycle of Life", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93268], "entries": [{"id": 115572, "definitionId": 120584, "maxRanks": 1, "type": "passive", "name": "Cycle of Life", "spellId": 371832, "icon": "spell_lifegivingseed", "index": 100}]}, {"id": 99804, "name": "Lifespark", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93236], "entries": [{"id": 123294, "definitionId": 128172, "maxRanks": 1, "type": "passive", "name": "Lifespark", "spellId": 443177, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93265, "name": "Grace Period", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93263], "entries": [{"id": 115571, "definitionId": 120583, "maxRanks": 1, "type": "passive", "name": "Grace Period", "spellId": 376239, "icon": "ability_evoker_reversion_green", "index": 100}]}, {"id": 93262, "name": "Stasis", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93263], "entries": [{"id": 115567, "definitionId": 120579, "maxRanks": 1, "type": "active", "name": "Stasis", "spellId": 370537, "icon": "ability_evoker_stasis", "index": 200}]}], "heroNodes": [{"id": 94950, "name": "Engulf", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 37, "next": [94937, 99857, 94956], "prev": [], "entries": [{"id": 117547, "definitionId": 122559, "maxRanks": 1, "type": "active", "name": "Engulf", "spellId": 443328, "icon": "inv_ability_flameshaperevoker_engulf", "index": 100}], "freeNode": true}, {"id": 94937, "name": "Trailblazer / Shape of Flame", "type": "choice", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94949], "prev": [94950], "entries": [{"id": 117534, "definitionId": 122546, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 444849, "icon": "ability_deathwing_fierygrip", "index": 100}, {"id": 123404, "definitionId": 128242, "maxRanks": 1, "type": "passive", "name": "Shape of Flame", "spellId": 445074, "icon": "ability_mage_flamecannon", "index": 200}]}, {"id": 99857, "name": "Traveling Flame", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94946], "prev": [94950], "entries": [{"id": 123416, "definitionId": 128254, "maxRanks": 1, "type": "passive", "name": "Traveling Flame", "spellId": 444140, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 94956, "name": "Enkindle", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94923], "prev": [94950], "entries": [{"id": 117553, "definitionId": 122565, "maxRanks": 1, "type": "passive", "name": "Enkindle", "spellId": 444016, "icon": "inv_10_elementalcombinedfoozles_purifiedshadowflame", "index": 100}]}, {"id": 94949, "name": "Conduit of Flame", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94920], "prev": [94937], "entries": [{"id": 117546, "definitionId": 122558, "maxRanks": 1, "type": "passive", "name": "Conduit of Flame", "spellId": 444843, "icon": "ability_evoker_innatemagic5", "index": 100}]}, {"id": 94946, "name": "Burning Adrenaline", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94945], "prev": [99857], "entries": [{"id": 117543, "definitionId": 122555, "maxRanks": 1, "type": "passive", "name": "Burning Adrenaline", "spellId": 444020, "icon": "inv_gauntlets_03", "index": 100}]}, {"id": 94923, "name": "Fan the Flames / Expanded Lungs", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94931], "prev": [94956], "entries": [{"id": 117520, "definitionId": 122532, "maxRanks": 1, "type": "passive", "name": "Fan the Flames", "spellId": 444318, "icon": "ability_evoker_oppressingroar2", "index": 100}, {"id": 123767, "definitionId": 128605, "maxRanks": 1, "type": "passive", "name": "Expanded Lungs", "spellId": 444845, "icon": "inv_fyrakk_dragonbreath", "index": 200}]}, {"id": 94920, "name": "Titanic Precision", "type": "single", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94949], "entries": [{"id": 117517, "definitionId": 122529, "maxRanks": 1, "type": "passive", "name": "Titanic Precision", "spellId": 445625, "icon": "inv_10_misc_titansspark_shadowflame", "index": 100}]}, {"id": 94945, "name": "Red Hot", "type": "single", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94946], "entries": [{"id": 117542, "definitionId": 122554, "maxRanks": 1, "type": "passive", "name": "Red Hot", "spellId": 444081, "icon": "ability_ironmaidens_grapeshotblast", "index": 100}]}, {"id": 94931, "name": "Lifecinders / Draconic Instincts", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94923], "entries": [{"id": 117528, "definitionId": 122540, "maxRanks": 1, "type": "passive", "name": "Lifecinders", "spellId": 444322, "icon": "inv_misc_herb_cinderbloom_petal", "index": 100}, {"id": 123405, "definitionId": 128243, "maxRanks": 1, "type": "passive", "name": "Draconic Instincts", "spellId": 445958, "icon": "inv_misc_scales_basilliskorange", "index": 200}]}, {"id": 94922, "name": "Consume Flame", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 37, "next": [], "prev": [94920, 94945, 94931], "entries": [{"id": 117519, "definitionId": 122531, "maxRanks": 1, "type": "passive", "name": "Consume Flame", "spellId": 444088, "icon": "inv_shadowflames_wave", "index": 100}]}, {"id": 94954, "name": "Chrono Flame", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 38, "next": [94955, 94948, 94925], "prev": [], "entries": [{"id": 117551, "definitionId": 122563, "maxRanks": 1, "type": "passive", "name": "Chrono Flame", "spellId": 431442, "icon": "inv_ability_chronowardenevoker_chronoflame", "index": 100}], "freeNode": true}, {"id": 94948, "name": "Warp", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94935], "prev": [94954], "entries": [{"id": 117545, "definitionId": 122557, "maxRanks": 1, "type": "passive", "name": "Warp", "spellId": 429483, "icon": "ability_evoker_spatialparadox", "index": 100}]}, {"id": 94955, "name": "Temporal Burst", "type": "single", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "requiresNode": 93350, "next": [94947], "prev": [94954], "entries": [{"id": 117552, "definitionId": 122564, "maxRanks": 1, "type": "passive", "name": "Temporal Burst", "spellId": 431695, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 94925, "name": "Reverberations", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94951], "prev": [94954], "entries": [{"id": 117522, "definitionId": 122534, "maxRanks": 1, "type": "passive", "name": "Reverberations", "spellId": 431615, "icon": "ability_evoker_giftoftheaspects", "index": 100}]}, {"id": 94935, "name": "Temporality / Motes of Acceleration", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94932], "prev": [94948], "entries": [{"id": 117532, "definitionId": 122544, "maxRanks": 1, "type": "passive", "name": "Temporality", "spellId": 431873, "icon": "ability_evoker_return", "index": 100}, {"id": 117784, "definitionId": 122796, "maxRanks": 1, "type": "passive", "name": "Motes of Acceleration", "spellId": 432008, "icon": "item_timemote_icon", "index": 200}]}, {"id": 94947, "name": "Threads of Fate", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94930], "prev": [94955], "entries": [{"id": 117544, "definitionId": 122556, "maxRanks": 1, "type": "passive", "name": "Threads of Fate", "spellId": 431715, "icon": "ability_evoker_sandsoftime", "index": 100}]}, {"id": 94951, "name": "Primacy", "type": "single", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94942], "prev": [94925], "entries": [{"id": 117548, "definitionId": 122560, "maxRanks": 1, "type": "passive", "name": "Primacy", "spellId": 431657, "icon": "inv_misc_pocketwatch_01", "index": 100}]}, {"id": 94932, "name": "Double-time / Time Convergence", "type": "choice", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94935], "entries": [{"id": 117529, "definitionId": 122541, "maxRanks": 1, "type": "passive", "name": "Double-time", "spellId": 431874, "icon": "spell_holy_borrowedtime", "index": 100}, {"id": 117786, "definitionId": 122798, "maxRanks": 1, "type": "passive", "name": "Time Convergence", "spellId": 431984, "icon": "ability_evoker_plotthefuture", "index": 200}]}, {"id": 94930, "name": "Master of Destiny / Instability Matrix", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94947], "entries": [{"id": 117527, "definitionId": 122539, "maxRanks": 1, "type": "passive", "name": "Master of Destiny", "spellId": 431840, "icon": "ability_evoker_defyfate", "index": 100}, {"id": 126310, "definitionId": 131136, "maxRanks": 1, "type": "passive", "name": "Instability Matrix", "spellId": 431484, "icon": "ability_dragonriding_bronzerewind01", "index": 200}]}, {"id": 94942, "name": "Golden Opportunity", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94951], "entries": [{"id": 117539, "definitionId": 122551, "maxRanks": 1, "type": "passive", "name": "Golden Opportunity", "spellId": 432004, "icon": "achievement_faction_goldenlotus", "index": 100}]}, {"id": 94929, "name": "Afterimage", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 38, "next": [], "prev": [94930, 94932, 94942], "entries": [{"id": 117526, "definitionId": 122538, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 431875, "icon": "ability_evoker_livingflame", "index": 100}]}], "subTreeNodes": [{"id": 99826, "name": "Chronowarden / Flameshaper", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123335, "type": "subtree", "name": "Chronowarden", "traitSubTreeId": 38, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-chronowarden", "nodes": [94954, 94948, 94955, 94925, 94935, 94947, 94951, 94932, 94930, 94942, 94929]}, {"id": 123332, "type": "subtree", "name": "Flameshaper", "traitSubTreeId": 37, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-flameshaper", "nodes": [94950, 94937, 99857, 94956, 94949, 94946, 94923, 94920, 94945, 94931, 94922]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93296, 93297, 93298, 93299, 93300, 93301, 93302, 93303, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249]}, {"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Augmentation", "specId": 1473, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}], "freeNode": true}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93303], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}], "freeNode": true}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}]}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 93303, "name": "Permeating Chill", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 115612, "definitionId": 120624, "maxRanks": 1, "type": "passive", "name": "Permeating Chill", "spellId": 370897, "icon": "spell_frost_coldhearted", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}]}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 93296], "prev": [93312, 93303], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93303], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [93296, 93290, 93294], "prev": [93303, 93341], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 93296, "name": "Heavy Wingbeats / Clobbering Sweep", "type": "choice", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93302, 93295], "entries": [{"id": 115605, "definitionId": 120617, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}, {"id": 115604, "definitionId": 120616, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 200}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93198, "name": "Ebon Might", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93200, 93220], "prev": [], "entries": [{"id": 115496, "definitionId": 120508, "maxRanks": 1, "type": "active", "name": "Ebon Might", "spellId": 395152, "icon": "spell_sarkareth", "index": 100}]}, {"id": 93200, "name": "Eruption", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93199, 93208], "prev": [93198], "entries": [{"id": 115498, "definitionId": 120510, "maxRanks": 1, "type": "active", "name": "Eruption", "spellId": 395160, "icon": "ability_evoker_eruption", "index": 100}]}, {"id": 93220, "name": "Essence Burst", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93219, 93221], "prev": [93198], "entries": [{"id": 115520, "definitionId": 120532, "maxRanks": 1, "type": "passive", "name": "Essence Burst", "spellId": 396187, "icon": "ability_evoker_essenceburst", "index": 100}]}, {"id": 93199, "name": "Imposing Presence / Inner Radiance", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93203], "prev": [93200], "entries": [{"id": 115497, "definitionId": 120509, "maxRanks": 1, "type": "passive", "name": "Imposing Presence", "spellId": 371016, "icon": "ability_evoker_quell", "index": 100}, {"id": 115690, "definitionId": 120702, "maxRanks": 1, "type": "passive", "name": "Inner Radiance", "spellId": 386405, "icon": "spell_holy_spellwarding", "index": 200}]}, {"id": 93208, "name": "Ricocheting Pyroclast", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [93203, 93234], "prev": [93200], "entries": [{"id": 115507, "definitionId": 120519, "maxRanks": 1, "type": "passive", "name": "Ricocheting Pyroclast", "spellId": 406659, "icon": "ability_rhyolith_volcano", "index": 100}]}, {"id": 93219, "name": "Essence Attunement", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [93234, 93222], "prev": [93220], "entries": [{"id": 115519, "definitionId": 120531, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93221, "name": "Pupil of Alexstrasza / Echoing Strike", "type": "choice", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93222], "prev": [93220], "entries": [{"id": 115521, "definitionId": 120533, "maxRanks": 1, "type": "passive", "name": "Pupil of Alexstrasza", "spellId": 407814, "icon": "ability_evoker_pupilofalexstraza", "index": 100}, {"id": 115680, "definitionId": 120692, "maxRanks": 1, "type": "passive", "name": "Echoing Strike", "spellId": 410784, "icon": "ability_evoker_echoingstrike", "index": 200}]}, {"id": 93203, "name": "Upheaval", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [93368, 93201, 93206], "prev": [93208, 93199], "entries": [{"id": 115502, "definitionId": 120514, "maxRanks": 1, "type": "active", "name": "Upheaval", "spellId": 396286, "icon": "ability_evoker_upheaval", "index": 100}]}, {"id": 93234, "name": "Breath of Eons", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93235, 93382], "prev": [93219, 93208], "entries": [{"id": 115536, "definitionId": 120548, "maxRanks": 1, "type": "active", "name": "Breath of Eons", "spellId": 403631, "icon": "ability_evoker_breathofeons", "index": 100}]}, {"id": 93222, "name": "Defy Fate", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [93382, 93360, 93195], "prev": [93221, 93219], "entries": [{"id": 115522, "definitionId": 120534, "maxRanks": 1, "type": "passive", "name": "Defy Fate", "spellId": 404195, "icon": "ability_evoker_defyfate", "index": 100}]}, {"id": 93368, "name": "Seismic Slam", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209, 93202], "prev": [93203], "entries": [{"id": 115688, "definitionId": 120700, "maxRanks": 1, "type": "passive", "name": "Seismic Slam", "spellId": 408543, "icon": "ability_evoker_seismicslam", "index": 100}]}, {"id": 93201, "name": "Power Nexus", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209], "prev": [93203], "entries": [{"id": 115499, "definitionId": 120511, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93206, "name": "Volcanism", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209, 93218], "prev": [93203], "entries": [{"id": 115505, "definitionId": 120517, "maxRanks": 1, "type": "passive", "name": "Volcanism", "spellId": 406904, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 93235, "name": "Perilous Fate / Chrono Ward", "type": "choice", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93218], "prev": [93234], "entries": [{"id": 115537, "definitionId": 120549, "maxRanks": 1, "type": "passive", "name": "Perilous Fate", "spellId": 410253, "icon": "spell_shadow_lastingafflictions", "index": 100}, {"id": 115706, "definitionId": 120718, "maxRanks": 1, "type": "passive", "name": "Chrono Ward", "spellId": 409676, "icon": "ability_evoker_bronze_01", "index": 200}]}, {"id": 93382, "name": "Stretch Time", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93218, 93358], "prev": [93222, 93234], "entries": [{"id": 115534, "definitionId": 120546, "maxRanks": 1, "type": "passive", "name": "Stretch Time", "spellId": 410352, "icon": "ability_evoker_timedilation", "index": 100}]}, {"id": 93360, "name": "Timelessness", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93358], "prev": [93222], "entries": [{"id": 115679, "definitionId": 120691, "maxRanks": 1, "type": "active", "name": "Timelessness", "spellId": 412710, "icon": "ability_evoker_timelessness", "index": 100}]}, {"id": 93195, "name": "Bestow Weyrnstone", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93358], "prev": [93222], "entries": [{"id": 115493, "definitionId": 120505, "maxRanks": 1, "type": "active", "name": "Bestow Weyrnstone", "spellId": 408233, "icon": "ability_evoker_bestowweyrnstone", "index": 100}]}, {"id": 93209, "name": "Blistering Scales", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93202, 93211, 93207], "prev": [93368, 93206, 93201], "entries": [{"id": 115508, "definitionId": 120520, "maxRanks": 1, "type": "active", "name": "Blistering Scales", "spellId": 360827, "icon": "ability_evoker_blisteringscales", "index": 100}]}, {"id": 93218, "name": "Draconic Attunements", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93207, 93217, 93225], "prev": [93206, 93235, 93382], "entries": [{"id": 115518, "definitionId": 120530, "maxRanks": 1, "type": "active", "name": "Draconic Attunements", "spellId": 403208, "icon": "ability_evoker_draconicattunements", "index": 100}]}, {"id": 93358, "name": "Prescience", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93225, 93367, 93215], "prev": [93360, 93195, 93382], "entries": [{"id": 115675, "definitionId": 120687, "maxRanks": 1, "type": "active", "name": "Prescience", "spellId": 409311, "icon": "ability_evoker_prescience", "index": 100}]}, {"id": 93202, "name": "Unyielding Domain / Tectonic Locus", "type": "choice", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93209, 93368], "entries": [{"id": 115501, "definitionId": 120513, "maxRanks": 1, "type": "passive", "name": "Unyielding Domain", "spellId": 412733, "icon": "spell_shaman_stormearthfire", "index": 100}, {"id": 115500, "definitionId": 120512, "maxRanks": 1, "type": "passive", "name": "Tectonic Locus", "spellId": 408002, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 93211, "name": "Regenerative Chitin / Molten Blood", "type": "choice", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93210, 93231, 93212], "prev": [93209], "entries": [{"id": 115511, "definitionId": 120523, "maxRanks": 1, "type": "passive", "name": "Regenerative Chitin", "spellId": 406907, "icon": "inv_tradeskill_skinning_prismaticscale", "index": 100}, {"id": 115510, "definitionId": 120522, "maxRanks": 1, "type": "passive", "name": "Molten Blood", "spellId": 410643, "icon": "spell_shaman_spewlava", "index": 200}]}, {"id": 93207, "name": "Momentum Shift", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93212], "prev": [93218, 93209], "entries": [{"id": 115506, "definitionId": 120518, "maxRanks": 1, "type": "passive", "name": "Momentum Shift", "spellId": 408004, "icon": "ability_priest_voidshift", "index": 100}]}, {"id": 93217, "name": "Aspects' Favor", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [93212, 93230], "prev": [93218], "entries": [{"id": 115517, "definitionId": 120529, "maxRanks": 2, "type": "passive", "name": "Aspects' Favor", "spellId": 407243, "icon": "ability_evoker_aspectsfavor", "index": 100}]}, {"id": 93225, "name": "Arcane Reach", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93230], "prev": [93358, 93218], "entries": [{"id": 115526, "definitionId": 120538, "maxRanks": 1, "type": "passive", "name": "Arcane Reach", "spellId": 454983, "icon": "classicon_evoker", "index": 100}]}, {"id": 93367, "name": "Fate Mirror", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93230, 93223], "prev": [93358], "entries": [{"id": 115685, "definitionId": 120697, "maxRanks": 1, "type": "passive", "name": "Fate Mirror", "spellId": 412774, "icon": "trade_archaeology_highbornesoulmirror", "index": 100}]}, {"id": 93215, "name": "Symbiotic Bloom", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [93359], "prev": [93358], "entries": [{"id": 115515, "definitionId": 120527, "maxRanks": 2, "type": "passive", "name": "Symbiotic Bloom", "spellId": 410685, "icon": "inv_10_herb_seed_magiccolor5", "index": 100}]}, {"id": 93210, "name": "Reactive Hide", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229], "prev": [93211], "entries": [{"id": 115509, "definitionId": 120521, "maxRanks": 1, "type": "passive", "name": "Reactive Hide", "spellId": 409329, "icon": "ability_evoker_reactivehide", "index": 100}]}, {"id": 93231, "name": "Font of Magic", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229], "prev": [93211], "entries": [{"id": 115532, "definitionId": 120544, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 408083, "icon": "ability_evoker_fontofmagic", "index": 100}]}, {"id": 93212, "name": "Hoarded Power", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229, 102248, 93232], "prev": [93217, 93211, 93207], "entries": [{"id": 115512, "definitionId": 120524, "maxRanks": 1, "type": "passive", "name": "Hoarded Power", "spellId": 375796, "icon": "ability_evoker_innatemagic2", "index": 100}]}, {"id": 93230, "name": "Ignition Rush", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93232, 93227], "prev": [93217, 93367, 93225], "entries": [{"id": 115531, "definitionId": 120543, "maxRanks": 1, "type": "passive", "name": "Ignition Rush", "spellId": 408775, "icon": "spell_fire_immolation", "index": 100}]}, {"id": 93223, "name": "Anachronism", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93227, 93197], "prev": [93367], "entries": [{"id": 115523, "definitionId": 120535, "maxRanks": 1, "type": "passive", "name": "Anachronism", "spellId": 407869, "icon": "ability_evoker_essenceburst6", "index": 100}]}, {"id": 93359, "name": "Prolong Life / Dream of Spring", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93197], "prev": [93215], "entries": [{"id": 115678, "definitionId": 120690, "maxRanks": 1, "type": "passive", "name": "Prolong Life", "spellId": 410687, "icon": "ability_evoker_reversion_green", "index": 100}, {"id": 115881, "definitionId": 120893, "maxRanks": 1, "type": "passive", "name": "Dream of Spring", "spellId": 414969, "icon": "ability_evoker_masterylifebinder", "index": 200}]}, {"id": 93229, "name": "Accretion", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93205], "prev": [93212, 93210, 93231], "entries": [{"id": 115530, "definitionId": 120542, "maxRanks": 1, "type": "passive", "name": "Accretion", "spellId": 407876, "icon": "ability_evoker_accretion", "index": 100}]}, {"id": 102248, "name": "Imminent Destruction", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93226], "prev": [93212], "entries": [{"id": 126304, "definitionId": 131130, "maxRanks": 1, "type": "passive", "name": "Imminent Destruction", "spellId": 459537, "icon": "spell_burningbladeshaman_blazing_radiance", "index": 100}]}, {"id": 93232, "name": "Time Skip", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93369], "prev": [93230, 93212], "entries": [{"id": 115533, "definitionId": 120545, "maxRanks": 1, "type": "active", "name": "Time Skip", "spellId": 404977, "icon": "ability_evoker_timeskip", "index": 100}]}, {"id": 93227, "name": "Motes of Possibility", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93213], "prev": [93230, 93223], "entries": [{"id": 115528, "definitionId": 120540, "maxRanks": 1, "type": "passive", "name": "Motes of Possibility", "spellId": 409267, "icon": "ability_evoker_motesofpossibility", "index": 100}]}, {"id": 93197, "name": "Inferno's Blessing", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102249], "prev": [93223, 93359], "entries": [{"id": 115495, "definitionId": 120507, "maxRanks": 1, "type": "passive", "name": "Inferno's Blessing", "spellId": 410261, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 93205, "name": "Rumbling Earth", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93229], "entries": [{"id": 115504, "definitionId": 120516, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 459120, "icon": "ability_evoker_geomancy", "index": 100}]}, {"id": 93226, "name": "Plot the Future", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102248], "entries": [{"id": 115527, "definitionId": 120539, "maxRanks": 1, "type": "passive", "name": "Plot the Future", "spellId": 407866, "icon": "ability_evoker_plotthefuture", "index": 100}]}, {"id": 93369, "name": "Tomorrow, Today / Interwoven Threads", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93232], "entries": [{"id": 115687, "definitionId": 120699, "maxRanks": 1, "type": "passive", "name": "Tomorrow, Today", "spellId": 412723, "icon": "ability_evoker_rewind2", "index": 100}, {"id": 115686, "definitionId": 120698, "maxRanks": 1, "type": "passive", "name": "Interwoven Threads", "spellId": 412713, "icon": "inv_enchant_optionalreagent_01", "index": 200}]}, {"id": 93213, "name": "Overlord", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93227], "entries": [{"id": 115513, "definitionId": 120525, "maxRanks": 1, "type": "passive", "name": "Overlord", "spellId": 410260, "icon": "ability_evoker_overlord", "index": 100}]}, {"id": 102249, "name": "Molten Embers", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93197], "entries": [{"id": 126305, "definitionId": 131131, "maxRanks": 1, "type": "passive", "name": "Molten Embers", "spellId": 459725, "icon": "ability_evoker_earthensky", "index": 100}]}], "heroNodes": [{"id": 98931, "name": "Mass Eruption", "type": "single", "posX": 15000, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 36, "next": [94952, 94936, 94944], "prev": [], "entries": [{"id": 122279, "definitionId": 127179, "maxRanks": 1, "type": "passive", "name": "Mass Eruption", "spellId": 438587, "icon": "ability_evoker_eruption", "index": 100}], "freeNode": true}, {"id": 94952, "name": "Might of the Black Dragonflight", "type": "single", "posX": 14400, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94921], "prev": [94939, 98931], "entries": [{"id": 117549, "definitionId": 122561, "maxRanks": 1, "type": "passive", "name": "Might of the Black Dragonflight", "spellId": 441705, "icon": "ability_evoker_blackattunementalt", "index": 100}]}, {"id": 94936, "name": "Bombardments", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94953], "prev": [94939, 98931], "entries": [{"id": 117533, "definitionId": 122545, "maxRanks": 1, "type": "passive", "name": "Bombardments", "spellId": 434300, "icon": "inv_ability_scalecommanderevoker_bombardments", "index": 100}]}, {"id": 94944, "name": "Onslaught", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94934], "prev": [94939, 98931], "entries": [{"id": 117541, "definitionId": 122553, "maxRanks": 1, "type": "passive", "name": "Onslaught", "spellId": 441245, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 94921, "name": "Melt Armor", "type": "single", "posX": 14400, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94933], "prev": [94952], "entries": [{"id": 117518, "definitionId": 122530, "maxRanks": 1, "type": "passive", "name": "Melt Armor", "spellId": 441176, "icon": "inv_10_gearupgrade_drakesshadowflameenhancedcrest", "index": 100}]}, {"id": 94953, "name": "Wingleader", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94928], "prev": [94936], "entries": [{"id": 117550, "definitionId": 122562, "maxRanks": 1, "type": "passive", "name": "Wingleader", "spellId": 441206, "icon": "ability_racial_soar", "index": 100}]}, {"id": 94934, "name": "Unrelenting Siege", "type": "single", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94943], "prev": [94944], "entries": [{"id": 117531, "definitionId": 122543, "maxRanks": 1, "type": "passive", "name": "Unrelenting Siege", "spellId": 441246, "icon": "ability_siege_engineer_superheated", "index": 100}]}, {"id": 94933, "name": "Hardened Scales / Menacing Presence", "type": "choice", "posX": 14400, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94921], "entries": [{"id": 117530, "definitionId": 122542, "maxRanks": 1, "type": "passive", "name": "Hardened Scales", "spellId": 441180, "icon": "inv_10_skinning_scales_black", "index": 100}, {"id": 120125, "definitionId": 125025, "maxRanks": 1, "type": "passive", "name": "Menacing Presence", "spellId": 441181, "icon": "ability_racial_wingbuffet", "index": 200}]}, {"id": 94928, "name": "Extended Battle / Diverted Power", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94953], "entries": [{"id": 117525, "definitionId": 122537, "maxRanks": 1, "type": "passive", "name": "Extended Battle", "spellId": 441212, "icon": "ability_evoker_divideandconquer", "index": 100}, {"id": 120124, "definitionId": 125024, "maxRanks": 1, "type": "passive", "name": "Diverted Power", "spellId": 441219, "icon": "ability_evoker_powerswell", "index": 200}]}, {"id": 94943, "name": "Nimble Flyer / Slipstream", "type": "choice", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94934], "entries": [{"id": 117540, "definitionId": 122552, "maxRanks": 1, "type": "passive", "name": "Nimble Flyer", "spellId": 441253, "icon": "ability_evoker_hover", "index": 100}, {"id": 120123, "definitionId": 125023, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 441257, "icon": "ability_dragonriding_barrelroll01", "index": 200}]}, {"id": 94941, "name": "Maneuverability", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 36, "next": [], "prev": [94928, 94933, 94943], "entries": [{"id": 117538, "definitionId": 122550, "maxRanks": 1, "type": "passive", "name": "Maneuverability", "spellId": 433871, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 94954, "name": "Chrono Flame", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 38, "next": [94955, 94948, 94925], "prev": [], "entries": [{"id": 117551, "definitionId": 122563, "maxRanks": 1, "type": "passive", "name": "Chrono Flame", "spellId": 431442, "icon": "inv_ability_chronowardenevoker_chronoflame", "index": 100}], "freeNode": true}, {"id": 94948, "name": "Warp", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94935], "prev": [94954], "entries": [{"id": 117545, "definitionId": 122557, "maxRanks": 1, "type": "passive", "name": "Warp", "spellId": 429483, "icon": "ability_evoker_spatialparadox", "index": 100}]}, {"id": 94955, "name": "Temporal Burst", "type": "single", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "requiresNode": 93350, "next": [94947], "prev": [94954], "entries": [{"id": 117552, "definitionId": 122564, "maxRanks": 1, "type": "passive", "name": "Temporal Burst", "spellId": 431695, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 94925, "name": "Reverberations", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94951], "prev": [94954], "entries": [{"id": 117522, "definitionId": 122534, "maxRanks": 1, "type": "passive", "name": "Reverberations", "spellId": 431615, "icon": "ability_evoker_giftoftheaspects", "index": 100}]}, {"id": 94935, "name": "Temporality / Motes of Acceleration", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94932], "prev": [94948], "entries": [{"id": 117532, "definitionId": 122544, "maxRanks": 1, "type": "passive", "name": "Temporality", "spellId": 431873, "icon": "ability_evoker_return", "index": 100}, {"id": 117784, "definitionId": 122796, "maxRanks": 1, "type": "passive", "name": "Motes of Acceleration", "spellId": 432008, "icon": "item_timemote_icon", "index": 200}]}, {"id": 94947, "name": "Threads of Fate", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94930], "prev": [94955], "entries": [{"id": 117544, "definitionId": 122556, "maxRanks": 1, "type": "passive", "name": "Threads of Fate", "spellId": 431715, "icon": "ability_evoker_sandsoftime", "index": 100}]}, {"id": 94951, "name": "Primacy", "type": "single", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94942], "prev": [94925], "entries": [{"id": 117548, "definitionId": 122560, "maxRanks": 1, "type": "passive", "name": "Primacy", "spellId": 431657, "icon": "inv_misc_pocketwatch_01", "index": 100}]}, {"id": 94932, "name": "Double-time / Time Convergence", "type": "choice", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94935], "entries": [{"id": 117529, "definitionId": 122541, "maxRanks": 1, "type": "passive", "name": "Double-time", "spellId": 431874, "icon": "spell_holy_borrowedtime", "index": 100}, {"id": 117786, "definitionId": 122798, "maxRanks": 1, "type": "passive", "name": "Time Convergence", "spellId": 431984, "icon": "ability_evoker_plotthefuture", "index": 200}]}, {"id": 94930, "name": "Master of Destiny / Instability Matrix", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94947], "entries": [{"id": 117527, "definitionId": 122539, "maxRanks": 1, "type": "passive", "name": "Master of Destiny", "spellId": 431840, "icon": "ability_evoker_defyfate", "index": 100}, {"id": 126310, "definitionId": 131136, "maxRanks": 1, "type": "passive", "name": "Instability Matrix", "spellId": 431484, "icon": "ability_dragonriding_bronzerewind01", "index": 200}]}, {"id": 94942, "name": "Golden Opportunity", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94951], "entries": [{"id": 117539, "definitionId": 122551, "maxRanks": 1, "type": "passive", "name": "Golden Opportunity", "spellId": 432004, "icon": "achievement_faction_goldenlotus", "index": 100}]}, {"id": 94929, "name": "Afterimage", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 38, "next": [], "prev": [94930, 94932, 94942], "entries": [{"id": 117526, "definitionId": 122538, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 431875, "icon": "ability_evoker_livingflame", "index": 100}]}], "subTreeNodes": [{"id": 99825, "name": "Chronowarden / Scalecommander", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123334, "type": "subtree", "name": "Chronowarden", "traitSubTreeId": 38, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-chronowarden", "nodes": [94954, 94948, 94955, 94925, 94935, 94947, 94951, 94932, 94930, 94942, 94929]}, {"id": 123331, "type": "subtree", "name": "Scalecommander", "traitSubTreeId": 36, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-scalecommander", "nodes": [94939, 98931, 94952, 94936, 94944, 94921, 94953, 94934, 94933, 94928, 94943, 94941]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93296, 93297, 93298, 93299, 93300, 93301, 93302, 93303, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249]}, {"traitTreeId": 795, "className": "Priest", "classId": 5, "specName": "Discipline", "specId": 256, "classNodes": [{"id": 82717, "name": "Renew", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82718, 82714], "prev": [], "entries": [{"id": 103869, "definitionId": 108874, "maxRanks": 1, "type": "active", "name": "Renew", "spellId": 139, "icon": "spell_holy_renew", "index": 100}], "freeNode": true}, {"id": 82715, "name": "Dispel Magic", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82714, 82705, 82695], "prev": [], "entries": [{"id": 103867, "definitionId": 108872, "maxRanks": 1, "type": "active", "name": "Dispel Magic", "spellId": 528, "icon": "spell_nature_nullifydisease", "index": 100}]}, {"id": 82713, "name": "Shadowfiend", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82695, 82712], "prev": [], "entries": [{"id": 103865, "definitionId": 108870, "maxRanks": 1, "type": "active", "name": "Shadowfiend", "spellId": 34433, "icon": "spell_shadow_shadowfiend", "index": 100}], "freeNode": true}, {"id": 82718, "name": "Prayer of Mending", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82719, 82701, 82720], "prev": [82717], "entries": [{"id": 103870, "definitionId": 108875, "maxRanks": 1, "type": "active", "name": "Prayer of Mending", "spellId": 33076, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 82714, "name": "Improved Flash Heal", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82701, 82707, 82703], "prev": [82715, 82717], "entries": [{"id": 103866, "definitionId": 108871, "maxRanks": 1, "type": "passive", "name": "Improved Flash Heal", "spellId": 393870, "icon": "spell_holy_heal", "index": 100}]}, {"id": 82705, "name": "Improved Purify", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [82703], "prev": [82715], "entries": [{"id": 103855, "definitionId": 108860, "maxRanks": 1, "type": "passive", "name": "Improved Purify", "spellId": 390632, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 82695, "name": "Psychic Voice / Petrifying Scream", "type": "choice", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82703, 82556], "prev": [82715, 82713], "entries": [{"id": 103845, "definitionId": 108850, "maxRanks": 1, "type": "passive", "name": "Psychic Voice", "spellId": 196704, "icon": "ability_warrior_commandingshout", "index": 100}, {"id": 114588, "definitionId": 119593, "maxRanks": 1, "type": "passive", "name": "Petrifying Scream", "spellId": 55676, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82712, "name": "Shadow Word: Death", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [82556, 82711], "prev": [82713], "entries": [{"id": 103864, "definitionId": 108869, "maxRanks": 1, "type": "active", "name": "Shadow Word: Death", "spellId": 32379, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82719, "name": "Focused Mending", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82720], "prev": [82718], "entries": [{"id": 103871, "definitionId": 108876, "maxRanks": 1, "type": "passive", "name": "Focused Mending", "spellId": 372354, "icon": "achievement_bg_returnxflags_def_wsg", "index": 100}]}, {"id": 82701, "name": "Holy Nova", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82720, 82700, 82716], "prev": [82714, 82718], "entries": [{"id": 103851, "definitionId": 108856, "maxRanks": 1, "type": "active", "name": "Holy Nova", "spellId": 132157, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82707, "name": "Protective Light / From Darkness Comes Light", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82716], "prev": [82714], "entries": [{"id": 103858, "definitionId": 108863, "maxRanks": 1, "type": "passive", "name": "Protective Light", "spellId": 193063, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 103857, "definitionId": 108862, "maxRanks": 1, "type": "passive", "name": "From Darkness Comes Light", "spellId": 390615, "icon": "spell_holy_flashheal", "index": 200}]}, {"id": 82703, "name": "Angelic Feather", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82716, 82693, 82708], "prev": [82714, 82705, 82695], "entries": [{"id": 103853, "definitionId": 108858, "maxRanks": 1, "type": "active", "name": "Angelic Feather", "spellId": 121536, "icon": "ability_priest_angelicfeather", "index": 0}]}, {"id": 82556, "name": "Phantasm", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82708, 82710], "prev": [82695, 82712], "entries": [{"id": 103834, "definitionId": 108839, "maxRanks": 1, "type": "passive", "name": "Phantasm", "spellId": 108942, "icon": "ability_priest_phantasm", "index": 100}]}, {"id": 82711, "name": "Death and Madness", "type": "single", "posX": 6900, "posY": 2700, "maxRanks": 1, "next": [82710, 82688], "prev": [82712], "entries": [{"id": 103863, "definitionId": 108868, "maxRanks": 1, "type": "passive", "name": "Death and Madness", "spellId": 321291, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82720, "name": "Spell Warding / Blessed Recovery", "type": "choice", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [82721, 82699, 82696], "prev": [82718, 82701, 82719], "entries": [{"id": 103872, "definitionId": 108877, "maxRanks": 1, "type": "passive", "name": "Spell Warding", "spellId": 390667, "icon": "spell_holy_spellwarding", "index": 100}, {"id": 103677, "definitionId": 108682, "maxRanks": 1, "type": "passive", "name": "Blessed Recovery", "spellId": 390767, "icon": "spell_holy_blessedrecovery", "index": 200}]}, {"id": 82700, "name": "Rhapsody", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [82699], "prev": [82701], "entries": [{"id": 103850, "definitionId": 108855, "maxRanks": 1, "type": "passive", "name": "Rhapsody", "spellId": 390622, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82716, "name": "Leap of Faith", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [82699, 82702, 82694], "prev": [82703, 82701, 82707], "entries": [{"id": 103868, "definitionId": 108873, "maxRanks": 1, "type": "active", "name": "Leap of Faith", "spellId": 73325, "icon": "priest_spell_leapoffaith_a", "index": 100}]}, {"id": 82693, "name": "Shackle Undead", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [82694], "prev": [82703], "entries": [{"id": 103843, "definitionId": 108848, "maxRanks": 1, "type": "active", "name": "Shackle Undead", "spellId": 9484, "icon": "spell_nature_slow", "index": 100}]}, {"id": 82708, "name": "Sheer Terror / Void Tendrils", "type": "choice", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [82694, 82691], "prev": [82703, 82556], "entries": [{"id": 103860, "definitionId": 108865, "maxRanks": 1, "type": "passive", "name": "Sheer Terror", "spellId": 390919, "icon": "spell_nzinsanity_fearofdeath", "index": 100}, {"id": 103859, "definitionId": 108864, "maxRanks": 1, "type": "active", "name": "Void Tendrils", "spellId": 108920, "icon": "spell_priest_voidtendrils", "index": 200}]}, {"id": 82710, "name": "Mind Control / Dominate Mind", "type": "choice", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [82691, 82689], "prev": [82556, 82711], "entries": [{"id": 103862, "definitionId": 108867, "maxRanks": 1, "type": "active", "name": "Mind Control", "spellId": 605, "icon": "spell_shadow_shadowworddominate", "index": 100}, {"id": 103678, "definitionId": 108683, "maxRanks": 1, "type": "active", "name": "Dominate Mind", "spellId": 205364, "icon": "spell_priest_void_flay", "index": 200}]}, {"id": 82721, "name": "Words of the Pious", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696], "prev": [82720], "entries": [{"id": 103873, "definitionId": 108878, "maxRanks": 1, "type": "passive", "name": "Words of the Pious", "spellId": 377438, "icon": "ability_priest_clarityofwill", "index": 200}]}, {"id": 82699, "name": "Mass Dispel", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696, 82698, 82706], "prev": [82716, 82720, 82700], "entries": [{"id": 103849, "definitionId": 108854, "maxRanks": 1, "type": "active", "name": "Mass Dispel", "spellId": 32375, "icon": "spell_arcane_massdispel", "index": 100}]}, {"id": 82702, "name": "Move with Grace", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706], "prev": [82716], "entries": [{"id": 103852, "definitionId": 108857, "maxRanks": 1, "type": "passive", "name": "Move with Grace", "spellId": 390620, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82694, "name": "Power Infusion", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706, 82683, 82692], "prev": [82716, 82693, 82708], "entries": [{"id": 103844, "definitionId": 108849, "maxRanks": 1, "type": "active", "name": "Power Infusion", "spellId": 10060, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 82691, "name": "Sanguine Teachings / Vampiric Embrace", "type": "choice", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82692, 82690, 82689], "prev": [82710, 82708], "entries": [{"id": 114735, "definitionId": 108846, "maxRanks": 1, "type": "passive", "name": "Sanguine Teachings", "spellId": 373218, "icon": "inv_archaeology_80_zandalari_sanguinetotem", "index": 100}, {"id": 103841, "definitionId": 119742, "maxRanks": 1, "type": "active", "name": "Vampiric Embrace", "spellId": 15286, "icon": "spell_shadow_unsummonbuilding", "index": 200}]}, {"id": 82688, "name": "Tithe Evasion", "type": "single", "posX": 6900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82689], "prev": [82711], "entries": [{"id": 103838, "definitionId": 108843, "maxRanks": 1, "type": "passive", "name": "Tithe Evasion", "spellId": 373223, "icon": "spell_nzinsanity_bloodthirst", "index": 100}]}, {"id": 82696, "name": "Inspiration", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82721, 82699, 82720], "entries": [{"id": 103846, "definitionId": 108851, "maxRanks": 1, "type": "passive", "name": "Inspiration", "spellId": 390676, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 82698, "name": "Mental Agility", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82699], "entries": [{"id": 103848, "definitionId": 108853, "maxRanks": 1, "type": "passive", "name": "Mental Agility", "spellId": 341167, "icon": "spell_holy_dispelmagic", "index": 100}]}, {"id": 82706, "name": "Body and Soul", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697, 82684], "prev": [82694, 82699, 82702], "entries": [{"id": 103856, "definitionId": 108861, "maxRanks": 1, "type": "passive", "name": "Body and Soul", "spellId": 64129, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82683, "name": "Twins of the Sun Priestess", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684], "prev": [82694], "entries": [{"id": 103832, "definitionId": 108837, "maxRanks": 1, "type": "passive", "name": "Twins of the Sun Priestess", "spellId": 373466, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82692, "name": "Void Shield", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684, 82709], "prev": [82691, 82694], "entries": [{"id": 103842, "definitionId": 108847, "maxRanks": 1, "type": "passive", "name": "Void Shield", "spellId": 280749, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 82690, "name": "San'layn", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82691], "entries": [{"id": 103840, "definitionId": 108845, "maxRanks": 1, "type": "passive", "name": "San'layn", "spellId": 199855, "icon": "achievement_boss_lanathel", "index": 100}]}, {"id": 82689, "name": "Apathy", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82710, 82688, 82691], "entries": [{"id": 103839, "definitionId": 108844, "maxRanks": 1, "type": "passive", "name": "Apathy", "spellId": 390668, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 82697, "name": "Unwavering Will", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82678, 82682], "prev": [82706, 82696, 82698], "entries": [{"id": 103847, "definitionId": 108852, "maxRanks": 2, "type": "passive", "name": "Unwavering Will", "spellId": 373456, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 82684, "name": "Twist of Fate", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82682, 82685], "prev": [82706, 82692, 82683], "entries": [{"id": 103833, "definitionId": 108838, "maxRanks": 2, "type": "passive", "name": "Twist of Fate", "spellId": 390972, "icon": "spell_shadow_mindtwisting", "index": 100}]}, {"id": 82709, "name": "Throes of Pain", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82685, 82687], "prev": [82692, 82690, 82689], "entries": [{"id": 103861, "definitionId": 108866, "maxRanks": 2, "type": "passive", "name": "Throes of Pain", "spellId": 377422, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 82678, "name": "Angel's Mercy / Binding Heals", "type": "choice", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82677, 82679], "prev": [82697], "entries": [{"id": 103825, "definitionId": 108830, "maxRanks": 1, "type": "passive", "name": "Angel's Mercy", "spellId": 238100, "icon": "spell_holy_testoffaith", "index": 100}, {"id": 103824, "definitionId": 108829, "maxRanks": 1, "type": "passive", "name": "Binding Heals", "spellId": 368275, "icon": "spell_holy_blindingheal", "index": 200}]}, {"id": 82682, "name": "Divine Star / Halo", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82679, 82681], "prev": [82697, 82684], "entries": [{"id": 103831, "definitionId": 108836, "maxRanks": 1, "type": "active", "name": "Divine Star", "spellId": 110744, "icon": "spell_priest_divinestar", "index": 200}, {"id": 103830, "definitionId": 108835, "maxRanks": 1, "type": "active", "name": "Halo", "spellId": 120517, "icon": "ability_priest_halo", "index": 300}]}, {"id": 82685, "name": "Translucent Image", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82681, 82686], "prev": [82709, 82684], "entries": [{"id": 103835, "definitionId": 108840, "maxRanks": 1, "type": "passive", "name": "Translucent Image", "spellId": 373446, "icon": "spell_nature_invisibilty", "index": 100}]}, {"id": 82687, "name": "Cauterizing Shadows", "type": "single", "posX": 6300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82686, 82672], "prev": [82709], "entries": [{"id": 103837, "definitionId": 108842, "maxRanks": 1, "type": "passive", "name": "Cauterizing Shadows", "spellId": 459990, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82677, "name": "Surge of Light", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82676], "prev": [82678], "entries": [{"id": 103823, "definitionId": 108828, "maxRanks": 1, "type": "passive", "name": "Surge of Light", "spellId": 109186, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 82679, "name": "Light's Inspiration", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82676, 82675], "prev": [82682, 82678], "entries": [{"id": 103826, "definitionId": 108831, "maxRanks": 2, "type": "passive", "name": "Light's Inspiration", "spellId": 373450, "icon": "spell_holy_restoration", "index": 100}]}, {"id": 82681, "name": "Crystalline Reflection", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82675, 82674], "prev": [82685, 82682], "entries": [{"id": 103829, "definitionId": 108834, "maxRanks": 2, "type": "passive", "name": "Crystalline Reflection", "spellId": 373457, "icon": "ability_priest_reflectiveshield", "index": 100}]}, {"id": 82686, "name": "Improved Fade", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82674, 82673], "prev": [82685, 82687], "entries": [{"id": 103836, "definitionId": 108841, "maxRanks": 2, "type": "passive", "name": "Improved Fade", "spellId": 390670, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 82672, "name": "Manipulation", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82673], "prev": [82687], "entries": [{"id": 103818, "definitionId": 108823, "maxRanks": 1, "type": "passive", "name": "Manipulation", "spellId": 459985, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82676, "name": "Benevolence / Power Word: Life", "type": "choice", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82677, 82679], "entries": [{"id": 115884, "definitionId": 120896, "maxRanks": 1, "type": "passive", "name": "Benevolence", "spellId": 415416, "icon": "ability_priest_spiritoftheredeemer", "index": 100}, {"id": 103822, "definitionId": 108827, "maxRanks": 1, "type": "active", "name": "Power Word: Life", "spellId": 373481, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 82675, "name": "Angelic Bulwark", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82679, 82681], "entries": [{"id": 103821, "definitionId": 108826, "maxRanks": 1, "type": "passive", "name": "Angelic Bulwark", "spellId": 108945, "icon": "ability_priest_angelicbulwark", "index": 100}]}, {"id": 82674, "name": "Essence Devourer / Void Shift", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82681, 82686], "entries": [{"id": 115883, "definitionId": 120895, "maxRanks": 1, "type": "passive", "name": "Essence Devourer", "spellId": 415479, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}, {"id": 103820, "definitionId": 108825, "maxRanks": 1, "type": "active", "name": "Void Shift", "spellId": 108968, "icon": "spell_priest_voidshift", "index": 200}]}, {"id": 82673, "name": "Phantom Reach", "type": "single", "posX": 6300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82672, 82686], "entries": [{"id": 103819, "definitionId": 108824, "maxRanks": 1, "type": "passive", "name": "Phantom Reach", "spellId": 459559, "icon": "spell_shadow_chilltouch", "index": 100}]}], "specNodes": [{"id": 82594, "name": "Atonement", "type": "single", "posX": 12900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82593, 82587, 82595], "prev": [], "entries": [{"id": 103723, "definitionId": 108728, "maxRanks": 1, "type": "passive", "name": "Atonement", "spellId": 81749, "icon": "ability_priest_atonement", "index": 100}]}, {"id": 82593, "name": "Power Word: Radiance", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82592, 92225], "prev": [82594], "entries": [{"id": 103722, "definitionId": 108727, "maxRanks": 1, "type": "active", "name": "Power Word: Radiance", "spellId": 194509, "icon": "spell_priest_power_word", "index": 100}]}, {"id": 82587, "name": "Pain Suppression", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [92225, 82588], "prev": [82594], "entries": [{"id": 103713, "definitionId": 108718, "maxRanks": 1, "type": "active", "name": "Pain Suppression", "spellId": 33206, "icon": "spell_holy_painsupression", "index": 100}]}, {"id": 82595, "name": "Power of the Dark Side", "type": "single", "posX": 13500, "posY": 2100, "maxRanks": 1, "next": [82596, 82579], "prev": [82594], "entries": [{"id": 103724, "definitionId": 108729, "maxRanks": 1, "type": "passive", "name": "Power of the Dark Side", "spellId": 198068, "icon": "inv_artifact_powerofthedarkside", "index": 100}]}, {"id": 82592, "name": "Light's Promise", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82591, 82589], "prev": [82593], "entries": [{"id": 103721, "definitionId": 108726, "maxRanks": 1, "type": "passive", "name": "Light's Promise", "spellId": 322115, "icon": "spell_priest_power_word", "index": 100}]}, {"id": 92225, "name": "Sanctuary", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82589, 82564], "prev": [82587, 82593], "entries": [{"id": 108225, "definitionId": 113230, "maxRanks": 1, "type": "passive", "name": "Sanctuary", "spellId": 231682, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 82588, "name": "Pain Transformation / Protector of the Frail", "type": "choice", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82564], "prev": [82587], "entries": [{"id": 103715, "definitionId": 108720, "maxRanks": 1, "type": "passive", "name": "Pain Transformation", "spellId": 372991, "icon": "spell_holy_blessedrecovery", "index": 200}, {"id": 103714, "definitionId": 108719, "maxRanks": 1, "type": "passive", "name": "Protector of the Frail", "spellId": 373035, "icon": "ability_racial_forceshield", "index": 300}]}, {"id": 82596, "name": "Dark Indulgence", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82564, 82597], "prev": [82595], "entries": [{"id": 103725, "definitionId": 108730, "maxRanks": 1, "type": "passive", "name": "Dark Indulgence", "spellId": 372972, "icon": "spell_shadow_unholyfrenzy", "index": 100}]}, {"id": 82579, "name": "Schism", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [82597, 82580, 82581], "prev": [82595], "entries": [{"id": 103704, "definitionId": 108709, "maxRanks": 1, "type": "passive", "name": "Schism", "spellId": 424509, "icon": "spell_warlock_focusshadow", "index": 100}]}, {"id": 82591, "name": "Bright Pupil / Enduring Luminescence", "type": "choice", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82590], "prev": [82592], "entries": [{"id": 103720, "definitionId": 108725, "maxRanks": 1, "type": "passive", "name": "Bright Pupil", "spellId": 390684, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 103719, "definitionId": 108724, "maxRanks": 1, "type": "passive", "name": "Enduring Luminescence", "spellId": 390685, "icon": "ability_priest_holybolts01", "index": 200}]}, {"id": 82589, "name": "Shield Discipline", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82590, 82598], "prev": [82592, 92225], "entries": [{"id": 103717, "definitionId": 108722, "maxRanks": 1, "type": "passive", "name": "Shield Discipline", "spellId": 197045, "icon": "spell_holy_divineprotection", "index": 200}]}, {"id": 82564, "name": "Luminous Barrier / Power Word: Barrier", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82598], "prev": [82596, 92225, 82588], "entries": [{"id": 116182, "definitionId": 121194, "maxRanks": 1, "type": "active", "name": "Luminous Barrier", "spellId": 271466, "icon": "spell_priest_burningwill", "index": 100}, {"id": 103687, "definitionId": 108692, "maxRanks": 1, "type": "active", "name": "Power Word: Barrier", "spellId": 62618, "icon": "spell_holy_powerwordbarrier", "index": 200}]}, {"id": 82597, "name": "Painful Punishment", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82598, 82581], "prev": [82579, 82596], "entries": [{"id": 103726, "definitionId": 108731, "maxRanks": 1, "type": "passive", "name": "Painful Punishment", "spellId": 390686, "icon": "ability_priest_clarityofpower", "index": 100}]}, {"id": 82580, "name": "Malicious Intent", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "next": [82581], "prev": [82579], "entries": [{"id": 103705, "definitionId": 108710, "maxRanks": 1, "type": "passive", "name": "Malicious Intent", "spellId": 372969, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 82590, "name": "Purge the Wicked", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82566, 82599], "prev": [82589, 82591], "entries": [{"id": 103718, "definitionId": 108723, "maxRanks": 1, "type": "active", "name": "Purge the Wicked", "spellId": 204197, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82598, "name": "Rapture", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82599, 82576, 82578], "prev": [82589, 82564, 82597], "entries": [{"id": 103727, "definitionId": 108732, "maxRanks": 1, "type": "active", "name": "Rapture", "spellId": 47536, "icon": "spell_holy_rapture", "index": 100}]}, {"id": 82581, "name": "Shadow Covenant", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82578, 82582], "prev": [82597, 82579, 82580], "entries": [{"id": 103706, "definitionId": 108711, "maxRanks": 1, "type": "passive", "name": "Shadow Covenant", "spellId": 314867, "icon": "spell_shadow_summonvoidwalker", "index": 100}]}, {"id": 82566, "name": "Revel in Purity", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82600, 82601], "prev": [82590], "entries": [{"id": 103690, "definitionId": 108695, "maxRanks": 1, "type": "passive", "name": "Revel in Purity", "spellId": 373003, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82599, "name": "Contrition", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82600, 82577], "prev": [82590, 82598], "entries": [{"id": 103728, "definitionId": 108733, "maxRanks": 1, "type": "passive", "name": "Contrition", "spellId": 197419, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82576, "name": "Exaltation / Indemnity", "type": "choice", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82577], "prev": [82598], "entries": [{"id": 103701, "definitionId": 108706, "maxRanks": 1, "type": "passive", "name": "Exaltation", "spellId": 373042, "icon": "spell_holy_spiritualguidence", "index": 200}, {"id": 108226, "definitionId": 113231, "maxRanks": 1, "type": "passive", "name": "Indemnity", "spellId": 373049, "icon": "ability_priest_clarityofwill", "index": 300}]}, {"id": 82578, "name": "Pain and Suffering", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [82577, 82583], "prev": [82598, 82581], "entries": [{"id": 103703, "definitionId": 108708, "maxRanks": 2, "type": "passive", "name": "Pain and Suffering", "spellId": 390689, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82582, "name": "Twilight Corruption", "type": "single", "posX": 14700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82583, 82570], "prev": [82581], "entries": [{"id": 103708, "definitionId": 108713, "maxRanks": 1, "type": "passive", "name": "Twilight Corruption", "spellId": 373065, "icon": "spell_fire_twilightimmolation", "index": 100}]}, {"id": 82600, "name": "Borrowed Time", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82601, 82575], "prev": [82566, 82599], "entries": [{"id": 103729, "definitionId": 108734, "maxRanks": 2, "type": "passive", "name": "Borrowed Time", "spellId": 390691, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 82577, "name": "Castigation", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82575, 82567], "prev": [82576, 82599, 82578], "entries": [{"id": 103702, "definitionId": 108707, "maxRanks": 1, "type": "passive", "name": "Castigation", "spellId": 193134, "icon": "spell_holy_searinglightpriest", "index": 100}]}, {"id": 82583, "name": "Abyssal Reverie", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82567, 82570], "prev": [82578, 82582], "entries": [{"id": 103709, "definitionId": 108714, "maxRanks": 2, "type": "passive", "name": "Abyssal Reverie", "spellId": 373054, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 82601, "name": "Train of Thought", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82602, 82568], "prev": [82600, 82566], "entries": [{"id": 103731, "definitionId": 108736, "maxRanks": 1, "type": "passive", "name": "Train of Thought", "spellId": 390693, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 82575, "name": "Ultimate Penitence", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82568, 82574, 82572], "prev": [82600, 82577], "entries": [{"id": 103700, "definitionId": 108705, "maxRanks": 1, "type": "active", "name": "Ultimate Penitence", "spellId": 421453, "icon": "ability_priest_ascendance", "index": 200}]}, {"id": 82567, "name": "Lenience / Evangelism", "type": "choice", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82572, 82585], "prev": [82577, 82583], "entries": [{"id": 103692, "definitionId": 108697, "maxRanks": 1, "type": "passive", "name": "Lenience", "spellId": 238063, "icon": "ability_priest_atonement", "index": 0}, {"id": 103691, "definitionId": 108696, "maxRanks": 1, "type": "active", "name": "Evangelism", "spellId": 246287, "icon": "spell_holy_divineillumination", "index": 100}]}, {"id": 82570, "name": "Void Summoner", "type": "single", "posX": 14700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82585, 82586], "prev": [82583, 82582], "entries": [{"id": 103695, "definitionId": 108700, "maxRanks": 1, "type": "passive", "name": "Void Summoner", "spellId": 390770, "icon": "spell_shadow_shadowfiend", "index": 100}]}, {"id": 82602, "name": "Divine Aegis", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [86730], "prev": [82601], "entries": [{"id": 103732, "definitionId": 108737, "maxRanks": 1, "type": "passive", "name": "Divine Aegis", "spellId": 47515, "icon": "spell_holy_devineaegis", "index": 100}]}, {"id": 82568, "name": "Blaze of Light", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82569], "prev": [82601, 82575], "entries": [{"id": 103693, "definitionId": 108698, "maxRanks": 2, "type": "passive", "name": "Blaze of Light", "spellId": 215768, "icon": "spell_holy_searinglight", "index": 100}]}, {"id": 82574, "name": "Heaven's Wrath", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82573], "prev": [82575], "entries": [{"id": 103699, "definitionId": 108704, "maxRanks": 1, "type": "passive", "name": "Heaven's Wrath", "spellId": 421558, "icon": "spell_holy_penance", "index": 100}]}, {"id": 82572, "name": "Harsh Discipline", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82571], "prev": [82575, 82567], "entries": [{"id": 103697, "definitionId": 108702, "maxRanks": 2, "type": "passive", "name": "Harsh Discipline", "spellId": 373180, "icon": "ability_paladin_handoflight", "index": 200}]}, {"id": 82585, "name": "Expiation", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82571], "prev": [82567, 82570], "entries": [{"id": 103711, "definitionId": 108716, "maxRanks": 2, "type": "passive", "name": "Expiation", "spellId": 390832, "icon": "spell_shadow_shadowpower", "index": 200}]}, {"id": 82586, "name": "Inescapable Torment", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82584], "prev": [82570], "entries": [{"id": 103712, "definitionId": 108717, "maxRanks": 1, "type": "passive", "name": "Inescapable Torment", "spellId": 373427, "icon": "spell_shadow_chilltouch", "index": 100}]}, {"id": 86730, "name": "Aegis of Wrath", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82602], "entries": [{"id": 103688, "definitionId": 108693, "maxRanks": 1, "type": "passive", "name": "Aegis of Wrath", "spellId": 238135, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 82569, "name": "Weal and Woe", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82568], "entries": [{"id": 103694, "definitionId": 108699, "maxRanks": 1, "type": "passive", "name": "Weal and Woe", "spellId": 390786, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 82573, "name": "Overloaded with Light", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82574], "entries": [{"id": 103698, "definitionId": 108703, "maxRanks": 1, "type": "passive", "name": "Overloaded with Light", "spellId": 421557, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 82571, "name": "Twilight Equilibrium", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82572, 82585], "entries": [{"id": 103696, "definitionId": 108701, "maxRanks": 1, "type": "passive", "name": "Twilight Equilibrium", "spellId": 390705, "icon": "ability_priest_innerlightandshadow", "index": 100}]}, {"id": 82584, "name": "Mindbender", "type": "single", "posX": 14700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82586], "entries": [{"id": 103710, "definitionId": 108715, "maxRanks": 1, "type": "active", "name": "Mindbender", "spellId": 123040, "icon": "spell_shadow_soulleech_3", "index": 100}]}], "heroNodes": [{"id": 94683, "name": "Premonition", "type": "single", "posX": 8400, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 20, "next": [94698, 94674, 94679], "prev": [], "entries": [{"id": 117286, "definitionId": 122298, "maxRanks": 1, "type": "active", "name": "Premonition", "spellId": 428924, "icon": "inv_ability_oraclepriest_premonitioninsight", "index": 100}], "freeNode": true}, {"id": 94698, "name": "Preventive Measures", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94691], "prev": [94683], "entries": [{"id": 117301, "definitionId": 122313, "maxRanks": 1, "type": "passive", "name": "Preventive Measures", "spellId": 440662, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 94674, "name": "Preemptive Care", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94675], "prev": [94683], "entries": [{"id": 117277, "definitionId": 122289, "maxRanks": 1, "type": "passive", "name": "Preemptive Care", "spellId": 440671, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 94679, "name": "Waste No Time / Miraculous Recovery", "type": "choice", "posX": 9000, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94689], "prev": [94683], "entries": [{"id": 117282, "definitionId": 122294, "maxRanks": 1, "type": "passive", "name": "Waste No Time", "spellId": 440681, "icon": "spell_nature_timestop", "index": 100}, {"id": 119332, "definitionId": 124232, "maxRanks": 1, "type": "passive", "name": "Miraculous Recovery", "spellId": 440674, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 94691, "name": "Assured Safety", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94690], "prev": [94698], "entries": [{"id": 117294, "definitionId": 122306, "maxRanks": 1, "type": "passive", "name": "Assured Safety", "spellId": 440766, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 94675, "name": "Divine Feathers / Save the Day", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94673], "prev": [94674], "entries": [{"id": 117278, "definitionId": 122290, "maxRanks": 1, "type": "passive", "name": "Divine Feathers", "spellId": 440670, "icon": "ability_priest_angelicfeather", "index": 100}, {"id": 119331, "definitionId": 124231, "maxRanks": 1, "type": "passive", "name": "Save the Day", "spellId": 440669, "icon": "priest_spell_leapoffaith_a", "index": 200}]}, {"id": 94689, "name": "Foreseen Circumstances", "type": "single", "posX": 9000, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94700], "prev": [94679], "entries": [{"id": 117292, "definitionId": 122304, "maxRanks": 1, "type": "passive", "name": "Foreseen Circumstances", "spellId": 440738, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 94690, "name": "Prophet's Will / Desperate Measures", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94691], "entries": [{"id": 117293, "definitionId": 122305, "maxRanks": 1, "type": "passive", "name": "Prophet's Will", "spellId": 433905, "icon": "ability_priest_clarityofpurpose", "index": 100}, {"id": 126068, "definitionId": 130900, "maxRanks": 1, "type": "passive", "name": "Desperate Measures", "spellId": 458718, "icon": "spell_holy_testoffaith", "index": 200}]}, {"id": 94673, "name": "Divine Providence", "type": "single", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94675], "entries": [{"id": 117276, "definitionId": 122288, "maxRanks": 1, "type": "passive", "name": "Divine Providence", "spellId": 440742, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 94700, "name": "Fatebender / Perfect Vision", "type": "choice", "posX": 9000, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94689], "entries": [{"id": 117303, "definitionId": 122315, "maxRanks": 1, "type": "passive", "name": "Fatebender", "spellId": 440743, "icon": "ability_priest_voidshift", "index": 100}, {"id": 119330, "definitionId": 124230, "maxRanks": 1, "type": "passive", "name": "Perfect Vision", "spellId": 440661, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 94687, "name": "Clairvoyance", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 20, "next": [], "prev": [94700, 94673, 94690], "entries": [{"id": 117290, "definitionId": 122302, "maxRanks": 1, "type": "passive", "name": "Clairvoyance", "spellId": 428940, "icon": "inv_inscription_vantusrune_progenitor", "index": 100}]}, {"id": 94684, "name": "Entropic Rift", "type": "single", "posX": 8400, "posY": 4500, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "subTreeId": 18, "requiresNode": 82654, "next": [94693, 94703, 94670], "prev": [], "entries": [{"id": 117287, "definitionId": 122299, "maxRanks": 1, "type": "passive", "name": "Entropic Rift", "spellId": 447444, "icon": "inv_ability_voidweaverpriest_entropicrift", "index": 100}], "freeNode": true}, {"id": 94693, "name": "No Escape / Dark Energy", "type": "choice", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94668], "prev": [94684], "entries": [{"id": 117296, "definitionId": 122308, "maxRanks": 1, "type": "passive", "name": "No Escape", "spellId": 451204, "icon": "spell_fire_twilighthellfire", "index": 100}, {"id": 123845, "definitionId": 128683, "maxRanks": 1, "type": "passive", "name": "Dark Energy", "spellId": 451018, "icon": "achievement_boss_triumvirate_darknaaru", "index": 200}]}, {"id": 94703, "name": "Void Blast", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94695], "prev": [94684], "entries": [{"id": 117306, "definitionId": 122318, "maxRanks": 1, "type": "active", "name": "Void Blast", "spellId": 450405, "icon": "inv_cosmicvoid_missile", "index": 100}]}, {"id": 94670, "name": "Inner Quietus", "type": "single", "posX": 9000, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "next": [100212], "prev": [94684], "entries": [{"id": 117273, "definitionId": 122285, "maxRanks": 1, "type": "passive", "name": "Inner Quietus", "spellId": 448278, "icon": "inv_cosmicvoid_buff", "index": 100}]}, {"id": 94668, "name": "Devour Matter / Darkening Horizon", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94692], "prev": [94693], "entries": [{"id": 117271, "definitionId": 122283, "maxRanks": 1, "type": "passive", "name": "Devour Matter", "spellId": 451840, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 117298, "definitionId": 122310, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 94695, "name": "Void Empowerment / Darkening Horizon", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94669], "prev": [94703], "entries": [{"id": 125821, "definitionId": 128681, "maxRanks": 1, "type": "passive", "name": "Void Empowerment", "spellId": 450138, "icon": "inv_cosmicvoid_nova", "index": 100}, {"id": 125982, "definitionId": 130813, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 100212, "name": "Depth of Shadows / Voidwraith", "type": "choice", "posX": 9000, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94696], "prev": [94670], "entries": [{"id": 123842, "definitionId": 128680, "maxRanks": 1, "type": "passive", "name": "Depth of Shadows", "spellId": 451308, "icon": "warlock_summon__voidlord", "index": 100}, {"id": 123841, "definitionId": 128679, "maxRanks": 1, "type": "passive", "name": "Voidwraith", "spellId": 451234, "icon": "warlock_curse_shadow", "index": 200}]}, {"id": 94692, "name": "Voidheart", "type": "single", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94668], "entries": [{"id": 117295, "definitionId": 122307, "maxRanks": 1, "type": "passive", "name": "Voidheart", "spellId": 449880, "icon": "inv_cosmicvoid_orb", "index": 100}]}, {"id": 94669, "name": "Void Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94695], "entries": [{"id": 117272, "definitionId": 122284, "maxRanks": 1, "type": "passive", "name": "Void Infusion", "spellId": 450612, "icon": "inv_misc_volatileshadow", "index": 100}]}, {"id": 94696, "name": "Void Leech / Embrace the Shadow", "type": "choice", "posX": 9000, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "next": [94694], "prev": [100212], "entries": [{"id": 117299, "definitionId": 122311, "maxRanks": 1, "type": "passive", "name": "Void Leech", "spellId": 451311, "icon": "spell_shadow_soulleech_2", "index": 100}, {"id": 123844, "definitionId": 128682, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadow", "spellId": 451569, "icon": "spell_shadow_shadesofdarkness", "index": 200}]}, {"id": 94694, "name": "Collapsing Void", "type": "single", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [], "prev": [94669, 94692, 94696], "entries": [{"id": 117297, "definitionId": 122309, "maxRanks": 1, "type": "passive", "name": "Collapsing Void", "spellId": 448403, "icon": "inv_cosmicvoid_groundsate", "index": 100}]}], "subTreeNodes": [{"id": 99801, "name": "Oracle / Voidweaver", "type": "subtree", "posX": 8400, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123290, "type": "subtree", "name": "Oracle", "traitSubTreeId": 20, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-oracle", "nodes": [94683, 94698, 94674, 94679, 94691, 94675, 94689, 94690, 94673, 94700, 94687]}, {"id": 123288, "type": "subtree", "name": "Voidweaver", "traitSubTreeId": 18, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-voidweaver", "nodes": [94684, 94693, 94703, 94670, 94668, 94695, 100212, 94692, 94669, 94696, 94694]}]}], "fullNodeOrder": [82552, 82553, 82554, 82555, 82556, 82557, 82558, 82559, 82560, 82561, 82563, 82564, 82566, 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, 82647, 82648, 82649, 82651, 82652, 82653, 82654, 82655, 82656, 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82665, 82666, 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, 82687, 82688, 82689, 82690, 82691, 82692, 82693, 82694, 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, 82715, 82716, 82717, 82718, 82719, 82720, 82721, 86730, 92225, 93170, 93171, 93172, 94668, 94669, 94670, 94673, 94674, 94675, 94676, 94677, 94678, 94679, 94680, 94681, 94683, 94684, 94685, 94686, 94687, 94688, 94689, 94690, 94691, 94692, 94693, 94694, 94695, 94696, 94697, 94698, 94699, 94700, 94702, 94703, 99800, 99801, 99802, 100212]}, {"traitTreeId": 795, "className": "Priest", "classId": 5, "specName": "Holy", "specId": 257, "classNodes": [{"id": 82717, "name": "Renew", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82718, 82714], "prev": [], "entries": [{"id": 103869, "definitionId": 108874, "maxRanks": 1, "type": "active", "name": "Renew", "spellId": 139, "icon": "spell_holy_renew", "index": 100}], "freeNode": true}, {"id": 82715, "name": "Dispel Magic", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82714, 82705, 82695], "prev": [], "entries": [{"id": 103867, "definitionId": 108872, "maxRanks": 1, "type": "active", "name": "Dispel Magic", "spellId": 528, "icon": "spell_nature_nullifydisease", "index": 100}]}, {"id": 82713, "name": "Shadowfiend", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82695, 82712], "prev": [], "entries": [{"id": 103865, "definitionId": 108870, "maxRanks": 1, "type": "active", "name": "Shadowfiend", "spellId": 34433, "icon": "spell_shadow_shadowfiend", "index": 100}]}, {"id": 82718, "name": "Prayer of Mending", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82719, 82701, 82720], "prev": [82717], "entries": [{"id": 103870, "definitionId": 108875, "maxRanks": 1, "type": "active", "name": "Prayer of Mending", "spellId": 33076, "icon": "spell_holy_prayerofmendingtga", "index": 100}], "freeNode": true}, {"id": 82714, "name": "Improved Flash Heal", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82701, 82707, 82703], "prev": [82715, 82717], "entries": [{"id": 103866, "definitionId": 108871, "maxRanks": 1, "type": "passive", "name": "Improved Flash Heal", "spellId": 393870, "icon": "spell_holy_heal", "index": 100}]}, {"id": 82705, "name": "Improved Purify", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [82703], "prev": [82715], "entries": [{"id": 103855, "definitionId": 108860, "maxRanks": 1, "type": "passive", "name": "Improved Purify", "spellId": 390632, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 82695, "name": "Psychic Voice / Petrifying Scream", "type": "choice", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82703, 82556], "prev": [82715, 82713], "entries": [{"id": 103845, "definitionId": 108850, "maxRanks": 1, "type": "passive", "name": "Psychic Voice", "spellId": 196704, "icon": "ability_warrior_commandingshout", "index": 100}, {"id": 114588, "definitionId": 119593, "maxRanks": 1, "type": "passive", "name": "Petrifying Scream", "spellId": 55676, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82712, "name": "Shadow Word: Death", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [82556, 82711], "prev": [82713], "entries": [{"id": 103864, "definitionId": 108869, "maxRanks": 1, "type": "active", "name": "Shadow Word: Death", "spellId": 32379, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82719, "name": "Focused Mending", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82720], "prev": [82718], "entries": [{"id": 103871, "definitionId": 108876, "maxRanks": 1, "type": "passive", "name": "Focused Mending", "spellId": 372354, "icon": "achievement_bg_returnxflags_def_wsg", "index": 100}]}, {"id": 82701, "name": "Holy Nova", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82720, 82700, 82716], "prev": [82714, 82718], "entries": [{"id": 103851, "definitionId": 108856, "maxRanks": 1, "type": "active", "name": "Holy Nova", "spellId": 132157, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82707, "name": "Protective Light / From Darkness Comes Light", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82716], "prev": [82714], "entries": [{"id": 103858, "definitionId": 108863, "maxRanks": 1, "type": "passive", "name": "Protective Light", "spellId": 193063, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 103857, "definitionId": 108862, "maxRanks": 1, "type": "passive", "name": "From Darkness Comes Light", "spellId": 390615, "icon": "spell_holy_flashheal", "index": 200}]}, {"id": 82703, "name": "Angelic Feather", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82716, 82693, 82708], "prev": [82714, 82705, 82695], "entries": [{"id": 103853, "definitionId": 108858, "maxRanks": 1, "type": "active", "name": "Angelic Feather", "spellId": 121536, "icon": "ability_priest_angelicfeather", "index": 0}]}, {"id": 82556, "name": "Phantasm", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82708, 82710], "prev": [82695, 82712], "entries": [{"id": 103834, "definitionId": 108839, "maxRanks": 1, "type": "passive", "name": "Phantasm", "spellId": 108942, "icon": "ability_priest_phantasm", "index": 100}]}, {"id": 82711, "name": "Death and Madness", "type": "single", "posX": 6900, "posY": 2700, "maxRanks": 1, "next": [82710, 82688], "prev": [82712], "entries": [{"id": 103863, "definitionId": 108868, "maxRanks": 1, "type": "passive", "name": "Death and Madness", "spellId": 321291, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82720, "name": "Spell Warding / Blessed Recovery", "type": "choice", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [82721, 82699, 82696], "prev": [82718, 82701, 82719], "entries": [{"id": 103872, "definitionId": 108877, "maxRanks": 1, "type": "passive", "name": "Spell Warding", "spellId": 390667, "icon": "spell_holy_spellwarding", "index": 100}, {"id": 103677, "definitionId": 108682, "maxRanks": 1, "type": "passive", "name": "Blessed Recovery", "spellId": 390767, "icon": "spell_holy_blessedrecovery", "index": 200}]}, {"id": 82700, "name": "Rhapsody", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [82699], "prev": [82701], "entries": [{"id": 103850, "definitionId": 108855, "maxRanks": 1, "type": "passive", "name": "Rhapsody", "spellId": 390622, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82716, "name": "Leap of Faith", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [82699, 82702, 82694], "prev": [82703, 82701, 82707], "entries": [{"id": 103868, "definitionId": 108873, "maxRanks": 1, "type": "active", "name": "Leap of Faith", "spellId": 73325, "icon": "priest_spell_leapoffaith_a", "index": 100}]}, {"id": 82693, "name": "Shackle Undead", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [82694], "prev": [82703], "entries": [{"id": 103843, "definitionId": 108848, "maxRanks": 1, "type": "active", "name": "Shackle Undead", "spellId": 9484, "icon": "spell_nature_slow", "index": 100}]}, {"id": 82708, "name": "Sheer Terror / Void Tendrils", "type": "choice", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [82694, 82691], "prev": [82703, 82556], "entries": [{"id": 103860, "definitionId": 108865, "maxRanks": 1, "type": "passive", "name": "Sheer Terror", "spellId": 390919, "icon": "spell_nzinsanity_fearofdeath", "index": 100}, {"id": 103859, "definitionId": 108864, "maxRanks": 1, "type": "active", "name": "Void Tendrils", "spellId": 108920, "icon": "spell_priest_voidtendrils", "index": 200}]}, {"id": 82710, "name": "Mind Control / Dominate Mind", "type": "choice", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [82691, 82689], "prev": [82556, 82711], "entries": [{"id": 103862, "definitionId": 108867, "maxRanks": 1, "type": "active", "name": "Mind Control", "spellId": 605, "icon": "spell_shadow_shadowworddominate", "index": 100}, {"id": 103678, "definitionId": 108683, "maxRanks": 1, "type": "active", "name": "Dominate Mind", "spellId": 205364, "icon": "spell_priest_void_flay", "index": 200}]}, {"id": 82721, "name": "Words of the Pious", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696], "prev": [82720], "entries": [{"id": 103873, "definitionId": 108878, "maxRanks": 1, "type": "passive", "name": "Words of the Pious", "spellId": 377438, "icon": "ability_priest_clarityofwill", "index": 200}]}, {"id": 82699, "name": "Mass Dispel", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696, 82698, 82706], "prev": [82716, 82720, 82700], "entries": [{"id": 103849, "definitionId": 108854, "maxRanks": 1, "type": "active", "name": "Mass Dispel", "spellId": 32375, "icon": "spell_arcane_massdispel", "index": 100}]}, {"id": 82702, "name": "Move with Grace", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706], "prev": [82716], "entries": [{"id": 103852, "definitionId": 108857, "maxRanks": 1, "type": "passive", "name": "Move with Grace", "spellId": 390620, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82694, "name": "Power Infusion", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706, 82683, 82692], "prev": [82716, 82693, 82708], "entries": [{"id": 103844, "definitionId": 108849, "maxRanks": 1, "type": "active", "name": "Power Infusion", "spellId": 10060, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 82691, "name": "Sanguine Teachings / Vampiric Embrace", "type": "choice", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82692, 82690, 82689], "prev": [82710, 82708], "entries": [{"id": 114735, "definitionId": 108846, "maxRanks": 1, "type": "passive", "name": "Sanguine Teachings", "spellId": 373218, "icon": "inv_archaeology_80_zandalari_sanguinetotem", "index": 100}, {"id": 103841, "definitionId": 119742, "maxRanks": 1, "type": "active", "name": "Vampiric Embrace", "spellId": 15286, "icon": "spell_shadow_unsummonbuilding", "index": 200}]}, {"id": 82688, "name": "Tithe Evasion", "type": "single", "posX": 6900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82689], "prev": [82711], "entries": [{"id": 103838, "definitionId": 108843, "maxRanks": 1, "type": "passive", "name": "Tithe Evasion", "spellId": 373223, "icon": "spell_nzinsanity_bloodthirst", "index": 100}]}, {"id": 82696, "name": "Inspiration", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82721, 82699, 82720], "entries": [{"id": 103846, "definitionId": 108851, "maxRanks": 1, "type": "passive", "name": "Inspiration", "spellId": 390676, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 82698, "name": "Mental Agility", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82699], "entries": [{"id": 103848, "definitionId": 108853, "maxRanks": 1, "type": "passive", "name": "Mental Agility", "spellId": 341167, "icon": "spell_holy_dispelmagic", "index": 100}]}, {"id": 82706, "name": "Body and Soul", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697, 82684], "prev": [82694, 82699, 82702], "entries": [{"id": 103856, "definitionId": 108861, "maxRanks": 1, "type": "passive", "name": "Body and Soul", "spellId": 64129, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82683, "name": "Twins of the Sun Priestess", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684], "prev": [82694], "entries": [{"id": 103832, "definitionId": 108837, "maxRanks": 1, "type": "passive", "name": "Twins of the Sun Priestess", "spellId": 373466, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82692, "name": "Void Shield", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684, 82709], "prev": [82691, 82694], "entries": [{"id": 103842, "definitionId": 108847, "maxRanks": 1, "type": "passive", "name": "Void Shield", "spellId": 280749, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 82690, "name": "San'layn", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82691], "entries": [{"id": 103840, "definitionId": 108845, "maxRanks": 1, "type": "passive", "name": "San'layn", "spellId": 199855, "icon": "achievement_boss_lanathel", "index": 100}]}, {"id": 82689, "name": "Apathy", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82710, 82688, 82691], "entries": [{"id": 103839, "definitionId": 108844, "maxRanks": 1, "type": "passive", "name": "Apathy", "spellId": 390668, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 82697, "name": "Unwavering Will", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82678, 82682], "prev": [82706, 82696, 82698], "entries": [{"id": 103847, "definitionId": 108852, "maxRanks": 2, "type": "passive", "name": "Unwavering Will", "spellId": 373456, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 82684, "name": "Twist of Fate", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82682, 82685], "prev": [82706, 82692, 82683], "entries": [{"id": 103833, "definitionId": 108838, "maxRanks": 2, "type": "passive", "name": "Twist of Fate", "spellId": 390972, "icon": "spell_shadow_mindtwisting", "index": 100}]}, {"id": 82709, "name": "Throes of Pain", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82685, 82687], "prev": [82692, 82690, 82689], "entries": [{"id": 103861, "definitionId": 108866, "maxRanks": 2, "type": "passive", "name": "Throes of Pain", "spellId": 377422, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 82678, "name": "Angel's Mercy / Binding Heals", "type": "choice", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82677, 82679], "prev": [82697], "entries": [{"id": 103825, "definitionId": 108830, "maxRanks": 1, "type": "passive", "name": "Angel's Mercy", "spellId": 238100, "icon": "spell_holy_testoffaith", "index": 100}, {"id": 103824, "definitionId": 108829, "maxRanks": 1, "type": "passive", "name": "Binding Heals", "spellId": 368275, "icon": "spell_holy_blindingheal", "index": 200}]}, {"id": 82682, "name": "Divine Star / Halo", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82679, 82681], "prev": [82697, 82684], "entries": [{"id": 103831, "definitionId": 108836, "maxRanks": 1, "type": "active", "name": "Divine Star", "spellId": 110744, "icon": "spell_priest_divinestar", "index": 200}, {"id": 103830, "definitionId": 108835, "maxRanks": 1, "type": "active", "name": "Halo", "spellId": 120517, "icon": "ability_priest_halo", "index": 300}]}, {"id": 82685, "name": "Translucent Image", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82681, 82686], "prev": [82709, 82684], "entries": [{"id": 103835, "definitionId": 108840, "maxRanks": 1, "type": "passive", "name": "Translucent Image", "spellId": 373446, "icon": "spell_nature_invisibilty", "index": 100}]}, {"id": 82687, "name": "Cauterizing Shadows", "type": "single", "posX": 6300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82686, 82672], "prev": [82709], "entries": [{"id": 103837, "definitionId": 108842, "maxRanks": 1, "type": "passive", "name": "Cauterizing Shadows", "spellId": 459990, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82677, "name": "Surge of Light", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82676], "prev": [82678], "entries": [{"id": 103823, "definitionId": 108828, "maxRanks": 1, "type": "passive", "name": "Surge of Light", "spellId": 109186, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 82679, "name": "Light's Inspiration", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82676, 82675], "prev": [82682, 82678], "entries": [{"id": 103826, "definitionId": 108831, "maxRanks": 2, "type": "passive", "name": "Light's Inspiration", "spellId": 373450, "icon": "spell_holy_restoration", "index": 100}]}, {"id": 82681, "name": "Crystalline Reflection", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82675, 82674], "prev": [82685, 82682], "entries": [{"id": 103829, "definitionId": 108834, "maxRanks": 2, "type": "passive", "name": "Crystalline Reflection", "spellId": 373457, "icon": "ability_priest_reflectiveshield", "index": 100}]}, {"id": 82686, "name": "Improved Fade", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82674, 82673], "prev": [82685, 82687], "entries": [{"id": 103836, "definitionId": 108841, "maxRanks": 2, "type": "passive", "name": "Improved Fade", "spellId": 390670, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 82672, "name": "Manipulation", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82673], "prev": [82687], "entries": [{"id": 103818, "definitionId": 108823, "maxRanks": 1, "type": "passive", "name": "Manipulation", "spellId": 459985, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82676, "name": "Benevolence / Power Word: Life", "type": "choice", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82677, 82679], "entries": [{"id": 115884, "definitionId": 120896, "maxRanks": 1, "type": "passive", "name": "Benevolence", "spellId": 415416, "icon": "ability_priest_spiritoftheredeemer", "index": 100}, {"id": 103822, "definitionId": 108827, "maxRanks": 1, "type": "active", "name": "Power Word: Life", "spellId": 373481, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 82675, "name": "Angelic Bulwark", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82679, 82681], "entries": [{"id": 103821, "definitionId": 108826, "maxRanks": 1, "type": "passive", "name": "Angelic Bulwark", "spellId": 108945, "icon": "ability_priest_angelicbulwark", "index": 100}]}, {"id": 82674, "name": "Essence Devourer / Void Shift", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82681, 82686], "entries": [{"id": 115883, "definitionId": 120895, "maxRanks": 1, "type": "passive", "name": "Essence Devourer", "spellId": 415479, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}, {"id": 103820, "definitionId": 108825, "maxRanks": 1, "type": "active", "name": "Void Shift", "spellId": 108968, "icon": "spell_priest_voidshift", "index": 200}]}, {"id": 82673, "name": "Phantom Reach", "type": "single", "posX": 6300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82672, 82686], "entries": [{"id": 103819, "definitionId": 108824, "maxRanks": 1, "type": "passive", "name": "Phantom Reach", "spellId": 459559, "icon": "spell_shadow_chilltouch", "index": 100}]}], "specNodes": [{"id": 82638, "name": "Holy Word: Serenity", "type": "single", "posX": 12900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82631, 82637, 82639], "prev": [], "entries": [{"id": 103775, "definitionId": 108780, "maxRanks": 1, "type": "active", "name": "Holy Word: Serenity", "spellId": 2050, "icon": "spell_holy_persuitofjustice", "index": 100}]}, {"id": 82631, "name": "Holy Word: Sanctify", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82632, 82630], "prev": [82638], "entries": [{"id": 103766, "definitionId": 108771, "maxRanks": 1, "type": "active", "name": "Holy Word: Sanctify", "spellId": 34861, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 82637, "name": "Guardian Spirit", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82636], "prev": [82638], "entries": [{"id": 103774, "definitionId": 108779, "maxRanks": 1, "type": "active", "name": "Guardian Spirit", "spellId": 47788, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 82639, "name": "Holy Word: Chastise", "type": "single", "posX": 13500, "posY": 2100, "maxRanks": 1, "next": [82619, 82640], "prev": [82638], "entries": [{"id": 103776, "definitionId": 108781, "maxRanks": 1, "type": "active", "name": "Holy Word: Chastise", "spellId": 88625, "icon": "spell_holy_chastise", "index": 100}]}, {"id": 82632, "name": "Prayer of Healing", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82624, 82633, 82630], "prev": [82631], "entries": [{"id": 103767, "definitionId": 108772, "maxRanks": 1, "type": "active", "name": "Prayer of Healing", "spellId": 596, "icon": "spell_holy_prayerofhealing02", "index": 100}]}, {"id": 82636, "name": "Guardian Angel / Guardians of the Light", "type": "choice", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82630, 82635, 82620], "prev": [82637], "entries": [{"id": 103773, "definitionId": 108778, "maxRanks": 1, "type": "passive", "name": "Guardian Angel", "spellId": 200209, "icon": "ability_priest_pathofthedevout", "index": 100}, {"id": 103772, "definitionId": 108777, "maxRanks": 1, "type": "passive", "name": "Guardians of the Light", "spellId": 196437, "icon": "spell_holy_guardianspirit", "index": 200}]}, {"id": 82619, "name": "Censure", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82620], "prev": [82639], "entries": [{"id": 103753, "definitionId": 108758, "maxRanks": 1, "type": "passive", "name": "Censure", "spellId": 200199, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 82640, "name": "Empyreal Blaze", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [82620, 82607], "prev": [82639], "entries": [{"id": 103777, "definitionId": 108782, "maxRanks": 1, "type": "passive", "name": "Empyreal Blaze", "spellId": 372616, "icon": "ability_priest_empyrealblaze", "index": 100}]}, {"id": 82624, "name": "Circle of Healing", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82625, 82623], "prev": [82632], "entries": [{"id": 103758, "definitionId": 108763, "maxRanks": 1, "type": "active", "name": "Circle of Healing", "spellId": 204883, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 82633, "name": "Revitalizing Prayers / Sanctified Prayers", "type": "choice", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82623, 82634], "prev": [82632], "entries": [{"id": 103769, "definitionId": 108774, "maxRanks": 1, "type": "passive", "name": "Revitalizing Prayers", "spellId": 391208, "icon": "inv_staff_2h_artifacttome_d_06", "index": 100}, {"id": 103768, "definitionId": 108773, "maxRanks": 1, "type": "passive", "name": "Sanctified Prayers", "spellId": 196489, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 82630, "name": "Cosmic Ripple", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82634, 82621], "prev": [82636, 82632, 82631], "entries": [{"id": 103765, "definitionId": 108770, "maxRanks": 1, "type": "passive", "name": "Cosmic Ripple", "spellId": 238136, "icon": "spell_holy_summonlightwell", "index": 100}]}, {"id": 82635, "name": "Afterlife", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82621], "prev": [82636], "entries": [{"id": 103771, "definitionId": 108776, "maxRanks": 1, "type": "passive", "name": "Afterlife", "spellId": 196707, "icon": "inv_enchant_essencemagiclarge", "index": 100}]}, {"id": 82620, "name": "Renewed Faith", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82621, 82618, 82641], "prev": [82640, 82636, 82619], "entries": [{"id": 103754, "definitionId": 108759, "maxRanks": 1, "type": "passive", "name": "Renewed Faith", "spellId": 341997, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 82607, "name": "Burning Vehemence", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "next": [82641], "prev": [82640], "entries": [{"id": 103739, "definitionId": 108744, "maxRanks": 1, "type": "passive", "name": "Burning Vehemence", "spellId": 372307, "icon": "ability_paladin_sacredcleansing", "index": 100}]}, {"id": 82625, "name": "Prayer Circle / Healing Chorus", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82626], "prev": [82624], "entries": [{"id": 103760, "definitionId": 108765, "maxRanks": 1, "type": "passive", "name": "Prayer Circle", "spellId": 321377, "icon": "spell_paladin_divinecircle", "index": 100}, {"id": 103759, "definitionId": 108764, "maxRanks": 1, "type": "passive", "name": "Healing Chorus", "spellId": 390881, "icon": "spell_holy_circleofrenewal", "index": 200}]}, {"id": 82623, "name": "Prayerful Litany", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622, 82627], "prev": [82633, 82624], "entries": [{"id": 103757, "definitionId": 108762, "maxRanks": 1, "type": "passive", "name": "Prayerful Litany", "spellId": 391209, "icon": "spell_holy_prayerofhealing02", "index": 100}]}, {"id": 82634, "name": "Trail of Light", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622], "prev": [82630, 82633], "entries": [{"id": 103770, "definitionId": 108775, "maxRanks": 1, "type": "passive", "name": "Trail of Light", "spellId": 200128, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 82621, "name": "Divine Hymn", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622, 82613, 82617], "prev": [82635, 82630, 82620], "entries": [{"id": 103755, "definitionId": 108760, "maxRanks": 1, "type": "active", "name": "Divine Hymn", "spellId": 64843, "icon": "spell_holy_divinehymn", "index": 100}]}, {"id": 82618, "name": "Enlightenment", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82617], "prev": [82620], "entries": [{"id": 103752, "definitionId": 108757, "maxRanks": 1, "type": "passive", "name": "Enlightenment", "spellId": 193155, "icon": "spell_arcane_mindmastery", "index": 100}]}, {"id": 82641, "name": "Benediction / Holy Mending", "type": "choice", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82617, 82642], "prev": [82607, 82620], "entries": [{"id": 103779, "definitionId": 108784, "maxRanks": 1, "type": "passive", "name": "Benediction", "spellId": 193157, "icon": "spell_monk_diffusemagic", "index": 100}, {"id": 103778, "definitionId": 108783, "maxRanks": 1, "type": "passive", "name": "Holy Mending", "spellId": 391154, "icon": "spell_holy_healingfocus", "index": 200}]}, {"id": 82626, "name": "Orison", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82627, 82628], "prev": [82625], "entries": [{"id": 103761, "definitionId": 108766, "maxRanks": 1, "type": "passive", "name": "Orison", "spellId": 390947, "icon": "spell_holy_fanaticism", "index": 100}]}, {"id": 82622, "name": "Everlasting Light", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614, 82627], "prev": [82634, 82621, 82623], "entries": [{"id": 103756, "definitionId": 108761, "maxRanks": 1, "type": "passive", "name": "Everlasting Light", "spellId": 391161, "icon": "inv_mace_1h_artifactheartofkure_d_01", "index": 100}]}, {"id": 82613, "name": "Gales of Song", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614], "prev": [82621], "entries": [{"id": 103747, "definitionId": 108752, "maxRanks": 1, "type": "passive", "name": "Gales of Song", "spellId": 372370, "icon": "inv_misc_volatileair", "index": 100}]}, {"id": 82617, "name": "Symbol of Hope", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614, 82616], "prev": [82641, 82621, 82618], "entries": [{"id": 103751, "definitionId": 108756, "maxRanks": 1, "type": "active", "name": "Symbol of Hope", "spellId": 64901, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82642, "name": "Divine Service", "type": "single", "posX": 14700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82616, 82615], "prev": [82641], "entries": [{"id": 103780, "definitionId": 108785, "maxRanks": 1, "type": "passive", "name": "Divine Service", "spellId": 391233, "icon": "spell_holy_prayerofspirit", "index": 100}]}, {"id": 82627, "name": "Crisis Management", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82628, 82610], "prev": [82623, 82622, 82626], "entries": [{"id": 103762, "definitionId": 108767, "maxRanks": 2, "type": "passive", "name": "Crisis Management", "spellId": 390954, "icon": "spell_holy_flashheal", "index": 100}]}, {"id": 82614, "name": "Prismatic Echoes", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82610, 82612], "prev": [82613, 82622, 82617], "entries": [{"id": 103748, "definitionId": 108753, "maxRanks": 2, "type": "passive", "name": "Prismatic Echoes", "spellId": 390967, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 82616, "name": "Prayers of the Virtuous", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82612, 82615], "prev": [82617, 82642], "entries": [{"id": 103750, "definitionId": 108755, "maxRanks": 2, "type": "passive", "name": "Prayers of the Virtuous", "spellId": 390977, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 82628, "name": "Pontifex", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82604, 82629], "prev": [82627, 82626], "entries": [{"id": 103763, "definitionId": 108768, "maxRanks": 1, "type": "passive", "name": "Pontifex", "spellId": 390980, "icon": "spell_priest_pontifex", "index": 100}]}, {"id": 82610, "name": "Apotheosis / Holy Word: Salvation", "type": "choice", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82629, 82608, 82611], "prev": [82627, 82614], "entries": [{"id": 103743, "definitionId": 108748, "maxRanks": 1, "type": "active", "name": "Apotheosis", "spellId": 200183, "icon": "ability_priest_ascension", "index": 100}, {"id": 103742, "definitionId": 108747, "maxRanks": 1, "type": "active", "name": "Holy Word: Salvation", "spellId": 265202, "icon": "ability_priest_archangel", "index": 200}]}, {"id": 82612, "name": "Miracle Worker", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82611, 82609], "prev": [82614, 82616], "entries": [{"id": 103745, "definitionId": 108750, "maxRanks": 1, "type": "passive", "name": "Miracle Worker", "spellId": 235587, "icon": "spell_holy_persuitofjustice", "index": 200}]}, {"id": 82615, "name": "Say Your Prayers", "type": "single", "posX": 14700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82609, 82606], "prev": [82616, 82642], "entries": [{"id": 103749, "definitionId": 108754, "maxRanks": 1, "type": "passive", "name": "Say Your Prayers", "spellId": 391186, "icon": "ability_priest_bindingprayers", "index": 100}]}, {"id": 82604, "name": "Resonant Words", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82603], "prev": [82628], "entries": [{"id": 103735, "definitionId": 108740, "maxRanks": 2, "type": "passive", "name": "Resonant Words", "spellId": 372309, "icon": "spell_holy_holybolt", "index": 100}]}, {"id": 82629, "name": "Light of the Naaru", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82603], "prev": [82628, 82610], "entries": [{"id": 103764, "definitionId": 108769, "maxRanks": 2, "type": "passive", "name": "Light of the Naaru", "spellId": 196985, "icon": "inv_pet_naaru", "index": 100}]}, {"id": 82608, "name": "Answered Prayers", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82554], "prev": [82610], "entries": [{"id": 103740, "definitionId": 108745, "maxRanks": 2, "type": "passive", "name": "Answered Prayers", "spellId": 391387, "icon": "inv_staff_2h_artifactheartofkure_d_06", "index": 100}]}, {"id": 82611, "name": "Voice of Harmony", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82554], "prev": [82612, 82610], "entries": [{"id": 103744, "definitionId": 108749, "maxRanks": 2, "type": "passive", "name": "Voice of Harmony", "spellId": 390994, "icon": "ability_priest_heavanlyvoice", "index": 100}]}, {"id": 82609, "name": "Desperate Times", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82605], "prev": [82615, 82612], "entries": [{"id": 103741, "definitionId": 108746, "maxRanks": 2, "type": "passive", "name": "Desperate Times", "spellId": 391381, "icon": "ability_pvp_defenderoftheweak", "index": 100}]}, {"id": 82606, "name": "Epiphany", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82605], "prev": [82615], "entries": [{"id": 103738, "definitionId": 108743, "maxRanks": 2, "type": "passive", "name": "Epiphany", "spellId": 414553, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 82603, "name": "Lightweaver / Lightwell", "type": "choice", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82629, 82604], "entries": [{"id": 103734, "definitionId": 108739, "maxRanks": 1, "type": "passive", "name": "Lightweaver", "spellId": 390992, "icon": "spell_holy_greaterheal", "index": 100}, {"id": 103733, "definitionId": 108738, "maxRanks": 1, "type": "active", "name": "Lightwell", "spellId": 372835, "icon": "spell_holy_summonlightwell", "index": 200}]}, {"id": 82554, "name": "Divine Image", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82611, 82608], "entries": [{"id": 103675, "definitionId": 108680, "maxRanks": 1, "type": "passive", "name": "Divine Image", "spellId": 392988, "icon": "inv_staff_2h_artifactheartofkure_d_04", "index": 200}]}, {"id": 82605, "name": "Restitution / Divine Word", "type": "choice", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82606, 82609], "entries": [{"id": 103737, "definitionId": 108742, "maxRanks": 1, "type": "passive", "name": "Restitution", "spellId": 391124, "icon": "inv_staff_2h_artifactheartofkure_d_03", "index": 100}, {"id": 103676, "definitionId": 108681, "maxRanks": 1, "type": "active", "name": "Divine Word", "spellId": 372760, "icon": "spell_priest_chakra", "index": 200}]}], "heroNodes": [{"id": 94683, "name": "Premonition", "type": "single", "posX": 8400, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 20, "next": [94698, 94674, 94679], "prev": [], "entries": [{"id": 117286, "definitionId": 122298, "maxRanks": 1, "type": "active", "name": "Premonition", "spellId": 428924, "icon": "inv_ability_oraclepriest_premonitioninsight", "index": 100}], "freeNode": true}, {"id": 94697, "name": "Power Surge", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 19, "requiresNode": 0, "next": [94677, 94681, 94699], "prev": [], "entries": [{"id": 117300, "definitionId": 122312, "maxRanks": 1, "type": "passive", "name": "Power Surge", "spellId": 453109, "icon": "inv_ability_holyfire_groundstate", "index": 100}], "freeNode": true}, {"id": 94698, "name": "Preventive Measures", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94691], "prev": [94683], "entries": [{"id": 117301, "definitionId": 122313, "maxRanks": 1, "type": "passive", "name": "Preventive Measures", "spellId": 440662, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 94674, "name": "Preemptive Care", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94675], "prev": [94683], "entries": [{"id": 117277, "definitionId": 122289, "maxRanks": 1, "type": "passive", "name": "Preemptive Care", "spellId": 440671, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 94679, "name": "Waste No Time / Miraculous Recovery", "type": "choice", "posX": 9000, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94689], "prev": [94683], "entries": [{"id": 117282, "definitionId": 122294, "maxRanks": 1, "type": "passive", "name": "Waste No Time", "spellId": 440681, "icon": "spell_nature_timestop", "index": 100}, {"id": 119332, "definitionId": 124232, "maxRanks": 1, "type": "passive", "name": "Miraculous Recovery", "spellId": 440674, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 94677, "name": "Perfected Form", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "next": [94686], "prev": [94697], "entries": [{"id": 117280, "definitionId": 122292, "maxRanks": 1, "type": "passive", "name": "Perfected Form", "spellId": 453917, "icon": "inv_ability_holyfire_buff", "index": 100}]}, {"id": 94681, "name": "Resonant Energy", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94680], "prev": [94697], "entries": [{"id": 117284, "definitionId": 122296, "maxRanks": 1, "type": "passive", "name": "Resonant Energy", "spellId": 453845, "icon": "ability_priest_halo", "index": 100}]}, {"id": 94699, "name": "Manifested Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94688], "prev": [94697], "entries": [{"id": 117302, "definitionId": 122314, "maxRanks": 1, "type": "passive", "name": "Manifested Power", "spellId": 453783, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 94691, "name": "Assured Safety", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94690], "prev": [94698], "entries": [{"id": 117294, "definitionId": 122306, "maxRanks": 1, "type": "passive", "name": "Assured Safety", "spellId": 440766, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 94675, "name": "Divine Feathers / Save the Day", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94673], "prev": [94674], "entries": [{"id": 117278, "definitionId": 122290, "maxRanks": 1, "type": "passive", "name": "Divine Feathers", "spellId": 440670, "icon": "ability_priest_angelicfeather", "index": 100}, {"id": 119331, "definitionId": 124231, "maxRanks": 1, "type": "passive", "name": "Save the Day", "spellId": 440669, "icon": "priest_spell_leapoffaith_a", "index": 200}]}, {"id": 94689, "name": "Foreseen Circumstances", "type": "single", "posX": 9000, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94700], "prev": [94679], "entries": [{"id": 117292, "definitionId": 122304, "maxRanks": 1, "type": "passive", "name": "Foreseen Circumstances", "spellId": 440738, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 94686, "name": "Shock Pulse / Incessant Screams", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94678], "prev": [94677], "entries": [{"id": 117289, "definitionId": 122301, "maxRanks": 1, "type": "passive", "name": "Shock Pulse", "spellId": 453852, "icon": "spell_priest_pathofdevout", "index": 100}, {"id": 125083, "definitionId": 129915, "maxRanks": 1, "type": "passive", "name": "Incessant Screams", "spellId": 453918, "icon": "spell_shadow_psychicscream", "index": 200}]}, {"id": 94680, "name": "Word of Supremacy / Heightened Alteration", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94676], "prev": [94681], "entries": [{"id": 117283, "definitionId": 122295, "maxRanks": 1, "type": "passive", "name": "Word of Supremacy", "spellId": 453726, "icon": "spell_holy_wordfortitude", "index": 100}, {"id": 125084, "definitionId": 129916, "maxRanks": 1, "type": "passive", "name": "Heightened Alteration", "spellId": 453729, "icon": "inv_enchant_essenceeternallarge", "index": 200}]}, {"id": 94688, "name": "Empowered Surges", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94685], "prev": [94699], "entries": [{"id": 117291, "definitionId": 122303, "maxRanks": 1, "type": "passive", "name": "Empowered Surges", "spellId": 453799, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 94690, "name": "Prophet's Will / Desperate Measures", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94691], "entries": [{"id": 117293, "definitionId": 122305, "maxRanks": 1, "type": "passive", "name": "Prophet's Will", "spellId": 433905, "icon": "ability_priest_clarityofpurpose", "index": 100}, {"id": 126068, "definitionId": 130900, "maxRanks": 1, "type": "passive", "name": "Desperate Measures", "spellId": 458718, "icon": "spell_holy_testoffaith", "index": 200}]}, {"id": 94673, "name": "Divine Providence", "type": "single", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94675], "entries": [{"id": 117276, "definitionId": 122288, "maxRanks": 1, "type": "passive", "name": "Divine Providence", "spellId": 440742, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 94700, "name": "Fatebender / Perfect Vision", "type": "choice", "posX": 9000, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94689], "entries": [{"id": 117303, "definitionId": 122315, "maxRanks": 1, "type": "passive", "name": "Fatebender", "spellId": 440743, "icon": "ability_priest_voidshift", "index": 100}, {"id": 119330, "definitionId": 124230, "maxRanks": 1, "type": "passive", "name": "Perfect Vision", "spellId": 440661, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 94678, "name": "Energy Compression / Sustained Potency", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94702], "prev": [94686], "entries": [{"id": 117281, "definitionId": 122293, "maxRanks": 1, "type": "passive", "name": "Energy Compression", "spellId": 449874, "icon": "spell_holy_circleofrenewal", "index": 100}, {"id": 125085, "definitionId": 129917, "maxRanks": 1, "type": "passive", "name": "Sustained Potency", "spellId": 454001, "icon": "ability_priest_ascension", "index": 200}]}, {"id": 94676, "name": "Concentrated Infusion", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 82694, "next": [94702], "prev": [94680], "entries": [{"id": 117279, "definitionId": 122291, "maxRanks": 1, "type": "passive", "name": "Concentrated Infusion", "spellId": 453844, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 94685, "name": "Energy Cycle", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "next": [94702], "prev": [94688], "entries": [{"id": 117288, "definitionId": 122300, "maxRanks": 1, "type": "passive", "name": "Energy Cycle", "spellId": 453828, "icon": "ability_priest_voidshift", "index": 100}]}, {"id": 94687, "name": "Clairvoyance", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 20, "next": [], "prev": [94700, 94673, 94690], "entries": [{"id": 117290, "definitionId": 122302, "maxRanks": 1, "type": "passive", "name": "Clairvoyance", "spellId": 428940, "icon": "inv_inscription_vantusrune_progenitor", "index": 100}]}, {"id": 94702, "name": "Divine Halo", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [], "prev": [94678, 94685, 94676], "entries": [{"id": 117305, "definitionId": 122317, "maxRanks": 1, "type": "passive", "name": "Divine Halo", "spellId": 449806, "icon": "inv_ability_holyfire_nova", "index": 100}]}], "subTreeNodes": [{"id": 99802, "name": "Oracle / Archon", "type": "subtree", "posX": 7500, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123292, "type": "subtree", "name": "Oracle", "traitSubTreeId": 20, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-oracle", "nodes": [94683, 94698, 94674, 94679, 94691, 94675, 94689, 94690, 94673, 94700, 94687]}, {"id": 123291, "type": "subtree", "name": "Archon", "traitSubTreeId": 19, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-archon", "nodes": [94697, 94677, 94681, 94699, 94686, 94680, 94688, 94678, 94676, 94685, 94702]}]}], "fullNodeOrder": [82552, 82553, 82554, 82555, 82556, 82557, 82558, 82559, 82560, 82561, 82563, 82564, 82566, 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, 82647, 82648, 82649, 82651, 82652, 82653, 82654, 82655, 82656, 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82665, 82666, 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, 82687, 82688, 82689, 82690, 82691, 82692, 82693, 82694, 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, 82715, 82716, 82717, 82718, 82719, 82720, 82721, 86730, 92225, 93170, 93171, 93172, 94668, 94669, 94670, 94673, 94674, 94675, 94676, 94677, 94678, 94679, 94680, 94681, 94683, 94684, 94685, 94686, 94687, 94688, 94689, 94690, 94691, 94692, 94693, 94694, 94695, 94696, 94697, 94698, 94699, 94700, 94702, 94703, 99800, 99801, 99802, 100212]}, {"traitTreeId": 795, "className": "Priest", "classId": 5, "specName": "Shadow", "specId": 258, "classNodes": [{"id": 82717, "name": "Renew", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82718, 82714], "prev": [], "entries": [{"id": 103869, "definitionId": 108874, "maxRanks": 1, "type": "active", "name": "Renew", "spellId": 139, "icon": "spell_holy_renew", "index": 100}]}, {"id": 82715, "name": "Dispel Magic", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82714, 82704, 82695], "prev": [], "entries": [{"id": 103867, "definitionId": 108872, "maxRanks": 1, "type": "active", "name": "Dispel Magic", "spellId": 528, "icon": "spell_nature_nullifydisease", "index": 100}]}, {"id": 82713, "name": "Shadowfiend", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82695, 82712], "prev": [], "entries": [{"id": 103865, "definitionId": 108870, "maxRanks": 1, "type": "active", "name": "Shadowfiend", "spellId": 34433, "icon": "spell_shadow_shadowfiend", "index": 100}], "freeNode": true}, {"id": 82718, "name": "Prayer of Mending", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82719, 82701, 82720], "prev": [82717], "entries": [{"id": 103870, "definitionId": 108875, "maxRanks": 1, "type": "active", "name": "Prayer of Mending", "spellId": 33076, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 82714, "name": "Improved Flash Heal", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82701, 82707, 82703], "prev": [82715, 82717], "entries": [{"id": 103866, "definitionId": 108871, "maxRanks": 1, "type": "passive", "name": "Improved Flash Heal", "spellId": 393870, "icon": "spell_holy_heal", "index": 100}]}, {"id": 82704, "name": "Purify Disease", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [82703], "prev": [82715], "entries": [{"id": 103854, "definitionId": 108859, "maxRanks": 1, "type": "active", "name": "Purify Disease", "spellId": 213634, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 82695, "name": "Psychic Voice / Petrifying Scream", "type": "choice", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82703, 82556], "prev": [82715, 82713], "entries": [{"id": 103845, "definitionId": 108850, "maxRanks": 1, "type": "passive", "name": "Psychic Voice", "spellId": 196704, "icon": "ability_warrior_commandingshout", "index": 100}, {"id": 114588, "definitionId": 119593, "maxRanks": 1, "type": "passive", "name": "Petrifying Scream", "spellId": 55676, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82712, "name": "Shadow Word: Death", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [82556, 82711], "prev": [82713], "entries": [{"id": 103864, "definitionId": 108869, "maxRanks": 1, "type": "active", "name": "Shadow Word: Death", "spellId": 32379, "icon": "spell_shadow_demonicfortitude", "index": 100}], "freeNode": true}, {"id": 82719, "name": "Focused Mending", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82720], "prev": [82718], "entries": [{"id": 103871, "definitionId": 108876, "maxRanks": 1, "type": "passive", "name": "Focused Mending", "spellId": 372354, "icon": "achievement_bg_returnxflags_def_wsg", "index": 100}]}, {"id": 82701, "name": "Holy Nova", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82720, 82700, 82716], "prev": [82714, 82718], "entries": [{"id": 103851, "definitionId": 108856, "maxRanks": 1, "type": "active", "name": "Holy Nova", "spellId": 132157, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82707, "name": "Protective Light / From Darkness Comes Light", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82716], "prev": [82714], "entries": [{"id": 103858, "definitionId": 108863, "maxRanks": 1, "type": "passive", "name": "Protective Light", "spellId": 193063, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 103857, "definitionId": 108862, "maxRanks": 1, "type": "passive", "name": "From Darkness Comes Light", "spellId": 390615, "icon": "spell_holy_flashheal", "index": 200}]}, {"id": 82703, "name": "Angelic Feather", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82716, 82693, 82708], "prev": [82714, 82695, 82704], "entries": [{"id": 103853, "definitionId": 108858, "maxRanks": 1, "type": "active", "name": "Angelic Feather", "spellId": 121536, "icon": "ability_priest_angelicfeather", "index": 0}]}, {"id": 82556, "name": "Phantasm", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82708, 82710], "prev": [82695, 82712], "entries": [{"id": 103834, "definitionId": 108839, "maxRanks": 1, "type": "passive", "name": "Phantasm", "spellId": 108942, "icon": "ability_priest_phantasm", "index": 100}]}, {"id": 82711, "name": "Death and Madness", "type": "single", "posX": 6900, "posY": 2700, "maxRanks": 1, "next": [82710, 82688], "prev": [82712], "entries": [{"id": 103863, "definitionId": 108868, "maxRanks": 1, "type": "passive", "name": "Death and Madness", "spellId": 321291, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82720, "name": "Spell Warding / Blessed Recovery", "type": "choice", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [82721, 82699, 82696], "prev": [82718, 82701, 82719], "entries": [{"id": 103872, "definitionId": 108877, "maxRanks": 1, "type": "passive", "name": "Spell Warding", "spellId": 390667, "icon": "spell_holy_spellwarding", "index": 100}, {"id": 103677, "definitionId": 108682, "maxRanks": 1, "type": "passive", "name": "Blessed Recovery", "spellId": 390767, "icon": "spell_holy_blessedrecovery", "index": 200}]}, {"id": 82700, "name": "Rhapsody", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [82699], "prev": [82701], "entries": [{"id": 103850, "definitionId": 108855, "maxRanks": 1, "type": "passive", "name": "Rhapsody", "spellId": 390622, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82716, "name": "Leap of Faith", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [82699, 82702, 82694], "prev": [82703, 82701, 82707], "entries": [{"id": 103868, "definitionId": 108873, "maxRanks": 1, "type": "active", "name": "Leap of Faith", "spellId": 73325, "icon": "priest_spell_leapoffaith_a", "index": 100}]}, {"id": 82693, "name": "Shackle Undead", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [82694], "prev": [82703], "entries": [{"id": 103843, "definitionId": 108848, "maxRanks": 1, "type": "active", "name": "Shackle Undead", "spellId": 9484, "icon": "spell_nature_slow", "index": 100}]}, {"id": 82708, "name": "Sheer Terror / Void Tendrils", "type": "choice", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [82694, 82691], "prev": [82703, 82556], "entries": [{"id": 103860, "definitionId": 108865, "maxRanks": 1, "type": "passive", "name": "Sheer Terror", "spellId": 390919, "icon": "spell_nzinsanity_fearofdeath", "index": 100}, {"id": 103859, "definitionId": 108864, "maxRanks": 1, "type": "active", "name": "Void Tendrils", "spellId": 108920, "icon": "spell_priest_voidtendrils", "index": 200}]}, {"id": 82710, "name": "Mind Control / Dominate Mind", "type": "choice", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [82691, 82689], "prev": [82556, 82711], "entries": [{"id": 103862, "definitionId": 108867, "maxRanks": 1, "type": "active", "name": "Mind Control", "spellId": 605, "icon": "spell_shadow_shadowworddominate", "index": 100}, {"id": 103678, "definitionId": 108683, "maxRanks": 1, "type": "active", "name": "Dominate Mind", "spellId": 205364, "icon": "spell_priest_void_flay", "index": 200}]}, {"id": 82721, "name": "Words of the Pious", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696], "prev": [82720], "entries": [{"id": 103873, "definitionId": 108878, "maxRanks": 1, "type": "passive", "name": "Words of the Pious", "spellId": 377438, "icon": "ability_priest_clarityofwill", "index": 200}]}, {"id": 82699, "name": "Mass Dispel", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696, 82698, 82706], "prev": [82716, 82720, 82700], "entries": [{"id": 103849, "definitionId": 108854, "maxRanks": 1, "type": "active", "name": "Mass Dispel", "spellId": 32375, "icon": "spell_arcane_massdispel", "index": 100}]}, {"id": 82702, "name": "Move with Grace", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706], "prev": [82716], "entries": [{"id": 103852, "definitionId": 108857, "maxRanks": 1, "type": "passive", "name": "Move with Grace", "spellId": 390620, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82694, "name": "Power Infusion", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706, 82683, 82692], "prev": [82716, 82693, 82708], "entries": [{"id": 103844, "definitionId": 108849, "maxRanks": 1, "type": "active", "name": "Power Infusion", "spellId": 10060, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 82691, "name": "Sanguine Teachings / Vampiric Embrace", "type": "choice", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82692, 82690, 82689], "prev": [82710, 82708], "entries": [{"id": 114735, "definitionId": 108846, "maxRanks": 1, "type": "passive", "name": "Sanguine Teachings", "spellId": 373218, "icon": "inv_archaeology_80_zandalari_sanguinetotem", "index": 100}, {"id": 103841, "definitionId": 119742, "maxRanks": 1, "type": "active", "name": "Vampiric Embrace", "spellId": 15286, "icon": "spell_shadow_unsummonbuilding", "index": 200}]}, {"id": 82688, "name": "Tithe Evasion", "type": "single", "posX": 6900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82689], "prev": [82711], "entries": [{"id": 103838, "definitionId": 108843, "maxRanks": 1, "type": "passive", "name": "Tithe Evasion", "spellId": 373223, "icon": "spell_nzinsanity_bloodthirst", "index": 100}]}, {"id": 82696, "name": "Inspiration", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82721, 82699, 82720], "entries": [{"id": 103846, "definitionId": 108851, "maxRanks": 1, "type": "passive", "name": "Inspiration", "spellId": 390676, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 82698, "name": "Mental Agility", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82699], "entries": [{"id": 103848, "definitionId": 108853, "maxRanks": 1, "type": "passive", "name": "Mental Agility", "spellId": 341167, "icon": "spell_holy_dispelmagic", "index": 100}]}, {"id": 82706, "name": "Body and Soul", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697, 82684], "prev": [82694, 82699, 82702], "entries": [{"id": 103856, "definitionId": 108861, "maxRanks": 1, "type": "passive", "name": "Body and Soul", "spellId": 64129, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82683, "name": "Twins of the Sun Priestess", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684], "prev": [82694], "entries": [{"id": 103832, "definitionId": 108837, "maxRanks": 1, "type": "passive", "name": "Twins of the Sun Priestess", "spellId": 373466, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82692, "name": "Void Shield", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684, 82709], "prev": [82691, 82694], "entries": [{"id": 103842, "definitionId": 108847, "maxRanks": 1, "type": "passive", "name": "Void Shield", "spellId": 280749, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 82690, "name": "San'layn", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82691], "entries": [{"id": 103840, "definitionId": 108845, "maxRanks": 1, "type": "passive", "name": "San'layn", "spellId": 199855, "icon": "achievement_boss_lanathel", "index": 100}]}, {"id": 82689, "name": "Apathy", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82710, 82688, 82691], "entries": [{"id": 103839, "definitionId": 108844, "maxRanks": 1, "type": "passive", "name": "Apathy", "spellId": 390668, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 82697, "name": "Unwavering Will", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82678, 82680], "prev": [82706, 82696, 82698], "entries": [{"id": 103847, "definitionId": 108852, "maxRanks": 2, "type": "passive", "name": "Unwavering Will", "spellId": 373456, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 82684, "name": "Twist of Fate", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82680, 82685], "prev": [82706, 82692, 82683], "entries": [{"id": 103833, "definitionId": 108838, "maxRanks": 2, "type": "passive", "name": "Twist of Fate", "spellId": 390972, "icon": "spell_shadow_mindtwisting", "index": 100}]}, {"id": 82709, "name": "Throes of Pain", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82685, 82687], "prev": [82692, 82690, 82689], "entries": [{"id": 103861, "definitionId": 108866, "maxRanks": 2, "type": "passive", "name": "Throes of Pain", "spellId": 377422, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 82678, "name": "Angel's Mercy / Binding Heals", "type": "choice", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82677, 82679], "prev": [82697], "entries": [{"id": 103825, "definitionId": 108830, "maxRanks": 1, "type": "passive", "name": "Angel's Mercy", "spellId": 238100, "icon": "spell_holy_testoffaith", "index": 100}, {"id": 103824, "definitionId": 108829, "maxRanks": 1, "type": "passive", "name": "Binding Heals", "spellId": 368275, "icon": "spell_holy_blindingheal", "index": 200}]}, {"id": 82680, "name": "Divine Star / Halo", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82679, 82681], "prev": [82684, 82697], "entries": [{"id": 103828, "definitionId": 108833, "maxRanks": 1, "type": "active", "name": "Divine Star", "spellId": 122121, "icon": "spell_priest_divinestar_shadow2", "index": 200}, {"id": 103827, "definitionId": 108832, "maxRanks": 1, "type": "active", "name": "Halo", "spellId": 120644, "icon": "ability_priest_halo_shadow", "index": 300}]}, {"id": 82685, "name": "Translucent Image", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82681, 82686], "prev": [82709, 82684], "entries": [{"id": 103835, "definitionId": 108840, "maxRanks": 1, "type": "passive", "name": "Translucent Image", "spellId": 373446, "icon": "spell_nature_invisibilty", "index": 100}]}, {"id": 82687, "name": "Cauterizing Shadows", "type": "single", "posX": 6300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82686, 82672], "prev": [82709], "entries": [{"id": 103837, "definitionId": 108842, "maxRanks": 1, "type": "passive", "name": "Cauterizing Shadows", "spellId": 459990, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82677, "name": "Surge of Light", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82676], "prev": [82678], "entries": [{"id": 103823, "definitionId": 108828, "maxRanks": 1, "type": "passive", "name": "Surge of Light", "spellId": 109186, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 82679, "name": "Light's Inspiration", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82676, 82675], "prev": [82678, 82680], "entries": [{"id": 103826, "definitionId": 108831, "maxRanks": 2, "type": "passive", "name": "Light's Inspiration", "spellId": 373450, "icon": "spell_holy_restoration", "index": 100}]}, {"id": 82681, "name": "Crystalline Reflection", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82675, 82674], "prev": [82680, 82685], "entries": [{"id": 103829, "definitionId": 108834, "maxRanks": 2, "type": "passive", "name": "Crystalline Reflection", "spellId": 373457, "icon": "ability_priest_reflectiveshield", "index": 100}]}, {"id": 82686, "name": "Improved Fade", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82674, 82673], "prev": [82685, 82687], "entries": [{"id": 103836, "definitionId": 108841, "maxRanks": 2, "type": "passive", "name": "Improved Fade", "spellId": 390670, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 82672, "name": "Manipulation", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82673], "prev": [82687], "entries": [{"id": 103818, "definitionId": 108823, "maxRanks": 1, "type": "passive", "name": "Manipulation", "spellId": 459985, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82676, "name": "Benevolence / Power Word: Life", "type": "choice", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82677, 82679], "entries": [{"id": 115884, "definitionId": 120896, "maxRanks": 1, "type": "passive", "name": "Benevolence", "spellId": 415416, "icon": "ability_priest_spiritoftheredeemer", "index": 100}, {"id": 103822, "definitionId": 108827, "maxRanks": 1, "type": "active", "name": "Power Word: Life", "spellId": 373481, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 82675, "name": "Angelic Bulwark", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82679, 82681], "entries": [{"id": 103821, "definitionId": 108826, "maxRanks": 1, "type": "passive", "name": "Angelic Bulwark", "spellId": 108945, "icon": "ability_priest_angelicbulwark", "index": 100}]}, {"id": 82674, "name": "Essence Devourer / Void Shift", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82681, 82686], "entries": [{"id": 115883, "definitionId": 120895, "maxRanks": 1, "type": "passive", "name": "Essence Devourer", "spellId": 415479, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}, {"id": 103820, "definitionId": 108825, "maxRanks": 1, "type": "active", "name": "Void Shift", "spellId": 108968, "icon": "spell_priest_voidshift", "index": 200}]}, {"id": 82673, "name": "Phantom Reach", "type": "single", "posX": 6300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82672, 82686], "entries": [{"id": 103819, "definitionId": 108824, "maxRanks": 1, "type": "passive", "name": "Phantom Reach", "spellId": 459559, "icon": "spell_shadow_chilltouch", "index": 100}]}], "specNodes": [{"id": 82665, "name": "Devouring Plague", "type": "single", "posX": 12900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82663, 82666, 82651], "prev": [], "entries": [{"id": 103808, "definitionId": 108813, "maxRanks": 1, "type": "active", "name": "Devouring Plague", "spellId": 335467, "icon": "spell_shadow_devouringplague", "index": 100}]}, {"id": 82663, "name": "Dispersion", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82659], "prev": [82665], "entries": [{"id": 103806, "definitionId": 108811, "maxRanks": 1, "type": "active", "name": "Dispersion", "spellId": 47585, "icon": "spell_shadow_dispersion", "index": 100}]}, {"id": 82666, "name": "Shadowy Apparitions", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93171], "prev": [82665], "entries": [{"id": 103809, "definitionId": 108814, "maxRanks": 1, "type": "passive", "name": "Shadowy Apparitions", "spellId": 341491, "icon": "ability_priest_shadowyapparition", "index": 100}]}, {"id": 82651, "name": "Silence", "type": "single", "posX": 13500, "posY": 2100, "maxRanks": 1, "next": [82652], "prev": [82665], "entries": [{"id": 103792, "definitionId": 108797, "maxRanks": 1, "type": "active", "name": "Silence", "spellId": 15487, "icon": "ability_priest_silence", "index": 100}]}, {"id": 82659, "name": "Intangibility / Mental Fortitude", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82653], "prev": [82663], "entries": [{"id": 103801, "definitionId": 108806, "maxRanks": 1, "type": "passive", "name": "Intangibility", "spellId": 288733, "icon": "spell_shadow_dispersion", "index": 200}, {"id": 103800, "definitionId": 108805, "maxRanks": 1, "type": "passive", "name": "Mental Fortitude", "spellId": 377065, "icon": "ability_priest_clarityofpower", "index": 300}]}, {"id": 93171, "name": "Misery", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82653, 82670, 82668], "prev": [82666], "entries": [{"id": 115448, "definitionId": 120460, "maxRanks": 1, "type": "passive", "name": "Misery", "spellId": 238558, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 82652, "name": "Last Word / Psychic Horror", "type": "choice", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [], "prev": [82651], "entries": [{"id": 103794, "definitionId": 108799, "maxRanks": 1, "type": "passive", "name": "Last Word", "spellId": 263716, "icon": "ability_priest_silence", "index": 100}, {"id": 103793, "definitionId": 108798, "maxRanks": 1, "type": "active", "name": "Psychic Horror", "spellId": 64044, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82653, "name": "Thought Harvester", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82669, 82661, 82657], "prev": [82659, 93171], "entries": [{"id": 103795, "definitionId": 108800, "maxRanks": 1, "type": "passive", "name": "Thought Harvester", "spellId": 406788, "icon": "spell_shadow_unholyfrenzy", "index": 100}]}, {"id": 82670, "name": "Psychic Link", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82657], "prev": [93171], "entries": [{"id": 103814, "definitionId": 108819, "maxRanks": 1, "type": "passive", "name": "Psychic Link", "spellId": 199484, "icon": "ability_priest_psychiclink", "index": 100}]}, {"id": 82668, "name": "Surge of Insanity", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82657, 82658, 82557], "prev": [93171], "entries": [{"id": 103812, "definitionId": 108817, "maxRanks": 1, "type": "passive", "name": "Surge of Insanity", "spellId": 391399, "icon": "spell_fire_twilightflamebreath", "index": 100}]}, {"id": 82669, "name": "Shadow Crash / Shadow Crash", "type": "choice", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82559, 82662], "prev": [82653], "entries": [{"id": 103813, "definitionId": 108818, "maxRanks": 1, "type": "active", "name": "Shadow Crash", "spellId": 457042, "icon": "spell_shadow_shadowfury", "index": 100}, {"id": 125983, "definitionId": 130814, "maxRanks": 1, "type": "active", "name": "Shadow Crash", "spellId": 205385, "icon": "spell_shadow_shadowfury", "index": 200}]}, {"id": 82661, "name": "Unfurling Darkness", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82662], "prev": [82653], "entries": [{"id": 103804, "definitionId": 108809, "maxRanks": 1, "type": "passive", "name": "Unfurling Darkness", "spellId": 341273, "icon": "spell_priest_shadow_mend", "index": 100}]}, {"id": 82657, "name": "Dark Ascension / Void Eruption", "type": "choice", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82662, 82656, 82646], "prev": [82653, 82668, 82670], "entries": [{"id": 103680, "definitionId": 108685, "maxRanks": 1, "type": "active", "name": "Dark Ascension", "spellId": 391109, "icon": "ability_priest_darkarchangel", "index": 200}, {"id": 103674, "definitionId": 108679, "maxRanks": 1, "type": "active", "name": "Void Eruption", "spellId": 228260, "icon": "spell_priest_void_blast", "index": 300}]}, {"id": 82658, "name": "Mental Decay", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82646], "prev": [82668], "entries": [{"id": 103799, "definitionId": 108804, "maxRanks": 1, "type": "passive", "name": "Mental Decay", "spellId": 375994, "icon": "ability_kaztik_dominatemind", "index": 100}]}, {"id": 82557, "name": "Mind Spike", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82646, 93172], "prev": [82668], "entries": [{"id": 103803, "definitionId": 108808, "maxRanks": 1, "type": "active", "name": "Mind Spike", "spellId": 73510, "icon": "spell_priest_mindspike", "index": 100}]}, {"id": 82559, "name": "Whispering Shadows", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82645, 82648], "prev": [82669], "entries": [{"id": 103682, "definitionId": 108687, "maxRanks": 1, "type": "passive", "name": "Whispering Shadows", "spellId": 406777, "icon": "spell_shadow_shadowfury", "index": 100}]}, {"id": 82662, "name": "Shadowy Insight", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82645, 82660], "prev": [82657, 82661, 82669], "entries": [{"id": 103805, "definitionId": 108810, "maxRanks": 1, "type": "passive", "name": "Shadowy Insight", "spellId": 375888, "icon": "spell_shadow_possession", "index": 100}]}, {"id": 82656, "name": "Ancient Madness", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82660, 82561, 82563], "prev": [82657], "entries": [{"id": 103798, "definitionId": 108803, "maxRanks": 1, "type": "passive", "name": "Ancient Madness", "spellId": 341240, "icon": "spell_priest_void_flay", "index": 100}]}, {"id": 82646, "name": "Voidtouched", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82563, 82647], "prev": [82557, 82657, 82658], "entries": [{"id": 103785, "definitionId": 108790, "maxRanks": 1, "type": "passive", "name": "Voidtouched", "spellId": 407430, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 93172, "name": "Mind Melt", "type": "single", "posX": 14700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82647, 82654], "prev": [82557], "entries": [{"id": 115449, "definitionId": 120461, "maxRanks": 1, "type": "passive", "name": "Mind Melt", "spellId": 391090, "icon": "spell_shadow_skull", "index": 100}]}, {"id": 82645, "name": "Maddening Touch", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82648, 82558], "prev": [82662, 82559], "entries": [{"id": 103784, "definitionId": 108789, "maxRanks": 2, "type": "passive", "name": "Maddening Touch", "spellId": 391228, "icon": "spell_holy_stoicism", "index": 100}]}, {"id": 82660, "name": "Dark Evangelism", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82558], "prev": [82662, 82656], "entries": [{"id": 103802, "definitionId": 108807, "maxRanks": 2, "type": "passive", "name": "Dark Evangelism", "spellId": 391095, "icon": "spell_mage_presenceofmind", "index": 100}]}, {"id": 82561, "name": "Mind Devourer", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82558, 82667], "prev": [82656], "entries": [{"id": 103684, "definitionId": 108689, "maxRanks": 2, "type": "passive", "name": "Mind Devourer", "spellId": 373202, "icon": "spell_arcane_mindmastery", "index": 100}]}, {"id": 82563, "name": "Phantasmal Pathogen", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82667], "prev": [82646, 82656], "entries": [{"id": 103686, "definitionId": 108691, "maxRanks": 2, "type": "passive", "name": "Phantasmal Pathogen", "spellId": 407469, "icon": "spell_shadow_shadetruesight", "index": 100}]}, {"id": 82647, "name": "Mind's Eye / Distorted Reality", "type": "choice", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82667, 82654], "prev": [93172, 82646], "entries": [{"id": 103786, "definitionId": 108791, "maxRanks": 1, "type": "passive", "name": "Mind's Eye", "spellId": 407470, "icon": "spell_shadow_devouringplague", "index": 100}, {"id": 115671, "definitionId": 120683, "maxRanks": 1, "type": "passive", "name": "Distorted Reality", "spellId": 409044, "icon": "spell_shadow_gathershadows", "index": 200}]}, {"id": 82648, "name": "Mindbender", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82644, 82671], "prev": [82645, 82559], "entries": [{"id": 103788, "definitionId": 108793, "maxRanks": 1, "type": "active", "name": "Mindbender", "spellId": 200174, "icon": "spell_shadow_soulleech_3", "index": 100}]}, {"id": 82558, "name": "Deathspeaker", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82671, 82649], "prev": [82645, 82660, 82561], "entries": [{"id": 103681, "definitionId": 108686, "maxRanks": 1, "type": "passive", "name": "Deathspeaker", "spellId": 392507, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82667, "name": "Auspicious Spirits", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82649, 93170, 82560], "prev": [82561, 82563, 82647], "entries": [{"id": 103811, "definitionId": 108816, "maxRanks": 1, "type": "passive", "name": "Auspicious Spirits", "spellId": 155271, "icon": "ability_priest_auspiciousspirits", "index": 300}]}, {"id": 82654, "name": "Void Torrent", "type": "single", "posX": 14700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82560, 82655], "prev": [93172, 82647], "entries": [{"id": 103796, "definitionId": 108801, "maxRanks": 1, "type": "active", "name": "Void Torrent", "spellId": 263165, "icon": "spell_priest_voidsear", "index": 100}]}, {"id": 82644, "name": "Inescapable Torment", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82553], "prev": [82648], "entries": [{"id": 103783, "definitionId": 108788, "maxRanks": 1, "type": "passive", "name": "Inescapable Torment", "spellId": 373427, "icon": "spell_shadow_chilltouch", "index": 100}]}, {"id": 82671, "name": "Mastermind", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82552], "prev": [82558, 82648], "entries": [{"id": 103816, "definitionId": 108821, "maxRanks": 2, "type": "passive", "name": "Mastermind", "spellId": 391151, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82649, "name": "Screams of the Void", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82552], "prev": [82558, 82667], "entries": [{"id": 103789, "definitionId": 108794, "maxRanks": 2, "type": "passive", "name": "Screams of the Void", "spellId": 375767, "icon": "spell_shadow_lifedrain02_purple", "index": 100}]}, {"id": 93170, "name": "Tormented Spirits", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82555], "prev": [82667], "entries": [{"id": 103810, "definitionId": 108815, "maxRanks": 2, "type": "passive", "name": "Tormented Spirits", "spellId": 391284, "icon": "spell_shadow_painandsuffering", "index": 100}]}, {"id": 82560, "name": "Insidious Ire", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82643], "prev": [82654, 82667], "entries": [{"id": 103683, "definitionId": 108688, "maxRanks": 2, "type": "passive", "name": "Insidious Ire", "spellId": 373212, "icon": "spell_fire_twilightcano", "index": 100}]}, {"id": 82655, "name": "Malediction", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82643], "prev": [82654], "entries": [{"id": 103797, "definitionId": 108802, "maxRanks": 1, "type": "passive", "name": "Malediction", "spellId": 373221, "icon": "spell_shadow_deathsembrace", "index": 100}]}, {"id": 82553, "name": "Idol of Y'Shaarj", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82644], "entries": [{"id": 103787, "definitionId": 108792, "maxRanks": 1, "type": "passive", "name": "Idol of Y'Shaarj", "spellId": 373310, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}]}, {"id": 82552, "name": "Idol of N'Zoth", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82671, 82649], "entries": [{"id": 103781, "definitionId": 108786, "maxRanks": 1, "type": "passive", "name": "Idol of N'Zoth", "spellId": 373280, "icon": "achievement_nzothraid_nzoth", "index": 100}]}, {"id": 82555, "name": "Idol of Yogg-Saron", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93170], "entries": [{"id": 103817, "definitionId": 108822, "maxRanks": 1, "type": "passive", "name": "Idol of Yogg-Saron", "spellId": 373273, "icon": "achievement_boss_heraldvolazj", "index": 100}]}, {"id": 82643, "name": "Idol of C'Thun", "type": "single", "posX": 14700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82560, 82655], "entries": [{"id": 103782, "definitionId": 108787, "maxRanks": 1, "type": "passive", "name": "Idol of C'Thun", "spellId": 377349, "icon": "achievement_boss_cthun", "index": 100}]}], "heroNodes": [{"id": 94697, "name": "Power Surge", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 19, "requiresNode": 0, "next": [94677, 94681, 94699], "prev": [], "entries": [{"id": 117300, "definitionId": 122312, "maxRanks": 1, "type": "passive", "name": "Power Surge", "spellId": 453109, "icon": "inv_ability_holyfire_groundstate", "index": 100}], "freeNode": true}, {"id": 94677, "name": "Perfected Form", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "next": [94686], "prev": [94697], "entries": [{"id": 117280, "definitionId": 122292, "maxRanks": 1, "type": "passive", "name": "Perfected Form", "spellId": 453917, "icon": "inv_ability_holyfire_buff", "index": 100}]}, {"id": 94681, "name": "Resonant Energy", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94680], "prev": [94697], "entries": [{"id": 117284, "definitionId": 122296, "maxRanks": 1, "type": "passive", "name": "Resonant Energy", "spellId": 453845, "icon": "ability_priest_halo", "index": 100}]}, {"id": 94699, "name": "Manifested Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94688], "prev": [94697], "entries": [{"id": 117302, "definitionId": 122314, "maxRanks": 1, "type": "passive", "name": "Manifested Power", "spellId": 453783, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 94686, "name": "Shock Pulse / Incessant Screams", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94678], "prev": [94677], "entries": [{"id": 117289, "definitionId": 122301, "maxRanks": 1, "type": "passive", "name": "Shock Pulse", "spellId": 453852, "icon": "spell_priest_pathofdevout", "index": 100}, {"id": 125083, "definitionId": 129915, "maxRanks": 1, "type": "passive", "name": "Incessant Screams", "spellId": 453918, "icon": "spell_shadow_psychicscream", "index": 200}]}, {"id": 94680, "name": "Word of Supremacy / Heightened Alteration", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94676], "prev": [94681], "entries": [{"id": 117283, "definitionId": 122295, "maxRanks": 1, "type": "passive", "name": "Word of Supremacy", "spellId": 453726, "icon": "spell_holy_wordfortitude", "index": 100}, {"id": 125084, "definitionId": 129916, "maxRanks": 1, "type": "passive", "name": "Heightened Alteration", "spellId": 453729, "icon": "inv_enchant_essenceeternallarge", "index": 200}]}, {"id": 94688, "name": "Empowered Surges", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94685], "prev": [94699], "entries": [{"id": 117291, "definitionId": 122303, "maxRanks": 1, "type": "passive", "name": "Empowered Surges", "spellId": 453799, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 94678, "name": "Energy Compression / Sustained Potency", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94702], "prev": [94686], "entries": [{"id": 117281, "definitionId": 122293, "maxRanks": 1, "type": "passive", "name": "Energy Compression", "spellId": 449874, "icon": "spell_holy_circleofrenewal", "index": 100}, {"id": 125085, "definitionId": 129917, "maxRanks": 1, "type": "passive", "name": "Sustained Potency", "spellId": 454001, "icon": "ability_priest_ascension", "index": 200}]}, {"id": 94676, "name": "Concentrated Infusion", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 82694, "next": [94702], "prev": [94680], "entries": [{"id": 117279, "definitionId": 122291, "maxRanks": 1, "type": "passive", "name": "Concentrated Infusion", "spellId": 453844, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 94685, "name": "Energy Cycle", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "next": [94702], "prev": [94688], "entries": [{"id": 117288, "definitionId": 122300, "maxRanks": 1, "type": "passive", "name": "Energy Cycle", "spellId": 453828, "icon": "ability_priest_voidshift", "index": 100}]}, {"id": 94702, "name": "Divine Halo", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [], "prev": [94678, 94685, 94676], "entries": [{"id": 117305, "definitionId": 122317, "maxRanks": 1, "type": "passive", "name": "Divine Halo", "spellId": 449806, "icon": "inv_ability_holyfire_nova", "index": 100}]}, {"id": 94684, "name": "Entropic Rift", "type": "single", "posX": 8400, "posY": 4500, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "subTreeId": 18, "requiresNode": 82654, "next": [94693, 94703, 94670], "prev": [], "entries": [{"id": 117287, "definitionId": 122299, "maxRanks": 1, "type": "passive", "name": "Entropic Rift", "spellId": 447444, "icon": "inv_ability_voidweaverpriest_entropicrift", "index": 100}], "freeNode": true}, {"id": 94693, "name": "No Escape / Dark Energy", "type": "choice", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94668], "prev": [94684], "entries": [{"id": 117296, "definitionId": 122308, "maxRanks": 1, "type": "passive", "name": "No Escape", "spellId": 451204, "icon": "spell_fire_twilighthellfire", "index": 100}, {"id": 123845, "definitionId": 128683, "maxRanks": 1, "type": "passive", "name": "Dark Energy", "spellId": 451018, "icon": "achievement_boss_triumvirate_darknaaru", "index": 200}]}, {"id": 94703, "name": "Void Blast", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94695], "prev": [94684], "entries": [{"id": 117306, "definitionId": 122318, "maxRanks": 1, "type": "active", "name": "Void Blast", "spellId": 450405, "icon": "inv_cosmicvoid_missile", "index": 100}]}, {"id": 94670, "name": "Inner Quietus", "type": "single", "posX": 9000, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "next": [100212], "prev": [94684], "entries": [{"id": 117273, "definitionId": 122285, "maxRanks": 1, "type": "passive", "name": "Inner Quietus", "spellId": 448278, "icon": "inv_cosmicvoid_buff", "index": 100}]}, {"id": 94668, "name": "Devour Matter / Darkening Horizon", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94692], "prev": [94693], "entries": [{"id": 117271, "definitionId": 122283, "maxRanks": 1, "type": "passive", "name": "Devour Matter", "spellId": 451840, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 117298, "definitionId": 122310, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 94695, "name": "Void Empowerment / Darkening Horizon", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94669], "prev": [94703], "entries": [{"id": 125821, "definitionId": 128681, "maxRanks": 1, "type": "passive", "name": "Void Empowerment", "spellId": 450138, "icon": "inv_cosmicvoid_nova", "index": 100}, {"id": 125982, "definitionId": 130813, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 100212, "name": "Depth of Shadows / Voidwraith", "type": "choice", "posX": 9000, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94696], "prev": [94670], "entries": [{"id": 123842, "definitionId": 128680, "maxRanks": 1, "type": "passive", "name": "Depth of Shadows", "spellId": 451308, "icon": "warlock_summon__voidlord", "index": 100}, {"id": 123841, "definitionId": 128679, "maxRanks": 1, "type": "passive", "name": "Voidwraith", "spellId": 451234, "icon": "warlock_curse_shadow", "index": 200}]}, {"id": 94692, "name": "Voidheart", "type": "single", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94668], "entries": [{"id": 117295, "definitionId": 122307, "maxRanks": 1, "type": "passive", "name": "Voidheart", "spellId": 449880, "icon": "inv_cosmicvoid_orb", "index": 100}]}, {"id": 94669, "name": "Void Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94695], "entries": [{"id": 117272, "definitionId": 122284, "maxRanks": 1, "type": "passive", "name": "Void Infusion", "spellId": 450612, "icon": "inv_misc_volatileshadow", "index": 100}]}, {"id": 94696, "name": "Void Leech / Embrace the Shadow", "type": "choice", "posX": 9000, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "next": [94694], "prev": [100212], "entries": [{"id": 117299, "definitionId": 122311, "maxRanks": 1, "type": "passive", "name": "Void Leech", "spellId": 451311, "icon": "spell_shadow_soulleech_2", "index": 100}, {"id": 123844, "definitionId": 128682, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadow", "spellId": 451569, "icon": "spell_shadow_shadesofdarkness", "index": 200}]}, {"id": 94694, "name": "Collapsing Void", "type": "single", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [], "prev": [94669, 94692, 94696], "entries": [{"id": 117297, "definitionId": 122309, "maxRanks": 1, "type": "passive", "name": "Collapsing Void", "spellId": 448403, "icon": "inv_cosmicvoid_groundsate", "index": 100}]}], "subTreeNodes": [{"id": 99800, "name": "Archon / Voidweaver", "type": "subtree", "posX": 9300, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123289, "type": "subtree", "name": "Archon", "traitSubTreeId": 19, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-archon", "nodes": [94697, 94677, 94681, 94699, 94686, 94680, 94688, 94678, 94676, 94685, 94702]}, {"id": 123287, "type": "subtree", "name": "Voidweaver", "traitSubTreeId": 18, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-voidweaver", "nodes": [94684, 94693, 94703, 94670, 94668, 94695, 100212, 94692, 94669, 94696, 94694]}]}], "fullNodeOrder": [82552, 82553, 82554, 82555, 82556, 82557, 82558, 82559, 82560, 82561, 82563, 82564, 82566, 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, 82647, 82648, 82649, 82651, 82652, 82653, 82654, 82655, 82656, 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82665, 82666, 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, 82687, 82688, 82689, 82690, 82691, 82692, 82693, 82694, 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, 82715, 82716, 82717, 82718, 82719, 82720, 82721, 86730, 92225, 93170, 93171, 93172, 94668, 94669, 94670, 94673, 94674, 94675, 94676, 94677, 94678, 94679, 94680, 94681, 94683, 94684, 94685, 94686, 94687, 94688, 94689, 94690, 94691, 94692, 94693, 94694, 94695, 94696, 94697, 94698, 94699, 94700, 94702, 94703, 99800, 99801, 99802, 100212]}, {"traitTreeId": 750, "className": "Death Knight", "classId": 6, "specName": "Blood", "specId": 250, "classNodes": [{"id": 76081, "name": "Icebound Fortitude", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76045], "prev": [], "entries": [{"id": 96210, "definitionId": 101212, "maxRanks": 1, "type": "active", "name": "Icebound Fortitude", "spellId": 48792, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 76071, "name": "Death Strike", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76067], "prev": [], "entries": [{"id": 96200, "definitionId": 101202, "maxRanks": 1, "type": "active", "name": "Death Strike", "spellId": 49998, "icon": "spell_deathknight_butcher2", "index": 100}], "freeNode": true}, {"id": 76072, "name": "Raise Dead", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76073], "prev": [], "entries": [{"id": 96201, "definitionId": 101203, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46585, "icon": "inv_pet_ghoul", "index": 100}]}, {"id": 76045, "name": "Runic Attenuation", "type": "single", "posX": 3000, "posY": 1800, "maxRanks": 1, "next": [76084, 76044, 76046], "prev": [76081], "entries": [{"id": 96173, "definitionId": 101175, "maxRanks": 1, "type": "passive", "name": "Runic Attenuation", "spellId": 207104, "icon": "boss_odunrunes_blue", "index": 100}]}, {"id": 76067, "name": "Improved Death Strike", "type": "single", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [76046, 76074, 76069], "prev": [76071], "entries": [{"id": 96196, "definitionId": 101198, "maxRanks": 1, "type": "passive", "name": "Improved Death Strike", "spellId": 374277, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76073, "name": "Cleaving Strikes", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [76069, 76059, 76060], "prev": [76072], "entries": [{"id": 96202, "definitionId": 101204, "maxRanks": 1, "type": "passive", "name": "Cleaving Strikes", "spellId": 316916, "icon": "spell_shadow_deathanddecay", "index": 100}]}, {"id": 76084, "name": "Mind Freeze", "type": "single", "posX": 2400, "posY": 2400, "maxRanks": 1, "next": [76083, 101708], "prev": [76045], "entries": [{"id": 96213, "definitionId": 101215, "maxRanks": 1, "type": "active", "name": "Mind Freeze", "spellId": 47528, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 76044, "name": "Blinding Sleet", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [101708], "prev": [76045], "entries": [{"id": 96172, "definitionId": 101174, "maxRanks": 1, "type": "active", "name": "Blinding Sleet", "spellId": 207167, "icon": "spell_frost_chillingblast", "index": 100}]}, {"id": 76046, "name": "Anti-Magic Barrier", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [101708, 76066, 76068], "prev": [76045, 76067], "entries": [{"id": 96174, "definitionId": 101176, "maxRanks": 1, "type": "passive", "name": "Anti-Magic Barrier", "spellId": 205727, "icon": "spell_shadow_antimagicshell", "index": 100}]}, {"id": 76074, "name": "March of Darkness", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [76068], "prev": [76067], "entries": [{"id": 96203, "definitionId": 101205, "maxRanks": 1, "type": "passive", "name": "March of Darkness", "spellId": 391546, "icon": "ability_argus_deathfog", "index": 100}]}, {"id": 76069, "name": "Unholy Ground", "type": "single", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [76068, 76075, 76061], "prev": [76073, 76067], "entries": [{"id": 96198, "definitionId": 101200, "maxRanks": 1, "type": "passive", "name": "Unholy Ground", "spellId": 374265, "icon": "ability_deathknight_desecratedground", "index": 100}]}, {"id": 76059, "name": "Control Undead", "type": "single", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [76061], "prev": [76073], "entries": [{"id": 96188, "definitionId": 101190, "maxRanks": 1, "type": "active", "name": "Control Undead", "spellId": 111673, "icon": "inv_misc_bone_skull_01", "index": 100}]}, {"id": 76060, "name": "Enfeeble / Sacrificial Pact", "type": "choice", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [76061, 102006], "prev": [76073], "entries": [{"id": 96189, "definitionId": 101191, "maxRanks": 1, "type": "passive", "name": "Enfeeble", "spellId": 392566, "icon": "ability_creature_poison_01", "index": 100}, {"id": 125608, "definitionId": 130440, "maxRanks": 1, "type": "active", "name": "Sacrificial Pact", "spellId": 327574, "icon": "spell_shadow_corpseexplode", "index": 200}]}, {"id": 76083, "name": "Coldthirst", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084], "entries": [{"id": 96212, "definitionId": 101214, "maxRanks": 1, "type": "passive", "name": "Coldthirst", "spellId": 378848, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 101708, "name": "Proliferating Chill", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084, 76046, 76044], "entries": [{"id": 125606, "definitionId": 130438, "maxRanks": 1, "type": "passive", "name": "Proliferating Chill", "spellId": 373930, "icon": "spell_frost_chainsofice", "index": 100}]}, {"id": 76066, "name": "Permafrost", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [76085, 76065], "prev": [76046], "entries": [{"id": 96195, "definitionId": 101197, "maxRanks": 1, "type": "passive", "name": "Permafrost", "spellId": 207200, "icon": "achievement_zone_frostfire", "index": 100}]}, {"id": 76068, "name": "Veteran of the Third War", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [76065], "prev": [76069, 76046, 76074], "entries": [{"id": 96197, "definitionId": 101199, "maxRanks": 1, "type": "passive", "name": "Veteran of the Third War", "spellId": 48263, "icon": "spell_misc_warsongfocus", "index": 100}]}, {"id": 76075, "name": "Death Pact", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [76065, 76076], "prev": [76069], "entries": [{"id": 96204, "definitionId": 101206, "maxRanks": 1, "type": "active", "name": "Death Pact", "spellId": 48743, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 76061, "name": "Brittle", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [76076], "prev": [76060, 76069, 76059], "entries": [{"id": 96190, "definitionId": 101192, "maxRanks": 1, "type": "passive", "name": "Brittle", "spellId": 374504, "icon": "ability_bosskilrogg_deaththroes", "index": 100}]}, {"id": 102006, "name": "Death's Reach", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [76076, 76063], "prev": [76060], "entries": [{"id": 126014, "definitionId": 130845, "maxRanks": 1, "type": "passive", "name": "Death's Reach", "spellId": 276079, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 76085, "name": "Icy Talons", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76086, 76052, 76064], "prev": [76066, 101708, 76083], "entries": [{"id": 96214, "definitionId": 101216, "maxRanks": 1, "type": "passive", "name": "Icy Talons", "spellId": 194878, "icon": "spell_deathknight_icytalons", "index": 100}]}, {"id": 76065, "name": "Anti-Magic Zone", "type": "single", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76064, 76048, 76077], "prev": [76068, 76075, 76066], "entries": [{"id": 96194, "definitionId": 101196, "maxRanks": 1, "type": "active", "name": "Anti-Magic Zone", "spellId": 51052, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76076, "name": "Unholy Bond", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76077, 76057, 76063], "prev": [76075, 102006, 76061], "entries": [{"id": 96205, "definitionId": 101207, "maxRanks": 1, "type": "passive", "name": "Unholy Bond", "spellId": 374261, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 76086, "name": "Ice Prison", "type": "single", "posX": 2400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96215, "definitionId": 101217, "maxRanks": 1, "type": "passive", "name": "Ice Prison", "spellId": 454786, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76052, "name": "Gloom Ward", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96180, "definitionId": 101182, "maxRanks": 1, "type": "passive", "name": "Gloom Ward", "spellId": 391571, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 76064, "name": "Asphyxiate", "type": "single", "posX": 3600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087, 76078], "prev": [76085, 76065], "entries": [{"id": 96193, "definitionId": 101195, "maxRanks": 1, "type": "active", "name": "Asphyxiate", "spellId": 221562, "icon": "ability_deathknight_asphixiate", "index": 100}]}, {"id": 76048, "name": "Assimilation", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078], "prev": [76065], "entries": [{"id": 96176, "definitionId": 101178, "maxRanks": 1, "type": "passive", "name": "Assimilation", "spellId": 374383, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76077, "name": "Wraith Walk", "type": "single", "posX": 4800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078, 76058], "prev": [76065, 76076], "entries": [{"id": 96206, "definitionId": 101208, "maxRanks": 1, "type": "active", "name": "Wraith Walk", "spellId": 212552, "icon": "inv_helm_plate_raiddeathknight_p_01", "index": 100}]}, {"id": 76057, "name": "Grip of the Dead", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076], "entries": [{"id": 96186, "definitionId": 101188, "maxRanks": 1, "type": "passive", "name": "Grip of the Dead", "spellId": 273952, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 76063, "name": "Soul Reaper", "type": "single", "posX": 6000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076, 102006], "entries": [{"id": 96192, "definitionId": 101194, "maxRanks": 1, "type": "active", "name": "Soul Reaper", "spellId": 343294, "icon": "ability_deathknight_soulreaper", "index": 100}]}, {"id": 76087, "name": "Suppression", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76088, 76051], "prev": [76052, 76086, 76064], "entries": [{"id": 96216, "definitionId": 101218, "maxRanks": 1, "type": "passive", "name": "Suppression", "spellId": 374049, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 76078, "name": "Blood Scent", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76051, 76055], "prev": [76048, 76064, 76077], "entries": [{"id": 96207, "definitionId": 101209, "maxRanks": 1, "type": "passive", "name": "Blood Scent", "spellId": 374030, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 76058, "name": "Unholy Endurance", "type": "single", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76055, 76056], "prev": [76057, 76063, 76077], "entries": [{"id": 96187, "definitionId": 101189, "maxRanks": 1, "type": "passive", "name": "Unholy Endurance", "spellId": 389682, "icon": "spell_deathknight_subversion", "index": 100}]}, {"id": 76088, "name": "Osmosis", "type": "single", "posX": 2400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079], "prev": [76087], "entries": [{"id": 96217, "definitionId": 101219, "maxRanks": 1, "type": "passive", "name": "Osmosis", "spellId": 454835, "icon": "spell_nature_rune", "index": 100}]}, {"id": 76051, "name": "Insidious Chill", "type": "single", "posX": 3600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079, 76080], "prev": [76078, 76087], "entries": [{"id": 96179, "definitionId": 101181, "maxRanks": 1, "type": "passive", "name": "Insidious Chill", "spellId": 391566, "icon": "ability_racial_wardoftheloafrost", "index": 100}]}, {"id": 76055, "name": "Runic Protection", "type": "single", "posX": 4800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76080, 76054], "prev": [76058, 76078], "entries": [{"id": 96183, "definitionId": 101185, "maxRanks": 1, "type": "passive", "name": "Runic Protection", "spellId": 454788, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 76056, "name": "Blood Draw", "type": "single", "posX": 6000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76054], "prev": [76058], "entries": [{"id": 96184, "definitionId": 101186, "maxRanks": 1, "type": "passive", "name": "Blood Draw", "spellId": 374598, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 76079, "name": "Rune Mastery", "type": "single", "posX": 3000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102008, 76050], "prev": [76051, 76088], "entries": [{"id": 96208, "definitionId": 101210, "maxRanks": 2, "type": "passive", "name": "Rune Mastery", "spellId": 374574, "icon": "ability_deathknight_hungeringruneblade", "index": 100}]}, {"id": 76080, "name": "Subduing Grasp", "type": "single", "posX": 4200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76050, 76049, 102007], "prev": [76055, 76051], "entries": [{"id": 96209, "definitionId": 101211, "maxRanks": 1, "type": "passive", "name": "Subduing Grasp", "spellId": 454822, "icon": "spell_nature_elementalshields", "index": 100}]}, {"id": 76054, "name": "Will of the Necropolis", "type": "single", "posX": 5400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102007, 76053], "prev": [76055, 76056], "entries": [{"id": 96182, "definitionId": 101184, "maxRanks": 2, "type": "passive", "name": "Will of the Necropolis", "spellId": 206967, "icon": "achievement_boss_kelthuzad_01", "index": 100}]}, {"id": 102008, "name": "Null Magic", "type": "single", "posX": 2400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76079], "entries": [{"id": 126016, "definitionId": 130847, "maxRanks": 1, "type": "passive", "name": "Null Magic", "spellId": 454842, "icon": "spell_shadow_detectinvisibility", "index": 100}]}, {"id": 76050, "name": "Unyielding Will", "type": "single", "posX": 3600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76079], "entries": [{"id": 96178, "definitionId": 101180, "maxRanks": 1, "type": "passive", "name": "Unyielding Will", "spellId": 457574, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 76049, "name": "Abomination Limb", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080], "entries": [{"id": 96177, "definitionId": 101179, "maxRanks": 1, "type": "active", "name": "Abomination Limb", "spellId": 383269, "icon": "ability_maldraxxus_deathknight", "index": 100}]}, {"id": 102007, "name": "Death's Echo", "type": "single", "posX": 4800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76054], "entries": [{"id": 126015, "definitionId": 130846, "maxRanks": 1, "type": "passive", "name": "Death's Echo", "spellId": 356367, "icon": "inv_fabric_ebonweave", "index": 100}]}, {"id": 76053, "name": "Vestigial Shell", "type": "single", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76054], "entries": [{"id": 96181, "definitionId": 101183, "maxRanks": 1, "type": "passive", "name": "Vestigial Shell", "spellId": 454851, "icon": "ability_domination_rune12", "index": 100}]}], "specNodes": [{"id": 76169, "name": "Heart Strike", "type": "single", "posX": 12600, "posY": 1200, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "next": [76168, 76170], "prev": [], "entries": [{"id": 96304, "definitionId": 101306, "maxRanks": 1, "type": "active", "name": "Heart Strike", "spellId": 206930, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 76168, "name": "Marrowrend", "type": "single", "posX": 12000, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76173], "prev": [76169], "entries": [{"id": 96303, "definitionId": 101305, "maxRanks": 1, "type": "active", "name": "Marrowrend", "spellId": 195182, "icon": "ability_deathknight_marrowrend", "index": 100}]}, {"id": 76170, "name": "Blood Boil", "type": "single", "posX": 13200, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76171], "prev": [76169], "entries": [{"id": 96305, "definitionId": 101307, "maxRanks": 1, "type": "active", "name": "Blood Boil", "spellId": 50842, "icon": "spell_deathknight_bloodboil", "index": 100}]}, {"id": 76173, "name": "Vampiric Blood", "type": "single", "posX": 12000, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76144, 76140], "prev": [76168], "entries": [{"id": 96308, "definitionId": 101310, "maxRanks": 1, "type": "active", "name": "Vampiric Blood", "spellId": 55233, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 76171, "name": "Bone Collector", "type": "single", "posX": 13200, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76126, 76146], "prev": [76170], "entries": [{"id": 96306, "definitionId": 101308, "maxRanks": 1, "type": "passive", "name": "Bone Collector", "spellId": 458572, "icon": "ability_deathknight_boneshield", "index": 100}]}, {"id": 76144, "name": "Ossuary", "type": "single", "posX": 11400, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76145, 76135, 76167], "prev": [76173], "entries": [{"id": 96277, "definitionId": 101279, "maxRanks": 1, "type": "passive", "name": "Ossuary", "spellId": 219786, "icon": "ability_deathknight_brittlebones", "index": 100}]}, {"id": 76140, "name": "Improved Vampiric Blood", "type": "single", "posX": 12000, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76167, 76138], "prev": [76173], "entries": [{"id": 96272, "definitionId": 101274, "maxRanks": 2, "type": "passive", "name": "Improved Vampiric Blood", "spellId": 317133, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 76126, "name": "Improved Heart Strike", "type": "single", "posX": 13200, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76138, 76137], "prev": [76171], "entries": [{"id": 96257, "definitionId": 101259, "maxRanks": 2, "type": "passive", "name": "Improved Heart Strike", "spellId": 374717, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 76146, "name": "Ossified Vitriol", "type": "single", "posX": 13800, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76137, 76124, 76147], "prev": [76171], "entries": [{"id": 96279, "definitionId": 101281, "maxRanks": 1, "type": "passive", "name": "Ossified Vitriol", "spellId": 458744, "icon": "ability_warlock_cremation", "index": 100}]}, {"id": 76145, "name": "Leeching Strike", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76042, 76039], "prev": [76144], "entries": [{"id": 96278, "definitionId": 101280, "maxRanks": 1, "type": "passive", "name": "Leeching Strike", "spellId": 377629, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 76135, "name": "Heartbreaker", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76042, 76142], "prev": [76144], "entries": [{"id": 96266, "definitionId": 101268, "maxRanks": 1, "type": "passive", "name": "Heartbreaker", "spellId": 221536, "icon": "spell_deathknight_deathstrike", "index": 100}]}, {"id": 76167, "name": "Foul Bulwark", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76142], "prev": [76140, 76144], "entries": [{"id": 96302, "definitionId": 101304, "maxRanks": 1, "type": "passive", "name": "Foul Bulwark", "spellId": 206974, "icon": "inv_armor_shield_naxxramas_d_02", "index": 100}]}, {"id": 76138, "name": "Dancing Rune Weapon", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76142, 76129, 76166], "prev": [76140, 76126], "entries": [{"id": 96269, "definitionId": 101271, "maxRanks": 1, "type": "active", "name": "Dancing Rune Weapon", "spellId": 49028, "icon": "inv_sword_07", "index": 100}]}, {"id": 76137, "name": "Hemostasis", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76166], "prev": [76126, 76146], "entries": [{"id": 96268, "definitionId": 101270, "maxRanks": 1, "type": "passive", "name": "Hemostasis", "spellId": 273946, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 76124, "name": "Perseverance of the Ebon Blade", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76166, 76141], "prev": [76146], "entries": [{"id": 96255, "definitionId": 101257, "maxRanks": 1, "type": "passive", "name": "Perseverance of the Ebon Blade", "spellId": 374747, "icon": "ability_deathknight_sanguinfortitude", "index": 100}]}, {"id": 76147, "name": "Relish in Blood", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76141, 76174], "prev": [76146], "entries": [{"id": 96280, "definitionId": 101282, "maxRanks": 1, "type": "passive", "name": "Relish in Blood", "spellId": 317610, "icon": "ability_deathknight_roilingblood", "index": 100}]}, {"id": 76042, "name": "Gorefiend's Grasp", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76039, 76165], "prev": [76145, 76135], "entries": [{"id": 96170, "definitionId": 101172, "maxRanks": 1, "type": "active", "name": "Gorefiend's Grasp", "spellId": 108199, "icon": "ability_deathknight_aoedeathgrip", "index": 100}]}, {"id": 76142, "name": "Improved Bone Shield", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76143], "prev": [76135, 76167, 76138], "entries": [{"id": 96274, "definitionId": 101276, "maxRanks": 1, "type": "passive", "name": "Improved Bone Shield", "spellId": 374715, "icon": "ability_deathknight_marrowrend", "index": 100}]}, {"id": 76129, "name": "Insatiable Blade", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76143, 76130, 76043], "prev": [76138], "entries": [{"id": 96260, "definitionId": 101262, "maxRanks": 1, "type": "passive", "name": "Insatiable Blade", "spellId": 377637, "icon": "70_inscription_vantus_rune_nightmare", "index": 100}]}, {"id": 76166, "name": "Rune Tap", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76043, 76038], "prev": [76138, 76137, 76124], "entries": [{"id": 96301, "definitionId": 101303, "maxRanks": 1, "type": "active", "name": "Rune Tap", "spellId": 194679, "icon": "spell_deathknight_runetap", "index": 100}]}, {"id": 76141, "name": "Rapid Decomposition", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76038, 76174], "prev": [76147, 76124], "entries": [{"id": 96273, "definitionId": 101275, "maxRanks": 1, "type": "passive", "name": "Rapid Decomposition", "spellId": 194662, "icon": "ability_deathknight_deathsiphon2", "index": 100}]}, {"id": 76039, "name": "Blood Tap", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102243], "prev": [76042, 76145], "entries": [{"id": 96167, "definitionId": 101169, "maxRanks": 1, "type": "active", "name": "Blood Tap", "spellId": 221699, "icon": "spell_deathknight_bloodtap", "index": 100}]}, {"id": 76165, "name": "Tightening Grasp", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102243, 76139], "prev": [76042], "entries": [{"id": 96300, "definitionId": 101302, "maxRanks": 1, "type": "passive", "name": "Tightening Grasp", "spellId": 206970, "icon": "spell_shadow_coneofsilence", "index": 100}]}, {"id": 76143, "name": "Reinforced Bones", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76139, 102244], "prev": [76142, 76129], "entries": [{"id": 96276, "definitionId": 101278, "maxRanks": 1, "type": "passive", "name": "Reinforced Bones", "spellId": 374737, "icon": "ability_rogue_deadenednerves", "index": 100}]}, {"id": 76130, "name": "Everlasting Bond", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102244], "prev": [76129], "entries": [{"id": 96261, "definitionId": 101263, "maxRanks": 1, "type": "passive", "name": "Everlasting Bond", "spellId": 377668, "icon": "inv_sword_07", "index": 100}]}, {"id": 76043, "name": "Voracious", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102244, 102242], "prev": [76129, 76166], "entries": [{"id": 96171, "definitionId": 101173, "maxRanks": 1, "type": "passive", "name": "Voracious", "spellId": 273953, "icon": "ability_ironmaidens_whirlofblood", "index": 100}]}, {"id": 76038, "name": "Coagulopathy", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102242, 76041], "prev": [76141, 76166], "entries": [{"id": 96166, "definitionId": 101168, "maxRanks": 1, "type": "passive", "name": "Coagulopathy", "spellId": 391477, "icon": "ability_skeer_bloodletting", "index": 100}]}, {"id": 76174, "name": "Bloodworms", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76041], "prev": [76141, 76147], "entries": [{"id": 96309, "definitionId": 101311, "maxRanks": 1, "type": "passive", "name": "Bloodworms", "spellId": 195679, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 102243, "name": "Blood Feast", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76128], "prev": [76039, 76165], "entries": [{"id": 126298, "definitionId": 131124, "maxRanks": 1, "type": "passive", "name": "Blood Feast", "spellId": 391386, "icon": "spell_deathknight_vendetta", "index": 100}]}, {"id": 76139, "name": "Mark of Blood / Tombstone", "type": "choice", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76128, 76131], "prev": [76143, 76165], "entries": [{"id": 96271, "definitionId": 101273, "maxRanks": 1, "type": "active", "name": "Mark of Blood", "spellId": 206940, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 96270, "definitionId": 101272, "maxRanks": 1, "type": "active", "name": "Tombstone", "spellId": 219809, "icon": "ability_fiegndead", "index": 200}]}, {"id": 102244, "name": "Blooddrinker / Consumption", "type": "choice", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76131, 102245, 76172], "prev": [76043, 76130, 76143], "entries": [{"id": 126300, "definitionId": 131126, "maxRanks": 1, "type": "active", "name": "Blooddrinker", "spellId": 206931, "icon": "ability_animusdraw", "index": 100}, {"id": 126299, "definitionId": 131125, "maxRanks": 1, "type": "active", "name": "Consumption", "spellId": 274156, "icon": "inv_axe_2h_artifactmaw_d_01", "index": 200}]}, {"id": 102242, "name": "Bloodied Blade", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76172, 76132], "prev": [76043, 76038], "entries": [{"id": 126296, "definitionId": 131122, "maxRanks": 1, "type": "passive", "name": "Bloodied Blade", "spellId": 458753, "icon": "inv_sword_2h_ebonblade_b_01_red", "index": 100}]}, {"id": 76041, "name": "Sanguine Ground", "type": "single", "posX": 14400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76132], "prev": [76038, 76174], "entries": [{"id": 96169, "definitionId": 101171, "maxRanks": 1, "type": "passive", "name": "Sanguine Ground", "spellId": 391458, "icon": "inv_artifact_corruptedbloodofzakajz", "index": 100}]}, {"id": 76128, "name": "Shattering Bone", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76127], "prev": [76139, 102243], "entries": [{"id": 96259, "definitionId": 101261, "maxRanks": 1, "type": "passive", "name": "Shattering Bone", "spellId": 377640, "icon": "ability_deathknight_shatteringbone", "index": 100}]}, {"id": 76131, "name": "Heartrend", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76133], "prev": [76139, 102244], "entries": [{"id": 96262, "definitionId": 101264, "maxRanks": 1, "type": "passive", "name": "Heartrend", "spellId": 377655, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 102245, "name": "Carnage", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102244], "entries": [{"id": 126301, "definitionId": 131127, "maxRanks": 1, "type": "passive", "name": "Carnage", "spellId": 458752, "icon": "sha_ability_warrior_bloodnova_nightmare", "index": 100}]}, {"id": 76172, "name": "Iron Heart", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76125], "prev": [102242, 102244], "entries": [{"id": 96307, "definitionId": 101309, "maxRanks": 1, "type": "passive", "name": "Iron Heart", "spellId": 391395, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 76132, "name": "Red Thirst", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76040], "prev": [102242, 76041], "entries": [{"id": 96263, "definitionId": 101265, "maxRanks": 1, "type": "passive", "name": "Red Thirst", "spellId": 205723, "icon": "spell_deathknight_bloodpresence", "index": 100}]}, {"id": 76127, "name": "Bonestorm", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76128], "entries": [{"id": 96258, "definitionId": 101260, "maxRanks": 1, "type": "active", "name": "Bonestorm", "spellId": 194844, "icon": "achievement_boss_lordmarrowgar", "index": 100}]}, {"id": 76133, "name": "Purgatory", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76131], "entries": [{"id": 96264, "definitionId": 101266, "maxRanks": 1, "type": "passive", "name": "Purgatory", "spellId": 114556, "icon": "inv_misc_shadowegg", "index": 100}]}, {"id": 76125, "name": "Bloodshot", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76172], "entries": [{"id": 96256, "definitionId": 101258, "maxRanks": 1, "type": "passive", "name": "Bloodshot", "spellId": 391398, "icon": "ability_warlock_baneofhavoc", "index": 100}]}, {"id": 76040, "name": "Umbilicus Eternus", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76132], "entries": [{"id": 96168, "definitionId": 101170, "maxRanks": 1, "type": "passive", "name": "Umbilicus Eternus", "spellId": 391517, "icon": "artifactability_blooddeathknight_umbilicuseternus", "index": 100}]}], "heroNodes": [{"id": 95062, "name": "Reaper's Mark", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 33, "next": [95036, 95058, 95043], "prev": [], "entries": [{"id": 117659, "definitionId": 122671, "maxRanks": 1, "type": "active", "name": "Reaper's Mark", "spellId": 439843, "icon": "inv_ability_deathbringerdeathknight_reapersmark", "index": 100}], "freeNode": true}, {"id": 95051, "name": "Vampiric Strike", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 31, "next": [95064, 95048, 95056], "prev": [], "entries": [{"id": 117648, "definitionId": 122660, "maxRanks": 1, "type": "passive", "name": "Vampiric Strike", "spellId": 433901, "icon": "inv_ability_sanlayndeathknight_vampiricstrike", "index": 100}], "freeNode": true}, {"id": 95036, "name": "Wave of Souls", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95061], "prev": [95062], "entries": [{"id": 117633, "definitionId": 122645, "maxRanks": 1, "type": "passive", "name": "Wave of Souls", "spellId": 439851, "icon": "spell_animamaw_wave", "index": 100}]}, {"id": 95058, "name": "Blood Fever", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95034], "prev": [95062], "entries": [{"id": 117655, "definitionId": 122667, "maxRanks": 1, "type": "passive", "name": "Blood Fever", "spellId": 440002, "icon": "ability_ironmaidens_corruptedblood", "index": 100}]}, {"id": 95043, "name": "Bind in Darkness", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95035], "prev": [95062], "entries": [{"id": 117640, "definitionId": 122652, "maxRanks": 1, "type": "passive", "name": "Bind in Darkness", "spellId": 440031, "icon": "ability_argus_soulbombdebuffsmall", "index": 100}]}, {"id": 95064, "name": "Newly Turned / Vampiric Speed", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95033], "prev": [95051], "entries": [{"id": 117661, "definitionId": 122673, "maxRanks": 1, "type": "passive", "name": "Newly Turned", "spellId": 433934, "icon": "ability_deathknight_hemorrhagicfever", "index": 100}, {"id": 117892, "definitionId": 122904, "maxRanks": 1, "type": "passive", "name": "Vampiric Speed", "spellId": 434028, "icon": "inv_boots_cloth_34v2", "index": 200}]}, {"id": 95048, "name": "Blood-Soaked Ground", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95065], "prev": [95051], "entries": [{"id": 117645, "definitionId": 122657, "maxRanks": 1, "type": "passive", "name": "Blood-Soaked Ground", "spellId": 434033, "icon": "ability_ironmaidens_corruptedblood", "index": 100}]}, {"id": 95056, "name": "Vampiric Aura / Bloody Fortitude", "type": "choice", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95046], "prev": [95051], "entries": [{"id": 117653, "definitionId": 122665, "maxRanks": 1, "type": "passive", "name": "Vampiric Aura", "spellId": 434100, "icon": "ability_rogue_vendetta", "index": 100}, {"id": 117891, "definitionId": 122903, "maxRanks": 1, "type": "passive", "name": "Bloody Fortitude", "spellId": 434136, "icon": "ability_warrior_intensifyrage", "index": 200}]}, {"id": 95061, "name": "Soul Rupture", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95032], "prev": [95036], "entries": [{"id": 117658, "definitionId": 122670, "maxRanks": 1, "type": "passive", "name": "Soul Rupture", "spellId": 437161, "icon": "warlock_siphonlife", "index": 100}]}, {"id": 95034, "name": "Grim Reaper", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95057], "prev": [95058], "entries": [{"id": 117631, "definitionId": 122643, "maxRanks": 1, "type": "passive", "name": "Grim Reaper", "spellId": 434905, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 95035, "name": "Pact of the Deathbringer / Rune Carved Plates", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95049], "prev": [95043], "entries": [{"id": 117632, "definitionId": 122644, "maxRanks": 1, "type": "passive", "name": "Pact of the Deathbringer", "spellId": 440476, "icon": "ability_revendreth_deathknight", "index": 100}, {"id": 123420, "definitionId": 128258, "maxRanks": 1, "type": "passive", "name": "Rune Carved Plates", "spellId": 440282, "icon": "spell_deathknight_runetap", "index": 200}]}, {"id": 95033, "name": "Infliction of Sorrow", "type": "single", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95045], "prev": [95064], "entries": [{"id": 117630, "definitionId": 122642, "maxRanks": 1, "type": "passive", "name": "Infliction of Sorrow", "spellId": 434143, "icon": "ability_warrior_bloodbath", "index": 100}]}, {"id": 95065, "name": "Frenzied Bloodthirst", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95040], "prev": [95048], "entries": [{"id": 117662, "definitionId": 122674, "maxRanks": 1, "type": "passive", "name": "Frenzied Bloodthirst", "spellId": 434075, "icon": "inv_sulfurelemental_blood", "index": 100}]}, {"id": 95046, "name": "The Blood is Life", "type": "single", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95055], "prev": [95056], "entries": [{"id": 117643, "definitionId": 122655, "maxRanks": 1, "type": "passive", "name": "The Blood is Life", "spellId": 434260, "icon": "achievement_nazmir_boss_bloodofghuun", "index": 100}]}, {"id": 95032, "name": "Swift End / Painful Death", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95061], "entries": [{"id": 117629, "definitionId": 122641, "maxRanks": 1, "type": "passive", "name": "Swift End", "spellId": 443560, "icon": "ability_domination_rune02", "index": 100}, {"id": 123337, "definitionId": 128199, "maxRanks": 1, "type": "passive", "name": "Painful Death", "spellId": 443564, "icon": "ability_domination_rune12", "index": 200}]}, {"id": 95057, "name": "Dark Talons / Wither Away", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95034], "entries": [{"id": 117654, "definitionId": 122666, "maxRanks": 1, "type": "passive", "name": "Dark Talons", "spellId": 436687, "icon": "inv_shoulder_93", "index": 100}, {"id": 121984, "definitionId": 126884, "maxRanks": 1, "type": "passive", "name": "Wither Away", "spellId": 441894, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95049, "name": "Death's Messenger / Expelling Shield", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95035], "entries": [{"id": 117646, "definitionId": 122658, "maxRanks": 1, "type": "passive", "name": "Death's Messenger", "spellId": 437122, "icon": "ability_argus_deathfog", "index": 100}, {"id": 119140, "definitionId": 124040, "maxRanks": 1, "type": "passive", "name": "Expelling Shield", "spellId": 439948, "icon": "spell_shadow_antimagicshell", "index": 200}]}, {"id": 95045, "name": "Visceral Strength", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95033], "entries": [{"id": 117642, "definitionId": 122654, "maxRanks": 1, "type": "passive", "name": "Visceral Strength", "spellId": 434157, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 95040, "name": "Incite Terror", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95065], "entries": [{"id": 117637, "definitionId": 122649, "maxRanks": 1, "type": "passive", "name": "Incite Terror", "spellId": 434151, "icon": "ability_warlock_improveddemonictactics", "index": 100}]}, {"id": 95055, "name": "Pact of the San'layn / Sanguine Scent", "type": "choice", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95046], "entries": [{"id": 117652, "definitionId": 122664, "maxRanks": 1, "type": "passive", "name": "Pact of the San'layn", "spellId": 434261, "icon": "ability_warrior_bloodnova", "index": 100}, {"id": 117893, "definitionId": 122905, "maxRanks": 1, "type": "passive", "name": "Sanguine Scent", "spellId": 434263, "icon": "ability_deathknight_roilingblood", "index": 200}]}, {"id": 95068, "name": "Exterminate", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 33, "next": [], "prev": [95057, 95032, 95049], "entries": [{"id": 117665, "definitionId": 122677, "maxRanks": 1, "type": "passive", "name": "Exterminate", "spellId": 441378, "icon": "inv_polearm_2h_titanargus_d_01", "index": 100}]}, {"id": 95053, "name": "Gift of the San'layn", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 31, "next": [], "prev": [95040, 95045, 95055], "entries": [{"id": 117650, "definitionId": 122662, "maxRanks": 1, "type": "passive", "name": "Gift of the San'layn", "spellId": 434152, "icon": "spell_deathknight_bloodtap", "index": 100}]}], "subTreeNodes": [{"id": 99822, "name": "Deathbringer / San'layn", "type": "subtree", "posX": 7500, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123326, "type": "subtree", "name": "Deathbringer", "traitSubTreeId": 33, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-deathbringer", "nodes": [95062, 95036, 95058, 95043, 95061, 95034, 95035, 95032, 95057, 95049, 95068]}, {"id": 123325, "type": "subtree", "name": "San'layn", "traitSubTreeId": 31, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-sanlayn", "nodes": [95051, 95064, 95048, 95056, 95033, 95065, 95046, 95045, 95040, 95055, 95053]}]}], "fullNodeOrder": [76033, 76035, 76037, 76038, 76039, 76040, 76041, 76042, 76043, 76044, 76045, 76046, 76048, 76049, 76050, 76051, 76052, 76053, 76054, 76055, 76056, 76057, 76058, 76059, 76060, 76061, 76063, 76064, 76065, 76066, 76067, 76068, 76069, 76071, 76072, 76073, 76074, 76075, 76076, 76077, 76078, 76079, 76080, 76081, 76083, 76084, 76085, 76086, 76087, 76088, 76089, 76091, 76092, 76093, 76094, 76095, 76096, 76097, 76098, 76099, 76100, 76101, 76102, 76103, 76105, 76106, 76108, 76109, 76110, 76111, 76112, 76113, 76114, 76115, 76116, 76117, 76118, 76119, 76120, 76121, 76122, 76123, 76124, 76125, 76126, 76127, 76128, 76129, 76130, 76131, 76132, 76133, 76135, 76137, 76138, 76139, 76140, 76141, 76142, 76143, 76144, 76145, 76146, 76147, 76148, 76149, 76150, 76151, 76152, 76153, 76154, 76155, 76156, 76157, 76158, 76159, 76160, 76161, 76162, 76163, 76164, 76165, 76166, 76167, 76168, 76169, 76170, 76171, 76172, 76173, 76174, 76175, 76176, 76177, 76178, 76179, 76180, 76181, 76182, 76183, 76184, 76185, 76186, 76187, 76188, 76189, 76190, 76191, 76192, 76193, 76194, 76195, 76196, 76197, 95032, 95033, 95034, 95035, 95036, 95037, 95040, 95041, 95042, 95043, 95044, 95045, 95046, 95047, 95048, 95049, 95051, 95053, 95054, 95055, 95056, 95057, 95058, 95059, 95060, 95061, 95062, 95063, 95064, 95065, 95066, 95067, 95068, 99820, 99821, 99822, 101708, 101882, 101929, 101930, 101931, 101932, 101933, 102006, 102007, 102008, 102009, 102242, 102243, 102244, 102245]}, {"traitTreeId": 750, "className": "Death Knight", "classId": 6, "specName": "Frost", "specId": 251, "classNodes": [{"id": 76081, "name": "Icebound Fortitude", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76045], "prev": [], "entries": [{"id": 96210, "definitionId": 101212, "maxRanks": 1, "type": "active", "name": "Icebound Fortitude", "spellId": 48792, "icon": "spell_deathknight_iceboundfortitude", "index": 100}], "freeNode": true}, {"id": 76071, "name": "Death Strike", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76067], "prev": [], "entries": [{"id": 96200, "definitionId": 101202, "maxRanks": 1, "type": "active", "name": "Death Strike", "spellId": 49998, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76072, "name": "Raise Dead", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76073], "prev": [], "entries": [{"id": 96201, "definitionId": 101203, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46585, "icon": "inv_pet_ghoul", "index": 100}]}, {"id": 76045, "name": "Runic Attenuation", "type": "single", "posX": 3000, "posY": 1800, "maxRanks": 1, "next": [76084, 76044, 76046], "prev": [76081], "entries": [{"id": 96173, "definitionId": 101175, "maxRanks": 1, "type": "passive", "name": "Runic Attenuation", "spellId": 207104, "icon": "boss_odunrunes_blue", "index": 100}]}, {"id": 76067, "name": "Improved Death Strike", "type": "single", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [76046, 76074, 76069], "prev": [76071], "entries": [{"id": 96196, "definitionId": 101198, "maxRanks": 1, "type": "passive", "name": "Improved Death Strike", "spellId": 374277, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76073, "name": "Cleaving Strikes", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [76069, 76059, 76060], "prev": [76072], "entries": [{"id": 96202, "definitionId": 101204, "maxRanks": 1, "type": "passive", "name": "Cleaving Strikes", "spellId": 316916, "icon": "spell_shadow_deathanddecay", "index": 100}]}, {"id": 76084, "name": "Mind Freeze", "type": "single", "posX": 2400, "posY": 2400, "maxRanks": 1, "next": [76083, 101708], "prev": [76045], "entries": [{"id": 96213, "definitionId": 101215, "maxRanks": 1, "type": "active", "name": "Mind Freeze", "spellId": 47528, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 76044, "name": "Blinding Sleet", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [101708], "prev": [76045], "entries": [{"id": 96172, "definitionId": 101174, "maxRanks": 1, "type": "active", "name": "Blinding Sleet", "spellId": 207167, "icon": "spell_frost_chillingblast", "index": 100}]}, {"id": 76046, "name": "Anti-Magic Barrier", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [101708, 76066, 76068], "prev": [76045, 76067], "entries": [{"id": 96174, "definitionId": 101176, "maxRanks": 1, "type": "passive", "name": "Anti-Magic Barrier", "spellId": 205727, "icon": "spell_shadow_antimagicshell", "index": 100}]}, {"id": 76074, "name": "March of Darkness", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [76068], "prev": [76067], "entries": [{"id": 96203, "definitionId": 101205, "maxRanks": 1, "type": "passive", "name": "March of Darkness", "spellId": 391546, "icon": "ability_argus_deathfog", "index": 100}]}, {"id": 76069, "name": "Unholy Ground", "type": "single", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [76068, 76075, 76061], "prev": [76073, 76067], "entries": [{"id": 96198, "definitionId": 101200, "maxRanks": 1, "type": "passive", "name": "Unholy Ground", "spellId": 374265, "icon": "ability_deathknight_desecratedground", "index": 100}]}, {"id": 76059, "name": "Control Undead", "type": "single", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [76061], "prev": [76073], "entries": [{"id": 96188, "definitionId": 101190, "maxRanks": 1, "type": "active", "name": "Control Undead", "spellId": 111673, "icon": "inv_misc_bone_skull_01", "index": 100}]}, {"id": 76060, "name": "Enfeeble / Sacrificial Pact", "type": "choice", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [76061, 102006], "prev": [76073], "entries": [{"id": 96189, "definitionId": 101191, "maxRanks": 1, "type": "passive", "name": "Enfeeble", "spellId": 392566, "icon": "ability_creature_poison_01", "index": 100}, {"id": 125608, "definitionId": 130440, "maxRanks": 1, "type": "active", "name": "Sacrificial Pact", "spellId": 327574, "icon": "spell_shadow_corpseexplode", "index": 200}]}, {"id": 76083, "name": "Coldthirst", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084], "entries": [{"id": 96212, "definitionId": 101214, "maxRanks": 1, "type": "passive", "name": "Coldthirst", "spellId": 378848, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 101708, "name": "Proliferating Chill", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084, 76046, 76044], "entries": [{"id": 125606, "definitionId": 130438, "maxRanks": 1, "type": "passive", "name": "Proliferating Chill", "spellId": 373930, "icon": "spell_frost_chainsofice", "index": 100}]}, {"id": 76066, "name": "Permafrost", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [76085, 76065], "prev": [76046], "entries": [{"id": 96195, "definitionId": 101197, "maxRanks": 1, "type": "passive", "name": "Permafrost", "spellId": 207200, "icon": "achievement_zone_frostfire", "index": 100}]}, {"id": 76068, "name": "Veteran of the Third War", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [76065], "prev": [76069, 76046, 76074], "entries": [{"id": 96197, "definitionId": 101199, "maxRanks": 1, "type": "passive", "name": "Veteran of the Third War", "spellId": 48263, "icon": "spell_misc_warsongfocus", "index": 100}]}, {"id": 76075, "name": "Death Pact", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [76065, 76076], "prev": [76069], "entries": [{"id": 96204, "definitionId": 101206, "maxRanks": 1, "type": "active", "name": "Death Pact", "spellId": 48743, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 76061, "name": "Brittle", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [76076], "prev": [76060, 76069, 76059], "entries": [{"id": 96190, "definitionId": 101192, "maxRanks": 1, "type": "passive", "name": "Brittle", "spellId": 374504, "icon": "ability_bosskilrogg_deaththroes", "index": 100}]}, {"id": 102006, "name": "Death's Reach", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [76076, 76063], "prev": [76060], "entries": [{"id": 126014, "definitionId": 130845, "maxRanks": 1, "type": "passive", "name": "Death's Reach", "spellId": 276079, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 76085, "name": "Icy Talons", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76086, 76052, 76064], "prev": [76066, 101708, 76083], "entries": [{"id": 96214, "definitionId": 101216, "maxRanks": 1, "type": "passive", "name": "Icy Talons", "spellId": 194878, "icon": "spell_deathknight_icytalons", "index": 100}]}, {"id": 76065, "name": "Anti-Magic Zone", "type": "single", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76064, 76048, 76077], "prev": [76068, 76075, 76066], "entries": [{"id": 96194, "definitionId": 101196, "maxRanks": 1, "type": "active", "name": "Anti-Magic Zone", "spellId": 51052, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76076, "name": "Unholy Bond", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76077, 76057, 76063], "prev": [76075, 102006, 76061], "entries": [{"id": 96205, "definitionId": 101207, "maxRanks": 1, "type": "passive", "name": "Unholy Bond", "spellId": 374261, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 76086, "name": "Ice Prison", "type": "single", "posX": 2400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96215, "definitionId": 101217, "maxRanks": 1, "type": "passive", "name": "Ice Prison", "spellId": 454786, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76052, "name": "Gloom Ward", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96180, "definitionId": 101182, "maxRanks": 1, "type": "passive", "name": "Gloom Ward", "spellId": 391571, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 76064, "name": "Asphyxiate", "type": "single", "posX": 3600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087, 76078], "prev": [76085, 76065], "entries": [{"id": 96193, "definitionId": 101195, "maxRanks": 1, "type": "active", "name": "Asphyxiate", "spellId": 221562, "icon": "ability_deathknight_asphixiate", "index": 100}]}, {"id": 76048, "name": "Assimilation", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078], "prev": [76065], "entries": [{"id": 96176, "definitionId": 101178, "maxRanks": 1, "type": "passive", "name": "Assimilation", "spellId": 374383, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76077, "name": "Wraith Walk", "type": "single", "posX": 4800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078, 76058], "prev": [76065, 76076], "entries": [{"id": 96206, "definitionId": 101208, "maxRanks": 1, "type": "active", "name": "Wraith Walk", "spellId": 212552, "icon": "inv_helm_plate_raiddeathknight_p_01", "index": 100}]}, {"id": 76057, "name": "Grip of the Dead", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076], "entries": [{"id": 96186, "definitionId": 101188, "maxRanks": 1, "type": "passive", "name": "Grip of the Dead", "spellId": 273952, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 76063, "name": "Soul Reaper", "type": "single", "posX": 6000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076, 102006], "entries": [{"id": 96192, "definitionId": 101194, "maxRanks": 1, "type": "active", "name": "Soul Reaper", "spellId": 343294, "icon": "ability_deathknight_soulreaper", "index": 100}]}, {"id": 76087, "name": "Suppression", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76088, 76051], "prev": [76052, 76086, 76064], "entries": [{"id": 96216, "definitionId": 101218, "maxRanks": 1, "type": "passive", "name": "Suppression", "spellId": 374049, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 76078, "name": "Blood Scent", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76051, 76055], "prev": [76048, 76064, 76077], "entries": [{"id": 96207, "definitionId": 101209, "maxRanks": 1, "type": "passive", "name": "Blood Scent", "spellId": 374030, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 76058, "name": "Unholy Endurance", "type": "single", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76055, 76056], "prev": [76057, 76063, 76077], "entries": [{"id": 96187, "definitionId": 101189, "maxRanks": 1, "type": "passive", "name": "Unholy Endurance", "spellId": 389682, "icon": "spell_deathknight_subversion", "index": 100}]}, {"id": 76088, "name": "Osmosis", "type": "single", "posX": 2400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079], "prev": [76087], "entries": [{"id": 96217, "definitionId": 101219, "maxRanks": 1, "type": "passive", "name": "Osmosis", "spellId": 454835, "icon": "spell_nature_rune", "index": 100}]}, {"id": 76051, "name": "Insidious Chill", "type": "single", "posX": 3600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079, 76080], "prev": [76078, 76087], "entries": [{"id": 96179, "definitionId": 101181, "maxRanks": 1, "type": "passive", "name": "Insidious Chill", "spellId": 391566, "icon": "ability_racial_wardoftheloafrost", "index": 100}]}, {"id": 76055, "name": "Runic Protection", "type": "single", "posX": 4800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76080, 76054], "prev": [76058, 76078], "entries": [{"id": 96183, "definitionId": 101185, "maxRanks": 1, "type": "passive", "name": "Runic Protection", "spellId": 454788, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 76056, "name": "Blood Draw", "type": "single", "posX": 6000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76054], "prev": [76058], "entries": [{"id": 96184, "definitionId": 101186, "maxRanks": 1, "type": "passive", "name": "Blood Draw", "spellId": 374598, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 76079, "name": "Rune Mastery", "type": "single", "posX": 3000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102008, 76050], "prev": [76051, 76088], "entries": [{"id": 96208, "definitionId": 101210, "maxRanks": 2, "type": "passive", "name": "Rune Mastery", "spellId": 374574, "icon": "ability_deathknight_hungeringruneblade", "index": 100}]}, {"id": 76080, "name": "Subduing Grasp", "type": "single", "posX": 4200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76050, 76049, 102007], "prev": [76055, 76051], "entries": [{"id": 96209, "definitionId": 101211, "maxRanks": 1, "type": "passive", "name": "Subduing Grasp", "spellId": 454822, "icon": "spell_nature_elementalshields", "index": 100}]}, {"id": 76054, "name": "Will of the Necropolis", "type": "single", "posX": 5400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102007, 76053], "prev": [76055, 76056], "entries": [{"id": 96182, "definitionId": 101184, "maxRanks": 2, "type": "passive", "name": "Will of the Necropolis", "spellId": 206967, "icon": "achievement_boss_kelthuzad_01", "index": 100}]}, {"id": 102008, "name": "Null Magic", "type": "single", "posX": 2400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76079], "entries": [{"id": 126016, "definitionId": 130847, "maxRanks": 1, "type": "passive", "name": "Null Magic", "spellId": 454842, "icon": "spell_shadow_detectinvisibility", "index": 100}]}, {"id": 76050, "name": "Unyielding Will", "type": "single", "posX": 3600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76079], "entries": [{"id": 96178, "definitionId": 101180, "maxRanks": 1, "type": "passive", "name": "Unyielding Will", "spellId": 457574, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 76049, "name": "Abomination Limb", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080], "entries": [{"id": 96177, "definitionId": 101179, "maxRanks": 1, "type": "active", "name": "Abomination Limb", "spellId": 383269, "icon": "ability_maldraxxus_deathknight", "index": 100}]}, {"id": 102007, "name": "Death's Echo", "type": "single", "posX": 4800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76054], "entries": [{"id": 126015, "definitionId": 130846, "maxRanks": 1, "type": "passive", "name": "Death's Echo", "spellId": 356367, "icon": "inv_fabric_ebonweave", "index": 100}]}, {"id": 76053, "name": "Vestigial Shell", "type": "single", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76054], "entries": [{"id": 96181, "definitionId": 101183, "maxRanks": 1, "type": "passive", "name": "Vestigial Shell", "spellId": 454851, "icon": "ability_domination_rune12", "index": 100}]}], "specNodes": [{"id": 76115, "name": "Frost Strike", "type": "single", "posX": 12600, "posY": 1200, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "next": [76116, 76114], "prev": [], "entries": [{"id": 96245, "definitionId": 101247, "maxRanks": 1, "type": "active", "name": "Frost Strike", "spellId": 49143, "icon": "spell_deathknight_empowerruneblade2", "index": 100}]}, {"id": 76116, "name": "Obliterate", "type": "single", "posX": 12000, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76117], "prev": [76115], "entries": [{"id": 96246, "definitionId": 101248, "maxRanks": 1, "type": "active", "name": "Obliterate", "spellId": 49020, "icon": "spell_deathknight_classicon", "index": 100}]}, {"id": 76114, "name": "Howling Blast", "type": "single", "posX": 13200, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76113], "prev": [76115], "entries": [{"id": 96244, "definitionId": 101246, "maxRanks": 1, "type": "active", "name": "Howling Blast", "spellId": 49184, "icon": "spell_frost_arcticwinds", "index": 100}]}, {"id": 76117, "name": "Killing Machine", "type": "single", "posX": 12000, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76118, 76103], "prev": [76116], "entries": [{"id": 96247, "definitionId": 101249, "maxRanks": 1, "type": "passive", "name": "Killing Machine", "spellId": 51128, "icon": "inv_sword_122", "index": 100}]}, {"id": 76113, "name": "Everfrost", "type": "single", "posX": 13200, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76102, 76112], "prev": [76114], "entries": [{"id": 96243, "definitionId": 101245, "maxRanks": 1, "type": "passive", "name": "Everfrost", "spellId": 376938, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76118, "name": "Unleashed Frenzy", "type": "single", "posX": 11400, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76119, 76092], "prev": [76117], "entries": [{"id": 96248, "definitionId": 101250, "maxRanks": 1, "type": "passive", "name": "Unleashed Frenzy", "spellId": 376905, "icon": "spell_deathknight_icetouch", "index": 100}]}, {"id": 76103, "name": "Improved Frost Strike", "type": "single", "posX": 12000, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76092, 101929], "prev": [76117], "entries": [{"id": 96233, "definitionId": 101235, "maxRanks": 2, "type": "passive", "name": "Improved Frost Strike", "spellId": 316803, "icon": "spell_deathknight_empowerruneblade2", "index": 100}]}, {"id": 76102, "name": "Runic Command", "type": "single", "posX": 13200, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [101929, 76096], "prev": [76113], "entries": [{"id": 96232, "definitionId": 101234, "maxRanks": 2, "type": "passive", "name": "Runic Command", "spellId": 376251, "icon": "ability_deathknight_remorselesswinters", "index": 100}]}, {"id": 76112, "name": "Improved Rime", "type": "single", "posX": 13800, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76096, 76111], "prev": [76113], "entries": [{"id": 96242, "definitionId": 101244, "maxRanks": 1, "type": "passive", "name": "Improved Rime", "spellId": 316838, "icon": "spell_frost_freezingbreath", "index": 100}]}, {"id": 76119, "name": "Improved Obliterate", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76120, 76035, 76089], "prev": [76118], "entries": [{"id": 96249, "definitionId": 101251, "maxRanks": 1, "type": "passive", "name": "Improved Obliterate", "spellId": 317198, "icon": "spell_deathknight_classicon", "index": 100}]}, {"id": 76092, "name": "Glacial Advance", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76089], "prev": [76103, 76118], "entries": [{"id": 96221, "definitionId": 101223, "maxRanks": 1, "type": "active", "name": "Glacial Advance", "spellId": 194913, "icon": "ability_hunter_glacialtrap", "index": 100}]}, {"id": 101929, "name": "Pillar of Frost", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76100, 101930, 76106], "prev": [76102, 76103], "entries": [{"id": 125874, "definitionId": 130705, "maxRanks": 1, "type": "active", "name": "Pillar of Frost", "spellId": 51271, "icon": "ability_deathknight_pillaroffrost", "index": 100}]}, {"id": 76096, "name": "Frostscythe", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76110], "prev": [76112, 76102], "entries": [{"id": 96225, "definitionId": 101227, "maxRanks": 1, "type": "active", "name": "Frostscythe", "spellId": 207230, "icon": "inv_misc_2h_farmscythe_a_01", "index": 100}]}, {"id": 76111, "name": "Biting Cold", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76110, 76098], "prev": [76112], "entries": [{"id": 96241, "definitionId": 101243, "maxRanks": 1, "type": "passive", "name": "Biting Cold", "spellId": 377056, "icon": "ability_deathknight_remorselesswinters2", "index": 100}]}, {"id": 76120, "name": "Frigid Executioner / Rage of the Frozen Champion", "type": "choice", "posX": 10200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121], "prev": [76119], "entries": [{"id": 96251, "definitionId": 101253, "maxRanks": 1, "type": "passive", "name": "Frigid Executioner", "spellId": 377073, "icon": "spell_shadow_focusedpower", "index": 100}, {"id": 96250, "definitionId": 101252, "maxRanks": 1, "type": "passive", "name": "Rage of the Frozen Champion", "spellId": 377076, "icon": "spell_mage_frostbomb", "index": 200}]}, {"id": 76035, "name": "Cold Heart", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121], "prev": [76119], "entries": [{"id": 96163, "definitionId": 101165, "maxRanks": 1, "type": "passive", "name": "Cold Heart", "spellId": 281208, "icon": "spell_frost_frozencore", "index": 100}]}, {"id": 76089, "name": "Horn of Winter", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121, 76037], "prev": [76119, 76092], "entries": [{"id": 96218, "definitionId": 101220, "maxRanks": 1, "type": "active", "name": "Horn of Winter", "spellId": 57330, "icon": "inv_misc_horn_02", "index": 100}]}, {"id": 76100, "name": "Enduring Strength", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76037, 101931], "prev": [101929], "entries": [{"id": 96230, "definitionId": 101232, "maxRanks": 1, "type": "passive", "name": "Enduring Strength", "spellId": 377190, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 101930, "name": "Icecap", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101931], "prev": [101929], "entries": [{"id": 125875, "definitionId": 130706, "maxRanks": 1, "type": "passive", "name": "Icecap", "spellId": 207126, "icon": "inv_misc_herb_icecap", "index": 100}]}, {"id": 76106, "name": "Frostwhelp's Aid", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101931, 76099], "prev": [101929], "entries": [{"id": 96236, "definitionId": 101238, "maxRanks": 1, "type": "passive", "name": "Frostwhelp's Aid", "spellId": 377226, "icon": "inv_pet_dkwhelplingfrost", "index": 100}]}, {"id": 76110, "name": "Empower Rune Weapon", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76099, 76109], "prev": [76111, 76096], "entries": [{"id": 96240, "definitionId": 101242, "maxRanks": 1, "type": "active", "name": "Empower Rune Weapon", "spellId": 47568, "icon": "inv_sword_62", "index": 100}]}, {"id": 76098, "name": "Chill Streak", "type": "single", "posX": 15000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76109, 76097], "prev": [76111], "entries": [{"id": 96228, "definitionId": 101230, "maxRanks": 1, "type": "active", "name": "Chill Streak", "spellId": 305392, "icon": "spell_frost_piercing_chill", "index": 100}]}, {"id": 76121, "name": "Murderous Efficiency", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76122], "prev": [76035, 76089, 76120], "entries": [{"id": 96252, "definitionId": 101254, "maxRanks": 1, "type": "passive", "name": "Murderous Efficiency", "spellId": 207061, "icon": "spell_frost_frostarmor", "index": 100}]}, {"id": 76037, "name": "Inexorable Assault", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76122, 76101], "prev": [76089, 76100], "entries": [{"id": 96165, "definitionId": 101167, "maxRanks": 1, "type": "passive", "name": "Inexorable Assault", "spellId": 253593, "icon": "achievement_dungeon_icecrown_frostmourne", "index": 100}]}, {"id": 101931, "name": "Frostwyrm's Fury", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76101, 102009, 76105], "prev": [101930, 76100, 76106], "entries": [{"id": 125876, "definitionId": 130707, "maxRanks": 1, "type": "active", "name": "Frostwyrm's Fury", "spellId": 279302, "icon": "achievement_boss_sindragosa", "index": 100}]}, {"id": 76099, "name": "Gathering Storm", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76105, 76033], "prev": [76110, 76106], "entries": [{"id": 96229, "definitionId": 101231, "maxRanks": 1, "type": "passive", "name": "Gathering Storm", "spellId": 194912, "icon": "spell_frost_ice_shards", "index": 100}]}, {"id": 76109, "name": "Cryogenic Chamber", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76033], "prev": [76098, 76110], "entries": [{"id": 96239, "definitionId": 101241, "maxRanks": 1, "type": "passive", "name": "Cryogenic Chamber", "spellId": 456237, "icon": "spell_fire_bluecano", "index": 100}]}, {"id": 76097, "name": "Piercing Chill / Enduring Chill", "type": "choice", "posX": 15000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [76098], "entries": [{"id": 96227, "definitionId": 101229, "maxRanks": 1, "type": "passive", "name": "Piercing Chill", "spellId": 377351, "icon": "spell_frost_piercing_chill", "index": 100}, {"id": 96226, "definitionId": 101228, "maxRanks": 1, "type": "passive", "name": "Enduring Chill", "spellId": 377376, "icon": "spell_frost_piercing_chill", "index": 200}]}, {"id": 76122, "name": "Bonegrinder", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 2, "next": [76123], "prev": [76037, 76121], "entries": [{"id": 96253, "definitionId": 101255, "maxRanks": 2, "type": "passive", "name": "Bonegrinder", "spellId": 377098, "icon": "ability_deathknight_bonegrinder", "index": 100}]}, {"id": 76101, "name": "Smothering Offense", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [101933], "prev": [101931, 76037], "entries": [{"id": 96231, "definitionId": 101233, "maxRanks": 1, "type": "passive", "name": "Smothering Offense", "spellId": 435005, "icon": "inv_10_specialreagentfoozles_tuskclaw_ice", "index": 100}]}, {"id": 102009, "name": "Absolute Zero", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101931], "entries": [{"id": 126017, "definitionId": 130848, "maxRanks": 1, "type": "passive", "name": "Absolute Zero", "spellId": 377047, "icon": "spell_fire_blueflamering", "index": 100}]}, {"id": 76105, "name": "Avalanche", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76095], "prev": [76099, 101931], "entries": [{"id": 96235, "definitionId": 101237, "maxRanks": 1, "type": "passive", "name": "Avalanche", "spellId": 207142, "icon": "spell_frost_icestorm", "index": 100}]}, {"id": 76033, "name": "Icebreaker", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 2, "next": [76108], "prev": [76109, 76099], "entries": [{"id": 96161, "definitionId": 101163, "maxRanks": 2, "type": "passive", "name": "Icebreaker", "spellId": 392950, "icon": "ability_mage_icewall", "index": 100}]}, {"id": 76123, "name": "Obliteration", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76091], "prev": [76122], "entries": [{"id": 96254, "definitionId": 101256, "maxRanks": 1, "type": "passive", "name": "Obliteration", "spellId": 281238, "icon": "inv_axe_114", "index": 100}]}, {"id": 101933, "name": "Icy Death Torrent", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101932], "prev": [76101], "entries": [{"id": 125878, "definitionId": 130709, "maxRanks": 1, "type": "passive", "name": "Icy Death Torrent", "spellId": 435010, "icon": "ability_argus_soulburst", "index": 100}]}, {"id": 76095, "name": "Shattering Blade", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76094], "prev": [76105], "entries": [{"id": 96224, "definitionId": 101226, "maxRanks": 1, "type": "passive", "name": "Shattering Blade", "spellId": 207057, "icon": "inv_7af_deathknight_frostmournefragment", "index": 100}]}, {"id": 76108, "name": "Hyperpyrexia", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76093], "prev": [76033], "entries": [{"id": 96238, "definitionId": 101240, "maxRanks": 1, "type": "passive", "name": "Hyperpyrexia", "spellId": 456238, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 76091, "name": "Arctic Assault", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76123], "entries": [{"id": 96220, "definitionId": 101222, "maxRanks": 1, "type": "passive", "name": "Arctic Assault", "spellId": 456230, "icon": "artifactability_frostmage_blackicicles", "index": 100}]}, {"id": 101932, "name": "The Long Winter", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101933], "entries": [{"id": 125877, "definitionId": 130708, "maxRanks": 1, "type": "passive", "name": "The Long Winter", "spellId": 456240, "icon": "inv_10_dungeonjewelry_primalist_necklace_1_frost", "index": 100}]}, {"id": 76094, "name": "Shattered Frost", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76095], "entries": [{"id": 96223, "definitionId": 101225, "maxRanks": 1, "type": "passive", "name": "Shattered Frost", "spellId": 455993, "icon": "inv_10_enchanting_shard_color3", "index": 100}]}, {"id": 76093, "name": "Breath of Sindragosa", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76108], "entries": [{"id": 96222, "definitionId": 101224, "maxRanks": 1, "type": "active", "name": "Breath of Sindragosa", "spellId": 152279, "icon": "spell_deathknight_breathofsindragosa", "index": 100}]}], "heroNodes": [{"id": 95062, "name": "Reaper's Mark", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 33, "next": [95036, 95058, 95043], "prev": [], "entries": [{"id": 117659, "definitionId": 122671, "maxRanks": 1, "type": "active", "name": "Reaper's Mark", "spellId": 439843, "icon": "inv_ability_deathbringerdeathknight_reapersmark", "index": 100}], "freeNode": true}, {"id": 95036, "name": "Wave of Souls", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95061], "prev": [95062], "entries": [{"id": 117633, "definitionId": 122645, "maxRanks": 1, "type": "passive", "name": "Wave of Souls", "spellId": 439851, "icon": "spell_animamaw_wave", "index": 100}]}, {"id": 95058, "name": "Blood Fever", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95034], "prev": [95062], "entries": [{"id": 117655, "definitionId": 122667, "maxRanks": 1, "type": "passive", "name": "Blood Fever", "spellId": 440002, "icon": "ability_ironmaidens_corruptedblood", "index": 100}]}, {"id": 95043, "name": "Bind in Darkness", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95035], "prev": [95062], "entries": [{"id": 117640, "definitionId": 122652, "maxRanks": 1, "type": "passive", "name": "Bind in Darkness", "spellId": 440031, "icon": "ability_argus_soulbombdebuffsmall", "index": 100}]}, {"id": 95061, "name": "Soul Rupture", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95032], "prev": [95036], "entries": [{"id": 117658, "definitionId": 122670, "maxRanks": 1, "type": "passive", "name": "Soul Rupture", "spellId": 437161, "icon": "warlock_siphonlife", "index": 100}]}, {"id": 95034, "name": "Grim Reaper", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95057], "prev": [95058], "entries": [{"id": 117631, "definitionId": 122643, "maxRanks": 1, "type": "passive", "name": "Grim Reaper", "spellId": 434905, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 95035, "name": "Pact of the Deathbringer / Rune Carved Plates", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95049], "prev": [95043], "entries": [{"id": 117632, "definitionId": 122644, "maxRanks": 1, "type": "passive", "name": "Pact of the Deathbringer", "spellId": 440476, "icon": "ability_revendreth_deathknight", "index": 100}, {"id": 123420, "definitionId": 128258, "maxRanks": 1, "type": "passive", "name": "Rune Carved Plates", "spellId": 440282, "icon": "spell_deathknight_runetap", "index": 200}]}, {"id": 95032, "name": "Swift End / Painful Death", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95061], "entries": [{"id": 117629, "definitionId": 122641, "maxRanks": 1, "type": "passive", "name": "Swift End", "spellId": 443560, "icon": "ability_domination_rune02", "index": 100}, {"id": 123337, "definitionId": 128199, "maxRanks": 1, "type": "passive", "name": "Painful Death", "spellId": 443564, "icon": "ability_domination_rune12", "index": 200}]}, {"id": 95057, "name": "Dark Talons / Wither Away", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95034], "entries": [{"id": 117654, "definitionId": 122666, "maxRanks": 1, "type": "passive", "name": "Dark Talons", "spellId": 436687, "icon": "inv_shoulder_93", "index": 100}, {"id": 121984, "definitionId": 126884, "maxRanks": 1, "type": "passive", "name": "Wither Away", "spellId": 441894, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95049, "name": "Death's Messenger / Expelling Shield", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95035], "entries": [{"id": 117646, "definitionId": 122658, "maxRanks": 1, "type": "passive", "name": "Death's Messenger", "spellId": 437122, "icon": "ability_argus_deathfog", "index": 100}, {"id": 119140, "definitionId": 124040, "maxRanks": 1, "type": "passive", "name": "Expelling Shield", "spellId": 439948, "icon": "spell_shadow_antimagicshell", "index": 200}]}, {"id": 95068, "name": "Exterminate", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 33, "next": [], "prev": [95057, 95032, 95049], "entries": [{"id": 117665, "definitionId": 122677, "maxRanks": 1, "type": "passive", "name": "Exterminate", "spellId": 441378, "icon": "inv_polearm_2h_titanargus_d_01", "index": 100}]}, {"id": 95066, "name": "Rider's Champion", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 32, "next": [95060, 95067, 95037], "prev": [], "entries": [{"id": 117663, "definitionId": 122675, "maxRanks": 1, "type": "passive", "name": "Rider's Champion", "spellId": 444005, "icon": "achievement_zone_icecrown_01", "index": 100}], "freeNode": true}, {"id": 95060, "name": "On a Paler Horse / Death Charge", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95047], "prev": [95066], "entries": [{"id": 117657, "definitionId": 122669, "maxRanks": 1, "type": "passive", "name": "On a Paler Horse", "spellId": 444008, "icon": "inv_skeletalwarhorse_01_purple", "index": 100}, {"id": 123412, "definitionId": 128250, "maxRanks": 1, "type": "passive", "name": "Death Charge", "spellId": 444010, "icon": "ability_mount_steelwarhorse", "index": 200}]}, {"id": 95067, "name": "Mograine's Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95059], "prev": [95066], "entries": [{"id": 117664, "definitionId": 122676, "maxRanks": 1, "type": "passive", "name": "Mograine's Might", "spellId": 444047, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 95037, "name": "Horsemen's Aid / Pact of the Apocalypse", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95063], "prev": [95066], "entries": [{"id": 117634, "definitionId": 122646, "maxRanks": 1, "type": "passive", "name": "Horsemen's Aid", "spellId": 444074, "icon": "achievement_dungeon_nexusraid_10man", "index": 100}, {"id": 123410, "definitionId": 128248, "maxRanks": 1, "type": "passive", "name": "Pact of the Apocalypse", "spellId": 444083, "icon": "achievement_dungeon_nexus80_25man", "index": 200}]}, {"id": 95047, "name": "Whitemane's Famine", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95044], "prev": [95060], "entries": [{"id": 117644, "definitionId": 122656, "maxRanks": 1, "type": "passive", "name": "Whitemane's Famine", "spellId": 444033, "icon": "spell_deathknight_necroticplague", "index": 100}]}, {"id": 95059, "name": "Nazgrim's Conquest", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95042], "prev": [95067], "entries": [{"id": 117656, "definitionId": 122668, "maxRanks": 1, "type": "passive", "name": "Nazgrim's Conquest", "spellId": 444052, "icon": "ability_maldraxxus_warriorplantbanner", "index": 100}]}, {"id": 95063, "name": "Trollbane's Icy Fury", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95054], "prev": [95037], "entries": [{"id": 117660, "definitionId": 122672, "maxRanks": 1, "type": "passive", "name": "Trollbane's Icy Fury", "spellId": 444097, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95044, "name": "Hungering Thirst", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95047], "entries": [{"id": 117641, "definitionId": 122653, "maxRanks": 1, "type": "passive", "name": "Hungering Thirst", "spellId": 444037, "icon": "spell_shadow_fumble", "index": 100}]}, {"id": 95042, "name": "Fury of the Horsemen / A Feast of Souls", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95059], "entries": [{"id": 117639, "definitionId": 122651, "maxRanks": 1, "type": "passive", "name": "Fury of the Horsemen", "spellId": 444069, "icon": "inv_plate_raiddeathknightmythic_o_01helm", "index": 100}, {"id": 123411, "definitionId": 128249, "maxRanks": 1, "type": "passive", "name": "A Feast of Souls", "spellId": 444072, "icon": "inv_misc_supersoulash", "index": 200}]}, {"id": 95054, "name": "Mawsworn Menace", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95063], "entries": [{"id": 117651, "definitionId": 122663, "maxRanks": 1, "type": "passive", "name": "Mawsworn Menace", "spellId": 444099, "icon": "inv_mawguardpet_black", "index": 100}]}, {"id": 95041, "name": "Apocalypse Now", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 32, "requiresNode": 76196, "next": [], "prev": [95042, 95044, 95054], "entries": [{"id": 117638, "definitionId": 122650, "maxRanks": 1, "type": "passive", "name": "Apocalypse Now", "spellId": 444040, "icon": "inv_ability_rideroftheapocalypsedeathknight_apocalypsenow", "index": 100}]}], "subTreeNodes": [{"id": 99821, "name": "Deathbringer / Rider of the Apocalypse", "type": "subtree", "posX": 8400, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123324, "type": "subtree", "name": "Deathbringer", "traitSubTreeId": 33, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-deathbringer", "nodes": [95062, 95036, 95058, 95043, 95061, 95034, 95035, 95032, 95057, 95049, 95068]}, {"id": 123323, "type": "subtree", "name": "Rider of the Apocalypse", "traitSubTreeId": 32, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-rideroftheapocalypse", "nodes": [95066, 95060, 95067, 95037, 95047, 95059, 95063, 95044, 95042, 95054, 95041]}]}], "fullNodeOrder": [76033, 76035, 76037, 76038, 76039, 76040, 76041, 76042, 76043, 76044, 76045, 76046, 76048, 76049, 76050, 76051, 76052, 76053, 76054, 76055, 76056, 76057, 76058, 76059, 76060, 76061, 76063, 76064, 76065, 76066, 76067, 76068, 76069, 76071, 76072, 76073, 76074, 76075, 76076, 76077, 76078, 76079, 76080, 76081, 76083, 76084, 76085, 76086, 76087, 76088, 76089, 76091, 76092, 76093, 76094, 76095, 76096, 76097, 76098, 76099, 76100, 76101, 76102, 76103, 76105, 76106, 76108, 76109, 76110, 76111, 76112, 76113, 76114, 76115, 76116, 76117, 76118, 76119, 76120, 76121, 76122, 76123, 76124, 76125, 76126, 76127, 76128, 76129, 76130, 76131, 76132, 76133, 76135, 76137, 76138, 76139, 76140, 76141, 76142, 76143, 76144, 76145, 76146, 76147, 76148, 76149, 76150, 76151, 76152, 76153, 76154, 76155, 76156, 76157, 76158, 76159, 76160, 76161, 76162, 76163, 76164, 76165, 76166, 76167, 76168, 76169, 76170, 76171, 76172, 76173, 76174, 76175, 76176, 76177, 76178, 76179, 76180, 76181, 76182, 76183, 76184, 76185, 76186, 76187, 76188, 76189, 76190, 76191, 76192, 76193, 76194, 76195, 76196, 76197, 95032, 95033, 95034, 95035, 95036, 95037, 95040, 95041, 95042, 95043, 95044, 95045, 95046, 95047, 95048, 95049, 95051, 95053, 95054, 95055, 95056, 95057, 95058, 95059, 95060, 95061, 95062, 95063, 95064, 95065, 95066, 95067, 95068, 99820, 99821, 99822, 101708, 101882, 101929, 101930, 101931, 101932, 101933, 102006, 102007, 102008, 102009, 102242, 102243, 102244, 102245]}, {"traitTreeId": 750, "className": "Death Knight", "classId": 6, "specName": "Unholy", "specId": 252, "classNodes": [{"id": 76081, "name": "Icebound Fortitude", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76045], "prev": [], "entries": [{"id": 96210, "definitionId": 101212, "maxRanks": 1, "type": "active", "name": "Icebound Fortitude", "spellId": 48792, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 76071, "name": "Death Strike", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76067], "prev": [], "entries": [{"id": 96200, "definitionId": 101202, "maxRanks": 1, "type": "active", "name": "Death Strike", "spellId": 49998, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76072, "name": "Raise Dead", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76073], "prev": [], "entries": [{"id": 96201, "definitionId": 101203, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46585, "icon": "inv_pet_ghoul", "index": 100}], "freeNode": true}, {"id": 76045, "name": "Runic Attenuation", "type": "single", "posX": 3000, "posY": 1800, "maxRanks": 1, "next": [76084, 76044, 76046], "prev": [76081], "entries": [{"id": 96173, "definitionId": 101175, "maxRanks": 1, "type": "passive", "name": "Runic Attenuation", "spellId": 207104, "icon": "boss_odunrunes_blue", "index": 100}]}, {"id": 76067, "name": "Improved Death Strike", "type": "single", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [76046, 76074, 76069], "prev": [76071], "entries": [{"id": 96196, "definitionId": 101198, "maxRanks": 1, "type": "passive", "name": "Improved Death Strike", "spellId": 374277, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76073, "name": "Cleaving Strikes", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [76069, 76059, 76060], "prev": [76072], "entries": [{"id": 96202, "definitionId": 101204, "maxRanks": 1, "type": "passive", "name": "Cleaving Strikes", "spellId": 316916, "icon": "spell_shadow_deathanddecay", "index": 100}]}, {"id": 76084, "name": "Mind Freeze", "type": "single", "posX": 2400, "posY": 2400, "maxRanks": 1, "next": [76083, 101708], "prev": [76045], "entries": [{"id": 96213, "definitionId": 101215, "maxRanks": 1, "type": "active", "name": "Mind Freeze", "spellId": 47528, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 76044, "name": "Blinding Sleet", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [101708], "prev": [76045], "entries": [{"id": 96172, "definitionId": 101174, "maxRanks": 1, "type": "active", "name": "Blinding Sleet", "spellId": 207167, "icon": "spell_frost_chillingblast", "index": 100}]}, {"id": 76046, "name": "Anti-Magic Barrier", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [101708, 76066, 76068], "prev": [76045, 76067], "entries": [{"id": 96174, "definitionId": 101176, "maxRanks": 1, "type": "passive", "name": "Anti-Magic Barrier", "spellId": 205727, "icon": "spell_shadow_antimagicshell", "index": 100}]}, {"id": 76074, "name": "March of Darkness", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [76068], "prev": [76067], "entries": [{"id": 96203, "definitionId": 101205, "maxRanks": 1, "type": "passive", "name": "March of Darkness", "spellId": 391546, "icon": "ability_argus_deathfog", "index": 100}]}, {"id": 76069, "name": "Unholy Ground", "type": "single", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [76068, 76075, 76061], "prev": [76073, 76067], "entries": [{"id": 96198, "definitionId": 101200, "maxRanks": 1, "type": "passive", "name": "Unholy Ground", "spellId": 374265, "icon": "ability_deathknight_desecratedground", "index": 100}]}, {"id": 76059, "name": "Control Undead", "type": "single", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [76061], "prev": [76073], "entries": [{"id": 96188, "definitionId": 101190, "maxRanks": 1, "type": "active", "name": "Control Undead", "spellId": 111673, "icon": "inv_misc_bone_skull_01", "index": 100}]}, {"id": 76060, "name": "Enfeeble / Sacrificial Pact", "type": "choice", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [76061, 102006], "prev": [76073], "entries": [{"id": 96189, "definitionId": 101191, "maxRanks": 1, "type": "passive", "name": "Enfeeble", "spellId": 392566, "icon": "ability_creature_poison_01", "index": 100}, {"id": 125608, "definitionId": 130440, "maxRanks": 1, "type": "active", "name": "Sacrificial Pact", "spellId": 327574, "icon": "spell_shadow_corpseexplode", "index": 200}]}, {"id": 76083, "name": "Coldthirst", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084], "entries": [{"id": 96212, "definitionId": 101214, "maxRanks": 1, "type": "passive", "name": "Coldthirst", "spellId": 378848, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 101708, "name": "Proliferating Chill", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084, 76046, 76044], "entries": [{"id": 125606, "definitionId": 130438, "maxRanks": 1, "type": "passive", "name": "Proliferating Chill", "spellId": 373930, "icon": "spell_frost_chainsofice", "index": 100}]}, {"id": 76066, "name": "Permafrost", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [76085, 76065], "prev": [76046], "entries": [{"id": 96195, "definitionId": 101197, "maxRanks": 1, "type": "passive", "name": "Permafrost", "spellId": 207200, "icon": "achievement_zone_frostfire", "index": 100}]}, {"id": 76068, "name": "Veteran of the Third War", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [76065], "prev": [76069, 76046, 76074], "entries": [{"id": 96197, "definitionId": 101199, "maxRanks": 1, "type": "passive", "name": "Veteran of the Third War", "spellId": 48263, "icon": "spell_misc_warsongfocus", "index": 100}]}, {"id": 76075, "name": "Death Pact", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [76065, 76076], "prev": [76069], "entries": [{"id": 96204, "definitionId": 101206, "maxRanks": 1, "type": "active", "name": "Death Pact", "spellId": 48743, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 76061, "name": "Brittle", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [76076], "prev": [76060, 76069, 76059], "entries": [{"id": 96190, "definitionId": 101192, "maxRanks": 1, "type": "passive", "name": "Brittle", "spellId": 374504, "icon": "ability_bosskilrogg_deaththroes", "index": 100}]}, {"id": 102006, "name": "Death's Reach", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [76076, 76063], "prev": [76060], "entries": [{"id": 126014, "definitionId": 130845, "maxRanks": 1, "type": "passive", "name": "Death's Reach", "spellId": 276079, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 76085, "name": "Icy Talons", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76086, 76052, 76064], "prev": [76066, 101708, 76083], "entries": [{"id": 96214, "definitionId": 101216, "maxRanks": 1, "type": "passive", "name": "Icy Talons", "spellId": 194878, "icon": "spell_deathknight_icytalons", "index": 100}]}, {"id": 76065, "name": "Anti-Magic Zone", "type": "single", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76064, 76048, 76077], "prev": [76068, 76075, 76066], "entries": [{"id": 96194, "definitionId": 101196, "maxRanks": 1, "type": "active", "name": "Anti-Magic Zone", "spellId": 51052, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76076, "name": "Unholy Bond", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76077, 76057, 76063], "prev": [76075, 102006, 76061], "entries": [{"id": 96205, "definitionId": 101207, "maxRanks": 1, "type": "passive", "name": "Unholy Bond", "spellId": 374261, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 76086, "name": "Ice Prison", "type": "single", "posX": 2400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96215, "definitionId": 101217, "maxRanks": 1, "type": "passive", "name": "Ice Prison", "spellId": 454786, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76052, "name": "Gloom Ward", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96180, "definitionId": 101182, "maxRanks": 1, "type": "passive", "name": "Gloom Ward", "spellId": 391571, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 76064, "name": "Asphyxiate", "type": "single", "posX": 3600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087, 76078], "prev": [76085, 76065], "entries": [{"id": 96193, "definitionId": 101195, "maxRanks": 1, "type": "active", "name": "Asphyxiate", "spellId": 221562, "icon": "ability_deathknight_asphixiate", "index": 100}]}, {"id": 76048, "name": "Assimilation", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078], "prev": [76065], "entries": [{"id": 96176, "definitionId": 101178, "maxRanks": 1, "type": "passive", "name": "Assimilation", "spellId": 374383, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76077, "name": "Wraith Walk", "type": "single", "posX": 4800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078, 76058], "prev": [76065, 76076], "entries": [{"id": 96206, "definitionId": 101208, "maxRanks": 1, "type": "active", "name": "Wraith Walk", "spellId": 212552, "icon": "inv_helm_plate_raiddeathknight_p_01", "index": 100}]}, {"id": 76057, "name": "Grip of the Dead", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076], "entries": [{"id": 96186, "definitionId": 101188, "maxRanks": 1, "type": "passive", "name": "Grip of the Dead", "spellId": 273952, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 76063, "name": "Soul Reaper", "type": "single", "posX": 6000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076, 102006], "entries": [{"id": 96192, "definitionId": 101194, "maxRanks": 1, "type": "active", "name": "Soul Reaper", "spellId": 343294, "icon": "ability_deathknight_soulreaper", "index": 100}]}, {"id": 76087, "name": "Suppression", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76088, 76051], "prev": [76052, 76086, 76064], "entries": [{"id": 96216, "definitionId": 101218, "maxRanks": 1, "type": "passive", "name": "Suppression", "spellId": 374049, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 76078, "name": "Blood Scent", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76051, 76055], "prev": [76048, 76064, 76077], "entries": [{"id": 96207, "definitionId": 101209, "maxRanks": 1, "type": "passive", "name": "Blood Scent", "spellId": 374030, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 76058, "name": "Unholy Endurance", "type": "single", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76055, 76056], "prev": [76057, 76063, 76077], "entries": [{"id": 96187, "definitionId": 101189, "maxRanks": 1, "type": "passive", "name": "Unholy Endurance", "spellId": 389682, "icon": "spell_deathknight_subversion", "index": 100}]}, {"id": 76088, "name": "Osmosis", "type": "single", "posX": 2400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079], "prev": [76087], "entries": [{"id": 96217, "definitionId": 101219, "maxRanks": 1, "type": "passive", "name": "Osmosis", "spellId": 454835, "icon": "spell_nature_rune", "index": 100}]}, {"id": 76051, "name": "Insidious Chill", "type": "single", "posX": 3600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079, 76080], "prev": [76078, 76087], "entries": [{"id": 96179, "definitionId": 101181, "maxRanks": 1, "type": "passive", "name": "Insidious Chill", "spellId": 391566, "icon": "ability_racial_wardoftheloafrost", "index": 100}]}, {"id": 76055, "name": "Runic Protection", "type": "single", "posX": 4800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76080, 76054], "prev": [76058, 76078], "entries": [{"id": 96183, "definitionId": 101185, "maxRanks": 1, "type": "passive", "name": "Runic Protection", "spellId": 454788, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 76056, "name": "Blood Draw", "type": "single", "posX": 6000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76054], "prev": [76058], "entries": [{"id": 96184, "definitionId": 101186, "maxRanks": 1, "type": "passive", "name": "Blood Draw", "spellId": 374598, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 76079, "name": "Rune Mastery", "type": "single", "posX": 3000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102008, 76050], "prev": [76051, 76088], "entries": [{"id": 96208, "definitionId": 101210, "maxRanks": 2, "type": "passive", "name": "Rune Mastery", "spellId": 374574, "icon": "ability_deathknight_hungeringruneblade", "index": 100}]}, {"id": 76080, "name": "Subduing Grasp", "type": "single", "posX": 4200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76050, 76049, 102007], "prev": [76055, 76051], "entries": [{"id": 96209, "definitionId": 101211, "maxRanks": 1, "type": "passive", "name": "Subduing Grasp", "spellId": 454822, "icon": "spell_nature_elementalshields", "index": 100}]}, {"id": 76054, "name": "Will of the Necropolis", "type": "single", "posX": 5400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102007, 76053], "prev": [76055, 76056], "entries": [{"id": 96182, "definitionId": 101184, "maxRanks": 2, "type": "passive", "name": "Will of the Necropolis", "spellId": 206967, "icon": "achievement_boss_kelthuzad_01", "index": 100}]}, {"id": 102008, "name": "Null Magic", "type": "single", "posX": 2400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76079], "entries": [{"id": 126016, "definitionId": 130847, "maxRanks": 1, "type": "passive", "name": "Null Magic", "spellId": 454842, "icon": "spell_shadow_detectinvisibility", "index": 100}]}, {"id": 76050, "name": "Unyielding Will", "type": "single", "posX": 3600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76079], "entries": [{"id": 96178, "definitionId": 101180, "maxRanks": 1, "type": "passive", "name": "Unyielding Will", "spellId": 457574, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 76049, "name": "Abomination Limb", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080], "entries": [{"id": 96177, "definitionId": 101179, "maxRanks": 1, "type": "active", "name": "Abomination Limb", "spellId": 383269, "icon": "ability_maldraxxus_deathknight", "index": 100}]}, {"id": 102007, "name": "Death's Echo", "type": "single", "posX": 4800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76054], "entries": [{"id": 126015, "definitionId": 130846, "maxRanks": 1, "type": "passive", "name": "Death's Echo", "spellId": 356367, "icon": "inv_fabric_ebonweave", "index": 100}]}, {"id": 76053, "name": "Vestigial Shell", "type": "single", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76054], "entries": [{"id": 96181, "definitionId": 101183, "maxRanks": 1, "type": "passive", "name": "Vestigial Shell", "spellId": 454851, "icon": "ability_domination_rune12", "index": 100}]}], "specNodes": [{"id": 76189, "name": "Festering Strike", "type": "single", "posX": 12600, "posY": 1200, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "next": [76190, 76188], "prev": [], "entries": [{"id": 96326, "definitionId": 101328, "maxRanks": 1, "type": "active", "name": "Festering Strike", "spellId": 85948, "icon": "spell_deathknight_festering_strike", "index": 100}]}, {"id": 76190, "name": "Scourge Strike", "type": "single", "posX": 12000, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76191], "prev": [76189], "entries": [{"id": 96327, "definitionId": 101329, "maxRanks": 1, "type": "active", "name": "Scourge Strike", "spellId": 55090, "icon": "spell_deathknight_scourgestrike", "index": 100}]}, {"id": 76188, "name": "Raise Dead", "type": "single", "posX": 13200, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76187], "prev": [76189], "entries": [{"id": 96325, "definitionId": 101327, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46584, "icon": "inv_pet_ghoul", "index": 100}]}, {"id": 76191, "name": "Sudden Doom", "type": "single", "posX": 12000, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76162, 76192], "prev": [76190], "entries": [{"id": 96328, "definitionId": 101330, "maxRanks": 1, "type": "passive", "name": "Sudden Doom", "spellId": 49530, "icon": "spell_shadow_painspike", "index": 100}]}, {"id": 76187, "name": "Dark Transformation", "type": "single", "posX": 13200, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76186, 76182], "prev": [76188], "entries": [{"id": 96324, "definitionId": 101326, "maxRanks": 1, "type": "active", "name": "Dark Transformation", "spellId": 63560, "icon": "achievement_boss_festergutrotface", "index": 100}]}, {"id": 76162, "name": "Foul Infections", "type": "single", "posX": 11400, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76161, 76163, 76193], "prev": [76191], "entries": [{"id": 96296, "definitionId": 101298, "maxRanks": 1, "type": "passive", "name": "Foul Infections", "spellId": 455396, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 76192, "name": "Improved Festering Strike", "type": "single", "posX": 12000, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76193, 76185], "prev": [76191], "entries": [{"id": 96329, "definitionId": 101331, "maxRanks": 2, "type": "passive", "name": "Improved Festering Strike", "spellId": 316867, "icon": "spell_deathknight_festering_strike", "index": 100}]}, {"id": 76186, "name": "Runic Mastery", "type": "single", "posX": 13200, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76185, 76183], "prev": [76187], "entries": [{"id": 96323, "definitionId": 101325, "maxRanks": 2, "type": "passive", "name": "Runic Mastery", "spellId": 390166, "icon": "ability_deathknight_remorselesswinters", "index": 100}]}, {"id": 76182, "name": "Eternal Agony", "type": "single", "posX": 13800, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76183, 76179, 76181], "prev": [76187], "entries": [{"id": 96318, "definitionId": 101320, "maxRanks": 1, "type": "passive", "name": "Eternal Agony", "spellId": 390268, "icon": "spell_necro_deathsdoor", "index": 100}]}, {"id": 76161, "name": "Defile", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76160], "prev": [76162], "entries": [{"id": 96295, "definitionId": 101297, "maxRanks": 1, "type": "active", "name": "Defile", "spellId": 152280, "icon": "spell_deathknight_defile", "index": 100}]}, {"id": 76163, "name": "Unholy Blight", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76160, 76164, 76194], "prev": [76162], "entries": [{"id": 96297, "definitionId": 101299, "maxRanks": 1, "type": "passive", "name": "Unholy Blight", "spellId": 460448, "icon": "spell_shadow_contagion", "index": 100}]}, {"id": 76193, "name": "Festering Scythe", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76194], "prev": [76162, 76192], "entries": [{"id": 96330, "definitionId": 101332, "maxRanks": 1, "type": "passive", "name": "Festering Scythe", "spellId": 455397, "icon": "inv_polearm_2h_mawnecromancerboss_d_01_darkblue", "index": 100}]}, {"id": 76185, "name": "Apocalypse", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76194, 76148, 76184], "prev": [76192, 76186], "entries": [{"id": 96322, "definitionId": 101324, "maxRanks": 1, "type": "active", "name": "Apocalypse", "spellId": 275699, "icon": "artifactability_unholydeathknight_deathsembrace", "index": 100}]}, {"id": 76183, "name": "Plaguebringer / Clawing Shadows", "type": "choice", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76184], "prev": [76182, 76186], "entries": [{"id": 96319, "definitionId": 101321, "maxRanks": 1, "type": "passive", "name": "Plaguebringer", "spellId": 390175, "icon": "spell_deathknight_plaguestrike", "index": 100}, {"id": 96320, "definitionId": 101322, "maxRanks": 1, "type": "active", "name": "Clawing Shadows", "spellId": 207311, "icon": "warlock_curse_shadow", "index": 200}]}, {"id": 76179, "name": "Reaping", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76184, 76178, 76180], "prev": [76182], "entries": [{"id": 96314, "definitionId": 101316, "maxRanks": 1, "type": "passive", "name": "Reaping", "spellId": 377514, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 76181, "name": "All Will Serve", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76180], "prev": [76182], "entries": [{"id": 96317, "definitionId": 101319, "maxRanks": 1, "type": "passive", "name": "All Will Serve", "spellId": 194916, "icon": "ability_fiegndead", "index": 100}]}, {"id": 76160, "name": "Ebon Fever", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76159], "prev": [76163, 76161], "entries": [{"id": 96294, "definitionId": 101296, "maxRanks": 1, "type": "passive", "name": "Ebon Fever", "spellId": 207269, "icon": "spell_shadow_creepingplague", "index": 100}]}, {"id": 76164, "name": "Bursting Sores", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76159, 76157, 76195], "prev": [76163], "entries": [{"id": 96299, "definitionId": 101301, "maxRanks": 1, "type": "passive", "name": "Bursting Sores", "spellId": 207264, "icon": "ability_druid_infectedwound", "index": 100}]}, {"id": 76194, "name": "Ghoulish Frenzy", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76195], "prev": [76185, 76163, 76193], "entries": [{"id": 96331, "definitionId": 101333, "maxRanks": 1, "type": "passive", "name": "Ghoulish Frenzy", "spellId": 377587, "icon": "ability_warlock_baneofhavoc", "index": 100}]}, {"id": 76148, "name": "Magus of the Dead", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76195, 101882, 76156], "prev": [76185], "entries": [{"id": 96282, "definitionId": 101284, "maxRanks": 1, "type": "passive", "name": "Magus of the Dead", "spellId": 390196, "icon": "ability_maldraxxus_mage", "index": 100}]}, {"id": 76184, "name": "Improved Death Coil", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76156], "prev": [76179, 76183, 76185], "entries": [{"id": 96321, "definitionId": 101323, "maxRanks": 1, "type": "passive", "name": "Improved Death Coil", "spellId": 377580, "icon": "spell_shadow_deathcoil", "index": 100}]}, {"id": 76178, "name": "Harbinger of Doom", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76156, 76175, 76177], "prev": [76179], "entries": [{"id": 96313, "definitionId": 101315, "maxRanks": 1, "type": "passive", "name": "Harbinger of Doom", "spellId": 276023, "icon": "spell_shadow_painspike", "index": 100}]}, {"id": 76180, "name": "Unholy Pact / Defile", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76177], "prev": [76179, 76181], "entries": [{"id": 96316, "definitionId": 101318, "maxRanks": 1, "type": "passive", "name": "Unholy Pact", "spellId": 319230, "icon": "spell_shadow_deathsembrace", "index": 100}, {"id": 96315, "definitionId": 101317, "maxRanks": 1, "type": "active", "name": "Defile", "spellId": 152280, "icon": "spell_deathknight_defile", "index": 200}]}, {"id": 76159, "name": "Vile Contagion", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76158], "prev": [76164, 76160], "entries": [{"id": 96293, "definitionId": 101295, "maxRanks": 1, "type": "active", "name": "Vile Contagion", "spellId": 390279, "icon": "spell_shadow_plaguecloud", "index": 100}]}, {"id": 76157, "name": "Pestilence", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76158], "prev": [76164], "entries": [{"id": 96291, "definitionId": 101293, "maxRanks": 1, "type": "passive", "name": "Pestilence", "spellId": 277234, "icon": "spell_deathknight_necroticplague", "index": 100}]}, {"id": 76195, "name": "Infected Claws", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76158, 76196], "prev": [76194, 76148, 76164], "entries": [{"id": 96332, "definitionId": 101334, "maxRanks": 1, "type": "passive", "name": "Infected Claws", "spellId": 207272, "icon": "spell_deathknight_thrash_ghoul", "index": 100}]}, {"id": 101882, "name": "Menacing Magus", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76196], "prev": [76148], "entries": [{"id": 125815, "definitionId": 130647, "maxRanks": 1, "type": "passive", "name": "Menacing Magus", "spellId": 455135, "icon": "ability_warlock_coil2", "index": 100}]}, {"id": 76156, "name": "Coil of Devastation", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76196, 76176], "prev": [76184, 76148, 76178], "entries": [{"id": 96290, "definitionId": 101292, "maxRanks": 1, "type": "passive", "name": "Coil of Devastation", "spellId": 390270, "icon": "ability_malkorok_blightofyshaarj_green", "index": 100}]}, {"id": 76175, "name": "Rotten Touch", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76176], "prev": [76178], "entries": [{"id": 96310, "definitionId": 101312, "maxRanks": 1, "type": "passive", "name": "Rotten Touch", "spellId": 390275, "icon": "ability_deathwing_grasping_tendrilsgreen", "index": 100}]}, {"id": 76177, "name": "Ruptured Viscera", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76176], "prev": [76180, 76178], "entries": [{"id": 96312, "definitionId": 101314, "maxRanks": 1, "type": "passive", "name": "Ruptured Viscera", "spellId": 390236, "icon": "artifactability_unholydeathknight_flagellation", "index": 100}]}, {"id": 76158, "name": "Death Rot", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76197, 76152], "prev": [76195, 76157, 76159], "entries": [{"id": 96292, "definitionId": 101294, "maxRanks": 1, "type": "passive", "name": "Death Rot", "spellId": 377537, "icon": "ability_creature_cursed_03", "index": 100}]}, {"id": 76196, "name": "Army of the Dead", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76152, 76153, 76154], "prev": [76156, 76195, 101882], "entries": [{"id": 96333, "definitionId": 101335, "maxRanks": 1, "type": "active", "name": "Army of the Dead", "spellId": 42650, "icon": "spell_deathknight_armyofthedead", "index": 100}]}, {"id": 76176, "name": "Summon Gargoyle / Doomed Bidding", "type": "choice", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76154, 76150], "prev": [76156, 76175, 76177], "entries": [{"id": 96311, "definitionId": 101313, "maxRanks": 1, "type": "active", "name": "Summon Gargoyle", "spellId": 49206, "icon": "ability_deathknight_summongargoyle", "index": 100}, {"id": 125816, "definitionId": 130648, "maxRanks": 1, "type": "passive", "name": "Doomed Bidding", "spellId": 455386, "icon": "ability_deathknight_shatteringbone", "index": 200}]}, {"id": 76197, "name": "Morbidity", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [76155], "prev": [76158], "entries": [{"id": 96334, "definitionId": 101336, "maxRanks": 2, "type": "passive", "name": "Morbidity", "spellId": 377592, "icon": "spell_necro_deathlyecho", "index": 100}]}, {"id": 76152, "name": "Festermight", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [76151], "prev": [76158, 76196], "entries": [{"id": 96286, "definitionId": 101288, "maxRanks": 2, "type": "passive", "name": "Festermight", "spellId": 377590, "icon": "ability_deathknight_festermight", "index": 100}]}, {"id": 76153, "name": "Raise Abomination", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76151], "prev": [76196], "entries": [{"id": 96287, "definitionId": 101289, "maxRanks": 1, "type": "active", "name": "Raise Abomination", "spellId": 455395, "icon": "achievement_boss_patchwerk", "index": 100}]}, {"id": 76154, "name": "Decomposition", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [76151], "prev": [76176, 76196], "entries": [{"id": 96288, "definitionId": 101290, "maxRanks": 2, "type": "passive", "name": "Decomposition", "spellId": 455398, "icon": "ability_rogue_deviouspoisons", "index": 100}]}, {"id": 76150, "name": "Unholy Aura", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [76149], "prev": [76176], "entries": [{"id": 96284, "definitionId": 101286, "maxRanks": 2, "type": "passive", "name": "Unholy Aura", "spellId": 377440, "icon": "ability_deathknight_decomposingaura", "index": 100}]}, {"id": 76155, "name": "Superstrain", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76197], "entries": [{"id": 96289, "definitionId": 101291, "maxRanks": 1, "type": "passive", "name": "Superstrain", "spellId": 390283, "icon": "spell_deathknight_explode_ghoul", "index": 100}]}, {"id": 76151, "name": "Unholy Assault", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76154, 76153, 76152], "entries": [{"id": 96285, "definitionId": 101287, "maxRanks": 1, "type": "active", "name": "Unholy Assault", "spellId": 207289, "icon": "spell_shadow_unholyfrenzy", "index": 100}]}, {"id": 76149, "name": "Commander of the Dead", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76150], "entries": [{"id": 96283, "definitionId": 101285, "maxRanks": 1, "type": "passive", "name": "Commander of the Dead", "spellId": 390259, "icon": "spell_shadow_fumble", "index": 100}]}], "heroNodes": [{"id": 95051, "name": "Vampiric Strike", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 31, "next": [95064, 95048, 95056], "prev": [], "entries": [{"id": 117648, "definitionId": 122660, "maxRanks": 1, "type": "passive", "name": "Vampiric Strike", "spellId": 433901, "icon": "inv_ability_sanlayndeathknight_vampiricstrike", "index": 100}], "freeNode": true}, {"id": 95064, "name": "Newly Turned / Vampiric Speed", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95033], "prev": [95051], "entries": [{"id": 117661, "definitionId": 122673, "maxRanks": 1, "type": "passive", "name": "Newly Turned", "spellId": 433934, "icon": "ability_deathknight_hemorrhagicfever", "index": 100}, {"id": 117892, "definitionId": 122904, "maxRanks": 1, "type": "passive", "name": "Vampiric Speed", "spellId": 434028, "icon": "inv_boots_cloth_34v2", "index": 200}]}, {"id": 95048, "name": "Blood-Soaked Ground", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95065], "prev": [95051], "entries": [{"id": 117645, "definitionId": 122657, "maxRanks": 1, "type": "passive", "name": "Blood-Soaked Ground", "spellId": 434033, "icon": "ability_ironmaidens_corruptedblood", "index": 100}]}, {"id": 95056, "name": "Vampiric Aura / Bloody Fortitude", "type": "choice", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95046], "prev": [95051], "entries": [{"id": 117653, "definitionId": 122665, "maxRanks": 1, "type": "passive", "name": "Vampiric Aura", "spellId": 434100, "icon": "ability_rogue_vendetta", "index": 100}, {"id": 117891, "definitionId": 122903, "maxRanks": 1, "type": "passive", "name": "Bloody Fortitude", "spellId": 434136, "icon": "ability_warrior_intensifyrage", "index": 200}]}, {"id": 95033, "name": "Infliction of Sorrow", "type": "single", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95045], "prev": [95064], "entries": [{"id": 117630, "definitionId": 122642, "maxRanks": 1, "type": "passive", "name": "Infliction of Sorrow", "spellId": 434143, "icon": "ability_warrior_bloodbath", "index": 100}]}, {"id": 95065, "name": "Frenzied Bloodthirst", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95040], "prev": [95048], "entries": [{"id": 117662, "definitionId": 122674, "maxRanks": 1, "type": "passive", "name": "Frenzied Bloodthirst", "spellId": 434075, "icon": "inv_sulfurelemental_blood", "index": 100}]}, {"id": 95046, "name": "The Blood is Life", "type": "single", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95055], "prev": [95056], "entries": [{"id": 117643, "definitionId": 122655, "maxRanks": 1, "type": "passive", "name": "The Blood is Life", "spellId": 434260, "icon": "achievement_nazmir_boss_bloodofghuun", "index": 100}]}, {"id": 95045, "name": "Visceral Strength", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95033], "entries": [{"id": 117642, "definitionId": 122654, "maxRanks": 1, "type": "passive", "name": "Visceral Strength", "spellId": 434157, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 95040, "name": "Incite Terror", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95065], "entries": [{"id": 117637, "definitionId": 122649, "maxRanks": 1, "type": "passive", "name": "Incite Terror", "spellId": 434151, "icon": "ability_warlock_improveddemonictactics", "index": 100}]}, {"id": 95055, "name": "Pact of the San'layn / Sanguine Scent", "type": "choice", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95046], "entries": [{"id": 117652, "definitionId": 122664, "maxRanks": 1, "type": "passive", "name": "Pact of the San'layn", "spellId": 434261, "icon": "ability_warrior_bloodnova", "index": 100}, {"id": 117893, "definitionId": 122905, "maxRanks": 1, "type": "passive", "name": "Sanguine Scent", "spellId": 434263, "icon": "ability_deathknight_roilingblood", "index": 200}]}, {"id": 95053, "name": "Gift of the San'layn", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 31, "next": [], "prev": [95040, 95045, 95055], "entries": [{"id": 117650, "definitionId": 122662, "maxRanks": 1, "type": "passive", "name": "Gift of the San'layn", "spellId": 434152, "icon": "spell_deathknight_bloodtap", "index": 100}]}, {"id": 95066, "name": "Rider's Champion", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 32, "next": [95060, 95067, 95037], "prev": [], "entries": [{"id": 117663, "definitionId": 122675, "maxRanks": 1, "type": "passive", "name": "Rider's Champion", "spellId": 444005, "icon": "achievement_zone_icecrown_01", "index": 100}], "freeNode": true}, {"id": 95060, "name": "On a Paler Horse / Death Charge", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95047], "prev": [95066], "entries": [{"id": 117657, "definitionId": 122669, "maxRanks": 1, "type": "passive", "name": "On a Paler Horse", "spellId": 444008, "icon": "inv_skeletalwarhorse_01_purple", "index": 100}, {"id": 123412, "definitionId": 128250, "maxRanks": 1, "type": "passive", "name": "Death Charge", "spellId": 444010, "icon": "ability_mount_steelwarhorse", "index": 200}]}, {"id": 95067, "name": "Mograine's Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95059], "prev": [95066], "entries": [{"id": 117664, "definitionId": 122676, "maxRanks": 1, "type": "passive", "name": "Mograine's Might", "spellId": 444047, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 95037, "name": "Horsemen's Aid / Pact of the Apocalypse", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95063], "prev": [95066], "entries": [{"id": 117634, "definitionId": 122646, "maxRanks": 1, "type": "passive", "name": "Horsemen's Aid", "spellId": 444074, "icon": "achievement_dungeon_nexusraid_10man", "index": 100}, {"id": 123410, "definitionId": 128248, "maxRanks": 1, "type": "passive", "name": "Pact of the Apocalypse", "spellId": 444083, "icon": "achievement_dungeon_nexus80_25man", "index": 200}]}, {"id": 95047, "name": "Whitemane's Famine", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95044], "prev": [95060], "entries": [{"id": 117644, "definitionId": 122656, "maxRanks": 1, "type": "passive", "name": "Whitemane's Famine", "spellId": 444033, "icon": "spell_deathknight_necroticplague", "index": 100}]}, {"id": 95059, "name": "Nazgrim's Conquest", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95042], "prev": [95067], "entries": [{"id": 117656, "definitionId": 122668, "maxRanks": 1, "type": "passive", "name": "Nazgrim's Conquest", "spellId": 444052, "icon": "ability_maldraxxus_warriorplantbanner", "index": 100}]}, {"id": 95063, "name": "Trollbane's Icy Fury", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95054], "prev": [95037], "entries": [{"id": 117660, "definitionId": 122672, "maxRanks": 1, "type": "passive", "name": "Trollbane's Icy Fury", "spellId": 444097, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95044, "name": "Hungering Thirst", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95047], "entries": [{"id": 117641, "definitionId": 122653, "maxRanks": 1, "type": "passive", "name": "Hungering Thirst", "spellId": 444037, "icon": "spell_shadow_fumble", "index": 100}]}, {"id": 95042, "name": "Fury of the Horsemen / A Feast of Souls", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95059], "entries": [{"id": 117639, "definitionId": 122651, "maxRanks": 1, "type": "passive", "name": "Fury of the Horsemen", "spellId": 444069, "icon": "inv_plate_raiddeathknightmythic_o_01helm", "index": 100}, {"id": 123411, "definitionId": 128249, "maxRanks": 1, "type": "passive", "name": "A Feast of Souls", "spellId": 444072, "icon": "inv_misc_supersoulash", "index": 200}]}, {"id": 95054, "name": "Mawsworn Menace", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95063], "entries": [{"id": 117651, "definitionId": 122663, "maxRanks": 1, "type": "passive", "name": "Mawsworn Menace", "spellId": 444099, "icon": "inv_mawguardpet_black", "index": 100}]}, {"id": 95041, "name": "Apocalypse Now", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 32, "requiresNode": 76196, "next": [], "prev": [95042, 95044, 95054], "entries": [{"id": 117638, "definitionId": 122650, "maxRanks": 1, "type": "passive", "name": "Apocalypse Now", "spellId": 444040, "icon": "inv_ability_rideroftheapocalypsedeathknight_apocalypsenow", "index": 100}]}], "subTreeNodes": [{"id": 99820, "name": "Rider of the Apocalypse / San'layn", "type": "subtree", "posX": 9300, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123322, "type": "subtree", "name": "Rider of the Apocalypse", "traitSubTreeId": 32, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-rideroftheapocalypse", "nodes": [95066, 95060, 95067, 95037, 95047, 95059, 95063, 95044, 95042, 95054, 95041]}, {"id": 123321, "type": "subtree", "name": "San'layn", "traitSubTreeId": 31, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-sanlayn", "nodes": [95051, 95064, 95048, 95056, 95033, 95065, 95046, 95045, 95040, 95055, 95053]}]}], "fullNodeOrder": [76033, 76035, 76037, 76038, 76039, 76040, 76041, 76042, 76043, 76044, 76045, 76046, 76048, 76049, 76050, 76051, 76052, 76053, 76054, 76055, 76056, 76057, 76058, 76059, 76060, 76061, 76063, 76064, 76065, 76066, 76067, 76068, 76069, 76071, 76072, 76073, 76074, 76075, 76076, 76077, 76078, 76079, 76080, 76081, 76083, 76084, 76085, 76086, 76087, 76088, 76089, 76091, 76092, 76093, 76094, 76095, 76096, 76097, 76098, 76099, 76100, 76101, 76102, 76103, 76105, 76106, 76108, 76109, 76110, 76111, 76112, 76113, 76114, 76115, 76116, 76117, 76118, 76119, 76120, 76121, 76122, 76123, 76124, 76125, 76126, 76127, 76128, 76129, 76130, 76131, 76132, 76133, 76135, 76137, 76138, 76139, 76140, 76141, 76142, 76143, 76144, 76145, 76146, 76147, 76148, 76149, 76150, 76151, 76152, 76153, 76154, 76155, 76156, 76157, 76158, 76159, 76160, 76161, 76162, 76163, 76164, 76165, 76166, 76167, 76168, 76169, 76170, 76171, 76172, 76173, 76174, 76175, 76176, 76177, 76178, 76179, 76180, 76181, 76182, 76183, 76184, 76185, 76186, 76187, 76188, 76189, 76190, 76191, 76192, 76193, 76194, 76195, 76196, 76197, 95032, 95033, 95034, 95035, 95036, 95037, 95040, 95041, 95042, 95043, 95044, 95045, 95046, 95047, 95048, 95049, 95051, 95053, 95054, 95055, 95056, 95057, 95058, 95059, 95060, 95061, 95062, 95063, 95064, 95065, 95066, 95067, 95068, 99820, 99821, 99822, 101708, 101882, 101929, 101930, 101931, 101932, 101933, 102006, 102007, 102008, 102009, 102242, 102243, 102244, 102245]}, {"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Beast Mastery", "specId": 253, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102378, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126441, "definitionId": 131267, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 53351, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Improved Kill Shot", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102378], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Improved Kill Shot", "spellId": 343248, "icon": "ability_hunter_snipertraining", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 102292], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [102292, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 102292, "name": "Counter Shot", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 126352, "definitionId": 131178, "maxRanks": 1, "type": "active", "name": "Counter Shot", "spellId": 147362, "icon": "inv_ammo_arrow_03", "index": 100}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [102292, 102403, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [102292], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [102292, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102346, "name": "Kill Command", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102354, 102361, 102377], "prev": [], "entries": [{"id": 126408, "definitionId": 131234, "maxRanks": 1, "type": "active", "name": "Kill Command", "spellId": 34026, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102354, "name": "Cobra Shot", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102374, 102351], "prev": [102346], "entries": [{"id": 126416, "definitionId": 131242, "maxRanks": 1, "type": "active", "name": "Cobra Shot", "spellId": 193455, "icon": "ability_hunter_cobrashot", "index": 100}]}, {"id": 102361, "name": "Animal Companion", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [102363], "prev": [102346], "entries": [{"id": 126423, "definitionId": 131249, "maxRanks": 1, "type": "passive", "name": "Animal Companion", "spellId": 267116, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}, {"id": 102377, "name": "Barbed Shot", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102343, 102345], "prev": [102346], "entries": [{"id": 126440, "definitionId": 131266, "maxRanks": 1, "type": "active", "name": "Barbed Shot", "spellId": 217200, "icon": "ability_hunter_barbedshot", "index": 100}]}, {"id": 102374, "name": "Pack Tactics", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [102357], "prev": [102354], "entries": [{"id": 126437, "definitionId": 131263, "maxRanks": 1, "type": "passive", "name": "Pack Tactics", "spellId": 321014, "icon": "ability_hunter_invigeration", "index": 100}]}, {"id": 102351, "name": "Aspect of the Beast", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102357], "prev": [102354], "entries": [{"id": 126413, "definitionId": 131239, "maxRanks": 1, "type": "passive", "name": "Aspect of the Beast", "spellId": 191384, "icon": "ability_deathwing_assualtaspects", "index": 100}]}, {"id": 102343, "name": "War Orders", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102369], "prev": [102377], "entries": [{"id": 126405, "definitionId": 131231, "maxRanks": 1, "type": "passive", "name": "War Orders", "spellId": 393933, "icon": "ability_hunter_barbedshot", "index": 100}]}, {"id": 102345, "name": "Thrill of the Hunt", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [102369], "prev": [102377], "entries": [{"id": 126407, "definitionId": 131233, "maxRanks": 1, "type": "passive", "name": "Thrill of the Hunt", "spellId": 257944, "icon": "ability_hunter_thrillofthehunt", "index": 100}]}, {"id": 102357, "name": "Go for the Throat", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102356, 102368, 102344], "prev": [102351, 102374], "entries": [{"id": 126419, "definitionId": 131245, "maxRanks": 1, "type": "passive", "name": "Go for the Throat", "spellId": 459550, "icon": "ability_hunter_goforthethroat", "index": 100}]}, {"id": 102363, "name": "Multi-Shot", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [102341], "prev": [102361], "entries": [{"id": 126425, "definitionId": 131251, "maxRanks": 1, "type": "active", "name": "Multi-Shot", "spellId": 2643, "icon": "ability_upgrademoonglaive", "index": 100}]}, {"id": 102369, "name": "Laceration", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102338, 102360, 102358], "prev": [102345, 102343], "entries": [{"id": 126432, "definitionId": 131258, "maxRanks": 1, "type": "passive", "name": "Laceration", "spellId": 459552, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 102356, "name": "Cobra Senses", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102347], "prev": [102357], "entries": [{"id": 126418, "definitionId": 131244, "maxRanks": 1, "type": "passive", "name": "Cobra Senses", "spellId": 378244, "icon": "ability_hunter_cobrastrikes", "index": 100}]}, {"id": 102368, "name": "Alpha Predator", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102359, 102347], "prev": [102357], "entries": [{"id": 126431, "definitionId": 131257, "maxRanks": 1, "type": "passive", "name": "Alpha Predator", "spellId": 269737, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 102344, "name": "Improved Kill Command", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102359], "prev": [102357], "entries": [{"id": 126406, "definitionId": 131232, "maxRanks": 1, "type": "passive", "name": "Improved Kill Command", "spellId": 378010, "icon": "ability_hunter_pet_goto", "index": 100}]}, {"id": 102341, "name": "Beast Cleave", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102355, 102359, 102348], "prev": [102363], "entries": [{"id": 126403, "definitionId": 131229, "maxRanks": 1, "type": "passive", "name": "Beast Cleave", "spellId": 115939, "icon": "ability_hunter_sickem", "index": 100}]}, {"id": 102338, "name": "Wild Call", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102348], "prev": [102369], "entries": [{"id": 126399, "definitionId": 131225, "maxRanks": 1, "type": "passive", "name": "Wild Call", "spellId": 185789, "icon": "ability_hunter_masterscall", "index": 100}]}, {"id": 102360, "name": "Hunter's Prey", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102348, 102376], "prev": [102369], "entries": [{"id": 126422, "definitionId": 131248, "maxRanks": 1, "type": "passive", "name": "Hunter's Prey", "spellId": 378210, "icon": "ability_hunter_assassinate", "index": 100}]}, {"id": 102358, "name": "Venom's Bite", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102376], "prev": [102369], "entries": [{"id": 126420, "definitionId": 131246, "maxRanks": 1, "type": "passive", "name": "Venom's Bite", "spellId": 459565, "icon": "spell_hunter_exoticmunitions_poisoned", "index": 100}]}, {"id": 102347, "name": "Stomp", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102352, 102335, 102353], "prev": [102368, 102356], "entries": [{"id": 126409, "definitionId": 131235, "maxRanks": 1, "type": "passive", "name": "Stomp", "spellId": 199530, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 102359, "name": "Kindred Spirits", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [102340, 102353], "prev": [102341, 102368, 102344], "entries": [{"id": 126421, "definitionId": 131247, "maxRanks": 2, "type": "passive", "name": "Kindred Spirits", "spellId": 56315, "icon": "ability_hunter_separationanxiety", "index": 100}]}, {"id": 102355, "name": "Kill Cleave", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102340], "prev": [102341], "entries": [{"id": 126417, "definitionId": 131243, "maxRanks": 1, "type": "passive", "name": "Kill Cleave", "spellId": 378207, "icon": "spell_druid_bloodythrash", "index": 100}]}, {"id": 102348, "name": "Training Expert", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [102340, 102365], "prev": [102341, 102360, 102338], "entries": [{"id": 126410, "definitionId": 131236, "maxRanks": 2, "type": "passive", "name": "Training Expert", "spellId": 378209, "icon": "spell_hunter_adaptation", "index": 100}]}, {"id": 102376, "name": "Dire Beast", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102349, 102337, 102365], "prev": [102358, 102360], "entries": [{"id": 126439, "definitionId": 131265, "maxRanks": 1, "type": "active", "name": "Dire Beast", "spellId": 120679, "icon": "ability_hunter_longevity", "index": 100}]}, {"id": 102352, "name": "A Murder of Crows", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364], "prev": [102347], "entries": [{"id": 126414, "definitionId": 131240, "maxRanks": 1, "type": "passive", "name": "A Murder of Crows", "spellId": 459760, "icon": "ability_hunter_murderofcrows", "index": 100}]}, {"id": 102335, "name": "Barrage", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364], "prev": [102347], "entries": [{"id": 126396, "definitionId": 131222, "maxRanks": 1, "type": "active", "name": "Barrage", "spellId": 120360, "icon": "ability_hunter_rapidregeneration", "index": 100}]}, {"id": 102353, "name": "Savagery", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364, 102372], "prev": [102359, 102347], "entries": [{"id": 126415, "definitionId": 131241, "maxRanks": 1, "type": "passive", "name": "Savagery", "spellId": 424557, "icon": "spell_nature_protectionformnature", "index": 100}]}, {"id": 102340, "name": "Bestial Wrath", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102372, 102373, 102370], "prev": [102359, 102348, 102355], "entries": [{"id": 126402, "definitionId": 131228, "maxRanks": 1, "type": "active", "name": "Bestial Wrath", "spellId": 19574, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 102365, "name": "Dire Command", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102370, 102367], "prev": [102376, 102348], "entries": [{"id": 126427, "definitionId": 131253, "maxRanks": 1, "type": "passive", "name": "Dire Command", "spellId": 378743, "icon": "ability_hunter_ferociousinspiration", "index": 100}]}, {"id": 102349, "name": "Huntmaster's Call", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102367], "prev": [102376], "entries": [{"id": 126411, "definitionId": 131237, "maxRanks": 1, "type": "passive", "name": "Huntmaster's Call", "spellId": 459730, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 102337, "name": "Dire Frenzy", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102367], "prev": [102376], "entries": [{"id": 126398, "definitionId": 131224, "maxRanks": 1, "type": "passive", "name": "Dire Frenzy", "spellId": 385810, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102364, "name": "Killer Instinct", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102336], "prev": [102335, 102352, 102353], "entries": [{"id": 126426, "definitionId": 131252, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 273887, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102372, "name": "Master Handler", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102340, 102353], "entries": [{"id": 126435, "definitionId": 131261, "maxRanks": 1, "type": "passive", "name": "Master Handler", "spellId": 424558, "icon": "ability_hunter_beastwithin", "index": 100}]}, {"id": 102373, "name": "Barbed Wrath", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102375, 102342, 102350], "prev": [102340], "entries": [{"id": 126436, "definitionId": 131262, "maxRanks": 1, "type": "passive", "name": "Barbed Wrath", "spellId": 231548, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 102370, "name": "Explosive Venom", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102365, 102340], "entries": [{"id": 126433, "definitionId": 131259, "maxRanks": 1, "type": "passive", "name": "Explosive Venom", "spellId": 459693, "icon": "ability_hunter_potentvenom", "index": 100}]}, {"id": 102367, "name": "Basilisk Collar", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102362], "prev": [102337, 102349, 102365], "entries": [{"id": 126430, "definitionId": 131256, "maxRanks": 2, "type": "passive", "name": "Basilisk Collar", "spellId": 459571, "icon": "hunter_pvp_direbeastbasilisk", "index": 100}]}, {"id": 102336, "name": "Call of the Wild", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102339], "prev": [102364], "entries": [{"id": 126397, "definitionId": 131223, "maxRanks": 1, "type": "active", "name": "Call of the Wild", "spellId": 359844, "icon": "ability_hunter_callofthewild", "index": 100}]}, {"id": 102375, "name": "Killer Cobra", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102371], "prev": [102373], "entries": [{"id": 126438, "definitionId": 131264, "maxRanks": 1, "type": "passive", "name": "Killer Cobra", "spellId": 199532, "icon": "ability_hunter_snaketrap", "index": 100}]}, {"id": 102342, "name": "Scent of Blood", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [102371], "prev": [102373], "entries": [{"id": 126404, "definitionId": 131230, "maxRanks": 2, "type": "passive", "name": "Scent of Blood", "spellId": 193532, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 102350, "name": "Brutal Companion", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102371], "prev": [102373], "entries": [{"id": 126412, "definitionId": 131238, "maxRanks": 1, "type": "passive", "name": "Brutal Companion", "spellId": 386870, "icon": "ability_druid_rake", "index": 100}]}, {"id": 102362, "name": "Bloodshed", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102366], "prev": [102367], "entries": [{"id": 126424, "definitionId": 131250, "maxRanks": 1, "type": "active", "name": "Bloodshed", "spellId": 321530, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 102339, "name": "Wild Instincts / Bloody Frenzy", "type": "choice", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102336], "entries": [{"id": 126401, "definitionId": 131227, "maxRanks": 1, "type": "passive", "name": "Wild Instincts", "spellId": 378442, "icon": "ability_hunter_beastwithin", "index": 100}, {"id": 126400, "definitionId": 131226, "maxRanks": 1, "type": "passive", "name": "Bloody Frenzy", "spellId": 407412, "icon": "ability_racial_cannibalize", "index": 200}]}, {"id": 102371, "name": "Piercing Fangs", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102350, 102342, 102375], "entries": [{"id": 126434, "definitionId": 131260, "maxRanks": 1, "type": "passive", "name": "Piercing Fangs", "spellId": 392053, "icon": "inv_misc_monsterfang_02", "index": 100}]}, {"id": 102366, "name": "Venomous Bite / Shower of Blood", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102362], "entries": [{"id": 126429, "definitionId": 131255, "maxRanks": 1, "type": "passive", "name": "Venomous Bite", "spellId": 459667, "icon": "ability_creature_poison_01", "index": 100}, {"id": 126428, "definitionId": 131254, "maxRanks": 1, "type": "passive", "name": "Shower of Blood", "spellId": 459729, "icon": "inv_artifact_bloodoftheassassinated", "index": 200}]}], "heroNodes": [{"id": 94987, "name": "Black Arrow", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 44, "next": [94961, 94968, 94983], "prev": [], "entries": [{"id": 117584, "definitionId": 122596, "maxRanks": 1, "type": "active", "name": "Black Arrow", "spellId": 430703, "icon": "inv_ability_darkrangerhunter_blackarrow", "index": 100}], "freeNode": true}, {"id": 94961, "name": "Overshadow", "type": "single", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94986], "prev": [94987], "entries": [{"id": 117558, "definitionId": 122570, "maxRanks": 1, "type": "passive", "name": "Overshadow", "spellId": 430716, "icon": "ability_piercedamage", "index": 100}]}, {"id": 94983, "name": "Shadow Hounds", "type": "single", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94959], "prev": [94987], "entries": [{"id": 117580, "definitionId": 122592, "maxRanks": 1, "type": "passive", "name": "Shadow Hounds", "spellId": 430707, "icon": "inv_darkhoundmount_draka_blue", "index": 100}]}, {"id": 94968, "name": "Death Shade", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94960], "prev": [94987], "entries": [{"id": 117565, "definitionId": 122577, "maxRanks": 1, "type": "passive", "name": "Death Shade", "spellId": 430711, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 94986, "name": "Dark Empowerment / Grave Reaper", "type": "choice", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94957], "prev": [94961], "entries": [{"id": 117583, "definitionId": 122595, "maxRanks": 1, "type": "passive", "name": "Dark Empowerment", "spellId": 430718, "icon": "inv_artifact_powerofthedarkside", "index": 100}, {"id": 123780, "definitionId": 128618, "maxRanks": 1, "type": "passive", "name": "Grave Reaper", "spellId": 430719, "icon": "inv_misc_2h_farmscythe_a_01", "index": 200}]}, {"id": 94959, "name": "Embrace the Shadows / Smoke Screen", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94982], "prev": [94983], "entries": [{"id": 117556, "definitionId": 122568, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadows", "spellId": 430704, "icon": "spell_shadow_shadowembrace", "index": 100}, {"id": 123779, "definitionId": 128617, "maxRanks": 1, "type": "passive", "name": "Smoke Screen", "spellId": 430709, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 94960, "name": "Dark Chains", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94974], "prev": [94968], "entries": [{"id": 117557, "definitionId": 122569, "maxRanks": 1, "type": "passive", "name": "Dark Chains", "spellId": 430712, "icon": "inv_belt_44c", "index": 100}]}, {"id": 94957, "name": "Shadow Lash", "type": "single", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "requiresNode": 102304, "next": [94993], "prev": [94986], "entries": [{"id": 117554, "definitionId": 122566, "maxRanks": 1, "type": "passive", "name": "Shadow Lash", "spellId": 430717, "icon": "inv_misc_volatileshadow", "index": 100}]}, {"id": 94982, "name": "Shadow Surge", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94959], "entries": [{"id": 117579, "definitionId": 122591, "maxRanks": 1, "type": "passive", "name": "Shadow Surge", "spellId": 430714, "icon": "ability_socererking_forcenova", "index": 100}]}, {"id": 94974, "name": "Darkness Calls / Shadow Erasure", "type": "choice", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94960], "entries": [{"id": 117571, "definitionId": 122583, "maxRanks": 1, "type": "passive", "name": "Darkness Calls", "spellId": 430722, "icon": "spell_shadow_twilight", "index": 100}, {"id": 123778, "definitionId": 128616, "maxRanks": 1, "type": "passive", "name": "Shadow Erasure", "spellId": 430720, "icon": "ability_warlock_everlastingaffliction", "index": 200}]}, {"id": 94993, "name": "Withering Fire", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 44, "next": [], "prev": [94982, 94957, 94974], "entries": [{"id": 117590, "definitionId": 122602, "maxRanks": 1, "type": "passive", "name": "Withering Fire", "spellId": 430715, "icon": "spell_shadow_painspike", "index": 100}]}, {"id": 94991, "name": "Vicious Hunt", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 43, "next": [94985, 94992, 94962], "prev": [], "entries": [{"id": 117588, "definitionId": 122600, "maxRanks": 1, "type": "passive", "name": "Vicious Hunt", "spellId": 445404, "icon": "inv_ability_packleaderhunter_vicioushunt", "index": 100}], "freeNode": true}, {"id": 94985, "name": "Pack Coordination", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94972], "prev": [94991], "entries": [{"id": 117582, "definitionId": 122594, "maxRanks": 1, "type": "passive", "name": "Pack Coordination", "spellId": 445505, "icon": "ability_hunter_separationanxiety", "index": 100}]}, {"id": 94992, "name": "Howl of the Pack", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94984], "prev": [94991], "entries": [{"id": 117589, "definitionId": 122601, "maxRanks": 1, "type": "passive", "name": "Howl of the Pack", "spellId": 445707, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 94962, "name": "Wild Attacks", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94988], "prev": [94991], "entries": [{"id": 117559, "definitionId": 122571, "maxRanks": 1, "type": "passive", "name": "Wild Attacks", "spellId": 445708, "icon": "inv_misc_bone_09", "index": 100}]}, {"id": 94972, "name": "Den Recovery", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94969], "prev": [94985], "entries": [{"id": 117569, "definitionId": 122581, "maxRanks": 1, "type": "passive", "name": "Den Recovery", "spellId": 445710, "icon": "ability_shaman_freedomwolf", "index": 100}]}, {"id": 94984, "name": "Tireless Hunt / Cornered Prey", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94967], "prev": [94992], "entries": [{"id": 117581, "definitionId": 122593, "maxRanks": 1, "type": "passive", "name": "Tireless Hunt", "spellId": 445701, "icon": "ability_mount_jungletiger", "index": 100}, {"id": 123782, "definitionId": 128620, "maxRanks": 1, "type": "passive", "name": "Cornered Prey", "spellId": 445702, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 94988, "name": "Frenzied Tear", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94979], "prev": [94962], "entries": [{"id": 117585, "definitionId": 122597, "maxRanks": 1, "type": "passive", "name": "Frenzied Tear", "spellId": 445696, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 94969, "name": "Scattered Prey / Covering Fire", "type": "choice", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94972], "entries": [{"id": 117566, "definitionId": 122578, "maxRanks": 1, "type": "passive", "name": "Scattered Prey", "spellId": 445768, "icon": "inv_misc_bone_09", "index": 100}, {"id": 123783, "definitionId": 128621, "maxRanks": 1, "type": "passive", "name": "Covering Fire", "spellId": 445715, "icon": "ability_hunter_runningshot", "index": 200}]}, {"id": 94967, "name": "Cull the Herd", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94984], "entries": [{"id": 117564, "definitionId": 122576, "maxRanks": 1, "type": "passive", "name": "Cull the Herd", "spellId": 445717, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 94979, "name": "Furious Assault / Beast of Opportunity", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94988], "entries": [{"id": 117576, "definitionId": 122588, "maxRanks": 1, "type": "passive", "name": "Furious Assault", "spellId": 445699, "icon": "spell_druid_feralchargecat", "index": 100}, {"id": 123781, "definitionId": 128619, "maxRanks": 1, "type": "passive", "name": "Beast of Opportunity", "spellId": 445700, "icon": "ability_hunter_catlikereflexes", "index": 200}]}, {"id": 94966, "name": "Pack Assault", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 43, "next": [], "prev": [94967, 94969, 94979], "entries": [{"id": 117563, "definitionId": 122575, "maxRanks": 1, "type": "passive", "name": "Pack Assault", "spellId": 445721, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}], "subTreeNodes": [{"id": 99832, "name": "Dark Ranger / Pack Leader", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123348, "type": "subtree", "name": "Dark Ranger", "traitSubTreeId": 44, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-darkranger", "nodes": [94987, 94961, 94983, 94968, 94986, 94959, 94960, 94957, 94982, 94974, 94993]}, {"id": 123347, "type": "subtree", "name": "Pack Leader", "traitSubTreeId": 43, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-packleader", "nodes": [94991, 94985, 94992, 94962, 94972, 94984, 94988, 94969, 94967, 94979, 94966]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102306, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]}, {"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Marksmanship", "specId": 254, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102399, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126463, "definitionId": 131289, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 53351, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Improved Kill Shot", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102399], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Improved Kill Shot", "spellId": 343248, "icon": "ability_hunter_snipertraining", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 102402], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [102402, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 102402, "name": "Counter Shot", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 126466, "definitionId": 131292, "maxRanks": 1, "type": "active", "name": "Counter Shot", "spellId": 147362, "icon": "inv_ammo_arrow_03", "index": 100}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [102403, 102402, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [102402], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [102402, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102297, "name": "Aimed Shot", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102318, 102295, 102294], "prev": [], "entries": [{"id": 126357, "definitionId": 131183, "maxRanks": 1, "type": "active", "name": "Aimed Shot", "spellId": 19434, "icon": "inv_spear_07", "index": 100}]}, {"id": 102318, "name": "Rapid Fire", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102320, 102308], "prev": [102297], "entries": [{"id": 126378, "definitionId": 131204, "maxRanks": 1, "type": "active", "name": "Rapid Fire", "spellId": 257044, "icon": "ability_hunter_efficiency", "index": 100}]}, {"id": 102295, "name": "Multi-Shot", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [102309], "prev": [102297], "entries": [{"id": 126355, "definitionId": 131181, "maxRanks": 1, "type": "active", "name": "Multi-Shot", "spellId": 257620, "icon": "ability_upgrademoonglaive", "index": 100}]}, {"id": 102294, "name": "Precise Shots", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102328, 102329], "prev": [102297], "entries": [{"id": 126354, "definitionId": 131180, "maxRanks": 1, "type": "passive", "name": "Precise Shots", "spellId": 260240, "icon": "ability_hunter_snipertraining", "index": 100}]}, {"id": 102320, "name": "Surging Shots", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [102331], "prev": [102318], "entries": [{"id": 126380, "definitionId": 131206, "maxRanks": 1, "type": "passive", "name": "Surging Shots", "spellId": 391559, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 102308, "name": "Streamline", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102331], "prev": [102318], "entries": [{"id": 126368, "definitionId": 131194, "maxRanks": 1, "type": "passive", "name": "Streamline", "spellId": 260367, "icon": "ability_hunter_aimedshot", "index": 100}]}, {"id": 102328, "name": "Improved Steady Shot", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102296], "prev": [102294], "entries": [{"id": 126388, "definitionId": 131214, "maxRanks": 1, "type": "passive", "name": "Improved Steady Shot", "spellId": 321018, "icon": "ability_hunter_improvedsteadyshot", "index": 100}]}, {"id": 102329, "name": "Crack Shot", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [102296], "prev": [102294], "entries": [{"id": 126389, "definitionId": 131215, "maxRanks": 1, "type": "passive", "name": "Crack Shot", "spellId": 321293, "icon": "ability_hunter_focusfire", "index": 100}]}, {"id": 102331, "name": "Penetrating Shots", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102314, 102313], "prev": [102320, 102308], "entries": [{"id": 126391, "definitionId": 131217, "maxRanks": 1, "type": "passive", "name": "Penetrating Shots", "spellId": 459783, "icon": "achievement_guildperk_reinforce_rank2", "index": 100}]}, {"id": 102309, "name": "Trick Shots", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [102334, 102303], "prev": [102295], "entries": [{"id": 126369, "definitionId": 131195, "maxRanks": 1, "type": "passive", "name": "Trick Shots", "spellId": 257621, "icon": "inv_trickshot", "index": 100}]}, {"id": 102296, "name": "Master Marksman", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102324, 102293], "prev": [102329, 102328], "entries": [{"id": 126356, "definitionId": 131182, "maxRanks": 1, "type": "passive", "name": "Master Marksman", "spellId": 260309, "icon": "ability_hunter_mastermarksman", "index": 100}]}, {"id": 102314, "name": "Fan the Hammer", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102305], "prev": [102331], "entries": [{"id": 126374, "definitionId": 131200, "maxRanks": 1, "type": "passive", "name": "Fan the Hammer", "spellId": 459794, "icon": "ability_rogue_pistolshot", "index": 100}]}, {"id": 102313, "name": "Careful Aim", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102305, 102332, 102321], "prev": [102331], "entries": [{"id": 126373, "definitionId": 131199, "maxRanks": 1, "type": "passive", "name": "Careful Aim", "spellId": 260228, "icon": "ability_hunter_zenarchery", "index": 100}]}, {"id": 102334, "name": "Heavy Ammo / Light Ammo", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102321], "prev": [102309], "entries": [{"id": 126395, "definitionId": 131221, "maxRanks": 1, "type": "passive", "name": "Heavy Ammo", "spellId": 378910, "icon": "inv_ammo_bullet_04", "index": 100}, {"id": 126394, "definitionId": 131220, "maxRanks": 1, "type": "passive", "name": "Light Ammo", "spellId": 378913, "icon": "ships_ability_armorpiercingammo", "index": 200}]}, {"id": 102303, "name": "Bulletstorm", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102311], "prev": [102309], "entries": [{"id": 126363, "definitionId": 131189, "maxRanks": 1, "type": "passive", "name": "Bulletstorm", "spellId": 389019, "icon": "ability_hunter_markedshot", "index": 100}]}, {"id": 102324, "name": "Lock and Load", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102311, 102315, 102323], "prev": [102296], "entries": [{"id": 126384, "definitionId": 131210, "maxRanks": 1, "type": "passive", "name": "Lock and Load", "spellId": 194595, "icon": "ability_hunter_lockandload", "index": 100}]}, {"id": 102293, "name": "Steady Focus", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102323], "prev": [102296], "entries": [{"id": 126353, "definitionId": 131179, "maxRanks": 1, "type": "passive", "name": "Steady Focus", "spellId": 193533, "icon": "hunter_pvp_snipershot", "index": 100}]}, {"id": 102305, "name": "Deathblow", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102330], "prev": [102313, 102314], "entries": [{"id": 126365, "definitionId": 131191, "maxRanks": 1, "type": "passive", "name": "Deathblow", "spellId": 378769, "icon": "ability_hunter_runningshot", "index": 100}]}, {"id": 102332, "name": "Barrage", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102330, 102302, 102319], "prev": [102313], "entries": [{"id": 126392, "definitionId": 131218, "maxRanks": 1, "type": "active", "name": "Barrage", "spellId": 120360, "icon": "ability_hunter_rapidregeneration", "index": 100}]}, {"id": 102321, "name": "Night Hunter", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102319, 102300], "prev": [102313, 102334], "entries": [{"id": 126381, "definitionId": 131207, "maxRanks": 1, "type": "passive", "name": "Night Hunter", "spellId": 378766, "icon": "ability_hunter_sentinelowl", "index": 100}]}, {"id": 102311, "name": "Tactical Reload", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102300, 102298], "prev": [102324, 102303], "entries": [{"id": 126371, "definitionId": 131197, "maxRanks": 1, "type": "passive", "name": "Tactical Reload", "spellId": 400472, "icon": "ability_hunter_crossfire", "index": 100}]}, {"id": 102315, "name": "Serpentstalker's Trickery", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102298, 102301, 102317], "prev": [102324], "entries": [{"id": 126375, "definitionId": 131201, "maxRanks": 1, "type": "passive", "name": "Serpentstalker's Trickery", "spellId": 378888, "icon": "ability_hunter_serpentswiftness", "index": 100}]}, {"id": 102323, "name": "Chimaera Shot", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102317], "prev": [102324, 102293], "entries": [{"id": 126383, "definitionId": 131209, "maxRanks": 1, "type": "active", "name": "Chimaera Shot", "spellId": 342049, "icon": "ability_hunter_chimerashot2", "index": 200}]}, {"id": 102330, "name": "Killer Accuracy", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327, 102322], "prev": [102305, 102332], "entries": [{"id": 126390, "definitionId": 131216, "maxRanks": 1, "type": "passive", "name": "Killer Accuracy", "spellId": 378765, "icon": "ability_hunter_piercingshots", "index": 100}]}, {"id": 102302, "name": "Rapid Fire Barrage", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327], "prev": [102332], "entries": [{"id": 126362, "definitionId": 131188, "maxRanks": 1, "type": "passive", "name": "Rapid Fire Barrage", "spellId": 459800, "icon": "inv_engineering_deployablebulletdispenser", "index": 100}]}, {"id": 102319, "name": "In the Rhythm", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327, 102304], "prev": [102332, 102321], "entries": [{"id": 126379, "definitionId": 131205, "maxRanks": 1, "type": "passive", "name": "In the Rhythm", "spellId": 407404, "icon": "ability_hunter_longshots", "index": 100}]}, {"id": 102300, "name": "Lone Wolf", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102304], "prev": [102311, 102321], "entries": [{"id": 126360, "definitionId": 131186, "maxRanks": 1, "type": "passive", "name": "Lone Wolf", "spellId": 155228, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 102298, "name": "Bullseye", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102304, 102333], "prev": [102311, 102315], "entries": [{"id": 126358, "definitionId": 131184, "maxRanks": 1, "type": "passive", "name": "Bullseye", "spellId": 204089, "icon": "ability_hunter_focusedaim", "index": 100}]}, {"id": 102301, "name": "Hydra's Bite", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102333], "prev": [102315], "entries": [{"id": 126361, "definitionId": 131187, "maxRanks": 1, "type": "passive", "name": "Hydra's Bite", "spellId": 260241, "icon": "inv_hydrasbite", "index": 100}]}, {"id": 102317, "name": "Volley", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102333, 102310], "prev": [102323, 102315], "entries": [{"id": 126377, "definitionId": 131203, "maxRanks": 1, "type": "active", "name": "Volley", "spellId": 260243, "icon": "ability_hunter_rapidkilling", "index": 100}]}, {"id": 102327, "name": "Legacy of the Windrunners", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102299], "prev": [102319, 102302, 102330], "entries": [{"id": 126387, "definitionId": 131213, "maxRanks": 2, "type": "passive", "name": "Legacy of the Windrunners", "spellId": 406425, "icon": "artifactability_marksmanhunter_legacyofthewindrunners", "index": 100}]}, {"id": 102304, "name": "Trueshot", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102306, 102326], "prev": [102319, 102298, 102300], "entries": [{"id": 126364, "definitionId": 131190, "maxRanks": 1, "type": "active", "name": "Trueshot", "spellId": 288613, "icon": "ability_trueshot", "index": 100}]}, {"id": 102333, "name": "Focused Aim", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102325], "prev": [102301, 102298, 102317], "entries": [{"id": 126393, "definitionId": 131219, "maxRanks": 2, "type": "passive", "name": "Focused Aim", "spellId": 378767, "icon": "inv_engineering_snipingscope", "index": 100}]}, {"id": 102322, "name": "Razor Fragments", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102330], "entries": [{"id": 126382, "definitionId": 131208, "maxRanks": 1, "type": "passive", "name": "Razor Fragments", "spellId": 384790, "icon": "ability_hunter_razorwire", "index": 100}]}, {"id": 102299, "name": "Wailing Arrow", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102307], "prev": [102327], "entries": [{"id": 126359, "definitionId": 131185, "maxRanks": 1, "type": "passive", "name": "Wailing Arrow", "spellId": 459806, "icon": "ability_theblackarrow", "index": 100}]}, {"id": 102306, "name": "Eagletalon's True Focus", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102312], "prev": [102304], "entries": [{"id": 126366, "definitionId": 131192, "maxRanks": 1, "type": "passive", "name": "Eagletalon's True Focus", "spellId": 389449, "icon": "ability_hunter_aspectoftheironhawk", "index": 100}]}, {"id": 102326, "name": "Calling the Shots", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102312], "prev": [102304], "entries": [{"id": 126386, "definitionId": 131212, "maxRanks": 1, "type": "passive", "name": "Calling the Shots", "spellId": 260404, "icon": "ability_hunter_assassinate", "index": 100}]}, {"id": 102325, "name": "Small Game Hunter", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102316], "prev": [102333], "entries": [{"id": 126385, "definitionId": 131211, "maxRanks": 1, "type": "passive", "name": "Small Game Hunter", "spellId": 459802, "icon": "inv_rabbit2_darkmoon", "index": 100}]}, {"id": 102310, "name": "Kill Zone", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102317], "entries": [{"id": 126370, "definitionId": 131196, "maxRanks": 1, "type": "passive", "name": "Kill Zone", "spellId": 459921, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 102307, "name": "Readiness", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102299], "entries": [{"id": 126367, "definitionId": 131193, "maxRanks": 1, "type": "passive", "name": "Readiness", "spellId": 389865, "icon": "ability_hunter_readiness", "index": 100}]}, {"id": 102312, "name": "Unerring Vision", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102326, 102306], "entries": [{"id": 126372, "definitionId": 131198, "maxRanks": 1, "type": "passive", "name": "Unerring Vision", "spellId": 386878, "icon": "spell_hunter_exoticmunitions_frozen", "index": 200}]}, {"id": 102316, "name": "Salvo", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102325], "entries": [{"id": 126376, "definitionId": 131202, "maxRanks": 1, "type": "active", "name": "Salvo", "spellId": 400456, "icon": "spell_hunter_exoticmunitions_incendiary", "index": 0}]}], "heroNodes": [{"id": 94976, "name": "Sentinel", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 42, "next": [94989, 94973, 94981], "prev": [], "entries": [{"id": 117573, "definitionId": 122585, "maxRanks": 1, "type": "passive", "name": "Sentinel", "spellId": 450369, "icon": "inv_magicalowlbearmount", "index": 100}], "freeNode": true}, {"id": 94987, "name": "Black Arrow", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 44, "next": [94961, 94968, 94983], "prev": [], "entries": [{"id": 117584, "definitionId": 122596, "maxRanks": 1, "type": "active", "name": "Black Arrow", "spellId": 430703, "icon": "inv_ability_darkrangerhunter_blackarrow", "index": 100}], "freeNode": true}, {"id": 94989, "name": "Don't Look Back", "type": "single", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94958], "prev": [94976], "entries": [{"id": 117586, "definitionId": 122598, "maxRanks": 1, "type": "passive", "name": "Don't Look Back", "spellId": 450373, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 94973, "name": "Extrapolated Shots", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94990], "prev": [94976], "entries": [{"id": 117570, "definitionId": 122582, "maxRanks": 1, "type": "passive", "name": "Extrapolated Shots", "spellId": 450374, "icon": "ability_hunter_huntingparty", "index": 100}]}, {"id": 94981, "name": "Sentinel Precision", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94971], "prev": [94976], "entries": [{"id": 117578, "definitionId": 122590, "maxRanks": 1, "type": "passive", "name": "Sentinel Precision", "spellId": 450375, "icon": "inv_weapon_shortblade_83", "index": 100}]}, {"id": 94961, "name": "Overshadow", "type": "single", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94986], "prev": [94987], "entries": [{"id": 117558, "definitionId": 122570, "maxRanks": 1, "type": "passive", "name": "Overshadow", "spellId": 430716, "icon": "ability_piercedamage", "index": 100}]}, {"id": 94983, "name": "Shadow Hounds", "type": "single", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94959], "prev": [94987], "entries": [{"id": 117580, "definitionId": 122592, "maxRanks": 1, "type": "passive", "name": "Shadow Hounds", "spellId": 430707, "icon": "inv_darkhoundmount_draka_blue", "index": 100}]}, {"id": 94968, "name": "Death Shade", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94960], "prev": [94987], "entries": [{"id": 117565, "definitionId": 122577, "maxRanks": 1, "type": "passive", "name": "Death Shade", "spellId": 430711, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 94958, "name": "Release and Reload", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94970], "prev": [94989], "entries": [{"id": 117555, "definitionId": 122567, "maxRanks": 1, "type": "passive", "name": "Release and Reload", "spellId": 450376, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94990, "name": "Catch Out / Sideline", "type": "choice", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94965], "prev": [94973], "entries": [{"id": 117587, "definitionId": 122599, "maxRanks": 1, "type": "passive", "name": "Catch Out", "spellId": 451516, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 123869, "definitionId": 128707, "maxRanks": 1, "type": "passive", "name": "Sideline", "spellId": 450378, "icon": "ability_rogue_trip", "index": 200}]}, {"id": 94971, "name": "Invigorating Pulse", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94980], "prev": [94981], "entries": [{"id": 117568, "definitionId": 122580, "maxRanks": 1, "type": "passive", "name": "Invigorating Pulse", "spellId": 450379, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 94986, "name": "Dark Empowerment / Grave Reaper", "type": "choice", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94957], "prev": [94961], "entries": [{"id": 117583, "definitionId": 122595, "maxRanks": 1, "type": "passive", "name": "Dark Empowerment", "spellId": 430718, "icon": "inv_artifact_powerofthedarkside", "index": 100}, {"id": 123780, "definitionId": 128618, "maxRanks": 1, "type": "passive", "name": "Grave Reaper", "spellId": 430719, "icon": "inv_misc_2h_farmscythe_a_01", "index": 200}]}, {"id": 94959, "name": "Embrace the Shadows / Smoke Screen", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94982], "prev": [94983], "entries": [{"id": 117556, "definitionId": 122568, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadows", "spellId": 430704, "icon": "spell_shadow_shadowembrace", "index": 100}, {"id": 123779, "definitionId": 128617, "maxRanks": 1, "type": "passive", "name": "Smoke Screen", "spellId": 430709, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 94960, "name": "Dark Chains", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94974], "prev": [94968], "entries": [{"id": 117557, "definitionId": 122569, "maxRanks": 1, "type": "passive", "name": "Dark Chains", "spellId": 430712, "icon": "inv_belt_44c", "index": 100}]}, {"id": 94970, "name": "Sentinel Watch / Eyes Closed", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94958], "entries": [{"id": 117567, "definitionId": 122579, "maxRanks": 1, "type": "passive", "name": "Sentinel Watch", "spellId": 451546, "icon": "inv_quiver_1h_sylvanas_d_01", "index": 100}, {"id": 123871, "definitionId": 128709, "maxRanks": 1, "type": "passive", "name": "Eyes Closed", "spellId": 450381, "icon": "inv_trickshot", "index": 200}]}, {"id": 94965, "name": "Symphonic Arsenal", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94990], "entries": [{"id": 117562, "definitionId": 122574, "maxRanks": 1, "type": "passive", "name": "Symphonic Arsenal", "spellId": 450383, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 94980, "name": "Overwatch / Crescent Steel", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94971], "entries": [{"id": 117577, "definitionId": 122589, "maxRanks": 1, "type": "passive", "name": "Overwatch", "spellId": 450384, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 123870, "definitionId": 128708, "maxRanks": 1, "type": "passive", "name": "Crescent Steel", "spellId": 451530, "icon": "inv_enchant_crescentoil", "index": 200}]}, {"id": 94957, "name": "Shadow Lash", "type": "single", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "requiresNode": 102304, "next": [94993], "prev": [94986], "entries": [{"id": 117554, "definitionId": 122566, "maxRanks": 1, "type": "passive", "name": "Shadow Lash", "spellId": 430717, "icon": "inv_misc_volatileshadow", "index": 100}]}, {"id": 94982, "name": "Shadow Surge", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94959], "entries": [{"id": 117579, "definitionId": 122591, "maxRanks": 1, "type": "passive", "name": "Shadow Surge", "spellId": 430714, "icon": "ability_socererking_forcenova", "index": 100}]}, {"id": 94974, "name": "Darkness Calls / Shadow Erasure", "type": "choice", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94960], "entries": [{"id": 117571, "definitionId": 122583, "maxRanks": 1, "type": "passive", "name": "Darkness Calls", "spellId": 430722, "icon": "spell_shadow_twilight", "index": 100}, {"id": 123778, "definitionId": 128616, "maxRanks": 1, "type": "passive", "name": "Shadow Erasure", "spellId": 430720, "icon": "ability_warlock_everlastingaffliction", "index": 200}]}, {"id": 94978, "name": "Lunar Storm", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 42, "next": [], "prev": [94965, 94970, 94980], "entries": [{"id": 117575, "definitionId": 122587, "maxRanks": 1, "type": "passive", "name": "Lunar Storm", "spellId": 450385, "icon": "inv_ability_sentinelhunter_lunarstorm", "index": 100}]}, {"id": 94993, "name": "Withering Fire", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 44, "next": [], "prev": [94982, 94957, 94974], "entries": [{"id": 117590, "definitionId": 122602, "maxRanks": 1, "type": "passive", "name": "Withering Fire", "spellId": 430715, "icon": "spell_shadow_painspike", "index": 100}]}], "subTreeNodes": [{"id": 99831, "name": "Dark Ranger / Sentinel", "type": "subtree", "posX": 8100, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123346, "type": "subtree", "name": "Dark Ranger", "traitSubTreeId": 44, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-darkranger", "nodes": [94987, 94961, 94983, 94968, 94986, 94959, 94960, 94957, 94982, 94974, 94993]}, {"id": 123345, "type": "subtree", "name": "Sentinel", "traitSubTreeId": 42, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-sentinel", "nodes": [94976, 94989, 94973, 94981, 94958, 94990, 94971, 94970, 94965, 94980, 94978]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102306, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]}, {"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Survival", "specId": 255, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102379, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126442, "definitionId": 131268, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 320976, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Improved Kill Shot", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102379], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Improved Kill Shot", "spellId": 343248, "icon": "ability_hunter_snipertraining", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 79837], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [79837, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 79837, "name": "Muzzle", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 100543, "definitionId": 105545, "maxRanks": 1, "type": "active", "name": "Muzzle", "spellId": 187707, "icon": "ability_hunter_negate", "index": 0}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [79837, 102403, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [79837], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [79837, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102255, "name": "Kill Command", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102264, 102262], "prev": [], "entries": [{"id": 126314, "definitionId": 131140, "maxRanks": 1, "type": "active", "name": "Kill Command", "spellId": 259489, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102264, "name": "Wildfire Bomb", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102285], "prev": [102255], "entries": [{"id": 126324, "definitionId": 131150, "maxRanks": 1, "type": "active", "name": "Wildfire Bomb", "spellId": 259495, "icon": "inv_wildfirebomb", "index": 100}]}, {"id": 102262, "name": "Raptor Strike", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102263], "prev": [102255], "entries": [{"id": 126322, "definitionId": 131148, "maxRanks": 1, "type": "active", "name": "Raptor Strike", "spellId": 186270, "icon": "ability_hunter_raptorstrike", "index": 100}]}, {"id": 102285, "name": "Guerrilla Tactics", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102272, 102279], "prev": [102264], "entries": [{"id": 126345, "definitionId": 131171, "maxRanks": 1, "type": "passive", "name": "Guerrilla Tactics", "spellId": 264332, "icon": "spell_mage_flameorb", "index": 100}]}, {"id": 102263, "name": "Tip of the Spear", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102257, 102283], "prev": [102262], "entries": [{"id": 126323, "definitionId": 131149, "maxRanks": 1, "type": "passive", "name": "Tip of the Spear", "spellId": 260285, "icon": "ability_bossmannoroth_glaivethrust", "index": 100}]}, {"id": 102272, "name": "Lunge", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102265, 102274], "prev": [102285], "entries": [{"id": 126332, "definitionId": 131158, "maxRanks": 1, "type": "passive", "name": "Lunge", "spellId": 378934, "icon": "inv_polearm_2h_kultirasharpoon_a_01", "index": 100}]}, {"id": 102279, "name": "Quick Shot", "type": "single", "posX": 12000, "posY": 3300, "maxRanks": 1, "next": [102274, 102266, 102290], "prev": [102285], "entries": [{"id": 126339, "definitionId": 131165, "maxRanks": 1, "type": "passive", "name": "Quick Shot", "spellId": 378940, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102257, "name": "Mongoose Bite", "type": "single", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [102290, 102268, 102259], "prev": [102263], "entries": [{"id": 126316, "definitionId": 131142, "maxRanks": 1, "type": "active", "name": "Mongoose Bite", "spellId": 259387, "icon": "ability_hunter_mongoosebite", "index": 100}]}, {"id": 102283, "name": "Flanker's Advantage", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102259, 102256], "prev": [102263], "entries": [{"id": 126343, "definitionId": 131169, "maxRanks": 1, "type": "passive", "name": "Flanker's Advantage", "spellId": 459964, "icon": "ability_hunter_beastmastery", "index": 100}]}, {"id": 102265, "name": "Wildfire Infusion", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102287, 102278], "prev": [102272], "entries": [{"id": 126325, "definitionId": 131151, "maxRanks": 1, "type": "passive", "name": "Wildfire Infusion", "spellId": 460198, "icon": "inv_misc_5potionbag_special", "index": 100}]}, {"id": 102274, "name": "Improved Wildfire Bomb", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102278], "prev": [102279, 102272], "entries": [{"id": 126334, "definitionId": 131160, "maxRanks": 1, "type": "passive", "name": "Improved Wildfire Bomb", "spellId": 321290, "icon": "inv_eng_bombfire", "index": 100}]}, {"id": 102266, "name": "Sulfur-Lined Pockets", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102278], "prev": [102279], "entries": [{"id": 126326, "definitionId": 131152, "maxRanks": 1, "type": "passive", "name": "Sulfur-Lined Pockets", "spellId": 459828, "icon": "inv_misc_ammo_gunpowder_01", "index": 100}]}, {"id": 102290, "name": "Butchery", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102286, 102267], "prev": [102257, 102279], "entries": [{"id": 126350, "definitionId": 131176, "maxRanks": 1, "type": "active", "name": "Butchery", "spellId": 212436, "icon": "ability_butcher_cleave", "index": 200}]}, {"id": 102268, "name": "Bloody Claws", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260], "prev": [102257], "entries": [{"id": 126328, "definitionId": 131154, "maxRanks": 1, "type": "passive", "name": "Bloody Claws", "spellId": 385737, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 102259, "name": "Alpha Predator", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260], "prev": [102257, 102283], "entries": [{"id": 126319, "definitionId": 131145, "maxRanks": 1, "type": "passive", "name": "Alpha Predator", "spellId": 269737, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 102256, "name": "Terms of Engagement", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260, 102270], "prev": [102283], "entries": [{"id": 126315, "definitionId": 131141, "maxRanks": 1, "type": "passive", "name": "Terms of Engagement", "spellId": 265895, "icon": "ability_hunter_harpoon", "index": 100}]}, {"id": 102287, "name": "Grenade Juggler", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102288], "prev": [102265], "entries": [{"id": 126347, "definitionId": 131173, "maxRanks": 1, "type": "passive", "name": "Grenade Juggler", "spellId": 459843, "icon": "inv_misc_mohawkgrenade", "index": 100}]}, {"id": 102278, "name": "Flanking Strike", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102288, 102271, 102277], "prev": [102274, 102265, 102266], "entries": [{"id": 126338, "definitionId": 131164, "maxRanks": 1, "type": "active", "name": "Flanking Strike", "spellId": 269751, "icon": "ability_hunter_invigeration", "index": 100}]}, {"id": 102286, "name": "Frenzy Strikes", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102277], "prev": [102290], "entries": [{"id": 126346, "definitionId": 131172, "maxRanks": 1, "type": "passive", "name": "Frenzy Strikes", "spellId": 294029, "icon": "ability_demonhunter_manabreak", "index": 100}]}, {"id": 102267, "name": "Merciless Blows", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102280], "prev": [102290], "entries": [{"id": 126327, "definitionId": 131153, "maxRanks": 1, "type": "passive", "name": "Merciless Blows", "spellId": 459868, "icon": "ability_hunter_swiftstrike", "index": 100}]}, {"id": 102260, "name": "Viper's Venom", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102280, 102276, 102269], "prev": [102268, 102256, 102259], "entries": [{"id": 126320, "definitionId": 131146, "maxRanks": 1, "type": "passive", "name": "Viper's Venom", "spellId": 268501, "icon": "ability_hunter_potentvenom", "index": 100}]}, {"id": 102270, "name": "Bloodseeker", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102269], "prev": [102256], "entries": [{"id": 126330, "definitionId": 131156, "maxRanks": 1, "type": "passive", "name": "Bloodseeker", "spellId": 260248, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 102288, "name": "Ranger", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281], "prev": [102287, 102278], "entries": [{"id": 126348, "definitionId": 131174, "maxRanks": 1, "type": "passive", "name": "Ranger", "spellId": 385695, "icon": "ability_hunter_thrillofthehunt", "index": 100}]}, {"id": 102271, "name": "Exposed Flank", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281], "prev": [102278], "entries": [{"id": 126331, "definitionId": 131157, "maxRanks": 1, "type": "passive", "name": "Exposed Flank", "spellId": 459861, "icon": "ability_hunter_animalhandler", "index": 100}]}, {"id": 102277, "name": "Tactical Advantage", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281, 102289], "prev": [102278, 102286], "entries": [{"id": 126337, "definitionId": 131163, "maxRanks": 1, "type": "passive", "name": "Tactical Advantage", "spellId": 378951, "icon": "ability_hunter_zenarchery", "index": 100}]}, {"id": 102280, "name": "Sic 'Em", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102289, 102282], "prev": [102267, 102260], "entries": [{"id": 126340, "definitionId": 131166, "maxRanks": 1, "type": "passive", "name": "Sic 'Em", "spellId": 459920, "icon": "ability_hunter_sickem", "index": 100}]}, {"id": 102276, "name": "Contagious Reagents", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102282], "prev": [102260], "entries": [{"id": 126336, "definitionId": 131162, "maxRanks": 1, "type": "passive", "name": "Contagious Reagents", "spellId": 459741, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 102269, "name": "Outland Venom", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102282], "prev": [102260, 102270], "entries": [{"id": 126329, "definitionId": 131155, "maxRanks": 1, "type": "passive", "name": "Outland Venom", "spellId": 459939, "icon": "ability_creature_disease_04", "index": 100}]}, {"id": 102281, "name": "Explosives Expert", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102275], "prev": [102277, 102271, 102288], "entries": [{"id": 126341, "definitionId": 131167, "maxRanks": 2, "type": "passive", "name": "Explosives Expert", "spellId": 378937, "icon": "inv_misc_bomb_05", "index": 100}]}, {"id": 102289, "name": "Sweeping Spear", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102252], "prev": [102277, 102280], "entries": [{"id": 126349, "definitionId": 131175, "maxRanks": 2, "type": "passive", "name": "Sweeping Spear", "spellId": 378950, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 102282, "name": "Killer Companion", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102291], "prev": [102276, 102269, 102280], "entries": [{"id": 126342, "definitionId": 131168, "maxRanks": 2, "type": "passive", "name": "Killer Companion", "spellId": 378955, "icon": "ability_hunter_masterscall", "index": 100}]}, {"id": 102275, "name": "Fury of the Eagle", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102261], "prev": [102281], "entries": [{"id": 126335, "definitionId": 131161, "maxRanks": 1, "type": "active", "name": "Fury of the Eagle", "spellId": 203415, "icon": "inv_polearm_2h_artifacteagle_d_01", "index": 100}]}, {"id": 102252, "name": "Coordinated Assault", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102258, 102273], "prev": [102289], "entries": [{"id": 126311, "definitionId": 131137, "maxRanks": 1, "type": "active", "name": "Coordinated Assault", "spellId": 360952, "icon": "inv__coordinatedassault", "index": 100}]}, {"id": 102291, "name": "Spearhead", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102284], "prev": [102282], "entries": [{"id": 126351, "definitionId": 131177, "maxRanks": 1, "type": "active", "name": "Spearhead", "spellId": 360966, "icon": "ability_hunter_spearhead", "index": 100}]}, {"id": 102261, "name": "Ruthless Marauder", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 2, "next": [], "prev": [102275], "entries": [{"id": 126321, "definitionId": 131147, "maxRanks": 2, "type": "passive", "name": "Ruthless Marauder", "spellId": 385718, "icon": "ability_rogue_findweakness", "index": 100}]}, {"id": 102258, "name": "Symbiotic Adrenaline / Relentless Primal Ferocity", "type": "choice", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102252], "entries": [{"id": 126318, "definitionId": 131144, "maxRanks": 1, "type": "passive", "name": "Symbiotic Adrenaline", "spellId": 459875, "icon": "ability_rogue_bloodyeye", "index": 100}, {"id": 126317, "definitionId": 131143, "maxRanks": 1, "type": "passive", "name": "Relentless Primal Ferocity", "spellId": 459922, "icon": "ability_xavius_tormentingswipe", "index": 200}]}, {"id": 102273, "name": "Bombardier", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102252], "entries": [{"id": 126333, "definitionId": 131159, "maxRanks": 1, "type": "passive", "name": "Bombardier", "spellId": 389880, "icon": "inv_eng_bombfire", "index": 100}]}, {"id": 102284, "name": "Deadly Duo", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102291], "entries": [{"id": 126344, "definitionId": 131170, "maxRanks": 1, "type": "passive", "name": "Deadly Duo", "spellId": 378962, "icon": "ability_hunter_separationanxiety", "index": 100}]}], "heroNodes": [{"id": 94976, "name": "Sentinel", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 42, "next": [94989, 94973, 94981], "prev": [], "entries": [{"id": 117573, "definitionId": 122585, "maxRanks": 1, "type": "passive", "name": "Sentinel", "spellId": 450369, "icon": "inv_magicalowlbearmount", "index": 100}], "freeNode": true}, {"id": 94989, "name": "Don't Look Back", "type": "single", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94958], "prev": [94976], "entries": [{"id": 117586, "definitionId": 122598, "maxRanks": 1, "type": "passive", "name": "Don't Look Back", "spellId": 450373, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 94973, "name": "Extrapolated Shots", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94990], "prev": [94976], "entries": [{"id": 117570, "definitionId": 122582, "maxRanks": 1, "type": "passive", "name": "Extrapolated Shots", "spellId": 450374, "icon": "ability_hunter_huntingparty", "index": 100}]}, {"id": 94981, "name": "Sentinel Precision", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94971], "prev": [94976], "entries": [{"id": 117578, "definitionId": 122590, "maxRanks": 1, "type": "passive", "name": "Sentinel Precision", "spellId": 450375, "icon": "inv_weapon_shortblade_83", "index": 100}]}, {"id": 94958, "name": "Release and Reload", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94970], "prev": [94989], "entries": [{"id": 117555, "definitionId": 122567, "maxRanks": 1, "type": "passive", "name": "Release and Reload", "spellId": 450376, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94990, "name": "Catch Out / Sideline", "type": "choice", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94965], "prev": [94973], "entries": [{"id": 117587, "definitionId": 122599, "maxRanks": 1, "type": "passive", "name": "Catch Out", "spellId": 451516, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 123869, "definitionId": 128707, "maxRanks": 1, "type": "passive", "name": "Sideline", "spellId": 450378, "icon": "ability_rogue_trip", "index": 200}]}, {"id": 94971, "name": "Invigorating Pulse", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94980], "prev": [94981], "entries": [{"id": 117568, "definitionId": 122580, "maxRanks": 1, "type": "passive", "name": "Invigorating Pulse", "spellId": 450379, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 94970, "name": "Sentinel Watch / Eyes Closed", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94958], "entries": [{"id": 117567, "definitionId": 122579, "maxRanks": 1, "type": "passive", "name": "Sentinel Watch", "spellId": 451546, "icon": "inv_quiver_1h_sylvanas_d_01", "index": 100}, {"id": 123871, "definitionId": 128709, "maxRanks": 1, "type": "passive", "name": "Eyes Closed", "spellId": 450381, "icon": "inv_trickshot", "index": 200}]}, {"id": 94965, "name": "Symphonic Arsenal", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94990], "entries": [{"id": 117562, "definitionId": 122574, "maxRanks": 1, "type": "passive", "name": "Symphonic Arsenal", "spellId": 450383, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 94980, "name": "Overwatch / Crescent Steel", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94971], "entries": [{"id": 117577, "definitionId": 122589, "maxRanks": 1, "type": "passive", "name": "Overwatch", "spellId": 450384, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 123870, "definitionId": 128708, "maxRanks": 1, "type": "passive", "name": "Crescent Steel", "spellId": 451530, "icon": "inv_enchant_crescentoil", "index": 200}]}, {"id": 94978, "name": "Lunar Storm", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 42, "next": [], "prev": [94965, 94970, 94980], "entries": [{"id": 117575, "definitionId": 122587, "maxRanks": 1, "type": "passive", "name": "Lunar Storm", "spellId": 450385, "icon": "inv_ability_sentinelhunter_lunarstorm", "index": 100}]}, {"id": 94991, "name": "Vicious Hunt", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 43, "next": [94985, 94992, 94962], "prev": [], "entries": [{"id": 117588, "definitionId": 122600, "maxRanks": 1, "type": "passive", "name": "Vicious Hunt", "spellId": 445404, "icon": "inv_ability_packleaderhunter_vicioushunt", "index": 100}], "freeNode": true}, {"id": 94985, "name": "Pack Coordination", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94972], "prev": [94991], "entries": [{"id": 117582, "definitionId": 122594, "maxRanks": 1, "type": "passive", "name": "Pack Coordination", "spellId": 445505, "icon": "ability_hunter_separationanxiety", "index": 100}]}, {"id": 94992, "name": "Howl of the Pack", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94984], "prev": [94991], "entries": [{"id": 117589, "definitionId": 122601, "maxRanks": 1, "type": "passive", "name": "Howl of the Pack", "spellId": 445707, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 94962, "name": "Wild Attacks", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94988], "prev": [94991], "entries": [{"id": 117559, "definitionId": 122571, "maxRanks": 1, "type": "passive", "name": "Wild Attacks", "spellId": 445708, "icon": "inv_misc_bone_09", "index": 100}]}, {"id": 94972, "name": "Den Recovery", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94969], "prev": [94985], "entries": [{"id": 117569, "definitionId": 122581, "maxRanks": 1, "type": "passive", "name": "Den Recovery", "spellId": 445710, "icon": "ability_shaman_freedomwolf", "index": 100}]}, {"id": 94984, "name": "Tireless Hunt / Cornered Prey", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94967], "prev": [94992], "entries": [{"id": 117581, "definitionId": 122593, "maxRanks": 1, "type": "passive", "name": "Tireless Hunt", "spellId": 445701, "icon": "ability_mount_jungletiger", "index": 100}, {"id": 123782, "definitionId": 128620, "maxRanks": 1, "type": "passive", "name": "Cornered Prey", "spellId": 445702, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 94988, "name": "Frenzied Tear", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94979], "prev": [94962], "entries": [{"id": 117585, "definitionId": 122597, "maxRanks": 1, "type": "passive", "name": "Frenzied Tear", "spellId": 445696, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 94969, "name": "Scattered Prey / Covering Fire", "type": "choice", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94972], "entries": [{"id": 117566, "definitionId": 122578, "maxRanks": 1, "type": "passive", "name": "Scattered Prey", "spellId": 445768, "icon": "inv_misc_bone_09", "index": 100}, {"id": 123783, "definitionId": 128621, "maxRanks": 1, "type": "passive", "name": "Covering Fire", "spellId": 445715, "icon": "ability_hunter_runningshot", "index": 200}]}, {"id": 94967, "name": "Cull the Herd", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94984], "entries": [{"id": 117564, "definitionId": 122576, "maxRanks": 1, "type": "passive", "name": "Cull the Herd", "spellId": 445717, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 94979, "name": "Furious Assault / Beast of Opportunity", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94988], "entries": [{"id": 117576, "definitionId": 122588, "maxRanks": 1, "type": "passive", "name": "Furious Assault", "spellId": 445699, "icon": "spell_druid_feralchargecat", "index": 100}, {"id": 123781, "definitionId": 128619, "maxRanks": 1, "type": "passive", "name": "Beast of Opportunity", "spellId": 445700, "icon": "ability_hunter_catlikereflexes", "index": 200}]}, {"id": 94966, "name": "Pack Assault", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 43, "next": [], "prev": [94967, 94969, 94979], "entries": [{"id": 117563, "definitionId": 122575, "maxRanks": 1, "type": "passive", "name": "Pack Assault", "spellId": 445721, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}], "subTreeNodes": [{"id": 99833, "name": "Pack Leader / Sentinel", "type": "subtree", "posX": 9000, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123350, "type": "subtree", "name": "Pack Leader", "traitSubTreeId": 43, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-packleader", "nodes": [94991, 94985, 94992, 94962, 94972, 94984, 94988, 94969, 94967, 94979, 94966]}, {"id": 123349, "type": "subtree", "name": "Sentinel", "traitSubTreeId": 42, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-sentinel", "nodes": [94976, 94989, 94973, 94981, 94958, 94990, 94971, 94970, 94965, 94980, 94978]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102306, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]}, {"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Assassination", "specId": 259, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}], "freeNode": true}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}]}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Shadowstep", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "active", "name": "Shadowstep", "spellId": 394931, "visibleSpellId": 36554, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Echoing Reprimand", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 1, "type": "active", "name": "Echoing Reprimand", "spellId": 385616, "icon": "ability_bastion_rogue", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Resounding Clarity / Reverberation", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Resounding Clarity", "spellId": 381622, "icon": "ability_bastion_rogue", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Reverberation", "spellId": 394332, "icon": "spell_animabastion_buff", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90783, "name": "Deadly Poison", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90628, 90635, 94536], "prev": [], "entries": [{"id": 112676, "definitionId": 117681, "maxRanks": 1, "type": "active", "name": "Deadly Poison", "spellId": 2823, "icon": "ability_rogue_dualweild", "index": 100}]}, {"id": 90628, "name": "Improved Shiv", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [94557], "prev": [90783], "entries": [{"id": 112513, "definitionId": 117518, "maxRanks": 1, "type": "passive", "name": "Improved Shiv", "spellId": 319032, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90635, "name": "Venomous Wounds", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90634], "prev": [90783], "entries": [{"id": 112520, "definitionId": 117525, "maxRanks": 1, "type": "passive", "name": "Venomous Wounds", "spellId": 79134, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94536, "name": "Path of Blood", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90625], "prev": [90783], "entries": [{"id": 117106, "definitionId": 122118, "maxRanks": 1, "type": "passive", "name": "Path of Blood", "spellId": 423054, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 94557, "name": "Rapid Injection", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90630, 90757], "prev": [90628], "entries": [{"id": 117139, "definitionId": 122151, "maxRanks": 1, "type": "passive", "name": "Rapid Injection", "spellId": 455072, "icon": "inv_ammo_arrow_04", "index": 100}]}, {"id": 90634, "name": "Improved Poisons", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90757, 94556], "prev": [90635], "entries": [{"id": 112519, "definitionId": 117524, "maxRanks": 1, "type": "passive", "name": "Improved Poisons", "spellId": 381624, "icon": "ability_poisons", "index": 100}]}, {"id": 90625, "name": "Bloody Mess", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [94556, 90780], "prev": [94536], "entries": [{"id": 112510, "definitionId": 117515, "maxRanks": 1, "type": "passive", "name": "Bloody Mess", "spellId": 381626, "icon": "ability_rogue_rupture", "index": 100}]}, {"id": 90630, "name": "Thrown Precision", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90633, 90632], "prev": [94557], "entries": [{"id": 112515, "definitionId": 117520, "maxRanks": 1, "type": "passive", "name": "Thrown Precision", "spellId": 381629, "icon": "ability_hunter_cobrashot", "index": 100}]}, {"id": 90757, "name": "Seal Fate", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90633, 90769], "prev": [90634, 94557], "entries": [{"id": 112649, "definitionId": 117654, "maxRanks": 1, "type": "passive", "name": "Seal Fate", "spellId": 14190, "icon": "ability_rogue_stayofexecution", "index": 100}]}, {"id": 94556, "name": "Caustic Spatter / Internal Bleeding", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90769, 90779], "prev": [90634, 90625], "entries": [{"id": 117137, "definitionId": 122149, "maxRanks": 1, "type": "passive", "name": "Caustic Spatter", "spellId": 421975, "icon": "ability_creature_poison_02", "index": 100}, {"id": 117136, "definitionId": 122148, "maxRanks": 1, "type": "passive", "name": "Internal Bleeding", "spellId": 381627, "icon": "ability_rogue_bloodsplatter", "index": 200}]}, {"id": 90780, "name": "Improved Garrote", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90779, 90623], "prev": [90625], "entries": [{"id": 112673, "definitionId": 117678, "maxRanks": 1, "type": "passive", "name": "Improved Garrote", "spellId": 381632, "icon": "ability_rogue_garrote", "index": 100}]}, {"id": 90632, "name": "Crimson Tempest", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94554], "prev": [90630], "entries": [{"id": 112517, "definitionId": 117522, "maxRanks": 1, "type": "active", "name": "Crimson Tempest", "spellId": 121411, "icon": "inv_knife_1h_cataclysm_c_05", "index": 100}]}, {"id": 90633, "name": "Lightweight Shiv", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94554, 90772], "prev": [90757, 90630], "entries": [{"id": 112518, "definitionId": 117523, "maxRanks": 1, "type": "passive", "name": "Lightweight Shiv", "spellId": 394983, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90769, "name": "Deathmark", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90772, 90626, 90624], "prev": [90757, 94556], "entries": [{"id": 112662, "definitionId": 117667, "maxRanks": 1, "type": "active", "name": "Deathmark", "spellId": 360194, "icon": "ability_rogue_deathmark", "index": 100}]}, {"id": 90779, "name": "Sanguine Blades", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90624, 94555], "prev": [94556, 90780], "entries": [{"id": 112672, "definitionId": 117677, "maxRanks": 1, "type": "passive", "name": "Sanguine Blades", "spellId": 200806, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 90623, "name": "Master Assassin", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94555], "prev": [90780], "entries": [{"id": 112508, "definitionId": 117513, "maxRanks": 1, "type": "passive", "name": "Master Assassin", "spellId": 255989, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 94554, "name": "Flying Daggers / Sanguine Stratagem", "type": "choice", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90771], "prev": [90633, 90632], "entries": [{"id": 117133, "definitionId": 122145, "maxRanks": 1, "type": "passive", "name": "Flying Daggers", "spellId": 381631, "icon": "ability_rogue_fanofknives", "index": 100}, {"id": 117132, "definitionId": 122144, "maxRanks": 1, "type": "passive", "name": "Sanguine Stratagem", "spellId": 457512, "icon": "archaeology_5_0_changkiboard", "index": 200}]}, {"id": 90772, "name": "Vicious Venoms", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90771, 90770], "prev": [90633, 90769], "entries": [{"id": 112665, "definitionId": 117670, "maxRanks": 2, "type": "passive", "name": "Vicious Venoms", "spellId": 381634, "icon": "ability_rogue_deadlybrew", "index": 100}]}, {"id": 90626, "name": "Fatal Concoction", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90621, 90768], "prev": [90769], "entries": [{"id": 112511, "definitionId": 117516, "maxRanks": 1, "type": "passive", "name": "Fatal Concoction", "spellId": 392384, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90624, "name": "Lethal Dose", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90777, 90776], "prev": [90769, 90779], "entries": [{"id": 112509, "definitionId": 117514, "maxRanks": 2, "type": "passive", "name": "Lethal Dose", "spellId": 381640, "icon": "ability_rogue_deviouspoisons", "index": 100}]}, {"id": 94555, "name": "Intent to Kill / Iron Wire", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90777], "prev": [90779, 90623], "entries": [{"id": 117135, "definitionId": 122147, "maxRanks": 1, "type": "passive", "name": "Intent to Kill", "spellId": 381630, "icon": "ability_rogue_bloodyeye", "index": 100}, {"id": 117134, "definitionId": 122146, "maxRanks": 1, "type": "passive", "name": "Iron Wire", "spellId": 196861, "icon": "inv_jewelcrafting_delicatecopperwire", "index": 200}]}, {"id": 90771, "name": "Systemic Failure", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90786, 90770], "prev": [94554, 90772], "entries": [{"id": 112664, "definitionId": 117669, "maxRanks": 1, "type": "passive", "name": "Systemic Failure", "spellId": 381652, "icon": "ability_skeer_bloodletting", "index": 100}]}, {"id": 90621, "name": "Amplifying Poison", "type": "single", "posX": 12010, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90766], "prev": [90626], "entries": [{"id": 112505, "definitionId": 117510, "maxRanks": 1, "type": "active", "name": "Amplifying Poison", "spellId": 381664, "icon": "inv_misc_herb_fellotus", "index": 100}]}, {"id": 90768, "name": "Twist the Knife", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90766], "prev": [90626], "entries": [{"id": 112661, "definitionId": 117666, "maxRanks": 1, "type": "passive", "name": "Twist the Knife", "spellId": 381669, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 90777, "name": "Doomblade", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90776, 90622], "prev": [94555, 90624], "entries": [{"id": 112670, "definitionId": 117675, "maxRanks": 1, "type": "passive", "name": "Doomblade", "spellId": 381673, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 90786, "name": "Blindside", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90785], "prev": [90771], "entries": [{"id": 112679, "definitionId": 117684, "maxRanks": 1, "type": "passive", "name": "Blindside", "spellId": 328085, "icon": "ability_rogue_focusedattacks", "index": 100}]}, {"id": 90770, "name": "Tiny Toxic Blade", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90785, 90767], "prev": [90771, 90772], "entries": [{"id": 112663, "definitionId": 117668, "maxRanks": 1, "type": "passive", "name": "Tiny Toxic Blade", "spellId": 381800, "icon": "ability_rogue_poisonedknife", "index": 100}]}, {"id": 90766, "name": "Dashing Scoundrel", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90767], "prev": [90768, 90621], "entries": [{"id": 112659, "definitionId": 117664, "maxRanks": 1, "type": "passive", "name": "Dashing Scoundrel", "spellId": 381797, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 90776, "name": "Shrouded Suffocation", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90767, 90775], "prev": [90777, 90624], "entries": [{"id": 112669, "definitionId": 117674, "maxRanks": 1, "type": "passive", "name": "Shrouded Suffocation", "spellId": 385478, "icon": "ability_rogue_garrote", "index": 100}]}, {"id": 90622, "name": "Serrated Bone Spikes", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90775], "prev": [90777], "entries": [{"id": 112507, "definitionId": 117512, "maxRanks": 1, "type": "passive", "name": "Serrated Bone Spikes", "spellId": 455352, "icon": "ability_maldraxxus_rogue", "index": 100}]}, {"id": 90785, "name": "Zoldyck Recipe", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90784, 94552], "prev": [90770, 90786], "entries": [{"id": 112678, "definitionId": 117683, "maxRanks": 2, "type": "passive", "name": "Zoldyck Recipe", "spellId": 381798, "icon": "archaeology_5_0_thunderkinginsignia", "index": 100}]}, {"id": 90767, "name": "Poison Bomb", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94552, 94553, 90774], "prev": [90776, 90770, 90766], "entries": [{"id": 112660, "definitionId": 117665, "maxRanks": 2, "type": "passive", "name": "Poison Bomb", "spellId": 255544, "icon": "rogue_paralytic_poison", "index": 100}]}, {"id": 90775, "name": "Scent of Blood", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90774, 94551], "prev": [90776, 90622], "entries": [{"id": 112668, "definitionId": 117673, "maxRanks": 2, "type": "passive", "name": "Scent of Blood", "spellId": 381799, "icon": "ability_rogue_rupture", "index": 100}]}, {"id": 90784, "name": "Arterial Precision", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90785], "entries": [{"id": 112677, "definitionId": 117682, "maxRanks": 1, "type": "passive", "name": "Arterial Precision", "spellId": 400783, "icon": "ability_rogue_surpriseattack", "index": 100}]}, {"id": 94552, "name": "Kingsbane", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767, 90785], "entries": [{"id": 117130, "definitionId": 122142, "maxRanks": 1, "type": "active", "name": "Kingsbane", "spellId": 385627, "icon": "inv_knife_1h_artifactgarona_d_01", "index": 100}]}, {"id": 94553, "name": "Dragon-Tempered Blades", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767], "entries": [{"id": 117131, "definitionId": 122143, "maxRanks": 1, "type": "passive", "name": "Dragon-Tempered Blades", "spellId": 381801, "icon": "spell_fire_flameblades", "index": 100}]}, {"id": 90774, "name": "Indiscriminate Carnage", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767, 90775], "entries": [{"id": 112667, "definitionId": 117672, "maxRanks": 1, "type": "passive", "name": "Indiscriminate Carnage", "spellId": 381802, "icon": "ability_rogue_indiscriminatecarnage", "index": 100}]}, {"id": 94551, "name": "Sudden Demise", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90775], "entries": [{"id": 117129, "definitionId": 122141, "maxRanks": 1, "type": "passive", "name": "Sudden Demise", "spellId": 423136, "icon": "ability_deathknight_hemorrhagicfever", "index": 100}]}], "heroNodes": [{"id": 95125, "name": "Hand of Fate", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 52, "next": [95138, 95122, 95130], "prev": [], "entries": [{"id": 117722, "definitionId": 122734, "maxRanks": 1, "type": "passive", "name": "Hand of Fate", "spellId": 452536, "icon": "inv_ability_fateboundrogue_handoffateheads", "index": 100}], "freeNode": true}, {"id": 95136, "name": "Deathstalker's Mark", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 53, "next": [95110, 95132, 95117], "prev": [], "entries": [{"id": 117733, "definitionId": 122745, "maxRanks": 1, "type": "passive", "name": "Deathstalker's Mark", "spellId": 457052, "icon": "inv_ability_deathstalkerrogue_deathstalkersmark", "index": 100}], "freeNode": true}, {"id": 95138, "name": "Chosen's Revelry / Tempted Fate", "type": "choice", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95107], "prev": [95125], "entries": [{"id": 117735, "definitionId": 122747, "maxRanks": 1, "type": "passive", "name": "Chosen's Revelry", "spellId": 454300, "icon": "ability_priest_heavanlyvoice", "index": 100}, {"id": 125132, "definitionId": 129964, "maxRanks": 1, "type": "passive", "name": "Tempted Fate", "spellId": 454286, "icon": "ability_rogue_sabreslash", "index": 200}]}, {"id": 95122, "name": "Mean Streak", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95139], "prev": [95125], "entries": [{"id": 117719, "definitionId": 122731, "maxRanks": 1, "type": "passive", "name": "Mean Streak", "spellId": 453428, "icon": "inv_sigil_thorim", "index": 100}]}, {"id": 95130, "name": "Inexorable March / Death's Arrival", "type": "choice", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95120], "prev": [95125], "entries": [{"id": 117727, "definitionId": 122739, "maxRanks": 1, "type": "passive", "name": "Inexorable March", "spellId": 454432, "icon": "ability_monk_ridethewind", "index": 100}, {"id": 125140, "definitionId": 129972, "maxRanks": 1, "type": "passive", "name": "Death's Arrival", "spellId": 454433, "icon": "achievement_guildperk_havegroup_willtravel", "index": 200}]}, {"id": 95110, "name": "Clear the Witnesses", "type": "single", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95135], "prev": [95136], "entries": [{"id": 117707, "definitionId": 122719, "maxRanks": 1, "type": "passive", "name": "Clear the Witnesses", "spellId": 457053, "icon": "ability_rogue_fanofknives", "index": 100}]}, {"id": 95132, "name": "Hunt Them Down", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95108], "prev": [95136], "entries": [{"id": 117729, "definitionId": 122741, "maxRanks": 1, "type": "passive", "name": "Hunt Them Down", "spellId": 457054, "icon": "ability_rogue_creepingvenom", "index": 100}]}, {"id": 95117, "name": "Singular Focus", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95109], "prev": [95136], "entries": [{"id": 117714, "definitionId": 122726, "maxRanks": 1, "type": "passive", "name": "Singular Focus", "spellId": 457055, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 95107, "name": "Deal Fate", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95119], "prev": [95138], "entries": [{"id": 117704, "definitionId": 122716, "maxRanks": 1, "type": "passive", "name": "Deal Fate", "spellId": 454419, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 95139, "name": "Edge Case", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "requiresNode": 90769, "next": [95114], "prev": [95122], "entries": [{"id": 117736, "definitionId": 122748, "maxRanks": 1, "type": "passive", "name": "Edge Case", "spellId": 453457, "icon": "item_icecrownnecklacea", "index": 100}]}, {"id": 95120, "name": "Fate Intertwined", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95129], "prev": [95130], "entries": [{"id": 117717, "definitionId": 122729, "maxRanks": 1, "type": "passive", "name": "Fate Intertwined", "spellId": 454429, "icon": "inv_cosmicvoid_beam", "index": 100}]}, {"id": 95135, "name": "Fatal Intent", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95106], "prev": [95110], "entries": [{"id": 117732, "definitionId": 122744, "maxRanks": 1, "type": "passive", "name": "Fatal Intent", "spellId": 461980, "icon": "ability_warrior_deepcuts", "index": 100}]}, {"id": 95108, "name": "Corrupt the Blood", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95131], "prev": [95132], "entries": [{"id": 117705, "definitionId": 122717, "maxRanks": 1, "type": "passive", "name": "Corrupt the Blood", "spellId": 457066, "icon": "ability_ironmaidens_bloodritual", "index": 100}]}, {"id": 95109, "name": "Lingering Darkness / Symbolic Victory", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95123], "prev": [95117], "entries": [{"id": 117706, "definitionId": 122718, "maxRanks": 1, "type": "passive", "name": "Lingering Darkness", "spellId": 457056, "icon": "ability_rogue_envelopingshadows", "index": 100}, {"id": 126030, "definitionId": 130862, "maxRanks": 1, "type": "passive", "name": "Symbolic Victory", "spellId": 457062, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 95119, "name": "Delivered Doom", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95107], "entries": [{"id": 117716, "definitionId": 122728, "maxRanks": 1, "type": "passive", "name": "Delivered Doom", "spellId": 454426, "icon": "ability_bossgorefiend_touchofdoom", "index": 100}]}, {"id": 95114, "name": "Inevitability / Destiny Defined", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95139], "entries": [{"id": 117711, "definitionId": 122723, "maxRanks": 1, "type": "passive", "name": "Inevitability", "spellId": 454434, "icon": "spell_ice_lament", "index": 100}, {"id": 125139, "definitionId": 129971, "maxRanks": 1, "type": "passive", "name": "Destiny Defined", "spellId": 454435, "icon": "ability_boss_fatescribe_rune6", "index": 200}]}, {"id": 95129, "name": "Double Jeopardy", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95120], "entries": [{"id": 117726, "definitionId": 122738, "maxRanks": 1, "type": "passive", "name": "Double Jeopardy", "spellId": 454430, "icon": "spell_nature_mirrorimage", "index": 100}]}, {"id": 95106, "name": "Ethereal Cloak / Bait and Switch", "type": "choice", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95135], "entries": [{"id": 117703, "definitionId": 122715, "maxRanks": 1, "type": "passive", "name": "Ethereal Cloak", "spellId": 457022, "icon": "spell_arcane_prismaticcloak", "index": 100}, {"id": 126029, "definitionId": 130861, "maxRanks": 1, "type": "passive", "name": "Bait and Switch", "spellId": 457034, "icon": "ability_druid_earthandsky", "index": 200}]}, {"id": 95131, "name": "Momentum of Despair / Follow the Blood", "type": "choice", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95108], "entries": [{"id": 117728, "definitionId": 122740, "maxRanks": 1, "type": "passive", "name": "Momentum of Despair", "spellId": 457067, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 126028, "definitionId": 130860, "maxRanks": 1, "type": "passive", "name": "Follow the Blood", "spellId": 457068, "icon": "sha_ability_rogue_bloodyeye_nightmare", "index": 200}]}, {"id": 95123, "name": "Shadewalker / Shroud of Night", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95109], "entries": [{"id": 117720, "definitionId": 122732, "maxRanks": 1, "type": "passive", "name": "Shadewalker", "spellId": 457057, "icon": "rogue_shadow_reflection", "index": 100}, {"id": 126027, "definitionId": 130859, "maxRanks": 1, "type": "passive", "name": "Shroud of Night", "spellId": 457063, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 95127, "name": "Fateful Ending", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 52, "next": [], "prev": [95114, 95119, 95129], "entries": [{"id": 117724, "definitionId": 122736, "maxRanks": 1, "type": "passive", "name": "Fateful Ending", "spellId": 454428, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 95142, "name": "Darkest Night", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 53, "next": [], "prev": [95131, 95106, 95123], "entries": [{"id": 117739, "definitionId": 122751, "maxRanks": 1, "type": "passive", "name": "Darkest Night", "spellId": 457058, "icon": "spell_shadow_twilight", "index": 100}]}], "subTreeNodes": [{"id": 99844, "name": "Deathstalker / Fatebound", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123375, "type": "subtree", "name": "Deathstalker", "traitSubTreeId": 53, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-deathstalker", "nodes": [95136, 95110, 95132, 95117, 95135, 95108, 95109, 95106, 95131, 95123, 95142]}, {"id": 123371, "type": "subtree", "name": "Fatebound", "traitSubTreeId": 52, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-fatebound", "nodes": [95125, 95138, 95122, 95130, 95107, 95139, 95120, 95119, 95114, 95129, 95127]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]}, {"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Outlaw", "specId": 260, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}], "freeNode": true}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Shadowstep", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "active", "name": "Shadowstep", "spellId": 394931, "visibleSpellId": 36554, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Echoing Reprimand", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 1, "type": "active", "name": "Echoing Reprimand", "spellId": 385616, "icon": "ability_bastion_rogue", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Resounding Clarity / Reverberation", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Resounding Clarity", "spellId": 381622, "icon": "ability_bastion_rogue", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Reverberation", "spellId": 394332, "icon": "spell_animabastion_buff", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90683, "name": "Opportunity", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90659, 90681, 90673], "prev": [], "entries": [{"id": 112571, "definitionId": 117576, "maxRanks": 1, "type": "passive", "name": "Opportunity", "spellId": 279876, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 90659, "name": "Adrenaline Rush", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90645, 90646, 90648], "prev": [90683], "entries": [{"id": 112545, "definitionId": 117550, "maxRanks": 1, "type": "active", "name": "Adrenaline Rush", "spellId": 13750, "icon": "spell_shadow_shadowworddominate", "index": 100}]}, {"id": 90681, "name": "Retractable Hook", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90643, 90755], "prev": [90683], "entries": [{"id": 112569, "definitionId": 117574, "maxRanks": 1, "type": "passive", "name": "Retractable Hook", "spellId": 256188, "icon": "ability_rogue_grapplinghook", "index": 100}]}, {"id": 90645, "name": "Dirty Tricks", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [90755], "prev": [90659], "entries": [{"id": 112531, "definitionId": 117536, "maxRanks": 1, "type": "passive", "name": "Dirty Tricks", "spellId": 108216, "icon": "ability_rogue_dirtydeeds", "index": 100}]}, {"id": 90646, "name": "Combat Potency", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90755, 90661], "prev": [90659], "entries": [{"id": 112532, "definitionId": 117537, "maxRanks": 1, "type": "passive", "name": "Combat Potency", "spellId": 61329, "icon": "inv_weapon_shortblade_38", "index": 100}]}, {"id": 90648, "name": "Combat Stamina", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90661], "prev": [90659], "entries": [{"id": 112534, "definitionId": 117539, "maxRanks": 1, "type": "passive", "name": "Combat Stamina", "spellId": 381877, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 90673, "name": "Hit and Run", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90661, 90647], "prev": [90683], "entries": [{"id": 112560, "definitionId": 117565, "maxRanks": 1, "type": "passive", "name": "Hit and Run", "spellId": 196922, "icon": "ability_rogue_fleetfooted", "index": 100}]}, {"id": 90643, "name": "Blinding Powder", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90679, 90642], "prev": [90681], "entries": [{"id": 112529, "definitionId": 117534, "maxRanks": 1, "type": "passive", "name": "Blinding Powder", "spellId": 256165, "icon": "inv_misc_ammo_gunpowder_06", "index": 100}]}, {"id": 90755, "name": "Float Like a Butterfly / Sting Like a Bee", "type": "choice", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90679, 94566, 90662], "prev": [90646, 90681, 90645], "entries": [{"id": 112647, "definitionId": 117652, "maxRanks": 1, "type": "passive", "name": "Float Like a Butterfly", "spellId": 354897, "icon": "inv_pet_butterfly_orange", "index": 100}, {"id": 117173, "definitionId": 122185, "maxRanks": 1, "type": "passive", "name": "Sting Like a Bee", "spellId": 131511, "icon": "inv_giantwasp_orange", "index": 200}]}, {"id": 90661, "name": "Riposte", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90662, 90660, 90663], "prev": [90673, 90648, 90646], "entries": [{"id": 112547, "definitionId": 117552, "maxRanks": 1, "type": "passive", "name": "Riposte", "spellId": 344363, "icon": "ability_warrior_challange", "index": 100}]}, {"id": 90647, "name": "Precision Shot", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90663, 90672], "prev": [90673], "entries": [{"id": 112533, "definitionId": 117538, "maxRanks": 1, "type": "passive", "name": "Precision Shot", "spellId": 428377, "icon": "inv_legendary_gun", "index": 100}]}, {"id": 90642, "name": "Heavy Hitter", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90680], "prev": [90643], "entries": [{"id": 112528, "definitionId": 117533, "maxRanks": 1, "type": "passive", "name": "Heavy Hitter", "spellId": 381885, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 90679, "name": "Devious Stratagem", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90680, 90649, 90656], "prev": [90755, 90643], "entries": [{"id": 112567, "definitionId": 117572, "maxRanks": 1, "type": "passive", "name": "Devious Stratagem", "spellId": 394321, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 94566, "name": "Killing Spree", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90656], "prev": [90755], "entries": [{"id": 117149, "definitionId": 122161, "maxRanks": 1, "type": "active", "name": "Killing Spree", "spellId": 51690, "icon": "ability_rogue_murderspree", "index": 100}]}, {"id": 90662, "name": "Fatal Flourish", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90656, 90651], "prev": [90755, 90661], "entries": [{"id": 112548, "definitionId": 117553, "maxRanks": 1, "type": "passive", "name": "Fatal Flourish", "spellId": 35551, "icon": "ability_rogue_unfairadvantage", "index": 100}]}, {"id": 90660, "name": "Ambidexterity", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90651], "prev": [90661], "entries": [{"id": 112546, "definitionId": 117551, "maxRanks": 1, "type": "passive", "name": "Ambidexterity", "spellId": 381822, "icon": "inv_glove_cloth_oribosdungeon_c_01", "index": 100}]}, {"id": 90663, "name": "Quick Draw", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90651, 90753, 90671], "prev": [90661, 90647], "entries": [{"id": 112549, "definitionId": 117554, "maxRanks": 1, "type": "passive", "name": "Quick Draw", "spellId": 196938, "icon": "inv_weapon_rifle_40", "index": 100}]}, {"id": 90672, "name": "Deft Maneuvers", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90671], "prev": [90647], "entries": [{"id": 112559, "definitionId": 117564, "maxRanks": 1, "type": "passive", "name": "Deft Maneuvers", "spellId": 381878, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90680, "name": "Ruthlessness", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678, 90641], "prev": [90679, 90642], "entries": [{"id": 112568, "definitionId": 117573, "maxRanks": 1, "type": "passive", "name": "Ruthlessness", "spellId": 14161, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 90649, "name": "Swift Slasher", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678], "prev": [90679], "entries": [{"id": 112535, "definitionId": 117540, "maxRanks": 1, "type": "passive", "name": "Swift Slasher", "spellId": 381988, "icon": "ability_rogue_slicedice", "index": 100}]}, {"id": 90656, "name": "Loaded Dice", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678, 90654], "prev": [90679, 90662, 94566], "entries": [{"id": 112542, "definitionId": 117547, "maxRanks": 1, "type": "passive", "name": "Loaded Dice", "spellId": 256170, "icon": "ability_rogue_rollthebones", "index": 100}]}, {"id": 90651, "name": "Sleight of Hand", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90654, 90668], "prev": [90663, 90660, 90662], "entries": [{"id": 112537, "definitionId": 117542, "maxRanks": 1, "type": "passive", "name": "Sleight of Hand", "spellId": 381839, "icon": "inv_misc_dice_02", "index": 100}]}, {"id": 90753, "name": "Thief's Versatility", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90668], "prev": [90663], "entries": [{"id": 112645, "definitionId": 117650, "maxRanks": 1, "type": "passive", "name": "Thief's Versatility", "spellId": 381619, "icon": "ability_rogue_versatility", "index": 100}]}, {"id": 90671, "name": "Improved Between the Eyes", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90668, 90669], "prev": [90672, 90663], "entries": [{"id": 112558, "definitionId": 117563, "maxRanks": 1, "type": "passive", "name": "Improved Between the Eyes", "spellId": 235484, "icon": "inv_weapon_rifle_01", "index": 100}]}, {"id": 90641, "name": "Audacity", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90677], "prev": [90680], "entries": [{"id": 112527, "definitionId": 117532, "maxRanks": 1, "type": "passive", "name": "Audacity", "spellId": 381845, "icon": "ability_rogue_ambush", "index": 100}]}, {"id": 90678, "name": "Triple Threat", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90677, 90664], "prev": [90656, 90680, 90649], "entries": [{"id": 112566, "definitionId": 117571, "maxRanks": 1, "type": "passive", "name": "Triple Threat", "spellId": 381894, "icon": "ability_dualwield", "index": 100}]}, {"id": 90654, "name": "Improved Adrenaline Rush", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90664, 90655, 90670], "prev": [90651, 90656], "entries": [{"id": 112540, "definitionId": 117545, "maxRanks": 1, "type": "passive", "name": "Improved Adrenaline Rush", "spellId": 395422, "icon": "spell_shadow_shadowworddominate", "index": 100}]}, {"id": 90668, "name": "Improved Main Gauche", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90670, 90667], "prev": [90651, 90671, 90753], "entries": [{"id": 112555, "definitionId": 117560, "maxRanks": 1, "type": "passive", "name": "Improved Main Gauche", "spellId": 382746, "icon": "inv_weapon_shortblade_15", "index": 100}]}, {"id": 90669, "name": "Dancing Steel", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90667], "prev": [90671], "entries": [{"id": 112556, "definitionId": 117561, "maxRanks": 1, "type": "passive", "name": "Dancing Steel", "spellId": 272026, "icon": "ability_warrior_punishingblow", "index": 100}]}, {"id": 90677, "name": "Underhanded Upper Hand", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90676], "prev": [90641, 90678], "entries": [{"id": 112565, "definitionId": 117570, "maxRanks": 1, "type": "passive", "name": "Underhanded Upper Hand", "spellId": 424044, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 90664, "name": "Blade Rush", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90676], "prev": [90678, 90654], "entries": [{"id": 112551, "definitionId": 117556, "maxRanks": 1, "type": "active", "name": "Blade Rush", "spellId": 271877, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 90655, "name": "Count the Odds", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90653], "prev": [90654], "entries": [{"id": 112541, "definitionId": 117546, "maxRanks": 1, "type": "passive", "name": "Count the Odds", "spellId": 381982, "icon": "inv_misc_dice_01", "index": 100}]}, {"id": 90670, "name": "Ace Up Your Sleeve", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90666], "prev": [90654, 90668], "entries": [{"id": 112557, "definitionId": 117562, "maxRanks": 1, "type": "passive", "name": "Ace Up Your Sleeve", "spellId": 381828, "icon": "inv_inscription_darkmooncard_putrescence", "index": 100}]}, {"id": 90667, "name": "Precise Cuts", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90666], "prev": [90669, 90668], "entries": [{"id": 112554, "definitionId": 117559, "maxRanks": 1, "type": "passive", "name": "Precise Cuts", "spellId": 381985, "icon": "ability_warrior_punishingblow", "index": 100}]}, {"id": 90676, "name": "Take 'em by Surprise", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90675, 94565], "prev": [90677, 90664], "entries": [{"id": 112563, "definitionId": 117568, "maxRanks": 2, "type": "passive", "name": "Take 'em by Surprise", "spellId": 382742, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 90653, "name": "Summarily Dispatched", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94565, 90652, 90644], "prev": [90655], "entries": [{"id": 112539, "definitionId": 117544, "maxRanks": 2, "type": "passive", "name": "Summarily Dispatched", "spellId": 381990, "icon": "ability_rogue_waylay", "index": 100}]}, {"id": 90666, "name": "Fan the Hammer", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90644, 90665], "prev": [90667, 90670], "entries": [{"id": 112553, "definitionId": 117558, "maxRanks": 2, "type": "passive", "name": "Fan the Hammer", "spellId": 381846, "icon": "ability_rogue_pistolshot", "index": 100}]}, {"id": 90675, "name": "Hidden Opportunity", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90676], "entries": [{"id": 112562, "definitionId": 117567, "maxRanks": 1, "type": "passive", "name": "Hidden Opportunity", "spellId": 383281, "icon": "ability_rogue_ambush", "index": 100}]}, {"id": 94565, "name": "Crackshot", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90676, 90653], "entries": [{"id": 117148, "definitionId": 122160, "maxRanks": 1, "type": "passive", "name": "Crackshot", "spellId": 423703, "icon": "ability_hisek_aim", "index": 100}]}, {"id": 90652, "name": "Keep It Rolling", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90653], "entries": [{"id": 112538, "definitionId": 117543, "maxRanks": 1, "type": "active", "name": "Keep It Rolling", "spellId": 381989, "icon": "ability_rogue_keepitrolling", "index": 100}]}, {"id": 90644, "name": "Ghostly Strike / Ghostly Strike", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90653, 90666], "entries": [{"id": 112530, "definitionId": 117535, "maxRanks": 1, "type": "active", "name": "Ghostly Strike", "spellId": 196937, "icon": "ability_creature_cursed_02", "index": 100}, {"id": 117162, "definitionId": 122174, "maxRanks": 1, "type": "active", "name": "Ghostly Strike", "spellId": 196937, "icon": "ability_creature_cursed_02", "index": 200}]}, {"id": 90665, "name": "Greenskin's Wickers", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90666], "entries": [{"id": 112552, "definitionId": 117557, "maxRanks": 1, "type": "passive", "name": "Greenskin's Wickers", "spellId": 386823, "icon": "ability_creature_cursed_04", "index": 100}]}], "heroNodes": [{"id": 95125, "name": "Hand of Fate", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 52, "next": [95138, 95122, 95130], "prev": [], "entries": [{"id": 117722, "definitionId": 122734, "maxRanks": 1, "type": "passive", "name": "Hand of Fate", "spellId": 452536, "icon": "inv_ability_fateboundrogue_handoffateheads", "index": 100}], "freeNode": true}, {"id": 95138, "name": "Chosen's Revelry / Tempted Fate", "type": "choice", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95107], "prev": [95125], "entries": [{"id": 117735, "definitionId": 122747, "maxRanks": 1, "type": "passive", "name": "Chosen's Revelry", "spellId": 454300, "icon": "ability_priest_heavanlyvoice", "index": 100}, {"id": 125132, "definitionId": 129964, "maxRanks": 1, "type": "passive", "name": "Tempted Fate", "spellId": 454286, "icon": "ability_rogue_sabreslash", "index": 200}]}, {"id": 95122, "name": "Mean Streak", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95139], "prev": [95125], "entries": [{"id": 117719, "definitionId": 122731, "maxRanks": 1, "type": "passive", "name": "Mean Streak", "spellId": 453428, "icon": "inv_sigil_thorim", "index": 100}]}, {"id": 95130, "name": "Inexorable March / Death's Arrival", "type": "choice", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95120], "prev": [95125], "entries": [{"id": 117727, "definitionId": 122739, "maxRanks": 1, "type": "passive", "name": "Inexorable March", "spellId": 454432, "icon": "ability_monk_ridethewind", "index": 100}, {"id": 125140, "definitionId": 129972, "maxRanks": 1, "type": "passive", "name": "Death's Arrival", "spellId": 454433, "icon": "achievement_guildperk_havegroup_willtravel", "index": 200}]}, {"id": 95107, "name": "Deal Fate", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95119], "prev": [95138], "entries": [{"id": 117704, "definitionId": 122716, "maxRanks": 1, "type": "passive", "name": "Deal Fate", "spellId": 454419, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 95139, "name": "Edge Case", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "requiresNode": 90769, "next": [95114], "prev": [95122], "entries": [{"id": 117736, "definitionId": 122748, "maxRanks": 1, "type": "passive", "name": "Edge Case", "spellId": 453457, "icon": "item_icecrownnecklacea", "index": 100}]}, {"id": 95120, "name": "Fate Intertwined", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95129], "prev": [95130], "entries": [{"id": 117717, "definitionId": 122729, "maxRanks": 1, "type": "passive", "name": "Fate Intertwined", "spellId": 454429, "icon": "inv_cosmicvoid_beam", "index": 100}]}, {"id": 95119, "name": "Delivered Doom", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95107], "entries": [{"id": 117716, "definitionId": 122728, "maxRanks": 1, "type": "passive", "name": "Delivered Doom", "spellId": 454426, "icon": "ability_bossgorefiend_touchofdoom", "index": 100}]}, {"id": 95114, "name": "Inevitability / Destiny Defined", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95139], "entries": [{"id": 117711, "definitionId": 122723, "maxRanks": 1, "type": "passive", "name": "Inevitability", "spellId": 454434, "icon": "spell_ice_lament", "index": 100}, {"id": 125139, "definitionId": 129971, "maxRanks": 1, "type": "passive", "name": "Destiny Defined", "spellId": 454435, "icon": "ability_boss_fatescribe_rune6", "index": 200}]}, {"id": 95129, "name": "Double Jeopardy", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95120], "entries": [{"id": 117726, "definitionId": 122738, "maxRanks": 1, "type": "passive", "name": "Double Jeopardy", "spellId": 454430, "icon": "spell_nature_mirrorimage", "index": 100}]}, {"id": 95127, "name": "Fateful Ending", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 52, "next": [], "prev": [95114, 95119, 95129], "entries": [{"id": 117724, "definitionId": 122736, "maxRanks": 1, "type": "passive", "name": "Fateful Ending", "spellId": 454428, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 95140, "name": "Unseen Blade", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 51, "next": [95141, 95111, 95121], "prev": [], "entries": [{"id": 117737, "definitionId": 122749, "maxRanks": 1, "type": "passive", "name": "Unseen Blade", "spellId": 441146, "icon": "inv_weapon_shortblade_55", "index": 100}], "freeNode": true}, {"id": 95121, "name": "Surprising Strikes", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95134], "prev": [95140], "entries": [{"id": 117718, "definitionId": 122730, "maxRanks": 1, "type": "passive", "name": "Surprising Strikes", "spellId": 441273, "icon": "ability_rogue_surpriseattack2", "index": 100}]}, {"id": 95141, "name": "Smoke / Mirrors", "type": "choice", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95133], "prev": [95140], "entries": [{"id": 117738, "definitionId": 122750, "maxRanks": 1, "type": "passive", "name": "Smoke", "spellId": 441247, "icon": "rogue_dirtytricks", "index": 100}, {"id": 120130, "definitionId": 125030, "maxRanks": 1, "type": "passive", "name": "Mirrors", "spellId": 441250, "icon": "trade_archaeology_highbornesoulmirror", "index": 200}]}, {"id": 95111, "name": "Flawless Form", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95137], "prev": [95140], "entries": [{"id": 117708, "definitionId": 122720, "maxRanks": 1, "type": "passive", "name": "Flawless Form", "spellId": 441321, "icon": "inv_qiraj_jewelblessed", "index": 100}]}, {"id": 95134, "name": "So Tricky / Don't Be Suspicious", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95118], "prev": [95121], "entries": [{"id": 117731, "definitionId": 122743, "maxRanks": 1, "type": "passive", "name": "So Tricky", "spellId": 441403, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 120133, "definitionId": 125033, "maxRanks": 1, "type": "passive", "name": "Don't Be Suspicious", "spellId": 441415, "icon": "ability_rogue_disguise", "index": 200}]}, {"id": 95133, "name": "Devious Distractions", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95116], "prev": [95141], "entries": [{"id": 117730, "definitionId": 122742, "maxRanks": 1, "type": "passive", "name": "Devious Distractions", "spellId": 441263, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 95137, "name": "Thousand Cuts / Flickerstrike", "type": "choice", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95128], "prev": [95111], "entries": [{"id": 117734, "definitionId": 122746, "maxRanks": 1, "type": "passive", "name": "Thousand Cuts", "spellId": 441346, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}, {"id": 120131, "definitionId": 125031, "maxRanks": 1, "type": "passive", "name": "Flickerstrike", "spellId": 441359, "icon": "spell_nature_invisibilty", "index": 200}]}, {"id": 95118, "name": "Disorienting Strikes", "type": "single", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95115], "prev": [95134], "entries": [{"id": 117715, "definitionId": 122727, "maxRanks": 1, "type": "passive", "name": "Disorienting Strikes", "spellId": 441274, "icon": "petbattle_speed", "index": 100}]}, {"id": 95116, "name": "Cloud Cover / No Scruples", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95133], "entries": [{"id": 117713, "definitionId": 122725, "maxRanks": 1, "type": "passive", "name": "Cloud Cover", "spellId": 441429, "icon": "ability_rogue_smoke", "index": 100}, {"id": 120132, "definitionId": 125032, "maxRanks": 1, "type": "passive", "name": "No Scruples", "spellId": 441398, "icon": "ability_rogue_surpriseattack", "index": 200}]}, {"id": 95128, "name": "Nimble Flurry", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95137], "entries": [{"id": 117725, "definitionId": 122737, "maxRanks": 1, "type": "passive", "name": "Nimble Flurry", "spellId": 441367, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 95115, "name": "Coup de Grace", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 51, "next": [], "prev": [95116, 95118, 95128], "entries": [{"id": 117712, "definitionId": 122724, "maxRanks": 1, "type": "passive", "name": "Coup de Grace", "spellId": 441423, "icon": "inv_ability_tricksterrogue_coupdegrace", "index": 100}]}], "subTreeNodes": [{"id": 99843, "name": "Fatebound / Trickster", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123374, "type": "subtree", "name": "Fatebound", "traitSubTreeId": 52, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-fatebound", "nodes": [95125, 95138, 95122, 95130, 95107, 95139, 95120, 95119, 95114, 95129, 95127]}, {"id": 123372, "type": "subtree", "name": "Trickster", "traitSubTreeId": 51, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-trickster", "nodes": [95140, 95121, 95141, 95111, 95134, 95133, 95137, 95118, 95116, 95128, 95115]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]}, {"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Subtlety", "specId": 261, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}]}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}], "freeNode": true}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Shadowstep", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "active", "name": "Shadowstep", "spellId": 394931, "visibleSpellId": 36554, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Echoing Reprimand", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 1, "type": "active", "name": "Echoing Reprimand", "spellId": 385616, "icon": "ability_bastion_rogue", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Resounding Clarity / Reverberation", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Resounding Clarity", "spellId": 381622, "icon": "ability_bastion_rogue", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Reverberation", "spellId": 394332, "icon": "spell_animabastion_buff", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90690, "name": "Find Weakness", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90739, 90726, 90710], "prev": [], "entries": [{"id": 112578, "definitionId": 117583, "maxRanks": 1, "type": "passive", "name": "Find Weakness", "spellId": 91023, "icon": "ability_rogue_findweakness", "index": 100}]}, {"id": 90739, "name": "Improved Backstab", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [90698], "prev": [90690], "entries": [{"id": 112629, "definitionId": 117634, "maxRanks": 1, "type": "passive", "name": "Improved Backstab", "spellId": 319949, "icon": "ability_backstab", "index": 100}]}, {"id": 90726, "name": "Shadow Blades", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90728, 90725], "prev": [90690], "entries": [{"id": 112614, "definitionId": 117619, "maxRanks": 1, "type": "active", "name": "Shadow Blades", "spellId": 121471, "icon": "inv_knife_1h_grimbatolraid_d_03", "index": 100}]}, {"id": 90710, "name": "Improved Shuriken Storm", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90711], "prev": [90690], "entries": [{"id": 112598, "definitionId": 117603, "maxRanks": 1, "type": "passive", "name": "Improved Shuriken Storm", "spellId": 319951, "icon": "ability_rogue_shuriken_storm", "index": 100}]}, {"id": 90698, "name": "Shot in the Dark", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90700, 90727], "prev": [90739], "entries": [{"id": 112586, "definitionId": 117591, "maxRanks": 1, "type": "passive", "name": "Shot in the Dark", "spellId": 257505, "icon": "ability_cheapshot", "index": 100}]}, {"id": 90728, "name": "Quick Decisions", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [90727], "prev": [90726], "entries": [{"id": 112616, "definitionId": 117621, "maxRanks": 1, "type": "passive", "name": "Quick Decisions", "spellId": 382503, "icon": "inv_misc_hook_01", "index": 100}]}, {"id": 90725, "name": "Ephemeral Bond", "type": "single", "posX": 12600, "posY": 2700, "maxRanks": 1, "next": [90733], "prev": [90726], "entries": [{"id": 112613, "definitionId": 117618, "maxRanks": 1, "type": "passive", "name": "Ephemeral Bond", "spellId": 426563, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 90711, "name": "Exhilarating Execution", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90733, 94582], "prev": [90710], "entries": [{"id": 112599, "definitionId": 117604, "maxRanks": 1, "type": "passive", "name": "Exhilarating Execution", "spellId": 428486, "icon": "inv_weapon_hand_04", "index": 100}]}, {"id": 90700, "name": "Shrouded in Darkness", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90736, 90701], "prev": [90698], "entries": [{"id": 112588, "definitionId": 117593, "maxRanks": 1, "type": "passive", "name": "Shrouded in Darkness", "spellId": 382507, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 90727, "name": "Shadow Focus", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90736, 90699, 90734], "prev": [90698, 90728], "entries": [{"id": 112615, "definitionId": 117620, "maxRanks": 1, "type": "passive", "name": "Shadow Focus", "spellId": 108209, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90733, "name": "Cloaked in Shadows / Fade to Nothing", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90734, 90715, 90709], "prev": [90725, 90711], "entries": [{"id": 112622, "definitionId": 117627, "maxRanks": 1, "type": "passive", "name": "Cloaked in Shadows", "spellId": 382515, "icon": "inv_helm_cloth_shadowmoonclan_b_01", "index": 100}, {"id": 112621, "definitionId": 117626, "maxRanks": 1, "type": "passive", "name": "Fade to Nothing", "spellId": 382514, "icon": "ability_warlock_everlastingaffliction", "index": 200}]}, {"id": 94582, "name": "Night Terrors / Terrifying Pace", "type": "choice", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90709, 90714], "prev": [90711], "entries": [{"id": 117170, "definitionId": 122182, "maxRanks": 1, "type": "passive", "name": "Night Terrors", "spellId": 277953, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 117753, "definitionId": 122765, "maxRanks": 1, "type": "passive", "name": "Terrifying Pace", "spellId": 428387, "icon": "ability_druid_typhoon", "index": 200}]}, {"id": 90701, "name": "Swift Death", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90737], "prev": [90700], "entries": [{"id": 112589, "definitionId": 117594, "maxRanks": 1, "type": "passive", "name": "Swift Death", "spellId": 394309, "icon": "spell_shadow_rune", "index": 100}]}, {"id": 90736, "name": "Improved Shadow Techniques", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90737, 90703, 101715], "prev": [90700, 90727], "entries": [{"id": 112626, "definitionId": 117631, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Techniques", "spellId": 394023, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 90699, "name": "Gloomblade", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101715], "prev": [90727], "entries": [{"id": 112587, "definitionId": 117592, "maxRanks": 1, "type": "active", "name": "Gloomblade", "spellId": 200758, "icon": "ability_ironmaidens_convulsiveshadows", "index": 100}]}, {"id": 90734, "name": "Improved Shadow Dance", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101715, 90723], "prev": [90733, 90727], "entries": [{"id": 112623, "definitionId": 117628, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Dance", "spellId": 393972, "icon": "ability_rogue_shadowdance", "index": 100}]}, {"id": 90715, "name": "Secret Technique", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90723], "prev": [90733], "entries": [{"id": 112603, "definitionId": 117608, "maxRanks": 1, "type": "active", "name": "Secret Technique", "spellId": 280719, "icon": "ability_rogue_sinistercalling", "index": 100}]}, {"id": 90709, "name": "Relentless Strikes", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90723, 90722, 90717], "prev": [94582, 90733], "entries": [{"id": 112597, "definitionId": 117602, "maxRanks": 1, "type": "passive", "name": "Relentless Strikes", "spellId": 58423, "icon": "ability_warrior_decisivestrike", "index": 100}]}, {"id": 90714, "name": "Silent Storm", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90717], "prev": [94582], "entries": [{"id": 112602, "definitionId": 117607, "maxRanks": 1, "type": "passive", "name": "Silent Storm", "spellId": 385722, "icon": "ability_rogue_shuriken_storm", "index": 100}]}, {"id": 90737, "name": "Premeditation", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90738], "prev": [90701, 90736], "entries": [{"id": 112627, "definitionId": 117632, "maxRanks": 1, "type": "passive", "name": "Premeditation", "spellId": 343160, "icon": "spell_shadow_possession", "index": 100}]}, {"id": 90703, "name": "Planned Execution / Warning Signs", "type": "choice", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90738, 90735], "prev": [90736], "entries": [{"id": 112591, "definitionId": 117596, "maxRanks": 1, "type": "passive", "name": "Planned Execution", "spellId": 382508, "icon": "ability_creature_cursed_02", "index": 100}, {"id": 117172, "definitionId": 122184, "maxRanks": 1, "type": "passive", "name": "Warning Signs", "spellId": 426555, "icon": "achievement_bg_kill_flag_carrier", "index": 200}]}, {"id": 101715, "name": "Double Dance", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90735, 90724], "prev": [90736, 90699, 90734], "entries": [{"id": 125619, "definitionId": 130451, "maxRanks": 1, "type": "passive", "name": "Double Dance", "spellId": 394930, "icon": "warrior_doubletime", "index": 100}]}, {"id": 90723, "name": "Shadowed Finishers", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90724, 90713], "prev": [90715, 90709, 90734], "entries": [{"id": 112611, "definitionId": 117616, "maxRanks": 1, "type": "passive", "name": "Shadowed Finishers", "spellId": 382511, "icon": "ability_rogue_eviscerate", "index": 100}]}, {"id": 90722, "name": "Secret Stratagem", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90713, 90716], "prev": [90709], "entries": [{"id": 112610, "definitionId": 117615, "maxRanks": 1, "type": "passive", "name": "Secret Stratagem", "spellId": 394320, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 90717, "name": "Replicating Shadows", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90716], "prev": [90714, 90709], "entries": [{"id": 112605, "definitionId": 117610, "maxRanks": 1, "type": "passive", "name": "Replicating Shadows", "spellId": 382506, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 90738, "name": "Weaponmaster", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90704], "prev": [90703, 90737], "entries": [{"id": 112628, "definitionId": 117633, "maxRanks": 1, "type": "passive", "name": "Weaponmaster", "spellId": 193537, "icon": "ability_ironmaidens_bladerush", "index": 100}]}, {"id": 90735, "name": "The First Dance / Master of Shadows", "type": "choice", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90704, 90707], "prev": [90703, 101715], "entries": [{"id": 112625, "definitionId": 117630, "maxRanks": 1, "type": "passive", "name": "The First Dance", "spellId": 382505, "icon": "ability_rogue_shadowdance", "index": 100}, {"id": 112624, "definitionId": 117629, "maxRanks": 1, "type": "passive", "name": "Master of Shadows", "spellId": 196976, "icon": "spell_shadow_charm", "index": 200}]}, {"id": 90724, "name": "Deepening Shadows", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90707, 90731, 90721], "prev": [90723, 101715], "entries": [{"id": 112612, "definitionId": 117617, "maxRanks": 1, "type": "passive", "name": "Deepening Shadows", "spellId": 185314, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90713, "name": "Veiltouched", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90721, 90718], "prev": [90722, 90723], "entries": [{"id": 112601, "definitionId": 117606, "maxRanks": 1, "type": "passive", "name": "Veiltouched", "spellId": 382017, "icon": "spell_arcane_prismaticcloak", "index": 100}]}, {"id": 90716, "name": "Shuriken Tornado", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90718], "prev": [90717, 90722], "entries": [{"id": 112604, "definitionId": 117609, "maxRanks": 1, "type": "active", "name": "Shuriken Tornado", "spellId": 277925, "icon": "ability_rogue_throwingspecialization", "index": 100}]}, {"id": 90704, "name": "Inevitability / Sepsis", "type": "choice", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90706], "prev": [90738, 90735], "entries": [{"id": 112592, "definitionId": 117597, "maxRanks": 1, "type": "passive", "name": "Inevitability", "spellId": 382512, "icon": "spell_shadow_rune", "index": 100}, {"id": 117171, "definitionId": 122183, "maxRanks": 1, "type": "active", "name": "Sepsis", "spellId": 385408, "icon": "ability_ardenweald_rogue", "index": 200}]}, {"id": 90707, "name": "Perforated Veins", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90706, 90732], "prev": [90724, 90735], "entries": [{"id": 112595, "definitionId": 117600, "maxRanks": 1, "type": "passive", "name": "Perforated Veins", "spellId": 382518, "icon": "ability_warrior_bloodfrenzy", "index": 100}]}, {"id": 90731, "name": "Lingering Shadow", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90732], "prev": [90724], "entries": [{"id": 112619, "definitionId": 117624, "maxRanks": 1, "type": "passive", "name": "Lingering Shadow", "spellId": 382524, "icon": "spell_fire_twilightnova", "index": 100}]}, {"id": 90721, "name": "Deeper Daggers", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90732, 90720], "prev": [90724, 90713], "entries": [{"id": 112609, "definitionId": 117614, "maxRanks": 1, "type": "passive", "name": "Deeper Daggers", "spellId": 382517, "icon": "inv_weapon_shortblade_15", "index": 100}]}, {"id": 90718, "name": "Flagellation", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90720], "prev": [90716, 90713], "entries": [{"id": 112606, "definitionId": 117611, "maxRanks": 1, "type": "active", "name": "Flagellation", "spellId": 384631, "icon": "ability_revendreth_rogue", "index": 100}]}, {"id": 90706, "name": "Invigorating Shadowdust", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90705, 94580], "prev": [90707, 90704], "entries": [{"id": 112594, "definitionId": 117599, "maxRanks": 2, "type": "passive", "name": "Invigorating Shadowdust", "spellId": 382523, "icon": "ability_vanish", "index": 100}]}, {"id": 90732, "name": "Dark Shadow", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94580, 90730, 94581], "prev": [90731, 90707, 90721], "entries": [{"id": 112620, "definitionId": 117625, "maxRanks": 2, "type": "passive", "name": "Dark Shadow", "spellId": 245687, "icon": "spell_warlock_demonsoul", "index": 100}]}, {"id": 90720, "name": "Finality", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94581, 90719], "prev": [90718, 90721], "entries": [{"id": 112608, "definitionId": 117613, "maxRanks": 2, "type": "passive", "name": "Finality", "spellId": 382525, "icon": "ability_rogue_eviscerate", "index": 100}]}, {"id": 90705, "name": "The Rotten", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90706], "entries": [{"id": 112593, "definitionId": 117598, "maxRanks": 1, "type": "passive", "name": "The Rotten", "spellId": 382015, "icon": "spell_shadow_nightofthedead", "index": 100}]}, {"id": 94580, "name": "Shadowcraft", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90732, 90706], "entries": [{"id": 117168, "definitionId": 122180, "maxRanks": 1, "type": "passive", "name": "Shadowcraft", "spellId": 426594, "icon": "spell_shadow_sealofkings", "index": 100}]}, {"id": 90730, "name": "Danse Macabre", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90732], "entries": [{"id": 112618, "definitionId": 117623, "maxRanks": 1, "type": "passive", "name": "Danse Macabre", "spellId": 382528, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 94581, "name": "Goremaw's Bite", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90720, 90732], "entries": [{"id": 117169, "definitionId": 122181, "maxRanks": 1, "type": "active", "name": "Goremaw's Bite", "spellId": 426591, "icon": "inv_knife_1h_artifactfangs_d_01", "index": 100}]}, {"id": 90719, "name": "Dark Brew", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90720], "entries": [{"id": 112607, "definitionId": 117612, "maxRanks": 1, "type": "passive", "name": "Dark Brew", "spellId": 382504, "icon": "spell_nature_slowpoison", "index": 100}]}], "heroNodes": [{"id": 95136, "name": "Deathstalker's Mark", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 53, "next": [95110, 95132, 95117], "prev": [], "entries": [{"id": 117733, "definitionId": 122745, "maxRanks": 1, "type": "passive", "name": "Deathstalker's Mark", "spellId": 457052, "icon": "inv_ability_deathstalkerrogue_deathstalkersmark", "index": 100}], "freeNode": true}, {"id": 95110, "name": "Clear the Witnesses", "type": "single", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95135], "prev": [95136], "entries": [{"id": 117707, "definitionId": 122719, "maxRanks": 1, "type": "passive", "name": "Clear the Witnesses", "spellId": 457053, "icon": "ability_rogue_fanofknives", "index": 100}]}, {"id": 95132, "name": "Hunt Them Down", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95108], "prev": [95136], "entries": [{"id": 117729, "definitionId": 122741, "maxRanks": 1, "type": "passive", "name": "Hunt Them Down", "spellId": 457054, "icon": "ability_rogue_creepingvenom", "index": 100}]}, {"id": 95117, "name": "Singular Focus", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95109], "prev": [95136], "entries": [{"id": 117714, "definitionId": 122726, "maxRanks": 1, "type": "passive", "name": "Singular Focus", "spellId": 457055, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 95135, "name": "Fatal Intent", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95106], "prev": [95110], "entries": [{"id": 117732, "definitionId": 122744, "maxRanks": 1, "type": "passive", "name": "Fatal Intent", "spellId": 461980, "icon": "ability_warrior_deepcuts", "index": 100}]}, {"id": 95108, "name": "Corrupt the Blood", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95131], "prev": [95132], "entries": [{"id": 117705, "definitionId": 122717, "maxRanks": 1, "type": "passive", "name": "Corrupt the Blood", "spellId": 457066, "icon": "ability_ironmaidens_bloodritual", "index": 100}]}, {"id": 95109, "name": "Lingering Darkness / Symbolic Victory", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95123], "prev": [95117], "entries": [{"id": 117706, "definitionId": 122718, "maxRanks": 1, "type": "passive", "name": "Lingering Darkness", "spellId": 457056, "icon": "ability_rogue_envelopingshadows", "index": 100}, {"id": 126030, "definitionId": 130862, "maxRanks": 1, "type": "passive", "name": "Symbolic Victory", "spellId": 457062, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 95106, "name": "Ethereal Cloak / Bait and Switch", "type": "choice", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95135], "entries": [{"id": 117703, "definitionId": 122715, "maxRanks": 1, "type": "passive", "name": "Ethereal Cloak", "spellId": 457022, "icon": "spell_arcane_prismaticcloak", "index": 100}, {"id": 126029, "definitionId": 130861, "maxRanks": 1, "type": "passive", "name": "Bait and Switch", "spellId": 457034, "icon": "ability_druid_earthandsky", "index": 200}]}, {"id": 95131, "name": "Momentum of Despair / Follow the Blood", "type": "choice", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95108], "entries": [{"id": 117728, "definitionId": 122740, "maxRanks": 1, "type": "passive", "name": "Momentum of Despair", "spellId": 457067, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 126028, "definitionId": 130860, "maxRanks": 1, "type": "passive", "name": "Follow the Blood", "spellId": 457068, "icon": "sha_ability_rogue_bloodyeye_nightmare", "index": 200}]}, {"id": 95123, "name": "Shadewalker / Shroud of Night", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95109], "entries": [{"id": 117720, "definitionId": 122732, "maxRanks": 1, "type": "passive", "name": "Shadewalker", "spellId": 457057, "icon": "rogue_shadow_reflection", "index": 100}, {"id": 126027, "definitionId": 130859, "maxRanks": 1, "type": "passive", "name": "Shroud of Night", "spellId": 457063, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 95142, "name": "Darkest Night", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 53, "next": [], "prev": [95131, 95106, 95123], "entries": [{"id": 117739, "definitionId": 122751, "maxRanks": 1, "type": "passive", "name": "Darkest Night", "spellId": 457058, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 95140, "name": "Unseen Blade", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 51, "next": [95141, 95111, 95121], "prev": [], "entries": [{"id": 117737, "definitionId": 122749, "maxRanks": 1, "type": "passive", "name": "Unseen Blade", "spellId": 441146, "icon": "inv_weapon_shortblade_55", "index": 100}], "freeNode": true}, {"id": 95121, "name": "Surprising Strikes", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95134], "prev": [95140], "entries": [{"id": 117718, "definitionId": 122730, "maxRanks": 1, "type": "passive", "name": "Surprising Strikes", "spellId": 441273, "icon": "ability_rogue_surpriseattack2", "index": 100}]}, {"id": 95141, "name": "Smoke / Mirrors", "type": "choice", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95133], "prev": [95140], "entries": [{"id": 117738, "definitionId": 122750, "maxRanks": 1, "type": "passive", "name": "Smoke", "spellId": 441247, "icon": "rogue_dirtytricks", "index": 100}, {"id": 120130, "definitionId": 125030, "maxRanks": 1, "type": "passive", "name": "Mirrors", "spellId": 441250, "icon": "trade_archaeology_highbornesoulmirror", "index": 200}]}, {"id": 95111, "name": "Flawless Form", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95137], "prev": [95140], "entries": [{"id": 117708, "definitionId": 122720, "maxRanks": 1, "type": "passive", "name": "Flawless Form", "spellId": 441321, "icon": "inv_qiraj_jewelblessed", "index": 100}]}, {"id": 95134, "name": "So Tricky / Don't Be Suspicious", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95118], "prev": [95121], "entries": [{"id": 117731, "definitionId": 122743, "maxRanks": 1, "type": "passive", "name": "So Tricky", "spellId": 441403, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 120133, "definitionId": 125033, "maxRanks": 1, "type": "passive", "name": "Don't Be Suspicious", "spellId": 441415, "icon": "ability_rogue_disguise", "index": 200}]}, {"id": 95133, "name": "Devious Distractions", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95116], "prev": [95141], "entries": [{"id": 117730, "definitionId": 122742, "maxRanks": 1, "type": "passive", "name": "Devious Distractions", "spellId": 441263, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 95137, "name": "Thousand Cuts / Flickerstrike", "type": "choice", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95128], "prev": [95111], "entries": [{"id": 117734, "definitionId": 122746, "maxRanks": 1, "type": "passive", "name": "Thousand Cuts", "spellId": 441346, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}, {"id": 120131, "definitionId": 125031, "maxRanks": 1, "type": "passive", "name": "Flickerstrike", "spellId": 441359, "icon": "spell_nature_invisibilty", "index": 200}]}, {"id": 95118, "name": "Disorienting Strikes", "type": "single", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95115], "prev": [95134], "entries": [{"id": 117715, "definitionId": 122727, "maxRanks": 1, "type": "passive", "name": "Disorienting Strikes", "spellId": 441274, "icon": "petbattle_speed", "index": 100}]}, {"id": 95116, "name": "Cloud Cover / No Scruples", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95133], "entries": [{"id": 117713, "definitionId": 122725, "maxRanks": 1, "type": "passive", "name": "Cloud Cover", "spellId": 441429, "icon": "ability_rogue_smoke", "index": 100}, {"id": 120132, "definitionId": 125032, "maxRanks": 1, "type": "passive", "name": "No Scruples", "spellId": 441398, "icon": "ability_rogue_surpriseattack", "index": 200}]}, {"id": 95128, "name": "Nimble Flurry", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95137], "entries": [{"id": 117725, "definitionId": 122737, "maxRanks": 1, "type": "passive", "name": "Nimble Flurry", "spellId": 441367, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 95115, "name": "Coup de Grace", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 51, "next": [], "prev": [95116, 95118, 95128], "entries": [{"id": 117712, "definitionId": 122724, "maxRanks": 1, "type": "passive", "name": "Coup de Grace", "spellId": 441423, "icon": "inv_ability_tricksterrogue_coupdegrace", "index": 100}]}], "subTreeNodes": [{"id": 99842, "name": "Deathstalker / Trickster", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123373, "type": "subtree", "name": "Deathstalker", "traitSubTreeId": 53, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-deathstalker", "nodes": [95136, 95110, 95132, 95117, 95135, 95108, 95109, 95106, 95131, 95123, 95142]}, {"id": 123370, "type": "subtree", "name": "Trickster", "traitSubTreeId": 51, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-trickster", "nodes": [95140, 95121, 95141, 95111, 95134, 95133, 95137, 95118, 95116, 95128, 95115]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]}, {"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Elemental", "specId": 262, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}]}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}], "freeNode": true}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}]}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}], "freeNode": true}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 103608], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost_orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 103608], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [103608, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 103608, "name": "Cleanse Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103590, 103617, 103605], "entries": [{"id": 127884, "definitionId": 132693, "maxRanks": 1, "type": "active", "name": "Cleanse Spirit", "spellId": 51886, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103608, 103593, 103601], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 80984, "name": "Earth Shock / Elemental Blast", "type": "choice", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [80985, 80983, 80981], "prev": [], "entries": [{"id": 101854, "definitionId": 106811, "maxRanks": 1, "type": "active", "name": "Earth Shock", "spellId": 8042, "icon": "spell_nature_earthshock", "index": 100}, {"id": 127924, "definitionId": 132733, "maxRanks": 1, "type": "active", "name": "Elemental Blast", "spellId": 117014, "icon": "shaman_talent_elementalblast", "index": 200}]}, {"id": 80985, "name": "Earthquake / Earthquake", "type": "choice", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [80990], "prev": [80984], "entries": [{"id": 101855, "definitionId": 106814, "maxRanks": 1, "type": "active", "name": "Earthquake", "spellId": 462620, "icon": "spell_shaman_earthquake", "index": 100}, {"id": 127925, "definitionId": 132734, "maxRanks": 1, "type": "active", "name": "Earthquake", "spellId": 61882, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 80983, "name": "Elemental Fury", "type": "single", "posX": 12600, "posY": 1800, "maxRanks": 1, "next": [81000], "prev": [80984], "entries": [{"id": 101853, "definitionId": 106810, "maxRanks": 1, "type": "passive", "name": "Elemental Fury", "spellId": 60188, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 80981, "name": "Fire Elemental / Storm Elemental", "type": "choice", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [80999], "prev": [80984], "entries": [{"id": 101850, "definitionId": 106837, "maxRanks": 1, "type": "active", "name": "Fire Elemental", "spellId": 198067, "icon": "spell_fire_elemental_totem", "index": 100}, {"id": 101849, "definitionId": 106836, "maxRanks": 1, "type": "active", "name": "Storm Elemental", "spellId": 192249, "icon": "inv_stormelemental", "index": 200}]}, {"id": 80990, "name": "Flash of Lightning", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [80997, 103635], "prev": [80985], "entries": [{"id": 101861, "definitionId": 106843, "maxRanks": 1, "type": "passive", "name": "Flash of Lightning", "spellId": 381936, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 81000, "name": "Aftershock / Surge of Power", "type": "choice", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [80988], "prev": [80983], "entries": [{"id": 101874, "definitionId": 106831, "maxRanks": 1, "type": "passive", "name": "Aftershock", "spellId": 273221, "icon": "spell_nature_stormreach", "index": 100}, {"id": 101873, "definitionId": 106830, "maxRanks": 1, "type": "passive", "name": "Surge of Power", "spellId": 262303, "icon": "spell_nature_shamanrage", "index": 200}]}, {"id": 80999, "name": "Echo of the Elements", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [81004], "prev": [80981], "entries": [{"id": 101872, "definitionId": 106832, "maxRanks": 1, "type": "passive", "name": "Echo of the Elements", "spellId": 333919, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 80997, "name": "Icefury", "type": "single", "posX": 10800, "posY": 3000, "maxRanks": 1, "next": [103638], "prev": [80990], "entries": [{"id": 101870, "definitionId": 106817, "maxRanks": 1, "type": "passive", "name": "Icefury", "spellId": 462816, "icon": "spell_frost_iceshard", "index": 100}]}, {"id": 80988, "name": "Unrelenting Calamity", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [81016, 103639, 80998], "prev": [81000], "entries": [{"id": 101859, "definitionId": 106819, "maxRanks": 1, "type": "passive", "name": "Unrelenting Calamity", "spellId": 382685, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 81004, "name": "Master of the Elements", "type": "single", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [103630], "prev": [80999], "entries": [{"id": 101879, "definitionId": 106829, "maxRanks": 1, "type": "passive", "name": "Master of the Elements", "spellId": 16166, "icon": "spell_nature_elementalabsorption", "index": 100}]}, {"id": 103638, "name": "Fusion of Elements", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80996], "prev": [80997], "entries": [{"id": 127919, "definitionId": 132728, "maxRanks": 1, "type": "passive", "name": "Fusion of Elements", "spellId": 462840, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}, {"id": 103635, "name": "Storm Frenzy", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80996, 103631], "prev": [80990], "entries": [{"id": 127917, "definitionId": 132726, "maxRanks": 1, "type": "passive", "name": "Storm Frenzy", "spellId": 462695, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 81016, "name": "Swelling Maelstrom", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103631, 81015], "prev": [80988], "entries": [{"id": 101893, "definitionId": 106815, "maxRanks": 1, "type": "passive", "name": "Swelling Maelstrom", "spellId": 381707, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 103639, "name": "Primordial Fury", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81015, 81009], "prev": [80988], "entries": [{"id": 127920, "definitionId": 132729, "maxRanks": 1, "type": "passive", "name": "Primordial Fury", "spellId": 378193, "icon": "inv_10_elementalshardfoozles_primordial", "index": 100}]}, {"id": 80998, "name": "Flow of Power", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81009, 103633], "prev": [80988], "entries": [{"id": 101871, "definitionId": 106816, "maxRanks": 1, "type": "passive", "name": "Flow of Power", "spellId": 385923, "icon": "spell_shaman_shockinglava", "index": 100}]}, {"id": 103630, "name": "Elemental Unity", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103633, 81010], "prev": [81004], "entries": [{"id": 127912, "definitionId": 132721, "maxRanks": 1, "type": "passive", "name": "Elemental Unity", "spellId": 462866, "icon": "inv_10_elementalspiritfoozles_air", "index": 100}]}, {"id": 80996, "name": "Flux Melting", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80995, 80993], "prev": [103635, 103638], "entries": [{"id": 101869, "definitionId": 106823, "maxRanks": 1, "type": "passive", "name": "Flux Melting", "spellId": 381776, "icon": "spell_frostfire_orb", "index": 100}]}, {"id": 103631, "name": "Lightning Conduit", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80995, 103636], "prev": [103635, 81016], "entries": [{"id": 127913, "definitionId": 132722, "maxRanks": 1, "type": "passive", "name": "Lightning Conduit", "spellId": 462862, "icon": "spell_nature_lightningshield", "index": 100}]}, {"id": 81015, "name": "Power of the Maelstrom", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103636, 81013, 81005], "prev": [103639, 81016], "entries": [{"id": 101892, "definitionId": 106824, "maxRanks": 1, "type": "passive", "name": "Power of the Maelstrom", "spellId": 191861, "icon": "spell_fire_masterofelements", "index": 100}]}, {"id": 81009, "name": "Improved Flametongue Weapon", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81005, 103634], "prev": [80998, 103639], "entries": [{"id": 101886, "definitionId": 106853, "maxRanks": 1, "type": "passive", "name": "Improved Flametongue Weapon", "spellId": 382027, "icon": "spell_fire_flametounge", "index": 100}]}, {"id": 103633, "name": "Everlasting Elements", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103634], "prev": [80998, 103630], "entries": [{"id": 127915, "definitionId": 132724, "maxRanks": 1, "type": "passive", "name": "Everlasting Elements", "spellId": 462867, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 81010, "name": "Flames of the Cauldron", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103634, 81014], "prev": [103630], "entries": [{"id": 101887, "definitionId": 106854, "maxRanks": 1, "type": "passive", "name": "Flames of the Cauldron", "spellId": 378266, "icon": "inv_misc_cauldron_fire", "index": 100}]}, {"id": 80995, "name": "Eye of the Storm", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80993, 81003], "prev": [103631, 80996], "entries": [{"id": 101867, "definitionId": 106821, "maxRanks": 1, "type": "passive", "name": "Eye of the Storm", "spellId": 381708, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 103636, "name": "Thunderstrike Ward", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81003], "prev": [81015, 103631], "entries": [{"id": 127918, "definitionId": 132727, "maxRanks": 1, "type": "active", "name": "Thunderstrike Ward", "spellId": 462757, "icon": "inv_armorkit_lightning_imbued", "index": 100}]}, {"id": 81013, "name": "Echo Chamber", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81003, 80989, 81008], "prev": [81015], "entries": [{"id": 101890, "definitionId": 106839, "maxRanks": 1, "type": "passive", "name": "Echo Chamber", "spellId": 382032, "icon": "spell_nature_lightningoverload", "index": 100}]}, {"id": 81005, "name": "Searing Flames", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81008], "prev": [81009, 81015], "entries": [{"id": 101880, "definitionId": 106847, "maxRanks": 1, "type": "passive", "name": "Searing Flames", "spellId": 381782, "icon": "inv_offhand_1h_artifactdoomhammer_d_01", "index": 100}]}, {"id": 103634, "name": "Earthen Rage", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81008, 81014], "prev": [81009, 103633, 81010], "entries": [{"id": 127916, "definitionId": 132725, "maxRanks": 1, "type": "passive", "name": "Earthen Rage", "spellId": 170374, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 80993, "name": "Elemental Equilibrium", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81012], "prev": [80995, 80996], "entries": [{"id": 101865, "definitionId": 106841, "maxRanks": 1, "type": "passive", "name": "Elemental Equilibrium", "spellId": 378271, "icon": "ability_shaman_ascendance", "index": 100}]}, {"id": 81003, "name": "Ascendance", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81012, 81002], "prev": [103636, 81013, 80995], "entries": [{"id": 101877, "definitionId": 106827, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114050, "icon": "spell_fire_elementaldevastation", "index": 300}]}, {"id": 80989, "name": "Stormkeeper", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103640, 81006], "prev": [81013], "entries": [{"id": 101860, "definitionId": 106820, "maxRanks": 1, "type": "active", "name": "Stormkeeper", "spellId": 392714, "visibleSpellId": 191634, "icon": "ability_thunderking_lightningwhip", "index": 100}]}, {"id": 81008, "name": "Echo of the Elementals", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81006, 81007], "prev": [81013, 103634, 81005], "entries": [{"id": 101885, "definitionId": 106852, "maxRanks": 1, "type": "passive", "name": "Echo of the Elementals", "spellId": 462864, "icon": "inv_10_elementalspiritfoozles_fire", "index": 200}]}, {"id": 81014, "name": "Primordial Wave", "type": "single", "posX": 14400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81007, 80978], "prev": [81010, 103634], "entries": [{"id": 101891, "definitionId": 106840, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 375982, "icon": "ability_maldraxxus_shaman", "index": 100}]}, {"id": 81012, "name": "Mountains Will Fall", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80991, 103641], "prev": [81003, 80993], "entries": [{"id": 101889, "definitionId": 106838, "maxRanks": 1, "type": "passive", "name": "Mountains Will Fall", "spellId": 381726, "icon": "inv_elementalearth2", "index": 100}]}, {"id": 81002, "name": "First Ascendant / Preeminence", "type": "choice", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103641], "prev": [81003], "entries": [{"id": 101876, "definitionId": 106826, "maxRanks": 1, "type": "passive", "name": "First Ascendant", "spellId": 462440, "icon": "spell_shaman_astralshift", "index": 100}, {"id": 127923, "definitionId": 132732, "maxRanks": 1, "type": "passive", "name": "Preeminence", "spellId": 462443, "icon": "spell_shaman_improvedreincarnation", "index": 200}]}, {"id": 103640, "name": "Fury of the Storms", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103641, 80992, 103632], "prev": [80989], "entries": [{"id": 127921, "definitionId": 132730, "maxRanks": 1, "type": "passive", "name": "Fury of the Storms", "spellId": 191717, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 81006, "name": "Skybreaker's Fiery Demise", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103632], "prev": [81008, 80989], "entries": [{"id": 101881, "definitionId": 106848, "maxRanks": 1, "type": "passive", "name": "Skybreaker's Fiery Demise", "spellId": 378310, "icon": "spell_fire_elemental_totem", "index": 300}]}, {"id": 81007, "name": "Magma Chamber", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103632, 103637], "prev": [81008, 81014], "entries": [{"id": 101883, "definitionId": 106850, "maxRanks": 1, "type": "passive", "name": "Magma Chamber", "spellId": 381932, "icon": "ability_rhyolith_magmaflow_whole", "index": 100}]}, {"id": 80978, "name": "Splintered Elements", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103637], "prev": [81014], "entries": [{"id": 101844, "definitionId": 106856, "maxRanks": 1, "type": "passive", "name": "Splintered Elements", "spellId": 382042, "icon": "spell_nature_elementalprecision_1", "index": 300}]}, {"id": 80991, "name": "Echoes of Great Sundering", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81012], "entries": [{"id": 101862, "definitionId": 106844, "maxRanks": 1, "type": "passive", "name": "Echoes of Great Sundering", "spellId": 384087, "icon": "spell_shaman_earthquake", "index": 100}]}, {"id": 103641, "name": "Deeply Rooted Elements", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81002, 103640, 81012], "entries": [{"id": 127922, "definitionId": 132731, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 300}]}, {"id": 80992, "name": "Lightning Rod", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103640], "entries": [{"id": 101864, "definitionId": 106846, "maxRanks": 1, "type": "passive", "name": "Lightning Rod", "spellId": 210689, "icon": "inv_rod_enchantedcobalt", "index": 100}]}, {"id": 103632, "name": "Primal Elementalist", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81007, 81006, 103640], "entries": [{"id": 127914, "definitionId": 132723, "maxRanks": 1, "type": "passive", "name": "Primal Elementalist", "spellId": 117013, "icon": "shaman_talent_primalelementalist", "index": 100}]}, {"id": 103637, "name": "Liquid Magma Totem", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81007, 80978], "entries": [{"id": 101884, "definitionId": 106851, "maxRanks": 1, "type": "active", "name": "Liquid Magma Totem", "spellId": 192222, "icon": "spell_shaman_spewlava", "index": 100}]}], "heroNodes": [{"id": 94888, "name": "Call of the Ancestors", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 56, "requiresNode": 81037, "next": [94862, 94869, 94884], "prev": [], "entries": [{"id": 117485, "definitionId": 122497, "maxRanks": 1, "type": "passive", "name": "Call of the Ancestors", "spellId": 443450, "icon": "ability_racial_ancestralcall", "index": 100}], "freeNode": true}, {"id": 94862, "name": "Latent Wisdom / Ancient Fellowship", "type": "choice", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94887], "prev": [94888], "entries": [{"id": 117459, "definitionId": 122471, "maxRanks": 1, "type": "passive", "name": "Latent Wisdom", "spellId": 443449, "icon": "spell_holy_spiritualguidence", "index": 100}, {"id": 123632, "definitionId": 128470, "maxRanks": 1, "type": "passive", "name": "Ancient Fellowship", "spellId": 443423, "icon": "spell_shaman_astralshift", "index": 200}]}, {"id": 94884, "name": "Heed My Call / Routine Communication", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94860], "prev": [94888], "entries": [{"id": 117481, "definitionId": 122493, "maxRanks": 1, "type": "passive", "name": "Heed My Call", "spellId": 443444, "icon": "spell_unused2", "index": 100}, {"id": 123630, "definitionId": 128468, "maxRanks": 1, "type": "passive", "name": "Routine Communication", "spellId": 443445, "icon": "spell_nature_undyingstrength", "index": 200}]}, {"id": 94869, "name": "Elemental Reverb", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94861], "prev": [94888], "entries": [{"id": 117466, "definitionId": 122478, "maxRanks": 1, "type": "passive", "name": "Elemental Reverb", "spellId": 443418, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 94887, "name": "Offering from Beyond", "type": "single", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94858], "prev": [94862], "entries": [{"id": 117484, "definitionId": 122496, "maxRanks": 1, "type": "passive", "name": "Offering from Beyond", "spellId": 443451, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 94860, "name": "Primordial Capacity", "type": "single", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94883], "prev": [94884], "entries": [{"id": 117457, "definitionId": 122469, "maxRanks": 1, "type": "passive", "name": "Primordial Capacity", "spellId": 443448, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 94861, "name": "Spiritwalker's Momentum", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94875], "prev": [94869], "entries": [{"id": 117458, "definitionId": 122470, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Momentum", "spellId": 443425, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 94858, "name": "Natural Harmony / Earthen Communion", "type": "choice", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94887], "entries": [{"id": 117455, "definitionId": 122467, "maxRanks": 1, "type": "passive", "name": "Natural Harmony", "spellId": 443442, "icon": "spell_nature_natureguardian", "index": 100}, {"id": 123631, "definitionId": 128469, "maxRanks": 1, "type": "passive", "name": "Earthen Communion", "spellId": 443441, "icon": "spell_nature_skinofearth", "index": 200}]}, {"id": 94883, "name": "Maelstrom Supremacy", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94860], "entries": [{"id": 117480, "definitionId": 122492, "maxRanks": 1, "type": "passive", "name": "Maelstrom Supremacy", "spellId": 443447, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 94875, "name": "Final Calling", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94861], "entries": [{"id": 117472, "definitionId": 122484, "maxRanks": 1, "type": "passive", "name": "Final Calling", "spellId": 443446, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 94894, "name": "Ancestral Swiftness", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 56, "next": [], "prev": [94883, 94858, 94875], "entries": [{"id": 117491, "definitionId": 122503, "maxRanks": 1, "type": "active", "name": "Ancestral Swiftness", "spellId": 448861, "visibleSpellId": 443454, "icon": "inv_ability_farseershaman_ancestralswiftness", "index": 100}]}, {"id": 94892, "name": "Tempest", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 55, "next": [94886, 94893, 94863], "prev": [], "entries": [{"id": 117489, "definitionId": 122501, "maxRanks": 1, "type": "passive", "name": "Tempest", "spellId": 454009, "icon": "inv_ability_stormcallershaman_tempest", "index": 100}], "freeNode": true}, {"id": 94886, "name": "Unlimited Power", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94873], "prev": [94892], "entries": [{"id": 117483, "definitionId": 122495, "maxRanks": 1, "type": "passive", "name": "Unlimited Power", "spellId": 454391, "icon": "spell_nature_purge", "index": 100}]}, {"id": 94893, "name": "Stormcaller", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94885], "prev": [94892], "entries": [{"id": 117490, "definitionId": 122502, "maxRanks": 1, "type": "passive", "name": "Stormcaller", "spellId": 454021, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94863, "name": "Shocking Grasp", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94889], "prev": [94892], "entries": [{"id": 117460, "definitionId": 122472, "maxRanks": 1, "type": "passive", "name": "Shocking Grasp", "spellId": 454022, "icon": "spell_shaman_crashlightning", "index": 100}]}, {"id": 94873, "name": "Supercharge", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94870], "prev": [94886], "entries": [{"id": 117470, "definitionId": 122482, "maxRanks": 1, "type": "passive", "name": "Supercharge", "spellId": 455110, "icon": "inv_misc_stormlordsfavor", "index": 100}]}, {"id": 94885, "name": "Storm Swell / Arc Discharge", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94868], "prev": [94893], "entries": [{"id": 117482, "definitionId": 122494, "maxRanks": 1, "type": "passive", "name": "Storm Swell", "spellId": 455088, "icon": "spell_nature_unrelentingstorm", "index": 100}, {"id": 125616, "definitionId": 130448, "maxRanks": 1, "type": "passive", "name": "Arc Discharge", "spellId": 455096, "icon": "ability_thunderking_balllightning", "index": 200}]}, {"id": 94889, "name": "Rolling Thunder", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94880], "prev": [94863], "entries": [{"id": 117486, "definitionId": 122498, "maxRanks": 1, "type": "passive", "name": "Rolling Thunder", "spellId": 454026, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 94870, "name": "Voltaic Surge", "type": "single", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94873], "entries": [{"id": 117467, "definitionId": 122479, "maxRanks": 1, "type": "passive", "name": "Voltaic Surge", "spellId": 454919, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 94868, "name": "Conductive Energy", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94885], "entries": [{"id": 117465, "definitionId": 122477, "maxRanks": 1, "type": "passive", "name": "Conductive Energy", "spellId": 455123, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 94880, "name": "Nature's Protection / Surging Currents", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94889], "entries": [{"id": 117477, "definitionId": 122489, "maxRanks": 1, "type": "passive", "name": "Nature's Protection", "spellId": 454027, "icon": "spell_nature_lightningshield", "index": 100}, {"id": 125617, "definitionId": 130449, "maxRanks": 1, "type": "passive", "name": "Surging Currents", "spellId": 454372, "icon": "spell_nature_stormreach", "index": 200}]}, {"id": 94867, "name": "Awakening Storms", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 55, "next": [], "prev": [94868, 94870, 94880], "entries": [{"id": 117464, "definitionId": 122476, "maxRanks": 1, "type": "passive", "name": "Awakening Storms", "spellId": 455129, "icon": "spell_nature_stormreach", "index": 100}]}], "subTreeNodes": [{"id": 99845, "name": "Farseer / Stormbringer", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123377, "type": "subtree", "name": "Farseer", "traitSubTreeId": 56, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-farseer", "nodes": [94888, 94862, 94884, 94869, 94887, 94860, 94861, 94858, 94883, 94875, 94894]}, {"id": 123376, "type": "subtree", "name": "Stormbringer", "traitSubTreeId": 55, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-stormbringer", "nodes": [94892, 94886, 94893, 94863, 94873, 94885, 94889, 94870, 94868, 94880, 94867]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810]}, {"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Enhancement", "specId": 263, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}]}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}]}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}], "freeNode": true}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}], "freeNode": true}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 103608], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost_orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 103608], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [103608, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 103608, "name": "Cleanse Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103590, 103617, 103605], "entries": [{"id": 127884, "definitionId": 132693, "maxRanks": 1, "type": "active", "name": "Cleanse Spirit", "spellId": 51886, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103608, 103593, 103601], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 80941, "name": "Stormstrike", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [80958, 80942], "prev": [], "entries": [{"id": 101804, "definitionId": 106862, "maxRanks": 1, "type": "active", "name": "Stormstrike", "spellId": 17364, "icon": "ability_shaman_stormstrike", "index": 100}]}, {"id": 80958, "name": "Windfury Weapon", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [80969, 80957], "prev": [80941], "entries": [{"id": 101823, "definitionId": 106876, "maxRanks": 1, "type": "active", "name": "Windfury Weapon", "spellId": 33757, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 80942, "name": "Lava Lash", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [80957, 80943, 80956], "prev": [80941], "entries": [{"id": 101805, "definitionId": 106864, "maxRanks": 1, "type": "active", "name": "Lava Lash", "spellId": 60103, "icon": "ability_shaman_lavalash", "index": 100}]}, {"id": 80969, "name": "Forceful Winds", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [80968, 80966], "prev": [80958], "entries": [{"id": 101834, "definitionId": 106888, "maxRanks": 1, "type": "passive", "name": "Forceful Winds", "spellId": 262647, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 80957, "name": "Improved Maelstrom Weapon", "type": "single", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [80966, 80939, 80956], "prev": [80958, 80942], "entries": [{"id": 101822, "definitionId": 106865, "maxRanks": 1, "type": "passive", "name": "Improved Maelstrom Weapon", "spellId": 383303, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 80943, "name": "Molten Assault", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [80956, 80944], "prev": [80942], "entries": [{"id": 101806, "definitionId": 106863, "maxRanks": 1, "type": "passive", "name": "Molten Assault", "spellId": 334033, "icon": "spell_shaman_improvelavalash", "index": 100}]}, {"id": 80968, "name": "Unruly Winds", "type": "single", "posX": 11400, "posY": 3000, "maxRanks": 1, "next": [80959, 103642, 80967], "prev": [80969], "entries": [{"id": 101833, "definitionId": 106887, "maxRanks": 1, "type": "passive", "name": "Unruly Winds", "spellId": 390288, "icon": "ability_skyreach_wind_wall", "index": 100}]}, {"id": 80966, "name": "Tempest Strikes / Elemental Blast", "type": "choice", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [103642], "prev": [80957, 80969], "entries": [{"id": 101831, "definitionId": 106886, "maxRanks": 1, "type": "passive", "name": "Tempest Strikes", "spellId": 428071, "icon": "spell_nature_thunderclap", "index": 100}, {"id": 117750, "definitionId": 122762, "maxRanks": 1, "type": "active", "name": "Elemental Blast", "spellId": 394150, "visibleSpellId": 117014, "icon": "shaman_talent_elementalblast", "index": 200}]}, {"id": 80939, "name": "Raging Maelstrom", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [80938, 80975], "prev": [80957], "entries": [{"id": 101802, "definitionId": 106871, "maxRanks": 1, "type": "passive", "name": "Raging Maelstrom", "spellId": 384143, "icon": "spell_shaman_stormearthfire", "index": 0}]}, {"id": 80956, "name": "Ice Strike", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [80975, 80955], "prev": [80943, 80942, 80957], "entries": [{"id": 101821, "definitionId": 106866, "maxRanks": 1, "type": "active", "name": "Ice Strike", "spellId": 342240, "icon": "spell_frost_frostbolt", "index": 100}]}, {"id": 80944, "name": "Hailstorm / Fire Nova", "type": "choice", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [80955, 80945], "prev": [80943], "entries": [{"id": 101808, "definitionId": 106900, "maxRanks": 1, "type": "passive", "name": "Hailstorm", "spellId": 334195, "icon": "spell_frost_icestorm", "index": 100}, {"id": 101807, "definitionId": 106899, "maxRanks": 1, "type": "active", "name": "Fire Nova", "spellId": 333974, "icon": "spell_shaman_improvedfirenova", "index": 200}]}, {"id": 80959, "name": "Doom Winds", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80967], "prev": [80968], "entries": [{"id": 101824, "definitionId": 106859, "maxRanks": 1, "type": "active", "name": "Doom Winds", "spellId": 384352, "icon": "ability_ironmaidens_swirlingvortex", "index": 100}]}, {"id": 103642, "name": "Flurry", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80967, 80974, 80961], "prev": [80966, 80968], "entries": [{"id": 101799, "definitionId": 106872, "maxRanks": 1, "type": "passive", "name": "Flurry", "spellId": 382888, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 80938, "name": "Overflowing Maelstrom", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80974], "prev": [80939], "entries": [{"id": 101801, "definitionId": 106880, "maxRanks": 1, "type": "passive", "name": "Overflowing Maelstrom", "spellId": 384149, "icon": "spell_shaman_maelstromweapon", "index": 0}]}, {"id": 80975, "name": "Sundering", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80974, 80954], "prev": [80956, 80939], "entries": [{"id": 101841, "definitionId": 106874, "maxRanks": 1, "type": "active", "name": "Sundering", "spellId": 197214, "icon": "ability_rhyolith_lavapool", "index": 100}]}, {"id": 80955, "name": "Swirling Maelstrom", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80954], "prev": [80956, 80944], "entries": [{"id": 101820, "definitionId": 106867, "maxRanks": 1, "type": "passive", "name": "Swirling Maelstrom", "spellId": 384359, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 80945, "name": "Hot Hand", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [80954, 80947], "prev": [80944], "entries": [{"id": 101809, "definitionId": 106898, "maxRanks": 2, "type": "passive", "name": "Hot Hand", "spellId": 201900, "icon": "spell_fire_playingwithfire", "index": 100}]}, {"id": 80967, "name": "Storm's Wrath", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80960, 80961], "prev": [80968, 80959, 103642], "entries": [{"id": 101832, "definitionId": 107009, "maxRanks": 1, "type": "passive", "name": "Storm's Wrath", "spellId": 392352, "icon": "spell_nature_stormreach", "index": 100}]}, {"id": 80974, "name": "Crash Lightning", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80961, 80973, 80953], "prev": [80938, 80975, 103642], "entries": [{"id": 101840, "definitionId": 106879, "maxRanks": 1, "type": "active", "name": "Crash Lightning", "spellId": 187874, "icon": "spell_shaman_crashlightning", "index": 100}]}, {"id": 80954, "name": "Stormflurry", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80953, 92219], "prev": [80955, 80945, 80975], "entries": [{"id": 101819, "definitionId": 106869, "maxRanks": 1, "type": "passive", "name": "Stormflurry", "spellId": 344357, "icon": "ability_shaman_stormstrike", "index": 100}]}, {"id": 80947, "name": "Ashen Catalyst", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80948], "prev": [80945], "entries": [{"id": 101811, "definitionId": 106897, "maxRanks": 1, "type": "passive", "name": "Ashen Catalyst", "spellId": 390370, "icon": "spell_shaman_stormearthfire", "index": 0}]}, {"id": 80960, "name": "Stormblast", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80965], "prev": [80967], "entries": [{"id": 101825, "definitionId": 106877, "maxRanks": 1, "type": "passive", "name": "Stormblast", "spellId": 319930, "icon": "spell_shaman_focusedstrikes", "index": 100}]}, {"id": 80961, "name": "Elemental Weapons", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [80965, 80972], "prev": [80974, 80967, 103642], "entries": [{"id": 101826, "definitionId": 106861, "maxRanks": 2, "type": "passive", "name": "Elemental Weapons", "spellId": 384355, "icon": "inv_mace_2h_draenorraid_d_03", "index": 100}]}, {"id": 80973, "name": "Converging Storms", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80972], "prev": [80974], "entries": [{"id": 101839, "definitionId": 106878, "maxRanks": 1, "type": "passive", "name": "Converging Storms", "spellId": 384363, "icon": "warrior_talent_icon_stormbolt", "index": 100}]}, {"id": 80953, "name": "Crashing Storms", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80972, 92219], "prev": [80954, 80974], "entries": [{"id": 101818, "definitionId": 106868, "maxRanks": 1, "type": "passive", "name": "Crashing Storms", "spellId": 334308, "icon": "spell_nature_chainlightning", "index": 100}]}, {"id": 80948, "name": "Lashing Flames", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [92219], "prev": [80947], "entries": [{"id": 101812, "definitionId": 106896, "maxRanks": 1, "type": "passive", "name": "Lashing Flames", "spellId": 334046, "icon": "spell_shaman_improvelavalash", "index": 100}]}, {"id": 80965, "name": "Primordial Wave", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80964, 80962], "prev": [80961, 80960], "entries": [{"id": 101830, "definitionId": 106885, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 375982, "icon": "ability_maldraxxus_shaman", "index": 100}]}, {"id": 80972, "name": "Feral Spirit", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80962, 80971, 80951], "prev": [80961, 80953, 80973], "entries": [{"id": 101838, "definitionId": 106892, "maxRanks": 1, "type": "active", "name": "Feral Spirit", "spellId": 51533, "icon": "spell_shaman_feralspirit", "index": 100}]}, {"id": 92219, "name": "Deeply Rooted Elements / Ascendance", "type": "choice", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80951, 80950], "prev": [80954, 80953, 80948], "entries": [{"id": 101816, "definitionId": 106894, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 100}, {"id": 114291, "definitionId": 119296, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114051, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 80964, "name": "Primal Maelstrom", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80963], "prev": [80965], "entries": [{"id": 101829, "definitionId": 106884, "maxRanks": 2, "type": "passive", "name": "Primal Maelstrom", "spellId": 384405, "icon": "shaman_talent_unleashedfury", "index": 100}]}, {"id": 80962, "name": "Elemental Assault", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [], "prev": [80972, 80965], "entries": [{"id": 101827, "definitionId": 106860, "maxRanks": 2, "type": "passive", "name": "Elemental Assault", "spellId": 210853, "icon": "spell_shaman_improvedstormstrike", "index": 100}]}, {"id": 80971, "name": "Witch Doctor's Ancestry", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80970], "prev": [80972], "entries": [{"id": 101837, "definitionId": 106891, "maxRanks": 1, "type": "passive", "name": "Witch Doctor's Ancestry", "spellId": 384447, "icon": "inv_misc_bone_09", "index": 100}]}, {"id": 80951, "name": "Legacy of the Frost Witch", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [], "prev": [80972, 92219], "entries": [{"id": 101815, "definitionId": 106893, "maxRanks": 2, "type": "passive", "name": "Legacy of the Frost Witch", "spellId": 384450, "icon": "ability_thunderking_thunderstruck", "index": 100}]}, {"id": 80950, "name": "Static Accumulation", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80949], "prev": [92219], "entries": [{"id": 101814, "definitionId": 106881, "maxRanks": 2, "type": "passive", "name": "Static Accumulation", "spellId": 384411, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 80963, "name": "Splintered Elements", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80964], "entries": [{"id": 101828, "definitionId": 106883, "maxRanks": 1, "type": "passive", "name": "Splintered Elements", "spellId": 382042, "icon": "spell_nature_elementalprecision_1", "index": 100}]}, {"id": 80970, "name": "Elemental Spirits / Alpha Wolf", "type": "choice", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80971], "entries": [{"id": 101836, "definitionId": 106890, "maxRanks": 1, "type": "passive", "name": "Elemental Spirits", "spellId": 262624, "icon": "spell_shaman_feralspirit", "index": 100}, {"id": 101835, "definitionId": 106889, "maxRanks": 1, "type": "passive", "name": "Alpha Wolf", "spellId": 198434, "icon": "spell_beastmaster_wolf", "index": 200}]}, {"id": 80949, "name": "Thorim's Invocation", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80950], "entries": [{"id": 101813, "definitionId": 106882, "maxRanks": 1, "type": "passive", "name": "Thorim's Invocation", "spellId": 384444, "icon": "spell_shaman_ancestralawakening", "index": 100}]}], "heroNodes": [{"id": 94877, "name": "Surging Totem", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 54, "next": [94890, 94874, 94882], "prev": [], "entries": [{"id": 117474, "definitionId": 122486, "maxRanks": 1, "type": "active", "name": "Surging Totem", "spellId": 455630, "visibleSpellId": 444995, "icon": "inv_ability_totemicshaman_surgingtotem", "index": 100}], "freeNode": true}, {"id": 94890, "name": "Totemic Rebound", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94859], "prev": [94877], "entries": [{"id": 117487, "definitionId": 122499, "maxRanks": 1, "type": "passive", "name": "Totemic Rebound", "spellId": 445025, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94874, "name": "Amplification Core / Oversurge", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94891], "prev": [94877], "entries": [{"id": 117471, "definitionId": 122483, "maxRanks": 1, "type": "passive", "name": "Amplification Core", "spellId": 445029, "icon": "ability_evoker_essenceburststacks", "index": 100}, {"id": 125823, "definitionId": 130654, "maxRanks": 1, "type": "passive", "name": "Oversurge", "spellId": 445030, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 94882, "name": "Lively Totems", "type": "single", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "requiresNode": 80942, "next": [94872], "prev": [94877], "entries": [{"id": 117479, "definitionId": 122491, "maxRanks": 1, "type": "passive", "name": "Lively Totems", "spellId": 445034, "icon": "spell_fire_searingtotem", "index": 100}]}, {"id": 94859, "name": "Oversized Totems / Swift Recall", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94871], "prev": [94890], "entries": [{"id": 117456, "definitionId": 122468, "maxRanks": 1, "type": "passive", "name": "Oversized Totems", "spellId": 445026, "icon": "ability_shaman_totemrelocation", "index": 100}, {"id": 125825, "definitionId": 130656, "maxRanks": 1, "type": "passive", "name": "Swift Recall", "spellId": 445027, "icon": "spell_nature_brilliance", "index": 200}]}, {"id": 94891, "name": "Wind Barrier", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94866], "prev": [94874], "entries": [{"id": 117488, "definitionId": 122500, "maxRanks": 1, "type": "passive", "name": "Wind Barrier", "spellId": 445031, "icon": "spell_nature_eyeofthestorm", "index": 100}]}, {"id": 94872, "name": "Reactivity", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "requiresNode": 103590, "next": [94881], "prev": [94882], "entries": [{"id": 117469, "definitionId": 122481, "maxRanks": 1, "type": "passive", "name": "Reactivity", "spellId": 445035, "icon": "spell_fire_totemofwrath", "index": 100}]}, {"id": 94871, "name": "Imbuement Mastery", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "requiresNode": 81049, "next": [94879], "prev": [94859], "entries": [{"id": 117468, "definitionId": 122480, "maxRanks": 1, "type": "passive", "name": "Imbuement Mastery", "spellId": 445028, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 94866, "name": "Pulse Capacitor / Supportive Imbuements", "type": "choice", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94891], "entries": [{"id": 117463, "definitionId": 122475, "maxRanks": 1, "type": "passive", "name": "Pulse Capacitor", "spellId": 445032, "icon": "spell_nature_elementalprecision_1", "index": 100}, {"id": 125824, "definitionId": 130655, "maxRanks": 1, "type": "passive", "name": "Supportive Imbuements", "spellId": 445033, "icon": "ability_shaman_fortifyingwaters", "index": 200}]}, {"id": 94881, "name": "Totemic Coordination / Earthsurge", "type": "choice", "posX": 16200, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94872], "entries": [{"id": 117478, "definitionId": 122490, "maxRanks": 1, "type": "passive", "name": "Totemic Coordination", "spellId": 445036, "icon": "ability_shaman_echooftheelements", "index": 100}, {"id": 125822, "definitionId": 130653, "maxRanks": 1, "type": "passive", "name": "Earthsurge", "spellId": 455590, "icon": "inv_elementalearth2", "index": 200}]}, {"id": 94879, "name": "Whirling Elements", "type": "single", "posX": 15600, "posY": 3600, "maxRanks": 1, "subTreeId": 54, "next": [], "prev": [94866, 94871, 94881], "entries": [{"id": 117476, "definitionId": 122488, "maxRanks": 1, "type": "passive", "name": "Whirling Elements", "spellId": 445024, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}, {"id": 94892, "name": "Tempest", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 55, "next": [94886, 94893, 94863], "prev": [], "entries": [{"id": 117489, "definitionId": 122501, "maxRanks": 1, "type": "passive", "name": "Tempest", "spellId": 454009, "icon": "inv_ability_stormcallershaman_tempest", "index": 100}], "freeNode": true}, {"id": 94886, "name": "Unlimited Power", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94873], "prev": [94892], "entries": [{"id": 117483, "definitionId": 122495, "maxRanks": 1, "type": "passive", "name": "Unlimited Power", "spellId": 454391, "icon": "spell_nature_purge", "index": 100}]}, {"id": 94893, "name": "Stormcaller", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94885], "prev": [94892], "entries": [{"id": 117490, "definitionId": 122502, "maxRanks": 1, "type": "passive", "name": "Stormcaller", "spellId": 454021, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94863, "name": "Shocking Grasp", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94889], "prev": [94892], "entries": [{"id": 117460, "definitionId": 122472, "maxRanks": 1, "type": "passive", "name": "Shocking Grasp", "spellId": 454022, "icon": "spell_shaman_crashlightning", "index": 100}]}, {"id": 94873, "name": "Supercharge", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94870], "prev": [94886], "entries": [{"id": 117470, "definitionId": 122482, "maxRanks": 1, "type": "passive", "name": "Supercharge", "spellId": 455110, "icon": "inv_misc_stormlordsfavor", "index": 100}]}, {"id": 94885, "name": "Storm Swell / Arc Discharge", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94868], "prev": [94893], "entries": [{"id": 117482, "definitionId": 122494, "maxRanks": 1, "type": "passive", "name": "Storm Swell", "spellId": 455088, "icon": "spell_nature_unrelentingstorm", "index": 100}, {"id": 125616, "definitionId": 130448, "maxRanks": 1, "type": "passive", "name": "Arc Discharge", "spellId": 455096, "icon": "ability_thunderking_balllightning", "index": 200}]}, {"id": 94889, "name": "Rolling Thunder", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94880], "prev": [94863], "entries": [{"id": 117486, "definitionId": 122498, "maxRanks": 1, "type": "passive", "name": "Rolling Thunder", "spellId": 454026, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 94870, "name": "Voltaic Surge", "type": "single", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94873], "entries": [{"id": 117467, "definitionId": 122479, "maxRanks": 1, "type": "passive", "name": "Voltaic Surge", "spellId": 454919, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 94868, "name": "Conductive Energy", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94885], "entries": [{"id": 117465, "definitionId": 122477, "maxRanks": 1, "type": "passive", "name": "Conductive Energy", "spellId": 455123, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 94880, "name": "Nature's Protection / Surging Currents", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94889], "entries": [{"id": 117477, "definitionId": 122489, "maxRanks": 1, "type": "passive", "name": "Nature's Protection", "spellId": 454027, "icon": "spell_nature_lightningshield", "index": 100}, {"id": 125617, "definitionId": 130449, "maxRanks": 1, "type": "passive", "name": "Surging Currents", "spellId": 454372, "icon": "spell_nature_stormreach", "index": 200}]}, {"id": 94867, "name": "Awakening Storms", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 55, "next": [], "prev": [94868, 94870, 94880], "entries": [{"id": 117464, "definitionId": 122476, "maxRanks": 1, "type": "passive", "name": "Awakening Storms", "spellId": 455129, "icon": "spell_nature_stormreach", "index": 100}]}], "subTreeNodes": [{"id": 99847, "name": "Stormbringer / Totemic", "type": "subtree", "posX": 8100, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123381, "type": "subtree", "name": "Stormbringer", "traitSubTreeId": 55, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-stormbringer", "nodes": [94892, 94886, 94893, 94863, 94873, 94885, 94889, 94870, 94868, 94880, 94867]}, {"id": 123379, "type": "subtree", "name": "Totemic", "traitSubTreeId": 54, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-totemic", "nodes": [94877, 94890, 94874, 94882, 94859, 94891, 94872, 94871, 94866, 94881, 94879]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810]}, {"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Restoration", "specId": 264, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}], "freeNode": true}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}], "freeNode": true}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}]}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}]}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 81073], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost_orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 81073], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [81073, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 81073, "name": "Improved Purify Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103617, 103590, 103605], "entries": [{"id": 101964, "definitionId": 106962, "maxRanks": 1, "type": "passive", "name": "Improved Purify Spirit", "spellId": 383016, "icon": "ability_shaman_cleansespirit", "index": 0}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103593, 103601, 81073], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 81027, "name": "Riptide", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [81040, 81022, 81026], "prev": [], "entries": [{"id": 101905, "definitionId": 106805, "maxRanks": 1, "type": "active", "name": "Riptide", "spellId": 61295, "icon": "spell_nature_riptide", "index": 100}]}, {"id": 81040, "name": "Healing Rain", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [103428, 81039], "prev": [81027], "entries": [{"id": 101923, "definitionId": 106911, "maxRanks": 1, "type": "active", "name": "Healing Rain", "spellId": 73920, "icon": "spell_nature_giftofthewaterspirit", "index": 100}]}, {"id": 81022, "name": "Healing Stream Totem", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [81021], "prev": [81027], "entries": [{"id": 101900, "definitionId": 106920, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392916, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103428, "name": "Deluge", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [92677, 103429, 81038], "prev": [81040], "entries": [{"id": 127672, "definitionId": 132481, "maxRanks": 1, "type": "passive", "name": "Deluge", "spellId": 200076, "icon": "ability_shawaterelemental_reform", "index": 100}]}, {"id": 81039, "name": "Acid Rain", "type": "single", "posX": 12000, "posY": 2400, "maxRanks": 1, "next": [103429], "prev": [81040], "entries": [{"id": 101922, "definitionId": 106910, "maxRanks": 1, "type": "passive", "name": "Acid Rain", "spellId": 378443, "icon": "spell_nature_acid_01", "index": 200}]}, {"id": 81026, "name": "Healing Wave", "type": "single", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [103429, 81024, 81033], "prev": [81027], "entries": [{"id": 101904, "definitionId": 106918, "maxRanks": 1, "type": "active", "name": "Healing Wave", "spellId": 77472, "icon": "spell_nature_healingwavelesser", "index": 100}]}, {"id": 81021, "name": "Tidal Waves", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [81024, 81018], "prev": [81022], "entries": [{"id": 101899, "definitionId": 106921, "maxRanks": 1, "type": "passive", "name": "Tidal Waves", "spellId": 51564, "icon": "spell_shaman_tidalwaves", "index": 100}]}, {"id": 92677, "name": "Overflowing Shores", "type": "single", "posX": 10800, "posY": 3000, "maxRanks": 1, "next": [81047], "prev": [103428], "entries": [{"id": 114813, "definitionId": 119820, "maxRanks": 1, "type": "passive", "name": "Overflowing Shores", "spellId": 383222, "icon": "spell_nature_giftofthewaterspirit", "index": 100}]}, {"id": 103429, "name": "Ancestral Vigor", "type": "single", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [81038], "prev": [103428, 81026, 81039], "entries": [{"id": 127673, "definitionId": 132482, "maxRanks": 1, "type": "passive", "name": "Ancestral Vigor", "spellId": 207401, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 81024, "name": "Resurgence", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [81019], "prev": [81026, 81021], "entries": [{"id": 101902, "definitionId": 106916, "maxRanks": 1, "type": "passive", "name": "Resurgence", "spellId": 16196, "icon": "ability_shaman_watershield", "index": 100}]}, {"id": 81018, "name": "Water Totem Mastery", "type": "single", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [81019, 81048], "prev": [81021], "entries": [{"id": 101895, "definitionId": 106925, "maxRanks": 1, "type": "passive", "name": "Water Totem Mastery", "spellId": 382030, "icon": "ability_shaman_totemcooldownrefund", "index": 100}]}, {"id": 81038, "name": "White Water", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81047, 81032, 81037], "prev": [103428, 103429], "entries": [{"id": 101920, "definitionId": 106908, "maxRanks": 1, "type": "passive", "name": "White Water", "spellId": 462587, "icon": "ability_shawaterelemental_swirl", "index": 100}]}, {"id": 81033, "name": "Spirit Link Totem", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81032, 103432, 81045], "prev": [81026], "entries": [{"id": 101913, "definitionId": 106933, "maxRanks": 1, "type": "active", "name": "Spirit Link Totem", "spellId": 98008, "icon": "spell_shaman_spiritlink", "index": 100}]}, {"id": 81019, "name": "Master of the Elements", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81045, 81031, 81046], "prev": [81018, 81024], "entries": [{"id": 101896, "definitionId": 106923, "maxRanks": 1, "type": "passive", "name": "Master of the Elements", "spellId": 462375, "icon": "spell_nature_elementalabsorption", "index": 300}]}, {"id": 81048, "name": "Living Stream / Cloudburst Totem", "type": "choice", "posX": 15000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81031, 81049], "prev": [81018], "entries": [{"id": 101934, "definitionId": 106927, "maxRanks": 1, "type": "passive", "name": "Living Stream", "spellId": 382482, "icon": "spell_nature_natureresistancetotem", "index": 100}, {"id": 101933, "definitionId": 106926, "maxRanks": 1, "type": "active", "name": "Cloudburst Totem", "spellId": 157153, "icon": "ability_shaman_condensationtotem", "index": 200}]}, {"id": 81047, "name": "Torrent", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81037, 103436], "prev": [81038, 92677], "entries": [{"id": 101932, "definitionId": 106929, "maxRanks": 1, "type": "passive", "name": "Torrent", "spellId": 200072, "icon": "spell_nature_riptide", "index": 100}]}, {"id": 81032, "name": "Healing Tide Totem", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81037, 92675, 81044], "prev": [81038, 81033], "entries": [{"id": 101912, "definitionId": 106942, "maxRanks": 1, "type": "active", "name": "Healing Tide Totem", "spellId": 108280, "icon": "ability_shaman_healingtide", "index": 100}]}, {"id": 103432, "name": "Spouting Spirits", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81044], "prev": [81033], "entries": [{"id": 127678, "definitionId": 132487, "maxRanks": 1, "type": "passive", "name": "Spouting Spirits", "spellId": 462383, "icon": "spell_shaman_spiritlink", "index": 100}]}, {"id": 81045, "name": "Mana Tide Totem", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81044, 92681, 81046], "prev": [81019, 81033], "entries": [{"id": 101929, "definitionId": 106932, "maxRanks": 1, "type": "active", "name": "Mana Tide Totem", "spellId": 16191, "icon": "ability_shaman_manatidetotem", "index": 100}]}, {"id": 81031, "name": "Ancestral Reach / Flow of the Tides", "type": "choice", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81046, 81049], "prev": [81048, 81019], "entries": [{"id": 101911, "definitionId": 106944, "maxRanks": 1, "type": "passive", "name": "Ancestral Reach", "spellId": 382732, "icon": "spell_nature_healingwavegreater", "index": 100}, {"id": 101910, "definitionId": 106943, "maxRanks": 1, "type": "passive", "name": "Flow of the Tides", "spellId": 382039, "icon": "spell_frost_manarecharge", "index": 200}]}, {"id": 81037, "name": "Undulation / Unleash Life", "type": "choice", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103436, 81055], "prev": [81032, 81047, 81038], "entries": [{"id": 101919, "definitionId": 106907, "maxRanks": 1, "type": "passive", "name": "Undulation", "spellId": 200071, "icon": "spell_nature_healingway", "index": 100}, {"id": 101918, "definitionId": 106906, "maxRanks": 1, "type": "active", "name": "Unleash Life", "spellId": 73685, "icon": "spell_shaman_unleashweapon_life", "index": 200}]}, {"id": 92675, "name": "Current Control / Tide Turner", "type": "choice", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81055], "prev": [81032], "entries": [{"id": 114811, "definitionId": 119818, "maxRanks": 1, "type": "passive", "name": "Current Control", "spellId": 404015, "icon": "ability_shaman_healingtide", "index": 100}, {"id": 114810, "definitionId": 119817, "maxRanks": 1, "type": "passive", "name": "Tide Turner", "spellId": 404019, "icon": "ability_deathknight_frozencenter", "index": 200}]}, {"id": 81044, "name": "Echo of the Elements", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81055, 81041], "prev": [81045, 81032, 103432], "entries": [{"id": 101928, "definitionId": 106941, "maxRanks": 1, "type": "passive", "name": "Echo of the Elements", "spellId": 333919, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 92681, "name": "Spiritwalker's Tidal Totem", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81041], "prev": [81045], "entries": [{"id": 114817, "definitionId": 119824, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Tidal Totem", "spellId": 404522, "icon": "spell_nature_regeneration_02", "index": 200}]}, {"id": 81046, "name": "Earthen Wall Totem / Ancestral Protection Totem", "type": "choice", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81041, 103430], "prev": [81045, 81031, 81019], "entries": [{"id": 101931, "definitionId": 106931, "maxRanks": 1, "type": "active", "name": "Earthen Wall Totem", "spellId": 198838, "icon": "spell_nature_stoneskintotem", "index": 100}, {"id": 101930, "definitionId": 106930, "maxRanks": 1, "type": "active", "name": "Ancestral Protection Totem", "spellId": 207399, "icon": "spell_nature_reincarnation", "index": 200}]}, {"id": 81049, "name": "Earthliving Weapon", "type": "single", "posX": 15000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103430, 81050], "prev": [81048, 81031], "entries": [{"id": 101935, "definitionId": 106928, "maxRanks": 1, "type": "active", "name": "Earthliving Weapon", "spellId": 382021, "icon": "spell_shaman_giftearthmother", "index": 100}]}, {"id": 103436, "name": "Primal Tide Core", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103434, 81052], "prev": [81047, 81037], "entries": [{"id": 127682, "definitionId": 132491, "maxRanks": 1, "type": "passive", "name": "Primal Tide Core", "spellId": 382045, "icon": "ability_shaman_repulsiontotem", "index": 100}]}, {"id": 81055, "name": "Ascendance", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81052, 103433, 103427], "prev": [92675, 81037, 81044], "entries": [{"id": 101942, "definitionId": 106939, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114052, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 81041, "name": "Tidebringer", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103427, 81043], "prev": [92681, 81046, 81044], "entries": [{"id": 101924, "definitionId": 106915, "maxRanks": 1, "type": "passive", "name": "Tidebringer", "spellId": 236501, "icon": "spell_shaman_blessingofeternals", "index": 100}]}, {"id": 103430, "name": "Earthen Harmony", "type": "single", "posX": 14400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81043, 103435], "prev": [81049, 81046], "entries": [{"id": 127674, "definitionId": 132483, "maxRanks": 1, "type": "passive", "name": "Earthen Harmony", "spellId": 382020, "icon": "spell_shaman_improvedearthshield", "index": 100}]}, {"id": 103434, "name": "Tidewaters", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81036], "prev": [103436], "entries": [{"id": 127680, "definitionId": 132489, "maxRanks": 1, "type": "passive", "name": "Tidewaters", "spellId": 462424, "icon": "ability_shawaterelemental_split", "index": 100}]}, {"id": 81052, "name": "Undercurrent", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [81036, 80976], "prev": [103436, 81055], "entries": [{"id": 101939, "definitionId": 106935, "maxRanks": 2, "type": "passive", "name": "Undercurrent", "spellId": 382194, "icon": "spell_fire_bluehellfire", "index": 100}]}, {"id": 103433, "name": "First Ascendant / Preeminence", "type": "choice", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80976], "prev": [81055], "entries": [{"id": 127679, "definitionId": 132488, "maxRanks": 1, "type": "passive", "name": "First Ascendant", "spellId": 462440, "icon": "spell_shaman_astralshift", "index": 100}, {"id": 127675, "definitionId": 132484, "maxRanks": 1, "type": "passive", "name": "Preeminence", "spellId": 462443, "icon": "spell_shaman_improvedreincarnation", "index": 200}]}, {"id": 103427, "name": "Wavespeaker's Blessing", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80976, 81042], "prev": [81041, 81055], "entries": [{"id": 127671, "definitionId": 132480, "maxRanks": 2, "type": "passive", "name": "Wavespeaker's Blessing", "spellId": 381946, "icon": "inv_alchemist_81_spiritedalchemiststone", "index": 100}]}, {"id": 81043, "name": "Ancestral Awakening", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [81042, 81051], "prev": [81041, 103430], "entries": [{"id": 101927, "definitionId": 106914, "maxRanks": 2, "type": "passive", "name": "Ancestral Awakening", "spellId": 382309, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 103435, "name": "Reactive Warding", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81051], "prev": [103430], "entries": [{"id": 127681, "definitionId": 132490, "maxRanks": 1, "type": "passive", "name": "Reactive Warding", "spellId": 462454, "icon": "inv_10_elementalcombinedfoozles_water", "index": 100}]}, {"id": 81050, "name": "Improved Earthliving Weapon", "type": "single", "posX": 15000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81051], "prev": [81049], "entries": [{"id": 101936, "definitionId": 106938, "maxRanks": 1, "type": "passive", "name": "Improved Earthliving Weapon", "spellId": 382315, "icon": "spell_shaman_giftearthmother", "index": 100}]}, {"id": 81036, "name": "Primordial Wave", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103434, 81052], "entries": [{"id": 101917, "definitionId": 106905, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 428332, "icon": "ability_maldraxxus_shaman", "index": 100}]}, {"id": 80976, "name": "Downpour", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103427, 103433, 81052], "entries": [{"id": 101842, "definitionId": 106901, "maxRanks": 1, "type": "passive", "name": "Downpour", "spellId": 462486, "icon": "ability_mage_waterjet", "index": 100}]}, {"id": 81042, "name": "High Tide", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103427, 81043], "entries": [{"id": 101925, "definitionId": 106912, "maxRanks": 1, "type": "passive", "name": "High Tide", "spellId": 157154, "icon": "spell_shaman_hightide", "index": 400}]}, {"id": 81051, "name": "Deeply Rooted Elements / Wellspring", "type": "choice", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81050, 81043, 103435], "entries": [{"id": 101937, "definitionId": 106936, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 300}, {"id": 127676, "definitionId": 132485, "maxRanks": 1, "type": "active", "name": "Wellspring", "spellId": 197995, "icon": "ability_shawaterelemental_split", "index": 400}]}], "heroNodes": [{"id": 94888, "name": "Call of the Ancestors", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 56, "requiresNode": 81037, "next": [94862, 94869, 94884], "prev": [], "entries": [{"id": 117485, "definitionId": 122497, "maxRanks": 1, "type": "passive", "name": "Call of the Ancestors", "spellId": 443450, "icon": "ability_racial_ancestralcall", "index": 100}], "freeNode": true}, {"id": 94877, "name": "Surging Totem", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 54, "next": [94890, 94874, 94882], "prev": [], "entries": [{"id": 117474, "definitionId": 122486, "maxRanks": 1, "type": "active", "name": "Surging Totem", "spellId": 455630, "visibleSpellId": 444995, "icon": "inv_ability_totemicshaman_surgingtotem", "index": 100}], "freeNode": true}, {"id": 94862, "name": "Latent Wisdom / Ancient Fellowship", "type": "choice", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94887], "prev": [94888], "entries": [{"id": 117459, "definitionId": 122471, "maxRanks": 1, "type": "passive", "name": "Latent Wisdom", "spellId": 443449, "icon": "spell_holy_spiritualguidence", "index": 100}, {"id": 123632, "definitionId": 128470, "maxRanks": 1, "type": "passive", "name": "Ancient Fellowship", "spellId": 443423, "icon": "spell_shaman_astralshift", "index": 200}]}, {"id": 94884, "name": "Heed My Call / Routine Communication", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94860], "prev": [94888], "entries": [{"id": 117481, "definitionId": 122493, "maxRanks": 1, "type": "passive", "name": "Heed My Call", "spellId": 443444, "icon": "spell_unused2", "index": 100}, {"id": 123630, "definitionId": 128468, "maxRanks": 1, "type": "passive", "name": "Routine Communication", "spellId": 443445, "icon": "spell_nature_undyingstrength", "index": 200}]}, {"id": 94869, "name": "Elemental Reverb", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94861], "prev": [94888], "entries": [{"id": 117466, "definitionId": 122478, "maxRanks": 1, "type": "passive", "name": "Elemental Reverb", "spellId": 443418, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 94890, "name": "Totemic Rebound", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94859], "prev": [94877], "entries": [{"id": 117487, "definitionId": 122499, "maxRanks": 1, "type": "passive", "name": "Totemic Rebound", "spellId": 445025, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94874, "name": "Amplification Core / Oversurge", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94891], "prev": [94877], "entries": [{"id": 117471, "definitionId": 122483, "maxRanks": 1, "type": "passive", "name": "Amplification Core", "spellId": 445029, "icon": "ability_evoker_essenceburststacks", "index": 100}, {"id": 125823, "definitionId": 130654, "maxRanks": 1, "type": "passive", "name": "Oversurge", "spellId": 445030, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 94882, "name": "Lively Totems", "type": "single", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "requiresNode": 80942, "next": [94872], "prev": [94877], "entries": [{"id": 117479, "definitionId": 122491, "maxRanks": 1, "type": "passive", "name": "Lively Totems", "spellId": 445034, "icon": "spell_fire_searingtotem", "index": 100}]}, {"id": 94887, "name": "Offering from Beyond", "type": "single", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94858], "prev": [94862], "entries": [{"id": 117484, "definitionId": 122496, "maxRanks": 1, "type": "passive", "name": "Offering from Beyond", "spellId": 443451, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 94860, "name": "Primordial Capacity", "type": "single", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94883], "prev": [94884], "entries": [{"id": 117457, "definitionId": 122469, "maxRanks": 1, "type": "passive", "name": "Primordial Capacity", "spellId": 443448, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 94861, "name": "Spiritwalker's Momentum", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94875], "prev": [94869], "entries": [{"id": 117458, "definitionId": 122470, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Momentum", "spellId": 443425, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 94859, "name": "Oversized Totems / Swift Recall", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94871], "prev": [94890], "entries": [{"id": 117456, "definitionId": 122468, "maxRanks": 1, "type": "passive", "name": "Oversized Totems", "spellId": 445026, "icon": "ability_shaman_totemrelocation", "index": 100}, {"id": 125825, "definitionId": 130656, "maxRanks": 1, "type": "passive", "name": "Swift Recall", "spellId": 445027, "icon": "spell_nature_brilliance", "index": 200}]}, {"id": 94891, "name": "Wind Barrier", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94866], "prev": [94874], "entries": [{"id": 117488, "definitionId": 122500, "maxRanks": 1, "type": "passive", "name": "Wind Barrier", "spellId": 445031, "icon": "spell_nature_eyeofthestorm", "index": 100}]}, {"id": 94872, "name": "Reactivity", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "requiresNode": 103590, "next": [94881], "prev": [94882], "entries": [{"id": 117469, "definitionId": 122481, "maxRanks": 1, "type": "passive", "name": "Reactivity", "spellId": 445035, "icon": "spell_fire_totemofwrath", "index": 100}]}, {"id": 94858, "name": "Natural Harmony / Earthen Communion", "type": "choice", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94887], "entries": [{"id": 117455, "definitionId": 122467, "maxRanks": 1, "type": "passive", "name": "Natural Harmony", "spellId": 443442, "icon": "spell_nature_natureguardian", "index": 100}, {"id": 123631, "definitionId": 128469, "maxRanks": 1, "type": "passive", "name": "Earthen Communion", "spellId": 443441, "icon": "spell_nature_skinofearth", "index": 200}]}, {"id": 94883, "name": "Maelstrom Supremacy", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94860], "entries": [{"id": 117480, "definitionId": 122492, "maxRanks": 1, "type": "passive", "name": "Maelstrom Supremacy", "spellId": 443447, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 94875, "name": "Final Calling", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94861], "entries": [{"id": 117472, "definitionId": 122484, "maxRanks": 1, "type": "passive", "name": "Final Calling", "spellId": 443446, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 94871, "name": "Imbuement Mastery", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "requiresNode": 81049, "next": [94879], "prev": [94859], "entries": [{"id": 117468, "definitionId": 122480, "maxRanks": 1, "type": "passive", "name": "Imbuement Mastery", "spellId": 445028, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 94866, "name": "Pulse Capacitor / Supportive Imbuements", "type": "choice", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94891], "entries": [{"id": 117463, "definitionId": 122475, "maxRanks": 1, "type": "passive", "name": "Pulse Capacitor", "spellId": 445032, "icon": "spell_nature_elementalprecision_1", "index": 100}, {"id": 125824, "definitionId": 130655, "maxRanks": 1, "type": "passive", "name": "Supportive Imbuements", "spellId": 445033, "icon": "ability_shaman_fortifyingwaters", "index": 200}]}, {"id": 94881, "name": "Totemic Coordination / Earthsurge", "type": "choice", "posX": 16200, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94872], "entries": [{"id": 117478, "definitionId": 122490, "maxRanks": 1, "type": "passive", "name": "Totemic Coordination", "spellId": 445036, "icon": "ability_shaman_echooftheelements", "index": 100}, {"id": 125822, "definitionId": 130653, "maxRanks": 1, "type": "passive", "name": "Earthsurge", "spellId": 455590, "icon": "inv_elementalearth2", "index": 200}]}, {"id": 94894, "name": "Ancestral Swiftness", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 56, "next": [], "prev": [94883, 94858, 94875], "entries": [{"id": 117491, "definitionId": 122503, "maxRanks": 1, "type": "active", "name": "Ancestral Swiftness", "spellId": 448861, "visibleSpellId": 443454, "icon": "inv_ability_farseershaman_ancestralswiftness", "index": 100}]}, {"id": 94879, "name": "Whirling Elements", "type": "single", "posX": 15600, "posY": 3600, "maxRanks": 1, "subTreeId": 54, "next": [], "prev": [94866, 94871, 94881], "entries": [{"id": 117476, "definitionId": 122488, "maxRanks": 1, "type": "passive", "name": "Whirling Elements", "spellId": 445024, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}], "subTreeNodes": [{"id": 99846, "name": "Farseer / Totemic", "type": "subtree", "posX": 9000, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123380, "type": "subtree", "name": "Farseer", "traitSubTreeId": 56, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-farseer", "nodes": [94888, 94862, 94884, 94869, 94887, 94860, 94861, 94858, 94883, 94875, 94894]}, {"id": 123378, "type": "subtree", "name": "Totemic", "traitSubTreeId": 54, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-totemic", "nodes": [94877, 94890, 94874, 94882, 94859, 94891, 94872, 94871, 94866, 94881, 94879]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810]}, {"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Holy", "specId": 65, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81508, 81602], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}], "freeNode": true}, {"id": 81600, "name": "Blessing of Freedom", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81601, 81630], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 100}], "freeNode": true}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81601, 93010, 92220], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81508, "name": "Improved Cleanse", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [81602, 81598], "prev": [81597], "entries": [{"id": 102477, "definitionId": 107482, "maxRanks": 1, "type": "passive", "name": "Improved Cleanse", "spellId": 393024, "icon": "spell_holy_purify", "index": 100}]}, {"id": 81599, "name": "Auras of the Resolute", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [81632, 81602], "prev": [81600, 81597], "entries": [{"id": 102586, "definitionId": 107591, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}], "freeNode": true}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [81632], "prev": [81600], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81601, "name": "Crusader Aura", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 92220], "prev": [81600, 81510], "entries": [{"id": 102588, "definitionId": 107593, "maxRanks": 1, "type": "active", "name": "Crusader Aura", "spellId": 32223, "icon": "spell_holy_crusaderaura", "index": 100}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [92220, 81604], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 2, "next": [81598, 81609], "prev": [81508, 81597, 81599], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 2, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [81605, 81631, 81606], "prev": [81601, 81599, 81630], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 92220, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 81509], "prev": [93010, 81601, 81510], "entries": [{"id": 114292, "definitionId": 119297, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231644, "icon": "spell_holy_righteousfury", "index": 0}]}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81609, 81610], "prev": [81508, 81602], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81609, 81606], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 81631, "name": "Seasoned Warhorse", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81606, 81509], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Seasoned Warhorse", "spellId": 376996, "icon": "spell_nature_swiftness", "index": 200}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93165, 81509], "prev": [92220, 93010], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81610, 81614, 93520], "prev": [81605, 81598, 81602], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 2, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81606, "name": "Avenging Wrath", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81614, 81616, 93009], "prev": [81605, 81631, 81632], "entries": [{"id": 102593, "definitionId": 107598, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 384376, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}]}, {"id": 81509, "name": "Justification", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616, 93168], "prev": [92220, 81604, 81631], "entries": [{"id": 102478, "definitionId": 107483, "maxRanks": 1, "type": "passive", "name": "Justification", "spellId": 377043, "icon": "ability_paladin_empoweredsealsrighteous", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93168], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81610, "name": "Golden Path", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81611, 81613], "prev": [81609, 81598], "entries": [{"id": 102598, "definitionId": 107603, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}]}, {"id": 93520, "name": "Echoing Blessings", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81613], "prev": [81609], "entries": [{"id": 115872, "definitionId": 120884, "maxRanks": 1, "type": "passive", "name": "Echoing Blessings", "spellId": 387801, "icon": "achievement_dungeon_heroic_gloryoftheraider", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81615, 81613], "prev": [81606, 81609], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [81615], "prev": [81606], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81617, 81543], "prev": [81606, 81509], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 93168, "name": "Lightforged Blessing", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81543, 81495], "prev": [93165, 81509], "entries": [{"id": 115447, "definitionId": 120459, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 406468, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 81611, "name": "Seal of Mercy", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480], "prev": [81610], "entries": [{"id": 102599, "definitionId": 107604, "maxRanks": 1, "type": "passive", "name": "Seal of Mercy", "spellId": 384897, "icon": "spell_holy_greaterblessingofsalvation", "index": 100}]}, {"id": 81613, "name": "Afterimage", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480, 81608], "prev": [81610, 81614, 93520], "entries": [{"id": 102601, "definitionId": 107606, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81608, 81621], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81621, 93191, 81619], "prev": [81616, 81614, 93009], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81619, 81628], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Touch of Light", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81628, 81495], "prev": [81616, 93168], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Touch of Light", "spellId": 385349, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 81480, "name": "Strength of Conviction", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93357], "prev": [81613, 81611], "entries": [{"id": 102444, "definitionId": 107455, "maxRanks": 2, "type": "passive", "name": "Strength of Conviction", "spellId": 379008, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93357], "prev": [81613, 81607], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81496, 93357], "prev": [81615, 81607], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 93191, "name": "Divine Purpose", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81496], "prev": [81615], "entries": [{"id": 115489, "definitionId": 120501, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 223817, "icon": "spell_holy_divinepurpose", "index": 100}]}, {"id": 81619, "name": "Seal of Alacrity", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81496, 93683], "prev": [81615, 81617], "entries": [{"id": 102609, "definitionId": 107614, "maxRanks": 2, "type": "passive", "name": "Seal of Alacrity", "spellId": 385425, "icon": "spell_holy_sealofvengeance", "index": 100}]}, {"id": 81628, "name": "Incandescence", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93683], "prev": [81543, 81617], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Incandescence", "spellId": 385464, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93683], "prev": [81543, 93168], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 93357, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81623], "prev": [81621, 81608, 81480], "entries": [{"id": 115673, "definitionId": 120685, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 409439, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93180], "prev": [81619, 81621, 93191], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "ability_bastion_paladin", "index": 100}]}, {"id": 93683, "name": "Seal of the Crusader", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93176], "prev": [81628, 81495, 81619], "entries": [{"id": 116064, "definitionId": 121076, "maxRanks": 2, "type": "passive", "name": "Seal of the Crusader", "spellId": 416770, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 81623, "name": "Seal of Order / Fading Light", "type": "choice", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93357], "entries": [{"id": 102614, "definitionId": 107619, "maxRanks": 1, "type": "passive", "name": "Seal of Order", "spellId": 385129, "icon": "spell_holy_sealofwisdom", "index": 100}, {"id": 115169, "definitionId": 120176, "maxRanks": 1, "type": "passive", "name": "Fading Light", "spellId": 405768, "icon": "spell_shadow_sealofkings", "index": 200}]}, {"id": 93180, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 115466, "definitionId": 120478, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 386738, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115465, "definitionId": 120477, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 93176, "name": "Vanguard's Momentum", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93683], "entries": [{"id": 115456, "definitionId": 120468, "maxRanks": 1, "type": "passive", "name": "Vanguard's Momentum", "spellId": 416869, "icon": "ability_paladin_speedoflight", "index": 100}]}], "specNodes": [{"id": 81555, "name": "Holy Shock", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81569, 81565], "prev": [], "entries": [{"id": 102534, "definitionId": 107539, "maxRanks": 1, "type": "active", "name": "Holy Shock", "spellId": 20473, "icon": "spell_holy_searinglight", "index": 100}]}, {"id": 81569, "name": "Extrication", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [93927, 81567], "prev": [81555], "entries": [{"id": 102550, "definitionId": 107555, "maxRanks": 1, "type": "passive", "name": "Extrication", "spellId": 461278, "icon": "ability_paladin_righteousvengeance", "index": 100}]}, {"id": 81565, "name": "Light of Dawn", "type": "single", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [81567, 81568], "prev": [81555], "entries": [{"id": 102545, "definitionId": 107550, "maxRanks": 1, "type": "active", "name": "Light of Dawn", "spellId": 85222, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 93927, "name": "Light's Conviction", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [81586, 81573, 81577], "prev": [81569], "entries": [{"id": 116376, "definitionId": 121388, "maxRanks": 1, "type": "passive", "name": "Light's Conviction", "spellId": 414073, "icon": "paladin_holy", "index": 100}]}, {"id": 81567, "name": "Aura Mastery", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [81566], "prev": [81569, 81565], "entries": [{"id": 102548, "definitionId": 107553, "maxRanks": 1, "type": "active", "name": "Aura Mastery", "spellId": 31821, "icon": "spell_holy_auramastery", "index": 100}]}, {"id": 81568, "name": "Beacon of the Lightbringer", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [81564, 81575, 81557], "prev": [81565], "entries": [{"id": 102549, "definitionId": 107554, "maxRanks": 1, "type": "passive", "name": "Beacon of the Lightbringer", "spellId": 197446, "icon": "spell_paladin_clarityofpurpose", "index": 100}]}, {"id": 81586, "name": "Tower of Radiance", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [81571, 93523], "prev": [93927], "entries": [{"id": 102571, "definitionId": 107576, "maxRanks": 1, "type": "passive", "name": "Tower of Radiance", "spellId": 231642, "icon": "inv_helm_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 81573, "name": "Tirion's Devotion", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [81574], "prev": [93927], "entries": [{"id": 102556, "definitionId": 107561, "maxRanks": 1, "type": "passive", "name": "Tirion's Devotion", "spellId": 414720, "icon": "spell_holy_revivechampion", "index": 200}]}, {"id": 81575, "name": "Unending Light", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [93522], "prev": [81568], "entries": [{"id": 102558, "definitionId": 107563, "maxRanks": 1, "type": "passive", "name": "Unending Light", "spellId": 387998, "icon": "spell_holy_holybolt", "index": 100}]}, {"id": 81564, "name": "Awestruck", "type": "single", "posX": 15000, "posY": 3300, "maxRanks": 1, "next": [81561, 81562], "prev": [81568], "entries": [{"id": 102544, "definitionId": 107549, "maxRanks": 1, "type": "passive", "name": "Awestruck", "spellId": 417855, "icon": "ability_paladin_blindinglight2", "index": 100}]}, {"id": 81571, "name": "Moment of Compassion / Resplendent Light", "type": "choice", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102502], "prev": [81586], "entries": [{"id": 102553, "definitionId": 107558, "maxRanks": 1, "type": "passive", "name": "Moment of Compassion", "spellId": 387786, "icon": "spell_holy_flashheal", "index": 100}, {"id": 102552, "definitionId": 107557, "maxRanks": 1, "type": "passive", "name": "Resplendent Light", "spellId": 392902, "icon": "ability_priest_voidshift", "index": 200}]}, {"id": 81577, "name": "Holy Prism / Barrier of Faith", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93523, 81570, 81574], "prev": [93927], "entries": [{"id": 102561, "definitionId": 107566, "maxRanks": 1, "type": "active", "name": "Holy Prism", "spellId": 114165, "icon": "spell_paladin_holyprism", "index": 100}, {"id": 102560, "definitionId": 107565, "maxRanks": 1, "type": "active", "name": "Barrier of Faith", "spellId": 148039, "icon": "ability_paladin_barrieroffaith", "index": 200}]}, {"id": 81566, "name": "Unwavering Spirit / Protection of Tyr", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93522, 81574], "prev": [81567], "entries": [{"id": 102547, "definitionId": 107552, "maxRanks": 1, "type": "passive", "name": "Unwavering Spirit", "spellId": 392911, "icon": "spell_holy_fanaticism", "index": 100}, {"id": 102546, "definitionId": 107551, "maxRanks": 1, "type": "passive", "name": "Protection of Tyr", "spellId": 200430, "icon": "spell_holy_auramastery", "index": 200}]}, {"id": 81557, "name": "Imbued Infusions", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93522, 81556, 81562], "prev": [81568], "entries": [{"id": 102536, "definitionId": 107541, "maxRanks": 1, "type": "passive", "name": "Imbued Infusions", "spellId": 392961, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 81561, "name": "Light of the Martyr", "type": "single", "posX": 15600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81560], "prev": [81564], "entries": [{"id": 102540, "definitionId": 107545, "maxRanks": 1, "type": "passive", "name": "Light of the Martyr", "spellId": 447985, "icon": "ability_paladin_lightofthemartyr", "index": 100}]}, {"id": 93523, "name": "Righteous Judgment", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102502, 81580], "prev": [81577, 81586], "entries": [{"id": 115875, "definitionId": 120887, "maxRanks": 1, "type": "passive", "name": "Righteous Judgment", "spellId": 414113, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 81570, "name": "Divine Favor / Hand of Divinity", "type": "choice", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81580], "prev": [81577], "entries": [{"id": 102551, "definitionId": 107556, "maxRanks": 1, "type": "passive", "name": "Divine Favor", "spellId": 460422, "icon": "spell_holy_heal", "index": 100}, {"id": 115876, "definitionId": 120888, "maxRanks": 1, "type": "active", "name": "Hand of Divinity", "spellId": 414273, "icon": "spell_holy_vindication", "index": 200}]}, {"id": 81574, "name": "Saved by the Light", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81580, 81576, 81583], "prev": [81573, 81577, 81566], "entries": [{"id": 102557, "definitionId": 107562, "maxRanks": 1, "type": "passive", "name": "Saved by the Light", "spellId": 157047, "icon": "ability_paladin_savedbythelight", "index": 200}]}, {"id": 93522, "name": "Light's Protection", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81583, 81578, 81585], "prev": [81557, 81566, 81575], "entries": [{"id": 115874, "definitionId": 120886, "maxRanks": 1, "type": "passive", "name": "Light's Protection", "spellId": 461243, "icon": "spell_holy_absolution", "index": 100}]}, {"id": 81556, "name": "Overflowing Light", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81585], "prev": [81557], "entries": [{"id": 102535, "definitionId": 107540, "maxRanks": 1, "type": "passive", "name": "Overflowing Light", "spellId": 461244, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 81562, "name": "Shining Righteousness", "type": "single", "posX": 15000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81585], "prev": [81557, 81564], "entries": [{"id": 102541, "definitionId": 107546, "maxRanks": 1, "type": "passive", "name": "Shining Righteousness", "spellId": 414443, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 102502, "name": "Liberation", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81554], "prev": [93523, 81571], "entries": [{"id": 126571, "definitionId": 131398, "maxRanks": 1, "type": "passive", "name": "Liberation", "spellId": 461287, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81580, "name": "Commanding Light", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81554, 103831, 81581], "prev": [81574, 81570, 93523], "entries": [{"id": 102564, "definitionId": 107569, "maxRanks": 1, "type": "passive", "name": "Commanding Light", "spellId": 387781, "icon": "ability_paladin_beaconoflight", "index": 100}]}, {"id": 81576, "name": "Glistening Radiance", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81581], "prev": [81574], "entries": [{"id": 102559, "definitionId": 107564, "maxRanks": 1, "type": "passive", "name": "Glistening Radiance", "spellId": 461245, "icon": "spell_paladin_divinecircle", "index": 100}]}, {"id": 81583, "name": "Breaking Dawn", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [81581, 81584], "prev": [93522, 81574], "entries": [{"id": 102567, "definitionId": 107572, "maxRanks": 2, "type": "passive", "name": "Breaking Dawn", "spellId": 387879, "icon": "spell_holy_rune", "index": 100}]}, {"id": 81578, "name": "Divine Revelations", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81584], "prev": [93522], "entries": [{"id": 102562, "definitionId": 107567, "maxRanks": 1, "type": "passive", "name": "Divine Revelations", "spellId": 387808, "icon": "ability_paladin_infusionoflight", "index": 100}]}, {"id": 81585, "name": "Divine Glimpse", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81584, 81589, 81588], "prev": [81556, 93522, 81562], "entries": [{"id": 102570, "definitionId": 107575, "maxRanks": 1, "type": "passive", "name": "Divine Glimpse", "spellId": 387805, "icon": "spell_holy_healingaura", "index": 100}]}, {"id": 81560, "name": "Bestow Light", "type": "single", "posX": 15600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81588], "prev": [81561], "entries": [{"id": 102539, "definitionId": 107544, "maxRanks": 1, "type": "passive", "name": "Bestow Light", "spellId": 448040, "icon": "ability_paladin_sheathoflight", "index": 100}]}, {"id": 81554, "name": "Beacon of Faith / Beacon of Virtue", "type": "choice", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594, 81579, 81595], "prev": [81580, 102502], "entries": [{"id": 102533, "definitionId": 107538, "maxRanks": 1, "type": "active", "name": "Beacon of Faith", "spellId": 156910, "icon": "ability_paladin_beaconsoflight", "index": 100}, {"id": 102532, "definitionId": 107537, "maxRanks": 1, "type": "active", "name": "Beacon of Virtue", "spellId": 200025, "icon": "ability_paladin_beaconofinsight", "index": 200}]}, {"id": 103831, "name": "Empyrean Legacy", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594], "prev": [81580], "entries": [{"id": 102576, "definitionId": 107581, "maxRanks": 1, "type": "passive", "name": "Empyrean Legacy", "spellId": 387170, "icon": "item_holyspark", "index": 100}]}, {"id": 81581, "name": "Veneration", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594, 81592], "prev": [81580, 81583, 81576], "entries": [{"id": 102565, "definitionId": 107570, "maxRanks": 1, "type": "passive", "name": "Veneration", "spellId": 392938, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 81584, "name": "Avenging Wrath: Might / Avenging Crusader", "type": "choice", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81592, 81558], "prev": [81583, 81585, 81578], "entries": [{"id": 102569, "definitionId": 107574, "maxRanks": 1, "type": "active", "name": "Avenging Wrath: Might", "spellId": 384442, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}, {"id": 102568, "definitionId": 107573, "maxRanks": 1, "type": "active", "name": "Avenging Crusader", "spellId": 394088, "visibleSpellId": 216331, "icon": "ability_paladin_veneration", "index": 200}]}, {"id": 81589, "name": "Power of the Silver Hand", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81558], "prev": [81585], "entries": [{"id": 102574, "definitionId": 107579, "maxRanks": 1, "type": "passive", "name": "Power of the Silver Hand", "spellId": 200474, "icon": "ability_paladin_blessedhands", "index": 100}]}, {"id": 81588, "name": "Tyr's Deliverance", "type": "single", "posX": 15000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81558, 81590, 81587], "prev": [81560, 81585], "entries": [{"id": 102573, "definitionId": 107578, "maxRanks": 1, "type": "active", "name": "Tyr's Deliverance", "spellId": 200652, "icon": "inv_mace_2h_artifactsilverhand_d_01", "index": 100}]}, {"id": 81579, "name": "Truth Prevails", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81554], "entries": [{"id": 102563, "definitionId": 107568, "maxRanks": 1, "type": "passive", "name": "Truth Prevails", "spellId": 461273, "icon": "spell_holy_spiritualguidence", "index": 100}]}, {"id": 81594, "name": "Crusader's Might", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93521], "prev": [81554, 81581, 103831], "entries": [{"id": 102580, "definitionId": 107585, "maxRanks": 1, "type": "passive", "name": "Crusader's Might", "spellId": 196926, "icon": "ability_paladin_swiftretribution", "index": 100}]}, {"id": 81592, "name": "Sanctified Wrath / Awakening", "type": "choice", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93521, 81593, 81591], "prev": [81584, 81581], "entries": [{"id": 102578, "definitionId": 107583, "maxRanks": 1, "type": "passive", "name": "Sanctified Wrath", "spellId": 53376, "icon": "ability_paladin_judgementsofthejust", "index": 100}, {"id": 116205, "definitionId": 121217, "maxRanks": 1, "type": "passive", "name": "Awakening", "spellId": 414195, "icon": "inv_helm_plate_raidpaladin_n_01", "index": 200}]}, {"id": 81558, "name": "Reclamation", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81591], "prev": [81588, 81584, 81589], "entries": [{"id": 102537, "definitionId": 107542, "maxRanks": 1, "type": "passive", "name": "Reclamation", "spellId": 415364, "icon": "ability_paladin_longarmofthelaw", "index": 100}]}, {"id": 81590, "name": "Relentless Inquisitor", "type": "single", "posX": 15600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81588], "entries": [{"id": 102575, "definitionId": 107580, "maxRanks": 1, "type": "passive", "name": "Relentless Inquisitor", "spellId": 383388, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81595, "name": "Rising Sunlight", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81554], "entries": [{"id": 102581, "definitionId": 107586, "maxRanks": 1, "type": "passive", "name": "Rising Sunlight", "spellId": 461250, "icon": "spell_priest_divinestar_holy", "index": 100}]}, {"id": 93521, "name": "Glorious Dawn", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81594, 81592], "entries": [{"id": 115873, "definitionId": 120885, "maxRanks": 1, "type": "passive", "name": "Glorious Dawn", "spellId": 461246, "icon": "ability_paladin_holyavenger", "index": 100}]}, {"id": 81593, "name": "Merciful Auras / Blessing of Summer", "type": "choice", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81592], "entries": [{"id": 102579, "definitionId": 107584, "maxRanks": 1, "type": "passive", "name": "Merciful Auras", "spellId": 183415, "icon": "spell_holy_blessedlife", "index": 100}, {"id": 116183, "definitionId": 121195, "maxRanks": 1, "type": "active", "name": "Blessing of Summer", "spellId": 388007, "icon": "ability_ardenweald_paladin_summer", "index": 200}]}, {"id": 81591, "name": "Inflorescence of the Sunwell", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81558, 81592], "entries": [{"id": 102577, "definitionId": 107582, "maxRanks": 1, "type": "passive", "name": "Inflorescence of the Sunwell", "spellId": 392907, "icon": "spell_lfieblood", "index": 100}]}, {"id": 81587, "name": "Boundless Salvation", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81588], "entries": [{"id": 102572, "definitionId": 107577, "maxRanks": 1, "type": "passive", "name": "Boundless Salvation", "spellId": 392951, "icon": "ability_paladin_selflesshealer", "index": 100}]}], "heroNodes": [{"id": 95099, "name": "Dawnlight", "type": "single", "posX": 8700, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 50, "requiresNode": 81577, "next": [95073, 95095, 95080], "prev": [], "entries": [{"id": 117696, "definitionId": 122708, "maxRanks": 1, "type": "passive", "name": "Dawnlight", "spellId": 431377, "icon": "inv_ability_heraldofthesunpaladin_dawnlight", "index": 100}], "freeNode": true}, {"id": 95073, "name": "Morning Star / Gleaming Rays", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95098], "prev": [95099], "entries": [{"id": 117670, "definitionId": 122682, "maxRanks": 1, "type": "passive", "name": "Morning Star", "spellId": 431482, "icon": "spell_holy_persecution", "index": 100}, {"id": 117778, "definitionId": 122790, "maxRanks": 1, "type": "passive", "name": "Gleaming Rays", "spellId": 431480, "icon": "spell_priest_power_word", "index": 200}]}, {"id": 95095, "name": "Eternal Flame", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95071], "prev": [95099], "entries": [{"id": 117692, "definitionId": 122704, "maxRanks": 1, "type": "active", "name": "Eternal Flame", "spellId": 156322, "icon": "inv_torch_thrown", "index": 100}]}, {"id": 95080, "name": "Luminosity", "type": "single", "posX": 9300, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95072], "prev": [95099], "entries": [{"id": 117677, "definitionId": 122689, "maxRanks": 1, "type": "passive", "name": "Luminosity", "spellId": 431402, "icon": "inv_qirajidol_sun", "index": 100}]}, {"id": 95098, "name": "Illumine / Will of the Dawn", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95069], "prev": [95073], "entries": [{"id": 117695, "definitionId": 122707, "maxRanks": 1, "type": "passive", "name": "Illumine", "spellId": 431423, "icon": "spell_holy_divineillumination", "index": 100}, {"id": 117777, "definitionId": 122789, "maxRanks": 1, "type": "passive", "name": "Will of the Dawn", "spellId": 431406, "icon": "spell_holy_divineprovidence", "index": 200}]}, {"id": 95071, "name": "Blessing of An'she / Lingering Radiance", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95094], "prev": [95095], "entries": [{"id": 117668, "definitionId": 122680, "maxRanks": 1, "type": "passive", "name": "Blessing of An'she", "spellId": 445200, "icon": "inv_ability_holyfire_orb", "index": 100}, {"id": 117779, "definitionId": 122791, "maxRanks": 1, "type": "passive", "name": "Lingering Radiance", "spellId": 431407, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 95072, "name": "Sun Sear", "type": "single", "posX": 9300, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95086], "prev": [95080], "entries": [{"id": 117669, "definitionId": 122681, "maxRanks": 1, "type": "passive", "name": "Sun Sear", "spellId": 431413, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 95069, "name": "Aurora", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81577, "next": [95105], "prev": [95098], "entries": [{"id": 117666, "definitionId": 122678, "maxRanks": 1, "type": "passive", "name": "Aurora", "spellId": 439760, "icon": "spell_holy_rune", "index": 100}]}, {"id": 95094, "name": "Solar Grace", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95105], "prev": [95071], "entries": [{"id": 117691, "definitionId": 122703, "maxRanks": 1, "type": "passive", "name": "Solar Grace", "spellId": 431404, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 100}]}, {"id": 95086, "name": "Second Sunrise", "type": "single", "posX": 9300, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "next": [95105], "prev": [95072], "entries": [{"id": 117683, "definitionId": 122695, "maxRanks": 1, "type": "passive", "name": "Second Sunrise", "spellId": 431474, "icon": "ability_priest_halo", "index": 100}]}, {"id": 95105, "name": "Sun's Avatar", "type": "single", "posX": 8700, "posY": 3600, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81606, "next": [], "prev": [95094, 95069, 95086], "entries": [{"id": 117702, "definitionId": 122714, "maxRanks": 1, "type": "passive", "name": "Sun's Avatar", "spellId": 431425, "icon": "ability_paladin_holyavenger", "index": 100}]}, {"id": 95234, "name": "Holy Armaments", "type": "single", "posX": 8690, "posY": 4190, "maxRanks": 1, "entryNode": true, "subTreeId": 49, "next": [95233, 95228, 95235], "prev": [], "entries": [{"id": 117882, "definitionId": 122894, "maxRanks": 1, "type": "active", "name": "Holy Armaments", "spellId": 432459, "icon": "inv_ability_lightsmithpaladin_holybulwark", "index": 100}], "freeNode": true}, {"id": 95233, "name": "Rite of Sanctification / Rite of Adjuration", "type": "choice", "posX": 8100, "posY": 4790, "maxRanks": 1, "subTreeId": 49, "next": [95236], "prev": [95234], "entries": [{"id": 117881, "definitionId": 122893, "maxRanks": 1, "type": "active", "name": "Rite of Sanctification", "spellId": 433568, "icon": "inv_inscription_weaponscroll01", "index": 100}, {"id": 117880, "definitionId": 122892, "maxRanks": 1, "type": "active", "name": "Rite of Adjuration", "spellId": 433583, "icon": "inv_inscription_armorscroll02", "index": 200}]}, {"id": 95228, "name": "Solidarity", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95231], "prev": [95234], "entries": [{"id": 117873, "definitionId": 122885, "maxRanks": 1, "type": "passive", "name": "Solidarity", "spellId": 432802, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 95235, "name": "Divine Guidance / Blessed Assurance", "type": "choice", "posX": 9300, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95232], "prev": [95234], "entries": [{"id": 117884, "definitionId": 122896, "maxRanks": 1, "type": "passive", "name": "Divine Guidance", "spellId": 433106, "icon": "spell_holy_lightsgrace", "index": 100}, {"id": 117883, "definitionId": 122895, "maxRanks": 1, "type": "passive", "name": "Blessed Assurance", "spellId": 433015, "icon": "spell_holy_blessedlife", "index": 200}]}, {"id": 95231, "name": "Divine Inspiration / Forewarning", "type": "choice", "posX": 8700, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95229], "prev": [95228], "entries": [{"id": 117877, "definitionId": 122889, "maxRanks": 1, "type": "passive", "name": "Divine Inspiration", "spellId": 432964, "icon": "ability_priest_flashoflight", "index": 100}, {"id": 117876, "definitionId": 122888, "maxRanks": 1, "type": "passive", "name": "Forewarning", "spellId": 432804, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 95232, "name": "Fear No Evil / Excoriation", "type": "choice", "posX": 9290, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95238], "prev": [95235], "entries": [{"id": 117879, "definitionId": 122891, "maxRanks": 1, "type": "passive", "name": "Fear No Evil", "spellId": 432834, "icon": "spell_holy_senseundead", "index": 100}, {"id": 117878, "definitionId": 122890, "maxRanks": 1, "type": "passive", "name": "Excoriation", "spellId": 433896, "icon": "ability_paladin_sanctifiedwrath", "index": 200}]}, {"id": 95236, "name": "Laying Down Arms", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 49, "next": [95237], "prev": [95233], "entries": [{"id": 117885, "definitionId": 122897, "maxRanks": 1, "type": "passive", "name": "Laying Down Arms", "spellId": 432866, "icon": "ability_paladin_handoflight", "index": 100}]}, {"id": 95229, "name": "Valiance", "type": "single", "posX": 8700, "posY": 5980, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95231], "entries": [{"id": 117874, "definitionId": 122886, "maxRanks": 1, "type": "passive", "name": "Valiance", "spellId": 432919, "icon": "inv_mace_47", "index": 100}]}, {"id": 95237, "name": "Shared Resolve", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95236], "entries": [{"id": 117886, "definitionId": 122898, "maxRanks": 1, "type": "passive", "name": "Shared Resolve", "spellId": 432821, "icon": "spell_holy_devotionaura", "index": 100}]}, {"id": 95238, "name": "Hammer and Anvil", "type": "single", "posX": 9300, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95232], "entries": [{"id": 117887, "definitionId": 122899, "maxRanks": 1, "type": "passive", "name": "Hammer and Anvil", "spellId": 433718, "icon": "inv_10_blacksmithing_consumable_repairhammer_color1", "index": 100}]}, {"id": 95230, "name": "Blessing of the Forge", "type": "single", "posX": 8690, "posY": 6600, "maxRanks": 1, "subTreeId": 49, "requiresNode": 81606, "next": [], "prev": [95229, 95237, 95238], "entries": [{"id": 117875, "definitionId": 122887, "maxRanks": 1, "type": "passive", "name": "Blessing of the Forge", "spellId": 433011, "icon": "inv_ability_lightsmithpaladin_sacredweapon", "index": 100}]}], "subTreeNodes": [{"id": 99839, "name": "Herald of the Sun / Lightsmith", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123362, "type": "subtree", "name": "Herald of the Sun", "traitSubTreeId": 50, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-heraldofthesun", "nodes": [95099, 95073, 95095, 95080, 95098, 95071, 95072, 95069, 95094, 95086, 95105]}, {"id": 123359, "type": "subtree", "name": "Lightsmith", "traitSubTreeId": 49, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-lightsmith", "nodes": [95234, 95233, 95228, 95235, 95231, 95232, 95236, 95229, 95237, 95238, 95230]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81480, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81509, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81599, 81600, 81601, 81602, 81603, 81604, 81605, 81606, 81607, 81608, 81609, 81610, 81611, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81619, 81620, 81621, 81623, 81624, 81625, 81626, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93176, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93684, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831]}, {"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Protection", "specId": 66, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81507, 81602], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}], "freeNode": true}, {"id": 81600, "name": "Blessing of Freedom", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81601, 81630], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 100}]}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81601, 93010, 81603], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81507, "name": "Cleanse Toxins", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [81602, 81598], "prev": [81597], "entries": [{"id": 102476, "definitionId": 107481, "maxRanks": 1, "type": "active", "name": "Cleanse Toxins", "spellId": 213644, "icon": "spell_holy_renew", "index": 100}]}, {"id": 81599, "name": "Auras of the Resolute", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [81632, 81602], "prev": [81600, 81597], "entries": [{"id": 102586, "definitionId": 107591, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}], "freeNode": true}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [81632], "prev": [81600], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81601, "name": "Crusader Aura", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 81603], "prev": [81600, 81510], "entries": [{"id": 102588, "definitionId": 107593, "maxRanks": 1, "type": "active", "name": "Crusader Aura", "spellId": 32223, "icon": "spell_holy_crusaderaura", "index": 100}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [81603, 81604], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 2, "next": [81598, 81609], "prev": [81597, 81599, 81507], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 2, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [81605, 81631, 81606], "prev": [81601, 81599, 81630], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 81603, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 81509], "prev": [93010, 81601, 81510], "entries": [{"id": 102590, "definitionId": 107595, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231663, "icon": "spell_holy_righteousfury", "index": 0}]}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81609, 81610], "prev": [81507, 81602], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81609, 81606], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 81631, "name": "Seasoned Warhorse", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81606, 81509], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Seasoned Warhorse", "spellId": 376996, "icon": "spell_nature_swiftness", "index": 200}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93165, 81509], "prev": [81603, 93010], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81610, 81614], "prev": [81605, 81598, 81602], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 2, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81606, "name": "Avenging Wrath", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81614, 81616, 93009], "prev": [81605, 81631, 81632], "entries": [{"id": 102593, "definitionId": 107598, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 384376, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}]}, {"id": 81509, "name": "Justification", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616, 93187, 93168], "prev": [81604, 81631, 81603], "entries": [{"id": 102478, "definitionId": 107483, "maxRanks": 1, "type": "passive", "name": "Justification", "spellId": 377043, "icon": "ability_paladin_empoweredsealsrighteous", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93168], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81610, "name": "Golden Path", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81611, 93188], "prev": [81609, 81598], "entries": [{"id": 102598, "definitionId": 107603, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81615, 93188], "prev": [81606, 81609], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [81615], "prev": [81606], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81617, 81543], "prev": [81606, 81509], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 93187, "name": "Unbound Freedom", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81543], "prev": [81509], "entries": [{"id": 115479, "definitionId": 120491, "maxRanks": 1, "type": "passive", "name": "Unbound Freedom", "spellId": 305394, "icon": "spell_holy_sealofvalor", "index": 100}]}, {"id": 93168, "name": "Lightforged Blessing", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81543, 81495], "prev": [93165, 81509], "entries": [{"id": 115447, "definitionId": 120459, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 406468, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 81611, "name": "Seal of Mercy", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480], "prev": [81610], "entries": [{"id": 102599, "definitionId": 107604, "maxRanks": 1, "type": "passive", "name": "Seal of Mercy", "spellId": 384897, "icon": "spell_holy_greaterblessingofsalvation", "index": 100}]}, {"id": 93188, "name": "Afterimage", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480, 81608], "prev": [81610, 81614], "entries": [{"id": 115480, "definitionId": 120492, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81608, 81621], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81621, 93192, 81619], "prev": [81616, 81614, 93009], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81619, 81628], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Touch of Light", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81628, 81495], "prev": [81616, 93168, 93187], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Touch of Light", "spellId": 385349, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 81480, "name": "Strength of Conviction", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93356], "prev": [81611, 93188], "entries": [{"id": 102444, "definitionId": 107455, "maxRanks": 2, "type": "passive", "name": "Strength of Conviction", "spellId": 379008, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93356], "prev": [81607, 93188], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81496, 93356], "prev": [81615, 81607], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 93192, "name": "Divine Purpose", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81496], "prev": [81615], "entries": [{"id": 115490, "definitionId": 120502, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 223817, "icon": "spell_holy_divinepurpose", "index": 100}]}, {"id": 81619, "name": "Seal of Alacrity", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81496, 93684], "prev": [81615, 81617], "entries": [{"id": 102609, "definitionId": 107614, "maxRanks": 2, "type": "passive", "name": "Seal of Alacrity", "spellId": 385425, "icon": "spell_holy_sealofvengeance", "index": 100}]}, {"id": 81628, "name": "Incandescence", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93684], "prev": [81543, 81617], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Incandescence", "spellId": 385464, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93684], "prev": [81543, 93168], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 93356, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81623], "prev": [81621, 81608, 81480], "entries": [{"id": 115672, "definitionId": 120684, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 409441, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81479], "prev": [81619, 81621, 93192], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "ability_bastion_paladin", "index": 100}]}, {"id": 93684, "name": "Seal of the Crusader", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81625], "prev": [81495, 81628, 81619], "entries": [{"id": 116065, "definitionId": 121077, "maxRanks": 2, "type": "passive", "name": "Seal of the Crusader", "spellId": 385728, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 81623, "name": "Seal of Order / Fading Light", "type": "choice", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93356], "entries": [{"id": 102614, "definitionId": 107619, "maxRanks": 1, "type": "passive", "name": "Seal of Order", "spellId": 385129, "icon": "spell_holy_sealofwisdom", "index": 100}, {"id": 115169, "definitionId": 120176, "maxRanks": 1, "type": "passive", "name": "Fading Light", "spellId": 405768, "icon": "spell_shadow_sealofkings", "index": 200}]}, {"id": 81479, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 102443, "definitionId": 107448, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 386738, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115168, "definitionId": 120175, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 81625, "name": "Zealot's Paragon", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93684], "entries": [{"id": 102616, "definitionId": 107621, "maxRanks": 1, "type": "passive", "name": "Zealot's Paragon", "spellId": 391142, "icon": "ability_paladin_conviction", "index": 100}]}], "specNodes": [{"id": 81502, "name": "Avenger's Shield", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81489, 81469], "prev": [], "entries": [{"id": 102471, "definitionId": 107476, "maxRanks": 1, "type": "active", "name": "Avenger's Shield", "spellId": 31935, "icon": "spell_holy_avengersshield", "index": 100}]}, {"id": 81489, "name": "Holy Shield", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [81487, 81494], "prev": [81502], "entries": [{"id": 102455, "definitionId": 107460, "maxRanks": 1, "type": "passive", "name": "Holy Shield", "spellId": 152261, "icon": "inv_shield_1h_hyrja_d_01", "index": 100}]}, {"id": 81469, "name": "Hammer of the Righteous / Blessed Hammer", "type": "choice", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [81487, 81498], "prev": [81502], "entries": [{"id": 102431, "definitionId": 107436, "maxRanks": 1, "type": "active", "name": "Hammer of the Righteous", "spellId": 53595, "icon": "ability_paladin_hammeroftherighteous", "index": 100}, {"id": 102430, "definitionId": 107435, "maxRanks": 1, "type": "active", "name": "Blessed Hammer", "spellId": 204019, "icon": "paladin_retribution", "index": 200}]}, {"id": 81494, "name": "Inner Light / Redoubt", "type": "choice", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [81486], "prev": [81489], "entries": [{"id": 102463, "definitionId": 107468, "maxRanks": 1, "type": "passive", "name": "Inner Light", "spellId": 386568, "icon": "ability_paladin_shieldofvengeance", "index": 100}, {"id": 102462, "definitionId": 107467, "maxRanks": 1, "type": "passive", "name": "Redoubt", "spellId": 280373, "icon": "ability_warrior_shieldguard", "index": 200}]}, {"id": 81487, "name": "Grand Crusader", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [81481, 81501, 81476], "prev": [81489, 81469], "entries": [{"id": 102453, "definitionId": 107458, "maxRanks": 1, "type": "passive", "name": "Grand Crusader", "spellId": 85043, "icon": "inv_helmet_74", "index": 100}]}, {"id": 81498, "name": "Shining Light", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [101927], "prev": [81469], "entries": [{"id": 102467, "definitionId": 107472, "maxRanks": 1, "type": "passive", "name": "Shining Light", "spellId": 321136, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81486, "name": "Improved Holy Shield", "type": "single", "posX": 12000, "posY": 3300, "maxRanks": 1, "next": [81499, 81492], "prev": [81494], "entries": [{"id": 102452, "definitionId": 107457, "maxRanks": 1, "type": "passive", "name": "Improved Holy Shield", "spellId": 393030, "icon": "inv_shield_1h_hyrja_d_01", "index": 100}]}, {"id": 81476, "name": "Inspiring Vanguard", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [81499], "prev": [81487], "entries": [{"id": 102439, "definitionId": 107444, "maxRanks": 1, "type": "passive", "name": "Inspiring Vanguard", "spellId": 393022, "icon": "inv_helmet_74", "index": 100}]}, {"id": 81481, "name": "Ardent Defender", "type": "single", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [81499, 81503, 90062], "prev": [81487], "entries": [{"id": 102445, "definitionId": 107450, "maxRanks": 1, "type": "active", "name": "Ardent Defender", "spellId": 31850, "icon": "spell_holy_ardentdefender", "index": 100}]}, {"id": 81501, "name": "Barricade of Faith", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [81503], "prev": [81487], "entries": [{"id": 102470, "definitionId": 107475, "maxRanks": 1, "type": "passive", "name": "Barricade of Faith", "spellId": 385726, "icon": "ability_paladin_barrieroffaith", "index": 100}]}, {"id": 101927, "name": "Sanctuary", "type": "single", "posX": 14400, "posY": 3300, "maxRanks": 1, "next": [81503, 81470], "prev": [81498], "entries": [{"id": 102451, "definitionId": 107456, "maxRanks": 1, "type": "passive", "name": "Sanctuary", "spellId": 379021, "icon": "spell_holy_innerfire", "index": 100}]}, {"id": 81492, "name": "Consecrated Ground", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81474, 101928], "prev": [81486], "entries": [{"id": 102459, "definitionId": 107464, "maxRanks": 1, "type": "passive", "name": "Consecrated Ground", "spellId": 204054, "icon": "ability_paladin_righteousvengeance", "index": 0}]}, {"id": 81499, "name": "Bulwark of Order", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81474, 81506, 81483], "prev": [81476, 81481, 81486], "entries": [{"id": 102468, "definitionId": 107473, "maxRanks": 1, "type": "passive", "name": "Bulwark of Order", "spellId": 209389, "icon": "spell_holy_pureofheart", "index": 100}]}, {"id": 90062, "name": "Improved Ardent Defender / Blessing of Spellwarding", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81483], "prev": [81481], "entries": [{"id": 111887, "definitionId": 116892, "maxRanks": 1, "type": "passive", "name": "Improved Ardent Defender", "spellId": 393114, "icon": "spell_holy_ardentdefender", "index": 100}, {"id": 111886, "definitionId": 116891, "maxRanks": 1, "type": "active", "name": "Blessing of Spellwarding", "spellId": 204018, "icon": "spell_holy_blessingofprotection", "index": 200}]}, {"id": 81503, "name": "Light of the Titans / Tirion's Devotion", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81485, 81483, 81612], "prev": [81501, 81481, 101927], "entries": [{"id": 102472, "definitionId": 107477, "maxRanks": 1, "type": "passive", "name": "Light of the Titans", "spellId": 378405, "icon": "spell_paladin_lightofdawn", "index": 100}, {"id": 125873, "definitionId": 130704, "maxRanks": 1, "type": "passive", "name": "Tirion's Devotion", "spellId": 392928, "icon": "spell_holy_revivechampion", "index": 200}]}, {"id": 81470, "name": "Consecration in Flame", "type": "single", "posX": 15000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81485, 81473], "prev": [101927], "entries": [{"id": 102432, "definitionId": 107437, "maxRanks": 1, "type": "passive", "name": "Consecration in Flame", "spellId": 379022, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 81474, "name": "Tyr's Enforcer", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101928, 81629, 81472], "prev": [81499, 81492], "entries": [{"id": 102437, "definitionId": 107442, "maxRanks": 2, "type": "passive", "name": "Tyr's Enforcer", "spellId": 378285, "icon": "spell_holy_persecution", "index": 0}]}, {"id": 81506, "name": "Relentless Inquisitor", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81490, 81629], "prev": [81499], "entries": [{"id": 102475, "definitionId": 107480, "maxRanks": 1, "type": "passive", "name": "Relentless Inquisitor", "spellId": 383388, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81483, "name": "Avenging Wrath: Might / Sentinel", "type": "choice", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81490], "prev": [81503, 81499, 90062], "entries": [{"id": 102448, "definitionId": 107453, "maxRanks": 1, "type": "active", "name": "Avenging Wrath: Might", "spellId": 384442, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}, {"id": 102447, "definitionId": 107452, "maxRanks": 1, "type": "active", "name": "Sentinel", "spellId": 385438, "visibleSpellId": 389539, "icon": "spell_holy_holynova", "index": 200}]}, {"id": 81612, "name": "Seal of Charity", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81490, 81475], "prev": [81503], "entries": [{"id": 102600, "definitionId": 107605, "maxRanks": 1, "type": "passive", "name": "Seal of Charity", "spellId": 384815, "icon": "spell_priest_power_word", "index": 100}]}, {"id": 81485, "name": "Faith in the Light", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [81475, 81473, 81620], "prev": [81503, 81470], "entries": [{"id": 102450, "definitionId": 107449, "maxRanks": 2, "type": "passive", "name": "Faith in the Light", "spellId": 379043, "icon": "spell_holy_redemption", "index": 100}]}, {"id": 101928, "name": "Soaring Shield", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81472, 81493], "prev": [81474, 81492], "entries": [{"id": 102434, "definitionId": 107439, "maxRanks": 1, "type": "passive", "name": "Soaring Shield", "spellId": 378457, "icon": "spell_burningbladeshaman_lavaslash", "index": 100}]}, {"id": 81629, "name": "Seal of Reprisal", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81472], "prev": [81474, 81506], "entries": [{"id": 102621, "definitionId": 107626, "maxRanks": 1, "type": "passive", "name": "Seal of Reprisal", "spellId": 377053, "icon": "spell_holy_sealoffury", "index": 100}]}, {"id": 81490, "name": "Guardian of Ancient Kings", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81484, 81500, 81497], "prev": [81483, 81506, 81612], "entries": [{"id": 102456, "definitionId": 107461, "maxRanks": 1, "type": "active", "name": "Guardian of Ancient Kings", "spellId": 86659, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 81475, "name": "Hand of the Protector", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81620], "prev": [81485, 81612], "entries": [{"id": 102438, "definitionId": 107443, "maxRanks": 1, "type": "passive", "name": "Hand of the Protector", "spellId": 315924, "icon": "ability_paladin_blessedhands", "index": 100}]}, {"id": 81473, "name": "Crusader's Judgment", "type": "single", "posX": 15000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81620, 81488], "prev": [81485, 81470], "entries": [{"id": 102436, "definitionId": 107441, "maxRanks": 1, "type": "passive", "name": "Crusader's Judgment", "spellId": 204023, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 81472, "name": "Focused Enmity", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81493, 81482], "prev": [81474, 81629, 101928], "entries": [{"id": 102435, "definitionId": 107440, "maxRanks": 1, "type": "passive", "name": "Focused Enmity", "spellId": 378845, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 81484, "name": "Gift of the Golden Val'kyr", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81482, 81497, 81491], "prev": [81490], "entries": [{"id": 102449, "definitionId": 107454, "maxRanks": 2, "type": "passive", "name": "Gift of the Golden Val'kyr", "spellId": 378279, "icon": "inv_valkiergoldpet", "index": 100}]}, {"id": 81500, "name": "Uther's Counsel", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81471, 81497, 81504], "prev": [81490], "entries": [{"id": 102469, "definitionId": 107474, "maxRanks": 2, "type": "passive", "name": "Uther's Counsel", "spellId": 378425, "icon": "spell_holy_greaterblessingofsalvation", "index": 100}]}, {"id": 81620, "name": "Sanctified Wrath", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81471, 81488], "prev": [81485, 81473, 81475], "entries": [{"id": 102611, "definitionId": 107616, "maxRanks": 1, "type": "active", "name": "Sanctified Wrath", "spellId": 53376, "visibleSpellId": 31884, "icon": "ability_paladin_judgementsofthejust", "index": 100}]}, {"id": 81493, "name": "Strength in Adversity / Crusader's Resolve", "type": "choice", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81505], "prev": [81472, 101928], "entries": [{"id": 102461, "definitionId": 107466, "maxRanks": 1, "type": "passive", "name": "Strength in Adversity", "spellId": 393071, "icon": "spell_holy_weaponmastery", "index": 100}, {"id": 102460, "definitionId": 107465, "maxRanks": 1, "type": "passive", "name": "Crusader's Resolve", "spellId": 380188, "icon": "ability_priest_angelicbulwark", "index": 200}]}, {"id": 81482, "name": "Ferren Marcus's Fervor", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81505, 81491], "prev": [81472, 81484], "entries": [{"id": 102446, "definitionId": 107451, "maxRanks": 2, "type": "passive", "name": "Ferren Marcus's Fervor", "spellId": 378762, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 81497, "name": "Eye of Tyr", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81491, 92953, 81504], "prev": [81490, 81500, 81484], "entries": [{"id": 102466, "definitionId": 107471, "maxRanks": 1, "type": "active", "name": "Eye of Tyr", "spellId": 387174, "icon": "inv_shield_1h_artifactnorgannon_d_01", "index": 100}]}, {"id": 81471, "name": "Resolute Defender", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81504, 81477], "prev": [81620, 81500], "entries": [{"id": 102433, "definitionId": 107438, "maxRanks": 2, "type": "passive", "name": "Resolute Defender", "spellId": 385422, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 81488, "name": "Bastion of Light", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81477], "prev": [81620, 81473], "entries": [{"id": 102454, "definitionId": 107459, "maxRanks": 1, "type": "active", "name": "Bastion of Light", "spellId": 378974, "icon": "paladin_protection", "index": 100}]}, {"id": 81505, "name": "Moment of Glory", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81482, 81493], "entries": [{"id": 102474, "definitionId": 107479, "maxRanks": 1, "type": "active", "name": "Moment of Glory", "spellId": 327193, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81491, "name": "Bulwark of Righteous Fury", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81482, 81484, 81497], "entries": [{"id": 102457, "definitionId": 107462, "maxRanks": 1, "type": "passive", "name": "Bulwark of Righteous Fury", "spellId": 386653, "icon": "spell_holy_sealofrighteousness", "index": 0}]}, {"id": 92953, "name": "Inmost Light", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81497], "entries": [{"id": 115167, "definitionId": 120174, "maxRanks": 1, "type": "passive", "name": "Inmost Light", "spellId": 405757, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81504, "name": "Final Stand", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81471, 81500, 81497], "entries": [{"id": 102473, "definitionId": 107478, "maxRanks": 1, "type": "passive", "name": "Final Stand", "spellId": 204077, "icon": "spell_holy_crusade", "index": 400}]}, {"id": 81477, "name": "Righteous Protector", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81471, 81488], "entries": [{"id": 102440, "definitionId": 107445, "maxRanks": 1, "type": "passive", "name": "Righteous Protector", "spellId": 204074, "icon": "ability_paladin_shieldofthetemplar", "index": 100}]}], "heroNodes": [{"id": 95180, "name": "Light's Guidance", "type": "single", "posX": 15900, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 48, "requiresNode": 81497, "next": [95187, 95183, 95177], "prev": [], "entries": [{"id": 117813, "definitionId": 122825, "maxRanks": 1, "type": "passive", "name": "Light's Guidance", "spellId": 427445, "icon": "ability_paladin_longarmofthelaw", "index": 100}], "freeNode": true}, {"id": 95183, "name": "Zealous Vindication / For Whom the Bell Tolls", "type": "choice", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95179], "prev": [95180], "entries": [{"id": 117816, "definitionId": 122828, "maxRanks": 1, "type": "passive", "name": "Zealous Vindication", "spellId": 431463, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 117859, "definitionId": 122871, "maxRanks": 1, "type": "passive", "name": "For Whom the Bell Tolls", "spellId": 432929, "icon": "ability_paladin_hammeroftherighteous", "index": 200}]}, {"id": 95187, "name": "Shake the Heavens", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95178], "prev": [95180], "entries": [{"id": 117823, "definitionId": 122835, "maxRanks": 1, "type": "passive", "name": "Shake the Heavens", "spellId": 431533, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 95177, "name": "Wrathful Descent", "type": "single", "posX": 16500, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95181], "prev": [95180], "entries": [{"id": 117810, "definitionId": 122822, "maxRanks": 1, "type": "passive", "name": "Wrathful Descent", "spellId": 431551, "icon": "ability_paladin_intercession", "index": 100}]}, {"id": 95179, "name": "Sacrosanct Crusade", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95185], "prev": [95183], "entries": [{"id": 117812, "definitionId": 122824, "maxRanks": 1, "type": "passive", "name": "Sacrosanct Crusade", "spellId": 431730, "icon": "inv_plate_raidpaladinprimalist_d_01_cape", "index": 100}]}, {"id": 95178, "name": "Higher Calling", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95184], "prev": [95187], "entries": [{"id": 117811, "definitionId": 122823, "maxRanks": 1, "type": "passive", "name": "Higher Calling", "spellId": 431687, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 95181, "name": "Bonds of Fellowship / Unrelenting Charger", "type": "choice", "posX": 16500, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95186], "prev": [95177], "entries": [{"id": 117814, "definitionId": 122826, "maxRanks": 1, "type": "passive", "name": "Bonds of Fellowship", "spellId": 432992, "icon": "spell_holy_crusade", "index": 100}, {"id": 117858, "definitionId": 122870, "maxRanks": 1, "type": "passive", "name": "Unrelenting Charger", "spellId": 432990, "icon": "ability_mount_mawhorsespikes_yellow", "index": 200}]}, {"id": 95185, "name": "Endless Wrath / Sanctification", "type": "choice", "posX": 15290, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95179], "entries": [{"id": 117820, "definitionId": 122832, "maxRanks": 1, "type": "passive", "name": "Endless Wrath", "spellId": 432615, "icon": "spell_holy_divinepurpose", "index": 100}, {"id": 117819, "definitionId": 122831, "maxRanks": 1, "type": "passive", "name": "Sanctification", "spellId": 432977, "icon": "ability_paladin_blessedhands", "index": 200}]}, {"id": 95184, "name": "Hammerfall", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95178], "entries": [{"id": 117818, "definitionId": 122830, "maxRanks": 1, "type": "passive", "name": "Hammerfall", "spellId": 432463, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 95186, "name": "Undisputed Ruling", "type": "single", "posX": 16500, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95182], "prev": [95181], "entries": [{"id": 117822, "definitionId": 122834, "maxRanks": 1, "type": "passive", "name": "Undisputed Ruling", "spellId": 432626, "icon": "spell_holy_righteousfury", "index": 100}]}, {"id": 95182, "name": "Light's Deliverance", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [], "prev": [95184, 95185, 95186], "entries": [{"id": 117815, "definitionId": 122827, "maxRanks": 1, "type": "passive", "name": "Light's Deliverance", "spellId": 425518, "icon": "inv_glove_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 95234, "name": "Holy Armaments", "type": "single", "posX": 8690, "posY": 4190, "maxRanks": 1, "entryNode": true, "subTreeId": 49, "next": [95233, 95228, 95235], "prev": [], "entries": [{"id": 117882, "definitionId": 122894, "maxRanks": 1, "type": "active", "name": "Holy Armaments", "spellId": 432459, "icon": "inv_ability_lightsmithpaladin_holybulwark", "index": 100}], "freeNode": true}, {"id": 95233, "name": "Rite of Sanctification / Rite of Adjuration", "type": "choice", "posX": 8100, "posY": 4790, "maxRanks": 1, "subTreeId": 49, "next": [95236], "prev": [95234], "entries": [{"id": 117881, "definitionId": 122893, "maxRanks": 1, "type": "active", "name": "Rite of Sanctification", "spellId": 433568, "icon": "inv_inscription_weaponscroll01", "index": 100}, {"id": 117880, "definitionId": 122892, "maxRanks": 1, "type": "active", "name": "Rite of Adjuration", "spellId": 433583, "icon": "inv_inscription_armorscroll02", "index": 200}]}, {"id": 95228, "name": "Solidarity", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95231], "prev": [95234], "entries": [{"id": 117873, "definitionId": 122885, "maxRanks": 1, "type": "passive", "name": "Solidarity", "spellId": 432802, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 95235, "name": "Divine Guidance / Blessed Assurance", "type": "choice", "posX": 9300, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95232], "prev": [95234], "entries": [{"id": 117884, "definitionId": 122896, "maxRanks": 1, "type": "passive", "name": "Divine Guidance", "spellId": 433106, "icon": "spell_holy_lightsgrace", "index": 100}, {"id": 117883, "definitionId": 122895, "maxRanks": 1, "type": "passive", "name": "Blessed Assurance", "spellId": 433015, "icon": "spell_holy_blessedlife", "index": 200}]}, {"id": 95231, "name": "Divine Inspiration / Forewarning", "type": "choice", "posX": 8700, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95229], "prev": [95228], "entries": [{"id": 117877, "definitionId": 122889, "maxRanks": 1, "type": "passive", "name": "Divine Inspiration", "spellId": 432964, "icon": "ability_priest_flashoflight", "index": 100}, {"id": 117876, "definitionId": 122888, "maxRanks": 1, "type": "passive", "name": "Forewarning", "spellId": 432804, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 95232, "name": "Fear No Evil / Excoriation", "type": "choice", "posX": 9290, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95238], "prev": [95235], "entries": [{"id": 117879, "definitionId": 122891, "maxRanks": 1, "type": "passive", "name": "Fear No Evil", "spellId": 432834, "icon": "spell_holy_senseundead", "index": 100}, {"id": 117878, "definitionId": 122890, "maxRanks": 1, "type": "passive", "name": "Excoriation", "spellId": 433896, "icon": "ability_paladin_sanctifiedwrath", "index": 200}]}, {"id": 95236, "name": "Laying Down Arms", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 49, "next": [95237], "prev": [95233], "entries": [{"id": 117885, "definitionId": 122897, "maxRanks": 1, "type": "passive", "name": "Laying Down Arms", "spellId": 432866, "icon": "ability_paladin_handoflight", "index": 100}]}, {"id": 95229, "name": "Valiance", "type": "single", "posX": 8700, "posY": 5980, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95231], "entries": [{"id": 117874, "definitionId": 122886, "maxRanks": 1, "type": "passive", "name": "Valiance", "spellId": 432919, "icon": "inv_mace_47", "index": 100}]}, {"id": 95237, "name": "Shared Resolve", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95236], "entries": [{"id": 117886, "definitionId": 122898, "maxRanks": 1, "type": "passive", "name": "Shared Resolve", "spellId": 432821, "icon": "spell_holy_devotionaura", "index": 100}]}, {"id": 95238, "name": "Hammer and Anvil", "type": "single", "posX": 9300, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95232], "entries": [{"id": 117887, "definitionId": 122899, "maxRanks": 1, "type": "passive", "name": "Hammer and Anvil", "spellId": 433718, "icon": "inv_10_blacksmithing_consumable_repairhammer_color1", "index": 100}]}, {"id": 95230, "name": "Blessing of the Forge", "type": "single", "posX": 8690, "posY": 6600, "maxRanks": 1, "subTreeId": 49, "requiresNode": 81606, "next": [], "prev": [95229, 95237, 95238], "entries": [{"id": 117875, "definitionId": 122887, "maxRanks": 1, "type": "passive", "name": "Blessing of the Forge", "spellId": 433011, "icon": "inv_ability_lightsmithpaladin_sacredweapon", "index": 100}]}], "subTreeNodes": [{"id": 99838, "name": "Lightsmith / Templar", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123361, "type": "subtree", "name": "Lightsmith", "traitSubTreeId": 49, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-lightsmith", "nodes": [95234, 95233, 95228, 95235, 95231, 95232, 95236, 95229, 95237, 95238, 95230]}, {"id": 123358, "type": "subtree", "name": "Templar", "traitSubTreeId": 48, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-templar", "nodes": [95180, 95183, 95187, 95177, 95179, 95178, 95181, 95185, 95184, 95186, 95182]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81480, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81509, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81599, 81600, 81601, 81602, 81603, 81604, 81605, 81606, 81607, 81608, 81609, 81610, 81611, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81619, 81620, 81621, 81623, 81624, 81625, 81626, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93176, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93684, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831]}, {"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Retribution", "specId": 70, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81507, 81602], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 81600, "name": "Blessing of Freedom", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81599, 81601, 81630], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 100}], "freeNode": true}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81601, 93010, 81603], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}], "freeNode": true}, {"id": 81507, "name": "Cleanse Toxins", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [81602, 81598], "prev": [81597], "entries": [{"id": 102476, "definitionId": 107481, "maxRanks": 1, "type": "active", "name": "Cleanse Toxins", "spellId": 213644, "icon": "spell_holy_renew", "index": 100}]}, {"id": 81599, "name": "Auras of the Resolute", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [81632, 81602], "prev": [81600, 81597], "entries": [{"id": 102586, "definitionId": 107591, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}]}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [81632], "prev": [81600], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81601, "name": "Crusader Aura", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 81603], "prev": [81600, 81510], "entries": [{"id": 102588, "definitionId": 107593, "maxRanks": 1, "type": "active", "name": "Crusader Aura", "spellId": 32223, "icon": "spell_holy_crusaderaura", "index": 100}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [81603, 81604], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 2, "next": [81598, 81609], "prev": [81597, 81599, 81507], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 2, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [81605, 81631, 81606], "prev": [81601, 81599, 81630], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 81603, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 81509], "prev": [93010, 81601, 81510], "entries": [{"id": 102590, "definitionId": 107595, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231663, "icon": "spell_holy_righteousfury", "index": 0}], "freeNode": true}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81609, 81610], "prev": [81507, 81602], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81609, 81606], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 81631, "name": "Seasoned Warhorse", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81606, 81509], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Seasoned Warhorse", "spellId": 376996, "icon": "spell_nature_swiftness", "index": 200}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93165, 81509], "prev": [81603, 93010], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81610, 81614], "prev": [81605, 81598, 81602], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 2, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81606, "name": "Avenging Wrath", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81614, 81616, 93009], "prev": [81605, 81631, 81632], "entries": [{"id": 102593, "definitionId": 107598, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 384376, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}]}, {"id": 81509, "name": "Justification", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616, 93174, 93008], "prev": [81604, 81631, 81603], "entries": [{"id": 102478, "definitionId": 107483, "maxRanks": 1, "type": "passive", "name": "Justification", "spellId": 377043, "icon": "ability_paladin_empoweredsealsrighteous", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93008], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81610, "name": "Golden Path", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81611, 93189], "prev": [81609, 81598], "entries": [{"id": 102598, "definitionId": 107603, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81615, 93189], "prev": [81606, 81609], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [81615], "prev": [81606], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81617, 81543], "prev": [81606, 81509], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 93174, "name": "Unbound Freedom", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81543], "prev": [81509], "entries": [{"id": 115454, "definitionId": 120466, "maxRanks": 1, "type": "passive", "name": "Unbound Freedom", "spellId": 305394, "icon": "spell_holy_sealofvalor", "index": 100}]}, {"id": 93008, "name": "Lightforged Blessing", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81543, 81495], "prev": [81509, 93165], "entries": [{"id": 115239, "definitionId": 120251, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 403479, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 81611, "name": "Seal of Mercy", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480], "prev": [81610], "entries": [{"id": 102599, "definitionId": 107604, "maxRanks": 1, "type": "passive", "name": "Seal of Mercy", "spellId": 384897, "icon": "spell_holy_greaterblessingofsalvation", "index": 100}]}, {"id": 93189, "name": "Afterimage / Healing Hands", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81480, 81608], "prev": [81614, 81610], "entries": [{"id": 115482, "definitionId": 120494, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}, {"id": 115481, "definitionId": 120493, "maxRanks": 1, "type": "passive", "name": "Healing Hands", "spellId": 326734, "icon": "ability_paladin_infusionoflight", "index": 200}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81608, 81621], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81621, 81618, 81619], "prev": [81616, 81614, 93009], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81619, 81628], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Touch of Light", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81628, 81495], "prev": [81616, 93008, 93174], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Touch of Light", "spellId": 385349, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 81480, "name": "Strength of Conviction", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81624], "prev": [81611, 93189], "entries": [{"id": 102444, "definitionId": 107455, "maxRanks": 2, "type": "passive", "name": "Strength of Conviction", "spellId": 379008, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81624], "prev": [81607, 93189], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81624, 81496], "prev": [81615, 81607], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 81618, "name": "Divine Purpose", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81496], "prev": [81615], "entries": [{"id": 102608, "definitionId": 107613, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 408459, "icon": "spell_holy_divinepurpose", "index": 100}]}, {"id": 81619, "name": "Seal of Alacrity", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [81626, 81496], "prev": [81615, 81617], "entries": [{"id": 102609, "definitionId": 107614, "maxRanks": 2, "type": "passive", "name": "Seal of Alacrity", "spellId": 385425, "icon": "spell_holy_sealofvengeance", "index": 100}]}, {"id": 81628, "name": "Incandescence", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81626], "prev": [81543, 81617], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Incandescence", "spellId": 385464, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81626], "prev": [81543, 93008], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 81624, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81623], "prev": [81608, 81621, 81480], "entries": [{"id": 102615, "definitionId": 107620, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 385125, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93181], "prev": [81618, 81619, 81621], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "ability_bastion_paladin", "index": 100}]}, {"id": 81626, "name": "Seal of the Crusader", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93177], "prev": [81619, 81628, 81495], "entries": [{"id": 102617, "definitionId": 107622, "maxRanks": 2, "type": "passive", "name": "Seal of the Crusader", "spellId": 385728, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 81623, "name": "Seal of Order / Fading Light", "type": "choice", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81624], "entries": [{"id": 102614, "definitionId": 107619, "maxRanks": 1, "type": "passive", "name": "Seal of Order", "spellId": 385129, "icon": "spell_holy_sealofwisdom", "index": 100}, {"id": 115169, "definitionId": 120176, "maxRanks": 1, "type": "passive", "name": "Fading Light", "spellId": 405768, "icon": "spell_shadow_sealofkings", "index": 200}]}, {"id": 93181, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 115468, "definitionId": 120480, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 384027, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115467, "definitionId": 120479, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 93177, "name": "Vengeful Wrath", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81626], "entries": [{"id": 115457, "definitionId": 120469, "maxRanks": 1, "type": "passive", "name": "Vengeful Wrath", "spellId": 406835, "icon": "spell_paladin_hammerofwrath", "index": 100}]}], "specNodes": [{"id": 81526, "name": "Blade of Justice", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81527], "prev": [], "entries": [{"id": 102498, "definitionId": 107503, "maxRanks": 1, "type": "active", "name": "Blade of Justice", "spellId": 184575, "icon": "ability_paladin_bladeofjustice", "index": 100}]}, {"id": 81527, "name": "Divine Storm", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [81521, 92689, 93161, 92838], "prev": [81526], "entries": [{"id": 102499, "definitionId": 107504, "maxRanks": 1, "type": "active", "name": "Divine Storm", "spellId": 53385, "icon": "ability_paladin_divinestorm", "index": 100}]}, {"id": 81521, "name": "Swift Justice / Light of Justice", "type": "choice", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [81532, 81531], "prev": [81527], "entries": [{"id": 102491, "definitionId": 107496, "maxRanks": 1, "type": "passive", "name": "Swift Justice", "spellId": 383228, "icon": "ability_paladin_judgementofthepure", "index": 100}, {"id": 114828, "definitionId": 119835, "maxRanks": 1, "type": "passive", "name": "Light of Justice", "spellId": 404436, "icon": "inv_offhand_1h_ulduarraid_d_01", "index": 200}]}, {"id": 92689, "name": "Expurgation", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [81531], "prev": [81527], "entries": [{"id": 114830, "definitionId": 119837, "maxRanks": 1, "type": "passive", "name": "Expurgation", "spellId": 383344, "icon": "ability_paladin_bladeofjusticeblue", "index": 100}]}, {"id": 93161, "name": "Judgment of Justice", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [81531], "prev": [81527], "entries": [{"id": 115440, "definitionId": 120452, "maxRanks": 1, "type": "passive", "name": "Judgment of Justice", "spellId": 403495, "icon": "ability_paladin_judgementblue", "index": 100}]}, {"id": 92838, "name": "Improved Blade of Justice / Holy Blade", "type": "choice", "posX": 15000, "posY": 2700, "maxRanks": 1, "next": [81531, 81523], "prev": [81527], "entries": [{"id": 115023, "definitionId": 120030, "maxRanks": 1, "type": "passive", "name": "Improved Blade of Justice", "spellId": 403745, "icon": "ability_paladin_bladeofjustice", "index": 100}, {"id": 115022, "definitionId": 120029, "maxRanks": 1, "type": "passive", "name": "Holy Blade", "spellId": 383342, "icon": "ability_paladin_lightoftheprotector", "index": 200}]}, {"id": 81532, "name": "Final Verdict / Justicar's Vengeance", "type": "choice", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [81542, 92951, 81533], "prev": [81521], "entries": [{"id": 102504, "definitionId": 107509, "maxRanks": 1, "type": "active", "name": "Final Verdict", "spellId": 383328, "icon": "spell_paladin_templarsverdict", "index": 0}, {"id": 114831, "definitionId": 119838, "maxRanks": 1, "type": "active", "name": "Justicar's Vengeance", "spellId": 215661, "icon": "spell_holy_retributionaura", "index": 100}]}, {"id": 81531, "name": "Light's Celerity / Guided Prayer", "type": "choice", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [92688, 92951, 81544], "prev": [81521, 92838, 93161, 92689], "entries": [{"id": 102503, "definitionId": 107508, "maxRanks": 1, "type": "passive", "name": "Light's Celerity", "spellId": 403698, "icon": "spell_holy_flashheal", "index": 100}, {"id": 115020, "definitionId": 120027, "maxRanks": 1, "type": "passive", "name": "Guided Prayer", "spellId": 404357, "icon": "ability_crown_of_the_heavens_icon", "index": 200}]}, {"id": 81523, "name": "Righteous Cause / Art of War", "type": "choice", "posX": 15000, "posY": 3300, "maxRanks": 1, "next": [92688, 81512, 92952], "prev": [92838], "entries": [{"id": 102494, "definitionId": 107499, "maxRanks": 1, "type": "passive", "name": "Righteous Cause", "spellId": 402912, "icon": "inv_sword_133", "index": 100}, {"id": 102493, "definitionId": 107498, "maxRanks": 1, "type": "passive", "name": "Art of War", "spellId": 406064, "icon": "ability_paladin_artofwar", "index": 200}]}, {"id": 81542, "name": "Jurisdiction", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81533, 93173], "prev": [81532], "entries": [{"id": 102516, "definitionId": 107521, "maxRanks": 1, "type": "passive", "name": "Jurisdiction", "spellId": 402971, "icon": "ability_paladin_longarmofthelaw", "index": 100}]}, {"id": 92951, "name": "Inquisitor's Ire / Tempest of the Lightbringer", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81533, 81534], "prev": [81531, 81532], "entries": [{"id": 115164, "definitionId": 120171, "maxRanks": 1, "type": "passive", "name": "Inquisitor's Ire", "spellId": 403975, "icon": "inv_helmet_plate_raidpaladin_j_01", "index": 100}, {"id": 115452, "definitionId": 120464, "maxRanks": 1, "type": "passive", "name": "Tempest of the Lightbringer", "spellId": 383396, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 200}]}, {"id": 81544, "name": "Avenging Wrath: Might / Crusade", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93186, 93160, 81516], "prev": [81531], "entries": [{"id": 102519, "definitionId": 107524, "maxRanks": 1, "type": "active", "name": "Avenging Wrath: Might", "spellId": 384442, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 0}, {"id": 125129, "definitionId": 129961, "maxRanks": 1, "type": "active", "name": "Crusade", "spellId": 384392, "icon": "ability_paladin_sanctifiedwrath", "index": 100}]}, {"id": 92688, "name": "Vanguard's Momentum / Sanctify", "type": "choice", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81545, 81541], "prev": [81531, 81523], "entries": [{"id": 114826, "definitionId": 119833, "maxRanks": 1, "type": "passive", "name": "Vanguard's Momentum", "spellId": 383314, "icon": "ability_paladin_speedoflight", "index": 100}, {"id": 115488, "definitionId": 120500, "maxRanks": 1, "type": "passive", "name": "Sanctify", "spellId": 382536, "icon": "achievement_zone_firelands", "index": 200}]}, {"id": 92952, "name": "Zealot's Fervor", "type": "single", "posX": 15000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81545], "prev": [81523], "entries": [{"id": 115165, "definitionId": 120172, "maxRanks": 2, "type": "passive", "name": "Zealot's Fervor", "spellId": 403509, "icon": "spell_holy_weaponmastery", "index": 100}]}, {"id": 81512, "name": "Consecrated Ground / Rush of Light", "type": "choice", "posX": 15600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81545, 92860], "prev": [81523], "entries": [{"id": 102481, "definitionId": 107486, "maxRanks": 1, "type": "passive", "name": "Consecrated Ground", "spellId": 204054, "icon": "ability_paladin_righteousvengeance", "index": 100}, {"id": 115475, "definitionId": 120487, "maxRanks": 1, "type": "passive", "name": "Rush of Light", "spellId": 407067, "icon": "spell_holy_borrowedtime", "index": 200}]}, {"id": 81533, "name": "Improved Judgment / Boundless Judgment", "type": "choice", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93173, 93190, 81534], "prev": [81542, 92951, 81532], "entries": [{"id": 102505, "definitionId": 107510, "maxRanks": 1, "type": "passive", "name": "Improved Judgment", "spellId": 405461, "icon": "spell_holy_righteousfury", "index": 100}, {"id": 115021, "definitionId": 120028, "maxRanks": 1, "type": "passive", "name": "Boundless Judgment", "spellId": 405278, "icon": "ability_paladin_judgementofthewise", "index": 200}]}, {"id": 93186, "name": "Crusading Strikes / Templar Strikes", "type": "choice", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81534, 81525], "prev": [81544], "entries": [{"id": 115474, "definitionId": 120486, "maxRanks": 1, "type": "passive", "name": "Crusading Strikes", "spellId": 404542, "icon": "inv_sword_08", "index": 100}, {"id": 115473, "definitionId": 120485, "maxRanks": 1, "type": "active", "name": "Templar Strikes", "spellId": 406646, "icon": "inv_sword_2h_artifactashbringer_d_01", "index": 200}]}, {"id": 93160, "name": "Divine Wrath", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81525], "prev": [81544], "entries": [{"id": 115439, "definitionId": 120451, "maxRanks": 1, "type": "passive", "name": "Divine Wrath", "spellId": 406872, "icon": "spell_holy_greaterblessingofkings", "index": 100}]}, {"id": 81516, "name": "Divine Hammer", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81541, 81525], "prev": [81544], "entries": [{"id": 115016, "definitionId": 120023, "maxRanks": 1, "type": "active", "name": "Divine Hammer", "spellId": 198034, "icon": "classicon_paladin", "index": 200}]}, {"id": 81545, "name": "Blade of Vengeance / Holy Flames", "type": "choice", "posX": 15000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81541, 92860, 92839], "prev": [92952, 81512, 92688], "entries": [{"id": 102521, "definitionId": 107526, "maxRanks": 1, "type": "passive", "name": "Blade of Vengeance", "spellId": 403826, "icon": "ability_paladin_bladeofjustice", "index": 100}, {"id": 115438, "definitionId": 120450, "maxRanks": 1, "type": "passive", "name": "Holy Flames", "spellId": 406545, "icon": "ability_warlock_inferno", "index": 200}]}, {"id": 93173, "name": "Empyrean Legacy", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537], "prev": [81542, 81533], "entries": [{"id": 115453, "definitionId": 120465, "maxRanks": 1, "type": "passive", "name": "Empyrean Legacy", "spellId": 387170, "icon": "item_holyspark", "index": 100}]}, {"id": 93190, "name": "Heart of the Crusader", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [81537], "prev": [81533], "entries": [{"id": 115483, "definitionId": 120495, "maxRanks": 2, "type": "passive", "name": "Heart of the Crusader", "spellId": 406154, "icon": "spell_brokenheart", "index": 100}]}, {"id": 81534, "name": "Highlord's Wrath", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537], "prev": [93186, 92951, 81533], "entries": [{"id": 102506, "definitionId": 107511, "maxRanks": 1, "type": "passive", "name": "Highlord's Wrath", "spellId": 404512, "icon": "ability_paladin_judgementred", "index": 100}]}, {"id": 81525, "name": "Wake of Ashes", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537, 81550, 92839], "prev": [93160, 81516, 93186], "entries": [{"id": 102497, "definitionId": 107502, "maxRanks": 1, "type": "active", "name": "Wake of Ashes", "spellId": 255937, "icon": "inv_sword_2h_artifactashbringerfire_d_03", "index": 100}]}, {"id": 81541, "name": "Blessed Champion", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [92839], "prev": [81545, 81516, 92688], "entries": [{"id": 102515, "definitionId": 107520, "maxRanks": 1, "type": "passive", "name": "Blessed Champion", "spellId": 403010, "icon": "achievement_bg_trueavshutout", "index": 0}]}, {"id": 92860, "name": "Empyrean Power / Judge, Jury and Executioner", "type": "choice", "posX": 15600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [92839], "prev": [81512, 81545], "entries": [{"id": 115051, "definitionId": 120058, "maxRanks": 1, "type": "passive", "name": "Empyrean Power", "spellId": 326732, "icon": "ability_paladin_sheathoflight", "index": 100}, {"id": 115477, "definitionId": 120489, "maxRanks": 1, "type": "passive", "name": "Judge, Jury and Executioner", "spellId": 405607, "icon": "spell_paladin_inquisition", "index": 200}]}, {"id": 81537, "name": "Adjudication", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93164], "prev": [81525, 93173, 93190, 81534], "entries": [{"id": 102511, "definitionId": 107516, "maxRanks": 1, "type": "passive", "name": "Adjudication", "spellId": 406157, "icon": "spell_holy_vindication", "index": 100}]}, {"id": 81550, "name": "Aegis of Protection / Shield of Vengeance", "type": "choice", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81539, 92854], "prev": [81525], "entries": [{"id": 102526, "definitionId": 107531, "maxRanks": 1, "type": "passive", "name": "Aegis of Protection", "spellId": 403654, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 125130, "definitionId": 129962, "maxRanks": 1, "type": "passive", "name": "Shield of Vengeance", "spellId": 184662, "icon": "ability_paladin_shieldofthetemplar", "index": 200}]}, {"id": 92839, "name": "Penitence", "type": "single", "posX": 15000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81536], "prev": [81545, 92860, 81541, 81525], "entries": [{"id": 115024, "definitionId": 120031, "maxRanks": 1, "type": "passive", "name": "Penitence", "spellId": 403026, "icon": "ability_paladin_lightofthemartyr", "index": 100}]}, {"id": 93164, "name": "Blades of Light", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81540], "prev": [81537], "entries": [{"id": 115443, "definitionId": 120455, "maxRanks": 1, "type": "passive", "name": "Blades of Light", "spellId": 403664, "icon": "achievement_arena_3v3_7", "index": 100}]}, {"id": 81539, "name": "Final Reckoning / Execution Sentence", "type": "choice", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81548, 81538], "prev": [81550], "entries": [{"id": 102513, "definitionId": 107518, "maxRanks": 1, "type": "active", "name": "Final Reckoning", "spellId": 343721, "icon": "spell_holy_blessedresillience", "index": 100}, {"id": 115435, "definitionId": 120447, "maxRanks": 1, "type": "active", "name": "Execution Sentence", "spellId": 343527, "icon": "spell_paladin_executionsentence", "index": 200}]}, {"id": 92854, "name": "Seething Flames", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81549, 92686], "prev": [81550], "entries": [{"id": 115043, "definitionId": 120050, "maxRanks": 1, "type": "passive", "name": "Seething Flames", "spellId": 405355, "icon": "ability_mage_flamecannon", "index": 100}]}, {"id": 81536, "name": "Burning Crusade", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81552], "prev": [92839], "entries": [{"id": 102510, "definitionId": 107515, "maxRanks": 1, "type": "passive", "name": "Burning Crusade", "spellId": 405289, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 81540, "name": "Divine Arbiter", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93164], "entries": [{"id": 102514, "definitionId": 107519, "maxRanks": 1, "type": "passive", "name": "Divine Arbiter", "spellId": 404306, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 81548, "name": "Executioner's Will", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81539], "entries": [{"id": 102524, "definitionId": 107529, "maxRanks": 1, "type": "passive", "name": "Executioner's Will", "spellId": 406940, "icon": "inv_helm_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 81538, "name": "Divine Auxiliary", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81539], "entries": [{"id": 102512, "definitionId": 107517, "maxRanks": 1, "type": "passive", "name": "Divine Auxiliary", "spellId": 406158, "icon": "inv_polearm_2h_odynspear_d_02", "index": 100}]}, {"id": 81549, "name": "Radiant Glory", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92854], "entries": [{"id": 102525, "definitionId": 107530, "maxRanks": 1, "type": "passive", "name": "Radiant Glory", "spellId": 458359, "icon": "achievement_dungeon_gloryoftheraider", "index": 0}]}, {"id": 92686, "name": "Burn to Ash", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92854], "entries": [{"id": 114824, "definitionId": 119831, "maxRanks": 1, "type": "passive", "name": "Burn to Ash", "spellId": 446663, "icon": "spell_burningsoul", "index": 0}]}, {"id": 81552, "name": "Searing Light", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81536], "entries": [{"id": 102530, "definitionId": 107535, "maxRanks": 1, "type": "passive", "name": "Searing Light", "spellId": 404540, "icon": "spell_fire_felflamering_red", "index": 200}]}], "heroNodes": [{"id": 95180, "name": "Light's Guidance", "type": "single", "posX": 15900, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 48, "requiresNode": 81497, "next": [95187, 95183, 95177], "prev": [], "entries": [{"id": 117813, "definitionId": 122825, "maxRanks": 1, "type": "passive", "name": "Light's Guidance", "spellId": 427445, "icon": "ability_paladin_longarmofthelaw", "index": 100}], "freeNode": true}, {"id": 95099, "name": "Dawnlight", "type": "single", "posX": 8700, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 50, "requiresNode": 81577, "next": [95073, 95095, 95080], "prev": [], "entries": [{"id": 117696, "definitionId": 122708, "maxRanks": 1, "type": "passive", "name": "Dawnlight", "spellId": 431377, "icon": "inv_ability_heraldofthesunpaladin_dawnlight", "index": 100}], "freeNode": true}, {"id": 95183, "name": "Zealous Vindication / For Whom the Bell Tolls", "type": "choice", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95179], "prev": [95180], "entries": [{"id": 117816, "definitionId": 122828, "maxRanks": 1, "type": "passive", "name": "Zealous Vindication", "spellId": 431463, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 117859, "definitionId": 122871, "maxRanks": 1, "type": "passive", "name": "For Whom the Bell Tolls", "spellId": 432929, "icon": "ability_paladin_hammeroftherighteous", "index": 200}]}, {"id": 95187, "name": "Shake the Heavens", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95178], "prev": [95180], "entries": [{"id": 117823, "definitionId": 122835, "maxRanks": 1, "type": "passive", "name": "Shake the Heavens", "spellId": 431533, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 95177, "name": "Wrathful Descent", "type": "single", "posX": 16500, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95181], "prev": [95180], "entries": [{"id": 117810, "definitionId": 122822, "maxRanks": 1, "type": "passive", "name": "Wrathful Descent", "spellId": 431551, "icon": "ability_paladin_intercession", "index": 100}]}, {"id": 95073, "name": "Morning Star / Gleaming Rays", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95098], "prev": [95099], "entries": [{"id": 117670, "definitionId": 122682, "maxRanks": 1, "type": "passive", "name": "Morning Star", "spellId": 431482, "icon": "spell_holy_persecution", "index": 100}, {"id": 117778, "definitionId": 122790, "maxRanks": 1, "type": "passive", "name": "Gleaming Rays", "spellId": 431480, "icon": "spell_priest_power_word", "index": 200}]}, {"id": 95095, "name": "Eternal Flame", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95071], "prev": [95099], "entries": [{"id": 117692, "definitionId": 122704, "maxRanks": 1, "type": "active", "name": "Eternal Flame", "spellId": 156322, "icon": "inv_torch_thrown", "index": 100}]}, {"id": 95080, "name": "Luminosity", "type": "single", "posX": 9300, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95072], "prev": [95099], "entries": [{"id": 117677, "definitionId": 122689, "maxRanks": 1, "type": "passive", "name": "Luminosity", "spellId": 431402, "icon": "inv_qirajidol_sun", "index": 100}]}, {"id": 95179, "name": "Sacrosanct Crusade", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95185], "prev": [95183], "entries": [{"id": 117812, "definitionId": 122824, "maxRanks": 1, "type": "passive", "name": "Sacrosanct Crusade", "spellId": 431730, "icon": "inv_plate_raidpaladinprimalist_d_01_cape", "index": 100}]}, {"id": 95178, "name": "Higher Calling", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95184], "prev": [95187], "entries": [{"id": 117811, "definitionId": 122823, "maxRanks": 1, "type": "passive", "name": "Higher Calling", "spellId": 431687, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 95181, "name": "Bonds of Fellowship / Unrelenting Charger", "type": "choice", "posX": 16500, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95186], "prev": [95177], "entries": [{"id": 117814, "definitionId": 122826, "maxRanks": 1, "type": "passive", "name": "Bonds of Fellowship", "spellId": 432992, "icon": "spell_holy_crusade", "index": 100}, {"id": 117858, "definitionId": 122870, "maxRanks": 1, "type": "passive", "name": "Unrelenting Charger", "spellId": 432990, "icon": "ability_mount_mawhorsespikes_yellow", "index": 200}]}, {"id": 95098, "name": "Illumine / Will of the Dawn", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95069], "prev": [95073], "entries": [{"id": 117695, "definitionId": 122707, "maxRanks": 1, "type": "passive", "name": "Illumine", "spellId": 431423, "icon": "spell_holy_divineillumination", "index": 100}, {"id": 117777, "definitionId": 122789, "maxRanks": 1, "type": "passive", "name": "Will of the Dawn", "spellId": 431406, "icon": "spell_holy_divineprovidence", "index": 200}]}, {"id": 95071, "name": "Blessing of An'she / Lingering Radiance", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95094], "prev": [95095], "entries": [{"id": 117668, "definitionId": 122680, "maxRanks": 1, "type": "passive", "name": "Blessing of An'she", "spellId": 445200, "icon": "inv_ability_holyfire_orb", "index": 100}, {"id": 117779, "definitionId": 122791, "maxRanks": 1, "type": "passive", "name": "Lingering Radiance", "spellId": 431407, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 95072, "name": "Sun Sear", "type": "single", "posX": 9300, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95086], "prev": [95080], "entries": [{"id": 117669, "definitionId": 122681, "maxRanks": 1, "type": "passive", "name": "Sun Sear", "spellId": 431413, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 95185, "name": "Endless Wrath / Sanctification", "type": "choice", "posX": 15290, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95179], "entries": [{"id": 117820, "definitionId": 122832, "maxRanks": 1, "type": "passive", "name": "Endless Wrath", "spellId": 432615, "icon": "spell_holy_divinepurpose", "index": 100}, {"id": 117819, "definitionId": 122831, "maxRanks": 1, "type": "passive", "name": "Sanctification", "spellId": 432977, "icon": "ability_paladin_blessedhands", "index": 200}]}, {"id": 95184, "name": "Hammerfall", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95178], "entries": [{"id": 117818, "definitionId": 122830, "maxRanks": 1, "type": "passive", "name": "Hammerfall", "spellId": 432463, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 95186, "name": "Undisputed Ruling", "type": "single", "posX": 16500, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95182], "prev": [95181], "entries": [{"id": 117822, "definitionId": 122834, "maxRanks": 1, "type": "passive", "name": "Undisputed Ruling", "spellId": 432626, "icon": "spell_holy_righteousfury", "index": 100}]}, {"id": 95069, "name": "Aurora", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81577, "next": [95105], "prev": [95098], "entries": [{"id": 117666, "definitionId": 122678, "maxRanks": 1, "type": "passive", "name": "Aurora", "spellId": 439760, "icon": "spell_holy_rune", "index": 100}]}, {"id": 95094, "name": "Solar Grace", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95105], "prev": [95071], "entries": [{"id": 117691, "definitionId": 122703, "maxRanks": 1, "type": "passive", "name": "Solar Grace", "spellId": 431404, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 100}]}, {"id": 95086, "name": "Second Sunrise", "type": "single", "posX": 9300, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "next": [95105], "prev": [95072], "entries": [{"id": 117683, "definitionId": 122695, "maxRanks": 1, "type": "passive", "name": "Second Sunrise", "spellId": 431474, "icon": "ability_priest_halo", "index": 100}]}, {"id": 95182, "name": "Light's Deliverance", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [], "prev": [95184, 95185, 95186], "entries": [{"id": 117815, "definitionId": 122827, "maxRanks": 1, "type": "passive", "name": "Light's Deliverance", "spellId": 425518, "icon": "inv_glove_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 95105, "name": "Sun's Avatar", "type": "single", "posX": 8700, "posY": 3600, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81606, "next": [], "prev": [95094, 95069, 95086], "entries": [{"id": 117702, "definitionId": 122714, "maxRanks": 1, "type": "passive", "name": "Sun's Avatar", "spellId": 431425, "icon": "ability_paladin_holyavenger", "index": 100}]}], "subTreeNodes": [{"id": 99837, "name": "Herald of the Sun / Templar", "type": "subtree", "posX": 9600, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123360, "type": "subtree", "name": "Herald of the Sun", "traitSubTreeId": 50, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-heraldofthesun", "nodes": [95099, 95073, 95095, 95080, 95098, 95071, 95072, 95069, 95094, 95086, 95105]}, {"id": 123357, "type": "subtree", "name": "Templar", "traitSubTreeId": 48, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-templar", "nodes": [95180, 95183, 95187, 95177, 95179, 95178, 95181, 95185, 95184, 95186, 95182]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81480, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81509, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81599, 81600, 81601, 81602, 81603, 81604, 81605, 81606, 81607, 81608, 81609, 81610, 81611, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81619, 81620, 81621, 81623, 81624, 81625, 81626, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93176, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93684, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831]}, {"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Arcane", "specId": 62, "classNodes": [{"id": 62121, "name": "Prismatic Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80180, "definitionId": 85183, "maxRanks": 1, "type": "active", "name": "Prismatic Barrier", "spellId": 235450, "icon": "spell_magearmor", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62121], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62121], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62121], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "ability_ardenweald_mage", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring_of_frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 102467, "name": "Arcane Missiles", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102445, 102473, 102461], "prev": [], "entries": [{"id": 126537, "definitionId": 131363, "maxRanks": 1, "type": "active", "name": "Arcane Missiles", "spellId": 5143, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 102445, "name": "Amplification", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [102466, 102436], "prev": [102467], "entries": [{"id": 126515, "definitionId": 131341, "maxRanks": 1, "type": "passive", "name": "Amplification", "spellId": 236628, "icon": "spell_arcane_invocation", "index": 100}]}, {"id": 102473, "name": "Nether Precision", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [102448, 102458], "prev": [102467], "entries": [{"id": 126543, "definitionId": 131369, "maxRanks": 1, "type": "passive", "name": "Nether Precision", "spellId": 383782, "icon": "spell_arcane_blast_nightborne", "index": 100}]}, {"id": 102466, "name": "Charged Orb", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [102439], "prev": [102445], "entries": [{"id": 126536, "definitionId": 131362, "maxRanks": 1, "type": "passive", "name": "Charged Orb", "spellId": 384651, "icon": "spell_mage_arcaneorb", "index": 100}]}, {"id": 102436, "name": "Arcane Tempo", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [102439], "prev": [102445], "entries": [{"id": 126506, "definitionId": 131332, "maxRanks": 1, "type": "passive", "name": "Arcane Tempo", "spellId": 383980, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 102461, "name": "Concentrated Power", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [102449], "prev": [102467], "entries": [{"id": 126531, "definitionId": 131357, "maxRanks": 1, "type": "passive", "name": "Concentrated Power", "spellId": 414379, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 102448, "name": "Consortium's Bauble", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [102471], "prev": [102473], "entries": [{"id": 126518, "definitionId": 131344, "maxRanks": 1, "type": "passive", "name": "Consortium's Bauble", "spellId": 461260, "icon": "inv_6_2raid_trinket_1b", "index": 100}]}, {"id": 102458, "name": "Arcing Cleave", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [102471], "prev": [102473], "entries": [{"id": 126528, "definitionId": 131354, "maxRanks": 1, "type": "passive", "name": "Arcing Cleave", "spellId": 231564, "icon": "ability_mage_arcanebarrage", "index": 100}]}, {"id": 102439, "name": "Arcane Familiar", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [102446, 102462, 102460], "prev": [102466, 102436], "entries": [{"id": 126509, "definitionId": 131335, "maxRanks": 1, "type": "passive", "name": "Arcane Familiar", "spellId": 205022, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 102449, "name": "Arcane Surge", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [102460, 102440, 102469], "prev": [102461], "entries": [{"id": 126519, "definitionId": 131345, "maxRanks": 1, "type": "active", "name": "Arcane Surge", "spellId": 365350, "icon": "ability_mage_arcanesurge", "index": 100}]}, {"id": 102471, "name": "Improved Clearcasting", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [102469, 102475, 102437], "prev": [102458, 102448], "entries": [{"id": 126541, "definitionId": 131367, "maxRanks": 1, "type": "passive", "name": "Improved Clearcasting", "spellId": 321420, "icon": "spell_shadow_manaburn", "index": 100}]}, {"id": 102446, "name": "Big Brained", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480, 102453], "prev": [102439], "entries": [{"id": 126516, "definitionId": 131342, "maxRanks": 1, "type": "passive", "name": "Big Brained", "spellId": 461261, "icon": "ability_kaztik_dominatemind", "index": 100}]}, {"id": 102462, "name": "Energized Familiar", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480], "prev": [102439], "entries": [{"id": 126532, "definitionId": 131358, "maxRanks": 1, "type": "passive", "name": "Energized Familiar", "spellId": 452997, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 102460, "name": "Presence of Mind", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480, 102468], "prev": [102439, 102449], "entries": [{"id": 126530, "definitionId": 131356, "maxRanks": 1, "type": "active", "name": "Presence of Mind", "spellId": 205025, "icon": "spell_nature_enchantarmor", "index": 100}]}, {"id": 102440, "name": "Surging Urge", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [102449], "entries": [{"id": 126510, "definitionId": 131336, "maxRanks": 1, "type": "passive", "name": "Surging Urge", "spellId": 457521, "icon": "spell_holy_surgeoflight_shadow", "index": 100}]}, {"id": 102469, "name": "Slipstream", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102468, 102456], "prev": [102449, 102471], "entries": [{"id": 126539, "definitionId": 131365, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 236457, "icon": "spell_holy_mindsooth", "index": 100}]}, {"id": 102475, "name": "Static Cloud", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102456], "prev": [102471], "entries": [{"id": 126545, "definitionId": 131371, "maxRanks": 1, "type": "passive", "name": "Static Cloud", "spellId": 461257, "icon": "inv_misc_stormlordsfavor", "index": 100}]}, {"id": 102437, "name": "Resonance", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102456, 102441], "prev": [102471], "entries": [{"id": 126507, "definitionId": 131333, "maxRanks": 1, "type": "passive", "name": "Resonance", "spellId": 205028, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 102480, "name": "Impetus", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102453, 102444, 102459], "prev": [102462, 102460, 102446], "entries": [{"id": 126550, "definitionId": 131376, "maxRanks": 1, "type": "passive", "name": "Impetus", "spellId": 383676, "icon": "spell_arcane_arcanetorrent", "index": 100}]}, {"id": 102468, "name": "Touch of the Magi", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102459, 102452, 102455], "prev": [102469, 102460], "entries": [{"id": 126538, "definitionId": 131364, "maxRanks": 1, "type": "active", "name": "Touch of the Magi", "spellId": 321507, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 102456, "name": "Dematerialize", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102455, 102454, 102441], "prev": [102475, 102437, 102469], "entries": [{"id": 126526, "definitionId": 131352, "maxRanks": 1, "type": "passive", "name": "Dematerialize", "spellId": 461456, "icon": "inv_ore_eternium", "index": 100}]}, {"id": 102453, "name": "Resonant Orbs", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102446, 102480], "entries": [{"id": 126523, "definitionId": 131349, "maxRanks": 1, "type": "passive", "name": "Resonant Orbs", "spellId": 461453, "icon": "spell_mage_flameorb_purple", "index": 100}]}, {"id": 102444, "name": "Illuminated Thoughts", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102480], "entries": [{"id": 126514, "definitionId": 131340, "maxRanks": 1, "type": "passive", "name": "Illuminated Thoughts", "spellId": 384060, "icon": "spell_arcane_focusedpower", "index": 100}]}, {"id": 102459, "name": "Evocation", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102468, 102480], "entries": [{"id": 126529, "definitionId": 131355, "maxRanks": 1, "type": "active", "name": "Evocation", "spellId": 12051, "icon": "spell_nature_purge", "index": 100}]}, {"id": 102452, "name": "Improved Touch of the Magi", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102457], "prev": [102468], "entries": [{"id": 126522, "definitionId": 131348, "maxRanks": 1, "type": "passive", "name": "Improved Touch of the Magi", "spellId": 453002, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 102455, "name": "Eureka", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102468, 102456], "entries": [{"id": 126525, "definitionId": 131351, "maxRanks": 1, "type": "passive", "name": "Eureka", "spellId": 452198, "icon": "spell_mage_presenceofmind", "index": 100}]}, {"id": 102454, "name": "Energy Reconstitution", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102456], "entries": [{"id": 126524, "definitionId": 131350, "maxRanks": 1, "type": "passive", "name": "Energy Reconstitution", "spellId": 461457, "icon": "inv_seed_arcaneenergy", "index": 100}]}, {"id": 102441, "name": "Reverberate", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102437, 102456], "entries": [{"id": 126511, "definitionId": 131337, "maxRanks": 1, "type": "passive", "name": "Reverberate", "spellId": 281482, "icon": "spell_arcane_arcane04", "index": 100}]}, {"id": 102463, "name": "Arcane Debilitation", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102451, 102476, 102470], "prev": [102459, 102453, 102444], "entries": [{"id": 126533, "definitionId": 131359, "maxRanks": 2, "type": "passive", "name": "Arcane Debilitation", "spellId": 453598, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 102457, "name": "Arcane Echo", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102470, 102465, 102435], "prev": [102452], "entries": [{"id": 126527, "definitionId": 131353, "maxRanks": 1, "type": "passive", "name": "Arcane Echo", "spellId": 342231, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 102450, "name": "Prodigious Savant", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102465, 102477, 102438], "prev": [102454, 102441, 102455], "entries": [{"id": 126520, "definitionId": 131346, "maxRanks": 2, "type": "passive", "name": "Prodigious Savant", "spellId": 384612, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 102451, "name": "Time Loop", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102472], "prev": [102463], "entries": [{"id": 126521, "definitionId": 131347, "maxRanks": 1, "type": "passive", "name": "Time Loop", "spellId": 452924, "icon": "spell_mage_altertime_active", "index": 100}]}, {"id": 102476, "name": "Aether Attunement", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102472], "prev": [102463], "entries": [{"id": 126546, "definitionId": 131372, "maxRanks": 1, "type": "passive", "name": "Aether Attunement", "spellId": 453600, "icon": "inv_enchant_essencearcanelarge", "index": 100}]}, {"id": 102470, "name": "Enlightened", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102447], "prev": [102457, 102463], "entries": [{"id": 126540, "definitionId": 131366, "maxRanks": 1, "type": "passive", "name": "Enlightened", "spellId": 321387, "icon": "ability_socererking_arcanefortification", "index": 100}]}, {"id": 102465, "name": "Arcane Bombardment", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102443], "prev": [102450, 102457], "entries": [{"id": 126535, "definitionId": 131361, "maxRanks": 1, "type": "passive", "name": "Arcane Bombardment", "spellId": 384581, "icon": "ability_socererking_arcanereplication", "index": 100}]}, {"id": 102477, "name": "Leysight", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102474], "prev": [102450], "entries": [{"id": 126547, "definitionId": 131373, "maxRanks": 1, "type": "passive", "name": "Leysight", "spellId": 452187, "icon": "inv_enchant_essencecosmiclesser", "index": 100}]}, {"id": 102438, "name": "Concentration", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102474], "prev": [102450], "entries": [{"id": 126508, "definitionId": 131334, "maxRanks": 1, "type": "passive", "name": "Concentration", "spellId": 384374, "icon": "ability_mage_potentspirit", "index": 100}]}, {"id": 102472, "name": "High Voltage", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102476, 102451], "entries": [{"id": 126542, "definitionId": 131368, "maxRanks": 1, "type": "passive", "name": "High Voltage", "spellId": 461248, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 102447, "name": "Arcane Harmony", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102470], "entries": [{"id": 126517, "definitionId": 131343, "maxRanks": 1, "type": "passive", "name": "Arcane Harmony", "spellId": 384452, "icon": "ability_creature_cursed_04", "index": 100}]}, {"id": 102435, "name": "Magi's Spark / Nether Munitions", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102457], "entries": [{"id": 126505, "definitionId": 131331, "maxRanks": 1, "type": "passive", "name": "Magi's Spark", "spellId": 454016, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 126504, "definitionId": 131330, "maxRanks": 1, "type": "passive", "name": "Nether Munitions", "spellId": 450206, "icon": "inv_lightforgedmatrixability_shroudofarchaneechoes", "index": 200}]}, {"id": 102443, "name": "Orb Barrage", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102465], "entries": [{"id": 126513, "definitionId": 131339, "maxRanks": 1, "type": "passive", "name": "Orb Barrage", "spellId": 384858, "icon": "spell_mage_arcaneorb_nightborne", "index": 100}]}, {"id": 102474, "name": "Leydrinker", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102438, 102477], "entries": [{"id": 126544, "definitionId": 131370, "maxRanks": 1, "type": "passive", "name": "Leydrinker", "spellId": 452196, "icon": "spell_shadow_manafeed", "index": 100}]}], "heroNodes": [{"id": 94664, "name": "Splintering Sorcery", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 40, "next": [94662, 94663, 94661], "prev": [], "entries": [{"id": 117267, "definitionId": 122279, "maxRanks": 1, "type": "passive", "name": "Splintering Sorcery", "spellId": 443739, "icon": "achievement_dungeon_arcanevaults", "index": 100}], "freeNode": true}, {"id": 94662, "name": "Augury Abounds", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62171, "next": [94659], "prev": [94664], "entries": [{"id": 117265, "definitionId": 122277, "maxRanks": 1, "type": "passive", "name": "Augury Abounds", "spellId": 443783, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 94663, "name": "Controlled Instincts", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94660], "prev": [94664], "entries": [{"id": 117266, "definitionId": 122278, "maxRanks": 1, "type": "passive", "name": "Controlled Instincts", "spellId": 444483, "icon": "spell_frost_ice_shards", "index": 100}]}, {"id": 94661, "name": "Splintering Orbs", "type": "single", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94658], "prev": [94664], "entries": [{"id": 117264, "definitionId": 122276, "maxRanks": 1, "type": "passive", "name": "Splintering Orbs", "spellId": 444256, "icon": "item_azereansphere", "index": 100}]}, {"id": 94659, "name": "Slippery Slinging / Look Again", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94657], "prev": [94662], "entries": [{"id": 117262, "definitionId": 122274, "maxRanks": 1, "type": "passive", "name": "Slippery Slinging", "spellId": 444752, "icon": "ability_mage_icyfeet", "index": 100}, {"id": 123418, "definitionId": 128256, "maxRanks": 1, "type": "passive", "name": "Look Again", "spellId": 444756, "icon": "achievement_bg_tophealer_av", "index": 200}]}, {"id": 94660, "name": "Reactive Barrier / Phantasmal Image", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94656], "prev": [94663], "entries": [{"id": 117263, "definitionId": 122275, "maxRanks": 1, "type": "passive", "name": "Reactive Barrier", "spellId": 444827, "icon": "ability_racial_forceshield", "index": 100}, {"id": 123417, "definitionId": 128255, "maxRanks": 1, "type": "passive", "name": "Phantasmal Image", "spellId": 444784, "icon": "spell_arcane_prismaticcloak", "index": 200}]}, {"id": 94658, "name": "Volatile Magic / Unerring Proficiency", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94655], "prev": [94661], "entries": [{"id": 117261, "definitionId": 122273, "maxRanks": 1, "type": "passive", "name": "Volatile Magic", "spellId": 444968, "icon": "spell_mage_flameorb_blue", "index": 100}, {"id": 123407, "definitionId": 128245, "maxRanks": 1, "type": "passive", "name": "Unerring Proficiency", "spellId": 444974, "icon": "spell_mage_presenceofmind", "index": 200}]}, {"id": 94657, "name": "Shifting Shards", "type": "single", "posX": 7200, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62113, "next": [94654], "prev": [94659], "entries": [{"id": 117260, "definitionId": 122272, "maxRanks": 1, "type": "passive", "name": "Shifting Shards", "spellId": 444675, "icon": "ability_mage_freeze", "index": 100}]}, {"id": 94656, "name": "Force of Will", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94660], "entries": [{"id": 117259, "definitionId": 122271, "maxRanks": 1, "type": "passive", "name": "Force of Will", "spellId": 444719, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 94655, "name": "Spellfrost Teachings", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94658], "entries": [{"id": 117258, "definitionId": 122270, "maxRanks": 1, "type": "passive", "name": "Spellfrost Teachings", "spellId": 444986, "icon": "70_inscription_vantus_rune_azure", "index": 100}]}, {"id": 94654, "name": "Splinterstorm", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "subTreeId": 40, "next": [], "prev": [94656, 94657, 94655], "entries": [{"id": 117257, "definitionId": 122269, "maxRanks": 1, "type": "passive", "name": "Splinterstorm", "spellId": 443742, "icon": "ability_mage_burstofcold", "index": 100}]}, {"id": 94647, "name": "Spellfire Spheres", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "entryNode": true, "subTreeId": 39, "next": [94653, 94652, 94644], "prev": [], "entries": [{"id": 117250, "definitionId": 122262, "maxRanks": 1, "type": "passive", "name": "Spellfire Spheres", "spellId": 448601, "icon": "inv_ability_sunfurymage_spellfirespheres", "index": 100}], "freeNode": true}, {"id": 94653, "name": "Mana Cascade", "type": "single", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94649], "prev": [94647], "entries": [{"id": 117256, "definitionId": 122268, "maxRanks": 1, "type": "passive", "name": "Mana Cascade", "spellId": 449293, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 94652, "name": "Invocation: Arcane Phoenix", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [94651], "prev": [94647], "entries": [{"id": 117255, "definitionId": 122267, "maxRanks": 1, "type": "passive", "name": "Invocation: Arcane Phoenix", "spellId": 448658, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 94644, "name": "Burden of Power", "type": "single", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94645], "prev": [94647], "entries": [{"id": 117247, "definitionId": 122259, "maxRanks": 1, "type": "passive", "name": "Burden of Power", "spellId": 451035, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 94649, "name": "Merely a Setback", "type": "single", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94650], "prev": [94653], "entries": [{"id": 117252, "definitionId": 122264, "maxRanks": 1, "type": "passive", "name": "Merely a Setback", "spellId": 449330, "icon": "inv_helm_robe_raidmage_i_01", "index": 100}]}, {"id": 94651, "name": "Lessons in Debilitation / Gravity Lapse", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94643], "prev": [94652], "entries": [{"id": 117254, "definitionId": 122266, "maxRanks": 1, "type": "passive", "name": "Lessons in Debilitation", "spellId": 449627, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 123832, "definitionId": 128670, "maxRanks": 1, "type": "passive", "name": "Gravity Lapse", "spellId": 458513, "icon": "inv_cosmicvoid_wave", "index": 200}]}, {"id": 94645, "name": "Glorious Incandescence", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94648], "prev": [94644], "entries": [{"id": 117248, "definitionId": 122260, "maxRanks": 1, "type": "passive", "name": "Glorious Incandescence", "spellId": 449394, "icon": "spell_burningsoul", "index": 100}]}, {"id": 94650, "name": "Savor the Moment / Sunfury Execution", "type": "choice", "posX": 7200, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94649], "entries": [{"id": 117253, "definitionId": 122265, "maxRanks": 1, "type": "passive", "name": "Savor the Moment", "spellId": 449412, "icon": "spell_fire_masterofelements", "index": 100}, {"id": 123867, "definitionId": 128705, "maxRanks": 1, "type": "passive", "name": "Sunfury Execution", "spellId": 449349, "icon": "spell_shadow_shadowandflame", "index": 200}]}, {"id": 94643, "name": "Codex of the Sunstriders", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "requiresNode": 102449, "next": [94646], "prev": [94651], "entries": [{"id": 117246, "definitionId": 122258, "maxRanks": 1, "type": "passive", "name": "Codex of the Sunstriders", "spellId": 449382, "icon": "inv_10_inscription2_book3_color1", "index": 100}]}, {"id": 94648, "name": "Rondurmancy / Ignite the Future", "type": "choice", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94645], "entries": [{"id": 117251, "definitionId": 122263, "maxRanks": 1, "type": "passive", "name": "Rondurmancy", "spellId": 449596, "icon": "spell_arcane_focusedpower", "index": 100}, {"id": 123833, "definitionId": 128671, "maxRanks": 1, "type": "passive", "name": "Ignite the Future", "spellId": 449558, "icon": "inv_misc_matchbook", "index": 200}]}, {"id": 94646, "name": "Memory of Al'ar", "type": "single", "posX": 7800, "posY": 7500, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [], "prev": [94643, 94650, 94648], "entries": [{"id": 117249, "definitionId": 122261, "maxRanks": 1, "type": "passive", "name": "Memory of Al'ar", "spellId": 449619, "icon": "inv_misc_summerfest_brazierorange", "index": 100}]}], "subTreeNodes": [{"id": 99830, "name": "Spellslinger / Sunfury", "type": "subtree", "posX": 6900, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123344, "type": "subtree", "name": "Spellslinger", "traitSubTreeId": 40, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-spellslinger", "nodes": [94664, 94662, 94663, 94661, 94659, 94660, 94658, 94657, 94656, 94655, 94654]}, {"id": 123341, "type": "subtree", "name": "Sunfury", "traitSubTreeId": 39, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-sunfury", "nodes": [94647, 94653, 94652, 94644, 94649, 94651, 94645, 94650, 94643, 94648, 94646]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]}, {"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Fire", "specId": 63, "classNodes": [{"id": 62119, "name": "Blazing Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80178, "definitionId": 85181, "maxRanks": 1, "type": "active", "name": "Blazing Barrier", "spellId": 235313, "icon": "ability_mage_moltenarmor", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62119], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62119], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62119], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "ability_ardenweald_mage", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring_of_frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 100998, "name": "Pyroblast", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [100989, 102014, 101012], "prev": [], "entries": [{"id": 124759, "definitionId": 129597, "maxRanks": 1, "type": "active", "name": "Pyroblast", "spellId": 11366, "icon": "spell_fire_fireball02", "index": 100}]}, {"id": 100989, "name": "Fire Blast", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [100997, 101027], "prev": [100998], "entries": [{"id": 124750, "definitionId": 129588, "maxRanks": 1, "type": "active", "name": "Fire Blast", "spellId": 108853, "icon": "spell_fire_fireball", "index": 100}]}, {"id": 102014, "name": "Firestarter", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [100998], "entries": [{"id": 126025, "definitionId": 130856, "maxRanks": 1, "type": "passive", "name": "Firestarter", "spellId": 205026, "icon": "spell_fire_fire", "index": 100}]}, {"id": 101012, "name": "Phoenix Flames", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [100991, 101008], "prev": [100998], "entries": [{"id": 124775, "definitionId": 129613, "maxRanks": 1, "type": "active", "name": "Phoenix Flames", "spellId": 257541, "icon": "artifactability_firemage_phoenixbolt", "index": 100}]}, {"id": 100997, "name": "Pyrotechnics", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [100987], "prev": [100989], "entries": [{"id": 124758, "definitionId": 129596, "maxRanks": 1, "type": "passive", "name": "Pyrotechnics", "spellId": 157642, "icon": "spell_fire_flamebolt", "index": 100}]}, {"id": 101027, "name": "Fervent Flickering", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [100987, 101023], "prev": [100989], "entries": [{"id": 124793, "definitionId": 129631, "maxRanks": 1, "type": "passive", "name": "Fervent Flickering", "spellId": 387044, "icon": "ability_warlock_burningembers", "index": 100}]}, {"id": 100991, "name": "Call of the Sun King", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [101023, 100994], "prev": [101012], "entries": [{"id": 124752, "definitionId": 129590, "maxRanks": 1, "type": "passive", "name": "Call of the Sun King", "spellId": 343222, "icon": "artifactability_firemage_phoenixbolt", "index": 100}]}, {"id": 101008, "name": "Majesty of the Phoenix", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [100994], "prev": [101012], "entries": [{"id": 124770, "definitionId": 129608, "maxRanks": 1, "type": "passive", "name": "Majesty of the Phoenix", "spellId": 451440, "icon": "ability_mount_pandarenphoenix_yellow", "index": 100}]}, {"id": 100987, "name": "Scorch", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [101011, 102010, 101009], "prev": [100997, 101027], "entries": [{"id": 124748, "definitionId": 129586, "maxRanks": 1, "type": "active", "name": "Scorch", "spellId": 2948, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 101023, "name": "Surging Blaze", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [101009, 102012, 101029], "prev": [100991, 101027], "entries": [{"id": 126024, "definitionId": 130855, "maxRanks": 1, "type": "passive", "name": "Surging Blaze", "spellId": 343230, "icon": "spell_fire_selfdestruct", "index": 200}]}, {"id": 100994, "name": "Lit Fuse", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [101029, 102011, 101013], "prev": [101008, 100991], "entries": [{"id": 124755, "definitionId": 129593, "maxRanks": 1, "type": "passive", "name": "Lit Fuse", "spellId": 450716, "icon": "ability_mage_livingbomb", "index": 100}]}, {"id": 101011, "name": "Improved Scorch / Scald", "type": "choice", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102013, 101945], "prev": [100987], "entries": [{"id": 124774, "definitionId": 129612, "maxRanks": 1, "type": "passive", "name": "Improved Scorch", "spellId": 383604, "icon": "ability_mage_fierypayback", "index": 100}, {"id": 124773, "definitionId": 129611, "maxRanks": 1, "type": "passive", "name": "Scald", "spellId": 450746, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 102010, "name": "Heat Shimmer", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101945], "prev": [100987], "entries": [{"id": 126019, "definitionId": 130850, "maxRanks": 1, "type": "passive", "name": "Heat Shimmer", "spellId": 457735, "icon": "ability_rhyolith_magmaflow_wave", "index": 200}]}, {"id": 101009, "name": "Flame On", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101945, 101017, 100995], "prev": [100987, 101023], "entries": [{"id": 124771, "definitionId": 129609, "maxRanks": 1, "type": "passive", "name": "Flame On", "spellId": 205029, "icon": "inv_helm_circlet_firelands_d_01", "index": 100}]}, {"id": 102012, "name": "Flame Accelerant", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100995], "prev": [101023], "entries": [{"id": 126021, "definitionId": 130852, "maxRanks": 1, "type": "passive", "name": "Flame Accelerant", "spellId": 453282, "icon": "inv_ember", "index": 100}]}, {"id": 101029, "name": "Critical Mass", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100995, 101002, 101021], "prev": [100994, 101023], "entries": [{"id": 124795, "definitionId": 129633, "maxRanks": 1, "type": "passive", "name": "Critical Mass", "spellId": 117216, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 102011, "name": "Sparking Cinders", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101021], "prev": [100994], "entries": [{"id": 126020, "definitionId": 130851, "maxRanks": 1, "type": "passive", "name": "Sparking Cinders", "spellId": 457728, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 101013, "name": "Explosive Ingenuity", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101021, 100992], "prev": [100994], "entries": [{"id": 124776, "definitionId": 129614, "maxRanks": 1, "type": "passive", "name": "Explosive Ingenuity", "spellId": 451760, "icon": "achievement_dungeon_ignitionmagevalyri", "index": 200}]}, {"id": 102013, "name": "Inflame", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101006], "prev": [101011], "entries": [{"id": 126022, "definitionId": 130853, "maxRanks": 1, "type": "passive", "name": "Inflame", "spellId": 417467, "icon": "spell_fire_ragnaros_lavabolt", "index": 200}]}, {"id": 101945, "name": "Ashen Feather / Alexstrasza's Fury", "type": "choice", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101006, 101001, 101019], "prev": [101009, 101011, 102010], "entries": [{"id": 125944, "definitionId": 130775, "maxRanks": 1, "type": "passive", "name": "Ashen Feather", "spellId": 450813, "icon": "inv_icon_feather06a", "index": 100}, {"id": 126023, "definitionId": 130854, "maxRanks": 1, "type": "passive", "name": "Alexstrasza's Fury", "spellId": 235870, "icon": "spell_warrior_dragoncharge", "index": 200}]}, {"id": 101017, "name": "Intensifying Flame", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101001], "prev": [101009], "entries": [{"id": 124780, "definitionId": 129618, "maxRanks": 1, "type": "passive", "name": "Intensifying Flame", "spellId": 416714, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 100995, "name": "Combustion", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101001, 101007, 101014], "prev": [101029, 101009, 102012], "entries": [{"id": 124756, "definitionId": 129594, "maxRanks": 1, "type": "active", "name": "Combustion", "spellId": 190319, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 101002, "name": "Controlled Destruction", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101014], "prev": [101029], "entries": [{"id": 124763, "definitionId": 129601, "maxRanks": 1, "type": "passive", "name": "Controlled Destruction", "spellId": 383669, "icon": "spell_fire_playingwithfire", "index": 100}]}, {"id": 101021, "name": "Flame Patch / Quickflame", "type": "choice", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101014, 100988, 101004], "prev": [101013, 101029, 102011], "entries": [{"id": 124786, "definitionId": 129624, "maxRanks": 1, "type": "passive", "name": "Flame Patch", "spellId": 205037, "icon": "spell_mage_flameorb", "index": 100}, {"id": 126018, "definitionId": 130849, "maxRanks": 1, "type": "passive", "name": "Quickflame", "spellId": 450807, "icon": "ability_creature_cursed_01", "index": 200}]}, {"id": 100992, "name": "Convection", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100988], "prev": [101013], "entries": [{"id": 124753, "definitionId": 129591, "maxRanks": 1, "type": "passive", "name": "Convection", "spellId": 416715, "icon": "spell_fire_lavaspawn", "index": 100}]}, {"id": 101006, "name": "Master of Flame", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101019], "prev": [101945, 102013], "entries": [{"id": 124767, "definitionId": 129605, "maxRanks": 1, "type": "passive", "name": "Master of Flame", "spellId": 384174, "icon": "inv_trinket_firelands_02", "index": 200}]}, {"id": 101001, "name": "Wildfire", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101019], "prev": [100995, 101017, 101945], "entries": [{"id": 125942, "definitionId": 130773, "maxRanks": 1, "type": "passive", "name": "Wildfire", "spellId": 383489, "icon": "ability_warlock_inferno", "index": 200}]}, {"id": 101007, "name": "Improved Combustion / Spontaneous Combustion", "type": "choice", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101024], "prev": [100995], "entries": [{"id": 124769, "definitionId": 129607, "maxRanks": 1, "type": "passive", "name": "Improved Combustion", "spellId": 383967, "icon": "spell_fire_sealoffire", "index": 100}, {"id": 124768, "definitionId": 129606, "maxRanks": 1, "type": "passive", "name": "Spontaneous Combustion", "spellId": 451875, "icon": "ability_mage_worldinflames", "index": 200}]}, {"id": 101014, "name": "Feel the Burn", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101004], "prev": [101021, 100995, 101002], "entries": [{"id": 124777, "definitionId": 129615, "maxRanks": 1, "type": "passive", "name": "Feel the Burn", "spellId": 383391, "icon": "spell_fire_fireball", "index": 100}]}, {"id": 100988, "name": "Mark of the Firelord", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101004], "prev": [101021, 100992], "entries": [{"id": 124749, "definitionId": 129587, "maxRanks": 1, "type": "passive", "name": "Mark of the Firelord", "spellId": 450325, "icon": "achievement_firelands_raid_ragnaros", "index": 200}]}, {"id": 101019, "name": "Fevered Incantation", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101020, 101015, 100999], "prev": [101006, 101001, 101945], "entries": [{"id": 124783, "definitionId": 129621, "maxRanks": 2, "type": "passive", "name": "Fevered Incantation", "spellId": 383810, "icon": "inv_misc_enchantedpearld", "index": 100}]}, {"id": 101024, "name": "Kindling", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [100999, 101003, 101016], "prev": [101007], "entries": [{"id": 124789, "definitionId": 129627, "maxRanks": 1, "type": "passive", "name": "Kindling", "spellId": 155148, "icon": "spell_mage_kindling", "index": 100}]}, {"id": 101004, "name": "Fire's Ire", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101016, 100996, 100993], "prev": [101014, 100988, 101021], "entries": [{"id": 124765, "definitionId": 129603, "maxRanks": 2, "type": "passive", "name": "Fire's Ire", "spellId": 450831, "icon": "achievement_boss_lordanthricyst", "index": 100}]}, {"id": 101020, "name": "Pyromaniac", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101942], "prev": [101019], "entries": [{"id": 124784, "definitionId": 129622, "maxRanks": 1, "type": "passive", "name": "Pyromaniac", "spellId": 451466, "icon": "inv_misc_volatilefire", "index": 200}]}, {"id": 101015, "name": "Molten Fury", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101019], "entries": [{"id": 124778, "definitionId": 129616, "maxRanks": 1, "type": "passive", "name": "Molten Fury", "spellId": 457803, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 100999, "name": "From the Ashes", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101943], "prev": [101019, 101024], "entries": [{"id": 124760, "definitionId": 129598, "maxRanks": 1, "type": "passive", "name": "From the Ashes", "spellId": 342344, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 101003, "name": "Fiery Rush", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101025], "prev": [101024], "entries": [{"id": 124764, "definitionId": 129602, "maxRanks": 1, "type": "passive", "name": "Fiery Rush", "spellId": 383634, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 101016, "name": "Meteor", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101000], "prev": [101004, 101024], "entries": [{"id": 124779, "definitionId": 129617, "maxRanks": 1, "type": "active", "name": "Meteor", "spellId": 153561, "icon": "spell_mage_meteor", "index": 100}]}, {"id": 100996, "name": "Firefall", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101004], "entries": [{"id": 124757, "definitionId": 129595, "maxRanks": 1, "type": "passive", "name": "Firefall", "spellId": 384033, "icon": "ability_ironmaidens_rapidfire", "index": 100}]}, {"id": 100993, "name": "Explosivo", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101022], "prev": [101004], "entries": [{"id": 124754, "definitionId": 129592, "maxRanks": 1, "type": "passive", "name": "Explosivo", "spellId": 451757, "icon": "spell_sandexplosion", "index": 100}]}, {"id": 101942, "name": "Hyperthermia", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101020], "entries": [{"id": 125940, "definitionId": 130771, "maxRanks": 1, "type": "passive", "name": "Hyperthermia", "spellId": 383860, "icon": "spell_fire_burnout", "index": 200}]}, {"id": 101943, "name": "Phoenix Reborn", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [100999], "entries": [{"id": 125941, "definitionId": 130772, "maxRanks": 1, "type": "passive", "name": "Phoenix Reborn", "spellId": 453123, "icon": "inv_sword_1h_artifactfelomelorn_d_01", "index": 100}]}, {"id": 101025, "name": "Sun King's Blessing / Unleashed Inferno", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101003], "entries": [{"id": 124791, "definitionId": 129629, "maxRanks": 1, "type": "passive", "name": "Sun King's Blessing", "spellId": 383886, "icon": "ability_mage_firestarter", "index": 100}, {"id": 124790, "definitionId": 129628, "maxRanks": 1, "type": "passive", "name": "Unleashed Inferno", "spellId": 416506, "icon": "spell_fire_felflamering_red", "index": 200}]}, {"id": 101000, "name": "Deep Impact", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101016], "entries": [{"id": 124761, "definitionId": 129599, "maxRanks": 1, "type": "passive", "name": "Deep Impact", "spellId": 416719, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 101022, "name": "Blast Zone", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [100993], "entries": [{"id": 124787, "definitionId": 129625, "maxRanks": 1, "type": "passive", "name": "Blast Zone", "spellId": 451755, "icon": "spell_fire_elementaldevastation", "index": 100}]}], "heroNodes": [{"id": 94636, "name": "Frostfire Mastery", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 41, "next": [94642, 94641, 94633], "prev": [], "entries": [{"id": 117239, "definitionId": 122251, "maxRanks": 1, "type": "passive", "name": "Frostfire Mastery", "spellId": 431038, "icon": "spell_frostresistancetotem_01", "index": 100}], "freeNode": true}, {"id": 94642, "name": "Imbued Warding / Meltdown", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94638], "prev": [94636], "entries": [{"id": 117245, "definitionId": 122257, "maxRanks": 1, "type": "passive", "name": "Imbued Warding", "spellId": 431066, "icon": "inv_10_jewelcrafting_gem3primal_fire_cut_blue", "index": 100}, {"id": 117776, "definitionId": 122788, "maxRanks": 1, "type": "passive", "name": "Meltdown", "spellId": 431131, "icon": "spell_frost_arcticwinds", "index": 200}]}, {"id": 94641, "name": "Frostfire Bolt", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94640], "prev": [94636], "entries": [{"id": 117244, "definitionId": 122256, "maxRanks": 1, "type": "active", "name": "Frostfire Bolt", "spellId": 431044, "icon": "inv_ability_frostfiremage_frostfirebolt", "index": 100}]}, {"id": 94633, "name": "Elemental Affinity / Flame and Frost", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94634], "prev": [94636], "entries": [{"id": 117236, "definitionId": 122248, "maxRanks": 1, "type": "passive", "name": "Elemental Affinity", "spellId": 431067, "icon": "inv_10_dungeonjewelry_dragon_trinket_5_red", "index": 100}, {"id": 117775, "definitionId": 122787, "maxRanks": 1, "type": "passive", "name": "Flame and Frost", "spellId": 431112, "icon": "spell_firefrost_orb", "index": 200}]}, {"id": 94638, "name": "Isothermic Core", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "requiresNode": 101016, "next": [94639], "prev": [94642], "entries": [{"id": 117241, "definitionId": 122253, "maxRanks": 1, "type": "passive", "name": "Isothermic Core", "spellId": 431095, "icon": "inv_10_jewelcrafting_gem2standard_fire_cut_blue", "index": 100}]}, {"id": 94640, "name": "Severe Temperatures / Thermal Conditioning", "type": "choice", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94632], "prev": [94641], "entries": [{"id": 117243, "definitionId": 122255, "maxRanks": 1, "type": "passive", "name": "Severe Temperatures", "spellId": 431189, "icon": "inv_magemount_fire", "index": 100}, {"id": 117774, "definitionId": 122786, "maxRanks": 1, "type": "passive", "name": "Thermal Conditioning", "spellId": 431117, "icon": "spell_fireresistancetotem_01", "index": 200}]}, {"id": 94634, "name": "Frostfire Infusion", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94637], "prev": [94633], "entries": [{"id": 117237, "definitionId": 122249, "maxRanks": 1, "type": "passive", "name": "Frostfire Infusion", "spellId": 431166, "icon": "inv_10_blacksmithing_craftedbar_frostfirealloy", "index": 100}]}, {"id": 94639, "name": "Excess Frost", "type": "single", "posX": 14700, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94638], "entries": [{"id": 117242, "definitionId": 122254, "maxRanks": 1, "type": "passive", "name": "Excess Frost", "spellId": 438600, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 94632, "name": "Frostfire Empowerment", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94640], "entries": [{"id": 117235, "definitionId": 122247, "maxRanks": 1, "type": "passive", "name": "Frostfire Empowerment", "spellId": 431176, "icon": "spell_frostfire_orb", "index": 100}]}, {"id": 94637, "name": "Excess Fire", "type": "single", "posX": 15900, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94634], "entries": [{"id": 117240, "definitionId": 122252, "maxRanks": 1, "type": "passive", "name": "Excess Fire", "spellId": 438595, "icon": "ability_mage_fierypayback", "index": 100}]}, {"id": 94635, "name": "Flash Freezeburn", "type": "single", "posX": 15300, "posY": 4500, "maxRanks": 1, "subTreeId": 41, "next": [], "prev": [94632, 94639, 94637], "entries": [{"id": 117238, "definitionId": 122250, "maxRanks": 1, "type": "passive", "name": "Flash Freezeburn", "spellId": 431178, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 94647, "name": "Spellfire Spheres", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "entryNode": true, "subTreeId": 39, "next": [94653, 94652, 94644], "prev": [], "entries": [{"id": 117250, "definitionId": 122262, "maxRanks": 1, "type": "passive", "name": "Spellfire Spheres", "spellId": 448601, "icon": "inv_ability_sunfurymage_spellfirespheres", "index": 100}], "freeNode": true}, {"id": 94653, "name": "Mana Cascade", "type": "single", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94649], "prev": [94647], "entries": [{"id": 117256, "definitionId": 122268, "maxRanks": 1, "type": "passive", "name": "Mana Cascade", "spellId": 449293, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 94652, "name": "Invocation: Arcane Phoenix", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [94651], "prev": [94647], "entries": [{"id": 117255, "definitionId": 122267, "maxRanks": 1, "type": "passive", "name": "Invocation: Arcane Phoenix", "spellId": 448658, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 94644, "name": "Burden of Power", "type": "single", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94645], "prev": [94647], "entries": [{"id": 117247, "definitionId": 122259, "maxRanks": 1, "type": "passive", "name": "Burden of Power", "spellId": 451035, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 94649, "name": "Merely a Setback", "type": "single", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94650], "prev": [94653], "entries": [{"id": 117252, "definitionId": 122264, "maxRanks": 1, "type": "passive", "name": "Merely a Setback", "spellId": 449330, "icon": "inv_helm_robe_raidmage_i_01", "index": 100}]}, {"id": 94651, "name": "Lessons in Debilitation / Gravity Lapse", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94643], "prev": [94652], "entries": [{"id": 117254, "definitionId": 122266, "maxRanks": 1, "type": "passive", "name": "Lessons in Debilitation", "spellId": 449627, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 123832, "definitionId": 128670, "maxRanks": 1, "type": "passive", "name": "Gravity Lapse", "spellId": 458513, "icon": "inv_cosmicvoid_wave", "index": 200}]}, {"id": 94645, "name": "Glorious Incandescence", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94648], "prev": [94644], "entries": [{"id": 117248, "definitionId": 122260, "maxRanks": 1, "type": "passive", "name": "Glorious Incandescence", "spellId": 449394, "icon": "spell_burningsoul", "index": 100}]}, {"id": 94650, "name": "Savor the Moment / Sunfury Execution", "type": "choice", "posX": 7200, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94649], "entries": [{"id": 117253, "definitionId": 122265, "maxRanks": 1, "type": "passive", "name": "Savor the Moment", "spellId": 449412, "icon": "spell_fire_masterofelements", "index": 100}, {"id": 123867, "definitionId": 128705, "maxRanks": 1, "type": "passive", "name": "Sunfury Execution", "spellId": 449349, "icon": "spell_shadow_shadowandflame", "index": 200}]}, {"id": 94643, "name": "Codex of the Sunstriders", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "requiresNode": 102449, "next": [94646], "prev": [94651], "entries": [{"id": 117246, "definitionId": 122258, "maxRanks": 1, "type": "passive", "name": "Codex of the Sunstriders", "spellId": 449382, "icon": "inv_10_inscription2_book3_color1", "index": 100}]}, {"id": 94648, "name": "Rondurmancy / Ignite the Future", "type": "choice", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94645], "entries": [{"id": 117251, "definitionId": 122263, "maxRanks": 1, "type": "passive", "name": "Rondurmancy", "spellId": 449596, "icon": "spell_arcane_focusedpower", "index": 100}, {"id": 123833, "definitionId": 128671, "maxRanks": 1, "type": "passive", "name": "Ignite the Future", "spellId": 449558, "icon": "inv_misc_matchbook", "index": 200}]}, {"id": 94646, "name": "Memory of Al'ar", "type": "single", "posX": 7800, "posY": 7500, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [], "prev": [94643, 94650, 94648], "entries": [{"id": 117249, "definitionId": 122261, "maxRanks": 1, "type": "passive", "name": "Memory of Al'ar", "spellId": 449619, "icon": "inv_misc_summerfest_brazierorange", "index": 100}]}], "subTreeNodes": [{"id": 99829, "name": "Frostfire / Sunfury", "type": "subtree", "posX": 7800, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123343, "type": "subtree", "name": "Frostfire", "traitSubTreeId": 41, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-frostfire", "nodes": [94636, 94642, 94641, 94633, 94638, 94640, 94634, 94639, 94632, 94637, 94635]}, {"id": 123340, "type": "subtree", "name": "Sunfury", "traitSubTreeId": 39, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-sunfury", "nodes": [94647, 94653, 94652, 94644, 94649, 94651, 94645, 94650, 94643, 94648, 94646]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]}, {"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Frost", "specId": 64, "classNodes": [{"id": 62117, "name": "Ice Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80176, "definitionId": 85179, "maxRanks": 1, "type": "active", "name": "Ice Barrier", "spellId": 11426, "icon": "spell_ice_lament", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62117], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62117], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62117], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "ability_ardenweald_mage", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring_of_frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 62176, "name": "Ice Lance", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62177, 62164], "prev": [], "entries": [{"id": 80241, "definitionId": 85244, "maxRanks": 1, "type": "active", "name": "Ice Lance", "spellId": 30455, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 62177, "name": "Frozen Orb", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [62178], "prev": [62176], "entries": [{"id": 80242, "definitionId": 85245, "maxRanks": 1, "type": "active", "name": "Frozen Orb", "spellId": 84714, "icon": "spell_frost_frozenorb", "index": 100}]}, {"id": 62164, "name": "Fingers of Frost", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [62165], "prev": [62176], "entries": [{"id": 80227, "definitionId": 85230, "maxRanks": 1, "type": "passive", "name": "Fingers of Frost", "spellId": 112965, "icon": "ability_mage_wintersgrasp", "index": 100}]}, {"id": 62178, "name": "Flurry", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [62179, 81468, 62174], "prev": [62177], "entries": [{"id": 80243, "definitionId": 85246, "maxRanks": 1, "type": "active", "name": "Flurry", "spellId": 44614, "icon": "ability_warlock_burningembersblue", "index": 100}]}, {"id": 62165, "name": "Shatter", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [62174, 81467, 62166], "prev": [62164], "entries": [{"id": 80228, "definitionId": 85231, "maxRanks": 1, "type": "passive", "name": "Shatter", "spellId": 12982, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 62179, "name": "Brain Freeze", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [62181], "prev": [62178], "entries": [{"id": 80244, "definitionId": 85247, "maxRanks": 1, "type": "passive", "name": "Brain Freeze", "spellId": 190447, "icon": "ability_mage_brainfreeze", "index": 100}]}, {"id": 81468, "name": "Everlasting Frost", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [62181], "prev": [62178], "entries": [{"id": 102429, "definitionId": 107434, "maxRanks": 1, "type": "passive", "name": "Everlasting Frost", "spellId": 385167, "icon": "spell_frost_chillingbolt", "index": 100}]}, {"id": 62174, "name": "Winter's Blessing", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [62173, 62169], "prev": [62165, 62178], "entries": [{"id": 80239, "definitionId": 85242, "maxRanks": 1, "type": "passive", "name": "Winter's Blessing", "spellId": 417489, "icon": "spell_frost_wisp", "index": 100}]}, {"id": 81467, "name": "Frostbite", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [62167], "prev": [62165], "entries": [{"id": 102428, "definitionId": 107433, "maxRanks": 1, "type": "passive", "name": "Frostbite", "spellId": 378756, "icon": "spell_frost_frostarmor", "index": 100}]}, {"id": 62166, "name": "Piercing Cold", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [62167], "prev": [62165], "entries": [{"id": 80229, "definitionId": 85232, "maxRanks": 1, "type": "passive", "name": "Piercing Cold", "spellId": 378919, "icon": "spell_frost_frostbolt", "index": 100}]}, {"id": 62181, "name": "Perpetual Winter", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62182, 62180], "prev": [81468, 62179], "entries": [{"id": 80247, "definitionId": 85250, "maxRanks": 1, "type": "passive", "name": "Perpetual Winter", "spellId": 378198, "icon": "spell_frost_arcticwinds", "index": 100}]}, {"id": 62173, "name": "Lonely Winter", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62180, 62172], "prev": [62174], "entries": [{"id": 80237, "definitionId": 85240, "maxRanks": 1, "type": "passive", "name": "Lonely Winter", "spellId": 205024, "icon": "achievement_dungeon_frozenthrone", "index": 200}]}, {"id": 62169, "name": "Permafrost Lances", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62170, 62168], "prev": [62174], "entries": [{"id": 80233, "definitionId": 85236, "maxRanks": 1, "type": "passive", "name": "Permafrost Lances", "spellId": 460590, "icon": "ability_deathknight_icygrip", "index": 100}]}, {"id": 62167, "name": "Bone Chilling", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62168, 62160], "prev": [62166, 81467], "entries": [{"id": 80230, "definitionId": 85233, "maxRanks": 1, "type": "passive", "name": "Bone Chilling", "spellId": 205027, "icon": "ability_mage_chilledtothebone", "index": 100}]}, {"id": 62182, "name": "Comet Storm", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62183], "prev": [62181], "entries": [{"id": 80248, "definitionId": 85251, "maxRanks": 1, "type": "active", "name": "Comet Storm", "spellId": 153595, "icon": "spell_mage_cometstorm2", "index": 100}]}, {"id": 62180, "name": "Frozen Touch", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62159], "prev": [62181, 62173], "entries": [{"id": 80245, "definitionId": 85248, "maxRanks": 1, "type": "passive", "name": "Frozen Touch", "spellId": 205030, "icon": "ability_mage_burstofcold", "index": 200}]}, {"id": 62172, "name": "Wintertide", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [62171], "prev": [62173], "entries": [{"id": 80236, "definitionId": 85239, "maxRanks": 2, "type": "passive", "name": "Wintertide", "spellId": 378406, "icon": "ability_deathknight_frozencenter", "index": 100}]}, {"id": 62170, "name": "Ice Caller", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62171], "prev": [62169], "entries": [{"id": 80234, "definitionId": 85237, "maxRanks": 1, "type": "passive", "name": "Ice Caller", "spellId": 236662, "icon": "spell_frost_icestorm", "index": 100}]}, {"id": 62168, "name": "Flash Freeze", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62162], "prev": [62167, 62169], "entries": [{"id": 80231, "definitionId": 85234, "maxRanks": 1, "type": "passive", "name": "Flash Freeze", "spellId": 379993, "icon": "spell_hunter_icetrap", "index": 100}]}, {"id": 62160, "name": "Subzero", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [62161], "prev": [62167], "entries": [{"id": 80223, "definitionId": 85226, "maxRanks": 2, "type": "passive", "name": "Subzero", "spellId": 380154, "icon": "spell_ice_magicdamage", "index": 100}]}, {"id": 62159, "name": "Deep Shatter", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [62183, 62150], "prev": [62180], "entries": [{"id": 80222, "definitionId": 85225, "maxRanks": 2, "type": "passive", "name": "Deep Shatter", "spellId": 378749, "icon": "inv_misc_frostemblem_01", "index": 100}]}, {"id": 62171, "name": "Icy Veins", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62150, 62154, 62163], "prev": [62170, 62172], "entries": [{"id": 80235, "definitionId": 85238, "maxRanks": 1, "type": "active", "name": "Icy Veins", "spellId": 12472, "icon": "spell_frost_coldhearted", "index": 100}]}, {"id": 62162, "name": "Splintering Cold", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [62163, 62161], "prev": [62168], "entries": [{"id": 80225, "definitionId": 85228, "maxRanks": 2, "type": "passive", "name": "Splintering Cold", "spellId": 379049, "icon": "spell_fire_blueflamestrike", "index": 100}]}, {"id": 62183, "name": "Glacial Assault", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62151], "prev": [62159, 62182], "entries": [{"id": 80249, "definitionId": 85252, "maxRanks": 1, "type": "passive", "name": "Glacial Assault", "spellId": 378947, "icon": "inv_staff_15", "index": 100}]}, {"id": 62150, "name": "Freezing Rain", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62151, 62184], "prev": [62159, 62171], "entries": [{"id": 80212, "definitionId": 85215, "maxRanks": 1, "type": "passive", "name": "Freezing Rain", "spellId": 270233, "icon": "spell_frost_frozenorb", "index": 100}]}, {"id": 62154, "name": "Thermal Void", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62184, 62156, 62158], "prev": [62171], "entries": [{"id": 80217, "definitionId": 85220, "maxRanks": 1, "type": "passive", "name": "Thermal Void", "spellId": 155149, "icon": "spell_mage_thermalvoid", "index": 100}]}, {"id": 62163, "name": "Splitting Ice", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62158, 62153], "prev": [62162, 62171], "entries": [{"id": 80226, "definitionId": 85229, "maxRanks": 1, "type": "passive", "name": "Splitting Ice", "spellId": 56377, "icon": "spell_frost_ice_shards", "index": 200}]}, {"id": 62161, "name": "Chain Reaction", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62153], "prev": [62160, 62162], "entries": [{"id": 80224, "definitionId": 85227, "maxRanks": 1, "type": "passive", "name": "Chain Reaction", "spellId": 278309, "icon": "spell_frost_frostblast", "index": 200}]}, {"id": 62151, "name": "Fractured Frost", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101302, 62155], "prev": [62150, 62183], "entries": [{"id": 80214, "definitionId": 85217, "maxRanks": 1, "type": "passive", "name": "Fractured Frost", "spellId": 378448, "icon": "spell_fire_frostresistancetotem", "index": 100}]}, {"id": 62184, "name": "Freezing Winds", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62185], "prev": [62154, 62150], "entries": [{"id": 80250, "definitionId": 85253, "maxRanks": 1, "type": "passive", "name": "Freezing Winds", "spellId": 382103, "icon": "spell_fire_blueflamering", "index": 100}]}, {"id": 62156, "name": "Slick Ice", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62154], "entries": [{"id": 80219, "definitionId": 85222, "maxRanks": 1, "type": "passive", "name": "Slick Ice", "spellId": 382144, "icon": "inv_enchant_shardshadowfrostlarge", "index": 100}]}, {"id": 62158, "name": "Hailstones", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62157], "prev": [62154, 62163], "entries": [{"id": 80221, "definitionId": 85224, "maxRanks": 1, "type": "passive", "name": "Hailstones", "spellId": 381244, "icon": "artifactability_frostmage_blackicicles", "index": 100}]}, {"id": 62153, "name": "Ray of Frost", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62152, 103771], "prev": [62161, 62163], "entries": [{"id": 80216, "definitionId": 85219, "maxRanks": 1, "type": "active", "name": "Ray of Frost", "spellId": 205021, "icon": "ability_mage_rayoffrost", "index": 100}]}, {"id": 101302, "name": "Death's Chill", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62151], "entries": [{"id": 125131, "definitionId": 129963, "maxRanks": 1, "type": "passive", "name": "Death's Chill", "spellId": 450331, "icon": "inv_trinket_fragmentoffrostmourne", "index": 100}]}, {"id": 62155, "name": "Cold Front", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62151], "entries": [{"id": 80218, "definitionId": 85221, "maxRanks": 1, "type": "passive", "name": "Cold Front", "spellId": 382110, "icon": "ability_mage_coldasice", "index": 100}]}, {"id": 62185, "name": "Coldest Snap", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62184], "entries": [{"id": 80251, "definitionId": 85254, "maxRanks": 1, "type": "passive", "name": "Coldest Snap", "spellId": 417493, "icon": "spell_frost_wizardmark", "index": 100}]}, {"id": 62157, "name": "Glacial Spike", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62158], "entries": [{"id": 80220, "definitionId": 85223, "maxRanks": 1, "type": "active", "name": "Glacial Spike", "spellId": 199786, "icon": "ability_mage_glacialspike", "index": 100}]}, {"id": 62152, "name": "Cryopathy", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62153], "entries": [{"id": 80215, "definitionId": 85218, "maxRanks": 1, "type": "passive", "name": "Cryopathy", "spellId": 417491, "icon": "ability_hunter_pointofnoescape", "index": 100}]}, {"id": 103771, "name": "Splintering Ray", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62153], "entries": [{"id": 128077, "definitionId": 132886, "maxRanks": 1, "type": "passive", "name": "Splintering Ray", "spellId": 418733, "icon": "spell_fire_blueflamestrike", "index": 100}]}], "heroNodes": [{"id": 94664, "name": "Splintering Sorcery", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 40, "next": [94662, 94663, 94661], "prev": [], "entries": [{"id": 117267, "definitionId": 122279, "maxRanks": 1, "type": "passive", "name": "Splintering Sorcery", "spellId": 443739, "icon": "achievement_dungeon_arcanevaults", "index": 100}], "freeNode": true}, {"id": 94636, "name": "Frostfire Mastery", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 41, "next": [94642, 94641, 94633], "prev": [], "entries": [{"id": 117239, "definitionId": 122251, "maxRanks": 1, "type": "passive", "name": "Frostfire Mastery", "spellId": 431038, "icon": "spell_frostresistancetotem_01", "index": 100}], "freeNode": true}, {"id": 94662, "name": "Augury Abounds", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62171, "next": [94659], "prev": [94664], "entries": [{"id": 117265, "definitionId": 122277, "maxRanks": 1, "type": "passive", "name": "Augury Abounds", "spellId": 443783, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 94663, "name": "Controlled Instincts", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94660], "prev": [94664], "entries": [{"id": 117266, "definitionId": 122278, "maxRanks": 1, "type": "passive", "name": "Controlled Instincts", "spellId": 444483, "icon": "spell_frost_ice_shards", "index": 100}]}, {"id": 94661, "name": "Splintering Orbs", "type": "single", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94658], "prev": [94664], "entries": [{"id": 117264, "definitionId": 122276, "maxRanks": 1, "type": "passive", "name": "Splintering Orbs", "spellId": 444256, "icon": "item_azereansphere", "index": 100}]}, {"id": 94642, "name": "Imbued Warding / Meltdown", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94638], "prev": [94636], "entries": [{"id": 117245, "definitionId": 122257, "maxRanks": 1, "type": "passive", "name": "Imbued Warding", "spellId": 431066, "icon": "inv_10_jewelcrafting_gem3primal_fire_cut_blue", "index": 100}, {"id": 117776, "definitionId": 122788, "maxRanks": 1, "type": "passive", "name": "Meltdown", "spellId": 431131, "icon": "spell_frost_arcticwinds", "index": 200}]}, {"id": 94641, "name": "Frostfire Bolt", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94640], "prev": [94636], "entries": [{"id": 117244, "definitionId": 122256, "maxRanks": 1, "type": "active", "name": "Frostfire Bolt", "spellId": 431044, "icon": "inv_ability_frostfiremage_frostfirebolt", "index": 100}]}, {"id": 94633, "name": "Elemental Affinity / Flame and Frost", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94634], "prev": [94636], "entries": [{"id": 117236, "definitionId": 122248, "maxRanks": 1, "type": "passive", "name": "Elemental Affinity", "spellId": 431067, "icon": "inv_10_dungeonjewelry_dragon_trinket_5_red", "index": 100}, {"id": 117775, "definitionId": 122787, "maxRanks": 1, "type": "passive", "name": "Flame and Frost", "spellId": 431112, "icon": "spell_firefrost_orb", "index": 200}]}, {"id": 94659, "name": "Slippery Slinging / Look Again", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94657], "prev": [94662], "entries": [{"id": 117262, "definitionId": 122274, "maxRanks": 1, "type": "passive", "name": "Slippery Slinging", "spellId": 444752, "icon": "ability_mage_icyfeet", "index": 100}, {"id": 123418, "definitionId": 128256, "maxRanks": 1, "type": "passive", "name": "Look Again", "spellId": 444756, "icon": "achievement_bg_tophealer_av", "index": 200}]}, {"id": 94660, "name": "Reactive Barrier / Phantasmal Image", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94656], "prev": [94663], "entries": [{"id": 117263, "definitionId": 122275, "maxRanks": 1, "type": "passive", "name": "Reactive Barrier", "spellId": 444827, "icon": "ability_racial_forceshield", "index": 100}, {"id": 123417, "definitionId": 128255, "maxRanks": 1, "type": "passive", "name": "Phantasmal Image", "spellId": 444784, "icon": "spell_arcane_prismaticcloak", "index": 200}]}, {"id": 94658, "name": "Volatile Magic / Unerring Proficiency", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94655], "prev": [94661], "entries": [{"id": 117261, "definitionId": 122273, "maxRanks": 1, "type": "passive", "name": "Volatile Magic", "spellId": 444968, "icon": "spell_mage_flameorb_blue", "index": 100}, {"id": 123407, "definitionId": 128245, "maxRanks": 1, "type": "passive", "name": "Unerring Proficiency", "spellId": 444974, "icon": "spell_mage_presenceofmind", "index": 200}]}, {"id": 94638, "name": "Isothermic Core", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "requiresNode": 101016, "next": [94639], "prev": [94642], "entries": [{"id": 117241, "definitionId": 122253, "maxRanks": 1, "type": "passive", "name": "Isothermic Core", "spellId": 431095, "icon": "inv_10_jewelcrafting_gem2standard_fire_cut_blue", "index": 100}]}, {"id": 94640, "name": "Severe Temperatures / Thermal Conditioning", "type": "choice", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94632], "prev": [94641], "entries": [{"id": 117243, "definitionId": 122255, "maxRanks": 1, "type": "passive", "name": "Severe Temperatures", "spellId": 431189, "icon": "inv_magemount_fire", "index": 100}, {"id": 117774, "definitionId": 122786, "maxRanks": 1, "type": "passive", "name": "Thermal Conditioning", "spellId": 431117, "icon": "spell_fireresistancetotem_01", "index": 200}]}, {"id": 94634, "name": "Frostfire Infusion", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94637], "prev": [94633], "entries": [{"id": 117237, "definitionId": 122249, "maxRanks": 1, "type": "passive", "name": "Frostfire Infusion", "spellId": 431166, "icon": "inv_10_blacksmithing_craftedbar_frostfirealloy", "index": 100}]}, {"id": 94657, "name": "Shifting Shards", "type": "single", "posX": 7200, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62113, "next": [94654], "prev": [94659], "entries": [{"id": 117260, "definitionId": 122272, "maxRanks": 1, "type": "passive", "name": "Shifting Shards", "spellId": 444675, "icon": "ability_mage_freeze", "index": 100}]}, {"id": 94656, "name": "Force of Will", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94660], "entries": [{"id": 117259, "definitionId": 122271, "maxRanks": 1, "type": "passive", "name": "Force of Will", "spellId": 444719, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 94655, "name": "Spellfrost Teachings", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94658], "entries": [{"id": 117258, "definitionId": 122270, "maxRanks": 1, "type": "passive", "name": "Spellfrost Teachings", "spellId": 444986, "icon": "70_inscription_vantus_rune_azure", "index": 100}]}, {"id": 94639, "name": "Excess Frost", "type": "single", "posX": 14700, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94638], "entries": [{"id": 117242, "definitionId": 122254, "maxRanks": 1, "type": "passive", "name": "Excess Frost", "spellId": 438600, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 94632, "name": "Frostfire Empowerment", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94640], "entries": [{"id": 117235, "definitionId": 122247, "maxRanks": 1, "type": "passive", "name": "Frostfire Empowerment", "spellId": 431176, "icon": "spell_frostfire_orb", "index": 100}]}, {"id": 94637, "name": "Excess Fire", "type": "single", "posX": 15900, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94634], "entries": [{"id": 117240, "definitionId": 122252, "maxRanks": 1, "type": "passive", "name": "Excess Fire", "spellId": 438595, "icon": "ability_mage_fierypayback", "index": 100}]}, {"id": 94654, "name": "Splinterstorm", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "subTreeId": 40, "next": [], "prev": [94656, 94657, 94655], "entries": [{"id": 117257, "definitionId": 122269, "maxRanks": 1, "type": "passive", "name": "Splinterstorm", "spellId": 443742, "icon": "ability_mage_burstofcold", "index": 100}]}, {"id": 94635, "name": "Flash Freezeburn", "type": "single", "posX": 15300, "posY": 4500, "maxRanks": 1, "subTreeId": 41, "next": [], "prev": [94632, 94639, 94637], "entries": [{"id": 117238, "definitionId": 122250, "maxRanks": 1, "type": "passive", "name": "Flash Freezeburn", "spellId": 431178, "icon": "spell_fire_elementaldevastation", "index": 100}]}], "subTreeNodes": [{"id": 99828, "name": "Frostfire / Spellslinger", "type": "subtree", "posX": 8700, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123342, "type": "subtree", "name": "Frostfire", "traitSubTreeId": 41, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-frostfire", "nodes": [94636, 94642, 94641, 94633, 94638, 94640, 94634, 94639, 94632, 94637, 94635]}, {"id": 123339, "type": "subtree", "name": "Spellslinger", "traitSubTreeId": 40, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-spellslinger", "nodes": [94664, 94662, 94663, 94661, 94659, 94660, 94658, 94657, 94656, 94655, 94654]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]}, {"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Arms", "specId": 71, "classNodes": [{"id": 90327, "name": "Battle Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90328], "prev": [], "entries": [{"id": 112184, "definitionId": 117189, "maxRanks": 1, "type": "active", "name": "Battle Stance", "spellId": 386164, "icon": "ability_warrior_offensivestance", "index": 100}], "freeNode": true}, {"id": 92537, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 114643, "definitionId": 119649, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 200}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90327], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90328, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90327], "entries": [{"id": 112185, "definitionId": 117190, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 262231, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [92537], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [92537], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90352], "prev": [90328, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90352, 90355, 90353], "prev": [90328, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90352, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90346, 90326], "entries": [{"id": 112216, "definitionId": 117221, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 392792, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90347], "prev": [90352, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90347, 90356, 90378], "prev": [90352, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 90340, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90347, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90340, 90382], "prev": [90331, 90385], "entries": [{"id": 112209, "definitionId": 117214, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 382764, "icon": "spell_shadow_unholystrength", "index": 0}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90366], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 90340, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90347, 95956], "entries": [{"id": 112201, "definitionId": 117206, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 383082, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118845, "definitionId": 123745, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90322, 90338], "prev": [90347, 90378], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90338, 90366], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90366], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90340, 90351, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90365], "prev": [90382, 90340], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90322, "name": "Two-Handed Weapon Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112179, "definitionId": 117184, "maxRanks": 1, "type": "passive", "name": "Two-Handed Weapon Specialization", "spellId": 382896, "icon": "inv_axe_09", "index": 0}]}, {"id": 90338, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90365], "prev": [90354, 90382], "entries": [{"id": 112199, "definitionId": 117204, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 382940, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90366, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90368, 90348, 90354], "entries": [{"id": 112233, "definitionId": 117238, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 384124, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 90365, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90363], "prev": [90360, 90338], "entries": [{"id": 112232, "definitionId": 117237, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 107574, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90366], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "ability_bastion_warrior", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90363, "name": "Blademaster's Torment / Warlord's Torment", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90365], "entries": [{"id": 112229, "definitionId": 117234, "maxRanks": 1, "type": "passive", "name": "Blademaster's Torment", "spellId": 390138, "icon": "ability_warrior_endlessrage", "index": 0}, {"id": 112228, "definitionId": 117233, "maxRanks": 1, "type": "passive", "name": "Warlord's Torment", "spellId": 390140, "icon": "warrior_talent_icon_innerrage", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90270, "name": "Mortal Strike", "type": "single", "posX": 12010, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90271], "prev": [], "entries": [{"id": 112122, "definitionId": 117127, "maxRanks": 1, "type": "active", "name": "Mortal Strike", "spellId": 12294, "icon": "ability_warrior_savageblow", "index": 100}]}, {"id": 90271, "name": "Overpower", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90278, 90276, 90273], "prev": [90270], "entries": [{"id": 112123, "definitionId": 117128, "maxRanks": 1, "type": "active", "name": "Overpower", "spellId": 7384, "icon": "ability_meleedamage", "index": 100}]}, {"id": 90278, "name": "Martial Prowess", "type": "single", "posX": 11110, "posY": 2100, "maxRanks": 1, "next": [90279, 90277], "prev": [90271], "entries": [{"id": 112130, "definitionId": 117135, "maxRanks": 1, "type": "passive", "name": "Martial Prowess", "spellId": 316440, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 90276, "name": "Die by the Sword", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90277, 90275, 90269, 90274], "prev": [90271], "entries": [{"id": 112128, "definitionId": 117133, "maxRanks": 1, "type": "active", "name": "Die by the Sword", "spellId": 118038, "icon": "ability_warrior_challange", "index": 100}]}, {"id": 90273, "name": "Improved Execute", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90274, 90272], "prev": [90271], "entries": [{"id": 112125, "definitionId": 117130, "maxRanks": 1, "type": "passive", "name": "Improved Execute", "spellId": 316405, "icon": "inv_sword_48", "index": 100}]}, {"id": 90279, "name": "Improved Overpower", "type": "single", "posX": 10200, "posY": 2700, "maxRanks": 1, "next": [90282], "prev": [90278], "entries": [{"id": 112131, "definitionId": 117136, "maxRanks": 1, "type": "passive", "name": "Improved Overpower", "spellId": 385571, "icon": "ability_meleedamage", "index": 100}]}, {"id": 90277, "name": "Bloodsurge", "type": "single", "posX": 11110, "posY": 2700, "maxRanks": 1, "next": [90282], "prev": [90276, 90278], "entries": [{"id": 112129, "definitionId": 117134, "maxRanks": 1, "type": "passive", "name": "Bloodsurge", "spellId": 384361, "icon": "ability_warrior_bloodsurge", "index": 0}]}, {"id": 90275, "name": "Fueled by Violence", "type": "single", "posX": 11710, "posY": 2700, "maxRanks": 1, "next": [90290], "prev": [90276], "entries": [{"id": 112127, "definitionId": 117132, "maxRanks": 1, "type": "passive", "name": "Fueled by Violence", "spellId": 383103, "icon": "ability_demonhunter_bloodlet", "index": 100}]}, {"id": 90269, "name": "Storm Wall / Ignore Pain", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90290], "prev": [90276], "entries": [{"id": 112121, "definitionId": 117126, "maxRanks": 1, "type": "passive", "name": "Storm Wall", "spellId": 388807, "icon": "spell_sandstorm", "index": 100}, {"id": 114738, "definitionId": 119745, "maxRanks": 1, "type": "active", "name": "Ignore Pain", "spellId": 190456, "icon": "ability_warrior_renewedvigor", "index": 200}]}, {"id": 90274, "name": "Sudden Death", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90292], "prev": [90273, 90276], "entries": [{"id": 112126, "definitionId": 117131, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 29725, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90272, "name": "Fervor of Battle", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [90292], "prev": [90273], "entries": [{"id": 112124, "definitionId": 117129, "maxRanks": 1, "type": "passive", "name": "Fervor of Battle", "spellId": 202316, "icon": "ability_rogue_waylay", "index": 100}]}, {"id": 90282, "name": "Tactician", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [92614, 90284, 90281], "prev": [90277, 90279], "entries": [{"id": 112134, "definitionId": 117139, "maxRanks": 1, "type": "passive", "name": "Tactician", "spellId": 184783, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 90290, "name": "Colossus Smash", "type": "single", "posX": 12010, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [92614, 90289, 90286], "prev": [90269, 90275], "entries": [{"id": 112144, "definitionId": 117149, "maxRanks": 1, "type": "active", "name": "Colossus Smash", "spellId": 167105, "icon": "ability_warrior_colossussmash", "index": 100}]}, {"id": 90292, "name": "Impale", "type": "single", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90286, 90293, 92536], "prev": [90274, 90272], "entries": [{"id": 112146, "definitionId": 117151, "maxRanks": 1, "type": "passive", "name": "Impale", "spellId": 383430, "icon": "ability_searingarrow", "index": 100}]}, {"id": 90281, "name": "Skullsplitter", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90283], "prev": [90282], "entries": [{"id": 112133, "definitionId": 117138, "maxRanks": 1, "type": "active", "name": "Skullsplitter", "spellId": 260643, "icon": "inv_skullsplitter", "index": 100}]}, {"id": 90284, "name": "Rend", "type": "single", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90283, 90285], "prev": [90282], "entries": [{"id": 112136, "definitionId": 117141, "maxRanks": 1, "type": "active", "name": "Rend", "spellId": 772, "icon": "ability_gouge", "index": 100}]}, {"id": 92614, "name": "Finishing Blows", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90285], "prev": [90290, 90282], "entries": [{"id": 114733, "definitionId": 119740, "maxRanks": 1, "type": "passive", "name": "Finishing Blows", "spellId": 400205, "icon": "ability_warrior_punishingblow", "index": 200}]}, {"id": 90289, "name": "Anger Management / Spiteful Serenity", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90288, 90287, 90285, 90291], "prev": [90290], "entries": [{"id": 112143, "definitionId": 117148, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 0}, {"id": 114642, "definitionId": 119648, "maxRanks": 1, "type": "passive", "name": "Spiteful Serenity", "spellId": 400314, "icon": "inv_helmet_08", "index": 100}]}, {"id": 90286, "name": "Exhilarating Blows", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90291], "prev": [90292, 90290], "entries": [{"id": 112138, "definitionId": 117143, "maxRanks": 1, "type": "passive", "name": "Exhilarating Blows", "spellId": 383219, "icon": "warrior_talent_icon_igniteweapon", "index": 0}]}, {"id": 92536, "name": "Improved Sweeping Strikes / Collateral Damage", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90291, 90267], "prev": [90292], "entries": [{"id": 114641, "definitionId": 119647, "maxRanks": 1, "type": "passive", "name": "Improved Sweeping Strikes", "spellId": 383155, "icon": "ability_rogue_slicedice", "index": 100}, {"id": 114739, "definitionId": 119746, "maxRanks": 1, "type": "passive", "name": "Collateral Damage", "spellId": 334779, "icon": "ability_warrior_incite", "index": 200}]}, {"id": 90293, "name": "Cleave", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90267], "prev": [90292], "entries": [{"id": 112147, "definitionId": 117152, "maxRanks": 1, "type": "active", "name": "Cleave", "spellId": 845, "icon": "ability_warrior_cleave", "index": 100}]}, {"id": 90283, "name": "Bloodborne", "type": "single", "posX": 10200, "posY": 4490, "reqPoints": 8, "maxRanks": 2, "next": [90437], "prev": [90281, 90284], "entries": [{"id": 112135, "definitionId": 117140, "maxRanks": 2, "type": "passive", "name": "Bloodborne", "spellId": 383287, "icon": "inv_artifact_bloodoftheassassinated", "index": 0}]}, {"id": 90288, "name": "In For The Kill / Test of Might", "type": "choice", "posX": 11710, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90442], "prev": [90289], "entries": [{"id": 112142, "definitionId": 117147, "maxRanks": 1, "type": "passive", "name": "In For The Kill", "spellId": 248621, "icon": "ability_blackhand_marked4death", "index": 100}, {"id": 112141, "definitionId": 117146, "maxRanks": 1, "type": "passive", "name": "Test of Might", "spellId": 385008, "icon": "ability_warrior_strengthofarms", "index": 200}]}, {"id": 90287, "name": "Blunt Instruments / Warbreaker", "type": "choice", "posX": 12300, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90442], "prev": [90289], "entries": [{"id": 112140, "definitionId": 117145, "maxRanks": 1, "type": "passive", "name": "Blunt Instruments", "spellId": 383442, "icon": "inv_mace_01", "index": 0}, {"id": 112139, "definitionId": 117144, "maxRanks": 1, "type": "active", "name": "Warbreaker", "spellId": 262161, "icon": "inv_warbreaker", "index": 100}]}, {"id": 90285, "name": "Dreadnaught / Strength of Arms", "type": "choice", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90437], "prev": [92614, 90284, 90289], "entries": [{"id": 112137, "definitionId": 117142, "maxRanks": 1, "type": "passive", "name": "Dreadnaught", "spellId": 262150, "icon": "inv_sword_05", "index": 200}, {"id": 119096, "definitionId": 123996, "maxRanks": 1, "type": "passive", "name": "Strength of Arms", "spellId": 400803, "icon": "inv_gauntlets_26", "index": 300}]}, {"id": 90291, "name": "Massacre", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90444], "prev": [90286, 90289, 92536], "entries": [{"id": 112145, "definitionId": 117150, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 281001, "icon": "inv_sword_48", "index": 0}]}, {"id": 90267, "name": "Storm of Swords", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90444], "prev": [92536, 90293], "entries": [{"id": 112119, "definitionId": 117124, "maxRanks": 1, "type": "passive", "name": "Storm of Swords", "spellId": 385512, "icon": "ability_skyreach_fourblades", "index": 0}]}, {"id": 90437, "name": "Deft Experience", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90438, 92615], "prev": [90283, 90285], "entries": [{"id": 112309, "definitionId": 117314, "maxRanks": 2, "type": "passive", "name": "Deft Experience", "spellId": 389308, "icon": "inv_misc_book_07", "index": 100}]}, {"id": 90442, "name": "Valor in Victory", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90441, 90438, 90447], "prev": [90288, 90287], "entries": [{"id": 112315, "definitionId": 117320, "maxRanks": 1, "type": "passive", "name": "Valor in Victory", "spellId": 383338, "icon": "spell_holy_summonchampion", "index": 100}]}, {"id": 90444, "name": "Critical Thinking", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90447, 90446], "prev": [90291, 90267], "entries": [{"id": 112317, "definitionId": 117322, "maxRanks": 2, "type": "passive", "name": "Critical Thinking", "spellId": 389306, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 92615, "name": "Battlelord", "type": "single", "posX": 9600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90439], "prev": [90437], "entries": [{"id": 114740, "definitionId": 119747, "maxRanks": 1, "type": "passive", "name": "Battlelord", "spellId": 386630, "icon": "ability_pvp_hardiness", "index": 0}]}, {"id": 90438, "name": "Bloodletting", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90439], "prev": [90437, 90442], "entries": [{"id": 112310, "definitionId": 117315, "maxRanks": 1, "type": "passive", "name": "Bloodletting", "spellId": 383154, "icon": "ability_skeer_bloodletting", "index": 0}]}, {"id": 90441, "name": "Bladestorm / Ravager", "type": "choice", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [92535, 90440, 90266], "prev": [90442], "entries": [{"id": 112314, "definitionId": 117319, "maxRanks": 1, "type": "active", "name": "Bladestorm", "spellId": 227847, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 119138, "definitionId": 124038, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 200}]}, {"id": 90447, "name": "Sharpened Blades", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90445], "prev": [90444, 90442], "entries": [{"id": 112320, "definitionId": 117325, "maxRanks": 1, "type": "passive", "name": "Sharpened Blades", "spellId": 383341, "icon": "inv_sword_27", "index": 200}]}, {"id": 90446, "name": "Juggernaut", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90445], "prev": [90444], "entries": [{"id": 112319, "definitionId": 117324, "maxRanks": 1, "type": "passive", "name": "Juggernaut", "spellId": 383292, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90439, "name": "Fatality", "type": "single", "posX": 10200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90438, 92615], "entries": [{"id": 112311, "definitionId": 117316, "maxRanks": 1, "type": "passive", "name": "Fatality", "spellId": 383703, "icon": "achievement_bg_killingblow_berserker", "index": 300}]}, {"id": 92535, "name": "Dance of Death", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 114639, "definitionId": 119645, "maxRanks": 1, "type": "passive", "name": "Dance of Death", "spellId": 390713, "icon": "ability_butcher_whirl", "index": 100}]}, {"id": 90440, "name": "Unhinged", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 112313, "definitionId": 117318, "maxRanks": 1, "type": "passive", "name": "Unhinged", "spellId": 386628, "icon": "spell_shadow_spectralsight", "index": 0}]}, {"id": 90266, "name": "Merciless Bonegrinder", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 112117, "definitionId": 117122, "maxRanks": 1, "type": "passive", "name": "Merciless Bonegrinder", "spellId": 383317, "icon": "ability_ironmaidens_whirlofblood", "index": 0}]}, {"id": 90445, "name": "Executioner's Precision", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90446, 90447], "entries": [{"id": 112318, "definitionId": 117323, "maxRanks": 1, "type": "passive", "name": "Executioner's Precision", "spellId": 386634, "icon": "inv_sword_48", "index": 0}]}], "heroNodes": [{"id": 94814, "name": "Slayer's Dominance", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 60, "next": [94788, 94810, 94795], "prev": [], "entries": [{"id": 117411, "definitionId": 122423, "maxRanks": 1, "type": "passive", "name": "Slayer's Dominance", "spellId": 444767, "icon": "inv_ability_slayerwarrior_slayersdominance", "index": 100}], "freeNode": true}, {"id": 94788, "name": "Imminent Demise", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94813], "prev": [94814], "entries": [{"id": 117385, "definitionId": 122397, "maxRanks": 1, "type": "passive", "name": "Imminent Demise", "spellId": 444769, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 94810, "name": "Overwhelming Blades", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94786], "prev": [94814], "entries": [{"id": 117407, "definitionId": 122419, "maxRanks": 1, "type": "passive", "name": "Overwhelming Blades", "spellId": 444772, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}]}, {"id": 94795, "name": "Relentless Pursuit / Vicious Agility", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94787], "prev": [94814], "entries": [{"id": 117392, "definitionId": 122404, "maxRanks": 1, "type": "passive", "name": "Relentless Pursuit", "spellId": 444776, "icon": "ability_rogue_sprint", "index": 100}, {"id": 123408, "definitionId": 128246, "maxRanks": 1, "type": "passive", "name": "Vicious Agility", "spellId": 444777, "icon": "ability_paladin_speedoflight", "index": 200}]}, {"id": 94813, "name": "Death Drive", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94784], "prev": [94788], "entries": [{"id": 117410, "definitionId": 122422, "maxRanks": 1, "type": "passive", "name": "Death Drive", "spellId": 444770, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 94786, "name": "Culling Cyclone / Brutal Finish", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94809], "prev": [94810], "entries": [{"id": 117383, "definitionId": 122395, "maxRanks": 1, "type": "passive", "name": "Culling Cyclone", "spellId": 444778, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 123409, "definitionId": 128247, "maxRanks": 1, "type": "passive", "name": "Brutal Finish", "spellId": 446085, "icon": "ability_revendreth_warrior", "index": 200}]}, {"id": 94787, "name": "Fierce Followthrough / Opportunist", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94801], "prev": [94795], "entries": [{"id": 117384, "definitionId": 122396, "maxRanks": 1, "type": "passive", "name": "Fierce Followthrough", "spellId": 444773, "icon": "spell_deathknight_butcher2", "index": 100}, {"id": 123770, "definitionId": 128608, "maxRanks": 1, "type": "passive", "name": "Opportunist", "spellId": 444774, "icon": "ability_warrior_weaponmastery", "index": 200}]}, {"id": 94784, "name": "Show No Mercy", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94813], "entries": [{"id": 117381, "definitionId": 122393, "maxRanks": 1, "type": "passive", "name": "Show No Mercy", "spellId": 444771, "icon": "warrior_talent_icon_lambstotheslaughter", "index": 100}]}, {"id": 94809, "name": "Reap the Storm", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94786], "entries": [{"id": 117406, "definitionId": 122418, "maxRanks": 1, "type": "passive", "name": "Reap the Storm", "spellId": 444775, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 94801, "name": "Slayer's Malice", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94787], "entries": [{"id": 117398, "definitionId": 122410, "maxRanks": 1, "type": "passive", "name": "Slayer's Malice", "spellId": 444779, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 94820, "name": "Unrelenting Onslaught", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 60, "next": [], "prev": [94809, 94784, 94801], "entries": [{"id": 117417, "definitionId": 122429, "maxRanks": 1, "type": "passive", "name": "Unrelenting Onslaught", "spellId": 444780, "icon": "ability_warrior_commandingshout", "index": 100}]}, {"id": 94818, "name": "Demolish", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 62, "next": [94812, 94819, 94789], "prev": [], "entries": [{"id": 117415, "definitionId": 122427, "maxRanks": 1, "type": "active", "name": "Demolish", "spellId": 436358, "icon": "inv_ability_colossuswarrior_demolish", "index": 100}], "freeNode": true}, {"id": 94812, "name": "Martial Expert", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94799], "prev": [94818], "entries": [{"id": 117409, "definitionId": 122421, "maxRanks": 1, "type": "passive", "name": "Martial Expert", "spellId": 429638, "icon": "ability_warrior_stalwartprotector", "index": 100}]}, {"id": 94819, "name": "Colossal Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94811], "prev": [94818], "entries": [{"id": 117416, "definitionId": 122428, "maxRanks": 1, "type": "passive", "name": "Colossal Might", "spellId": 429634, "icon": "ability_warrior_strengthofarms", "index": 100}]}, {"id": 94789, "name": "Boneshaker / Earthquaker", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "requiresNode": 90375, "next": [94815], "prev": [94818], "entries": [{"id": 117386, "definitionId": 122398, "maxRanks": 1, "type": "passive", "name": "Boneshaker", "spellId": 429639, "icon": "ability_deathknight_brittlebones", "index": 100}, {"id": 119858, "definitionId": 124758, "maxRanks": 1, "type": "passive", "name": "Earthquaker", "spellId": 440992, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 94799, "name": "One Against Many / Arterial Bleed", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94796], "prev": [94812], "entries": [{"id": 117396, "definitionId": 122408, "maxRanks": 1, "type": "passive", "name": "One Against Many", "spellId": 429637, "icon": "ability_warrior_incite", "index": 100}, {"id": 119856, "definitionId": 124756, "maxRanks": 1, "type": "passive", "name": "Arterial Bleed", "spellId": 440995, "icon": "ability_warrior_deepcuts", "index": 200}]}, {"id": 94811, "name": "Tide of Battle", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94794], "prev": [94819], "entries": [{"id": 117408, "definitionId": 122420, "maxRanks": 1, "type": "passive", "name": "Tide of Battle", "spellId": 429641, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 94815, "name": "No Stranger to Pain / Veteran Vitality", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94806], "prev": [94789], "entries": [{"id": 117412, "definitionId": 122424, "maxRanks": 1, "type": "passive", "name": "No Stranger to Pain", "spellId": 429644, "icon": "ability_warrior_renewedvigor", "index": 100}, {"id": 119857, "definitionId": 124757, "maxRanks": 1, "type": "passive", "name": "Veteran Vitality", "spellId": 440993, "icon": "ability_hunter_harass", "index": 200}]}, {"id": 94796, "name": "Practiced Strikes", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94799], "entries": [{"id": 117393, "definitionId": 122405, "maxRanks": 1, "type": "passive", "name": "Practiced Strikes", "spellId": 429647, "icon": "spell_warrior_sharpenblade", "index": 100}]}, {"id": 94794, "name": "Precise Might", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94811], "entries": [{"id": 117391, "definitionId": 122403, "maxRanks": 1, "type": "passive", "name": "Precise Might", "spellId": 431548, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94806, "name": "Mountain of Muscle and Scars", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94815], "entries": [{"id": 117403, "definitionId": 122415, "maxRanks": 1, "type": "passive", "name": "Mountain of Muscle and Scars", "spellId": 429642, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 94793, "name": "Dominance of the Colossus", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 62, "next": [], "prev": [94794, 94796, 94806], "entries": [{"id": 117390, "definitionId": 122402, "maxRanks": 1, "type": "passive", "name": "Dominance of the Colossus", "spellId": 429636, "icon": "ability_warrior_titansgrip", "index": 100}]}], "subTreeNodes": [{"id": 99853, "name": "Colossus / Slayer", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123393, "type": "subtree", "name": "Colossus", "traitSubTreeId": 62, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-colossus", "nodes": [94818, 94812, 94819, 94789, 94799, 94811, 94815, 94796, 94794, 94806, 94793]}, {"id": 123390, "type": "subtree", "name": "Slayer", "traitSubTreeId": 60, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-slayer", "nodes": [94814, 94788, 94810, 94795, 94813, 94786, 94787, 94784, 94809, 94801, 94820]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]}, {"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Fury", "specId": 72, "classNodes": [{"id": 90325, "name": "Berserker Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90386], "prev": [], "entries": [{"id": 112182, "definitionId": 117187, "maxRanks": 1, "type": "active", "name": "Berserker Stance", "spellId": 386196, "icon": "ability_racial_avatar", "index": 100}], "freeNode": true}, {"id": 92538, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 114644, "definitionId": 119650, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 100}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90325], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90386, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90325], "entries": [{"id": 112254, "definitionId": 117259, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 346002, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [92538], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [92538], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90350], "prev": [90386, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90350, 90355, 90353], "prev": [90386, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90350, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90346, 90326], "entries": [{"id": 112213, "definitionId": 117218, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 215571, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90349], "prev": [90350, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90349, 90356, 90378], "prev": [90350, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 95955, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90349, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [95955, 90382], "prev": [90331, 90385], "entries": [{"id": 112212, "definitionId": 117217, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 382764, "icon": "spell_shadow_unholystrength", "index": 0}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90258], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95955, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90349, 95956], "entries": [{"id": 118849, "definitionId": 123749, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 390674, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118848, "definitionId": 123748, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90373, 90376], "prev": [90349, 90378], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90376, 90258], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90258], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90351, 95955, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92640], "prev": [90382, 95955], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90373, "name": "Dual Wield Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112240, "definitionId": 117245, "maxRanks": 1, "type": "passive", "name": "Dual Wield Specialization", "spellId": 382900, "icon": "ability_dualwield", "index": 100}]}, {"id": 90376, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92640], "prev": [90382, 90354], "entries": [{"id": 112243, "definitionId": 117248, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 391997, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90258, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90368, 90348, 90354], "entries": [{"id": 112108, "definitionId": 117113, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 384124, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 92640, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90362], "prev": [90376, 90360], "entries": [{"id": 114770, "definitionId": 119777, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 107574, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90258], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "ability_bastion_warrior", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90362, "name": "Berserker's Torment / Titan's Torment", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92640], "entries": [{"id": 112227, "definitionId": 117232, "maxRanks": 1, "type": "passive", "name": "Berserker's Torment", "spellId": 390123, "icon": "ability_warrior_innerrage", "index": 0}, {"id": 112226, "definitionId": 117231, "maxRanks": 1, "type": "passive", "name": "Titan's Torment", "spellId": 390135, "icon": "70_inscription_vantus_rune_odyn", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90392, "name": "Bloodthirst", "type": "single", "posX": 12000, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90396], "prev": [], "entries": [{"id": 112261, "definitionId": 117266, "maxRanks": 1, "type": "active", "name": "Bloodthirst", "spellId": 23881, "icon": "spell_nature_bloodlust", "index": 100}]}, {"id": 90396, "name": "Raging Blow", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90398, 90395, 90430], "prev": [90392], "entries": [{"id": 112265, "definitionId": 117270, "maxRanks": 1, "type": "active", "name": "Raging Blow", "spellId": 85288, "icon": "warrior_wild_strike", "index": 100}]}, {"id": 90398, "name": "Frenzied Enrage / Powerful Enrage", "type": "choice", "posX": 11110, "posY": 2100, "maxRanks": 1, "next": [90397, 90399], "prev": [90396], "entries": [{"id": 112267, "definitionId": 117272, "maxRanks": 1, "type": "passive", "name": "Frenzied Enrage", "spellId": 383848, "icon": "spell_shadow_unholyfrenzy", "index": 100}, {"id": 119112, "definitionId": 124012, "maxRanks": 1, "type": "passive", "name": "Powerful Enrage", "spellId": 440277, "icon": "ability_warrior_strengthofarms", "index": 200}]}, {"id": 90395, "name": "Enraged Regeneration", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90399, 90394, 90393, 90429], "prev": [90396], "entries": [{"id": 112264, "definitionId": 117269, "maxRanks": 1, "type": "active", "name": "Enraged Regeneration", "spellId": 184364, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 90430, "name": "Improved Execute", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90429, 90428], "prev": [90396], "entries": [{"id": 112301, "definitionId": 117306, "maxRanks": 1, "type": "passive", "name": "Improved Execute", "spellId": 316402, "icon": "inv_sword_48", "index": 100}]}, {"id": 90397, "name": "Improved Bloodthirst", "type": "single", "posX": 10200, "posY": 2700, "maxRanks": 1, "next": [90403], "prev": [90398], "entries": [{"id": 112266, "definitionId": 117271, "maxRanks": 1, "type": "passive", "name": "Improved Bloodthirst", "spellId": 383852, "icon": "spell_nature_bloodlust", "index": 100}]}, {"id": 90399, "name": "Fresh Meat", "type": "single", "posX": 11110, "posY": 2700, "maxRanks": 1, "next": [90403], "prev": [90395, 90398], "entries": [{"id": 112268, "definitionId": 117273, "maxRanks": 1, "type": "passive", "name": "Fresh Meat", "spellId": 215568, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 90394, "name": "Warpaint", "type": "single", "posX": 11710, "posY": 2700, "maxRanks": 1, "next": [90408], "prev": [90395], "entries": [{"id": 112263, "definitionId": 117268, "maxRanks": 1, "type": "passive", "name": "Warpaint", "spellId": 208154, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 90393, "name": "Invigorating Fury", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90408], "prev": [90395], "entries": [{"id": 112262, "definitionId": 117267, "maxRanks": 1, "type": "passive", "name": "Invigorating Fury", "spellId": 383468, "icon": "spell_misc_emotionangry", "index": 100}]}, {"id": 90429, "name": "Sudden Death", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90390], "prev": [90430, 90395], "entries": [{"id": 112300, "definitionId": 117305, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 280721, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90428, "name": "Cruelty", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [90390], "prev": [90430], "entries": [{"id": 112299, "definitionId": 117304, "maxRanks": 1, "type": "passive", "name": "Cruelty", "spellId": 392931, "icon": "spell_nature_focusedmind", "index": 100}]}, {"id": 90403, "name": "Focus in Chaos", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90404, 90402, 90400], "prev": [90397, 90399], "entries": [{"id": 112272, "definitionId": 117277, "maxRanks": 1, "type": "passive", "name": "Focus in Chaos", "spellId": 383486, "icon": "ability_hunter_mastermarksman", "index": 100}]}, {"id": 90408, "name": "Rampage", "type": "single", "posX": 12010, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90406, 90407, 90411], "prev": [90393, 90394], "entries": [{"id": 112277, "definitionId": 117282, "maxRanks": 1, "type": "active", "name": "Rampage", "spellId": 184367, "icon": "ability_warrior_rampage", "index": 100}]}, {"id": 90390, "name": "Improved Raging Blow", "type": "single", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90409, 90427], "prev": [90429, 90428], "entries": [{"id": 112259, "definitionId": 117264, "maxRanks": 1, "type": "passive", "name": "Improved Raging Blow", "spellId": 383854, "icon": "warrior_wild_strike", "index": 100}]}, {"id": 90400, "name": "Single-Minded Fury", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90401], "prev": [90403], "entries": [{"id": 112269, "definitionId": 117274, "maxRanks": 1, "type": "passive", "name": "Single-Minded Fury", "spellId": 81099, "icon": "warrior_talent_icon_singlemindedfury", "index": 0}]}, {"id": 90402, "name": "Cold Steel, Hot Blood", "type": "single", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90401, 90405], "prev": [90403], "entries": [{"id": 112271, "definitionId": 117276, "maxRanks": 1, "type": "passive", "name": "Cold Steel, Hot Blood", "spellId": 383959, "icon": "ability_rogue_hungerforblood", "index": 100}]}, {"id": 90404, "name": "Vicious Contempt", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90405], "prev": [90403], "entries": [{"id": 112273, "definitionId": 117278, "maxRanks": 2, "type": "passive", "name": "Vicious Contempt", "spellId": 383885, "icon": "ability_ironmaidens_sorkasprey", "index": 200}]}, {"id": 90406, "name": "Frenzy", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90405, 90412], "prev": [90408], "entries": [{"id": 112275, "definitionId": 117280, "maxRanks": 1, "type": "passive", "name": "Frenzy", "spellId": 335077, "icon": "ability_rogue_bloodyeye", "index": 100}]}, {"id": 90407, "name": "Hack and Slash", "type": "single", "posX": 12010, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90412], "prev": [90408], "entries": [{"id": 112276, "definitionId": 117281, "maxRanks": 1, "type": "passive", "name": "Hack and Slash", "spellId": 383877, "icon": "ability_rogue_rollthebones02", "index": 100}]}, {"id": 90411, "name": "Slaughtering Strikes", "type": "single", "posX": 12610, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90412, 90410], "prev": [90408], "entries": [{"id": 112280, "definitionId": 117285, "maxRanks": 1, "type": "passive", "name": "Slaughtering Strikes", "spellId": 388004, "icon": "inv_axe_2h_orcwarrior_c_01", "index": 100}]}, {"id": 90409, "name": "Ashen Juggernaut", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90410, 90387], "prev": [90390], "entries": [{"id": 112278, "definitionId": 117283, "maxRanks": 1, "type": "passive", "name": "Ashen Juggernaut", "spellId": 392536, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90427, "name": "Improved Whirlwind", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90387, 90391], "prev": [90390], "entries": [{"id": 112298, "definitionId": 117303, "maxRanks": 1, "type": "passive", "name": "Improved Whirlwind", "spellId": 12950, "icon": "ability_whirlwind", "index": 100}]}, {"id": 90401, "name": "Bloodborne", "type": "single", "posX": 10200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90421], "prev": [90402, 90400], "entries": [{"id": 112270, "definitionId": 117275, "maxRanks": 1, "type": "passive", "name": "Bloodborne", "spellId": 385703, "icon": "inv_artifact_bloodoftheassassinated", "index": 0}]}, {"id": 90405, "name": "Bloodcraze", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90421], "prev": [90402, 90404, 90406], "entries": [{"id": 112274, "definitionId": 117279, "maxRanks": 1, "type": "passive", "name": "Bloodcraze", "spellId": 393950, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 90412, "name": "Recklessness", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90416], "prev": [90407, 90406, 90411], "entries": [{"id": 112281, "definitionId": 117286, "maxRanks": 1, "type": "active", "name": "Recklessness", "spellId": 1719, "icon": "warrior_talent_icon_innerrage", "index": 100}]}, {"id": 90410, "name": "Massacre", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90409, 90411], "entries": [{"id": 112279, "definitionId": 117284, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 206315, "icon": "inv_sword_48", "index": 100}]}, {"id": 90387, "name": "Wrath and Fury", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90409, 90427], "entries": [{"id": 112255, "definitionId": 117260, "maxRanks": 1, "type": "passive", "name": "Wrath and Fury", "spellId": 392936, "icon": "inv_sword_2h_artifactarathor_d_03", "index": 100}]}, {"id": 90391, "name": "Meat Cleaver", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90427], "entries": [{"id": 112260, "definitionId": 117265, "maxRanks": 1, "type": "passive", "name": "Meat Cleaver", "spellId": 280392, "icon": "ability_whirlwind", "index": 200}]}, {"id": 90421, "name": "Deft Experience", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90388, 90424], "prev": [90401, 90405], "entries": [{"id": 112292, "definitionId": 117297, "maxRanks": 2, "type": "passive", "name": "Deft Experience", "spellId": 383295, "icon": "inv_misc_book_07", "index": 100}]}, {"id": 90416, "name": "Swift Strikes", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90388, 90415], "prev": [90412], "entries": [{"id": 112286, "definitionId": 117291, "maxRanks": 2, "type": "passive", "name": "Swift Strikes", "spellId": 383459, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90425, "name": "Critical Thinking", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90415, 90418], "prev": [90410, 90387, 90391], "entries": [{"id": 112296, "definitionId": 117301, "maxRanks": 2, "type": "passive", "name": "Critical Thinking", "spellId": 383297, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90424, "name": "Onslaught", "type": "single", "posX": 9600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90423], "prev": [90421], "entries": [{"id": 112295, "definitionId": 117300, "maxRanks": 1, "type": "active", "name": "Onslaught", "spellId": 315720, "icon": "ability_warrior_trauma", "index": 100}]}, {"id": 90388, "name": "Ravager / Bladestorm", "type": "choice", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90389], "prev": [90416, 90421], "entries": [{"id": 112256, "definitionId": 117261, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 0}, {"id": 119139, "definitionId": 124039, "maxRanks": 1, "type": "active", "name": "Bladestorm", "spellId": 227847, "icon": "ability_warrior_bladestorm", "index": 100}]}, {"id": 90415, "name": "Anger Management / Reckless Abandon", "type": "choice", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90414, 90413], "prev": [90425, 90416], "entries": [{"id": 112285, "definitionId": 117290, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 100}, {"id": 112284, "definitionId": 117289, "maxRanks": 1, "type": "passive", "name": "Reckless Abandon", "spellId": 396749, "icon": "spell_fire_incinerate", "index": 200}]}, {"id": 90418, "name": "Odyn's Fury", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90417], "prev": [90425], "entries": [{"id": 112289, "definitionId": 117294, "maxRanks": 1, "type": "active", "name": "Odyn's Fury", "spellId": 385059, "icon": "inv_sword_1h_artifactvigfus_d_01", "index": 100}]}, {"id": 90423, "name": "Tenderize", "type": "single", "posX": 9600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90424], "entries": [{"id": 112294, "definitionId": 117299, "maxRanks": 1, "type": "passive", "name": "Tenderize", "spellId": 388933, "icon": "inv_mace_1h_blacksmithing_b_01_black", "index": 100}]}, {"id": 90389, "name": "Storm of Steel / Unhinged", "type": "choice", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90388], "entries": [{"id": 112258, "definitionId": 117263, "maxRanks": 1, "type": "passive", "name": "Storm of Steel", "spellId": 382953, "icon": "ability_creature_cursed_04", "index": 0}, {"id": 112257, "definitionId": 117262, "maxRanks": 1, "type": "passive", "name": "Unhinged", "spellId": 386628, "icon": "spell_shadow_spectralsight", "index": 100}]}, {"id": 90414, "name": "Unbridled Ferocity", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90415], "entries": [{"id": 112283, "definitionId": 117288, "maxRanks": 1, "type": "passive", "name": "Unbridled Ferocity", "spellId": 389603, "icon": "ability_warrior_endlessrage", "index": 100}]}, {"id": 90413, "name": "Depths of Insanity", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90415], "entries": [{"id": 112282, "definitionId": 117287, "maxRanks": 1, "type": "passive", "name": "Depths of Insanity", "spellId": 383922, "icon": "racial_troll_berserk", "index": 100}]}, {"id": 90417, "name": "Dancing Blades / Titanic Rage", "type": "choice", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90418], "entries": [{"id": 112288, "definitionId": 117293, "maxRanks": 1, "type": "passive", "name": "Dancing Blades", "spellId": 391683, "icon": "inv_sword_1h_artifactvigfus_d_01dual", "index": 100}, {"id": 112287, "definitionId": 117292, "maxRanks": 1, "type": "passive", "name": "Titanic Rage", "spellId": 394329, "icon": "inv_sword_1h_artifactvigfus_d_02", "index": 200}]}], "heroNodes": [{"id": 94803, "name": "Lightning Strikes", "type": "single", "posX": 15000, "posY": 300, "maxRanks": 1, "entryNode": true, "subTreeId": 61, "next": [94808, 94816, 94800], "prev": [], "entries": [{"id": 117400, "definitionId": 122412, "maxRanks": 1, "type": "passive", "name": "Lightning Strikes", "spellId": 434969, "icon": "ability_vehicle_electrocharge", "index": 100}], "freeNode": true}, {"id": 94816, "name": "Crashing Thunder", "type": "single", "posX": 14390, "posY": 900, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94785], "prev": [94803], "entries": [{"id": 117413, "definitionId": 122425, "maxRanks": 1, "type": "passive", "name": "Crashing Thunder", "spellId": 436707, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 94800, "name": "Ground Current", "type": "single", "posX": 15000, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94817], "prev": [94803], "entries": [{"id": 117397, "definitionId": 122409, "maxRanks": 1, "type": "passive", "name": "Ground Current", "spellId": 436148, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 94808, "name": "Strength of the Mountain", "type": "single", "posX": 15600, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94798], "prev": [94803], "entries": [{"id": 117405, "definitionId": 122417, "maxRanks": 1, "type": "passive", "name": "Strength of the Mountain", "spellId": 437068, "icon": "ability_warrior_titansgrip", "index": 100}]}, {"id": 94814, "name": "Slayer's Dominance", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 60, "next": [94788, 94810, 94795], "prev": [], "entries": [{"id": 117411, "definitionId": 122423, "maxRanks": 1, "type": "passive", "name": "Slayer's Dominance", "spellId": 444767, "icon": "inv_ability_slayerwarrior_slayersdominance", "index": 100}], "freeNode": true}, {"id": 94785, "name": "Thunder Blast", "type": "single", "posX": 14410, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94797], "prev": [94816], "entries": [{"id": 117382, "definitionId": 122394, "maxRanks": 1, "type": "passive", "name": "Thunder Blast", "spellId": 435607, "icon": "warrior_talent_icon_bloodandthunder", "index": 100}]}, {"id": 94817, "name": "Storm Bolts / Storm Shield", "type": "choice", "posX": 15010, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94792], "prev": [94800], "entries": [{"id": 117414, "definitionId": 122426, "maxRanks": 1, "type": "passive", "name": "Storm Bolts", "spellId": 436162, "icon": "warrior_talent_icon_stormbolt", "index": 100}, {"id": 118835, "definitionId": 123735, "maxRanks": 1, "type": "passive", "name": "Storm Shield", "spellId": 438597, "icon": "spell_winston_bubble", "index": 200}]}, {"id": 94798, "name": "Keep Your Feet on the Ground / Steadfast as the Peaks", "type": "choice", "posX": 15600, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94807], "prev": [94808], "entries": [{"id": 117395, "definitionId": 122407, "maxRanks": 1, "type": "passive", "name": "Keep Your Feet on the Ground", "spellId": 438590, "icon": "ability_thunderking_overcharge", "index": 100}, {"id": 118836, "definitionId": 123736, "maxRanks": 1, "type": "passive", "name": "Steadfast as the Peaks", "spellId": 434970, "icon": "ability_warrior_devastate", "index": 200}]}, {"id": 94788, "name": "Imminent Demise", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94813], "prev": [94814], "entries": [{"id": 117385, "definitionId": 122397, "maxRanks": 1, "type": "passive", "name": "Imminent Demise", "spellId": 444769, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 94810, "name": "Overwhelming Blades", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94786], "prev": [94814], "entries": [{"id": 117407, "definitionId": 122419, "maxRanks": 1, "type": "passive", "name": "Overwhelming Blades", "spellId": 444772, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}]}, {"id": 94795, "name": "Relentless Pursuit / Vicious Agility", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94787], "prev": [94814], "entries": [{"id": 117392, "definitionId": 122404, "maxRanks": 1, "type": "passive", "name": "Relentless Pursuit", "spellId": 444776, "icon": "ability_rogue_sprint", "index": 100}, {"id": 123408, "definitionId": 128246, "maxRanks": 1, "type": "passive", "name": "Vicious Agility", "spellId": 444777, "icon": "ability_paladin_speedoflight", "index": 200}]}, {"id": 94792, "name": "Gathering Clouds / Thorim's Might", "type": "choice", "posX": 15000, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94817], "entries": [{"id": 117389, "definitionId": 122401, "maxRanks": 1, "type": "passive", "name": "Gathering Clouds", "spellId": 436201, "icon": "spell_nature_stormreach", "index": 100}, {"id": 118834, "definitionId": 123734, "maxRanks": 1, "type": "passive", "name": "Thorim's Might", "spellId": 436152, "icon": "inv_ability_mountainthanewarrior_thorimsmight", "index": 200}]}, {"id": 94807, "name": "Burst of Power", "type": "single", "posX": 15590, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94798], "entries": [{"id": 117404, "definitionId": 122416, "maxRanks": 1, "type": "passive", "name": "Burst of Power", "spellId": 437118, "icon": "shaman_pvp_thundercharge", "index": 100}]}, {"id": 94797, "name": "Flashing Skies / Snap Induction", "type": "choice", "posX": 14410, "posY": 2110, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94805], "prev": [94785], "entries": [{"id": 117394, "definitionId": 122406, "maxRanks": 1, "type": "passive", "name": "Flashing Skies", "spellId": 437079, "icon": "spell_lightning_lightningbolt01", "index": 100}, {"id": 118833, "definitionId": 123733, "maxRanks": 1, "type": "passive", "name": "Snap Induction", "spellId": 456270, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94813, "name": "Death Drive", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94784], "prev": [94788], "entries": [{"id": 117410, "definitionId": 122422, "maxRanks": 1, "type": "passive", "name": "Death Drive", "spellId": 444770, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 94786, "name": "Culling Cyclone / Brutal Finish", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94809], "prev": [94810], "entries": [{"id": 117383, "definitionId": 122395, "maxRanks": 1, "type": "passive", "name": "Culling Cyclone", "spellId": 444778, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 123409, "definitionId": 128247, "maxRanks": 1, "type": "passive", "name": "Brutal Finish", "spellId": 446085, "icon": "ability_revendreth_warrior", "index": 200}]}, {"id": 94787, "name": "Fierce Followthrough / Opportunist", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94801], "prev": [94795], "entries": [{"id": 117384, "definitionId": 122396, "maxRanks": 1, "type": "passive", "name": "Fierce Followthrough", "spellId": 444773, "icon": "spell_deathknight_butcher2", "index": 100}, {"id": 123770, "definitionId": 128608, "maxRanks": 1, "type": "passive", "name": "Opportunist", "spellId": 444774, "icon": "ability_warrior_weaponmastery", "index": 200}]}, {"id": 94805, "name": "Avatar of the Storm", "type": "single", "posX": 15010, "posY": 2710, "maxRanks": 1, "subTreeId": 61, "requiresNode": 92640, "next": [], "prev": [94797, 94792, 94807], "entries": [{"id": 117402, "definitionId": 122414, "maxRanks": 1, "type": "passive", "name": "Avatar of the Storm", "spellId": 437134, "icon": "achievement_dungeon_blackrockcaverns_ascendantlordobsidius", "index": 100}]}, {"id": 94784, "name": "Show No Mercy", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94813], "entries": [{"id": 117381, "definitionId": 122393, "maxRanks": 1, "type": "passive", "name": "Show No Mercy", "spellId": 444771, "icon": "warrior_talent_icon_lambstotheslaughter", "index": 100}]}, {"id": 94809, "name": "Reap the Storm", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94786], "entries": [{"id": 117406, "definitionId": 122418, "maxRanks": 1, "type": "passive", "name": "Reap the Storm", "spellId": 444775, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 94801, "name": "Slayer's Malice", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94787], "entries": [{"id": 117398, "definitionId": 122410, "maxRanks": 1, "type": "passive", "name": "Slayer's Malice", "spellId": 444779, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 94820, "name": "Unrelenting Onslaught", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 60, "next": [], "prev": [94809, 94784, 94801], "entries": [{"id": 117417, "definitionId": 122429, "maxRanks": 1, "type": "passive", "name": "Unrelenting Onslaught", "spellId": 444780, "icon": "ability_warrior_commandingshout", "index": 100}]}], "subTreeNodes": [{"id": 99852, "name": "Mountain Thane / Slayer", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123392, "type": "subtree", "name": "Mountain Thane", "traitSubTreeId": 61, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-mountainthane", "nodes": [94803, 94816, 94800, 94808, 94785, 94817, 94798, 94792, 94807, 94797, 94805]}, {"id": 123389, "type": "subtree", "name": "Slayer", "traitSubTreeId": 60, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-slayer", "nodes": [94814, 94788, 94810, 94795, 94813, 94786, 94787, 94784, 94809, 94801, 94820]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]}, {"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Protection", "specId": 73, "classNodes": [{"id": 90261, "name": "Battle Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90345], "prev": [], "entries": [{"id": 112112, "definitionId": 117117, "maxRanks": 1, "type": "active", "name": "Battle Stance", "spellId": 386164, "icon": "ability_warrior_offensivestance", "index": 200}], "freeNode": true}, {"id": 90330, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 112187, "definitionId": 117192, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 200}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90261], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90345, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90261], "entries": [{"id": 112207, "definitionId": 117212, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 316733, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [90330], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [90330], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90370], "prev": [90345, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90370, 90355, 90353], "prev": [90345, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90370, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90326, 90346], "entries": [{"id": 112237, "definitionId": 117242, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 392790, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90369], "prev": [90370, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90369, 90356, 90378], "prev": [90370, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 95954, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90369, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [95954, 90382], "prev": [90331, 90385], "entries": [{"id": 112236, "definitionId": 117241, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 390642, "icon": "spell_shadow_unholystrength", "index": 100}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90259], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95954, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90369, 95956], "entries": [{"id": 118847, "definitionId": 123747, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 390675, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118846, "definitionId": 123746, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90324, 90339], "prev": [90378, 90369], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90339, 90259], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90259], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90351, 95954, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92639], "prev": [90382, 95954], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90324, "name": "One-Handed Weapon Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112181, "definitionId": 117186, "maxRanks": 1, "type": "passive", "name": "One-Handed Weapon Specialization", "spellId": 382895, "icon": "inv_sword_20", "index": 200}]}, {"id": 90339, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92639], "prev": [90382, 90354], "entries": [{"id": 112200, "definitionId": 117205, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 382940, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90259, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90348, 90368, 90354], "entries": [{"id": 112109, "definitionId": 117114, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 394855, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 92639, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90364], "prev": [90360, 90339], "entries": [{"id": 114769, "definitionId": 119776, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 401150, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90259], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "ability_bastion_warrior", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90364, "name": "Immovable Object / Unstoppable Force", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92639], "entries": [{"id": 112231, "definitionId": 117236, "maxRanks": 1, "type": "passive", "name": "Immovable Object", "spellId": 394307, "icon": "spell_frost_chillingarmor", "index": 0}, {"id": 112230, "definitionId": 117235, "maxRanks": 1, "type": "passive", "name": "Unstoppable Force", "spellId": 275336, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90295, "name": "Ignore Pain", "type": "single", "posX": 12000, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90298], "prev": [], "entries": [{"id": 112149, "definitionId": 117154, "maxRanks": 1, "type": "active", "name": "Ignore Pain", "spellId": 190456, "icon": "ability_warrior_renewedvigor", "index": 100}]}, {"id": 90298, "name": "Revenge", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90305, 90299, 90297], "prev": [90295], "entries": [{"id": 112152, "definitionId": 117157, "maxRanks": 1, "type": "active", "name": "Revenge", "spellId": 6572, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 90305, "name": "Demoralizing Shout", "type": "single", "posX": 10200, "posY": 2100, "maxRanks": 1, "next": [90304, 90303, 90306], "prev": [90298], "entries": [{"id": 112159, "definitionId": 117164, "maxRanks": 1, "type": "active", "name": "Demoralizing Shout", "spellId": 1160, "icon": "ability_warrior_warcry", "index": 100}]}, {"id": 90299, "name": "Devastator", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90303], "prev": [90298], "entries": [{"id": 112153, "definitionId": 117158, "maxRanks": 1, "type": "active", "name": "Devastator", "spellId": 236279, "icon": "inv_sword_11", "index": 0}]}, {"id": 90297, "name": "Last Stand", "type": "single", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [90303, 90296, 90452], "prev": [90298], "entries": [{"id": 112151, "definitionId": 117156, "maxRanks": 1, "type": "active", "name": "Last Stand", "spellId": 12975, "icon": "spell_holy_ashestoashes", "index": 100}]}, {"id": 90306, "name": "Fight Through the Flames", "type": "single", "posX": 9600, "posY": 2700, "maxRanks": 1, "next": [90309], "prev": [90305], "entries": [{"id": 112160, "definitionId": 117165, "maxRanks": 1, "type": "passive", "name": "Fight Through the Flames", "spellId": 452494, "icon": "ability_racial_foregedinflames", "index": 100}]}, {"id": 90304, "name": "Best Served Cold", "type": "single", "posX": 10800, "posY": 2700, "maxRanks": 1, "next": [90309], "prev": [90305], "entries": [{"id": 112158, "definitionId": 117163, "maxRanks": 1, "type": "passive", "name": "Best Served Cold", "spellId": 202560, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 90303, "name": "Strategist", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [90301, 90302, 90300], "prev": [90297, 90299, 90305], "entries": [{"id": 112157, "definitionId": 117162, "maxRanks": 1, "type": "passive", "name": "Strategist", "spellId": 384041, "icon": "inv_shield_05", "index": 100}]}, {"id": 90296, "name": "Brace For Impact", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [90451], "prev": [90297], "entries": [{"id": 112150, "definitionId": 117155, "maxRanks": 1, "type": "passive", "name": "Brace For Impact", "spellId": 386030, "icon": "ability_warrior_shieldguard", "index": 100}]}, {"id": 90452, "name": "Unnerving Focus", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [90451], "prev": [90297], "entries": [{"id": 112327, "definitionId": 117332, "maxRanks": 1, "type": "passive", "name": "Unnerving Focus", "spellId": 384042, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90309, "name": "Challenging Shout", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90308, 90312, 90320, 90307], "prev": [90306, 90304], "entries": [{"id": 112163, "definitionId": 117168, "maxRanks": 1, "type": "active", "name": "Challenging Shout", "spellId": 1161, "icon": "ability_bullrush", "index": 100}]}, {"id": 90301, "name": "Instigate", "type": "single", "posX": 11400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112155, "definitionId": 117160, "maxRanks": 1, "type": "passive", "name": "Instigate", "spellId": 394311, "icon": "ability_rogue_dismantle", "index": 0}]}, {"id": 90302, "name": "Rend", "type": "single", "posX": 12000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112156, "definitionId": 117161, "maxRanks": 1, "type": "active", "name": "Rend", "spellId": 394062, "icon": "ability_gouge", "index": 0}]}, {"id": 90300, "name": "Bloodsurge", "type": "single", "posX": 12600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112154, "definitionId": 117159, "maxRanks": 1, "type": "passive", "name": "Bloodsurge", "spellId": 384361, "icon": "ability_warrior_bloodsurge", "index": 0}]}, {"id": 90451, "name": "Fueled by Violence / Brutal Vitality", "type": "choice", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312, 90448, 90264, 90450], "prev": [90452, 90296], "entries": [{"id": 112326, "definitionId": 117331, "maxRanks": 1, "type": "passive", "name": "Fueled by Violence", "spellId": 383103, "icon": "ability_demonhunter_bloodlet", "index": 100}, {"id": 112325, "definitionId": 117330, "maxRanks": 1, "type": "passive", "name": "Brutal Vitality", "spellId": 384036, "icon": "ability_warrior_renewedvigor", "index": 200}]}, {"id": 90307, "name": "Disrupting Shout", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112161, "definitionId": 117166, "maxRanks": 1, "type": "active", "name": "Disrupting Shout", "spellId": 386071, "icon": "ability_bullrush", "index": 0}]}, {"id": 90320, "name": "Show of Force / Sudden Death", "type": "choice", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112177, "definitionId": 117182, "maxRanks": 1, "type": "passive", "name": "Show of Force", "spellId": 385843, "icon": "ability_rogue_reinforcedleather", "index": 0}, {"id": 112111, "definitionId": 117116, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 29725, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90308, "name": "Thunderlord", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112162, "definitionId": 117167, "maxRanks": 1, "type": "passive", "name": "Thunderlord", "spellId": 385840, "icon": "ability_vehicle_electrocharge", "index": 0}]}, {"id": 90312, "name": "Shield Wall", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90310, 90313, 90311], "prev": [90300, 90302, 90301, 90451, 90309], "entries": [{"id": 112167, "definitionId": 117172, "maxRanks": 1, "type": "active", "name": "Shield Wall", "spellId": 871, "icon": "ability_warrior_shieldwall", "index": 100}]}, {"id": 90264, "name": "Bolster", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90449], "prev": [90451], "entries": [{"id": 112115, "definitionId": 117120, "maxRanks": 1, "type": "passive", "name": "Bolster", "spellId": 280001, "icon": "shield_draenorcrafted_d_02_c_alliance", "index": 200}]}, {"id": 90450, "name": "Tough as Nails / Spell Block", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90449], "prev": [90451], "entries": [{"id": 112324, "definitionId": 117329, "maxRanks": 1, "type": "passive", "name": "Tough as Nails", "spellId": 385888, "icon": "inv_titanium_shield_spike", "index": 0}, {"id": 112110, "definitionId": 117115, "maxRanks": 1, "type": "active", "name": "Spell Block", "spellId": 392966, "icon": "ability_warrior_shieldbreak", "index": 100}]}, {"id": 90448, "name": "Bloodborne", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90449], "prev": [90451], "entries": [{"id": 112321, "definitionId": 117326, "maxRanks": 2, "type": "passive", "name": "Bloodborne", "spellId": 385704, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90319, "name": "Heavy Repercussions / Into the Fray", "type": "choice", "posX": 10200, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90318], "prev": [90307, 90308, 90320], "entries": [{"id": 112176, "definitionId": 117181, "maxRanks": 1, "type": "passive", "name": "Heavy Repercussions", "spellId": 203177, "icon": "inv_shield_32", "index": 0}, {"id": 112175, "definitionId": 117180, "maxRanks": 1, "type": "passive", "name": "Into the Fray", "spellId": 202603, "icon": "ability_warrior_bloodfrenzy", "index": 100}]}, {"id": 90310, "name": "Defender's Aegis / Impenetrable Wall", "type": "choice", "posX": 12600, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112165, "definitionId": 117170, "maxRanks": 1, "type": "passive", "name": "Defender's Aegis", "spellId": 397103, "icon": "ability_warrior_stalwartprotector", "index": 0}, {"id": 112164, "definitionId": 117169, "maxRanks": 1, "type": "passive", "name": "Impenetrable Wall", "spellId": 384072, "icon": "ability_warrior_shieldguard", "index": 100}]}, {"id": 90449, "name": "Punish / Juggernaut", "type": "choice", "posX": 13800, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90433], "prev": [90450, 90264, 90448], "entries": [{"id": 112323, "definitionId": 117328, "maxRanks": 1, "type": "passive", "name": "Punish", "spellId": 275334, "icon": "ability_deathknight_sanguinfortitude", "index": 0}, {"id": 112322, "definitionId": 117327, "maxRanks": 1, "type": "passive", "name": "Juggernaut", "spellId": 393967, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90313, "name": "Enduring Defenses / Massacre", "type": "choice", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112169, "definitionId": 117174, "maxRanks": 1, "type": "passive", "name": "Enduring Defenses", "spellId": 386027, "icon": "ability_defend", "index": 100}, {"id": 112168, "definitionId": 117173, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 281001, "icon": "inv_sword_48", "index": 200}]}, {"id": 90311, "name": "Anger Management", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112166, "definitionId": 117171, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 0}]}, {"id": 90318, "name": "Focused Vigor", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90317], "prev": [90319], "entries": [{"id": 112174, "definitionId": 117179, "maxRanks": 1, "type": "passive", "name": "Focused Vigor", "spellId": 384067, "icon": "spell_nature_strength", "index": 100}]}, {"id": 90315, "name": "Shield Specialization", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90317, 90314, 90434, 90265, 90432], "prev": [90310, 90313, 90311], "entries": [{"id": 112171, "definitionId": 117176, "maxRanks": 2, "type": "passive", "name": "Shield Specialization", "spellId": 386011, "icon": "inv_shield_76", "index": 0}]}, {"id": 90433, "name": "Enduring Alacrity", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90432], "prev": [90449], "entries": [{"id": 112305, "definitionId": 117310, "maxRanks": 1, "type": "passive", "name": "Enduring Alacrity", "spellId": 384063, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90317, "name": "Shield Charge", "type": "single", "posX": 10200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90316, 90262], "prev": [90315, 90318], "entries": [{"id": 112173, "definitionId": 117178, "maxRanks": 1, "type": "active", "name": "Shield Charge", "spellId": 385952, "icon": "ability_warrior_shieldcharge", "index": 100}]}, {"id": 90314, "name": "Booming Voice", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112170, "definitionId": 117175, "maxRanks": 1, "type": "passive", "name": "Booming Voice", "spellId": 202743, "icon": "ability_warrior_commandingshout", "index": 100}]}, {"id": 90434, "name": "Indomitable", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112306, "definitionId": 117311, "maxRanks": 1, "type": "passive", "name": "Indomitable", "spellId": 202095, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 90265, "name": "Violent Outburst", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112116, "definitionId": 117121, "maxRanks": 1, "type": "passive", "name": "Violent Outburst", "spellId": 386477, "icon": "ability_warrior_furiousresolve", "index": 100}]}, {"id": 90432, "name": "Ravager", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90260], "prev": [90315, 90433], "entries": [{"id": 112304, "definitionId": 117309, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 200}]}, {"id": 90262, "name": "Battering Ram", "type": "single", "posX": 9900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90317], "entries": [{"id": 112113, "definitionId": 117118, "maxRanks": 1, "type": "passive", "name": "Battering Ram", "spellId": 394312, "icon": "ability_warrior_bullrush", "index": 100}]}, {"id": 90316, "name": "Champion's Bulwark", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90317], "entries": [{"id": 112172, "definitionId": 117177, "maxRanks": 1, "type": "passive", "name": "Champion's Bulwark", "spellId": 386328, "icon": "ability_warrior_shieldmastery", "index": 100}]}, {"id": 90435, "name": "Battle-Scarred Veteran", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90265, 90434, 90314], "entries": [{"id": 112307, "definitionId": 117312, "maxRanks": 1, "type": "passive", "name": "Battle-Scarred Veteran", "spellId": 386394, "icon": "ability_warrior_endlessrage", "index": 100}]}, {"id": 90260, "name": "Dance of Death / Storm of Steel", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90432], "entries": [{"id": 112302, "definitionId": 117307, "maxRanks": 1, "type": "passive", "name": "Dance of Death", "spellId": 390713, "icon": "ability_butcher_whirl", "index": 100}, {"id": 126306, "definitionId": 131132, "maxRanks": 1, "type": "passive", "name": "Storm of Steel", "spellId": 382953, "icon": "ability_creature_cursed_04", "index": 200}]}], "heroNodes": [{"id": 94803, "name": "Lightning Strikes", "type": "single", "posX": 15000, "posY": 300, "maxRanks": 1, "entryNode": true, "subTreeId": 61, "next": [94808, 94816, 94800], "prev": [], "entries": [{"id": 117400, "definitionId": 122412, "maxRanks": 1, "type": "passive", "name": "Lightning Strikes", "spellId": 434969, "icon": "ability_vehicle_electrocharge", "index": 100}], "freeNode": true}, {"id": 94816, "name": "Crashing Thunder", "type": "single", "posX": 14390, "posY": 900, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94785], "prev": [94803], "entries": [{"id": 117413, "definitionId": 122425, "maxRanks": 1, "type": "passive", "name": "Crashing Thunder", "spellId": 436707, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 94800, "name": "Ground Current", "type": "single", "posX": 15000, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94817], "prev": [94803], "entries": [{"id": 117397, "definitionId": 122409, "maxRanks": 1, "type": "passive", "name": "Ground Current", "spellId": 436148, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 94808, "name": "Strength of the Mountain", "type": "single", "posX": 15600, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94798], "prev": [94803], "entries": [{"id": 117405, "definitionId": 122417, "maxRanks": 1, "type": "passive", "name": "Strength of the Mountain", "spellId": 437068, "icon": "ability_warrior_titansgrip", "index": 100}]}, {"id": 94785, "name": "Thunder Blast", "type": "single", "posX": 14410, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94797], "prev": [94816], "entries": [{"id": 117382, "definitionId": 122394, "maxRanks": 1, "type": "passive", "name": "Thunder Blast", "spellId": 435607, "icon": "warrior_talent_icon_bloodandthunder", "index": 100}]}, {"id": 94817, "name": "Storm Bolts / Storm Shield", "type": "choice", "posX": 15010, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94792], "prev": [94800], "entries": [{"id": 117414, "definitionId": 122426, "maxRanks": 1, "type": "passive", "name": "Storm Bolts", "spellId": 436162, "icon": "warrior_talent_icon_stormbolt", "index": 100}, {"id": 118835, "definitionId": 123735, "maxRanks": 1, "type": "passive", "name": "Storm Shield", "spellId": 438597, "icon": "spell_winston_bubble", "index": 200}]}, {"id": 94798, "name": "Keep Your Feet on the Ground / Steadfast as the Peaks", "type": "choice", "posX": 15600, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94807], "prev": [94808], "entries": [{"id": 117395, "definitionId": 122407, "maxRanks": 1, "type": "passive", "name": "Keep Your Feet on the Ground", "spellId": 438590, "icon": "ability_thunderking_overcharge", "index": 100}, {"id": 118836, "definitionId": 123736, "maxRanks": 1, "type": "passive", "name": "Steadfast as the Peaks", "spellId": 434970, "icon": "ability_warrior_devastate", "index": 200}]}, {"id": 94792, "name": "Gathering Clouds / Thorim's Might", "type": "choice", "posX": 15000, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94817], "entries": [{"id": 117389, "definitionId": 122401, "maxRanks": 1, "type": "passive", "name": "Gathering Clouds", "spellId": 436201, "icon": "spell_nature_stormreach", "index": 100}, {"id": 118834, "definitionId": 123734, "maxRanks": 1, "type": "passive", "name": "Thorim's Might", "spellId": 436152, "icon": "inv_ability_mountainthanewarrior_thorimsmight", "index": 200}]}, {"id": 94807, "name": "Burst of Power", "type": "single", "posX": 15590, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94798], "entries": [{"id": 117404, "definitionId": 122416, "maxRanks": 1, "type": "passive", "name": "Burst of Power", "spellId": 437118, "icon": "shaman_pvp_thundercharge", "index": 100}]}, {"id": 94797, "name": "Flashing Skies / Snap Induction", "type": "choice", "posX": 14410, "posY": 2110, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94805], "prev": [94785], "entries": [{"id": 117394, "definitionId": 122406, "maxRanks": 1, "type": "passive", "name": "Flashing Skies", "spellId": 437079, "icon": "spell_lightning_lightningbolt01", "index": 100}, {"id": 118833, "definitionId": 123733, "maxRanks": 1, "type": "passive", "name": "Snap Induction", "spellId": 456270, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94805, "name": "Avatar of the Storm", "type": "single", "posX": 15010, "posY": 2710, "maxRanks": 1, "subTreeId": 61, "requiresNode": 92640, "next": [], "prev": [94797, 94792, 94807], "entries": [{"id": 117402, "definitionId": 122414, "maxRanks": 1, "type": "passive", "name": "Avatar of the Storm", "spellId": 437134, "icon": "achievement_dungeon_blackrockcaverns_ascendantlordobsidius", "index": 100}]}, {"id": 94818, "name": "Demolish", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 62, "next": [94812, 94819, 94789], "prev": [], "entries": [{"id": 117415, "definitionId": 122427, "maxRanks": 1, "type": "active", "name": "Demolish", "spellId": 436358, "icon": "inv_ability_colossuswarrior_demolish", "index": 100}], "freeNode": true}, {"id": 94812, "name": "Martial Expert", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94799], "prev": [94818], "entries": [{"id": 117409, "definitionId": 122421, "maxRanks": 1, "type": "passive", "name": "Martial Expert", "spellId": 429638, "icon": "ability_warrior_stalwartprotector", "index": 100}]}, {"id": 94819, "name": "Colossal Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94811], "prev": [94818], "entries": [{"id": 117416, "definitionId": 122428, "maxRanks": 1, "type": "passive", "name": "Colossal Might", "spellId": 429634, "icon": "ability_warrior_strengthofarms", "index": 100}]}, {"id": 94789, "name": "Boneshaker / Earthquaker", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "requiresNode": 90375, "next": [94815], "prev": [94818], "entries": [{"id": 117386, "definitionId": 122398, "maxRanks": 1, "type": "passive", "name": "Boneshaker", "spellId": 429639, "icon": "ability_deathknight_brittlebones", "index": 100}, {"id": 119858, "definitionId": 124758, "maxRanks": 1, "type": "passive", "name": "Earthquaker", "spellId": 440992, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 94799, "name": "One Against Many / Arterial Bleed", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94796], "prev": [94812], "entries": [{"id": 117396, "definitionId": 122408, "maxRanks": 1, "type": "passive", "name": "One Against Many", "spellId": 429637, "icon": "ability_warrior_incite", "index": 100}, {"id": 119856, "definitionId": 124756, "maxRanks": 1, "type": "passive", "name": "Arterial Bleed", "spellId": 440995, "icon": "ability_warrior_deepcuts", "index": 200}]}, {"id": 94811, "name": "Tide of Battle", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94794], "prev": [94819], "entries": [{"id": 117408, "definitionId": 122420, "maxRanks": 1, "type": "passive", "name": "Tide of Battle", "spellId": 429641, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 94815, "name": "No Stranger to Pain / Veteran Vitality", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94806], "prev": [94789], "entries": [{"id": 117412, "definitionId": 122424, "maxRanks": 1, "type": "passive", "name": "No Stranger to Pain", "spellId": 429644, "icon": "ability_warrior_renewedvigor", "index": 100}, {"id": 119857, "definitionId": 124757, "maxRanks": 1, "type": "passive", "name": "Veteran Vitality", "spellId": 440993, "icon": "ability_hunter_harass", "index": 200}]}, {"id": 94796, "name": "Practiced Strikes", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94799], "entries": [{"id": 117393, "definitionId": 122405, "maxRanks": 1, "type": "passive", "name": "Practiced Strikes", "spellId": 429647, "icon": "spell_warrior_sharpenblade", "index": 100}]}, {"id": 94794, "name": "Precise Might", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94811], "entries": [{"id": 117391, "definitionId": 122403, "maxRanks": 1, "type": "passive", "name": "Precise Might", "spellId": 431548, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94806, "name": "Mountain of Muscle and Scars", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94815], "entries": [{"id": 117403, "definitionId": 122415, "maxRanks": 1, "type": "passive", "name": "Mountain of Muscle and Scars", "spellId": 429642, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 94793, "name": "Dominance of the Colossus", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 62, "next": [], "prev": [94794, 94796, 94806], "entries": [{"id": 117390, "definitionId": 122402, "maxRanks": 1, "type": "passive", "name": "Dominance of the Colossus", "spellId": 429636, "icon": "ability_warrior_titansgrip", "index": 100}]}], "subTreeNodes": [{"id": 99851, "name": "Colossus / Mountain Thane", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123391, "type": "subtree", "name": "Colossus", "traitSubTreeId": 62, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-colossus", "nodes": [94818, 94812, 94819, 94789, 94799, 94811, 94815, 94796, 94794, 94806, 94793]}, {"id": 123388, "type": "subtree", "name": "Mountain Thane", "traitSubTreeId": 61, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-mountainthane", "nodes": [94803, 94816, 94800, 94808, 94785, 94817, 94798, 94792, 94807, 94797, 94805]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]}, {"traitTreeId": 720, "className": "Warlock", "classId": 9, "specName": "Affliction", "specId": 265, "classNodes": [{"id": 71931, "name": "Fel Domination", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71932, 71952], "prev": [], "entries": [{"id": 91439, "definitionId": 96441, "maxRanks": 1, "type": "active", "name": "Fel Domination", "spellId": 333889, "icon": "spell_shadow_felmending", "index": 100}]}, {"id": 71933, "name": "Soul Leech", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71952, 71950], "prev": [], "entries": [{"id": 91441, "definitionId": 96443, "maxRanks": 1, "type": "passive", "name": "Soul Leech", "spellId": 108370, "icon": "warlock_siphonlife", "index": 100}], "freeNode": true}, {"id": 71949, "name": "Burning Rush", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71950, 71948], "prev": [], "entries": [{"id": 91460, "definitionId": 96462, "maxRanks": 1, "type": "active", "name": "Burning Rush", "spellId": 111400, "icon": "ability_deathwing_sealarmorbreachtga", "index": 100}]}, {"id": 71932, "name": "Fel Pact", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [71951], "prev": [71931], "entries": [{"id": 91440, "definitionId": 96442, "maxRanks": 1, "type": "passive", "name": "Fel Pact", "spellId": 386113, "icon": "spell_shadow_impphaseshift", "index": 100}]}, {"id": 71952, "name": "Demon Skin", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 2, "next": [71951, 100941], "prev": [71933, 71931], "entries": [{"id": 91463, "definitionId": 96465, "maxRanks": 2, "type": "passive", "name": "Demon Skin", "spellId": 219272, "icon": "spell_shadow_ragingscream", "index": 100}]}, {"id": 71950, "name": "Fel Armor", "type": "single", "posX": 4800, "posY": 1800, "maxRanks": 2, "next": [100941, 71947], "prev": [71933, 71949], "entries": [{"id": 91461, "definitionId": 96463, "maxRanks": 2, "type": "passive", "name": "Fel Armor", "spellId": 386124, "icon": "spell_shadow_felarmour", "index": 0}]}, {"id": 71948, "name": "Fiendish Stride", "type": "single", "posX": 6000, "posY": 1800, "maxRanks": 1, "next": [71947], "prev": [71949], "entries": [{"id": 91459, "definitionId": 96461, "maxRanks": 1, "type": "passive", "name": "Fiendish Stride", "spellId": 386110, "icon": "inv_misc_moosehoof_fel", "index": 100}]}, {"id": 71951, "name": "Curses of Enfeeblement", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [71934, 71930, 71928], "prev": [71932, 71952], "entries": [{"id": 91462, "definitionId": 96464, "maxRanks": 1, "type": "active", "name": "Curses of Enfeeblement", "spellId": 386105, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 100941, "name": "Demonic Circle", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [71928, 71954, 71946], "prev": [71950, 71952], "entries": [{"id": 124694, "definitionId": 129532, "maxRanks": 1, "type": "active", "name": "Demonic Circle", "spellId": 268358, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 71947, "name": "Howl of Terror / Mortal Coil", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [71946, 71922, 71944], "prev": [71950, 71948], "entries": [{"id": 91458, "definitionId": 96460, "maxRanks": 1, "type": "active", "name": "Howl of Terror", "spellId": 5484, "icon": "ability_warlock_howlofterror", "index": 100}, {"id": 91457, "definitionId": 96459, "maxRanks": 1, "type": "active", "name": "Mortal Coil", "spellId": 6789, "icon": "ability_warlock_mortalcoil", "index": 200}]}, {"id": 71934, "name": "Amplify Curse", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [71935, 71953], "prev": [71951], "entries": [{"id": 91442, "definitionId": 96444, "maxRanks": 1, "type": "active", "name": "Amplify Curse", "spellId": 328774, "icon": "spell_shadow_contagion", "index": 100}]}, {"id": 71930, "name": "Demonic Embrace", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [71953], "prev": [71951], "entries": [{"id": 91438, "definitionId": 96440, "maxRanks": 1, "type": "passive", "name": "Demonic Embrace", "spellId": 288843, "icon": "spell_shadow_metamorphosis", "index": 100}]}, {"id": 71928, "name": "Demonic Inspiration", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [71953, 71927, 71916], "prev": [71951, 100941], "entries": [{"id": 91436, "definitionId": 96438, "maxRanks": 1, "type": "passive", "name": "Demonic Inspiration", "spellId": 386858, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 71954, "name": "Abyss Walker", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [71916], "prev": [100941], "entries": [{"id": 91465, "definitionId": 96467, "maxRanks": 1, "type": "passive", "name": "Abyss Walker", "spellId": 389609, "icon": "achievement_explore_argus", "index": 100}]}, {"id": 71946, "name": "Wrathful Minion", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [71916, 71955, 71940], "prev": [71947, 100941], "entries": [{"id": 91456, "definitionId": 96458, "maxRanks": 1, "type": "passive", "name": "Wrathful Minion", "spellId": 386864, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 71922, "name": "Demonic Fortitude", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91430, "definitionId": 96432, "maxRanks": 1, "type": "passive", "name": "Demonic Fortitude", "spellId": 386617, "icon": "spell_warlock_summonimpoutland", "index": 100}]}, {"id": 71944, "name": "Banish", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91454, "definitionId": 96456, "maxRanks": 1, "type": "active", "name": "Banish", "spellId": 710, "icon": "spell_shadow_cripple", "index": 100}]}, {"id": 71935, "name": "Teachings of the Satyr", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936], "prev": [71934], "entries": [{"id": 91443, "definitionId": 96445, "maxRanks": 1, "type": "passive", "name": "Teachings of the Satyr", "spellId": 387972, "icon": "spell_shadow_carrionswarm", "index": 100}]}, {"id": 71953, "name": "Accrued Vitality", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71936], "prev": [71934, 71928, 71930], "entries": [{"id": 91464, "definitionId": 96466, "maxRanks": 2, "type": "passive", "name": "Accrued Vitality", "spellId": 386613, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 71927, "name": "Sweet Souls", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936, 71956], "prev": [71928], "entries": [{"id": 91435, "definitionId": 96437, "maxRanks": 1, "type": "passive", "name": "Sweet Souls", "spellId": 386620, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 71916, "name": "Nightmare / Horrify", "type": "choice", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71956], "prev": [71946, 71928, 71954], "entries": [{"id": 91422, "definitionId": 96424, "maxRanks": 1, "type": "passive", "name": "Nightmare", "spellId": 386648, "icon": "spell_shadow_possession", "index": 100}, {"id": 115459, "definitionId": 120471, "maxRanks": 1, "type": "passive", "name": "Horrify", "spellId": 56244, "icon": "spell_nzinsanity_bloodthirst", "index": 200}]}, {"id": 71955, "name": "Demonic Gateway", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71942, 71956], "prev": [71946], "entries": [{"id": 91466, "definitionId": 96468, "maxRanks": 1, "type": "active", "name": "Demonic Gateway", "spellId": 111771, "icon": "spell_warlock_demonicportal_green", "index": 100}]}, {"id": 71940, "name": "Lifeblood", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71942], "prev": [71922, 71944, 71946], "entries": [{"id": 91449, "definitionId": 96451, "maxRanks": 2, "type": "passive", "name": "Lifeblood", "spellId": 386646, "icon": "warlock__healthstone", "index": 100}]}, {"id": 71936, "name": "Dark Pact", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71937, 93178], "prev": [71927, 71935, 71953], "entries": [{"id": 91444, "definitionId": 96446, "maxRanks": 1, "type": "active", "name": "Dark Pact", "spellId": 108416, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 71956, "name": "Strength of Will / Dark Accord", "type": "choice", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93178, 93179], "prev": [71916, 71955, 71927], "entries": [{"id": 91468, "definitionId": 96470, "maxRanks": 1, "type": "passive", "name": "Strength of Will", "spellId": 317138, "icon": "spell_shadow_demonictactics", "index": 100}, {"id": 91467, "definitionId": 96469, "maxRanks": 1, "type": "passive", "name": "Dark Accord", "spellId": 386659, "icon": "ability_warlock_improveddemonictactics", "index": 200}]}, {"id": 71942, "name": "Shadowfury", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93179, 71941], "prev": [71955, 71940], "entries": [{"id": 91452, "definitionId": 96454, "maxRanks": 1, "type": "active", "name": "Shadowfury", "spellId": 30283, "icon": "ability_warlock_shadowfurytga", "index": 200}]}, {"id": 71937, "name": "Ichor of Devils / Frequent Donor", "type": "choice", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71918], "prev": [71936], "entries": [{"id": 91446, "definitionId": 96448, "maxRanks": 1, "type": "passive", "name": "Ichor of Devils", "spellId": 386664, "icon": "spell_yorsahj_bloodboil_greenoil", "index": 100}, {"id": 91445, "definitionId": 96447, "maxRanks": 1, "type": "passive", "name": "Frequent Donor", "spellId": 386686, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 93178, "name": "Socrethar's Guile", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71918, 71925], "prev": [71936, 71956], "entries": [{"id": 115461, "definitionId": 120473, "maxRanks": 2, "type": "passive", "name": "Socrethar's Guile", "spellId": 405936, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93179, "name": "Sargerei Technique", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71925, 71938], "prev": [71956, 71942], "entries": [{"id": 115462, "definitionId": 120474, "maxRanks": 2, "type": "passive", "name": "Sargerei Technique", "spellId": 405955, "icon": "70_inscription_glyph_demonhunter_major", "index": 100}]}, {"id": 71941, "name": "Darkfury / Shadowflame", "type": "choice", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71938], "prev": [71942], "entries": [{"id": 91451, "definitionId": 96453, "maxRanks": 1, "type": "passive", "name": "Darkfury", "spellId": 264874, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 91450, "definitionId": 96452, "maxRanks": 1, "type": "active", "name": "Shadowflame", "spellId": 384069, "icon": "ability_warlock_shadowflame", "index": 200}]}, {"id": 71918, "name": "Swift Artifice", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71915, 71924], "prev": [71937, 93178], "entries": [{"id": 91425, "definitionId": 96427, "maxRanks": 1, "type": "passive", "name": "Swift Artifice", "spellId": 452902, "icon": "spell_shadow_destructivesoul", "index": 100}]}, {"id": 71925, "name": "Demonic Tactics", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71924, 71923], "prev": [93178, 93179], "entries": [{"id": 91433, "definitionId": 96435, "maxRanks": 1, "type": "passive", "name": "Demonic Tactics", "spellId": 452894, "icon": "inv_helm_laughingskull_01", "index": 100}]}, {"id": 71938, "name": "Teachings of the Black Harvest", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71923, 71917], "prev": [71941, 93179], "entries": [{"id": 91447, "definitionId": 96449, "maxRanks": 1, "type": "passive", "name": "Teachings of the Black Harvest", "spellId": 385881, "icon": "inv_misc_codexofxerrath_nochains", "index": 100}]}, {"id": 71915, "name": "Resolute Barrier", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926], "prev": [71918], "entries": [{"id": 91421, "definitionId": 96423, "maxRanks": 2, "type": "passive", "name": "Resolute Barrier", "spellId": 389359, "icon": "inv_shield_1h_demonweapon_c_01", "index": 100}]}, {"id": 71924, "name": "Fel Synergy", "type": "single", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926, 71939], "prev": [71918, 71925], "entries": [{"id": 91432, "definitionId": 96434, "maxRanks": 2, "type": "passive", "name": "Fel Synergy", "spellId": 389367, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 71923, "name": "Soul Link", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71939, 71957], "prev": [71925, 71938], "entries": [{"id": 91431, "definitionId": 96433, "maxRanks": 2, "type": "passive", "name": "Soul Link", "spellId": 108415, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 71917, "name": "Demonic Resilience", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71957], "prev": [71938], "entries": [{"id": 91424, "definitionId": 96426, "maxRanks": 2, "type": "passive", "name": "Demonic Resilience", "spellId": 389590, "icon": "ability_warlock_avoidance", "index": 100}]}, {"id": 71926, "name": "Pact of Gluttony", "type": "single", "posX": 3000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71915], "entries": [{"id": 91434, "definitionId": 96436, "maxRanks": 1, "type": "passive", "name": "Pact of Gluttony", "spellId": 386689, "icon": "warlock__bloodstone", "index": 100}]}, {"id": 71939, "name": "Soul Conduit", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71923], "entries": [{"id": 91427, "definitionId": 96450, "maxRanks": 1, "type": "passive", "name": "Soul Conduit", "spellId": 215941, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 71957, "name": "Soulburn", "type": "single", "posX": 5400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71917, 71923], "entries": [{"id": 91469, "definitionId": 96471, "maxRanks": 1, "type": "active", "name": "Soulburn", "spellId": 385899, "icon": "spell_warlock_soulburn", "index": 100}]}], "specNodes": [{"id": 72049, "name": "Unstable Affliction", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [72048, 72050], "prev": [], "entries": [{"id": 91570, "definitionId": 96572, "maxRanks": 1, "type": "active", "name": "Unstable Affliction", "spellId": 316099, "icon": "spell_shadow_unstableaffliction_3", "index": 100}]}, {"id": 72048, "name": "Writhe in Agony", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [72043, 72051, 72047], "prev": [72049], "entries": [{"id": 91569, "definitionId": 96571, "maxRanks": 1, "type": "passive", "name": "Writhe in Agony", "spellId": 196102, "icon": "spell_shadow_curseofsargeras", "index": 100}]}, {"id": 72050, "name": "Seed of Corruption", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [72051, 72040, 72039], "prev": [72049], "entries": [{"id": 91571, "definitionId": 96573, "maxRanks": 1, "type": "active", "name": "Seed of Corruption", "spellId": 27243, "icon": "spell_shadow_seedofdestruction", "index": 100}]}, {"id": 72043, "name": "Dark Virtuosity", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 2, "next": [72047, 72045], "prev": [72048], "entries": [{"id": 91564, "definitionId": 96566, "maxRanks": 2, "type": "passive", "name": "Dark Virtuosity", "spellId": 405327, "icon": "inv_elemental_primal_shadow", "index": 100}]}, {"id": 72051, "name": "Absolute Corruption / Siphon Life", "type": "choice", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [72047, 72039, 72037], "prev": [72048, 72050], "entries": [{"id": 91572, "definitionId": 96574, "maxRanks": 1, "type": "passive", "name": "Absolute Corruption", "spellId": 196103, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}, {"id": 124693, "definitionId": 129531, "maxRanks": 1, "type": "passive", "name": "Siphon Life", "spellId": 452999, "icon": "spell_shadow_requiem", "index": 200}]}, {"id": 72040, "name": "Kindled Malice", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 2, "next": [72039, 102033], "prev": [72050], "entries": [{"id": 91561, "definitionId": 96563, "maxRanks": 2, "type": "passive", "name": "Kindled Malice", "spellId": 405330, "icon": "inv_artifact_powerofthedarkside", "index": 100}]}, {"id": 72047, "name": "Nightfall", "type": "single", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [72045, 72037], "prev": [72048, 72043, 72051], "entries": [{"id": 91568, "definitionId": 96570, "maxRanks": 1, "type": "passive", "name": "Nightfall", "spellId": 108558, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 72039, "name": "Volatile Agony", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [72037, 102033], "prev": [72051, 72050, 72040], "entries": [{"id": 91560, "definitionId": 96562, "maxRanks": 1, "type": "passive", "name": "Volatile Agony", "spellId": 453034, "icon": "ability_xavius_corruptingnova", "index": 100}]}, {"id": 72045, "name": "Improved Shadow Bolt / Drain Soul", "type": "choice", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72032, 100940, 72053], "prev": [72047, 72043], "entries": [{"id": 91566, "definitionId": 96568, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Bolt", "spellId": 453080, "icon": "spell_shadow_shadowbolt", "index": 0}, {"id": 124692, "definitionId": 129530, "maxRanks": 1, "type": "active", "name": "Drain Soul", "spellId": 388667, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 72037, "name": "Summoner's Embrace / Grimoire of Sacrifice", "type": "choice", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72053, 72034, 72054], "prev": [72047, 72039, 72051], "entries": [{"id": 91558, "definitionId": 96560, "maxRanks": 1, "type": "passive", "name": "Summoner's Embrace", "spellId": 453105, "icon": "spell_shadow_unsummonbuilding", "index": 100}, {"id": 124691, "definitionId": 129529, "maxRanks": 1, "type": "active", "name": "Grimoire of Sacrifice", "spellId": 108503, "icon": "warlock_grimoireofsacrifice", "index": 200}]}, {"id": 102033, "name": "Vile Taint / Phantom Singularity", "type": "choice", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72054, 102032], "prev": [72040, 72039], "entries": [{"id": 91556, "definitionId": 96558, "maxRanks": 1, "type": "active", "name": "Vile Taint", "spellId": 278350, "icon": "sha_spell_shadow_shadesofdarkness_nightborne", "index": 100}, {"id": 126061, "definitionId": 130893, "maxRanks": 1, "type": "active", "name": "Phantom Singularity", "spellId": 205179, "icon": "inv_enchant_voidsphere", "index": 200}]}, {"id": 72032, "name": "Haunt", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [102031], "prev": [72045], "entries": [{"id": 91552, "definitionId": 96554, "maxRanks": 1, "type": "active", "name": "Haunt", "spellId": 48181, "icon": "ability_warlock_haunt", "index": 100}]}, {"id": 100940, "name": "Shadow Embrace", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046], "prev": [72045], "entries": [{"id": 124690, "definitionId": 129528, "maxRanks": 1, "type": "passive", "name": "Shadow Embrace", "spellId": 32388, "icon": "spell_shadow_shadowembrace", "index": 0}]}, {"id": 72053, "name": "Sacrolash's Dark Strike", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046], "prev": [72037, 72045], "entries": [{"id": 91575, "definitionId": 96577, "maxRanks": 1, "type": "passive", "name": "Sacrolash's Dark Strike", "spellId": 386986, "icon": "spell_nzinsanity_fearofdeath", "index": 100}]}, {"id": 72034, "name": "Summon Darkglare", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046, 71987, 72041], "prev": [72037], "entries": [{"id": 91554, "definitionId": 96556, "maxRanks": 1, "type": "active", "name": "Summon Darkglare", "spellId": 205180, "icon": "inv_beholderwarlock", "index": 100}]}, {"id": 72054, "name": "Cunning Cruelty", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72041, 72038], "prev": [72037, 102033], "entries": [{"id": 91576, "definitionId": 96578, "maxRanks": 1, "type": "passive", "name": "Cunning Cruelty", "spellId": 453172, "icon": "inv_misc_coin_09", "index": 100}]}, {"id": 102032, "name": "Infirmity", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72038], "prev": [102033], "entries": [{"id": 126065, "definitionId": 130897, "maxRanks": 1, "type": "passive", "name": "Infirmity", "spellId": 458036, "icon": "spell_shadow_mindflay", "index": 100}]}, {"id": 102031, "name": "Improved Haunt", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72058], "prev": [72032], "entries": [{"id": 126064, "definitionId": 130896, "maxRanks": 1, "type": "passive", "name": "Improved Haunt", "spellId": 458034, "icon": "ability_warlock_haunt", "index": 100}]}, {"id": 72046, "name": "Malediction", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72058, 72056], "prev": [72053, 100940, 72034], "entries": [{"id": 91567, "definitionId": 96569, "maxRanks": 2, "type": "passive", "name": "Malediction", "spellId": 453087, "icon": "spell_shadow_curseofachimonde", "index": 100}]}, {"id": 71987, "name": "Malevolent Visionary", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72056], "prev": [72034], "entries": [{"id": 91504, "definitionId": 96506, "maxRanks": 1, "type": "passive", "name": "Malevolent Visionary", "spellId": 387273, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 72041, "name": "Contagion", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72056, 72031], "prev": [72054, 72034], "entries": [{"id": 91562, "definitionId": 96564, "maxRanks": 2, "type": "passive", "name": "Contagion", "spellId": 453096, "icon": "spell_shadow_unstableafllictions", "index": 100}]}, {"id": 72038, "name": "Cull the Weak", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72031], "prev": [102032, 72054], "entries": [{"id": 91559, "definitionId": 96561, "maxRanks": 2, "type": "passive", "name": "Cull the Weak", "spellId": 453056, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 72058, "name": "Creeping Death", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71921, 72042, 102246], "prev": [102031, 72046], "entries": [{"id": 91580, "definitionId": 96582, "maxRanks": 1, "type": "passive", "name": "Creeping Death", "spellId": 264000, "icon": "ability_creature_cursed_03", "index": 0}]}, {"id": 72056, "name": "Soul Rot", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [102246, 72057, 72052], "prev": [71987, 72041, 72046], "entries": [{"id": 91578, "definitionId": 96580, "maxRanks": 1, "type": "active", "name": "Soul Rot", "spellId": 386997, "icon": "ability_ardenweald_warlock", "index": 100}]}, {"id": 72031, "name": "Tormented Crescendo", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [72052, 72055, 72035], "prev": [72038, 72041], "entries": [{"id": 91551, "definitionId": 96553, "maxRanks": 1, "type": "passive", "name": "Tormented Crescendo", "spellId": 387075, "icon": "spell_warlock_soulburn", "index": 100}]}, {"id": 71921, "name": "Xavius' Gambit", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [71986, 72033], "prev": [72058], "entries": [{"id": 91429, "definitionId": 96431, "maxRanks": 1, "type": "passive", "name": "Xavius' Gambit", "spellId": 416615, "icon": "ability_xavius_blackeningsoul", "index": 0}]}, {"id": 72042, "name": "Focused Malignancy", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [72033], "prev": [72058], "entries": [{"id": 91563, "definitionId": 96565, "maxRanks": 1, "type": "passive", "name": "Focused Malignancy", "spellId": 399668, "icon": "spell_shadow_fingerofdeath", "index": 100}]}, {"id": 102246, "name": "Perpetual Unstability", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [72033], "prev": [72058, 72056], "entries": [{"id": 126302, "definitionId": 131128, "maxRanks": 1, "type": "passive", "name": "Perpetual Unstability", "spellId": 459376, "icon": "spell_shadow_unstableaffliction_3_purple", "index": 100}]}, {"id": 72057, "name": "Malign Omen", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102029], "prev": [72056], "entries": [{"id": 91579, "definitionId": 96581, "maxRanks": 1, "type": "passive", "name": "Malign Omen", "spellId": 458041, "icon": "spell_shadow_coneofsilence", "index": 100}]}, {"id": 72052, "name": "Relinquished", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247], "prev": [72056, 72031], "entries": [{"id": 91573, "definitionId": 96575, "maxRanks": 1, "type": "passive", "name": "Relinquished", "spellId": 453083, "icon": "inv_misc_gem_amethyst_02", "index": 100}]}, {"id": 72055, "name": "Withering Bolt", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247], "prev": [72031], "entries": [{"id": 91577, "definitionId": 96579, "maxRanks": 1, "type": "passive", "name": "Withering Bolt", "spellId": 386976, "icon": "spell_shadow_shadowbolt", "index": 100}]}, {"id": 72035, "name": "Improved Malefic Rapture", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247, 102030], "prev": [72031], "entries": [{"id": 91555, "definitionId": 96557, "maxRanks": 1, "type": "passive", "name": "Improved Malefic Rapture", "spellId": 454378, "icon": "ability_warlock_everlastingaffliction", "index": 100}]}, {"id": 71986, "name": "Oblivion", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71921], "entries": [{"id": 91503, "definitionId": 96505, "maxRanks": 1, "type": "active", "name": "Oblivion", "spellId": 417537, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 72033, "name": "Death's Embrace", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102246, 72042, 71921], "entries": [{"id": 91553, "definitionId": 96555, "maxRanks": 1, "type": "passive", "name": "Death's Embrace", "spellId": 453189, "icon": "spell_shadow_deathsembrace", "index": 100}]}, {"id": 102029, "name": "Dark Harvest", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72057], "entries": [{"id": 126062, "definitionId": 130894, "maxRanks": 1, "type": "passive", "name": "Dark Harvest", "spellId": 387016, "icon": "ability_creature_disease_02", "index": 100}]}, {"id": 102247, "name": "Ravenous Afflictions", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72052, 72035, 72055], "entries": [{"id": 126303, "definitionId": 131129, "maxRanks": 1, "type": "passive", "name": "Ravenous Afflictions", "spellId": 459440, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 102030, "name": "Malefic Touch", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72035], "entries": [{"id": 126063, "definitionId": 130895, "maxRanks": 1, "type": "passive", "name": "Malefic Touch", "spellId": 458029, "icon": "spell_shadow_manaburn", "index": 100}]}], "heroNodes": [{"id": 94840, "name": "Wither", "type": "single", "posX": 15600, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 58, "next": [94853, 94837, 94845], "prev": [], "entries": [{"id": 117437, "definitionId": 122449, "maxRanks": 1, "type": "active", "name": "Wither", "spellId": 445465, "visibleSpellId": 445468, "icon": "inv_ability_hellcallerwarlock_wither", "index": 100}], "freeNode": true}, {"id": 94853, "name": "Xalan's Ferocity", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94822], "prev": [94840], "entries": [{"id": 117450, "definitionId": 122462, "maxRanks": 1, "type": "passive", "name": "Xalan's Ferocity", "spellId": 440044, "icon": "spell_fire_felfire", "index": 100}]}, {"id": 94837, "name": "Blackened Soul", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94854], "prev": [94840], "entries": [{"id": 117434, "definitionId": 122446, "maxRanks": 1, "type": "passive", "name": "Blackened Soul", "spellId": 440043, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 94845, "name": "Xalan's Cruelty", "type": "single", "posX": 16200, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94835], "prev": [94840], "entries": [{"id": 117442, "definitionId": 122454, "maxRanks": 1, "type": "passive", "name": "Xalan's Cruelty", "spellId": 440040, "icon": "spell_shadow_demonicempathy", "index": 100}]}, {"id": 94851, "name": "Demonic Soul", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 57, "next": [94825, 94847, 94832], "prev": [], "entries": [{"id": 117448, "definitionId": 122460, "maxRanks": 1, "type": "passive", "name": "Demonic Soul", "spellId": 449614, "icon": "inv_ability_soulharvesterwarlock_demonicsoul", "index": 100}], "freeNode": true}, {"id": 94822, "name": "Curse of the Satyr / Aura of Enfeeblement", "type": "choice", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94834], "prev": [94853], "entries": [{"id": 117419, "definitionId": 122431, "maxRanks": 1, "type": "passive", "name": "Curse of the Satyr", "spellId": 440057, "icon": "inv_fabric_felrag", "index": 100}, {"id": 123309, "definitionId": 128179, "maxRanks": 1, "type": "passive", "name": "Aura of Enfeeblement", "spellId": 440059, "icon": "warlock_curse_weakness_aura", "index": 200}]}, {"id": 94854, "name": "Hatefury Rituals / Bleakheart Tactics", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94829], "prev": [94837], "entries": [{"id": 117451, "definitionId": 122463, "maxRanks": 1, "type": "passive", "name": "Hatefury Rituals", "spellId": 440048, "icon": "70_inscription_glyph_demonhunter_minor", "index": 100}, {"id": 123310, "definitionId": 128180, "maxRanks": 1, "type": "passive", "name": "Bleakheart Tactics", "spellId": 440051, "icon": "spell_shadow_mindshear", "index": 200}]}, {"id": 94835, "name": "Zevrim's Resilience / Illhoof's Design", "type": "choice", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94844], "prev": [94845], "entries": [{"id": 117432, "definitionId": 122444, "maxRanks": 1, "type": "passive", "name": "Zevrim's Resilience", "spellId": 440065, "icon": "ability_warrior_intensifyrage", "index": 100}, {"id": 123308, "definitionId": 128178, "maxRanks": 1, "type": "passive", "name": "Illhoof's Design", "spellId": 440070, "icon": "sha_spell_fire_felfireward_nightmare", "index": 200}]}, {"id": 94825, "name": "Necrolyte Teachings", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94850], "prev": [94851], "entries": [{"id": 117422, "definitionId": 122434, "maxRanks": 1, "type": "passive", "name": "Necrolyte Teachings", "spellId": 449620, "icon": "spell_necro_deathall", "index": 100}]}, {"id": 94847, "name": "Soul Anathema", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94823], "prev": [94851], "entries": [{"id": 117444, "definitionId": 122456, "maxRanks": 1, "type": "passive", "name": "Soul Anathema", "spellId": 449624, "icon": "spell_necro_inevitableend", "index": 100}]}, {"id": 94832, "name": "Demoniac's Fervor", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94824], "prev": [94851], "entries": [{"id": 117429, "definitionId": 122441, "maxRanks": 1, "type": "passive", "name": "Demoniac's Fervor", "spellId": 449629, "icon": "inv_helm_mask_zulgurub_d_01", "index": 100}]}, {"id": 94834, "name": "Mark of Xavius", "type": "single", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94822], "entries": [{"id": 117431, "definitionId": 122443, "maxRanks": 1, "type": "passive", "name": "Mark of Xavius", "spellId": 440046, "icon": "warlock_curse_shadow_aura", "index": 100}]}, {"id": 94829, "name": "Seeds of Their Demise", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94854], "entries": [{"id": 117426, "definitionId": 122438, "maxRanks": 1, "type": "passive", "name": "Seeds of Their Demise", "spellId": 440055, "icon": "ability_warlock_moltencoregreen", "index": 100}]}, {"id": 94844, "name": "Mark of Peroth'arn", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94835], "entries": [{"id": 117441, "definitionId": 122453, "maxRanks": 1, "type": "passive", "name": "Mark of Peroth'arn", "spellId": 440045, "icon": "70_inscription_vantus_rune_tomb", "index": 100}]}, {"id": 94850, "name": "Gorebound Fortitude / Friends In Dark Places", "type": "choice", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94821], "prev": [94825], "entries": [{"id": 117447, "definitionId": 122459, "maxRanks": 1, "type": "passive", "name": "Gorebound Fortitude", "spellId": 449701, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 123840, "definitionId": 128678, "maxRanks": 1, "type": "passive", "name": "Friends In Dark Places", "spellId": 449703, "icon": "spell_shadow_deathpact", "index": 200}]}, {"id": 94823, "name": "Shared Fate / Feast of Souls", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94846], "prev": [94847], "entries": [{"id": 117420, "definitionId": 122432, "maxRanks": 1, "type": "passive", "name": "Shared Fate", "spellId": 449704, "icon": "ability_warlock_soullink", "index": 100}, {"id": 123839, "definitionId": 128677, "maxRanks": 1, "type": "passive", "name": "Feast of Souls", "spellId": 449706, "icon": "ability_warlock_improvedsoulleech", "index": 200}]}, {"id": 94824, "name": "Eternal Servitude / Gorefiend's Resolve", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94838], "prev": [94832], "entries": [{"id": 117421, "definitionId": 122433, "maxRanks": 1, "type": "passive", "name": "Eternal Servitude", "spellId": 449707, "icon": "ability_demonhunter_infernalchains", "index": 100}, {"id": 123838, "definitionId": 128676, "maxRanks": 1, "type": "passive", "name": "Gorefiend's Resolve", "spellId": 389623, "icon": "ability_rogue_masterofsubtlety", "index": 200}]}, {"id": 94842, "name": "Malevolence", "type": "single", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 58, "next": [], "prev": [94829, 94834, 94844], "entries": [{"id": 117439, "definitionId": 122451, "maxRanks": 1, "type": "active", "name": "Malevolence", "spellId": 430014, "visibleSpellId": 442726, "icon": "inv_ability_hellcallerwarlock_malevolence", "index": 100}]}, {"id": 94821, "name": "Wicked Reaping", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94850], "entries": [{"id": 117418, "definitionId": 122430, "maxRanks": 1, "type": "passive", "name": "Wicked Reaping", "spellId": 449631, "icon": "inv_staff_2h_artifactdeadwind_d_05", "index": 100}]}, {"id": 94846, "name": "Quietus", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94823], "entries": [{"id": 117443, "definitionId": 122455, "maxRanks": 1, "type": "passive", "name": "Quietus", "spellId": 449634, "icon": "spell_necro_conclave", "index": 100}]}, {"id": 94838, "name": "Sataiel's Volition", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "next": [94857], "prev": [94824], "entries": [{"id": 117435, "definitionId": 122447, "maxRanks": 1, "type": "passive", "name": "Sataiel's Volition", "spellId": 449637, "icon": "spell_necro_deathlyecho", "index": 100}]}, {"id": 94857, "name": "Shadow of Death", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 57, "requiresNode": 101905, "next": [], "prev": [94846, 94821, 94838], "entries": [{"id": 117454, "definitionId": 122466, "maxRanks": 1, "type": "passive", "name": "Shadow of Death", "spellId": 449638, "icon": "spell_arcane_prismaticcloak", "index": 100}]}], "subTreeNodes": [{"id": 99850, "name": "Hellcaller / Soul Harvester", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123387, "type": "subtree", "name": "Hellcaller", "traitSubTreeId": 58, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-hellcaller", "nodes": [94840, 94853, 94837, 94845, 94822, 94854, 94835, 94834, 94829, 94844, 94842]}, {"id": 123384, "type": "subtree", "name": "Soul Harvester", "traitSubTreeId": 57, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-soulharvester", "nodes": [94851, 94825, 94847, 94832, 94850, 94823, 94824, 94821, 94846, 94838, 94857]}]}], "fullNodeOrder": [71915, 71916, 71917, 71918, 71921, 71922, 71923, 71924, 71925, 71926, 71927, 71928, 71930, 71931, 71932, 71933, 71934, 71935, 71936, 71937, 71938, 71939, 71940, 71941, 71942, 71944, 71946, 71947, 71948, 71949, 71950, 71951, 71952, 71953, 71954, 71955, 71956, 71957, 71960, 71961, 71962, 71964, 71965, 71966, 71967, 71968, 71969, 71970, 71971, 71972, 71973, 71974, 71975, 71978, 71979, 71980, 71982, 71983, 71984, 71985, 71986, 71987, 72031, 72032, 72033, 72034, 72035, 72037, 72038, 72039, 72040, 72041, 72042, 72043, 72045, 72046, 72047, 72048, 72049, 72050, 72051, 72052, 72053, 72054, 72055, 72056, 72057, 72058, 72059, 72060, 72061, 72062, 72063, 72064, 72065, 72066, 72067, 72068, 72069, 93178, 93179, 94821, 94822, 94823, 94824, 94825, 94826, 94829, 94830, 94831, 94832, 94833, 94834, 94835, 94836, 94837, 94838, 94840, 94842, 94843, 94844, 94845, 94846, 94847, 94848, 94849, 94850, 94851, 94852, 94853, 94854, 94855, 94856, 94857, 99848, 99849, 99850, 100940, 100941, 101884, 101885, 101886, 101887, 101888, 101889, 101890, 101891, 101892, 101893, 101894, 101895, 101896, 101897, 101898, 101899, 101900, 101901, 101902, 101903, 101904, 101905, 101906, 101907, 101908, 101909, 101910, 101911, 101912, 101913, 101914, 101915, 101916, 101917, 101918, 101919, 101920, 101921, 101922, 101923, 101924, 101925, 101926, 101992, 101993, 101994, 101995, 101996, 101997, 101998, 102002, 102003, 102029, 102030, 102031, 102032, 102033, 102246, 102247, 102427]}, {"traitTreeId": 720, "className": "Warlock", "classId": 9, "specName": "Demonology", "specId": 266, "classNodes": [{"id": 71931, "name": "Fel Domination", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71932, 71952], "prev": [], "entries": [{"id": 91439, "definitionId": 96441, "maxRanks": 1, "type": "active", "name": "Fel Domination", "spellId": 333889, "icon": "spell_shadow_felmending", "index": 100}]}, {"id": 71933, "name": "Soul Leech", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71952, 71950], "prev": [], "entries": [{"id": 91441, "definitionId": 96443, "maxRanks": 1, "type": "passive", "name": "Soul Leech", "spellId": 108370, "icon": "warlock_siphonlife", "index": 100}], "freeNode": true}, {"id": 71949, "name": "Burning Rush", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71950, 71948], "prev": [], "entries": [{"id": 91460, "definitionId": 96462, "maxRanks": 1, "type": "active", "name": "Burning Rush", "spellId": 111400, "icon": "ability_deathwing_sealarmorbreachtga", "index": 100}]}, {"id": 71932, "name": "Fel Pact", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [71951], "prev": [71931], "entries": [{"id": 91440, "definitionId": 96442, "maxRanks": 1, "type": "passive", "name": "Fel Pact", "spellId": 386113, "icon": "spell_shadow_impphaseshift", "index": 100}]}, {"id": 71952, "name": "Demon Skin", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 2, "next": [71951, 100941], "prev": [71933, 71931], "entries": [{"id": 91463, "definitionId": 96465, "maxRanks": 2, "type": "passive", "name": "Demon Skin", "spellId": 219272, "icon": "spell_shadow_ragingscream", "index": 100}]}, {"id": 71950, "name": "Fel Armor", "type": "single", "posX": 4800, "posY": 1800, "maxRanks": 2, "next": [100941, 71947], "prev": [71933, 71949], "entries": [{"id": 91461, "definitionId": 96463, "maxRanks": 2, "type": "passive", "name": "Fel Armor", "spellId": 386124, "icon": "spell_shadow_felarmour", "index": 0}]}, {"id": 71948, "name": "Fiendish Stride", "type": "single", "posX": 6000, "posY": 1800, "maxRanks": 1, "next": [71947], "prev": [71949], "entries": [{"id": 91459, "definitionId": 96461, "maxRanks": 1, "type": "passive", "name": "Fiendish Stride", "spellId": 386110, "icon": "inv_misc_moosehoof_fel", "index": 100}]}, {"id": 71951, "name": "Curses of Enfeeblement", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [71934, 71930, 71928], "prev": [71932, 71952], "entries": [{"id": 91462, "definitionId": 96464, "maxRanks": 1, "type": "active", "name": "Curses of Enfeeblement", "spellId": 386105, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 100941, "name": "Demonic Circle", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [71928, 71954, 71946], "prev": [71950, 71952], "entries": [{"id": 124694, "definitionId": 129532, "maxRanks": 1, "type": "active", "name": "Demonic Circle", "spellId": 268358, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 71947, "name": "Howl of Terror / Mortal Coil", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [71946, 71922, 71944], "prev": [71950, 71948], "entries": [{"id": 91458, "definitionId": 96460, "maxRanks": 1, "type": "active", "name": "Howl of Terror", "spellId": 5484, "icon": "ability_warlock_howlofterror", "index": 100}, {"id": 91457, "definitionId": 96459, "maxRanks": 1, "type": "active", "name": "Mortal Coil", "spellId": 6789, "icon": "ability_warlock_mortalcoil", "index": 200}]}, {"id": 71934, "name": "Amplify Curse", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [71935, 71953], "prev": [71951], "entries": [{"id": 91442, "definitionId": 96444, "maxRanks": 1, "type": "active", "name": "Amplify Curse", "spellId": 328774, "icon": "spell_shadow_contagion", "index": 100}]}, {"id": 71930, "name": "Demonic Embrace", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [71953], "prev": [71951], "entries": [{"id": 91438, "definitionId": 96440, "maxRanks": 1, "type": "passive", "name": "Demonic Embrace", "spellId": 288843, "icon": "spell_shadow_metamorphosis", "index": 100}]}, {"id": 71928, "name": "Demonic Inspiration", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [71953, 71927, 71916], "prev": [71951, 100941], "entries": [{"id": 91436, "definitionId": 96438, "maxRanks": 1, "type": "passive", "name": "Demonic Inspiration", "spellId": 386858, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 71954, "name": "Abyss Walker", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [71916], "prev": [100941], "entries": [{"id": 91465, "definitionId": 96467, "maxRanks": 1, "type": "passive", "name": "Abyss Walker", "spellId": 389609, "icon": "achievement_explore_argus", "index": 100}]}, {"id": 71946, "name": "Wrathful Minion", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [71916, 71955, 71940], "prev": [71947, 100941], "entries": [{"id": 91456, "definitionId": 96458, "maxRanks": 1, "type": "passive", "name": "Wrathful Minion", "spellId": 386864, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 71922, "name": "Demonic Fortitude", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91430, "definitionId": 96432, "maxRanks": 1, "type": "passive", "name": "Demonic Fortitude", "spellId": 386617, "icon": "spell_warlock_summonimpoutland", "index": 100}]}, {"id": 71944, "name": "Banish", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91454, "definitionId": 96456, "maxRanks": 1, "type": "active", "name": "Banish", "spellId": 710, "icon": "spell_shadow_cripple", "index": 100}]}, {"id": 71935, "name": "Teachings of the Satyr", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936], "prev": [71934], "entries": [{"id": 91443, "definitionId": 96445, "maxRanks": 1, "type": "passive", "name": "Teachings of the Satyr", "spellId": 387972, "icon": "spell_shadow_carrionswarm", "index": 100}]}, {"id": 71953, "name": "Accrued Vitality", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71936], "prev": [71934, 71928, 71930], "entries": [{"id": 91464, "definitionId": 96466, "maxRanks": 2, "type": "passive", "name": "Accrued Vitality", "spellId": 386613, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 71927, "name": "Sweet Souls", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936, 71956], "prev": [71928], "entries": [{"id": 91435, "definitionId": 96437, "maxRanks": 1, "type": "passive", "name": "Sweet Souls", "spellId": 386620, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 71916, "name": "Nightmare / Horrify", "type": "choice", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71956], "prev": [71946, 71928, 71954], "entries": [{"id": 91422, "definitionId": 96424, "maxRanks": 1, "type": "passive", "name": "Nightmare", "spellId": 386648, "icon": "spell_shadow_possession", "index": 100}, {"id": 115459, "definitionId": 120471, "maxRanks": 1, "type": "passive", "name": "Horrify", "spellId": 56244, "icon": "spell_nzinsanity_bloodthirst", "index": 200}]}, {"id": 71955, "name": "Demonic Gateway", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71942, 71956], "prev": [71946], "entries": [{"id": 91466, "definitionId": 96468, "maxRanks": 1, "type": "active", "name": "Demonic Gateway", "spellId": 111771, "icon": "spell_warlock_demonicportal_green", "index": 100}]}, {"id": 71940, "name": "Lifeblood", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71942], "prev": [71922, 71944, 71946], "entries": [{"id": 91449, "definitionId": 96451, "maxRanks": 2, "type": "passive", "name": "Lifeblood", "spellId": 386646, "icon": "warlock__healthstone", "index": 100}]}, {"id": 71936, "name": "Dark Pact", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71937, 93178], "prev": [71927, 71935, 71953], "entries": [{"id": 91444, "definitionId": 96446, "maxRanks": 1, "type": "active", "name": "Dark Pact", "spellId": 108416, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 71956, "name": "Strength of Will / Dark Accord", "type": "choice", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93178, 93179], "prev": [71916, 71955, 71927], "entries": [{"id": 91468, "definitionId": 96470, "maxRanks": 1, "type": "passive", "name": "Strength of Will", "spellId": 317138, "icon": "spell_shadow_demonictactics", "index": 100}, {"id": 91467, "definitionId": 96469, "maxRanks": 1, "type": "passive", "name": "Dark Accord", "spellId": 386659, "icon": "ability_warlock_improveddemonictactics", "index": 200}]}, {"id": 71942, "name": "Shadowfury", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93179, 71941], "prev": [71955, 71940], "entries": [{"id": 91452, "definitionId": 96454, "maxRanks": 1, "type": "active", "name": "Shadowfury", "spellId": 30283, "icon": "ability_warlock_shadowfurytga", "index": 200}]}, {"id": 71937, "name": "Ichor of Devils / Frequent Donor", "type": "choice", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71918], "prev": [71936], "entries": [{"id": 91446, "definitionId": 96448, "maxRanks": 1, "type": "passive", "name": "Ichor of Devils", "spellId": 386664, "icon": "spell_yorsahj_bloodboil_greenoil", "index": 100}, {"id": 91445, "definitionId": 96447, "maxRanks": 1, "type": "passive", "name": "Frequent Donor", "spellId": 386686, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 93178, "name": "Socrethar's Guile", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71918, 71925], "prev": [71936, 71956], "entries": [{"id": 115461, "definitionId": 120473, "maxRanks": 2, "type": "passive", "name": "Socrethar's Guile", "spellId": 405936, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93179, "name": "Sargerei Technique", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71925, 71938], "prev": [71956, 71942], "entries": [{"id": 115462, "definitionId": 120474, "maxRanks": 2, "type": "passive", "name": "Sargerei Technique", "spellId": 405955, "icon": "70_inscription_glyph_demonhunter_major", "index": 100}]}, {"id": 71941, "name": "Darkfury / Shadowflame", "type": "choice", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71938], "prev": [71942], "entries": [{"id": 91451, "definitionId": 96453, "maxRanks": 1, "type": "passive", "name": "Darkfury", "spellId": 264874, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 91450, "definitionId": 96452, "maxRanks": 1, "type": "active", "name": "Shadowflame", "spellId": 384069, "icon": "ability_warlock_shadowflame", "index": 200}]}, {"id": 71918, "name": "Swift Artifice", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71915, 71924], "prev": [71937, 93178], "entries": [{"id": 91425, "definitionId": 96427, "maxRanks": 1, "type": "passive", "name": "Swift Artifice", "spellId": 452902, "icon": "spell_shadow_destructivesoul", "index": 100}]}, {"id": 71925, "name": "Demonic Tactics", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71924, 71923], "prev": [93178, 93179], "entries": [{"id": 91433, "definitionId": 96435, "maxRanks": 1, "type": "passive", "name": "Demonic Tactics", "spellId": 452894, "icon": "inv_helm_laughingskull_01", "index": 100}]}, {"id": 71938, "name": "Teachings of the Black Harvest", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71923, 71917], "prev": [71941, 93179], "entries": [{"id": 91447, "definitionId": 96449, "maxRanks": 1, "type": "passive", "name": "Teachings of the Black Harvest", "spellId": 385881, "icon": "inv_misc_codexofxerrath_nochains", "index": 100}]}, {"id": 71915, "name": "Resolute Barrier", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926], "prev": [71918], "entries": [{"id": 91421, "definitionId": 96423, "maxRanks": 2, "type": "passive", "name": "Resolute Barrier", "spellId": 389359, "icon": "inv_shield_1h_demonweapon_c_01", "index": 100}]}, {"id": 71924, "name": "Fel Synergy", "type": "single", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926, 71939], "prev": [71918, 71925], "entries": [{"id": 91432, "definitionId": 96434, "maxRanks": 2, "type": "passive", "name": "Fel Synergy", "spellId": 389367, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 71923, "name": "Soul Link", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71939, 71957], "prev": [71925, 71938], "entries": [{"id": 91431, "definitionId": 96433, "maxRanks": 2, "type": "passive", "name": "Soul Link", "spellId": 108415, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 71917, "name": "Demonic Resilience", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71957], "prev": [71938], "entries": [{"id": 91424, "definitionId": 96426, "maxRanks": 2, "type": "passive", "name": "Demonic Resilience", "spellId": 389590, "icon": "ability_warlock_avoidance", "index": 100}]}, {"id": 71926, "name": "Pact of Gluttony", "type": "single", "posX": 3000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71915], "entries": [{"id": 91434, "definitionId": 96436, "maxRanks": 1, "type": "passive", "name": "Pact of Gluttony", "spellId": 386689, "icon": "warlock__bloodstone", "index": 100}]}, {"id": 71939, "name": "Soul Conduit", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71923], "entries": [{"id": 91427, "definitionId": 96450, "maxRanks": 1, "type": "passive", "name": "Soul Conduit", "spellId": 215941, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 71957, "name": "Soulburn", "type": "single", "posX": 5400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71917, 71923], "entries": [{"id": 91469, "definitionId": 96471, "maxRanks": 1, "type": "active", "name": "Soulburn", "spellId": 385899, "icon": "spell_warlock_soulburn", "index": 100}]}], "specNodes": [{"id": 101891, "name": "Demoniac", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [101893, 101894], "prev": [], "entries": [{"id": 125834, "definitionId": 130665, "maxRanks": 1, "type": "active", "name": "Demoniac", "spellId": 426115, "icon": "inv_demonbolt", "index": 100}]}, {"id": 101893, "name": "Implosion", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [101922, 101901], "prev": [101891], "entries": [{"id": 125836, "definitionId": 130667, "maxRanks": 1, "type": "active", "name": "Implosion", "spellId": 196277, "icon": "inv_implosion", "index": 100}]}, {"id": 101894, "name": "Call Dreadstalkers", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [101888, 101887], "prev": [101891], "entries": [{"id": 125837, "definitionId": 130668, "maxRanks": 1, "type": "active", "name": "Call Dreadstalkers", "spellId": 104316, "icon": "spell_warlock_calldreadstalkers", "index": 100}]}, {"id": 101922, "name": "Imp Gang Boss", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [101925], "prev": [101893], "entries": [{"id": 125868, "definitionId": 130699, "maxRanks": 1, "type": "passive", "name": "Imp Gang Boss", "spellId": 387445, "icon": "ability_warlock_empoweredimp", "index": 100}]}, {"id": 101901, "name": "Spiteful Reconstitution", "type": "single", "posX": 12000, "posY": 2400, "maxRanks": 1, "next": [101925, 101899], "prev": [101893], "entries": [{"id": 125846, "definitionId": 130677, "maxRanks": 1, "type": "passive", "name": "Spiteful Reconstitution", "spellId": 428394, "icon": "spell_shadow_impphaseshift", "index": 100}]}, {"id": 101888, "name": "Dreadlash", "type": "single", "posX": 13200, "posY": 2400, "maxRanks": 1, "next": [101899, 101890], "prev": [101894], "entries": [{"id": 125830, "definitionId": 130661, "maxRanks": 1, "type": "passive", "name": "Dreadlash", "spellId": 264078, "icon": "spell_shadow_summonvoidwalker", "index": 100}]}, {"id": 101887, "name": "Carnivorous Stalkers", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [101890], "prev": [101894], "entries": [{"id": 125829, "definitionId": 130660, "maxRanks": 1, "type": "passive", "name": "Carnivorous Stalkers", "spellId": 386194, "icon": "warlock_pvp_callfelhunter", "index": 100}]}, {"id": 101925, "name": "Inner Demons", "type": "single", "posX": 11400, "posY": 3000, "maxRanks": 1, "next": [101886, 101914, 101923], "prev": [101922, 101901], "entries": [{"id": 125871, "definitionId": 130702, "maxRanks": 1, "type": "passive", "name": "Inner Demons", "spellId": 267216, "icon": "ability_warlock_eradication", "index": 100}]}, {"id": 101899, "name": "Soul Strike", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [101923, 101897, 101884], "prev": [101901, 101888], "entries": [{"id": 125844, "definitionId": 130675, "maxRanks": 1, "type": "passive", "name": "Soul Strike", "spellId": 428344, "icon": "inv_polearm_2h_fellord_04", "index": 100}]}, {"id": 101890, "name": "Bilescourge Bombers / Demonic Strength", "type": "choice", "posX": 13800, "posY": 3000, "maxRanks": 1, "next": [101884, 101921, 101926], "prev": [101888, 101887], "entries": [{"id": 125833, "definitionId": 130664, "maxRanks": 1, "type": "active", "name": "Bilescourge Bombers", "spellId": 267211, "icon": "ability_hunter_pet_bat", "index": 100}, {"id": 125832, "definitionId": 130663, "maxRanks": 1, "type": "active", "name": "Demonic Strength", "spellId": 267171, "icon": "ability_warlock_demonicempowerment", "index": 200}]}, {"id": 101886, "name": "Sacrificed Souls", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101916], "prev": [101925], "entries": [{"id": 125828, "definitionId": 130659, "maxRanks": 1, "type": "passive", "name": "Sacrificed Souls", "spellId": 267214, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 101914, "name": "Rune of Shadows", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101916], "prev": [101925], "entries": [{"id": 125860, "definitionId": 130691, "maxRanks": 1, "type": "passive", "name": "Rune of Shadows", "spellId": 453744, "icon": "spell_shadow_rune", "index": 100}]}, {"id": 101923, "name": "Imp-erator", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101916, 101905], "prev": [101925, 101899], "entries": [{"id": 125869, "definitionId": 130700, "maxRanks": 1, "type": "passive", "name": "Imp-erator", "spellId": 416230, "icon": "spell_warlock_summonimpoutland", "index": 100}]}, {"id": 101897, "name": "Fel Invocation", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101905], "prev": [101899], "entries": [{"id": 125842, "definitionId": 130673, "maxRanks": 1, "type": "passive", "name": "Fel Invocation", "spellId": 428351, "icon": "ability_bossfelorcs_necromancer_orange", "index": 100}]}, {"id": 101884, "name": "Annihilan Training", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101905, 101907], "prev": [101890, 101899], "entries": [{"id": 125826, "definitionId": 130657, "maxRanks": 1, "type": "passive", "name": "Annihilan Training", "spellId": 386174, "icon": "ability_bossmannoroth_glaivethrust", "index": 100}]}, {"id": 101921, "name": "Shadow Invocation", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101907], "prev": [101890], "entries": [{"id": 125867, "definitionId": 130698, "maxRanks": 1, "type": "passive", "name": "Shadow Invocation", "spellId": 422054, "icon": "ability_bossfelorcs_necromancer_purple", "index": 100}]}, {"id": 101926, "name": "Wicked Maw", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101907], "prev": [101890], "entries": [{"id": 125872, "definitionId": 130703, "maxRanks": 1, "type": "passive", "name": "Wicked Maw", "spellId": 267170, "icon": "ability_creature_poison_01_purple", "index": 100}]}, {"id": 101916, "name": "Power Siphon", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101902, 101904, 101915], "prev": [101914, 101923, 101886], "entries": [{"id": 125862, "definitionId": 130693, "maxRanks": 1, "type": "active", "name": "Power Siphon", "spellId": 264130, "icon": "ability_warlock_backdraft", "index": 100}]}, {"id": 101905, "name": "Summon Demonic Tyrant", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101915, 101908, 101903], "prev": [101884, 101923, 101897], "entries": [{"id": 125850, "definitionId": 130681, "maxRanks": 1, "type": "active", "name": "Summon Demonic Tyrant", "spellId": 265187, "icon": "inv_summondemonictyrant", "index": 100}]}, {"id": 101907, "name": "Grimoire: Felguard", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101903, 101912, 101911], "prev": [101884, 101921, 101926], "entries": [{"id": 125852, "definitionId": 130683, "maxRanks": 1, "type": "active", "name": "Grimoire: Felguard", "spellId": 111898, "icon": "spell_shadow_demonicpact", "index": 100}]}, {"id": 101902, "name": "The Expendables", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101919], "prev": [101916], "entries": [{"id": 125847, "definitionId": 130678, "maxRanks": 1, "type": "passive", "name": "The Expendables", "spellId": 387600, "icon": "ability_warlock_impoweredimp", "index": 100}]}, {"id": 101904, "name": "Blood Invocation", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101919], "prev": [101916], "entries": [{"id": 125849, "definitionId": 130680, "maxRanks": 1, "type": "passive", "name": "Blood Invocation", "spellId": 455576, "icon": "ability_bossfelorcs_necromancer_red", "index": 100}]}, {"id": 101915, "name": "Umbral Blaze", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101919, 101924, 101900], "prev": [101916, 101905], "entries": [{"id": 125861, "definitionId": 130692, "maxRanks": 1, "type": "passive", "name": "Umbral Blaze", "spellId": 405798, "icon": "ability_warlock_everlastingaffliction", "index": 100}]}, {"id": 101908, "name": "Reign of Tyranny", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101900], "prev": [101905], "entries": [{"id": 125854, "definitionId": 130685, "maxRanks": 1, "type": "passive", "name": "Reign of Tyranny", "spellId": 427684, "icon": "ability_bossdarkvindicator_auraofoppression", "index": 100}]}, {"id": 101903, "name": "Demonic Calling", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101900, 101889, 101913], "prev": [101907, 101905], "entries": [{"id": 125848, "definitionId": 130679, "maxRanks": 1, "type": "passive", "name": "Demonic Calling", "spellId": 205145, "icon": "ability_warlock_impoweredimp", "index": 100}]}, {"id": 101912, "name": "Fiendish Oblation", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101913], "prev": [101907], "entries": [{"id": 125858, "definitionId": 130689, "maxRanks": 1, "type": "passive", "name": "Fiendish Oblation", "spellId": 455569, "icon": "inv_ember_fel", "index": 100}]}, {"id": 101911, "name": "Fel Sunder", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101913], "prev": [101907], "entries": [{"id": 125857, "definitionId": 130688, "maxRanks": 1, "type": "passive", "name": "Fel Sunder", "spellId": 387399, "icon": "ability_creature_felsunder", "index": 100}]}, {"id": 101919, "name": "Doom", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [101906, 101885], "prev": [101904, 101915, 101902], "entries": [{"id": 125865, "definitionId": 130696, "maxRanks": 1, "type": "passive", "name": "Doom", "spellId": 460551, "icon": "spell_shadow_auraofdarkness", "index": 100}]}, {"id": 101924, "name": "Pact of the Imp Mother", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101915], "entries": [{"id": 125870, "definitionId": 130701, "maxRanks": 1, "type": "passive", "name": "Pact of the Imp Mother", "spellId": 387541, "icon": "inv_archaeology_70_impgenerator", "index": 100}]}, {"id": 101900, "name": "Summon Vilefiend", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [101918, 101898], "prev": [101915, 101903, 101908], "entries": [{"id": 125845, "definitionId": 130676, "maxRanks": 1, "type": "active", "name": "Summon Vilefiend", "spellId": 264119, "icon": "inv_argusfelstalkermount", "index": 100}]}, {"id": 101889, "name": "Dread Calling", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101903], "entries": [{"id": 125831, "definitionId": 130662, "maxRanks": 1, "type": "passive", "name": "Dread Calling", "spellId": 387391, "icon": "achievement_boss_argus_hound", "index": 100}]}, {"id": 101913, "name": "Antoran Armaments", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [101892, 101920], "prev": [101911, 101912, 101903], "entries": [{"id": 125859, "definitionId": 130690, "maxRanks": 1, "type": "passive", "name": "Antoran Armaments", "spellId": 387494, "icon": "inv_axe_1h_felfireraid_d_01", "index": 100}]}, {"id": 101906, "name": "Doom Eternal", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101917], "prev": [101919], "entries": [{"id": 125851, "definitionId": 130682, "maxRanks": 1, "type": "passive", "name": "Doom Eternal", "spellId": 455585, "icon": "inv_offhand_1h_artifactdoomhammer_d_06", "index": 100}]}, {"id": 101885, "name": "Impending Doom", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101917], "prev": [101919], "entries": [{"id": 125827, "definitionId": 130658, "maxRanks": 1, "type": "passive", "name": "Impending Doom", "spellId": 455587, "icon": "spell_shadow_unstableafllictions", "index": 100}]}, {"id": 101918, "name": "Foul Mouth", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101910, 101895], "prev": [101900], "entries": [{"id": 125864, "definitionId": 130695, "maxRanks": 1, "type": "passive", "name": "Foul Mouth", "spellId": 455502, "icon": "spell_deathvortex", "index": 100}]}, {"id": 101898, "name": "The Houndmaster's Gambit", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101895, 101909], "prev": [101900], "entries": [{"id": 125843, "definitionId": 130674, "maxRanks": 1, "type": "passive", "name": "The Houndmaster's Gambit", "spellId": 455572, "icon": "achievement_boss_hellfire_fellord", "index": 100}]}, {"id": 101892, "name": "Improved Demonic Tactics", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101896], "prev": [101913], "entries": [{"id": 125835, "definitionId": 130666, "maxRanks": 1, "type": "passive", "name": "Improved Demonic Tactics", "spellId": 453800, "icon": "ability_warlock_ancientgrimoire", "index": 0}]}, {"id": 101920, "name": "Demonic Brutality", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101896], "prev": [101913], "entries": [{"id": 125866, "definitionId": 130697, "maxRanks": 1, "type": "passive", "name": "Demonic Brutality", "spellId": 453908, "icon": "ability_demonhunter_bladedance", "index": 0}]}, {"id": 101917, "name": "Pact of the Ered'ruin", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101906, 101885], "entries": [{"id": 125863, "definitionId": 130694, "maxRanks": 1, "type": "passive", "name": "Pact of the Ered'ruin", "spellId": 453568, "icon": "warlock_summon_doomguard", "index": 100}]}, {"id": 101910, "name": "Shadowtouched", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101918], "entries": [{"id": 125856, "definitionId": 130687, "maxRanks": 1, "type": "passive", "name": "Shadowtouched", "spellId": 453619, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 101895, "name": "Mark of Shatug / Mark of F'harg", "type": "choice", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101898, 101918], "entries": [{"id": 125839, "definitionId": 130670, "maxRanks": 1, "type": "passive", "name": "Mark of Shatug", "spellId": 455449, "icon": "inv_felhound3_shadow_mount", "index": 100}, {"id": 125838, "definitionId": 130669, "maxRanks": 1, "type": "passive", "name": "Mark of F'harg", "spellId": 455450, "icon": "inv_felhound3_shadow_fire", "index": 200}]}, {"id": 101909, "name": "Flametouched", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101898], "entries": [{"id": 125855, "definitionId": 130686, "maxRanks": 1, "type": "passive", "name": "Flametouched", "spellId": 453699, "icon": "spell_shaman_firenova", "index": 100}]}, {"id": 101896, "name": "Immutable Hatred / Guillotine", "type": "choice", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101920, 101892], "entries": [{"id": 125841, "definitionId": 130672, "maxRanks": 1, "type": "passive", "name": "Immutable Hatred", "spellId": 405670, "icon": "ability_creature_felfrenzy", "index": 100}, {"id": 125840, "definitionId": 130671, "maxRanks": 1, "type": "active", "name": "Guillotine", "spellId": 386833, "icon": "inv_axe_2h_felfireraid_d_01", "index": 200}]}], "heroNodes": [{"id": 94851, "name": "Demonic Soul", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 57, "next": [94825, 94847, 94832], "prev": [], "entries": [{"id": 117448, "definitionId": 122460, "maxRanks": 1, "type": "passive", "name": "Demonic Soul", "spellId": 449614, "icon": "inv_ability_soulharvesterwarlock_demonicsoul", "index": 100}], "freeNode": true}, {"id": 94825, "name": "Necrolyte Teachings", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94850], "prev": [94851], "entries": [{"id": 117422, "definitionId": 122434, "maxRanks": 1, "type": "passive", "name": "Necrolyte Teachings", "spellId": 449620, "icon": "spell_necro_deathall", "index": 100}]}, {"id": 94847, "name": "Soul Anathema", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94823], "prev": [94851], "entries": [{"id": 117444, "definitionId": 122456, "maxRanks": 1, "type": "passive", "name": "Soul Anathema", "spellId": 449624, "icon": "spell_necro_inevitableend", "index": 100}]}, {"id": 94832, "name": "Demoniac's Fervor", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94824], "prev": [94851], "entries": [{"id": 117429, "definitionId": 122441, "maxRanks": 1, "type": "passive", "name": "Demoniac's Fervor", "spellId": 449629, "icon": "inv_helm_mask_zulgurub_d_01", "index": 100}]}, {"id": 94850, "name": "Gorebound Fortitude / Friends In Dark Places", "type": "choice", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94821], "prev": [94825], "entries": [{"id": 117447, "definitionId": 122459, "maxRanks": 1, "type": "passive", "name": "Gorebound Fortitude", "spellId": 449701, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 123840, "definitionId": 128678, "maxRanks": 1, "type": "passive", "name": "Friends In Dark Places", "spellId": 449703, "icon": "spell_shadow_deathpact", "index": 200}]}, {"id": 94823, "name": "Shared Fate / Feast of Souls", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94846], "prev": [94847], "entries": [{"id": 117420, "definitionId": 122432, "maxRanks": 1, "type": "passive", "name": "Shared Fate", "spellId": 449704, "icon": "ability_warlock_soullink", "index": 100}, {"id": 123839, "definitionId": 128677, "maxRanks": 1, "type": "passive", "name": "Feast of Souls", "spellId": 449706, "icon": "ability_warlock_improvedsoulleech", "index": 200}]}, {"id": 94824, "name": "Eternal Servitude / Gorefiend's Resolve", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94838], "prev": [94832], "entries": [{"id": 117421, "definitionId": 122433, "maxRanks": 1, "type": "passive", "name": "Eternal Servitude", "spellId": 449707, "icon": "ability_demonhunter_infernalchains", "index": 100}, {"id": 123838, "definitionId": 128676, "maxRanks": 1, "type": "passive", "name": "Gorefiend's Resolve", "spellId": 389623, "icon": "ability_rogue_masterofsubtlety", "index": 200}]}, {"id": 94821, "name": "Wicked Reaping", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94850], "entries": [{"id": 117418, "definitionId": 122430, "maxRanks": 1, "type": "passive", "name": "Wicked Reaping", "spellId": 449631, "icon": "inv_staff_2h_artifactdeadwind_d_05", "index": 100}]}, {"id": 94846, "name": "Quietus", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94823], "entries": [{"id": 117443, "definitionId": 122455, "maxRanks": 1, "type": "passive", "name": "Quietus", "spellId": 449634, "icon": "spell_necro_conclave", "index": 100}]}, {"id": 94838, "name": "Sataiel's Volition", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "next": [94857], "prev": [94824], "entries": [{"id": 117435, "definitionId": 122447, "maxRanks": 1, "type": "passive", "name": "Sataiel's Volition", "spellId": 449637, "icon": "spell_necro_deathlyecho", "index": 100}]}, {"id": 94857, "name": "Shadow of Death", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 57, "requiresNode": 101905, "next": [], "prev": [94846, 94821, 94838], "entries": [{"id": 117454, "definitionId": 122466, "maxRanks": 1, "type": "passive", "name": "Shadow of Death", "spellId": 449638, "icon": "spell_arcane_prismaticcloak", "index": 100}]}, {"id": 94855, "name": "Diabolic Ritual", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 59, "next": [94849, 94856, 94826], "prev": [], "entries": [{"id": 117452, "definitionId": 122464, "maxRanks": 1, "type": "passive", "name": "Diabolic Ritual", "spellId": 428514, "icon": "ability_bossfelorcs_necromancer_purple", "index": 100}], "freeNode": true}, {"id": 94849, "name": "Cloven Souls", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94836], "prev": [94855], "entries": [{"id": 117446, "definitionId": 122458, "maxRanks": 1, "type": "passive", "name": "Cloven Souls", "spellId": 428517, "icon": "ability_creature_felfrenzy", "index": 100}]}, {"id": 94856, "name": "Touch of Rancora", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94848], "prev": [94855], "entries": [{"id": 117453, "definitionId": 122465, "maxRanks": 1, "type": "passive", "name": "Touch of Rancora", "spellId": 429893, "icon": "ability_bossfellord_felspike", "index": 100}]}, {"id": 94826, "name": "Secrets of the Coven", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94852], "prev": [94855], "entries": [{"id": 117423, "definitionId": 122435, "maxRanks": 1, "type": "passive", "name": "Secrets of the Coven", "spellId": 428518, "icon": "achievement_boss_argus_shivan", "index": 100}]}, {"id": 94836, "name": "Soul-Etched Circles / Annihilan's Bellow", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "next": [94833], "prev": [94849], "entries": [{"id": 117433, "definitionId": 122445, "maxRanks": 1, "type": "passive", "name": "Soul-Etched Circles", "spellId": 428911, "icon": "spell_shadow_demoniccircleteleport", "index": 100}, {"id": 118837, "definitionId": 123737, "maxRanks": 1, "type": "passive", "name": "Annihilan's Bellow", "spellId": 429072, "icon": "ability_physical_taunt", "index": 200}]}, {"id": 94848, "name": "Cruelty of Kerxan / Infernal Machine", "type": "choice", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "requiresNode": 101905, "next": [94831], "prev": [94856], "entries": [{"id": 117445, "definitionId": 122457, "maxRanks": 1, "type": "passive", "name": "Cruelty of Kerxan", "spellId": 429902, "icon": "creatureportrait_fomorhand", "index": 100}, {"id": 118838, "definitionId": 123738, "maxRanks": 1, "type": "passive", "name": "Infernal Machine", "spellId": 429917, "icon": "inv_misc_supersoulash", "index": 200}]}, {"id": 94852, "name": "Infernal Vitality / Infernal Bulwark", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "next": [94843], "prev": [94826], "entries": [{"id": 117449, "definitionId": 122461, "maxRanks": 1, "type": "passive", "name": "Infernal Vitality", "spellId": 429115, "icon": "inv_fabric_felcloth_ebon", "index": 100}, {"id": 118839, "definitionId": 123739, "maxRanks": 1, "type": "passive", "name": "Infernal Bulwark", "spellId": 429130, "icon": "spell_fire_felfireward", "index": 200}]}, {"id": 94833, "name": "Flames of Xoroth", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "next": [94830], "prev": [94836], "entries": [{"id": 117430, "definitionId": 122442, "maxRanks": 1, "type": "passive", "name": "Flames of Xoroth", "spellId": 429657, "icon": "ability_warlock_burningembers", "index": 100}]}, {"id": 94831, "name": "Abyssal Dominion", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "requiresNode": 71985, "next": [94830], "prev": [94848], "entries": [{"id": 117428, "definitionId": 122440, "maxRanks": 1, "type": "passive", "name": "Abyssal Dominion", "spellId": 429581, "icon": "70_inscription_vantus_rune_tomb", "index": 100}]}, {"id": 94843, "name": "Gloom of Nathreza", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "next": [94830], "prev": [94852], "entries": [{"id": 117440, "definitionId": 122452, "maxRanks": 1, "type": "passive", "name": "Gloom of Nathreza", "spellId": 429899, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 94830, "name": "Ruination", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 59, "next": [], "prev": [94831, 94833, 94843], "entries": [{"id": 117427, "definitionId": 122439, "maxRanks": 1, "type": "passive", "name": "Ruination", "spellId": 428522, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}]}], "subTreeNodes": [{"id": 99849, "name": "Diabolist / Soul Harvester", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123386, "type": "subtree", "name": "Diabolist", "traitSubTreeId": 59, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-diabolist", "nodes": [94855, 94849, 94856, 94826, 94836, 94848, 94852, 94833, 94831, 94843, 94830]}, {"id": 123383, "type": "subtree", "name": "Soul Harvester", "traitSubTreeId": 57, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-soulharvester", "nodes": [94851, 94825, 94847, 94832, 94850, 94823, 94824, 94821, 94846, 94838, 94857]}]}], "fullNodeOrder": [71915, 71916, 71917, 71918, 71921, 71922, 71923, 71924, 71925, 71926, 71927, 71928, 71930, 71931, 71932, 71933, 71934, 71935, 71936, 71937, 71938, 71939, 71940, 71941, 71942, 71944, 71946, 71947, 71948, 71949, 71950, 71951, 71952, 71953, 71954, 71955, 71956, 71957, 71960, 71961, 71962, 71964, 71965, 71966, 71967, 71968, 71969, 71970, 71971, 71972, 71973, 71974, 71975, 71978, 71979, 71980, 71982, 71983, 71984, 71985, 71986, 71987, 72031, 72032, 72033, 72034, 72035, 72037, 72038, 72039, 72040, 72041, 72042, 72043, 72045, 72046, 72047, 72048, 72049, 72050, 72051, 72052, 72053, 72054, 72055, 72056, 72057, 72058, 72059, 72060, 72061, 72062, 72063, 72064, 72065, 72066, 72067, 72068, 72069, 93178, 93179, 94821, 94822, 94823, 94824, 94825, 94826, 94829, 94830, 94831, 94832, 94833, 94834, 94835, 94836, 94837, 94838, 94840, 94842, 94843, 94844, 94845, 94846, 94847, 94848, 94849, 94850, 94851, 94852, 94853, 94854, 94855, 94856, 94857, 99848, 99849, 99850, 100940, 100941, 101884, 101885, 101886, 101887, 101888, 101889, 101890, 101891, 101892, 101893, 101894, 101895, 101896, 101897, 101898, 101899, 101900, 101901, 101902, 101903, 101904, 101905, 101906, 101907, 101908, 101909, 101910, 101911, 101912, 101913, 101914, 101915, 101916, 101917, 101918, 101919, 101920, 101921, 101922, 101923, 101924, 101925, 101926, 101992, 101993, 101994, 101995, 101996, 101997, 101998, 102002, 102003, 102029, 102030, 102031, 102032, 102033, 102246, 102247, 102427]}, {"traitTreeId": 720, "className": "Warlock", "classId": 9, "specName": "Destruction", "specId": 267, "classNodes": [{"id": 71931, "name": "Fel Domination", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71932, 71952], "prev": [], "entries": [{"id": 91439, "definitionId": 96441, "maxRanks": 1, "type": "active", "name": "Fel Domination", "spellId": 333889, "icon": "spell_shadow_felmending", "index": 100}]}, {"id": 71933, "name": "Soul Leech", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71952, 71950], "prev": [], "entries": [{"id": 91441, "definitionId": 96443, "maxRanks": 1, "type": "passive", "name": "Soul Leech", "spellId": 108370, "icon": "warlock_siphonlife", "index": 100}], "freeNode": true}, {"id": 71949, "name": "Burning Rush", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71950, 71948], "prev": [], "entries": [{"id": 91460, "definitionId": 96462, "maxRanks": 1, "type": "active", "name": "Burning Rush", "spellId": 111400, "icon": "ability_deathwing_sealarmorbreachtga", "index": 100}]}, {"id": 71932, "name": "Fel Pact", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [71951], "prev": [71931], "entries": [{"id": 91440, "definitionId": 96442, "maxRanks": 1, "type": "passive", "name": "Fel Pact", "spellId": 386113, "icon": "spell_shadow_impphaseshift", "index": 100}]}, {"id": 71952, "name": "Demon Skin", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 2, "next": [71951, 100941], "prev": [71933, 71931], "entries": [{"id": 91463, "definitionId": 96465, "maxRanks": 2, "type": "passive", "name": "Demon Skin", "spellId": 219272, "icon": "spell_shadow_ragingscream", "index": 100}]}, {"id": 71950, "name": "Fel Armor", "type": "single", "posX": 4800, "posY": 1800, "maxRanks": 2, "next": [100941, 71947], "prev": [71933, 71949], "entries": [{"id": 91461, "definitionId": 96463, "maxRanks": 2, "type": "passive", "name": "Fel Armor", "spellId": 386124, "icon": "spell_shadow_felarmour", "index": 0}]}, {"id": 71948, "name": "Fiendish Stride", "type": "single", "posX": 6000, "posY": 1800, "maxRanks": 1, "next": [71947], "prev": [71949], "entries": [{"id": 91459, "definitionId": 96461, "maxRanks": 1, "type": "passive", "name": "Fiendish Stride", "spellId": 386110, "icon": "inv_misc_moosehoof_fel", "index": 100}]}, {"id": 71951, "name": "Curses of Enfeeblement", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [71934, 71930, 71928], "prev": [71932, 71952], "entries": [{"id": 91462, "definitionId": 96464, "maxRanks": 1, "type": "active", "name": "Curses of Enfeeblement", "spellId": 386105, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 100941, "name": "Demonic Circle", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [71928, 71954, 71946], "prev": [71950, 71952], "entries": [{"id": 124694, "definitionId": 129532, "maxRanks": 1, "type": "active", "name": "Demonic Circle", "spellId": 268358, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 71947, "name": "Howl of Terror / Mortal Coil", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [71946, 71922, 71944], "prev": [71950, 71948], "entries": [{"id": 91458, "definitionId": 96460, "maxRanks": 1, "type": "active", "name": "Howl of Terror", "spellId": 5484, "icon": "ability_warlock_howlofterror", "index": 100}, {"id": 91457, "definitionId": 96459, "maxRanks": 1, "type": "active", "name": "Mortal Coil", "spellId": 6789, "icon": "ability_warlock_mortalcoil", "index": 200}]}, {"id": 71934, "name": "Amplify Curse", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [71935, 71953], "prev": [71951], "entries": [{"id": 91442, "definitionId": 96444, "maxRanks": 1, "type": "active", "name": "Amplify Curse", "spellId": 328774, "icon": "spell_shadow_contagion", "index": 100}]}, {"id": 71930, "name": "Demonic Embrace", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [71953], "prev": [71951], "entries": [{"id": 91438, "definitionId": 96440, "maxRanks": 1, "type": "passive", "name": "Demonic Embrace", "spellId": 288843, "icon": "spell_shadow_metamorphosis", "index": 100}]}, {"id": 71928, "name": "Demonic Inspiration", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [71953, 71927, 71916], "prev": [71951, 100941], "entries": [{"id": 91436, "definitionId": 96438, "maxRanks": 1, "type": "passive", "name": "Demonic Inspiration", "spellId": 386858, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 71954, "name": "Abyss Walker", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [71916], "prev": [100941], "entries": [{"id": 91465, "definitionId": 96467, "maxRanks": 1, "type": "passive", "name": "Abyss Walker", "spellId": 389609, "icon": "achievement_explore_argus", "index": 100}]}, {"id": 71946, "name": "Wrathful Minion", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [71916, 71955, 71940], "prev": [71947, 100941], "entries": [{"id": 91456, "definitionId": 96458, "maxRanks": 1, "type": "passive", "name": "Wrathful Minion", "spellId": 386864, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 71922, "name": "Demonic Fortitude", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91430, "definitionId": 96432, "maxRanks": 1, "type": "passive", "name": "Demonic Fortitude", "spellId": 386617, "icon": "spell_warlock_summonimpoutland", "index": 100}]}, {"id": 71944, "name": "Banish", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91454, "definitionId": 96456, "maxRanks": 1, "type": "active", "name": "Banish", "spellId": 710, "icon": "spell_shadow_cripple", "index": 100}]}, {"id": 71935, "name": "Teachings of the Satyr", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936], "prev": [71934], "entries": [{"id": 91443, "definitionId": 96445, "maxRanks": 1, "type": "passive", "name": "Teachings of the Satyr", "spellId": 387972, "icon": "spell_shadow_carrionswarm", "index": 100}]}, {"id": 71953, "name": "Accrued Vitality", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71936], "prev": [71934, 71928, 71930], "entries": [{"id": 91464, "definitionId": 96466, "maxRanks": 2, "type": "passive", "name": "Accrued Vitality", "spellId": 386613, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 71927, "name": "Sweet Souls", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936, 71956], "prev": [71928], "entries": [{"id": 91435, "definitionId": 96437, "maxRanks": 1, "type": "passive", "name": "Sweet Souls", "spellId": 386620, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 71916, "name": "Nightmare / Horrify", "type": "choice", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71956], "prev": [71946, 71928, 71954], "entries": [{"id": 91422, "definitionId": 96424, "maxRanks": 1, "type": "passive", "name": "Nightmare", "spellId": 386648, "icon": "spell_shadow_possession", "index": 100}, {"id": 115459, "definitionId": 120471, "maxRanks": 1, "type": "passive", "name": "Horrify", "spellId": 56244, "icon": "spell_nzinsanity_bloodthirst", "index": 200}]}, {"id": 71955, "name": "Demonic Gateway", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71942, 71956], "prev": [71946], "entries": [{"id": 91466, "definitionId": 96468, "maxRanks": 1, "type": "active", "name": "Demonic Gateway", "spellId": 111771, "icon": "spell_warlock_demonicportal_green", "index": 100}]}, {"id": 71940, "name": "Lifeblood", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71942], "prev": [71922, 71944, 71946], "entries": [{"id": 91449, "definitionId": 96451, "maxRanks": 2, "type": "passive", "name": "Lifeblood", "spellId": 386646, "icon": "warlock__healthstone", "index": 100}]}, {"id": 71936, "name": "Dark Pact", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71937, 93178], "prev": [71927, 71935, 71953], "entries": [{"id": 91444, "definitionId": 96446, "maxRanks": 1, "type": "active", "name": "Dark Pact", "spellId": 108416, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 71956, "name": "Strength of Will / Dark Accord", "type": "choice", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93178, 93179], "prev": [71916, 71955, 71927], "entries": [{"id": 91468, "definitionId": 96470, "maxRanks": 1, "type": "passive", "name": "Strength of Will", "spellId": 317138, "icon": "spell_shadow_demonictactics", "index": 100}, {"id": 91467, "definitionId": 96469, "maxRanks": 1, "type": "passive", "name": "Dark Accord", "spellId": 386659, "icon": "ability_warlock_improveddemonictactics", "index": 200}]}, {"id": 71942, "name": "Shadowfury", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93179, 71941], "prev": [71955, 71940], "entries": [{"id": 91452, "definitionId": 96454, "maxRanks": 1, "type": "active", "name": "Shadowfury", "spellId": 30283, "icon": "ability_warlock_shadowfurytga", "index": 200}]}, {"id": 71937, "name": "Ichor of Devils / Frequent Donor", "type": "choice", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71918], "prev": [71936], "entries": [{"id": 91446, "definitionId": 96448, "maxRanks": 1, "type": "passive", "name": "Ichor of Devils", "spellId": 386664, "icon": "spell_yorsahj_bloodboil_greenoil", "index": 100}, {"id": 91445, "definitionId": 96447, "maxRanks": 1, "type": "passive", "name": "Frequent Donor", "spellId": 386686, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 93178, "name": "Socrethar's Guile", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71918, 71925], "prev": [71936, 71956], "entries": [{"id": 115461, "definitionId": 120473, "maxRanks": 2, "type": "passive", "name": "Socrethar's Guile", "spellId": 405936, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93179, "name": "Sargerei Technique", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71925, 71938], "prev": [71956, 71942], "entries": [{"id": 115462, "definitionId": 120474, "maxRanks": 2, "type": "passive", "name": "Sargerei Technique", "spellId": 405955, "icon": "70_inscription_glyph_demonhunter_major", "index": 100}]}, {"id": 71941, "name": "Darkfury / Shadowflame", "type": "choice", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71938], "prev": [71942], "entries": [{"id": 91451, "definitionId": 96453, "maxRanks": 1, "type": "passive", "name": "Darkfury", "spellId": 264874, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 91450, "definitionId": 96452, "maxRanks": 1, "type": "active", "name": "Shadowflame", "spellId": 384069, "icon": "ability_warlock_shadowflame", "index": 200}]}, {"id": 71918, "name": "Swift Artifice", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71915, 71924], "prev": [71937, 93178], "entries": [{"id": 91425, "definitionId": 96427, "maxRanks": 1, "type": "passive", "name": "Swift Artifice", "spellId": 452902, "icon": "spell_shadow_destructivesoul", "index": 100}]}, {"id": 71925, "name": "Demonic Tactics", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71924, 71923], "prev": [93178, 93179], "entries": [{"id": 91433, "definitionId": 96435, "maxRanks": 1, "type": "passive", "name": "Demonic Tactics", "spellId": 452894, "icon": "inv_helm_laughingskull_01", "index": 100}]}, {"id": 71938, "name": "Teachings of the Black Harvest", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71923, 71917], "prev": [71941, 93179], "entries": [{"id": 91447, "definitionId": 96449, "maxRanks": 1, "type": "passive", "name": "Teachings of the Black Harvest", "spellId": 385881, "icon": "inv_misc_codexofxerrath_nochains", "index": 100}]}, {"id": 71915, "name": "Resolute Barrier", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926], "prev": [71918], "entries": [{"id": 91421, "definitionId": 96423, "maxRanks": 2, "type": "passive", "name": "Resolute Barrier", "spellId": 389359, "icon": "inv_shield_1h_demonweapon_c_01", "index": 100}]}, {"id": 71924, "name": "Fel Synergy", "type": "single", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926, 71939], "prev": [71918, 71925], "entries": [{"id": 91432, "definitionId": 96434, "maxRanks": 2, "type": "passive", "name": "Fel Synergy", "spellId": 389367, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 71923, "name": "Soul Link", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71939, 71957], "prev": [71925, 71938], "entries": [{"id": 91431, "definitionId": 96433, "maxRanks": 2, "type": "passive", "name": "Soul Link", "spellId": 108415, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 71917, "name": "Demonic Resilience", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71957], "prev": [71938], "entries": [{"id": 91424, "definitionId": 96426, "maxRanks": 2, "type": "passive", "name": "Demonic Resilience", "spellId": 389590, "icon": "ability_warlock_avoidance", "index": 100}]}, {"id": 71926, "name": "Pact of Gluttony", "type": "single", "posX": 3000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71915], "entries": [{"id": 91434, "definitionId": 96436, "maxRanks": 1, "type": "passive", "name": "Pact of Gluttony", "spellId": 386689, "icon": "warlock__bloodstone", "index": 100}]}, {"id": 71939, "name": "Soul Conduit", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71923], "entries": [{"id": 91427, "definitionId": 96450, "maxRanks": 1, "type": "passive", "name": "Soul Conduit", "spellId": 215941, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 71957, "name": "Soulburn", "type": "single", "posX": 5400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71917, 71923], "entries": [{"id": 91469, "definitionId": 96471, "maxRanks": 1, "type": "active", "name": "Soulburn", "spellId": 385899, "icon": "spell_warlock_soulburn", "index": 100}]}], "specNodes": [{"id": 72068, "name": "Conflagrate", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [72067, 72069], "prev": [], "entries": [{"id": 91591, "definitionId": 96593, "maxRanks": 1, "type": "active", "name": "Conflagrate", "spellId": 17962, "icon": "spell_fire_fireball", "index": 100}]}, {"id": 72067, "name": "Backdraft", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [72065, 71983, 71979], "prev": [72068], "entries": [{"id": 91590, "definitionId": 96592, "maxRanks": 1, "type": "passive", "name": "Backdraft", "spellId": 196406, "icon": "ability_warlock_backdraft", "index": 100}]}, {"id": 72069, "name": "Rain of Fire", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [71979, 71975, 71974], "prev": [72068], "entries": [{"id": 91592, "definitionId": 96594, "maxRanks": 1, "type": "active", "name": "Rain of Fire", "spellId": 5740, "icon": "spell_shadow_rainoffire", "index": 100}]}, {"id": 72065, "name": "Roaring Blaze / Improved Conflagrate", "type": "choice", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [101995], "prev": [72067], "entries": [{"id": 91588, "definitionId": 96590, "maxRanks": 1, "type": "passive", "name": "Roaring Blaze", "spellId": 205184, "icon": "ability_warlock_inferno", "index": 100}, {"id": 91587, "definitionId": 96589, "maxRanks": 1, "type": "passive", "name": "Improved Conflagrate", "spellId": 231793, "icon": "spell_fire_fireball", "index": 200}]}, {"id": 71983, "name": "Backlash", "type": "single", "posX": 12000, "posY": 2400, "maxRanks": 1, "next": [101995], "prev": [72067], "entries": [{"id": 91500, "definitionId": 96502, "maxRanks": 1, "type": "passive", "name": "Backlash", "spellId": 387384, "icon": "spell_fire_playingwithfire", "index": 100}]}, {"id": 71979, "name": "Mayhem / Havoc", "type": "choice", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [71961], "prev": [72069, 72067], "entries": [{"id": 91494, "definitionId": 96496, "maxRanks": 1, "type": "passive", "name": "Mayhem", "spellId": 387506, "icon": "spell_warlock_demonbolt", "index": 200}, {"id": 91493, "definitionId": 96495, "maxRanks": 1, "type": "active", "name": "Havoc", "spellId": 80240, "icon": "ability_warlock_baneofhavoc", "index": 300}]}, {"id": 71975, "name": "Pyrogenics", "type": "single", "posX": 13200, "posY": 2400, "maxRanks": 1, "next": [71973], "prev": [72069], "entries": [{"id": 91489, "definitionId": 96491, "maxRanks": 1, "type": "passive", "name": "Pyrogenics", "spellId": 387095, "icon": "inv_jewelry_ring_65", "index": 100}]}, {"id": 71974, "name": "Inferno / Cataclysm", "type": "choice", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [71973], "prev": [72069], "entries": [{"id": 91488, "definitionId": 96490, "maxRanks": 1, "type": "passive", "name": "Inferno", "spellId": 270545, "icon": "spell_shadow_rainoffire", "index": 100}, {"id": 91487, "definitionId": 96489, "maxRanks": 1, "type": "active", "name": "Cataclysm", "spellId": 152108, "icon": "achievement_zone_cataclysm", "index": 200}]}, {"id": 101995, "name": "Indiscriminate Flames", "type": "single", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [72060, 72059, 71971], "prev": [72065, 71983], "entries": [{"id": 126005, "definitionId": 130836, "maxRanks": 1, "type": "passive", "name": "Indiscriminate Flames", "spellId": 457114, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 71961, "name": "Rolling Havoc", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [71971], "prev": [71979], "entries": [{"id": 91474, "definitionId": 96476, "maxRanks": 1, "type": "passive", "name": "Rolling Havoc", "spellId": 387569, "icon": "warlock_pvp_banehavoc", "index": 100}]}, {"id": 71973, "name": "Scalding Flames", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [71971, 71969, 72064], "prev": [71975, 71974], "entries": [{"id": 91486, "definitionId": 96488, "maxRanks": 1, "type": "passive", "name": "Scalding Flames", "spellId": 388832, "icon": "spell_burningsoul", "index": 100}]}, {"id": 72060, "name": "Shadowburn", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101996, 72061], "prev": [101995], "entries": [{"id": 91582, "definitionId": 96584, "maxRanks": 1, "type": "active", "name": "Shadowburn", "spellId": 17877, "icon": "spell_shadow_scourgebuild", "index": 100}]}, {"id": 72059, "name": "Explosive Potential", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72061, 72062], "prev": [101995], "entries": [{"id": 91581, "definitionId": 96583, "maxRanks": 1, "type": "passive", "name": "Explosive Potential", "spellId": 388827, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 71971, "name": "Summoner's Embrace / Grimoire of Sacrifice", "type": "choice", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72062, 71985, 71982], "prev": [101995, 71973, 71961], "entries": [{"id": 91484, "definitionId": 96486, "maxRanks": 1, "type": "passive", "name": "Summoner's Embrace", "spellId": 453105, "icon": "spell_shadow_unsummonbuilding", "index": 0}, {"id": 125618, "definitionId": 130450, "maxRanks": 1, "type": "active", "name": "Grimoire of Sacrifice", "spellId": 108503, "icon": "warlock_grimoireofsacrifice", "index": 100}]}, {"id": 71969, "name": "Ashen Remains", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71982, 71972], "prev": [71973], "entries": [{"id": 91482, "definitionId": 96484, "maxRanks": 1, "type": "passive", "name": "Ashen Remains", "spellId": 387252, "icon": "inv_enchanting_dust", "index": 100}]}, {"id": 72064, "name": "Channel Demonfire", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72063], "prev": [71973], "entries": [{"id": 91586, "definitionId": 96588, "maxRanks": 1, "type": "active", "name": "Channel Demonfire", "spellId": 196447, "icon": "spell_fire_ragnaros_lavaboltgreen", "index": 0}]}, {"id": 101996, "name": "Blistering Atrophy", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101994], "prev": [72060], "entries": [{"id": 126006, "definitionId": 130837, "maxRanks": 1, "type": "passive", "name": "Blistering Atrophy", "spellId": 456939, "icon": "inv_misc_volatilefire", "index": 100}]}, {"id": 72061, "name": "Conflagration of Chaos", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71984], "prev": [72059, 72060], "entries": [{"id": 91583, "definitionId": 96585, "maxRanks": 1, "type": "passive", "name": "Conflagration of Chaos", "spellId": 387108, "icon": "spell_shadow_scourgebuild", "index": 100}]}, {"id": 72062, "name": "Emberstorm", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71984], "prev": [71971, 72059], "entries": [{"id": 91584, "definitionId": 96586, "maxRanks": 1, "type": "passive", "name": "Emberstorm", "spellId": 454744, "icon": "spell_fire_selfdestruct", "index": 100}]}, {"id": 71985, "name": "Summon Infernal", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71984, 71960, 71980], "prev": [71971], "entries": [{"id": 91502, "definitionId": 96504, "maxRanks": 1, "type": "active", "name": "Summon Infernal", "spellId": 1122, "icon": "spell_shadow_summoninfernal", "index": 100}]}, {"id": 71982, "name": "Fire and Brimstone", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71980], "prev": [71971, 71969], "entries": [{"id": 91499, "definitionId": 96501, "maxRanks": 1, "type": "passive", "name": "Fire and Brimstone", "spellId": 196408, "icon": "ability_warlock_fireandbrimstone", "index": 0}]}, {"id": 71972, "name": "Flashpoint", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71980], "prev": [71969], "entries": [{"id": 91485, "definitionId": 96487, "maxRanks": 1, "type": "passive", "name": "Flashpoint", "spellId": 387259, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 72063, "name": "Raging Demonfire", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101993], "prev": [72064], "entries": [{"id": 91585, "definitionId": 96587, "maxRanks": 1, "type": "passive", "name": "Raging Demonfire", "spellId": 387166, "icon": "spell_fire_ragnaros_lavaboltgreen", "index": 100}]}, {"id": 101994, "name": "Fiendish Cruelty", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72066, 71978], "prev": [101996], "entries": [{"id": 126004, "definitionId": 130835, "maxRanks": 1, "type": "passive", "name": "Fiendish Cruelty", "spellId": 456943, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 71984, "name": "Eradication", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72066, 71970], "prev": [72062, 72061, 71985], "entries": [{"id": 91501, "definitionId": 96503, "maxRanks": 1, "type": "passive", "name": "Eradication", "spellId": 196412, "icon": "ability_warlock_eradication", "index": 100}]}, {"id": 71960, "name": "Crashing Chaos / Rain of Chaos", "type": "choice", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71970], "prev": [71985], "entries": [{"id": 91473, "definitionId": 96475, "maxRanks": 1, "type": "passive", "name": "Crashing Chaos", "spellId": 417234, "icon": "inv_infernalmount", "index": 100}, {"id": 126494, "definitionId": 131320, "maxRanks": 1, "type": "passive", "name": "Rain of Chaos", "spellId": 266086, "icon": "spell_fire_felrainoffire", "index": 200}]}, {"id": 71980, "name": "Reverse Entropy / Internal Combustion", "type": "choice", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71970, 71967], "prev": [71982, 71972, 71985], "entries": [{"id": 91496, "definitionId": 96498, "maxRanks": 1, "type": "passive", "name": "Reverse Entropy", "spellId": 205148, "icon": "spell_fire_playingwithfiregreen", "index": 100}, {"id": 91495, "definitionId": 96497, "maxRanks": 1, "type": "passive", "name": "Internal Combustion", "spellId": 266134, "icon": "ability_mage_livingbomb", "index": 200}]}, {"id": 101993, "name": "Demonfire Mastery", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71967, 102003], "prev": [72063], "entries": [{"id": 126003, "definitionId": 130834, "maxRanks": 1, "type": "passive", "name": "Demonfire Mastery", "spellId": 456946, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 72066, "name": "Devastation", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71978, 101992, 71964], "prev": [71984, 101994], "entries": [{"id": 91589, "definitionId": 96591, "maxRanks": 1, "type": "passive", "name": "Devastation", "spellId": 454735, "icon": "spell_fire_flameshock", "index": 100}]}, {"id": 71970, "name": "Ritual of Ruin", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71964, 71962, 71965], "prev": [71984, 71980, 71960], "entries": [{"id": 91483, "definitionId": 96485, "maxRanks": 1, "type": "passive", "name": "Ritual of Ruin", "spellId": 387156, "icon": "ability_mage_worldinflamesgreen", "index": 100}]}, {"id": 71967, "name": "Ruin", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71965, 71968, 102003], "prev": [101993, 71980], "entries": [{"id": 91480, "definitionId": 96482, "maxRanks": 1, "type": "passive", "name": "Ruin", "spellId": 387103, "icon": "spell_fire_fire", "index": 100}]}, {"id": 71978, "name": "Soul Fire", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101997, 71966], "prev": [72066, 101994], "entries": [{"id": 91492, "definitionId": 96494, "maxRanks": 1, "type": "active", "name": "Soul Fire", "spellId": 6353, "icon": "spell_fire_firebolt", "index": 100}]}, {"id": 101992, "name": "Improved Chaos Bolt", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [71966], "prev": [72066], "entries": [{"id": 126002, "definitionId": 130833, "maxRanks": 1, "type": "passive", "name": "Improved Chaos Bolt", "spellId": 456951, "icon": "ability_warlock_chaosbolt", "index": 100}]}, {"id": 71964, "name": "Burn to Ashes", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [71966], "prev": [72066, 71970], "entries": [{"id": 91477, "definitionId": 96479, "maxRanks": 1, "type": "passive", "name": "Burn to Ashes", "spellId": 387153, "icon": "ability_racial_foregedinflames", "index": 100}]}, {"id": 71962, "name": "Master Ritualist", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101998], "prev": [71970], "entries": [{"id": 91475, "definitionId": 96477, "maxRanks": 1, "type": "passive", "name": "Master Ritualist", "spellId": 387165, "icon": "spell_warlock_focusshadow", "index": 100}]}, {"id": 71965, "name": "Power Overwhelming", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102002], "prev": [71970, 71967], "entries": [{"id": 91478, "definitionId": 96480, "maxRanks": 1, "type": "passive", "name": "Power Overwhelming", "spellId": 387279, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 71968, "name": "Diabolic Embers", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102002], "prev": [71967], "entries": [{"id": 91481, "definitionId": 96483, "maxRanks": 1, "type": "passive", "name": "Diabolic Embers", "spellId": 387173, "icon": "inv_shoulder_robe_raidmage_j_01", "index": 100}]}, {"id": 102003, "name": "Dimensional Rift", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102002, 102427], "prev": [71967, 101993], "entries": [{"id": 91423, "definitionId": 96425, "maxRanks": 1, "type": "active", "name": "Dimensional Rift", "spellId": 387976, "icon": "spell_warlock_demonicportal_purple", "index": 100}]}, {"id": 101997, "name": "Decimation", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71978], "entries": [{"id": 126007, "definitionId": 130838, "maxRanks": 1, "type": "passive", "name": "Decimation", "spellId": 456985, "icon": "spell_fire_fireball02", "index": 100}]}, {"id": 71966, "name": "Chaos Incarnate", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101992, 71964, 71978], "entries": [{"id": 91479, "definitionId": 96481, "maxRanks": 1, "type": "passive", "name": "Chaos Incarnate", "spellId": 387275, "icon": "spell_fire_felflamering", "index": 100}]}, {"id": 101998, "name": "Avatar of Destruction", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71962], "entries": [{"id": 126008, "definitionId": 130839, "maxRanks": 1, "type": "passive", "name": "Avatar of Destruction", "spellId": 456975, "icon": "spell_fire_felcano", "index": 100}]}, {"id": 102002, "name": "Dimension Ripper", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71968, 71965, 102003], "entries": [{"id": 126012, "definitionId": 130843, "maxRanks": 1, "type": "passive", "name": "Dimension Ripper", "spellId": 457025, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 102427, "name": "Unstable Rifts", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102003], "entries": [{"id": 126493, "definitionId": 131319, "maxRanks": 1, "type": "passive", "name": "Unstable Rifts", "spellId": 457064, "icon": "inv_shadowflame_groundstate", "index": 100}]}], "heroNodes": [{"id": 94840, "name": "Wither", "type": "single", "posX": 15600, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 58, "next": [94853, 94837, 94845], "prev": [], "entries": [{"id": 117437, "definitionId": 122449, "maxRanks": 1, "type": "active", "name": "Wither", "spellId": 445465, "visibleSpellId": 445468, "icon": "inv_ability_hellcallerwarlock_wither", "index": 100}], "freeNode": true}, {"id": 94853, "name": "Xalan's Ferocity", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94822], "prev": [94840], "entries": [{"id": 117450, "definitionId": 122462, "maxRanks": 1, "type": "passive", "name": "Xalan's Ferocity", "spellId": 440044, "icon": "spell_fire_felfire", "index": 100}]}, {"id": 94837, "name": "Blackened Soul", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94854], "prev": [94840], "entries": [{"id": 117434, "definitionId": 122446, "maxRanks": 1, "type": "passive", "name": "Blackened Soul", "spellId": 440043, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 94845, "name": "Xalan's Cruelty", "type": "single", "posX": 16200, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94835], "prev": [94840], "entries": [{"id": 117442, "definitionId": 122454, "maxRanks": 1, "type": "passive", "name": "Xalan's Cruelty", "spellId": 440040, "icon": "spell_shadow_demonicempathy", "index": 100}]}, {"id": 94822, "name": "Curse of the Satyr / Aura of Enfeeblement", "type": "choice", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94834], "prev": [94853], "entries": [{"id": 117419, "definitionId": 122431, "maxRanks": 1, "type": "passive", "name": "Curse of the Satyr", "spellId": 440057, "icon": "inv_fabric_felrag", "index": 100}, {"id": 123309, "definitionId": 128179, "maxRanks": 1, "type": "passive", "name": "Aura of Enfeeblement", "spellId": 440059, "icon": "warlock_curse_weakness_aura", "index": 200}]}, {"id": 94854, "name": "Hatefury Rituals / Bleakheart Tactics", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94829], "prev": [94837], "entries": [{"id": 117451, "definitionId": 122463, "maxRanks": 1, "type": "passive", "name": "Hatefury Rituals", "spellId": 440048, "icon": "70_inscription_glyph_demonhunter_minor", "index": 100}, {"id": 123310, "definitionId": 128180, "maxRanks": 1, "type": "passive", "name": "Bleakheart Tactics", "spellId": 440051, "icon": "spell_shadow_mindshear", "index": 200}]}, {"id": 94835, "name": "Zevrim's Resilience / Illhoof's Design", "type": "choice", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94844], "prev": [94845], "entries": [{"id": 117432, "definitionId": 122444, "maxRanks": 1, "type": "passive", "name": "Zevrim's Resilience", "spellId": 440065, "icon": "ability_warrior_intensifyrage", "index": 100}, {"id": 123308, "definitionId": 128178, "maxRanks": 1, "type": "passive", "name": "Illhoof's Design", "spellId": 440070, "icon": "sha_spell_fire_felfireward_nightmare", "index": 200}]}, {"id": 94834, "name": "Mark of Xavius", "type": "single", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94822], "entries": [{"id": 117431, "definitionId": 122443, "maxRanks": 1, "type": "passive", "name": "Mark of Xavius", "spellId": 440046, "icon": "warlock_curse_shadow_aura", "index": 100}]}, {"id": 94829, "name": "Seeds of Their Demise", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94854], "entries": [{"id": 117426, "definitionId": 122438, "maxRanks": 1, "type": "passive", "name": "Seeds of Their Demise", "spellId": 440055, "icon": "ability_warlock_moltencoregreen", "index": 100}]}, {"id": 94844, "name": "Mark of Peroth'arn", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94835], "entries": [{"id": 117441, "definitionId": 122453, "maxRanks": 1, "type": "passive", "name": "Mark of Peroth'arn", "spellId": 440045, "icon": "70_inscription_vantus_rune_tomb", "index": 100}]}, {"id": 94842, "name": "Malevolence", "type": "single", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 58, "next": [], "prev": [94829, 94834, 94844], "entries": [{"id": 117439, "definitionId": 122451, "maxRanks": 1, "type": "active", "name": "Malevolence", "spellId": 430014, "visibleSpellId": 442726, "icon": "inv_ability_hellcallerwarlock_malevolence", "index": 100}]}, {"id": 94855, "name": "Diabolic Ritual", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 59, "next": [94849, 94856, 94826], "prev": [], "entries": [{"id": 117452, "definitionId": 122464, "maxRanks": 1, "type": "passive", "name": "Diabolic Ritual", "spellId": 428514, "icon": "ability_bossfelorcs_necromancer_purple", "index": 100}], "freeNode": true}, {"id": 94849, "name": "Cloven Souls", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94836], "prev": [94855], "entries": [{"id": 117446, "definitionId": 122458, "maxRanks": 1, "type": "passive", "name": "Cloven Souls", "spellId": 428517, "icon": "ability_creature_felfrenzy", "index": 100}]}, {"id": 94856, "name": "Touch of Rancora", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94848], "prev": [94855], "entries": [{"id": 117453, "definitionId": 122465, "maxRanks": 1, "type": "passive", "name": "Touch of Rancora", "spellId": 429893, "icon": "ability_bossfellord_felspike", "index": 100}]}, {"id": 94826, "name": "Secrets of the Coven", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94852], "prev": [94855], "entries": [{"id": 117423, "definitionId": 122435, "maxRanks": 1, "type": "passive", "name": "Secrets of the Coven", "spellId": 428518, "icon": "achievement_boss_argus_shivan", "index": 100}]}, {"id": 94836, "name": "Soul-Etched Circles / Annihilan's Bellow", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "next": [94833], "prev": [94849], "entries": [{"id": 117433, "definitionId": 122445, "maxRanks": 1, "type": "passive", "name": "Soul-Etched Circles", "spellId": 428911, "icon": "spell_shadow_demoniccircleteleport", "index": 100}, {"id": 118837, "definitionId": 123737, "maxRanks": 1, "type": "passive", "name": "Annihilan's Bellow", "spellId": 429072, "icon": "ability_physical_taunt", "index": 200}]}, {"id": 94848, "name": "Cruelty of Kerxan / Infernal Machine", "type": "choice", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "requiresNode": 101905, "next": [94831], "prev": [94856], "entries": [{"id": 117445, "definitionId": 122457, "maxRanks": 1, "type": "passive", "name": "Cruelty of Kerxan", "spellId": 429902, "icon": "creatureportrait_fomorhand", "index": 100}, {"id": 118838, "definitionId": 123738, "maxRanks": 1, "type": "passive", "name": "Infernal Machine", "spellId": 429917, "icon": "inv_misc_supersoulash", "index": 200}]}, {"id": 94852, "name": "Infernal Vitality / Infernal Bulwark", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "next": [94843], "prev": [94826], "entries": [{"id": 117449, "definitionId": 122461, "maxRanks": 1, "type": "passive", "name": "Infernal Vitality", "spellId": 429115, "icon": "inv_fabric_felcloth_ebon", "index": 100}, {"id": 118839, "definitionId": 123739, "maxRanks": 1, "type": "passive", "name": "Infernal Bulwark", "spellId": 429130, "icon": "spell_fire_felfireward", "index": 200}]}, {"id": 94833, "name": "Flames of Xoroth", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "next": [94830], "prev": [94836], "entries": [{"id": 117430, "definitionId": 122442, "maxRanks": 1, "type": "passive", "name": "Flames of Xoroth", "spellId": 429657, "icon": "ability_warlock_burningembers", "index": 100}]}, {"id": 94831, "name": "Abyssal Dominion", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "requiresNode": 71985, "next": [94830], "prev": [94848], "entries": [{"id": 117428, "definitionId": 122440, "maxRanks": 1, "type": "passive", "name": "Abyssal Dominion", "spellId": 429581, "icon": "70_inscription_vantus_rune_tomb", "index": 100}]}, {"id": 94843, "name": "Gloom of Nathreza", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "next": [94830], "prev": [94852], "entries": [{"id": 117440, "definitionId": 122452, "maxRanks": 1, "type": "passive", "name": "Gloom of Nathreza", "spellId": 429899, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 94830, "name": "Ruination", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 59, "next": [], "prev": [94831, 94833, 94843], "entries": [{"id": 117427, "definitionId": 122439, "maxRanks": 1, "type": "passive", "name": "Ruination", "spellId": 428522, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}]}], "subTreeNodes": [{"id": 99848, "name": "Diabolist / Hellcaller", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123385, "type": "subtree", "name": "Diabolist", "traitSubTreeId": 59, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-diabolist", "nodes": [94855, 94849, 94856, 94826, 94836, 94848, 94852, 94833, 94831, 94843, 94830]}, {"id": 123382, "type": "subtree", "name": "Hellcaller", "traitSubTreeId": 58, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-hellcaller", "nodes": [94840, 94853, 94837, 94845, 94822, 94854, 94835, 94834, 94829, 94844, 94842]}]}], "fullNodeOrder": [71915, 71916, 71917, 71918, 71921, 71922, 71923, 71924, 71925, 71926, 71927, 71928, 71930, 71931, 71932, 71933, 71934, 71935, 71936, 71937, 71938, 71939, 71940, 71941, 71942, 71944, 71946, 71947, 71948, 71949, 71950, 71951, 71952, 71953, 71954, 71955, 71956, 71957, 71960, 71961, 71962, 71964, 71965, 71966, 71967, 71968, 71969, 71970, 71971, 71972, 71973, 71974, 71975, 71978, 71979, 71980, 71982, 71983, 71984, 71985, 71986, 71987, 72031, 72032, 72033, 72034, 72035, 72037, 72038, 72039, 72040, 72041, 72042, 72043, 72045, 72046, 72047, 72048, 72049, 72050, 72051, 72052, 72053, 72054, 72055, 72056, 72057, 72058, 72059, 72060, 72061, 72062, 72063, 72064, 72065, 72066, 72067, 72068, 72069, 93178, 93179, 94821, 94822, 94823, 94824, 94825, 94826, 94829, 94830, 94831, 94832, 94833, 94834, 94835, 94836, 94837, 94838, 94840, 94842, 94843, 94844, 94845, 94846, 94847, 94848, 94849, 94850, 94851, 94852, 94853, 94854, 94855, 94856, 94857, 99848, 99849, 99850, 100940, 100941, 101884, 101885, 101886, 101887, 101888, 101889, 101890, 101891, 101892, 101893, 101894, 101895, 101896, 101897, 101898, 101899, 101900, 101901, 101902, 101903, 101904, 101905, 101906, 101907, 101908, 101909, 101910, 101911, 101912, 101913, 101914, 101915, 101916, 101917, 101918, 101919, 101920, 101921, 101922, 101923, 101924, 101925, 101926, 101992, 101993, 101994, 101995, 101996, 101997, 101998, 102002, 102003, 102029, 102030, 102031, 102032, 102033, 102246, 102247, 102427]}, {"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Brewmaster", "specId": 268, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101090], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101090, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 102433], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101090, "name": "Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184], "prev": [101185, 101149], "entries": [{"id": 124867, "definitionId": 129705, "maxRanks": 1, "type": "active", "name": "Detox", "spellId": 218164, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [102433, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102433, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101090, 101153, 101148], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101090, 101185], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 102433, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101146, 101160, 101145], "entries": [{"id": 126502, "definitionId": 131328, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 126501, "definitionId": 131327, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 123986, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101145, 102433], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101181], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101181], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101181, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101158, 101166, 102433], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101172], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101172], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101172, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101181, "name": "Dance of the Wind / Dampen Harm", "type": "choice", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124979, "definitionId": 129817, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 414132, "icon": "ability_monk_dematerialize", "index": 100}, {"id": 124978, "definitionId": 129816, "maxRanks": 1, "type": "active", "name": "Dampen Harm", "spellId": 122278, "icon": "ability_monk_dampenharm", "index": 200}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101172, "name": "Summon Black Ox Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101163, 101173, 101165], "entries": [{"id": 124967, "definitionId": 129805, "maxRanks": 1, "type": "active", "name": "Summon Black Ox Statue", "spellId": 115315, "icon": "monk_ability_summonoxstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101181, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101135, 101174, 101172], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101088, "name": "Keg Smash", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101064, 101087], "prev": [], "entries": [{"id": 124865, "definitionId": 129703, "maxRanks": 1, "type": "active", "name": "Keg Smash", "spellId": 121253, "icon": "achievement_brewery_2", "index": 100}]}, {"id": 101064, "name": "Purifying Brew", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101065, 101072], "prev": [101088], "entries": [{"id": 124838, "definitionId": 129676, "maxRanks": 1, "type": "active", "name": "Purifying Brew", "spellId": 119582, "icon": "inv_misc_beer_06", "index": 100}]}, {"id": 101087, "name": "Shuffle", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101086, 101063], "prev": [101088], "entries": [{"id": 124864, "definitionId": 129702, "maxRanks": 1, "type": "passive", "name": "Shuffle", "spellId": 322120, "icon": "ability_monk_shuffle", "index": 100}]}, {"id": 101065, "name": "Staggering Strikes", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101071], "prev": [101064], "entries": [{"id": 124839, "definitionId": 129677, "maxRanks": 1, "type": "passive", "name": "Staggering Strikes", "spellId": 387625, "icon": "ability_monk_blackoutstrike", "index": 100}]}, {"id": 101072, "name": "Gift of the Ox", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [101071, 101085], "prev": [101064], "entries": [{"id": 124846, "definitionId": 129684, "maxRanks": 1, "type": "passive", "name": "Gift of the Ox", "spellId": 124502, "icon": "ability_druid_giftoftheearthmother", "index": 100}]}, {"id": 101086, "name": "Spirit of the Ox", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [101085, 101202], "prev": [101087], "entries": [{"id": 124863, "definitionId": 129701, "maxRanks": 1, "type": "passive", "name": "Spirit of the Ox", "spellId": 400629, "icon": "ability_titankeeper_cleansingorb", "index": 100}]}, {"id": 101063, "name": "Quick Sip", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101202], "prev": [101087], "entries": [{"id": 124837, "definitionId": 129675, "maxRanks": 1, "type": "passive", "name": "Quick Sip", "spellId": 388505, "icon": "achievement_faction_brewmaster", "index": 100}]}, {"id": 101071, "name": "Hit Scheme", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [101070, 101067, 101084], "prev": [101065, 101072], "entries": [{"id": 124845, "definitionId": 129683, "maxRanks": 1, "type": "passive", "name": "Hit Scheme", "spellId": 383695, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101085, "name": "Elixir of Determination", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101084, 101710], "prev": [101086, 101072], "entries": [{"id": 124862, "definitionId": 129700, "maxRanks": 1, "type": "passive", "name": "Elixir of Determination", "spellId": 455139, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101202, "name": "Special Delivery / Rushing Jade Wind", "type": "choice", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [101710, 101201, 101076], "prev": [101086, 101063], "entries": [{"id": 125008, "definitionId": 129846, "maxRanks": 1, "type": "passive", "name": "Special Delivery", "spellId": 196730, "icon": "achievement_brewery_2", "index": 100}, {"id": 125007, "definitionId": 129845, "maxRanks": 1, "type": "active", "name": "Rushing Jade Wind", "spellId": 116847, "icon": "ability_monk_rushingjadewind", "index": 200}]}, {"id": 101070, "name": "Celestial Flames", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101069], "prev": [101071], "entries": [{"id": 124844, "definitionId": 129682, "maxRanks": 1, "type": "passive", "name": "Celestial Flames", "spellId": 325177, "icon": "inv_misc_volatilefire", "index": 100}]}, {"id": 101067, "name": "Celestial Brew", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101069, 102004, 101068], "prev": [101071], "entries": [{"id": 124841, "definitionId": 129679, "maxRanks": 1, "type": "active", "name": "Celestial Brew", "spellId": 322507, "icon": "ability_monk_ironskinbrew", "index": 100}]}, {"id": 101084, "name": "August Blessing", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102004, 101075], "prev": [101085, 101071], "entries": [{"id": 124861, "definitionId": 129699, "maxRanks": 1, "type": "passive", "name": "August Blessing", "spellId": 454483, "icon": "inv_celestialserpentmount", "index": 100}]}, {"id": 101710, "name": "One With the Wind", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101075, 101083], "prev": [101202, 101085], "entries": [{"id": 125611, "definitionId": 130443, "maxRanks": 1, "type": "passive", "name": "One With the Wind", "spellId": 454484, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 101201, "name": "Zen Meditation", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101083, 101078, 101077], "prev": [101202], "entries": [{"id": 125006, "definitionId": 129844, "maxRanks": 1, "type": "active", "name": "Zen Meditation", "spellId": 115176, "icon": "ability_monk_zenmeditation", "index": 100}]}, {"id": 101076, "name": "Strike At Dawn", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101078], "prev": [101202], "entries": [{"id": 124850, "definitionId": 129688, "maxRanks": 1, "type": "passive", "name": "Strike At Dawn", "spellId": 455043, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101069, "name": "Breath of Fire", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101188, 101068], "prev": [101067, 101070], "entries": [{"id": 124843, "definitionId": 129681, "maxRanks": 1, "type": "active", "name": "Breath of Fire", "spellId": 115181, "icon": "ability_monk_breathoffire", "index": 100}]}, {"id": 102004, "name": "Gai Plin's Imperial Brew", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101068, 101190], "prev": [101084, 101067], "entries": [{"id": 124859, "definitionId": 129697, "maxRanks": 1, "type": "passive", "name": "Gai Plin's Imperial Brew", "spellId": 383700, "icon": "inv_misc_beer_06", "index": 100}]}, {"id": 101075, "name": "Invoke Niuzao, the Black Ox", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101190, 101074, 101082], "prev": [101710, 101084], "entries": [{"id": 124849, "definitionId": 129687, "maxRanks": 1, "type": "active", "name": "Invoke Niuzao, the Black Ox", "spellId": 132578, "icon": "spell_monk_brewmaster_spec", "index": 100}]}, {"id": 101083, "name": "Tranquil Spirit", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101082, 101077], "prev": [101201, 101710], "entries": [{"id": 124860, "definitionId": 129698, "maxRanks": 1, "type": "passive", "name": "Tranquil Spirit", "spellId": 393357, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101078, "name": "Shadowboxing Treads / Fluidity of Motion", "type": "choice", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101077, 101080], "prev": [101201, 101076], "entries": [{"id": 124853, "definitionId": 129691, "maxRanks": 1, "type": "passive", "name": "Shadowboxing Treads", "spellId": 387638, "icon": "ability_monk_roundhousekick", "index": 100}, {"id": 124852, "definitionId": 129690, "maxRanks": 1, "type": "passive", "name": "Fluidity of Motion", "spellId": 387230, "icon": "ability_monk_standingkick", "index": 200}]}, {"id": 101188, "name": "Scalding Brew / Sal'salabim's Strength", "type": "choice", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101187, 101189], "prev": [101069], "entries": [{"id": 124989, "definitionId": 129827, "maxRanks": 1, "type": "passive", "name": "Scalding Brew", "spellId": 383698, "icon": "spell_brew_bolt_dark", "index": 100}, {"id": 124988, "definitionId": 129826, "maxRanks": 1, "type": "passive", "name": "Sal'salabim's Strength", "spellId": 383697, "icon": "ability_warrior_unrelentingassault", "index": 200}]}, {"id": 101068, "name": "Fortifying Brew: Determination", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101189], "prev": [101069, 101067, 102004], "entries": [{"id": 124842, "definitionId": 129680, "maxRanks": 1, "type": "active", "name": "Fortifying Brew: Determination", "spellId": 322960, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101190, "name": "Bob and Weave / Black Ox Brew", "type": "choice", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101189, 101197], "prev": [101075, 102004], "entries": [{"id": 124992, "definitionId": 129830, "maxRanks": 1, "type": "passive", "name": "Bob and Weave", "spellId": 280515, "icon": "ability_creature_cursed_04", "index": 100}, {"id": 124991, "definitionId": 129829, "maxRanks": 1, "type": "active", "name": "Black Ox Brew", "spellId": 115399, "icon": "ability_monk_chibrew", "index": 200}]}, {"id": 101074, "name": "Walk with the Ox", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [101197, 101073, 101194], "prev": [101075], "entries": [{"id": 124848, "definitionId": 129686, "maxRanks": 2, "type": "passive", "name": "Walk with the Ox", "spellId": 387219, "icon": "monk_stance_drunkenox", "index": 100}]}, {"id": 101082, "name": "Light Brewing / Training of Niuzao", "type": "choice", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101194, 101081], "prev": [101083, 101075], "entries": [{"id": 124858, "definitionId": 129696, "maxRanks": 1, "type": "passive", "name": "Light Brewing", "spellId": 325093, "icon": "spell_brew_wheat", "index": 100}, {"id": 124857, "definitionId": 129695, "maxRanks": 1, "type": "passive", "name": "Training of Niuzao", "spellId": 383714, "icon": "monk_stance_drunkenox", "index": 200}]}, {"id": 101077, "name": "Pretense of Instability", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101081], "prev": [101083, 101078, 101201], "entries": [{"id": 124851, "definitionId": 129689, "maxRanks": 1, "type": "passive", "name": "Pretense of Instability", "spellId": 393516, "icon": "inv_misc_archaeology_vrykuldrinkinghorn", "index": 100}]}, {"id": 101080, "name": "Counterstrike", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101081, 101079], "prev": [101078], "entries": [{"id": 124855, "definitionId": 129693, "maxRanks": 1, "type": "passive", "name": "Counterstrike", "spellId": 383785, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101187, "name": "Dragonfire Brew / Charred Passions", "type": "choice", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101199], "prev": [101188], "entries": [{"id": 124987, "definitionId": 129825, "maxRanks": 1, "type": "passive", "name": "Dragonfire Brew", "spellId": 383994, "icon": "spell_fire_burnout", "index": 100}, {"id": 124986, "definitionId": 129824, "maxRanks": 1, "type": "passive", "name": "Charred Passions", "spellId": 386965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101189, "name": "High Tolerance", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101199], "prev": [101068, 101188, 101190], "entries": [{"id": 124990, "definitionId": 129828, "maxRanks": 2, "type": "passive", "name": "High Tolerance", "spellId": 196737, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101197, "name": "Exploding Keg", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101199, 101196], "prev": [101074, 101190], "entries": [{"id": 125001, "definitionId": 129839, "maxRanks": 1, "type": "active", "name": "Exploding Keg", "spellId": 325153, "icon": "archaeology_5_0_emptykegofbrewfatherxinwoyin", "index": 100}]}, {"id": 101073, "name": "Improved Invoke Niuzao, the Black Ox", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101196, 101195], "prev": [101074], "entries": [{"id": 124847, "definitionId": 129685, "maxRanks": 1, "type": "passive", "name": "Improved Invoke Niuzao, the Black Ox", "spellId": 322740, "icon": "spell_monk_brewmaster_spec", "index": 100}]}, {"id": 101194, "name": "Elusive Footwork", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101195, 101193], "prev": [101074, 101082], "entries": [{"id": 124998, "definitionId": 129836, "maxRanks": 1, "type": "passive", "name": "Elusive Footwork", "spellId": 387046, "icon": "ability_monk_shuffle", "index": 100}]}, {"id": 101081, "name": "Anvil & Stave", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101193], "prev": [101082, 101077, 101080], "entries": [{"id": 124856, "definitionId": 129694, "maxRanks": 2, "type": "passive", "name": "Anvil & Stave", "spellId": 386937, "icon": "ability_monk_elusiveale", "index": 100}]}, {"id": 101079, "name": "Face Palm", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101193], "prev": [101080], "entries": [{"id": 124854, "definitionId": 129692, "maxRanks": 1, "type": "passive", "name": "Face Palm", "spellId": 389942, "icon": "ability_monk_tigerpalm", "index": 100}]}, {"id": 101199, "name": "Ox Stance", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101198, 101711], "prev": [101189, 101187, 101197], "entries": [{"id": 125004, "definitionId": 129842, "maxRanks": 1, "type": "passive", "name": "Ox Stance", "spellId": 455068, "icon": "ability_monk_leeroftheox", "index": 100}]}, {"id": 101196, "name": "Stormstout's Last Keg", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101073, 101197], "entries": [{"id": 125000, "definitionId": 129838, "maxRanks": 1, "type": "passive", "name": "Stormstout's Last Keg", "spellId": 383707, "icon": "achievement_brewery_2", "index": 100}]}, {"id": 101195, "name": "Blackout Combo", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101194, 101073], "entries": [{"id": 124999, "definitionId": 129837, "maxRanks": 1, "type": "passive", "name": "Blackout Combo", "spellId": 196736, "icon": "ability_monk_blackoutkick", "index": 100}]}, {"id": 101193, "name": "Press the Advantage / Weapons of Order", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101192, 101712], "prev": [101081, 101079, 101194], "entries": [{"id": 124997, "definitionId": 129835, "maxRanks": 1, "type": "passive", "name": "Press the Advantage", "spellId": 418359, "icon": "inv__fistofthewhitetiger", "index": 100}, {"id": 124996, "definitionId": 129834, "maxRanks": 1, "type": "active", "name": "Weapons of Order", "spellId": 387184, "icon": "ability_bastion_monk", "index": 200}]}, {"id": 101198, "name": "Black Ox Adept", "type": "single", "posX": 10800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101199], "entries": [{"id": 125003, "definitionId": 129841, "maxRanks": 1, "type": "passive", "name": "Black Ox Adept", "spellId": 455079, "icon": "spell_monk_brewmastertraining", "index": 100}]}, {"id": 101711, "name": "Heightened Guard", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101199], "entries": [{"id": 125002, "definitionId": 129840, "maxRanks": 1, "type": "passive", "name": "Heightened Guard", "spellId": 455081, "icon": "ability_monk_guard", "index": 100}]}, {"id": 101192, "name": "Call to Arms", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101193], "entries": [{"id": 124995, "definitionId": 129833, "maxRanks": 1, "type": "passive", "name": "Call to Arms", "spellId": 397251, "icon": "ability_bastion_monk", "index": 100}]}, {"id": 101712, "name": "Chi Surge", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101193], "entries": [{"id": 124994, "definitionId": 129832, "maxRanks": 1, "type": "passive", "name": "Chi Surge", "spellId": 393400, "icon": "ability_monk_chiexplosion", "index": 100}]}], "heroNodes": [{"id": 101248, "name": "Flurry Strikes", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 65, "next": [101247, 101249, 101246], "prev": [], "entries": [{"id": 125069, "definitionId": 129901, "maxRanks": 1, "type": "passive", "name": "Flurry Strikes", "spellId": 450615, "icon": "inv_ability_shadopanmonk_flurrystrikes", "index": 100}], "freeNode": true}, {"id": 101247, "name": "Pride of Pandaria / High Impact", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101254], "prev": [101248], "entries": [{"id": 125068, "definitionId": 129900, "maxRanks": 1, "type": "passive", "name": "Pride of Pandaria", "spellId": 450979, "icon": "inv_staff_2h_pandarenmonk_c_01", "index": 100}, {"id": 125067, "definitionId": 129899, "maxRanks": 1, "type": "passive", "name": "High Impact", "spellId": 450982, "icon": "ability_monk_powerstrikes", "index": 200}]}, {"id": 101249, "name": "Veteran's Eye", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101250], "prev": [101248], "entries": [{"id": 125070, "definitionId": 129902, "maxRanks": 1, "type": "passive", "name": "Veteran's Eye", "spellId": 450987, "icon": "ability_monk_provoke", "index": 100}]}, {"id": 101246, "name": "Martial Precision", "type": "single", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101245], "prev": [101248], "entries": [{"id": 125066, "definitionId": 129898, "maxRanks": 1, "type": "passive", "name": "Martial Precision", "spellId": 450990, "icon": "ability_monk_jab", "index": 100}]}, {"id": 101254, "name": "Protect and Serve / Lead from the Front", "type": "choice", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101253], "prev": [101247], "entries": [{"id": 125076, "definitionId": 129908, "maxRanks": 1, "type": "passive", "name": "Protect and Serve", "spellId": 450984, "icon": "ability_monk_vivify", "index": 100}, {"id": 125075, "definitionId": 129907, "maxRanks": 1, "type": "passive", "name": "Lead from the Front", "spellId": 450985, "icon": "ability_monk_quipunch", "index": 200}]}, {"id": 101250, "name": "One Versus Many", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101251], "prev": [101249], "entries": [{"id": 125071, "definitionId": 129903, "maxRanks": 1, "type": "passive", "name": "One Versus Many", "spellId": 450988, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101245, "name": "Whirling Steel / Predictive Training", "type": "choice", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101244], "prev": [101246], "entries": [{"id": 125065, "definitionId": 129897, "maxRanks": 1, "type": "passive", "name": "Whirling Steel", "spellId": 450991, "icon": "ability_whirlwind", "index": 100}, {"id": 125064, "definitionId": 129896, "maxRanks": 1, "type": "passive", "name": "Predictive Training", "spellId": 450992, "icon": "ability_monk_domeofmist", "index": 200}]}, {"id": 101253, "name": "Against All Odds", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101254], "entries": [{"id": 125074, "definitionId": 129906, "maxRanks": 1, "type": "passive", "name": "Against All Odds", "spellId": 450986, "icon": "achievement_legionpvp6tier1", "index": 100}]}, {"id": 101251, "name": "Efficient Training", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101250], "entries": [{"id": 125072, "definitionId": 129904, "maxRanks": 1, "type": "passive", "name": "Efficient Training", "spellId": 450989, "icon": "inv_fistofthewhitetiger", "index": 100}]}, {"id": 101244, "name": "Vigilant Watch", "type": "single", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101245], "entries": [{"id": 125063, "definitionId": 129895, "maxRanks": 1, "type": "passive", "name": "Vigilant Watch", "spellId": 450993, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 101252, "name": "Wisdom of the Wall", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 65, "next": [], "prev": [101244, 101253, 101251], "entries": [{"id": 125073, "definitionId": 129905, "maxRanks": 1, "type": "passive", "name": "Wisdom of the Wall", "spellId": 450994, "icon": "inv_legendary_sigilofwisdom", "index": 100}]}, {"id": 101223, "name": "Aspect of Harmony", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 66, "requiresNode": 101067, "next": [101222, 101224, 101230], "prev": [], "entries": [{"id": 125033, "definitionId": 129869, "maxRanks": 1, "type": "passive", "name": "Aspect of Harmony", "spellId": 450508, "icon": "inv_ability_masterofharmonymonk_aspectofharmony", "index": 100}], "freeNode": true}, {"id": 101222, "name": "Manifestation", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "requiresNode": 102433, "next": [101221], "prev": [101223], "entries": [{"id": 125032, "definitionId": 129868, "maxRanks": 1, "type": "passive", "name": "Manifestation", "spellId": 450875, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 100}]}, {"id": 101224, "name": "Purified Spirit / Harmonic Gambit", "type": "choice", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101225], "prev": [101223], "entries": [{"id": 125035, "definitionId": 129871, "maxRanks": 1, "type": "passive", "name": "Purified Spirit", "spellId": 450867, "icon": "ability_monk_explodingjadeblossom", "index": 100}, {"id": 125034, "definitionId": 129870, "maxRanks": 1, "type": "passive", "name": "Harmonic Gambit", "spellId": 450870, "icon": "passive_monk_teachingsofmonastery", "index": 200}]}, {"id": 101230, "name": "Balanced Stratagem", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101229], "prev": [101223], "entries": [{"id": 125043, "definitionId": 129879, "maxRanks": 1, "type": "passive", "name": "Balanced Stratagem", "spellId": 450889, "icon": "ability_monk_sphereharmonydiscord", "index": 100}]}, {"id": 101221, "name": "Tiger's Vigor / Roar from the Heavens", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101220], "prev": [101222], "entries": [{"id": 125031, "definitionId": 129867, "maxRanks": 1, "type": "passive", "name": "Tiger's Vigor", "spellId": 451041, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125030, "definitionId": 129866, "maxRanks": 1, "type": "passive", "name": "Roar from the Heavens", "spellId": 451043, "icon": "inv_celestialserpentmount", "index": 200}]}, {"id": 101225, "name": "Endless Draught", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101226], "prev": [101224], "entries": [{"id": 125036, "definitionId": 129872, "maxRanks": 1, "type": "passive", "name": "Endless Draught", "spellId": 450892, "icon": "inv_drink_25_honeytea", "index": 100}]}, {"id": 101229, "name": "Mantra of Purity / Mantra of Tenacity", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101228], "prev": [101230], "entries": [{"id": 125042, "definitionId": 129878, "maxRanks": 1, "type": "passive", "name": "Mantra of Purity", "spellId": 451036, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 125041, "definitionId": 129877, "maxRanks": 1, "type": "passive", "name": "Mantra of Tenacity", "spellId": 451029, "icon": "spell_monk_brewmastertraining", "index": 200}]}, {"id": 101220, "name": "Overwhelming Force", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101221], "entries": [{"id": 125029, "definitionId": 129865, "maxRanks": 1, "type": "passive", "name": "Overwhelming Force", "spellId": 451024, "icon": "ability_titankeeper_piercingcorruption", "index": 100}]}, {"id": 101226, "name": "Path of Resurgence / Way of a Thousand Strikes", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101225], "entries": [{"id": 125038, "definitionId": 129874, "maxRanks": 1, "type": "passive", "name": "Path of Resurgence", "spellId": 450912, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 125037, "definitionId": 129873, "maxRanks": 1, "type": "passive", "name": "Way of a Thousand Strikes", "spellId": 450965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101228, "name": "Clarity of Purpose", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101229], "entries": [{"id": 125040, "definitionId": 129876, "maxRanks": 1, "type": "passive", "name": "Clarity of Purpose", "spellId": 451017, "icon": "ability_titankeeper_cleanse", "index": 100}]}, {"id": 101227, "name": "Coalescence", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 66, "next": [], "prev": [101228, 101220, 101226], "entries": [{"id": 125039, "definitionId": 129875, "maxRanks": 1, "type": "passive", "name": "Coalescence", "spellId": 450529, "icon": "ability_monk_effuse", "index": 100}]}], "subTreeNodes": [{"id": 101219, "name": "Master of Harmony / Shado-Pan", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125028, "type": "subtree", "name": "Master of Harmony", "traitSubTreeId": 66, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-masterofharmony", "nodes": [101223, 101222, 101224, 101230, 101221, 101225, 101229, 101220, 101226, 101228, 101227]}, {"id": 125027, "type": "subtree", "name": "Shado-Pan", "traitSubTreeId": 65, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-shadopan", "nodes": [101248, 101247, 101249, 101246, 101254, 101250, 101245, 101253, 101251, 101244, 101252]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101105, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]}, {"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Windwalker", "specId": 269, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101150], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101150, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 101159], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101150, "name": "Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184, 101183], "prev": [101185, 101149], "entries": [{"id": 124941, "definitionId": 129779, "maxRanks": 1, "type": "active", "name": "Detox", "spellId": 218164, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [101159, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [101159, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101153, 101148, 101150], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101185, 101150], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 101159, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101160, 101146, 101145], "entries": [{"id": 124953, "definitionId": 129791, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 124952, "definitionId": 129790, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 460485, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152, 101150], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101159, 101145], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101137], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101137], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101137, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101159, 101158, 101166], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101162], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101162], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101162, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101137, "name": "Dance of the Wind", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124927, "definitionId": 129765, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 432181, "icon": "ability_monk_dematerialize", "index": 100}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101162, "name": "Summon White Tiger Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101163, 101165, 101173], "entries": [{"id": 124956, "definitionId": 129794, "maxRanks": 1, "type": "passive", "name": "Summon White Tiger Statue", "spellId": 450639, "icon": "ability_monk_summonwhitetigerstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101137, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101162, 101135, 101174], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101218, "name": "Fists of Fury", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101048, 101217, 101036], "prev": [], "entries": [{"id": 125026, "definitionId": 129864, "maxRanks": 1, "type": "active", "name": "Fists of Fury", "spellId": 113656, "icon": "monk_ability_fistoffury", "index": 100}]}, {"id": 101048, "name": "Momentum Boost", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101049, 101047], "prev": [101218], "entries": [{"id": 124820, "definitionId": 129658, "maxRanks": 1, "type": "passive", "name": "Momentum Boost", "spellId": 451294, "icon": "inv_belt_leather_raidmonk_n_01", "index": 100}]}, {"id": 101217, "name": "Combat Wisdom", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [101054], "prev": [101218], "entries": [{"id": 125025, "definitionId": 129863, "maxRanks": 1, "type": "passive", "name": "Combat Wisdom", "spellId": 121817, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101036, "name": "Acclamation", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101037, 101035], "prev": [101218], "entries": [{"id": 124806, "definitionId": 129644, "maxRanks": 1, "type": "passive", "name": "Acclamation", "spellId": 451432, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101049, "name": "Touch of the Tiger", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101055], "prev": [101048], "entries": [{"id": 124821, "definitionId": 129659, "maxRanks": 1, "type": "passive", "name": "Touch of the Tiger", "spellId": 388856, "icon": "ability_monk_tigerpalm", "index": 100}]}, {"id": 101047, "name": "Hardened Soles", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [101055], "prev": [101048], "entries": [{"id": 124819, "definitionId": 129657, "maxRanks": 1, "type": "passive", "name": "Hardened Soles", "spellId": 391383, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101037, "name": "Ascension", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [101039], "prev": [101036], "entries": [{"id": 124807, "definitionId": 129645, "maxRanks": 1, "type": "passive", "name": "Ascension", "spellId": 115396, "icon": "ability_monk_ascension", "index": 100}]}, {"id": 101035, "name": "Ferociousness", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101039], "prev": [101036], "entries": [{"id": 124805, "definitionId": 129643, "maxRanks": 1, "type": "passive", "name": "Ferociousness", "spellId": 458623, "icon": "ability_mount_whitetiger", "index": 100}]}, {"id": 101055, "name": "Crane Vortex", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [101050, 101061, 101060], "prev": [101049, 101047], "entries": [{"id": 124828, "definitionId": 129666, "maxRanks": 1, "type": "passive", "name": "Crane Vortex", "spellId": 388848, "icon": "ability_monk_cranekick_new", "index": 100}]}, {"id": 101054, "name": "Teachings of the Monastery", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101061, 101053, 101216], "prev": [101217], "entries": [{"id": 124827, "definitionId": 129665, "maxRanks": 1, "type": "passive", "name": "Teachings of the Monastery", "spellId": 116645, "icon": "passive_monk_teachingsofmonastery", "index": 100}]}, {"id": 101039, "name": "Glory of the Dawn", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [101216, 101038, 101215], "prev": [101037, 101035], "entries": [{"id": 124810, "definitionId": 129648, "maxRanks": 1, "type": "passive", "name": "Glory of the Dawn", "spellId": 392958, "icon": "ability_monk_mightyoxkick", "index": 100}]}, {"id": 101050, "name": "Jade Ignition", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101060], "prev": [101055], "entries": [{"id": 124822, "definitionId": 129660, "maxRanks": 1, "type": "passive", "name": "Jade Ignition", "spellId": 392979, "icon": "ability_monk_chiexplosion", "index": 100}]}, {"id": 101061, "name": "Courageous Impulse", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101060], "prev": [101055, 101054], "entries": [{"id": 124835, "definitionId": 129673, "maxRanks": 1, "type": "passive", "name": "Courageous Impulse", "spellId": 451495, "icon": "inv_glove_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101053, "name": "Storm, Earth, and Fire", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101052, 101051, 101206], "prev": [101054], "entries": [{"id": 124826, "definitionId": 129664, "maxRanks": 1, "type": "active", "name": "Storm, Earth, and Fire", "spellId": 137639, "icon": "spell_nature_giftofthewild", "index": 100}]}, {"id": 101216, "name": "Flurry of Xuen / Hit Combo", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101215], "prev": [101039, 101054], "entries": [{"id": 125024, "definitionId": 129862, "maxRanks": 1, "type": "passive", "name": "Flurry of Xuen", "spellId": 452137, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125023, "definitionId": 129861, "maxRanks": 1, "type": "passive", "name": "Hit Combo", "spellId": 196740, "icon": "ability_monk_palmstrike", "index": 200}]}, {"id": 101038, "name": "Brawler's Intensity / Meridian Strikes", "type": "choice", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101215], "prev": [101039], "entries": [{"id": 124809, "definitionId": 129647, "maxRanks": 1, "type": "passive", "name": "Brawler's Intensity", "spellId": 451485, "icon": "inv_staff_2h_artifactmonkeyking_d_03", "index": 100}, {"id": 124808, "definitionId": 129646, "maxRanks": 1, "type": "passive", "name": "Meridian Strikes", "spellId": 391330, "icon": "ability_monk_touchofdeath", "index": 200}]}, {"id": 101060, "name": "Dance of Chi-Ji", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101057, 101056, 101062], "prev": [101061, 101055, 101050], "entries": [{"id": 124834, "definitionId": 129672, "maxRanks": 1, "type": "passive", "name": "Dance of Chi-Ji", "spellId": 325201, "icon": "ability_monk_cranekick_new", "index": 100}]}, {"id": 101052, "name": "Drinking Horn Cover / Spiritual Focus", "type": "choice", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101062, 101206], "prev": [101053], "entries": [{"id": 124825, "definitionId": 129663, "maxRanks": 1, "type": "passive", "name": "Drinking Horn Cover", "spellId": 391370, "icon": "ability_warrior_unrelentingassault", "index": 100}, {"id": 124824, "definitionId": 129662, "maxRanks": 1, "type": "passive", "name": "Spiritual Focus", "spellId": 280197, "icon": "spell_nature_giftofthewild", "index": 200}]}, {"id": 101051, "name": "Ordered Elements", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101206, 101214], "prev": [101053], "entries": [{"id": 124823, "definitionId": 129661, "maxRanks": 1, "type": "passive", "name": "Ordered Elements", "spellId": 451463, "icon": "ability_revendreth_monk", "index": 100}]}, {"id": 101215, "name": "Strike of the Windlord", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101214, 101046, 101040], "prev": [101038, 101039, 101216], "entries": [{"id": 125022, "definitionId": 129860, "maxRanks": 1, "type": "active", "name": "Strike of the Windlord", "spellId": 392983, "icon": "inv_hand_1h_artifactskywall_d_01", "index": 100}]}, {"id": 101057, "name": "Martial Mixture", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101059], "prev": [101060], "entries": [{"id": 124830, "definitionId": 129668, "maxRanks": 1, "type": "passive", "name": "Martial Mixture", "spellId": 451454, "icon": "ability_monk_powerstrikes", "index": 100}]}, {"id": 101056, "name": "Energy Burst", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101059, 101205], "prev": [101060], "entries": [{"id": 124829, "definitionId": 129667, "maxRanks": 1, "type": "passive", "name": "Energy Burst", "spellId": 451498, "icon": "ability_monk_blackoutstrike", "index": 100}]}, {"id": 101062, "name": "Shadowboxing Treads", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101205], "prev": [101052, 101060], "entries": [{"id": 124836, "definitionId": 129674, "maxRanks": 1, "type": "passive", "name": "Shadowboxing Treads", "spellId": 392982, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101206, "name": "Invoke Xuen, the White Tiger", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101205, 101207, 101213], "prev": [101053, 101052, 101051], "entries": [{"id": 125013, "definitionId": 129851, "maxRanks": 1, "type": "active", "name": "Invoke Xuen, the White Tiger", "spellId": 123904, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101214, "name": "Inner Peace", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101213], "prev": [101215, 101051], "entries": [{"id": 125021, "definitionId": 129859, "maxRanks": 1, "type": "passive", "name": "Inner Peace", "spellId": 397768, "icon": "ability_monk_jasmineforcetea", "index": 100}]}, {"id": 101046, "name": "Rushing Jade Wind", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101213, 101045], "prev": [101215], "entries": [{"id": 124818, "definitionId": 129656, "maxRanks": 1, "type": "passive", "name": "Rushing Jade Wind", "spellId": 451505, "icon": "ability_monk_rushingjadewind", "index": 100}]}, {"id": 101040, "name": "Thunderfist", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101045], "prev": [101215], "entries": [{"id": 124811, "definitionId": 129649, "maxRanks": 1, "type": "passive", "name": "Thunderfist", "spellId": 392985, "icon": "inv_hand_1h_artifactskywall_d_01", "index": 100}]}, {"id": 101059, "name": "Sequenced Strikes", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101058, 101204], "prev": [101056, 101057], "entries": [{"id": 124833, "definitionId": 129671, "maxRanks": 1, "type": "passive", "name": "Sequenced Strikes", "spellId": 451515, "icon": "ability_monk_sparring", "index": 100}]}, {"id": 101205, "name": "Rising Star", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101204], "prev": [101062, 101206, 101056], "entries": [{"id": 125012, "definitionId": 129850, "maxRanks": 1, "type": "passive", "name": "Rising Star", "spellId": 388849, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101207, "name": "Invoker's Delight", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101208, 101210, 101212], "prev": [101206], "entries": [{"id": 125014, "definitionId": 129852, "maxRanks": 1, "type": "passive", "name": "Invoker's Delight", "spellId": 388661, "icon": "inv_inscription_80_warscroll_battleshout", "index": 100}]}, {"id": 101213, "name": "Dual Threat", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101212, 101044], "prev": [101214, 101046, 101206], "entries": [{"id": 125020, "definitionId": 129858, "maxRanks": 1, "type": "passive", "name": "Dual Threat", "spellId": 451823, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101045, "name": "Gale Force", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101044, 101041], "prev": [101040, 101046], "entries": [{"id": 124817, "definitionId": 129655, "maxRanks": 1, "type": "passive", "name": "Gale Force", "spellId": 451580, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 101058, "name": "Last Emperor's Capacitor / ", "type": "single", "posX": 10200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102251], "prev": [101059], "entries": [{"id": 124832, "definitionId": 129670, "maxRanks": 1, "type": "passive", "name": "Last Emperor's Capacitor", "spellId": 392989, "icon": "ability_warrior_unrelentingassault", "index": 100}, {}]}, {"id": 101204, "name": "Whirling Dragon Punch", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101203, 101209], "prev": [101059, 101205], "entries": [{"id": 125011, "definitionId": 129849, "maxRanks": 1, "type": "active", "name": "Whirling Dragon Punch", "spellId": 152175, "icon": "ability_monk_hurricanestrike", "index": 100}]}, {"id": 101208, "name": "Xuen's Bond", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101209], "prev": [101207], "entries": [{"id": 125015, "definitionId": 129853, "maxRanks": 1, "type": "passive", "name": "Xuen's Bond", "spellId": 392986, "icon": "ability_demonhunter_netherbond", "index": 100}]}, {"id": 101210, "name": "Xuen's Battlegear", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101209, 101211], "prev": [101207], "entries": [{"id": 125017, "definitionId": 129855, "maxRanks": 1, "type": "passive", "name": "Xuen's Battlegear", "spellId": 392993, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101212, "name": "Transfer the Power", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101211], "prev": [101207, 101213], "entries": [{"id": 125019, "definitionId": 129857, "maxRanks": 1, "type": "passive", "name": "Transfer the Power", "spellId": 195300, "icon": "ability_thunderking_kickshell", "index": 100}]}, {"id": 101044, "name": "Jadefire Fists / Jadefire Stomp", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101043, 101042], "prev": [101045, 101213], "entries": [{"id": 124816, "definitionId": 129654, "maxRanks": 1, "type": "passive", "name": "Jadefire Fists", "spellId": 457974, "icon": "spell_animaardenweald_missile", "index": 100}, {"id": 126026, "definitionId": 130858, "maxRanks": 1, "type": "active", "name": "Jadefire Stomp", "spellId": 388193, "icon": "ability_ardenweald_monk", "index": 200}]}, {"id": 101041, "name": "Communion With Wind", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102250], "prev": [101045], "entries": [{"id": 124812, "definitionId": 129650, "maxRanks": 1, "type": "passive", "name": "Communion With Wind", "spellId": 451576, "icon": "ability_skyreach_wind_wall", "index": 100}]}, {"id": 102251, "name": "Power of the Thunder King / ", "type": "single", "posX": 10200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101058], "entries": [{"id": 126309, "definitionId": 131135, "maxRanks": 1, "type": "passive", "name": "Power of the Thunder King", "spellId": 459809, "icon": "ability_thunderking_thunderstruck", "index": 100}, {}]}, {"id": 101203, "name": "Revolving Whirl / Knowledge of the Broken Temple", "type": "choice", "posX": 10800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101204], "entries": [{"id": 125010, "definitionId": 129848, "maxRanks": 1, "type": "passive", "name": "Revolving Whirl", "spellId": 451524, "icon": "ability_monk_chiswirl", "index": 100}, {"id": 125009, "definitionId": 129847, "maxRanks": 1, "type": "passive", "name": "Knowledge of the Broken Temple", "spellId": 451529, "icon": "inv_glove_leather_pvpmonk_f_01", "index": 200}]}, {"id": 101209, "name": "Memory of the Monastery", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101204, 101210, 101208], "entries": [{"id": 125016, "definitionId": 129854, "maxRanks": 1, "type": "passive", "name": "Memory of the Monastery", "spellId": 454969, "icon": "ability_mount_goatmountwhite", "index": 100}]}, {"id": 101211, "name": "Fury of Xuen", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101212, 101210], "entries": [{"id": 125018, "definitionId": 129856, "maxRanks": 1, "type": "passive", "name": "Fury of Xuen", "spellId": 396166, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101043, "name": "Path of Jade / Singularly Focused Jade", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101044], "entries": [{"id": 124815, "definitionId": 129653, "maxRanks": 1, "type": "passive", "name": "Path of Jade", "spellId": 392994, "icon": "spell_animaardenweald_beam", "index": 100}, {"id": 124814, "definitionId": 129652, "maxRanks": 1, "type": "passive", "name": "Singularly Focused Jade", "spellId": 451573, "icon": "ability_monk_fortuneturned", "index": 200}]}, {"id": 101042, "name": "Jadefire Harmony", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101044], "entries": [{"id": 124813, "definitionId": 129651, "maxRanks": 1, "type": "passive", "name": "Jadefire Harmony", "spellId": 391412, "icon": "ability_ardenweald_monk", "index": 100}]}, {"id": 102250, "name": "Darting Hurricane", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101041], "entries": [{"id": 126307, "definitionId": 131133, "maxRanks": 1, "type": "passive", "name": "Darting Hurricane", "spellId": 459839, "icon": "ability_skyreach_four_wind", "index": 100}]}], "heroNodes": [{"id": 101243, "name": "Celestial Conduit", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 64, "next": [101236, 101242, 101233], "prev": [], "entries": [{"id": 125062, "definitionId": 129894, "maxRanks": 1, "type": "active", "name": "Celestial Conduit", "spellId": 443028, "icon": "inv_ability_conduitofthecelestialsmonk_celestialconduit", "index": 100}], "freeNode": true}, {"id": 101248, "name": "Flurry Strikes", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 65, "next": [101247, 101249, 101246], "prev": [], "entries": [{"id": 125069, "definitionId": 129901, "maxRanks": 1, "type": "passive", "name": "Flurry Strikes", "spellId": 450615, "icon": "inv_ability_shadopanmonk_flurrystrikes", "index": 100}], "freeNode": true}, {"id": 101236, "name": "Temple Training / Xuen's Guidance", "type": "choice", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101237], "prev": [101243], "entries": [{"id": 125054, "definitionId": 129886, "maxRanks": 1, "type": "passive", "name": "Temple Training", "spellId": 442743, "icon": "ability_monk_provoke", "index": 100}, {"id": 125053, "definitionId": 129885, "maxRanks": 1, "type": "passive", "name": "Xuen's Guidance", "spellId": 442687, "icon": "ability_monk_dpsstance", "index": 200}]}, {"id": 101242, "name": "Courage of the White Tiger", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101241], "prev": [101243], "entries": [{"id": 125061, "definitionId": 129893, "maxRanks": 1, "type": "passive", "name": "Courage of the White Tiger", "spellId": 443087, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101233, "name": "Restore Balance / Yu'lon's Knowledge", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101234], "prev": [101243], "entries": [{"id": 125049, "definitionId": 129881, "maxRanks": 1, "type": "passive", "name": "Restore Balance", "spellId": 442719, "icon": "ability_monk_chiexplosion", "index": 100}, {"id": 125048, "definitionId": 129880, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Knowledge", "spellId": 443625, "icon": "inv_jewelcrafting_jadeserpent", "index": 200}]}, {"id": 101247, "name": "Pride of Pandaria / High Impact", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101254], "prev": [101248], "entries": [{"id": 125068, "definitionId": 129900, "maxRanks": 1, "type": "passive", "name": "Pride of Pandaria", "spellId": 450979, "icon": "inv_staff_2h_pandarenmonk_c_01", "index": 100}, {"id": 125067, "definitionId": 129899, "maxRanks": 1, "type": "passive", "name": "High Impact", "spellId": 450982, "icon": "ability_monk_powerstrikes", "index": 200}]}, {"id": 101249, "name": "Veteran's Eye", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101250], "prev": [101248], "entries": [{"id": 125070, "definitionId": 129902, "maxRanks": 1, "type": "passive", "name": "Veteran's Eye", "spellId": 450987, "icon": "ability_monk_provoke", "index": 100}]}, {"id": 101246, "name": "Martial Precision", "type": "single", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101245], "prev": [101248], "entries": [{"id": 125066, "definitionId": 129898, "maxRanks": 1, "type": "passive", "name": "Martial Precision", "spellId": 450990, "icon": "ability_monk_jab", "index": 100}]}, {"id": 101237, "name": "Heart of the Jade Serpent", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "requiresNode": 101120, "next": [101238], "prev": [101236], "entries": [{"id": 125055, "definitionId": 129887, "maxRanks": 1, "type": "passive", "name": "Heart of the Jade Serpent", "spellId": 443294, "icon": "ability_monk_dragonkick", "index": 100}]}, {"id": 101241, "name": "Strength of the Black Ox", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101240], "prev": [101242], "entries": [{"id": 125060, "definitionId": 129892, "maxRanks": 1, "type": "passive", "name": "Strength of the Black Ox", "spellId": 443110, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101234, "name": "Flight of the Red Crane", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101235], "prev": [101233], "entries": [{"id": 125050, "definitionId": 129882, "maxRanks": 1, "type": "passive", "name": "Flight of the Red Crane", "spellId": 443255, "icon": "inv_pet_cranegod", "index": 100}]}, {"id": 101254, "name": "Protect and Serve / Lead from the Front", "type": "choice", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101253], "prev": [101247], "entries": [{"id": 125076, "definitionId": 129908, "maxRanks": 1, "type": "passive", "name": "Protect and Serve", "spellId": 450984, "icon": "ability_monk_vivify", "index": 100}, {"id": 125075, "definitionId": 129907, "maxRanks": 1, "type": "passive", "name": "Lead from the Front", "spellId": 450985, "icon": "ability_monk_quipunch", "index": 200}]}, {"id": 101250, "name": "One Versus Many", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101251], "prev": [101249], "entries": [{"id": 125071, "definitionId": 129903, "maxRanks": 1, "type": "passive", "name": "One Versus Many", "spellId": 450988, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101245, "name": "Whirling Steel / Predictive Training", "type": "choice", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101244], "prev": [101246], "entries": [{"id": 125065, "definitionId": 129897, "maxRanks": 1, "type": "passive", "name": "Whirling Steel", "spellId": 450991, "icon": "ability_whirlwind", "index": 100}, {"id": 125064, "definitionId": 129896, "maxRanks": 1, "type": "passive", "name": "Predictive Training", "spellId": 450992, "icon": "ability_monk_domeofmist", "index": 200}]}, {"id": 101238, "name": "Niuzao's Protection / Jade Sanctuary", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101237], "entries": [{"id": 125057, "definitionId": 129889, "maxRanks": 1, "type": "passive", "name": "Niuzao's Protection", "spellId": 442747, "icon": "ability_monk_chargingoxwave", "index": 100}, {"id": 125056, "definitionId": 129888, "maxRanks": 1, "type": "passive", "name": "Jade Sanctuary", "spellId": 443059, "icon": "ability_monk_jadeserpentbreath", "index": 200}]}, {"id": 101240, "name": "Chi-Ji's Swiftness", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101241], "entries": [{"id": 125059, "definitionId": 129891, "maxRanks": 1, "type": "passive", "name": "Chi-Ji's Swiftness", "spellId": 443566, "icon": "inv_shoulder_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101235, "name": "Inner Compass / August Dynasty", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101234], "entries": [{"id": 125052, "definitionId": 129884, "maxRanks": 1, "type": "passive", "name": "Inner Compass", "spellId": 443571, "icon": "inv_10_dungeonjewelry_explorer_trinket_1compass_color2", "index": 100}, {"id": 125051, "definitionId": 129883, "maxRanks": 1, "type": "passive", "name": "August Dynasty", "spellId": 442818, "icon": "ability_monk_legacyoftheemperor", "index": 200}]}, {"id": 101253, "name": "Against All Odds", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101254], "entries": [{"id": 125074, "definitionId": 129906, "maxRanks": 1, "type": "passive", "name": "Against All Odds", "spellId": 450986, "icon": "achievement_legionpvp6tier1", "index": 100}]}, {"id": 101251, "name": "Efficient Training", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101250], "entries": [{"id": 125072, "definitionId": 129904, "maxRanks": 1, "type": "passive", "name": "Efficient Training", "spellId": 450989, "icon": "inv_fistofthewhitetiger", "index": 100}]}, {"id": 101244, "name": "Vigilant Watch", "type": "single", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101245], "entries": [{"id": 125063, "definitionId": 129895, "maxRanks": 1, "type": "passive", "name": "Vigilant Watch", "spellId": 450993, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 101239, "name": "Unity Within", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 64, "next": [], "prev": [101240, 101235, 101238], "entries": [{"id": 125058, "definitionId": 129890, "maxRanks": 1, "type": "passive", "name": "Unity Within", "spellId": 443589, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101252, "name": "Wisdom of the Wall", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 65, "next": [], "prev": [101244, 101253, 101251], "entries": [{"id": 125073, "definitionId": 129905, "maxRanks": 1, "type": "passive", "name": "Wisdom of the Wall", "spellId": 450994, "icon": "inv_legendary_sigilofwisdom", "index": 100}]}], "subTreeNodes": [{"id": 101232, "name": "Conduit of the Celestials / Shado-Pan", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125047, "type": "subtree", "name": "Conduit of the Celestials", "traitSubTreeId": 64, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-conduitofthecelestials", "nodes": [101243, 101236, 101242, 101233, 101237, 101241, 101234, 101238, 101240, 101235, 101239]}, {"id": 125046, "type": "subtree", "name": "Shado-Pan", "traitSubTreeId": 65, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-shadopan", "nodes": [101248, 101247, 101249, 101246, 101254, 101250, 101245, 101253, 101251, 101244, 101252]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101105, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]}, {"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Mistweaver", "specId": 270, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101089], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101089, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 102432], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101089, "name": "Improved Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184], "prev": [101185, 101149], "entries": [{"id": 124866, "definitionId": 129704, "maxRanks": 1, "type": "passive", "name": "Improved Detox", "spellId": 388874, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [102432, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102432, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101089, 101153, 101148], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101089, 101185], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 102432, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101146, 101160, 101145], "entries": [{"id": 126500, "definitionId": 131326, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 126499, "definitionId": 131325, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 123986, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101145, 102432], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101139], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101139], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101139, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101158, 101166, 102432], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101164], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101164], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101164, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101139, "name": "Dance of the Wind", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124929, "definitionId": 129767, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 432181, "icon": "ability_monk_dematerialize", "index": 100}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101164, "name": "Summon Jade Serpent Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101173, 101163, 101165], "entries": [{"id": 124958, "definitionId": 129796, "maxRanks": 1, "type": "active", "name": "Summon Jade Serpent Statue", "spellId": 115313, "icon": "ability_monk_summonserpentstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101139, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101135, 101174, 101164], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101134, "name": "Enveloping Mist", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101133, 101107], "prev": [], "entries": [{"id": 124922, "definitionId": 129760, "maxRanks": 1, "type": "active", "name": "Enveloping Mist", "spellId": 124682, "icon": "spell_monk_envelopingmist", "index": 100}]}, {"id": 101133, "name": "Thunder Focus Tea", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101096, 101132], "prev": [101134], "entries": [{"id": 124921, "definitionId": 129759, "maxRanks": 1, "type": "active", "name": "Thunder Focus Tea", "spellId": 116680, "icon": "ability_monk_thunderfocustea", "index": 100}]}, {"id": 101107, "name": "Renewing Mist", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101132, 101110], "prev": [101134], "entries": [{"id": 124888, "definitionId": 129726, "maxRanks": 1, "type": "active", "name": "Renewing Mist", "spellId": 115151, "icon": "ability_monk_renewingmists", "index": 100}]}, {"id": 101096, "name": "Life Cocoon", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101097, 101095], "prev": [101133], "entries": [{"id": 124875, "definitionId": 129713, "maxRanks": 1, "type": "active", "name": "Life Cocoon", "spellId": 116849, "icon": "ability_monk_chicocoon", "index": 100}]}, {"id": 101132, "name": "Mana Tea", "type": "single", "posX": 12600, "posY": 2700, "maxRanks": 1, "next": [101131], "prev": [101133, 101107], "entries": [{"id": 124920, "definitionId": 129758, "maxRanks": 1, "type": "active", "name": "Mana Tea", "spellId": 115869, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101110, "name": "Invigorating Mists", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101109, 101108], "prev": [101107], "entries": [{"id": 124891, "definitionId": 129729, "maxRanks": 1, "type": "passive", "name": "Invigorating Mists", "spellId": 274586, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101097, "name": "Crane Style", "type": "single", "posX": 10800, "posY": 3300, "maxRanks": 1, "next": [101099], "prev": [101096], "entries": [{"id": 124876, "definitionId": 129714, "maxRanks": 1, "type": "passive", "name": "Crane Style", "spellId": 446260, "icon": "ability_monk_mightyoxkick", "index": 100}]}, {"id": 101131, "name": "Revival / Restoral", "type": "choice", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101092, 101130], "prev": [101132], "entries": [{"id": 124919, "definitionId": 129757, "maxRanks": 1, "type": "active", "name": "Revival", "spellId": 115310, "icon": "spell_monk_revival", "index": 100}, {"id": 124918, "definitionId": 129756, "maxRanks": 1, "type": "active", "name": "Restoral", "spellId": 388615, "icon": "ability_monk_tigerstyle", "index": 200}]}, {"id": 101109, "name": "Healing Elixir", "type": "single", "posX": 14400, "posY": 3300, "maxRanks": 1, "next": [101111], "prev": [101110], "entries": [{"id": 124890, "definitionId": 129728, "maxRanks": 1, "type": "passive", "name": "Healing Elixir", "spellId": 122280, "icon": "ability_monk_jasmineforcetea", "index": 100}]}, {"id": 101095, "name": "Nourishing Chi / Calming Coalescence", "type": "choice", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101099, 101094, 101100], "prev": [101096], "entries": [{"id": 124874, "definitionId": 129712, "maxRanks": 1, "type": "passive", "name": "Nourishing Chi", "spellId": 387765, "icon": "inv_misc_gem_pearl_06", "index": 100}, {"id": 124873, "definitionId": 129711, "maxRanks": 1, "type": "passive", "name": "Calming Coalescence", "spellId": 388218, "icon": "ability_monk_healthsphere", "index": 200}]}, {"id": 101092, "name": "Uplifted Spirits", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101094, 101129], "prev": [101131], "entries": [{"id": 124869, "definitionId": 129707, "maxRanks": 1, "type": "passive", "name": "Uplifted Spirits", "spellId": 388551, "icon": "monk_stance_wiseserpent", "index": 100}]}, {"id": 101130, "name": "Energizing Brew / Lifecycles", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101129], "prev": [101131], "entries": [{"id": 124917, "definitionId": 129755, "maxRanks": 1, "type": "passive", "name": "Energizing Brew", "spellId": 422031, "icon": "ui_profession_herbalism", "index": 100}, {"id": 124916, "definitionId": 129754, "maxRanks": 1, "type": "passive", "name": "Lifecycles", "spellId": 197915, "icon": "ability_monk_souldance", "index": 200}]}, {"id": 101108, "name": "Zen Pulse", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101122, 101111], "prev": [101110], "entries": [{"id": 124889, "definitionId": 129727, "maxRanks": 1, "type": "passive", "name": "Zen Pulse", "spellId": 446326, "icon": "ability_monk_forcesphere", "index": 100}]}, {"id": 101099, "name": "Mists of Life", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101098, 101100], "prev": [101095, 101097], "entries": [{"id": 124879, "definitionId": 129717, "maxRanks": 1, "type": "passive", "name": "Mists of Life", "spellId": 388548, "icon": "inv_shoulder__inv_leather_raidmonkmythic_s_01", "index": 100}]}, {"id": 101094, "name": "Overflowing Mists", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101100, 101093], "prev": [101095, 101092], "entries": [{"id": 124872, "definitionId": 129710, "maxRanks": 2, "type": "passive", "name": "Overflowing Mists", "spellId": 388511, "icon": "inv_legion_faction_dreamweavers", "index": 100}]}, {"id": 101129, "name": "Invoke Yu'lon, the Jade Serpent / Invoke Chi-Ji, the Red Crane", "type": "choice", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101093, 101128, 101112], "prev": [101092, 101130], "entries": [{"id": 124915, "definitionId": 129753, "maxRanks": 1, "type": "active", "name": "Invoke Yu'lon, the Jade Serpent", "spellId": 322118, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124914, "definitionId": 129752, "maxRanks": 1, "type": "active", "name": "Invoke Chi-Ji, the Red Crane", "spellId": 325197, "icon": "inv_pet_cranegod", "index": 200}]}, {"id": 101122, "name": "Deep Clarity", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101112, 101121], "prev": [101108], "entries": [{"id": 124906, "definitionId": 129744, "maxRanks": 1, "type": "passive", "name": "Deep Clarity", "spellId": 446345, "icon": "ability_monk_zenmeditation", "index": 200}]}, {"id": 101111, "name": "Rapid Diffusion", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101121, 101120], "prev": [101108, 101109], "entries": [{"id": 124892, "definitionId": 129730, "maxRanks": 2, "type": "passive", "name": "Rapid Diffusion", "spellId": 388847, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101098, "name": "Chrysalis / Burst of Life", "type": "choice", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101101], "prev": [101099], "entries": [{"id": 124878, "definitionId": 129716, "maxRanks": 1, "type": "passive", "name": "Chrysalis", "spellId": 202424, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 124877, "definitionId": 129715, "maxRanks": 1, "type": "passive", "name": "Burst of Life", "spellId": 399226, "icon": "ability_rogue_imrovedrecuperate", "index": 200}]}, {"id": 101100, "name": "Yu'lon's Whisper", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101101, 101127], "prev": [101095, 101094, 101099], "entries": [{"id": 124880, "definitionId": 129718, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Whisper", "spellId": 388038, "icon": "ability_monk_chiexplosion", "index": 200}]}, {"id": 101093, "name": "Mist Wrap / Refreshing Jade Wind", "type": "choice", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101127], "prev": [101129, 101094], "entries": [{"id": 124871, "definitionId": 129709, "maxRanks": 1, "type": "passive", "name": "Mist Wrap", "spellId": 197900, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 124870, "definitionId": 129708, "maxRanks": 1, "type": "passive", "name": "Refreshing Jade Wind", "spellId": 457397, "icon": "ability_monk_rushingjadewind", "index": 200}]}, {"id": 101128, "name": "Celestial Harmony", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101127, 101113], "prev": [101129], "entries": [{"id": 124913, "definitionId": 129751, "maxRanks": 1, "type": "passive", "name": "Celestial Harmony", "spellId": 343655, "icon": "ability_monk_jadeserpentbreath", "index": 100}]}, {"id": 101112, "name": "Dancing Mists", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101115], "prev": [101129, 101122], "entries": [{"id": 124893, "definitionId": 129731, "maxRanks": 1, "type": "passive", "name": "Dancing Mists", "spellId": 388701, "icon": "ability_monk_serenity", "index": 100}]}, {"id": 101121, "name": "Lotus Infusion / Chi Harmony", "type": "choice", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101115, 101120], "prev": [101111, 101122], "entries": [{"id": 124905, "definitionId": 129743, "maxRanks": 1, "type": "passive", "name": "Lotus Infusion", "spellId": 458431, "icon": "inv_misc_herb_chamlotus", "index": 100}, {"id": 126059, "definitionId": 130891, "maxRanks": 1, "type": "passive", "name": "Chi Harmony", "spellId": 448392, "icon": "inv_ability_monk_renewingmists_active", "index": 200}]}, {"id": 101101, "name": "Jadefire Stomp", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101105, 101102], "prev": [101098, 101100], "entries": [{"id": 124881, "definitionId": 129719, "maxRanks": 1, "type": "active", "name": "Jadefire Stomp", "spellId": 388193, "icon": "ability_ardenweald_monk", "index": 100}]}, {"id": 101127, "name": "Peer Into Peace / Pool of Mists", "type": "choice", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101126], "prev": [101128, 101100, 101093], "entries": [{"id": 124912, "definitionId": 129750, "maxRanks": 1, "type": "passive", "name": "Peer Into Peace", "spellId": 440008, "icon": "inv_staff_2h_monk_c_01", "index": 100}, {"id": 125932, "definitionId": 130763, "maxRanks": 1, "type": "passive", "name": "Pool of Mists", "spellId": 173841, "icon": "achievement_zone_sholazar_10", "index": 200}]}, {"id": 101113, "name": "Jade Bond / Gift of the Celestials", "type": "choice", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101126, 101124, 101114], "prev": [101128], "entries": [{"id": 124895, "definitionId": 129733, "maxRanks": 1, "type": "passive", "name": "Jade Bond", "spellId": 388031, "icon": "inv_inscription_deck_jadeserpent", "index": 100}, {"id": 124894, "definitionId": 129732, "maxRanks": 1, "type": "passive", "name": "Gift of the Celestials", "spellId": 388212, "icon": "inv_pet_jadeserpentpet", "index": 200}]}, {"id": 101115, "name": "Focused Thunder", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101114, 101116], "prev": [101112, 101121], "entries": [{"id": 124897, "definitionId": 129735, "maxRanks": 1, "type": "passive", "name": "Focused Thunder", "spellId": 197895, "icon": "spell_monk_nimblebrew", "index": 100}]}, {"id": 101120, "name": "Sheilun's Gift", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101116, 101119], "prev": [101111, 101121], "entries": [{"id": 124904, "definitionId": 129742, "maxRanks": 1, "type": "active", "name": "Sheilun's Gift", "spellId": 399491, "icon": "inv_staff_2h_artifactshaohao_d_01", "index": 100}]}, {"id": 101105, "name": "Ancient Concordance", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101104, 101106, 101103], "prev": [101101], "entries": [{"id": 124886, "definitionId": 129724, "maxRanks": 1, "type": "passive", "name": "Ancient Concordance", "spellId": 388740, "icon": "spell_animaardenweald_beam", "index": 100}]}, {"id": 101102, "name": "Ancient Teachings", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101103], "prev": [101101], "entries": [{"id": 124882, "definitionId": 129720, "maxRanks": 1, "type": "passive", "name": "Ancient Teachings", "spellId": 388023, "icon": "inv_misc_book_07", "index": 100}]}, {"id": 101126, "name": "Resplendent Mist", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101103, 101125], "prev": [101127, 101113], "entries": [{"id": 124911, "definitionId": 129749, "maxRanks": 2, "type": "passive", "name": "Resplendent Mist", "spellId": 388020, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 101124, "name": "Secret Infusion", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101125, 101123], "prev": [101113], "entries": [{"id": 124908, "definitionId": 129746, "maxRanks": 2, "type": "passive", "name": "Secret Infusion", "spellId": 388491, "icon": "ability_monk_chibrew", "index": 100}]}, {"id": 101114, "name": "Misty Peaks", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101117], "prev": [101115, 101113], "entries": [{"id": 124896, "definitionId": 129734, "maxRanks": 2, "type": "passive", "name": "Misty Peaks", "spellId": 388682, "icon": "achievement_zone_stormpeaks_10", "index": 100}]}, {"id": 101116, "name": "Peaceful Mending", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101117], "prev": [101115, 101120], "entries": [{"id": 124898, "definitionId": 129736, "maxRanks": 1, "type": "passive", "name": "Peaceful Mending", "spellId": 388593, "icon": "pandarenracial_innerpeace", "index": 100}]}, {"id": 101119, "name": "Veil of Pride / Shaohao's Lessons", "type": "choice", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101117, 101118], "prev": [101120], "entries": [{"id": 124903, "definitionId": 129741, "maxRanks": 1, "type": "passive", "name": "Veil of Pride", "spellId": 400053, "icon": "ability_monk_vivify", "index": 100}, {"id": 124902, "definitionId": 129740, "maxRanks": 1, "type": "passive", "name": "Shaohao's Lessons", "spellId": 400089, "icon": "ability_monk_dematerialize", "index": 200}]}, {"id": 101104, "name": "Awakened Jadefire", "type": "single", "posX": 10200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101105], "entries": [{"id": 124885, "definitionId": 129723, "maxRanks": 1, "type": "passive", "name": "Awakened Jadefire", "spellId": 388779, "icon": "spell_animaardenweald_buff", "index": 100}]}, {"id": 101106, "name": "Dance of Chi-Ji", "type": "single", "posX": 10800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101105], "entries": [{"id": 124887, "definitionId": 129725, "maxRanks": 1, "type": "passive", "name": "Dance of Chi-Ji", "spellId": 438439, "icon": "ability_monk_cranekick_new", "index": 100}]}, {"id": 101103, "name": "Tea of Serenity / Tea of Plenty", "type": "choice", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101102, 101126, 101105], "entries": [{"id": 124884, "definitionId": 129722, "maxRanks": 1, "type": "passive", "name": "Tea of Serenity", "spellId": 393460, "icon": "inv_misc_food_vendor_roastedbarlytea", "index": 200}, {"id": 124883, "definitionId": 129721, "maxRanks": 1, "type": "passive", "name": "Tea of Plenty", "spellId": 388517, "icon": "inv_misc_pearlmilktea", "index": 300}]}, {"id": 101125, "name": "Unison / Mending Proliferation", "type": "choice", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101126, 101124], "entries": [{"id": 124910, "definitionId": 129748, "maxRanks": 1, "type": "passive", "name": "Unison", "spellId": 388477, "icon": "ability_creature_cursed_04", "index": 100}, {"id": 124909, "definitionId": 129747, "maxRanks": 1, "type": "passive", "name": "Mending Proliferation", "spellId": 388509, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 200}]}, {"id": 101123, "name": "Invoker's Delight", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101124], "entries": [{"id": 124907, "definitionId": 129745, "maxRanks": 1, "type": "passive", "name": "Invoker's Delight", "spellId": 388661, "icon": "inv_inscription_80_warscroll_battleshout", "index": 200}]}, {"id": 101117, "name": "Tear of Morning / Rising Mist", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101119, 101114, 101116], "entries": [{"id": 124900, "definitionId": 129738, "maxRanks": 1, "type": "passive", "name": "Tear of Morning", "spellId": 387991, "icon": "ability_monk_uplift", "index": 100}, {"id": 124899, "definitionId": 129737, "maxRanks": 1, "type": "passive", "name": "Rising Mist", "spellId": 274909, "icon": "ability_monk_effuse", "index": 200}]}, {"id": 101118, "name": "Legacy of Wisdom", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101119], "entries": [{"id": 124901, "definitionId": 129739, "maxRanks": 1, "type": "passive", "name": "Legacy of Wisdom", "spellId": 404408, "icon": "misc_legionfall_monk", "index": 100}]}], "heroNodes": [{"id": 101243, "name": "Celestial Conduit", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 64, "next": [101236, 101242, 101233], "prev": [], "entries": [{"id": 125062, "definitionId": 129894, "maxRanks": 1, "type": "active", "name": "Celestial Conduit", "spellId": 443028, "icon": "inv_ability_conduitofthecelestialsmonk_celestialconduit", "index": 100}], "freeNode": true}, {"id": 101236, "name": "Temple Training / Xuen's Guidance", "type": "choice", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101237], "prev": [101243], "entries": [{"id": 125054, "definitionId": 129886, "maxRanks": 1, "type": "passive", "name": "Temple Training", "spellId": 442743, "icon": "ability_monk_provoke", "index": 100}, {"id": 125053, "definitionId": 129885, "maxRanks": 1, "type": "passive", "name": "Xuen's Guidance", "spellId": 442687, "icon": "ability_monk_dpsstance", "index": 200}]}, {"id": 101242, "name": "Courage of the White Tiger", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101241], "prev": [101243], "entries": [{"id": 125061, "definitionId": 129893, "maxRanks": 1, "type": "passive", "name": "Courage of the White Tiger", "spellId": 443087, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101233, "name": "Restore Balance / Yu'lon's Knowledge", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101234], "prev": [101243], "entries": [{"id": 125049, "definitionId": 129881, "maxRanks": 1, "type": "passive", "name": "Restore Balance", "spellId": 442719, "icon": "ability_monk_chiexplosion", "index": 100}, {"id": 125048, "definitionId": 129880, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Knowledge", "spellId": 443625, "icon": "inv_jewelcrafting_jadeserpent", "index": 200}]}, {"id": 101237, "name": "Heart of the Jade Serpent", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "requiresNode": 101120, "next": [101238], "prev": [101236], "entries": [{"id": 125055, "definitionId": 129887, "maxRanks": 1, "type": "passive", "name": "Heart of the Jade Serpent", "spellId": 443294, "icon": "ability_monk_dragonkick", "index": 100}]}, {"id": 101241, "name": "Strength of the Black Ox", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101240], "prev": [101242], "entries": [{"id": 125060, "definitionId": 129892, "maxRanks": 1, "type": "passive", "name": "Strength of the Black Ox", "spellId": 443110, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101234, "name": "Flight of the Red Crane", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101235], "prev": [101233], "entries": [{"id": 125050, "definitionId": 129882, "maxRanks": 1, "type": "passive", "name": "Flight of the Red Crane", "spellId": 443255, "icon": "inv_pet_cranegod", "index": 100}]}, {"id": 101238, "name": "Niuzao's Protection / Jade Sanctuary", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101237], "entries": [{"id": 125057, "definitionId": 129889, "maxRanks": 1, "type": "passive", "name": "Niuzao's Protection", "spellId": 442747, "icon": "ability_monk_chargingoxwave", "index": 100}, {"id": 125056, "definitionId": 129888, "maxRanks": 1, "type": "passive", "name": "Jade Sanctuary", "spellId": 443059, "icon": "ability_monk_jadeserpentbreath", "index": 200}]}, {"id": 101240, "name": "Chi-Ji's Swiftness", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101241], "entries": [{"id": 125059, "definitionId": 129891, "maxRanks": 1, "type": "passive", "name": "Chi-Ji's Swiftness", "spellId": 443566, "icon": "inv_shoulder_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101235, "name": "Inner Compass / August Dynasty", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101234], "entries": [{"id": 125052, "definitionId": 129884, "maxRanks": 1, "type": "passive", "name": "Inner Compass", "spellId": 443571, "icon": "inv_10_dungeonjewelry_explorer_trinket_1compass_color2", "index": 100}, {"id": 125051, "definitionId": 129883, "maxRanks": 1, "type": "passive", "name": "August Dynasty", "spellId": 442818, "icon": "ability_monk_legacyoftheemperor", "index": 200}]}, {"id": 101239, "name": "Unity Within", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 64, "next": [], "prev": [101240, 101235, 101238], "entries": [{"id": 125058, "definitionId": 129890, "maxRanks": 1, "type": "passive", "name": "Unity Within", "spellId": 443589, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101223, "name": "Aspect of Harmony", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 66, "requiresNode": 101067, "next": [101222, 101224, 101230], "prev": [], "entries": [{"id": 125033, "definitionId": 129869, "maxRanks": 1, "type": "passive", "name": "Aspect of Harmony", "spellId": 450508, "icon": "inv_ability_masterofharmonymonk_aspectofharmony", "index": 100}], "freeNode": true}, {"id": 101222, "name": "Manifestation", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "requiresNode": 102433, "next": [101221], "prev": [101223], "entries": [{"id": 125032, "definitionId": 129868, "maxRanks": 1, "type": "passive", "name": "Manifestation", "spellId": 450875, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 100}]}, {"id": 101224, "name": "Purified Spirit / Harmonic Gambit", "type": "choice", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101225], "prev": [101223], "entries": [{"id": 125035, "definitionId": 129871, "maxRanks": 1, "type": "passive", "name": "Purified Spirit", "spellId": 450867, "icon": "ability_monk_explodingjadeblossom", "index": 100}, {"id": 125034, "definitionId": 129870, "maxRanks": 1, "type": "passive", "name": "Harmonic Gambit", "spellId": 450870, "icon": "passive_monk_teachingsofmonastery", "index": 200}]}, {"id": 101230, "name": "Balanced Stratagem", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101229], "prev": [101223], "entries": [{"id": 125043, "definitionId": 129879, "maxRanks": 1, "type": "passive", "name": "Balanced Stratagem", "spellId": 450889, "icon": "ability_monk_sphereharmonydiscord", "index": 100}]}, {"id": 101221, "name": "Tiger's Vigor / Roar from the Heavens", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101220], "prev": [101222], "entries": [{"id": 125031, "definitionId": 129867, "maxRanks": 1, "type": "passive", "name": "Tiger's Vigor", "spellId": 451041, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125030, "definitionId": 129866, "maxRanks": 1, "type": "passive", "name": "Roar from the Heavens", "spellId": 451043, "icon": "inv_celestialserpentmount", "index": 200}]}, {"id": 101225, "name": "Endless Draught", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101226], "prev": [101224], "entries": [{"id": 125036, "definitionId": 129872, "maxRanks": 1, "type": "passive", "name": "Endless Draught", "spellId": 450892, "icon": "inv_drink_25_honeytea", "index": 100}]}, {"id": 101229, "name": "Mantra of Purity / Mantra of Tenacity", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101228], "prev": [101230], "entries": [{"id": 125042, "definitionId": 129878, "maxRanks": 1, "type": "passive", "name": "Mantra of Purity", "spellId": 451036, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 125041, "definitionId": 129877, "maxRanks": 1, "type": "passive", "name": "Mantra of Tenacity", "spellId": 451029, "icon": "spell_monk_brewmastertraining", "index": 200}]}, {"id": 101220, "name": "Overwhelming Force", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101221], "entries": [{"id": 125029, "definitionId": 129865, "maxRanks": 1, "type": "passive", "name": "Overwhelming Force", "spellId": 451024, "icon": "ability_titankeeper_piercingcorruption", "index": 100}]}, {"id": 101226, "name": "Path of Resurgence / Way of a Thousand Strikes", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101225], "entries": [{"id": 125038, "definitionId": 129874, "maxRanks": 1, "type": "passive", "name": "Path of Resurgence", "spellId": 450912, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 125037, "definitionId": 129873, "maxRanks": 1, "type": "passive", "name": "Way of a Thousand Strikes", "spellId": 450965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101228, "name": "Clarity of Purpose", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101229], "entries": [{"id": 125040, "definitionId": 129876, "maxRanks": 1, "type": "passive", "name": "Clarity of Purpose", "spellId": 451017, "icon": "ability_titankeeper_cleanse", "index": 100}]}, {"id": 101227, "name": "Coalescence", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 66, "next": [], "prev": [101228, 101220, 101226], "entries": [{"id": 125039, "definitionId": 129875, "maxRanks": 1, "type": "passive", "name": "Coalescence", "spellId": 450529, "icon": "ability_monk_effuse", "index": 100}]}], "subTreeNodes": [{"id": 101231, "name": "Conduit of the Celestials / Master of Harmony", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125045, "type": "subtree", "name": "Conduit of the Celestials", "traitSubTreeId": 64, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-conduitofthecelestials", "nodes": [101243, 101236, 101242, 101233, 101237, 101241, 101234, 101238, 101240, 101235, 101239]}, {"id": 125044, "type": "subtree", "name": "Master of Harmony", "traitSubTreeId": 66, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-masterofharmony", "nodes": [101223, 101222, 101224, 101230, 101221, 101225, 101229, 101220, 101226, 101228, 101227]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101105, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]}, {"traitTreeId": 854, "className": "Demon Hunter", "classId": 12, "specName": "Havoc", "specId": 577, "classNodes": [{"id": 90942, "name": "Vengeful Retreat", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90930, 90941], "prev": [], "entries": [{"id": 112853, "definitionId": 117858, "maxRanks": 1, "type": "active", "name": "Vengeful Retreat", "spellId": 198793, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}], "freeNode": true}, {"id": 91008, "name": "Blazing Path", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90941, 90950], "prev": [], "entries": [{"id": 112928, "definitionId": 117933, "maxRanks": 1, "type": "passive", "name": "Blazing Path", "spellId": 320416, "icon": "ability_demonhunter_felrush", "index": 100}]}, {"id": 90946, "name": "Sigil of Misery", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90950, 90945], "prev": [], "entries": [{"id": 112859, "definitionId": 117864, "maxRanks": 1, "type": "active", "name": "Sigil of Misery", "spellId": 207684, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90930, "name": "Vengeful Bonds", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [90931], "prev": [90942], "entries": [{"id": 112840, "definitionId": 117845, "maxRanks": 1, "type": "passive", "name": "Vengeful Bonds", "spellId": 320635, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 90941, "name": "Unrestrained Fury", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90931, 91007], "prev": [90942, 91008], "entries": [{"id": 112852, "definitionId": 117857, "maxRanks": 1, "type": "passive", "name": "Unrestrained Fury", "spellId": 320770, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90950, "name": "Shattered Restoration", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [91007, 90948], "prev": [90946, 91008], "entries": [{"id": 112863, "definitionId": 117868, "maxRanks": 1, "type": "passive", "name": "Shattered Restoration", "spellId": 389824, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 90945, "name": "Improved Sigil of Misery", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [90948], "prev": [90946], "entries": [{"id": 112858, "definitionId": 117863, "maxRanks": 1, "type": "passive", "name": "Improved Sigil of Misery", "spellId": 320418, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90931, "name": "Bouncing Glaives", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90993, 90938], "prev": [90941, 90930], "entries": [{"id": 112841, "definitionId": 117846, "maxRanks": 1, "type": "passive", "name": "Bouncing Glaives", "spellId": 320386, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91007, "name": "Imprison", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90938, 91006], "prev": [90950, 90941], "entries": [{"id": 112927, "definitionId": 117932, "maxRanks": 1, "type": "active", "name": "Imprison", "spellId": 217832, "icon": "ability_demonhunter_imprison", "index": 100}]}, {"id": 90948, "name": "Charred Warblades", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [91006, 90999], "prev": [90950, 90945], "entries": [{"id": 112861, "definitionId": 117866, "maxRanks": 1, "type": "passive", "name": "Charred Warblades", "spellId": 213010, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 90993, "name": "Chaos Nova", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [95154, 90994], "prev": [90931], "entries": [{"id": 112911, "definitionId": 117916, "maxRanks": 1, "type": "active", "name": "Chaos Nova", "spellId": 179057, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90938, "name": "Improved Disrupt", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90994, 90937, 95150], "prev": [90931, 91007], "entries": [{"id": 112849, "definitionId": 117854, "maxRanks": 1, "type": "passive", "name": "Improved Disrupt", "spellId": 320361, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 91006, "name": "Consume Magic", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [95150, 91005, 90933], "prev": [90948, 91007], "entries": [{"id": 112926, "definitionId": 117931, "maxRanks": 1, "type": "active", "name": "Consume Magic", "spellId": 278326, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90999, "name": "Aldrachi Design", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90933, 95151], "prev": [90948], "entries": [{"id": 112917, "definitionId": 117922, "maxRanks": 1, "type": "passive", "name": "Aldrachi Design", "spellId": 391409, "icon": "inv_glaive_1h_artifactaldrochi_d_01dual", "index": 100}]}, {"id": 95154, "name": "Chaos Fragments", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940], "prev": [90993], "entries": [{"id": 117767, "definitionId": 122779, "maxRanks": 1, "type": "passive", "name": "Chaos Fragments", "spellId": 320412, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90994, "name": "Master of the Glaive / Champion of the Glaive", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940, 90936], "prev": [90993, 90938], "entries": [{"id": 112912, "definitionId": 117917, "maxRanks": 1, "type": "passive", "name": "Master of the Glaive", "spellId": 389763, "icon": "inv_glaive_1h_demonhunter_a_01", "index": 100}, {"id": 117768, "definitionId": 122780, "maxRanks": 1, "type": "passive", "name": "Champion of the Glaive", "spellId": 429211, "icon": "inv_glaive_1h_battledungeon_c_01", "index": 200}]}, {"id": 90937, "name": "Disrupting Fury", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936], "prev": [90938], "entries": [{"id": 112848, "definitionId": 117853, "maxRanks": 1, "type": "passive", "name": "Disrupting Fury", "spellId": 183782, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 95150, "name": "Felblade", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936, 91004], "prev": [91006, 90938], "entries": [{"id": 117759, "definitionId": 122771, "maxRanks": 1, "type": "active", "name": "Felblade", "spellId": 232893, "icon": "ability_demonhunter_felblade", "index": 100}]}, {"id": 91005, "name": "Swallowed Anger", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004], "prev": [91006], "entries": [{"id": 112925, "definitionId": 117930, "maxRanks": 1, "type": "passive", "name": "Swallowed Anger", "spellId": 320313, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90933, "name": "Aura of Pain", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004, 90947], "prev": [91006, 90999], "entries": [{"id": 112844, "definitionId": 117849, "maxRanks": 1, "type": "passive", "name": "Aura of Pain", "spellId": 207347, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 95151, "name": "Live by the Glaive", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90947], "prev": [90999], "entries": [{"id": 117761, "definitionId": 122773, "maxRanks": 1, "type": "passive", "name": "Live by the Glaive", "spellId": 428607, "icon": "inv_sword_108", "index": 100}]}, {"id": 90940, "name": "Pursuit", "type": "single", "posX": 2100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90939, 90935], "prev": [90994, 95154], "entries": [{"id": 112851, "definitionId": 117856, "maxRanks": 1, "type": "passive", "name": "Pursuit", "spellId": 320654, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 90936, "name": "Soul Rending", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90935, 91003], "prev": [90994, 90937, 95150], "entries": [{"id": 112847, "definitionId": 117852, "maxRanks": 2, "type": "passive", "name": "Soul Rending", "spellId": 204909, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 91004, "name": "Infernal Armor", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91003, 91000], "prev": [91005, 95150, 90933], "entries": [{"id": 112924, "definitionId": 117929, "maxRanks": 2, "type": "passive", "name": "Infernal Armor", "spellId": 320331, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90947, "name": "Lost in Darkness", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91000, 95155], "prev": [95151, 90933], "entries": [{"id": 112860, "definitionId": 117865, "maxRanks": 1, "type": "passive", "name": "Lost in Darkness", "spellId": 389849, "icon": "inv_pet_inquisitoreye", "index": 100}]}, {"id": 90939, "name": "Felfire Haste", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934], "prev": [90940], "entries": [{"id": 112850, "definitionId": 117855, "maxRanks": 1, "type": "passive", "name": "Felfire Haste", "spellId": 389846, "icon": "inv_boots_cloth_35v4", "index": 100}]}, {"id": 90935, "name": "Illidari Knowledge", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934, 91002], "prev": [90936, 90940], "entries": [{"id": 112846, "definitionId": 117851, "maxRanks": 1, "type": "passive", "name": "Illidari Knowledge", "spellId": 389696, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 91003, "name": "Demonic", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91002, 90929], "prev": [90936, 91004], "entries": [{"id": 112923, "definitionId": 117928, "maxRanks": 1, "type": "passive", "name": "Demonic", "spellId": 213410, "icon": "spell_shadow_demonform", "index": 100}]}, {"id": 91000, "name": "Will of the Illidari", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90929, 95149], "prev": [91004, 90947], "entries": [{"id": 112918, "definitionId": 117923, "maxRanks": 1, "type": "passive", "name": "Will of the Illidari", "spellId": 389695, "icon": "ability_demonhunter_spectank", "index": 100}]}, {"id": 95155, "name": "Precise Sigils", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [95149], "prev": [90947], "entries": [{"id": 117771, "definitionId": 122783, "maxRanks": 1, "type": "passive", "name": "Precise Sigils", "spellId": 389799, "icon": "ability_bossfelorcs_necromancer_orange", "index": 100}]}, {"id": 90934, "name": "Internal Struggle", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90996], "prev": [90935, 90939], "entries": [{"id": 112845, "definitionId": 117850, "maxRanks": 1, "type": "passive", "name": "Internal Struggle", "spellId": 393822, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 91002, "name": "Darkness", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91001, 95148], "prev": [90935, 91003], "entries": [{"id": 112921, "definitionId": 117926, "maxRanks": 1, "type": "active", "name": "Darkness", "spellId": 196718, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 90929, "name": "Soul Sigils", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95148, 90928], "prev": [91003, 91000], "entries": [{"id": 112839, "definitionId": 117844, "maxRanks": 1, "type": "passive", "name": "Soul Sigils", "spellId": 395446, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95149, "name": "Quickened Sigils", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90949], "prev": [91000, 95155], "entries": [{"id": 117758, "definitionId": 122770, "maxRanks": 1, "type": "passive", "name": "Quickened Sigils", "spellId": 209281, "icon": "ability_demonhunter_concentratedsigils", "index": 100}]}, {"id": 90996, "name": "Erratic Felheart", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95152], "prev": [90934], "entries": [{"id": 112914, "definitionId": 117919, "maxRanks": 2, "type": "passive", "name": "Erratic Felheart", "spellId": 391397, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 91001, "name": "Long Night / Pitch Black", "type": "choice", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91002], "entries": [{"id": 112920, "definitionId": 117925, "maxRanks": 1, "type": "passive", "name": "Long Night", "spellId": 389781, "icon": "spell_fire_twilightimmolation", "index": 100}, {"id": 112919, "definitionId": 117924, "maxRanks": 1, "type": "passive", "name": "Pitch Black", "spellId": 389783, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95148, "name": "Rush of Chaos", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90927], "prev": [90929, 91002], "entries": [{"id": 117757, "definitionId": 122769, "maxRanks": 2, "type": "passive", "name": "Rush of Chaos", "spellId": 320421, "icon": "ability_demonhunter_metamorphasisdps", "index": 100}]}, {"id": 90928, "name": "Demon Muzzle", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90929], "entries": [{"id": 112838, "definitionId": 117843, "maxRanks": 1, "type": "passive", "name": "Demon Muzzle", "spellId": 388111, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 90949, "name": "Flames of Fury", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90997], "prev": [95149], "entries": [{"id": 112862, "definitionId": 117867, "maxRanks": 2, "type": "passive", "name": "Flames of Fury", "spellId": 389694, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95152, "name": "Collective Anguish", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90996], "entries": [{"id": 117762, "definitionId": 122774, "maxRanks": 1, "type": "passive", "name": "Collective Anguish", "spellId": 390152, "icon": "artifactability_havocdemonhunter_anguishofthedeceiver", "index": 200}]}, {"id": 90927, "name": "The Hunt", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95148], "entries": [{"id": 112837, "definitionId": 117842, "maxRanks": 1, "type": "active", "name": "The Hunt", "spellId": 370965, "icon": "ability_ardenweald_demonhunter", "index": 100}]}, {"id": 90997, "name": "Sigil of Spite", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90949], "entries": [{"id": 117755, "definitionId": 122767, "maxRanks": 1, "type": "active", "name": "Sigil of Spite", "spellId": 390163, "icon": "ability_bastion_demonhunter", "index": 200}]}], "specNodes": [{"id": 90912, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 91018, "name": "Eye Beam", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [91028, 91019, 90923], "prev": [], "entries": [{"id": 112939, "definitionId": 117944, "maxRanks": 1, "type": "active", "name": "Eye Beam", "spellId": 198013, "icon": "ability_demonhunter_eyebeam", "index": 100}]}, {"id": 91028, "name": "Critical Chaos", "type": "single", "posX": 11400, "posY": 2100, "maxRanks": 1, "next": [93014, 91030, 90925], "prev": [91018], "entries": [{"id": 112951, "definitionId": 117956, "maxRanks": 1, "type": "passive", "name": "Critical Chaos", "spellId": 320413, "icon": "inv_glaive_1h_battledungeon_c_02", "index": 100}]}, {"id": 91019, "name": "Insatiable Hunger / Demon Blades", "type": "choice", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91018], "entries": [{"id": 112941, "definitionId": 117946, "maxRanks": 1, "type": "passive", "name": "Insatiable Hunger", "spellId": 258876, "icon": "ability_rogue_hungerforblood", "index": 100}, {"id": 112940, "definitionId": 117945, "maxRanks": 1, "type": "passive", "name": "Demon Blades", "spellId": 203555, "icon": "inv_weapon_shortblade_92", "index": 200}]}, {"id": 90923, "name": "Burning Hatred", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [90925, 91011, 91017], "prev": [91018], "entries": [{"id": 112832, "definitionId": 117837, "maxRanks": 1, "type": "passive", "name": "Burning Hatred", "spellId": 320374, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 93014, "name": "Improved Fel Rush / Dash of Chaos", "type": "choice", "posX": 10500, "posY": 2700, "maxRanks": 1, "next": [93016], "prev": [91028], "entries": [{"id": 115245, "definitionId": 120257, "maxRanks": 1, "type": "passive", "name": "Improved Fel Rush", "spellId": 343017, "icon": "ability_demonhunter_felrush", "index": 100}, {"id": 117748, "definitionId": 122760, "maxRanks": 1, "type": "passive", "name": "Dash of Chaos", "spellId": 427794, "icon": "inv_boots_cloth_35v3", "index": 200}]}, {"id": 91030, "name": "Improved Chaos Strike", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [93016], "prev": [91028], "entries": [{"id": 112953, "definitionId": 117958, "maxRanks": 1, "type": "passive", "name": "Improved Chaos Strike", "spellId": 343206, "icon": "ability_demonhunter_chaosstrike", "index": 100}]}, {"id": 90925, "name": "First Blood", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93016, 93015], "prev": [90923, 91028], "entries": [{"id": 112834, "definitionId": 117839, "maxRanks": 1, "type": "passive", "name": "First Blood", "spellId": 206416, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 91011, "name": "Accelerated Blade", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [93015], "prev": [90923], "entries": [{"id": 112932, "definitionId": 117937, "maxRanks": 1, "type": "passive", "name": "Accelerated Blade", "spellId": 391275, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91017, "name": "Demon Hide", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [93015], "prev": [90923], "entries": [{"id": 112938, "definitionId": 117943, "maxRanks": 1, "type": "passive", "name": "Demon Hide", "spellId": 428241, "icon": "misc_legionfall_demonhunter", "index": 100}]}, {"id": 93016, "name": "Desperate Instincts / Netherwalk", "type": "choice", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [91027, 90914, 90922], "prev": [91030, 90925, 93014], "entries": [{"id": 115248, "definitionId": 120260, "maxRanks": 1, "type": "passive", "name": "Desperate Instincts", "spellId": 205411, "icon": "spell_shadow_manafeed", "index": 100}, {"id": 115247, "definitionId": 120259, "maxRanks": 1, "type": "active", "name": "Netherwalk", "spellId": 196555, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 93015, "name": "Deflecting Dance / Mortal Dance", "type": "choice", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [90922, 93013, 90915], "prev": [91017, 90925, 91011], "entries": [{"id": 115246, "definitionId": 120258, "maxRanks": 1, "type": "passive", "name": "Deflecting Dance", "spellId": 427776, "icon": "ability_ironmaidens_bladerush", "index": 100}, {"id": 117743, "definitionId": 122755, "maxRanks": 1, "type": "passive", "name": "Mortal Dance", "spellId": 328725, "icon": "ability_demonhunter_vengefulretreat", "index": 200}]}, {"id": 91027, "name": "Initiative", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91022, 91026], "prev": [93016], "entries": [{"id": 112950, "definitionId": 117955, "maxRanks": 1, "type": "passive", "name": "Initiative", "spellId": 388108, "icon": "ability_rogue_surpriseattack", "index": 100}]}, {"id": 90914, "name": "Scars of Suffering", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91026], "prev": [93016], "entries": [{"id": 112823, "definitionId": 117828, "maxRanks": 1, "type": "passive", "name": "Scars of Suffering", "spellId": 428232, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 90922, "name": "Chaotic Transformation", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91026, 90921, 91015], "prev": [93015, 93016], "entries": [{"id": 112831, "definitionId": 117836, "maxRanks": 1, "type": "passive", "name": "Chaotic Transformation", "spellId": 388112, "icon": "ability_demonhunter_glide", "index": 100}]}, {"id": 93013, "name": "Furious Throws", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91015], "prev": [93015], "entries": [{"id": 115244, "definitionId": 120256, "maxRanks": 1, "type": "passive", "name": "Furious Throws", "spellId": 393029, "icon": "inv_glaive_1h_npc_d_01", "index": 100}]}, {"id": 90915, "name": "Trail of Ruin", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91015, 90916], "prev": [93015], "entries": [{"id": 112824, "definitionId": 117829, "maxRanks": 1, "type": "passive", "name": "Trail of Ruin", "spellId": 258881, "icon": "ability_demonhunter_bladedance", "index": 100}]}, {"id": 91022, "name": "Tactical Retreat", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91020, 91036], "prev": [91027], "entries": [{"id": 112944, "definitionId": 117949, "maxRanks": 1, "type": "passive", "name": "Tactical Retreat", "spellId": 389688, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 91026, "name": "Blind Fury", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91036, 91025], "prev": [90922, 91027, 90914], "entries": [{"id": 112949, "definitionId": 117954, "maxRanks": 2, "type": "passive", "name": "Blind Fury", "spellId": 203550, "icon": "ability_bosskilrogg_deadeye", "index": 100}]}, {"id": 90921, "name": "Looks Can Kill", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90922], "entries": [{"id": 112830, "definitionId": 117835, "maxRanks": 1, "type": "passive", "name": "Looks Can Kill", "spellId": 320415, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}]}, {"id": 91015, "name": "Dancing with Fate", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91025, 91013], "prev": [90922, 90915, 93013], "entries": [{"id": 112936, "definitionId": 117941, "maxRanks": 2, "type": "passive", "name": "Dancing with Fate", "spellId": 389978, "icon": "inv_polearm_1h_felfireraid_d_02", "index": 100}]}, {"id": 90916, "name": "Growing Inferno", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91013, 90917], "prev": [90915], "entries": [{"id": 112825, "definitionId": 117830, "maxRanks": 1, "type": "passive", "name": "Growing Inferno", "spellId": 390158, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 91020, "name": "Unbound Chaos", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91021, 91035], "prev": [91022], "entries": [{"id": 112942, "definitionId": 117947, "maxRanks": 1, "type": "passive", "name": "Unbound Chaos", "spellId": 347461, "icon": "artifactability_vengeancedemonhunter_painbringer", "index": 100}]}, {"id": 91036, "name": "Isolated Prey", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91035], "prev": [91026, 91022], "entries": [{"id": 112959, "definitionId": 117964, "maxRanks": 1, "type": "passive", "name": "Isolated Prey", "spellId": 388113, "icon": "spell_shadow_shadesofdarkness", "index": 100}]}, {"id": 91025, "name": "Furious Gaze", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91035, 91024, 91012], "prev": [91026, 91015], "entries": [{"id": 112948, "definitionId": 117953, "maxRanks": 1, "type": "passive", "name": "Furious Gaze", "spellId": 343311, "icon": "ability_demonhunter_eyebeam", "index": 100}]}, {"id": 91013, "name": "Serrated Glaive", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91012], "prev": [90916, 91015], "entries": [{"id": 112934, "definitionId": 117939, "maxRanks": 1, "type": "passive", "name": "Serrated Glaive", "spellId": 390154, "icon": "inv_glaive_1h_artifactaldrochi_d_03dual", "index": 100}]}, {"id": 90917, "name": "Burning Wound", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91012, 90918], "prev": [90916], "entries": [{"id": 112826, "definitionId": 117831, "maxRanks": 1, "type": "passive", "name": "Burning Wound", "spellId": 391189, "icon": "spell_fire_felhellfire", "index": 100}]}, {"id": 91021, "name": "Momentum / Inertia", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034], "prev": [91020], "entries": [{"id": 112943, "definitionId": 117948, "maxRanks": 1, "type": "passive", "name": "Momentum", "spellId": 206476, "icon": "ability_foundryraid_demolition", "index": 100}, {"id": 117744, "definitionId": 122756, "maxRanks": 1, "type": "passive", "name": "Inertia", "spellId": 427640, "icon": "inv_10_inscription3_pigments_black", "index": 200}]}, {"id": 91035, "name": "Chaos Theory / Glaive Tempest", "type": "choice", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034], "prev": [91025, 91036, 91020], "entries": [{"id": 112958, "definitionId": 117963, "maxRanks": 1, "type": "passive", "name": "Chaos Theory", "spellId": 389687, "icon": "inv_glaive_1h_artifactaldrochi_d_03dual", "index": 100}, {"id": 117763, "definitionId": 122775, "maxRanks": 1, "type": "active", "name": "Glaive Tempest", "spellId": 342817, "icon": "inv_glaive_1h_artifactazgalor_d_06dual", "index": 200}]}, {"id": 91024, "name": "Inner Demon / Restless Hunter", "type": "choice", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034, 91032, 95147], "prev": [91025], "entries": [{"id": 112947, "definitionId": 117952, "maxRanks": 1, "type": "passive", "name": "Inner Demon", "spellId": 389693, "icon": "ability_demonhunter_glide", "index": 100}, {"id": 117765, "definitionId": 122777, "maxRanks": 1, "type": "passive", "name": "Restless Hunter", "spellId": 390142, "icon": "ability_demonhunter_doublejump", "index": 200}]}, {"id": 91012, "name": "Relentless Onslaught / Soulscar", "type": "choice", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95147], "prev": [91025, 90917, 91013], "entries": [{"id": 112933, "definitionId": 117938, "maxRanks": 1, "type": "passive", "name": "Relentless Onslaught", "spellId": 389977, "icon": "ability_demonhunter_soulcleave2", "index": 100}, {"id": 117764, "definitionId": 122776, "maxRanks": 1, "type": "passive", "name": "Soulscar", "spellId": 388106, "icon": "ability_demonhunter_bloodlet", "index": 200}]}, {"id": 90918, "name": "Ragefire", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95147], "prev": [90917], "entries": [{"id": 112827, "definitionId": 117832, "maxRanks": 1, "type": "passive", "name": "Ragefire", "spellId": 388107, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 91034, "name": "Know Your Enemy", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95143, 91033], "prev": [91035, 91021, 91024], "entries": [{"id": 112957, "definitionId": 117962, "maxRanks": 2, "type": "passive", "name": "Know Your Enemy", "spellId": 388118, "icon": "ability_demonhunter_eyeofleotheras", "index": 100}]}, {"id": 91032, "name": "Cycle of Hatred", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [91033, 91031, 90919], "prev": [91024], "entries": [{"id": 112955, "definitionId": 117960, "maxRanks": 2, "type": "passive", "name": "Cycle of Hatred", "spellId": 258887, "icon": "ability_ironmaidens_whirlofblood", "index": 100}]}, {"id": 95147, "name": "Chaotic Disposition", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90919, 95144], "prev": [90918, 91012, 91024], "entries": [{"id": 117754, "definitionId": 122766, "maxRanks": 2, "type": "passive", "name": "Chaotic Disposition", "spellId": 428492, "icon": "inv_inscription_tarotchaos", "index": 100}]}, {"id": 95143, "name": "A Fire Inside", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91034], "entries": [{"id": 117741, "definitionId": 122753, "maxRanks": 1, "type": "passive", "name": "A Fire Inside", "spellId": 427775, "icon": "ability_demonhunter_chaoticimprint_fire", "index": 100}]}, {"id": 91033, "name": "Essence Break", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032, 91034], "entries": [{"id": 112956, "definitionId": 117961, "maxRanks": 1, "type": "active", "name": "Essence Break", "spellId": 258860, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 91031, "name": "Shattered Destiny", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032], "entries": [{"id": 112954, "definitionId": 117959, "maxRanks": 1, "type": "passive", "name": "Shattered Destiny", "spellId": 388116, "icon": "achievement_boss_triumvirate_darknaaru", "index": 100}]}, {"id": 90919, "name": "Any Means Necessary", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032, 95147], "entries": [{"id": 112828, "definitionId": 117833, "maxRanks": 1, "type": "passive", "name": "Any Means Necessary", "spellId": 388114, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 95144, "name": "Fel Barrage", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95147], "entries": [{"id": 117742, "definitionId": 122754, "maxRanks": 1, "type": "active", "name": "Fel Barrage", "spellId": 258925, "icon": "inv_felbarrage", "index": 100}]}], "heroNodes": [{"id": 94915, "name": "Art of the Glaive", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 35, "next": [94898, 94911, 94903], "prev": [], "entries": [{"id": 117512, "definitionId": 122524, "maxRanks": 1, "type": "passive", "name": "Art of the Glaive", "spellId": 442290, "icon": "inv_ability_aldrachireaverdemonhunter_reaversglaive", "index": 100}], "freeNode": true}, {"id": 94898, "name": "Fury of the Aldrachi", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94914], "prev": [94915], "entries": [{"id": 117495, "definitionId": 122519, "maxRanks": 1, "type": "passive", "name": "Fury of the Aldrachi", "spellId": 442718, "icon": "spell_fire_felflamestrike", "index": 100}]}, {"id": 94911, "name": "Evasive Action / Unhindered Assault", "type": "choice", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94896], "prev": [94915], "entries": [{"id": 117508, "definitionId": 122520, "maxRanks": 1, "type": "passive", "name": "Evasive Action", "spellId": 444926, "icon": "ability_demonhunter_vengefulretreat", "index": 100}, {"id": 123047, "definitionId": 127928, "maxRanks": 1, "type": "passive", "name": "Unhindered Assault", "spellId": 444931, "icon": "ability_ironmaidens_bladerush", "index": 200}]}, {"id": 94903, "name": "Reaver's Mark", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94897], "prev": [94915], "entries": [{"id": 117500, "definitionId": 122512, "maxRanks": 1, "type": "passive", "name": "Reaver's Mark", "spellId": 442679, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 94914, "name": "Aldrachi Tactics", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94895], "prev": [94898], "entries": [{"id": 117511, "definitionId": 122523, "maxRanks": 1, "type": "passive", "name": "Aldrachi Tactics", "spellId": 442683, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 94896, "name": "Army Unto Oneself / Incorruptible Spirit", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94910], "prev": [94911], "entries": [{"id": 117493, "definitionId": 122505, "maxRanks": 1, "type": "passive", "name": "Army Unto Oneself", "spellId": 442714, "icon": "ability_warlock_avoidance", "index": 100}, {"id": 123046, "definitionId": 127927, "maxRanks": 1, "type": "passive", "name": "Incorruptible Spirit", "spellId": 442736, "icon": "spell_nzinsanity_chasedbyshadows", "index": 200}]}, {"id": 94897, "name": "Wounded Quarry", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94906], "prev": [94903], "entries": [{"id": 117494, "definitionId": 122506, "maxRanks": 1, "type": "passive", "name": "Wounded Quarry", "spellId": 442806, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94895, "name": "Incisive Blade", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94914], "entries": [{"id": 117492, "definitionId": 122504, "maxRanks": 1, "type": "passive", "name": "Incisive Blade", "spellId": 442492, "icon": "ability_dualwieldspecialization", "index": 100}]}, {"id": 94910, "name": "Keen Engagement / Preemptive Strike", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94896], "entries": [{"id": 117507, "definitionId": 122507, "maxRanks": 1, "type": "passive", "name": "Keen Engagement", "spellId": 442497, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 122422, "definitionId": 127322, "maxRanks": 1, "type": "passive", "name": "Preemptive Strike", "spellId": 444997, "icon": "ability_rogue_focusedattacks", "index": 200}]}, {"id": 94906, "name": "Warblade's Hunger", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94897], "entries": [{"id": 117503, "definitionId": 122515, "maxRanks": 1, "type": "passive", "name": "Warblade's Hunger", "spellId": 442502, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 94919, "name": "Thrill of the Fight", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 35, "next": [], "prev": [94910, 94895, 94906], "entries": [{"id": 117516, "definitionId": 122528, "maxRanks": 1, "type": "passive", "name": "Thrill of the Fight", "spellId": 442686, "icon": "spell_arcane_arcanetactics", "index": 100}]}, {"id": 94917, "name": "Demonsurge", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 34, "next": [94913, 94918, 94899], "prev": [], "entries": [{"id": 117514, "definitionId": 122526, "maxRanks": 1, "type": "passive", "name": "Demonsurge", "spellId": 452402, "icon": "inv_ability_felscarreddemonhunter_demonsurge", "index": 100}], "freeNode": true}, {"id": 94913, "name": "Wave of Debilitation / Pursuit of Angriness", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94905], "prev": [94917], "entries": [{"id": 117510, "definitionId": 122522, "maxRanks": 1, "type": "passive", "name": "Wave of Debilitation", "spellId": 452403, "icon": "spell_fire_felfirenova", "index": 100}, {"id": 124011, "definitionId": 128849, "maxRanks": 1, "type": "passive", "name": "Pursuit of Angriness", "spellId": 452404, "icon": "ability_felarakkoa_focusedblast", "index": 200}]}, {"id": 94918, "name": "Focused Hatred", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94912], "prev": [94917], "entries": [{"id": 117515, "definitionId": 122527, "maxRanks": 1, "type": "passive", "name": "Focused Hatred", "spellId": 452405, "icon": "ability_demonhunter_illidansgrasp", "index": 100}]}, {"id": 94899, "name": "Set Fire to the Pain / Improved Soul Rending", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94916], "prev": [94917], "entries": [{"id": 117496, "definitionId": 122508, "maxRanks": 1, "type": "passive", "name": "Set Fire to the Pain", "spellId": 452406, "icon": "ability_demonhunter_empowerwards", "index": 100}, {"id": 124010, "definitionId": 128848, "maxRanks": 1, "type": "passive", "name": "Improved Soul Rending", "spellId": 452407, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 94905, "name": "Burning Blades", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94904], "prev": [94913], "entries": [{"id": 117502, "definitionId": 122514, "maxRanks": 1, "type": "passive", "name": "Burning Blades", "spellId": 452408, "icon": "inv_glaive_1h_artifactazgalor_d_02dual", "index": 100}]}, {"id": 94912, "name": "Violent Transformation", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94902], "prev": [94918], "entries": [{"id": 117509, "definitionId": 122521, "maxRanks": 1, "type": "passive", "name": "Violent Transformation", "spellId": 452409, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 94916, "name": "Enduring Torment", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94909], "prev": [94899], "entries": [{"id": 117513, "definitionId": 122525, "maxRanks": 1, "type": "passive", "name": "Enduring Torment", "spellId": 452410, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 94904, "name": "Untethered Fury", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94905], "entries": [{"id": 117501, "definitionId": 122513, "maxRanks": 1, "type": "passive", "name": "Untethered Fury", "spellId": 452411, "icon": "inv__felbarrage", "index": 100}]}, {"id": 94902, "name": "Student of Suffering / Flamebound", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94912], "entries": [{"id": 117499, "definitionId": 122511, "maxRanks": 1, "type": "passive", "name": "Student of Suffering", "spellId": 452412, "icon": "achievement_dungeon_theatreofpain_kultharok", "index": 100}, {"id": 124009, "definitionId": 128847, "maxRanks": 1, "type": "passive", "name": "Flamebound", "spellId": 452413, "icon": "spell_fire_felflamering", "index": 200}]}, {"id": 94909, "name": "Monster Rising", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94916], "entries": [{"id": 117506, "definitionId": 122518, "maxRanks": 1, "type": "passive", "name": "Monster Rising", "spellId": 452414, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 94901, "name": "Demonic Intensity", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 34, "next": [], "prev": [94902, 94904, 94909], "entries": [{"id": 117498, "definitionId": 122510, "maxRanks": 1, "type": "passive", "name": "Demonic Intensity", "spellId": 452415, "icon": "spell_warlock_demonicempowerment", "index": 100}]}], "subTreeNodes": [{"id": 99824, "name": "Aldrachi Reaver / Fel-Scarred", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123330, "type": "subtree", "name": "Aldrachi Reaver", "traitSubTreeId": 35, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-aldrachireaver", "nodes": [94915, 94898, 94911, 94903, 94914, 94896, 94897, 94895, 94910, 94906, 94919]}, {"id": 123329, "type": "subtree", "name": "Fel-Scarred", "traitSubTreeId": 34, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-felscarred", "nodes": [94917, 94913, 94918, 94899, 94905, 94912, 94916, 94904, 94902, 94909, 94901]}]}], "fullNodeOrder": [90912, 90914, 90915, 90916, 90917, 90918, 90919, 90921, 90922, 90923, 90925, 90927, 90928, 90929, 90930, 90931, 90933, 90934, 90935, 90936, 90937, 90938, 90939, 90940, 90941, 90942, 90945, 90946, 90947, 90948, 90949, 90950, 90951, 90952, 90953, 90954, 90955, 90956, 90957, 90958, 90959, 90960, 90961, 90962, 90963, 90964, 90965, 90966, 90967, 90968, 90969, 90970, 90971, 90972, 90973, 90974, 90975, 90976, 90977, 90978, 90979, 90980, 90981, 90982, 90983, 90984, 90985, 90986, 90987, 90988, 90989, 90990, 90991, 90993, 90994, 90996, 90997, 90999, 91000, 91001, 91002, 91003, 91004, 91005, 91006, 91007, 91008, 91011, 91012, 91013, 91015, 91017, 91018, 91019, 91020, 91021, 91022, 91024, 91025, 91026, 91027, 91028, 91030, 91031, 91032, 91033, 91034, 91035, 91036, 93013, 93014, 93015, 93016, 94895, 94896, 94897, 94898, 94899, 94901, 94902, 94903, 94904, 94905, 94906, 94909, 94910, 94911, 94912, 94913, 94914, 94915, 94916, 94917, 94918, 94919, 95143, 95144, 95147, 95148, 95149, 95150, 95151, 95152, 95154, 95155, 99823, 99824]}, {"traitTreeId": 854, "className": "Demon Hunter", "classId": 12, "specName": "Vengeance", "specId": 581, "classNodes": [{"id": 90942, "name": "Vengeful Retreat", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90930, 90941], "prev": [], "entries": [{"id": 112853, "definitionId": 117858, "maxRanks": 1, "type": "active", "name": "Vengeful Retreat", "spellId": 198793, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 91008, "name": "Blazing Path", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90941, 90950], "prev": [], "entries": [{"id": 112928, "definitionId": 117933, "maxRanks": 1, "type": "passive", "name": "Blazing Path", "spellId": 320416, "icon": "ability_demonhunter_felrush", "index": 100}]}, {"id": 90946, "name": "Sigil of Misery", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90950, 90945], "prev": [], "entries": [{"id": 112859, "definitionId": 117864, "maxRanks": 1, "type": "active", "name": "Sigil of Misery", "spellId": 207684, "icon": "ability_demonhunter_sigilofmisery", "index": 100}], "freeNode": true}, {"id": 90930, "name": "Vengeful Bonds", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [90931], "prev": [90942], "entries": [{"id": 112840, "definitionId": 117845, "maxRanks": 1, "type": "passive", "name": "Vengeful Bonds", "spellId": 320635, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 90941, "name": "Unrestrained Fury", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90931, 91007], "prev": [90942, 91008], "entries": [{"id": 112852, "definitionId": 117857, "maxRanks": 1, "type": "passive", "name": "Unrestrained Fury", "spellId": 320770, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90950, "name": "Shattered Restoration", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [91007, 90948], "prev": [90946, 91008], "entries": [{"id": 112863, "definitionId": 117868, "maxRanks": 1, "type": "passive", "name": "Shattered Restoration", "spellId": 389824, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 90945, "name": "Improved Sigil of Misery", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [90948], "prev": [90946], "entries": [{"id": 112858, "definitionId": 117863, "maxRanks": 1, "type": "passive", "name": "Improved Sigil of Misery", "spellId": 320418, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90931, "name": "Bouncing Glaives", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90993, 90938], "prev": [90941, 90930], "entries": [{"id": 112841, "definitionId": 117846, "maxRanks": 1, "type": "passive", "name": "Bouncing Glaives", "spellId": 320386, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91007, "name": "Imprison", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90938, 91006], "prev": [90950, 90941], "entries": [{"id": 112927, "definitionId": 117932, "maxRanks": 1, "type": "active", "name": "Imprison", "spellId": 217832, "icon": "ability_demonhunter_imprison", "index": 100}]}, {"id": 90948, "name": "Charred Warblades", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [91006, 90999], "prev": [90950, 90945], "entries": [{"id": 112861, "definitionId": 117866, "maxRanks": 1, "type": "passive", "name": "Charred Warblades", "spellId": 213010, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 90993, "name": "Chaos Nova", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [95154, 90994], "prev": [90931], "entries": [{"id": 112911, "definitionId": 117916, "maxRanks": 1, "type": "active", "name": "Chaos Nova", "spellId": 179057, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90938, "name": "Improved Disrupt", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90994, 90937, 95150], "prev": [90931, 91007], "entries": [{"id": 112849, "definitionId": 117854, "maxRanks": 1, "type": "passive", "name": "Improved Disrupt", "spellId": 320361, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 91006, "name": "Consume Magic", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [95150, 91005, 90933], "prev": [90948, 91007], "entries": [{"id": 112926, "definitionId": 117931, "maxRanks": 1, "type": "active", "name": "Consume Magic", "spellId": 278326, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90999, "name": "Aldrachi Design", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90933, 95151], "prev": [90948], "entries": [{"id": 112917, "definitionId": 117922, "maxRanks": 1, "type": "passive", "name": "Aldrachi Design", "spellId": 391409, "icon": "inv_glaive_1h_artifactaldrochi_d_01dual", "index": 100}]}, {"id": 95154, "name": "Chaos Fragments", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940], "prev": [90993], "entries": [{"id": 117767, "definitionId": 122779, "maxRanks": 1, "type": "passive", "name": "Chaos Fragments", "spellId": 320412, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90994, "name": "Master of the Glaive / Champion of the Glaive", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940, 90936], "prev": [90993, 90938], "entries": [{"id": 112912, "definitionId": 117917, "maxRanks": 1, "type": "passive", "name": "Master of the Glaive", "spellId": 389763, "icon": "inv_glaive_1h_demonhunter_a_01", "index": 100}, {"id": 117768, "definitionId": 122780, "maxRanks": 1, "type": "passive", "name": "Champion of the Glaive", "spellId": 429211, "icon": "inv_glaive_1h_battledungeon_c_01", "index": 200}]}, {"id": 90937, "name": "Disrupting Fury", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936], "prev": [90938], "entries": [{"id": 112848, "definitionId": 117853, "maxRanks": 1, "type": "passive", "name": "Disrupting Fury", "spellId": 183782, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 95150, "name": "Felblade", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936, 91004], "prev": [91006, 90938], "entries": [{"id": 117759, "definitionId": 122771, "maxRanks": 1, "type": "active", "name": "Felblade", "spellId": 232893, "icon": "ability_demonhunter_felblade", "index": 100}]}, {"id": 91005, "name": "Swallowed Anger", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004], "prev": [91006], "entries": [{"id": 112925, "definitionId": 117930, "maxRanks": 1, "type": "passive", "name": "Swallowed Anger", "spellId": 320313, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90933, "name": "Aura of Pain", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004, 90947], "prev": [91006, 90999], "entries": [{"id": 112844, "definitionId": 117849, "maxRanks": 1, "type": "passive", "name": "Aura of Pain", "spellId": 207347, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 95151, "name": "Live by the Glaive", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90947], "prev": [90999], "entries": [{"id": 117761, "definitionId": 122773, "maxRanks": 1, "type": "passive", "name": "Live by the Glaive", "spellId": 428607, "icon": "inv_sword_108", "index": 100}]}, {"id": 90940, "name": "Pursuit", "type": "single", "posX": 2100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90939, 90935], "prev": [90994, 95154], "entries": [{"id": 112851, "definitionId": 117856, "maxRanks": 1, "type": "passive", "name": "Pursuit", "spellId": 320654, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 90936, "name": "Soul Rending", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90935, 91003], "prev": [90994, 90937, 95150], "entries": [{"id": 112847, "definitionId": 117852, "maxRanks": 2, "type": "passive", "name": "Soul Rending", "spellId": 204909, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 91004, "name": "Infernal Armor", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91003, 91000], "prev": [91005, 95150, 90933], "entries": [{"id": 112924, "definitionId": 117929, "maxRanks": 2, "type": "passive", "name": "Infernal Armor", "spellId": 320331, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90947, "name": "Lost in Darkness", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91000, 95155], "prev": [95151, 90933], "entries": [{"id": 112860, "definitionId": 117865, "maxRanks": 1, "type": "passive", "name": "Lost in Darkness", "spellId": 389849, "icon": "inv_pet_inquisitoreye", "index": 100}]}, {"id": 90939, "name": "Felfire Haste", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934], "prev": [90940], "entries": [{"id": 112850, "definitionId": 117855, "maxRanks": 1, "type": "passive", "name": "Felfire Haste", "spellId": 389846, "icon": "inv_boots_cloth_35v4", "index": 100}]}, {"id": 90935, "name": "Illidari Knowledge", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934, 91002], "prev": [90936, 90940], "entries": [{"id": 112846, "definitionId": 117851, "maxRanks": 1, "type": "passive", "name": "Illidari Knowledge", "spellId": 389696, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 91003, "name": "Demonic", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91002, 90929], "prev": [90936, 91004], "entries": [{"id": 112923, "definitionId": 117928, "maxRanks": 1, "type": "passive", "name": "Demonic", "spellId": 213410, "icon": "spell_shadow_demonform", "index": 100}]}, {"id": 91000, "name": "Will of the Illidari", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90929, 95149], "prev": [91004, 90947], "entries": [{"id": 112918, "definitionId": 117923, "maxRanks": 1, "type": "passive", "name": "Will of the Illidari", "spellId": 389695, "icon": "ability_demonhunter_spectank", "index": 100}]}, {"id": 95155, "name": "Precise Sigils", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [95149], "prev": [90947], "entries": [{"id": 117771, "definitionId": 122783, "maxRanks": 1, "type": "passive", "name": "Precise Sigils", "spellId": 389799, "icon": "ability_bossfelorcs_necromancer_orange", "index": 100}]}, {"id": 90934, "name": "Internal Struggle", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90996], "prev": [90935, 90939], "entries": [{"id": 112845, "definitionId": 117850, "maxRanks": 1, "type": "passive", "name": "Internal Struggle", "spellId": 393822, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 91002, "name": "Darkness", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91001, 95148], "prev": [90935, 91003], "entries": [{"id": 112921, "definitionId": 117926, "maxRanks": 1, "type": "active", "name": "Darkness", "spellId": 196718, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 90929, "name": "Soul Sigils", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95148, 90928], "prev": [91003, 91000], "entries": [{"id": 112839, "definitionId": 117844, "maxRanks": 1, "type": "passive", "name": "Soul Sigils", "spellId": 395446, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95149, "name": "Quickened Sigils", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90949], "prev": [91000, 95155], "entries": [{"id": 117758, "definitionId": 122770, "maxRanks": 1, "type": "passive", "name": "Quickened Sigils", "spellId": 209281, "icon": "ability_demonhunter_concentratedsigils", "index": 100}]}, {"id": 90996, "name": "Erratic Felheart", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95152], "prev": [90934], "entries": [{"id": 112914, "definitionId": 117919, "maxRanks": 2, "type": "passive", "name": "Erratic Felheart", "spellId": 391397, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 91001, "name": "Long Night / Pitch Black", "type": "choice", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91002], "entries": [{"id": 112920, "definitionId": 117925, "maxRanks": 1, "type": "passive", "name": "Long Night", "spellId": 389781, "icon": "spell_fire_twilightimmolation", "index": 100}, {"id": 112919, "definitionId": 117924, "maxRanks": 1, "type": "passive", "name": "Pitch Black", "spellId": 389783, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95148, "name": "Rush of Chaos", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90927], "prev": [90929, 91002], "entries": [{"id": 117757, "definitionId": 122769, "maxRanks": 2, "type": "passive", "name": "Rush of Chaos", "spellId": 320421, "icon": "ability_demonhunter_metamorphasisdps", "index": 100}]}, {"id": 90928, "name": "Demon Muzzle", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90929], "entries": [{"id": 112838, "definitionId": 117843, "maxRanks": 1, "type": "passive", "name": "Demon Muzzle", "spellId": 388111, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 90949, "name": "Flames of Fury", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90997], "prev": [95149], "entries": [{"id": 112862, "definitionId": 117867, "maxRanks": 2, "type": "passive", "name": "Flames of Fury", "spellId": 389694, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95152, "name": "Collective Anguish", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90996], "entries": [{"id": 117762, "definitionId": 122774, "maxRanks": 1, "type": "passive", "name": "Collective Anguish", "spellId": 390152, "icon": "artifactability_havocdemonhunter_anguishofthedeceiver", "index": 200}]}, {"id": 90927, "name": "The Hunt", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95148], "entries": [{"id": 112837, "definitionId": 117842, "maxRanks": 1, "type": "active", "name": "The Hunt", "spellId": 370965, "icon": "ability_ardenweald_demonhunter", "index": 100}]}, {"id": 90997, "name": "Sigil of Spite", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90949], "entries": [{"id": 117755, "definitionId": 122767, "maxRanks": 1, "type": "active", "name": "Sigil of Spite", "spellId": 390163, "icon": "ability_bastion_demonhunter", "index": 200}]}], "specNodes": [{"id": 90912, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 90991, "name": "Fel Devastation", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90990, 90951], "prev": [], "entries": [{"id": 112908, "definitionId": 117913, "maxRanks": 1, "type": "active", "name": "Fel Devastation", "spellId": 212084, "icon": "ability_demonhunter_feldevastation", "index": 100}]}, {"id": 90990, "name": "Frailty", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [90970, 90989], "prev": [90991], "entries": [{"id": 112907, "definitionId": 117912, "maxRanks": 1, "type": "passive", "name": "Frailty", "spellId": 389958, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90951, "name": "Fiery Brand", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90989, 90960], "prev": [90991], "entries": [{"id": 112864, "definitionId": 117869, "maxRanks": 1, "type": "active", "name": "Fiery Brand", "spellId": 204021, "icon": "ability_demonhunter_fierybrand", "index": 100}]}, {"id": 90970, "name": "Shear Fury / Fracture", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90968, 90967], "prev": [90990], "entries": [{"id": 112886, "definitionId": 117891, "maxRanks": 1, "type": "passive", "name": "Shear Fury", "spellId": 389997, "icon": "ability_demonhunter_hatefulstrike", "index": 100}, {"id": 112885, "definitionId": 117890, "maxRanks": 1, "type": "active", "name": "Fracture", "spellId": 263642, "icon": "ability_creature_felsunder", "index": 200}]}, {"id": 90989, "name": "Deflecting Spikes", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90988], "prev": [90951, 90990], "entries": [{"id": 112906, "definitionId": 117911, "maxRanks": 1, "type": "passive", "name": "Deflecting Spikes", "spellId": 321028, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90960, "name": "Ascending Flame", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90952, 90953], "prev": [90951], "entries": [{"id": 112875, "definitionId": 117880, "maxRanks": 1, "type": "passive", "name": "Ascending Flame", "spellId": 428603, "icon": "inv_helm_suncrown_d_01", "index": 100}]}, {"id": 90968, "name": "Perfectly Balanced Glaive", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90969, 90971, 90978], "prev": [90970], "entries": [{"id": 112883, "definitionId": 117888, "maxRanks": 1, "type": "passive", "name": "Perfectly Balanced Glaive", "spellId": 320387, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 90967, "name": "Calcified Spikes", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [90971], "prev": [90970], "entries": [{"id": 112882, "definitionId": 117887, "maxRanks": 1, "type": "passive", "name": "Calcified Spikes", "spellId": 389720, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90988, "name": "Roaring Fire / Sigil of Silence", "type": "choice", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [90971, 90966, 90987], "prev": [90989], "entries": [{"id": 112905, "definitionId": 117910, "maxRanks": 1, "type": "passive", "name": "Roaring Fire", "spellId": 391178, "icon": "spell_fire_felflamering", "index": 100}, {"id": 112904, "definitionId": 117909, "maxRanks": 1, "type": "active", "name": "Sigil of Silence", "spellId": 202137, "icon": "ability_demonhunter_sigilofsilence", "index": 200}]}, {"id": 90952, "name": "Retaliation", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [90987], "prev": [90960], "entries": [{"id": 112865, "definitionId": 117870, "maxRanks": 1, "type": "passive", "name": "Retaliation", "spellId": 389729, "icon": "ability_demonhunter_demonspikes2", "index": 100}]}, {"id": 90953, "name": "Meteoric Strikes", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90987, 90956, 90957], "prev": [90960], "entries": [{"id": 112866, "definitionId": 117871, "maxRanks": 1, "type": "passive", "name": "Meteoric Strikes", "spellId": 389724, "icon": "spell_warlock_summonabyssal", "index": 100}]}, {"id": 90978, "name": "Spirit Bomb", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977], "prev": [90968], "entries": [{"id": 112894, "definitionId": 117899, "maxRanks": 1, "type": "active", "name": "Spirit Bomb", "spellId": 247454, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90969, "name": "Feast of Souls", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977], "prev": [90968], "entries": [{"id": 112884, "definitionId": 117889, "maxRanks": 1, "type": "passive", "name": "Feast of Souls", "spellId": 207697, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 90971, "name": "Agonizing Flames", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977, 90972], "prev": [90988, 90968, 90967], "entries": [{"id": 112887, "definitionId": 117892, "maxRanks": 1, "type": "passive", "name": "Agonizing Flames", "spellId": 207548, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 90966, "name": "Extended Spikes", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90972, 90965, 90986], "prev": [90988], "entries": [{"id": 112881, "definitionId": 117886, "maxRanks": 1, "type": "passive", "name": "Extended Spikes", "spellId": 389721, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90987, "name": "Burning Blood", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90986, 90955], "prev": [90988, 90953, 90952], "entries": [{"id": 112903, "definitionId": 117908, "maxRanks": 1, "type": "passive", "name": "Burning Blood", "spellId": 390213, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90956, "name": "Soul Barrier / Bulk Extraction", "type": "choice", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90955], "prev": [90953], "entries": [{"id": 112870, "definitionId": 117875, "maxRanks": 1, "type": "active", "name": "Soul Barrier", "spellId": 263648, "icon": "inv_soulbarrier", "index": 100}, {"id": 112869, "definitionId": 117874, "maxRanks": 1, "type": "active", "name": "Bulk Extraction", "spellId": 320341, "icon": "spell_shadow_shadesofdarkness", "index": 300}]}, {"id": 90957, "name": "Revel in Pain", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90955], "prev": [90953], "entries": [{"id": 112871, "definitionId": 117876, "maxRanks": 1, "type": "passive", "name": "Revel in Pain", "spellId": 343014, "icon": "ability_bossfelmagnaron_handempowered", "index": 100}]}, {"id": 90977, "name": "Void Reaver", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90976, 90974], "prev": [90969, 90978, 90971], "entries": [{"id": 112893, "definitionId": 117898, "maxRanks": 1, "type": "passive", "name": "Void Reaver", "spellId": 268175, "icon": "spell_shadow_demonicempathy", "index": 100}]}, {"id": 90972, "name": "Fallout", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90976, 90954], "prev": [90966, 90971], "entries": [{"id": 112888, "definitionId": 117893, "maxRanks": 1, "type": "passive", "name": "Fallout", "spellId": 227174, "icon": "spell_volatilefiregreen", "index": 100}]}, {"id": 90965, "name": "Ruinous Bulwark", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90954], "prev": [90966], "entries": [{"id": 112880, "definitionId": 117885, "maxRanks": 1, "type": "passive", "name": "Ruinous Bulwark", "spellId": 326853, "icon": "ability_demonhunter_feldevastation", "index": 100}]}, {"id": 90986, "name": "Volatile Flameblood", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90954, 90958], "prev": [90987, 90966], "entries": [{"id": 112902, "definitionId": 117907, "maxRanks": 1, "type": "passive", "name": "Volatile Flameblood", "spellId": 390808, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90955, "name": "Fel Flame Fortification", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90958, 90964], "prev": [90956, 90987, 90957], "entries": [{"id": 112868, "definitionId": 117873, "maxRanks": 1, "type": "passive", "name": "Fel Flame Fortification", "spellId": 389705, "icon": "spell_fire_felfire", "index": 100}]}, {"id": 90974, "name": "Soul Furnace", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90975], "prev": [90977], "entries": [{"id": 112890, "definitionId": 117895, "maxRanks": 1, "type": "passive", "name": "Soul Furnace", "spellId": 391165, "icon": "ability_demonhunter_soulcleave4", "index": 100}]}, {"id": 90976, "name": "Painbringer", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [90975, 90973, 90984], "prev": [90972, 90977], "entries": [{"id": 112892, "definitionId": 117897, "maxRanks": 2, "type": "passive", "name": "Painbringer", "spellId": 207387, "icon": "artifactability_vengeancedemonhunter_painbringer", "index": 100}]}, {"id": 90954, "name": "Sigil of Chains", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90984], "prev": [90965, 90986, 90972], "entries": [{"id": 112867, "definitionId": 117872, "maxRanks": 1, "type": "active", "name": "Sigil of Chains", "spellId": 202138, "icon": "ability_demonhunter_sigilofchains", "index": 100}]}, {"id": 90958, "name": "Fiery Demise", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [90984, 90959, 90963], "prev": [90986, 90955], "entries": [{"id": 112872, "definitionId": 117877, "maxRanks": 2, "type": "passive", "name": "Fiery Demise", "spellId": 389220, "icon": "ability_demonhunter_fierybrand", "index": 300}]}, {"id": 90964, "name": "Chains of Anger", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90963], "prev": [90955], "entries": [{"id": 112879, "definitionId": 117884, "maxRanks": 1, "type": "passive", "name": "Chains of Anger", "spellId": 389715, "icon": "ability_demonhunter_sigilofchains", "index": 100}]}, {"id": 90975, "name": "Focused Cleave", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90981], "prev": [90976, 90974], "entries": [{"id": 112891, "definitionId": 117896, "maxRanks": 1, "type": "passive", "name": "Focused Cleave", "spellId": 343207, "icon": "ability_demonhunter_soulcleave", "index": 100}]}, {"id": 90973, "name": "Soulmonger", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90981, 90983], "prev": [90976], "entries": [{"id": 112889, "definitionId": 117894, "maxRanks": 1, "type": "passive", "name": "Soulmonger", "spellId": 389711, "icon": "ability_demonhunter_shatteredsouls", "index": 100}]}, {"id": 90984, "name": "Stoke the Flames", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90983], "prev": [90958, 90976, 90954], "entries": [{"id": 112900, "definitionId": 117905, "maxRanks": 1, "type": "passive", "name": "Stoke the Flames", "spellId": 393827, "icon": "ability_demonhunter_feldevastation", "index": 200}]}, {"id": 90959, "name": "Burning Alive", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90983, 90962], "prev": [90958], "entries": [{"id": 112873, "definitionId": 117878, "maxRanks": 1, "type": "passive", "name": "Burning Alive", "spellId": 207739, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 90963, "name": "Cycle of Binding", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90962], "prev": [90958, 90964], "entries": [{"id": 112878, "definitionId": 117883, "maxRanks": 1, "type": "passive", "name": "Cycle of Binding", "spellId": 389718, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 90981, "name": "Vulnerability", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90980, 90982], "prev": [90973, 90975], "entries": [{"id": 112897, "definitionId": 117902, "maxRanks": 2, "type": "passive", "name": "Vulnerability", "spellId": 389976, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90983, "name": "Feed the Demon", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90982, 90979, 90985], "prev": [90984, 90959, 90973], "entries": [{"id": 112899, "definitionId": 117904, "maxRanks": 2, "type": "passive", "name": "Feed the Demon", "spellId": 218612, "icon": "spell_warlock_demonicempowerment", "index": 100}]}, {"id": 90962, "name": "Charred Flesh", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90985, 90961], "prev": [90963, 90959], "entries": [{"id": 112877, "definitionId": 117882, "maxRanks": 2, "type": "passive", "name": "Charred Flesh", "spellId": 336639, "icon": "ability_warlock_backdraft", "index": 100}]}, {"id": 90980, "name": "Soulcrush", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90981], "entries": [{"id": 112896, "definitionId": 117901, "maxRanks": 1, "type": "passive", "name": "Soulcrush", "spellId": 389985, "icon": "inv_icon_shadowcouncilorb_purple", "index": 200}]}, {"id": 90982, "name": "Soul Carver", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90981, 90983], "entries": [{"id": 112898, "definitionId": 117903, "maxRanks": 1, "type": "active", "name": "Soul Carver", "spellId": 207407, "icon": "inv_glaive_1h_artifactaldrochi_d_01", "index": 100}]}, {"id": 90979, "name": "Last Resort", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90983], "entries": [{"id": 112895, "definitionId": 117900, "maxRanks": 1, "type": "passive", "name": "Last Resort", "spellId": 209258, "icon": "inv_glaive_1h_artifactaldorchi_d_06", "index": 100}]}, {"id": 90985, "name": "Darkglare Boon", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90983, 90962], "entries": [{"id": 112901, "definitionId": 117906, "maxRanks": 1, "type": "passive", "name": "Darkglare Boon", "spellId": 389708, "icon": "inv_jewelry_necklace_53", "index": 200}]}, {"id": 90961, "name": "Down in Flames / Illuminated Sigils", "type": "choice", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90962], "entries": [{"id": 112876, "definitionId": 117881, "maxRanks": 1, "type": "passive", "name": "Down in Flames", "spellId": 389732, "icon": "ability_demonhunter_fierybrand", "index": 200}, {"id": 117760, "definitionId": 122772, "maxRanks": 1, "type": "passive", "name": "Illuminated Sigils", "spellId": 428557, "icon": "ability_essence_reapingflames", "index": 300}]}], "heroNodes": [{"id": 94915, "name": "Art of the Glaive", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 35, "next": [94898, 94911, 94903], "prev": [], "entries": [{"id": 117512, "definitionId": 122524, "maxRanks": 1, "type": "passive", "name": "Art of the Glaive", "spellId": 442290, "icon": "inv_ability_aldrachireaverdemonhunter_reaversglaive", "index": 100}], "freeNode": true}, {"id": 94898, "name": "Fury of the Aldrachi", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94914], "prev": [94915], "entries": [{"id": 117495, "definitionId": 122519, "maxRanks": 1, "type": "passive", "name": "Fury of the Aldrachi", "spellId": 442718, "icon": "spell_fire_felflamestrike", "index": 100}]}, {"id": 94911, "name": "Evasive Action / Unhindered Assault", "type": "choice", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94896], "prev": [94915], "entries": [{"id": 117508, "definitionId": 122520, "maxRanks": 1, "type": "passive", "name": "Evasive Action", "spellId": 444926, "icon": "ability_demonhunter_vengefulretreat", "index": 100}, {"id": 123047, "definitionId": 127928, "maxRanks": 1, "type": "passive", "name": "Unhindered Assault", "spellId": 444931, "icon": "ability_ironmaidens_bladerush", "index": 200}]}, {"id": 94903, "name": "Reaver's Mark", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94897], "prev": [94915], "entries": [{"id": 117500, "definitionId": 122512, "maxRanks": 1, "type": "passive", "name": "Reaver's Mark", "spellId": 442679, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 94914, "name": "Aldrachi Tactics", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94895], "prev": [94898], "entries": [{"id": 117511, "definitionId": 122523, "maxRanks": 1, "type": "passive", "name": "Aldrachi Tactics", "spellId": 442683, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 94896, "name": "Army Unto Oneself / Incorruptible Spirit", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94910], "prev": [94911], "entries": [{"id": 117493, "definitionId": 122505, "maxRanks": 1, "type": "passive", "name": "Army Unto Oneself", "spellId": 442714, "icon": "ability_warlock_avoidance", "index": 100}, {"id": 123046, "definitionId": 127927, "maxRanks": 1, "type": "passive", "name": "Incorruptible Spirit", "spellId": 442736, "icon": "spell_nzinsanity_chasedbyshadows", "index": 200}]}, {"id": 94897, "name": "Wounded Quarry", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94906], "prev": [94903], "entries": [{"id": 117494, "definitionId": 122506, "maxRanks": 1, "type": "passive", "name": "Wounded Quarry", "spellId": 442806, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94895, "name": "Incisive Blade", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94914], "entries": [{"id": 117492, "definitionId": 122504, "maxRanks": 1, "type": "passive", "name": "Incisive Blade", "spellId": 442492, "icon": "ability_dualwieldspecialization", "index": 100}]}, {"id": 94910, "name": "Keen Engagement / Preemptive Strike", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94896], "entries": [{"id": 117507, "definitionId": 122507, "maxRanks": 1, "type": "passive", "name": "Keen Engagement", "spellId": 442497, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 122422, "definitionId": 127322, "maxRanks": 1, "type": "passive", "name": "Preemptive Strike", "spellId": 444997, "icon": "ability_rogue_focusedattacks", "index": 200}]}, {"id": 94906, "name": "Warblade's Hunger", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94897], "entries": [{"id": 117503, "definitionId": 122515, "maxRanks": 1, "type": "passive", "name": "Warblade's Hunger", "spellId": 442502, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 94919, "name": "Thrill of the Fight", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 35, "next": [], "prev": [94910, 94895, 94906], "entries": [{"id": 117516, "definitionId": 122528, "maxRanks": 1, "type": "passive", "name": "Thrill of the Fight", "spellId": 442686, "icon": "spell_arcane_arcanetactics", "index": 100}]}, {"id": 94917, "name": "Demonsurge", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 34, "next": [94913, 94918, 94899], "prev": [], "entries": [{"id": 117514, "definitionId": 122526, "maxRanks": 1, "type": "passive", "name": "Demonsurge", "spellId": 452402, "icon": "inv_ability_felscarreddemonhunter_demonsurge", "index": 100}], "freeNode": true}, {"id": 94913, "name": "Wave of Debilitation / Pursuit of Angriness", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94905], "prev": [94917], "entries": [{"id": 117510, "definitionId": 122522, "maxRanks": 1, "type": "passive", "name": "Wave of Debilitation", "spellId": 452403, "icon": "spell_fire_felfirenova", "index": 100}, {"id": 124011, "definitionId": 128849, "maxRanks": 1, "type": "passive", "name": "Pursuit of Angriness", "spellId": 452404, "icon": "ability_felarakkoa_focusedblast", "index": 200}]}, {"id": 94918, "name": "Focused Hatred", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94912], "prev": [94917], "entries": [{"id": 117515, "definitionId": 122527, "maxRanks": 1, "type": "passive", "name": "Focused Hatred", "spellId": 452405, "icon": "ability_demonhunter_illidansgrasp", "index": 100}]}, {"id": 94899, "name": "Set Fire to the Pain / Improved Soul Rending", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94916], "prev": [94917], "entries": [{"id": 117496, "definitionId": 122508, "maxRanks": 1, "type": "passive", "name": "Set Fire to the Pain", "spellId": 452406, "icon": "ability_demonhunter_empowerwards", "index": 100}, {"id": 124010, "definitionId": 128848, "maxRanks": 1, "type": "passive", "name": "Improved Soul Rending", "spellId": 452407, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 94905, "name": "Burning Blades", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94904], "prev": [94913], "entries": [{"id": 117502, "definitionId": 122514, "maxRanks": 1, "type": "passive", "name": "Burning Blades", "spellId": 452408, "icon": "inv_glaive_1h_artifactazgalor_d_02dual", "index": 100}]}, {"id": 94912, "name": "Violent Transformation", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94902], "prev": [94918], "entries": [{"id": 117509, "definitionId": 122521, "maxRanks": 1, "type": "passive", "name": "Violent Transformation", "spellId": 452409, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 94916, "name": "Enduring Torment", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94909], "prev": [94899], "entries": [{"id": 117513, "definitionId": 122525, "maxRanks": 1, "type": "passive", "name": "Enduring Torment", "spellId": 452410, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 94904, "name": "Untethered Fury", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94905], "entries": [{"id": 117501, "definitionId": 122513, "maxRanks": 1, "type": "passive", "name": "Untethered Fury", "spellId": 452411, "icon": "inv__felbarrage", "index": 100}]}, {"id": 94902, "name": "Student of Suffering / Flamebound", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94912], "entries": [{"id": 117499, "definitionId": 122511, "maxRanks": 1, "type": "passive", "name": "Student of Suffering", "spellId": 452412, "icon": "achievement_dungeon_theatreofpain_kultharok", "index": 100}, {"id": 124009, "definitionId": 128847, "maxRanks": 1, "type": "passive", "name": "Flamebound", "spellId": 452413, "icon": "spell_fire_felflamering", "index": 200}]}, {"id": 94909, "name": "Monster Rising", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94916], "entries": [{"id": 117506, "definitionId": 122518, "maxRanks": 1, "type": "passive", "name": "Monster Rising", "spellId": 452414, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 94901, "name": "Demonic Intensity", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 34, "next": [], "prev": [94902, 94904, 94909], "entries": [{"id": 117498, "definitionId": 122510, "maxRanks": 1, "type": "passive", "name": "Demonic Intensity", "spellId": 452415, "icon": "spell_warlock_demonicempowerment", "index": 100}]}], "subTreeNodes": [{"id": 99823, "name": "Aldrachi Reaver / Fel-Scarred", "type": "subtree", "posX": 8400, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123328, "type": "subtree", "name": "Aldrachi Reaver", "traitSubTreeId": 35, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-aldrachireaver", "nodes": [94915, 94898, 94911, 94903, 94914, 94896, 94897, 94895, 94910, 94906, 94919]}, {"id": 123327, "type": "subtree", "name": "Fel-Scarred", "traitSubTreeId": 34, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-felscarred", "nodes": [94917, 94913, 94918, 94899, 94905, 94912, 94916, 94904, 94902, 94909, 94901]}]}], "fullNodeOrder": [90912, 90914, 90915, 90916, 90917, 90918, 90919, 90921, 90922, 90923, 90925, 90927, 90928, 90929, 90930, 90931, 90933, 90934, 90935, 90936, 90937, 90938, 90939, 90940, 90941, 90942, 90945, 90946, 90947, 90948, 90949, 90950, 90951, 90952, 90953, 90954, 90955, 90956, 90957, 90958, 90959, 90960, 90961, 90962, 90963, 90964, 90965, 90966, 90967, 90968, 90969, 90970, 90971, 90972, 90973, 90974, 90975, 90976, 90977, 90978, 90979, 90980, 90981, 90982, 90983, 90984, 90985, 90986, 90987, 90988, 90989, 90990, 90991, 90993, 90994, 90996, 90997, 90999, 91000, 91001, 91002, 91003, 91004, 91005, 91006, 91007, 91008, 91011, 91012, 91013, 91015, 91017, 91018, 91019, 91020, 91021, 91022, 91024, 91025, 91026, 91027, 91028, 91030, 91031, 91032, 91033, 91034, 91035, 91036, 93013, 93014, 93015, 93016, 94895, 94896, 94897, 94898, 94899, 94901, 94902, 94903, 94904, 94905, 94906, 94909, 94910, 94911, 94912, 94913, 94914, 94915, 94916, 94917, 94918, 94919, 95143, 95144, 95147, 95148, 95149, 95150, 95151, 95152, 95154, 95155, 99823, 99824]}] \ No newline at end of file +[{"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Balance", "specId": 102, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82205, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82201, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82202, 82208], "prev": [], "entries": [{"id": 103279, "definitionId": 108284, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 194153, "icon": "spell_arcane_starfire", "index": 100}], "freeNode": true}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82205, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103283, "definitionId": 108288, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82202, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82201], "entries": [{"id": 103280, "definitionId": 108285, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 78674, "icon": "spell_arcane_arcane03", "index": 100}], "freeNode": true}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [82201], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82205, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 88223, "name": "Eclipse", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [88225, 88231], "prev": [], "entries": [{"id": 109858, "definitionId": 114863, "maxRanks": 1, "type": "passive", "name": "Eclipse", "spellId": 79577, "icon": "ability_druid_eclipseorange", "index": 100}]}, {"id": 88225, "name": "Shooting Stars", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [88203, 88210], "prev": [88223], "entries": [{"id": 109861, "definitionId": 114866, "maxRanks": 1, "type": "passive", "name": "Shooting Stars", "spellId": 202342, "icon": "spell_priest_divinestar_shadow2", "index": 100}]}, {"id": 88231, "name": "Solar Beam", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [88210, 88211, 88201], "prev": [88223], "entries": [{"id": 109867, "definitionId": 114872, "maxRanks": 1, "type": "active", "name": "Solar Beam", "spellId": 78675, "icon": "ability_vehicle_sonicshockwave", "index": 100}]}, {"id": 88203, "name": "Solstice", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [91048, 88226], "prev": [88225], "entries": [{"id": 109835, "definitionId": 114840, "maxRanks": 1, "type": "passive", "name": "Solstice", "spellId": 343647, "icon": "artifactability_balancedruid_moonandstars", "index": 100}]}, {"id": 88210, "name": "Force of Nature / Warrior of Elune", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [88226, 88208, 88215], "prev": [88225, 88231], "entries": [{"id": 109844, "definitionId": 114849, "maxRanks": 1, "type": "active", "name": "Force of Nature", "spellId": 205636, "icon": "ability_druid_forceofnature", "index": 100}, {"id": 114648, "definitionId": 119654, "maxRanks": 1, "type": "active", "name": "Warrior of Elune", "spellId": 202425, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 88211, "name": "Light of the Sun", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [88208], "prev": [88231], "entries": [{"id": 109845, "definitionId": 114850, "maxRanks": 1, "type": "passive", "name": "Light of the Sun", "spellId": 202918, "icon": "ability_vehicle_sonicshockwave", "index": 100}]}, {"id": 88201, "name": "Twin Moons", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [88208, 88209], "prev": [88231], "entries": [{"id": 109833, "definitionId": 114838, "maxRanks": 1, "type": "passive", "name": "Twin Moons", "spellId": 279620, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 91048, "name": "Wild Surges / Stellar Flare", "type": "choice", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [88204, 88202], "prev": [88203], "entries": [{"id": 115458, "definitionId": 120470, "maxRanks": 1, "type": "passive", "name": "Wild Surges", "spellId": 406890, "icon": "ability_skyreach_lens_flare", "index": 100}, {"id": 109841, "definitionId": 114846, "maxRanks": 1, "type": "active", "name": "Stellar Flare", "spellId": 202347, "icon": "ability_druid_stellarflare", "index": 200}]}, {"id": 88226, "name": "Nature's Balance", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [88204, 88215], "prev": [88203, 88210], "entries": [{"id": 109862, "definitionId": 114867, "maxRanks": 1, "type": "passive", "name": "Nature's Balance", "spellId": 202430, "icon": "ability_druid_balanceofpower", "index": 100}]}, {"id": 88208, "name": "Nature's Grace", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [88215, 88219], "prev": [88211, 88201, 88210], "entries": [{"id": 109842, "definitionId": 114847, "maxRanks": 1, "type": "passive", "name": "Nature's Grace", "spellId": 450347, "icon": "ability_druid_lunarguidance", "index": 100}]}, {"id": 88209, "name": "Aetherial Kindling", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [88219, 88232], "prev": [88201], "entries": [{"id": 109843, "definitionId": 114848, "maxRanks": 1, "type": "passive", "name": "Aetherial Kindling", "spellId": 327541, "icon": "ability_druid_starfall", "index": 100}]}, {"id": 88204, "name": "Astral Smolder", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [88212, 88202, 88229], "prev": [91048, 88226], "entries": [{"id": 109836, "definitionId": 114841, "maxRanks": 1, "type": "passive", "name": "Astral Smolder", "spellId": 394058, "icon": "spell_fire_bluefire", "index": 0}]}, {"id": 88215, "name": "Celestial Alignment", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [88212, 88221, 88222], "prev": [88208, 88226, 88210], "entries": [{"id": 109849, "definitionId": 114854, "maxRanks": 1, "type": "active", "name": "Celestial Alignment", "spellId": 395022, "visibleSpellId": 194223, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 88219, "name": "Umbral Intensity", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [88222, 88232, 88207], "prev": [88209, 88208], "entries": [{"id": 109853, "definitionId": 114858, "maxRanks": 1, "type": "passive", "name": "Umbral Intensity", "spellId": 383195, "icon": "ability_druid_eclipse", "index": 100}]}, {"id": 88202, "name": "Sunseeker Mushroom / Wild Mushroom", "type": "choice", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227, 88220], "prev": [91048, 88204], "entries": [{"id": 109834, "definitionId": 114839, "maxRanks": 1, "type": "passive", "name": "Sunseeker Mushroom", "spellId": 468936, "icon": "druid_ability_wildmushroom_b", "index": 0}, {"id": 128232, "definitionId": 133039, "maxRanks": 1, "type": "active", "name": "Wild Mushroom", "spellId": 88747, "icon": "druid_ability_wildmushroom_a", "index": 100}]}, {"id": 88229, "name": "Stellar Amplification", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227], "prev": [88204], "entries": [{"id": 109865, "definitionId": 114870, "maxRanks": 1, "type": "passive", "name": "Stellar Amplification", "spellId": 450212, "icon": "spell_arcane_arcane04", "index": 100}]}, {"id": 88212, "name": "Soul of the Forest", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88227, 103847, 88216], "prev": [88204, 88215], "entries": [{"id": 109846, "definitionId": 114851, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 114107, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 88221, "name": "Whirling Stars / Orbital Strike", "type": "choice", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88216], "prev": [88215], "entries": [{"id": 109856, "definitionId": 114861, "maxRanks": 1, "type": "passive", "name": "Whirling Stars", "spellId": 468743, "icon": "spell_druid_equinox", "index": 100}, {"id": 109855, "definitionId": 114860, "maxRanks": 1, "type": "passive", "name": "Orbital Strike", "spellId": 390378, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 88222, "name": "Touch the Cosmos", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88216, 103846, 88207], "prev": [88219, 88215], "entries": [{"id": 109857, "definitionId": 114862, "maxRanks": 1, "type": "passive", "name": "Touch the Cosmos", "spellId": 450356, "icon": "ability_bossgorefiend_touchofdoom", "index": 0}]}, {"id": 88232, "name": "Astronomical Impact", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [88207, 88235], "prev": [88209, 88219], "entries": [{"id": 109868, "definitionId": 114873, "maxRanks": 1, "type": "passive", "name": "Astronomical Impact", "spellId": 468960, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 88227, "name": "Cosmic Rapidity", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [88220, 88199, 88214], "prev": [88229, 88212, 88202], "entries": [{"id": 109863, "definitionId": 114868, "maxRanks": 2, "type": "passive", "name": "Cosmic Rapidity", "spellId": 400059, "icon": "spell_druid_swarm", "index": 100}]}, {"id": 103847, "name": "Crashing Star", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [88212], "entries": [{"id": 128231, "definitionId": 133038, "maxRanks": 1, "type": "passive", "name": "Crashing Star", "spellId": 468978, "icon": "spell_priest_divinestar_shadow2", "index": 100}]}, {"id": 88216, "name": "Umbral Embrace", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [88214, 88217, 88200], "prev": [88221, 88212, 88222], "entries": [{"id": 109850, "definitionId": 114855, "maxRanks": 1, "type": "passive", "name": "Umbral Embrace", "spellId": 393760, "icon": "ability_druid_improvedmoonkinform", "index": 0}]}, {"id": 103846, "name": "Hail of Stars", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [88222], "entries": [{"id": 128230, "definitionId": 133037, "maxRanks": 1, "type": "passive", "name": "Hail of Stars", "spellId": 469004, "icon": "ability_druid_starfall", "index": 0}]}, {"id": 88207, "name": "Starlord", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [88200, 88236, 88235], "prev": [88232, 88222, 88219], "entries": [{"id": 109840, "definitionId": 114845, "maxRanks": 2, "type": "passive", "name": "Starlord", "spellId": 202345, "icon": "spell_shaman_measuredinsight", "index": 100}]}, {"id": 88220, "name": "Waning Twilight", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88218], "prev": [88202, 88227], "entries": [{"id": 117100, "definitionId": 122112, "maxRanks": 1, "type": "passive", "name": "Waning Twilight", "spellId": 393956, "icon": "spell_shadow_twilight", "index": 0}]}, {"id": 88199, "name": "Sundered Firmament / Orbit Breaker", "type": "choice", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88218], "prev": [88227], "entries": [{"id": 109831, "definitionId": 114836, "maxRanks": 1, "type": "passive", "name": "Sundered Firmament", "spellId": 394094, "icon": "spell_druid_equinox", "index": 100}, {"id": 123860, "definitionId": 128698, "maxRanks": 1, "type": "passive", "name": "Orbit Breaker", "spellId": 383197, "icon": "artifactability_balancedruid_moonandstars", "index": 200}]}, {"id": 88214, "name": "Balance of All Things", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [88206, 88218], "prev": [88227, 88216], "entries": [{"id": 109848, "definitionId": 114853, "maxRanks": 2, "type": "passive", "name": "Balance of All Things", "spellId": 394048, "icon": "ability_druid_earthandsky", "index": 0}]}, {"id": 88217, "name": "Umbral Inspiration", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88206], "prev": [88216], "entries": [{"id": 109851, "definitionId": 114856, "maxRanks": 1, "type": "passive", "name": "Umbral Inspiration", "spellId": 450418, "icon": "ability_eyeoftheowl", "index": 100}]}, {"id": 88200, "name": "Power of Goldrinn", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88206, 88224], "prev": [88207, 88216], "entries": [{"id": 109832, "definitionId": 114837, "maxRanks": 1, "type": "passive", "name": "Power of Goldrinn", "spellId": 394046, "icon": "inv_mount_spectralwolf", "index": 100}]}, {"id": 88236, "name": "Starweaver / Rattle the Stars", "type": "choice", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88224], "prev": [88207], "entries": [{"id": 109873, "definitionId": 114878, "maxRanks": 1, "type": "passive", "name": "Starweaver", "spellId": 393940, "icon": "spell_arcane_invocation", "index": 100}, {"id": 109872, "definitionId": 114877, "maxRanks": 1, "type": "passive", "name": "Rattle the Stars", "spellId": 393954, "icon": "spell_arcane_arcane01", "index": 200}]}, {"id": 88235, "name": "Astral Communion", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [88224], "prev": [88232, 88207], "entries": [{"id": 109871, "definitionId": 114876, "maxRanks": 1, "type": "passive", "name": "Astral Communion", "spellId": 450598, "icon": "talentspec_druid_balance", "index": 0}]}, {"id": 88218, "name": "Harmony of the Heavens", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88234], "prev": [88214, 88199, 88220], "entries": [{"id": 109852, "definitionId": 114857, "maxRanks": 1, "type": "passive", "name": "Harmony of the Heavens", "spellId": 450558, "icon": "spell_arcane_massdispel", "index": 0}]}, {"id": 88206, "name": "Incarnation: Chosen of Elune / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88228], "prev": [88214, 88200, 88217], "entries": [{"id": 109839, "definitionId": 114844, "maxRanks": 1, "type": "active", "name": "Incarnation: Chosen of Elune", "spellId": 394013, "visibleSpellId": 102560, "icon": "spell_druid_incarnation", "index": 100}, {"id": 109838, "definitionId": 114843, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "inv_ability_druid_convokethespirits", "index": 200}]}, {"id": 88224, "name": "Fury of Elune / New Moon", "type": "choice", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [88213], "prev": [88200, 88236, 88235], "entries": [{"id": 109859, "definitionId": 114864, "maxRanks": 1, "type": "active", "name": "Fury of Elune", "spellId": 202770, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 109860, "definitionId": 114865, "maxRanks": 1, "type": "active", "name": "New Moon", "spellId": 274281, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 88234, "name": "Denizen of the Dream", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88218], "entries": [{"id": 109870, "definitionId": 114875, "maxRanks": 1, "type": "passive", "name": "Denizen of the Dream", "spellId": 394065, "icon": "inv_faeriedragon2_orange", "index": 0}]}, {"id": 88228, "name": "Elune's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88206], "entries": [{"id": 109864, "definitionId": 114869, "maxRanks": 1, "type": "passive", "name": "Elune's Guidance", "spellId": 393991, "icon": "ability_ardenweald_druid", "index": 100}]}, {"id": 88213, "name": "Radiant Moonlight", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [88224], "entries": [{"id": 109847, "definitionId": 114852, "maxRanks": 1, "type": "passive", "name": "Radiant Moonlight", "spellId": 394121, "icon": "artifactability_balancedruid_fullmoon", "index": 100}]}], "heroNodes": [{"id": 94608, "name": "Boundless Moonlight", "type": "single", "posX": 7800, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 24, "requiresNode": 92587, "next": [94598, 94588, 94594], "prev": [], "entries": [{"id": 117205, "definitionId": 122217, "maxRanks": 1, "type": "passive", "name": "Boundless Moonlight", "spellId": 424058, "icon": "inv_ability_eluneschosendruid_boundlessmoonlight", "index": 100}], "freeNode": true}, {"id": 94598, "name": "Moon Guardian", "type": "single", "posX": 7200, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "requiresNode": 82145, "next": [94596], "prev": [94608], "entries": [{"id": 117193, "definitionId": 122205, "maxRanks": 1, "type": "passive", "name": "Moon Guardian", "spellId": 429520, "icon": "spell_nature_moonglow", "index": 100}]}, {"id": 94588, "name": "Lunar Insight", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94607], "prev": [94608], "entries": [{"id": 117181, "definitionId": 122193, "maxRanks": 1, "type": "passive", "name": "Lunar Insight", "spellId": 429530, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94594, "name": "Glistening Fur", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94597], "prev": [94608], "entries": [{"id": 117769, "definitionId": 122781, "maxRanks": 1, "type": "passive", "name": "Glistening Fur", "spellId": 429533, "icon": "ability_druid_ironfur", "index": 200}]}, {"id": 94596, "name": "Lunar Amplification", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94590], "prev": [94598], "entries": [{"id": 117190, "definitionId": 122202, "maxRanks": 1, "type": "passive", "name": "Lunar Amplification", "spellId": 429529, "icon": "spell_druid_lunarinspiration", "index": 200}]}, {"id": 94607, "name": "Atmospheric Exposure", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [94585], "prev": [94588], "entries": [{"id": 117204, "definitionId": 122216, "maxRanks": 1, "type": "passive", "name": "Atmospheric Exposure", "spellId": 429532, "icon": "inv_cosmicvoid_nova", "index": 100}]}, {"id": 94597, "name": "Moondust / Elune's Grace", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94586], "prev": [94594], "entries": [{"id": 117192, "definitionId": 122204, "maxRanks": 1, "type": "passive", "name": "Moondust", "spellId": 429538, "icon": "inv_enchant_dust", "index": 100}, {"id": 123304, "definitionId": 128177, "maxRanks": 1, "type": "passive", "name": "Elune's Grace", "spellId": 443046, "icon": "spell_druid_wildcharge", "index": 200}]}, {"id": 94590, "name": "Stellar Command / Lunar Calling", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94596], "entries": [{"id": 117183, "definitionId": 122195, "maxRanks": 1, "type": "passive", "name": "Stellar Command", "spellId": 429668, "icon": "artifactability_balancedruid_moonandstars", "index": 100}, {"id": 117770, "definitionId": 122782, "maxRanks": 1, "type": "passive", "name": "Lunar Calling", "spellId": 429523, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 94585, "name": "The Light of Elune / Astral Insight", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94607], "entries": [{"id": 117176, "definitionId": 122188, "maxRanks": 1, "type": "passive", "name": "The Light of Elune", "spellId": 428655, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 117772, "definitionId": 122784, "maxRanks": 1, "type": "passive", "name": "Astral Insight", "spellId": 429536, "icon": "spell_druid_incarnation", "index": 200}]}, {"id": 94586, "name": "Arcane Affinity / Lunation", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94597], "entries": [{"id": 117178, "definitionId": 122190, "maxRanks": 1, "type": "passive", "name": "Arcane Affinity", "spellId": 429540, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 117177, "definitionId": 122189, "maxRanks": 1, "type": "passive", "name": "Lunation", "spellId": 429539, "icon": "spell_nature_moonglow", "index": 200}]}, {"id": 94587, "name": "The Eternal Moon", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [], "prev": [94590, 94585, 94586], "entries": [{"id": 117179, "definitionId": 122191, "maxRanks": 1, "type": "passive", "name": "The Eternal Moon", "spellId": 424113, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 94600, "name": "Dream Surge", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "entryNode": true, "subTreeId": 23, "requiresNode": 0, "next": [94599, 94602, 94593], "prev": [], "entries": [{"id": 117195, "definitionId": 122207, "maxRanks": 1, "type": "passive", "name": "Dream Surge", "spellId": 433831, "icon": "inv_ability_keeperofthegrovedruid_dreamsurge_fiendly", "index": 100}], "freeNode": true}, {"id": 94599, "name": "Treants of the Moon", "type": "single", "posX": 7200, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94605], "prev": [94600], "entries": [{"id": 117194, "definitionId": 122206, "maxRanks": 1, "type": "passive", "name": "Treants of the Moon", "spellId": 428544, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94602, "name": "Expansiveness", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94604], "prev": [94600], "entries": [{"id": 117197, "definitionId": 122209, "maxRanks": 1, "type": "passive", "name": "Expansiveness", "spellId": 429399, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 94593, "name": "Protective Growth", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94595], "prev": [94600], "entries": [{"id": 117186, "definitionId": 122198, "maxRanks": 1, "type": "passive", "name": "Protective Growth", "spellId": 433748, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 94605, "name": "Power of Nature / Durability of Nature", "type": "choice", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94591], "prev": [94599], "entries": [{"id": 117201, "definitionId": 122213, "maxRanks": 1, "type": "passive", "name": "Power of Nature", "spellId": 428859, "icon": "spell_nature_naturesblessing", "index": 100}, {"id": 117200, "definitionId": 122212, "maxRanks": 1, "type": "passive", "name": "Durability of Nature", "spellId": 429227, "icon": "ability_druid_manatree", "index": 200}]}, {"id": 94604, "name": "Cenarius' Might", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94592], "prev": [94602], "entries": [{"id": 117199, "definitionId": 122211, "maxRanks": 1, "type": "passive", "name": "Cenarius' Might", "spellId": 455797, "icon": "achievement_reputation_guardiansofcenarius", "index": 100}]}, {"id": 94595, "name": "Grove's Inspiration / Potent Enchantments", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94601], "prev": [94593], "entries": [{"id": 117189, "definitionId": 122201, "maxRanks": 1, "type": "passive", "name": "Grove's Inspiration", "spellId": 429402, "icon": "ability_druid_protectionofthegrove", "index": 100}, {"id": 117188, "definitionId": 122200, "maxRanks": 1, "type": "passive", "name": "Potent Enchantments", "spellId": 429420, "icon": "ability_druid_serenefocus", "index": 200}]}, {"id": 94591, "name": "Bounteous Bloom / Early Spring", "type": "choice", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94606], "prev": [94605], "entries": [{"id": 117184, "definitionId": 122196, "maxRanks": 1, "type": "passive", "name": "Bounteous Bloom", "spellId": 429215, "icon": "inv_herbalism_70_dreamleaf", "index": 100}, {"id": 117895, "definitionId": 122907, "maxRanks": 1, "type": "passive", "name": "Early Spring", "spellId": 428937, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94592, "name": "Power of the Dream / Control of the Dream", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94604], "entries": [{"id": 117185, "definitionId": 122197, "maxRanks": 1, "type": "passive", "name": "Power of the Dream", "spellId": 434220, "icon": "ability_xavius_dreamsimulacrum", "index": 100}, {"id": 117894, "definitionId": 122906, "maxRanks": 1, "type": "passive", "name": "Control of the Dream", "spellId": 434249, "icon": "inv_cloth_outdooremeralddream_d_01_buckle", "index": 200}]}, {"id": 94601, "name": "Blooming Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94595], "entries": [{"id": 117196, "definitionId": 122208, "maxRanks": 1, "type": "passive", "name": "Blooming Infusion", "spellId": 429433, "icon": "spell_nature_thorns", "index": 100}]}, {"id": 94606, "name": "Harmony of the Grove", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [], "prev": [94601, 94592, 94591], "entries": [{"id": 117203, "definitionId": 122215, "maxRanks": 1, "type": "passive", "name": "Harmony of the Grove", "spellId": 428731, "icon": "ability_druid_forceofnature", "index": 100}]}], "subTreeNodes": [{"id": 99808, "name": "Elune's Chosen / Keeper of the Grove", "type": "subtree", "posX": 7200, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123302, "type": "subtree", "name": "Elune's Chosen", "traitSubTreeId": 24, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-eluneschosen", "nodes": [94608, 94598, 94588, 94594, 94596, 94607, 94597, 94590, 94585, 94586, 94587]}, {"id": 123300, "type": "subtree", "name": "Keeper of the Grove", "traitSubTreeId": 23, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-keeperofthegrove", "nodes": [94600, 94599, 94602, 94593, 94605, 94604, 94595, 94591, 94592, 94601, 94606]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100223, 103846, 103847, 103873, 103874, 103875, 103876]}, {"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Feral", "specId": 103, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}], "freeNode": true}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82204, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 91044, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112967, "definitionId": 117972, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82204, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103282, "definitionId": 108287, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91044], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}], "freeNode": true}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91044], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82204, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82124, "name": "Tiger's Fury", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82123, 82085, 82120], "prev": [], "entries": [{"id": 103188, "definitionId": 108193, "maxRanks": 1, "type": "active", "name": "Tiger's Fury", "spellId": 5217, "icon": "ability_mount_jungletiger", "index": 100}]}, {"id": 82123, "name": "Omen of Clarity", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [82098, 82122, 82102], "prev": [82124], "entries": [{"id": 103187, "definitionId": 108192, "maxRanks": 1, "type": "passive", "name": "Omen of Clarity", "spellId": 16864, "icon": "spell_nature_crystalball", "index": 100}]}, {"id": 82085, "name": "Coiled to Spring", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82124], "entries": [{"id": 103144, "definitionId": 108149, "maxRanks": 1, "type": "passive", "name": "Coiled to Spring", "spellId": 449537, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 82120, "name": "Primal Wrath", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82122, 82086, 82119], "prev": [82124], "entries": [{"id": 103184, "definitionId": 108189, "maxRanks": 1, "type": "active", "name": "Primal Wrath", "spellId": 285381, "icon": "artifactability_feraldruid_ashamanesbite", "index": 100}]}, {"id": 82098, "name": "Merciless Claws / Thrashing Claws", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82102], "prev": [82123], "entries": [{"id": 103159, "definitionId": 108164, "maxRanks": 1, "type": "passive", "name": "Merciless Claws", "spellId": 231063, "icon": "inv_misc_monsterclaw_03", "index": 100}, {"id": 114823, "definitionId": 119830, "maxRanks": 1, "type": "passive", "name": "Thrashing Claws", "spellId": 405300, "icon": "spell_druid_thrash", "index": 200}]}, {"id": 82122, "name": "Predator", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82102, 82121, 82119], "prev": [82123, 82120], "entries": [{"id": 103186, "definitionId": 108191, "maxRanks": 1, "type": "passive", "name": "Predator", "spellId": 202021, "icon": "ability_hunter_catlikereflexes", "index": 100}]}, {"id": 82086, "name": "Double-Clawed Rake", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82119], "prev": [82120], "entries": [{"id": 103145, "definitionId": 108150, "maxRanks": 1, "type": "passive", "name": "Double-Clawed Rake", "spellId": 391700, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82102, "name": "Sabertooth", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82104, 82099, 82116], "prev": [82098, 82122, 82123], "entries": [{"id": 103163, "definitionId": 108168, "maxRanks": 1, "type": "passive", "name": "Sabertooth", "spellId": 202031, "icon": "inv_misc_monsterfang_01", "index": 100}]}, {"id": 82121, "name": "Tireless Energy", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 2, "next": [], "prev": [82122], "entries": [{"id": 103185, "definitionId": 108190, "maxRanks": 2, "type": "passive", "name": "Tireless Energy", "spellId": 383352, "icon": "spell_chargepositive", "index": 100}]}, {"id": 82119, "name": "Pouncing Strikes", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82116, 82103, 82118], "prev": [82086, 82122, 82120], "entries": [{"id": 103183, "definitionId": 108188, "maxRanks": 1, "type": "passive", "name": "Pouncing Strikes", "spellId": 390772, "icon": "ability_druid_prowl", "index": 100}]}, {"id": 82104, "name": "Sudden Ambush", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [92641, 82106], "prev": [82102], "entries": [{"id": 103165, "definitionId": 108170, "maxRanks": 1, "type": "passive", "name": "Sudden Ambush", "spellId": 384667, "icon": "ability_hunter_catlikereflexes", "index": 100}]}, {"id": 82099, "name": "Savage Fury", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82106], "prev": [82102], "entries": [{"id": 103160, "definitionId": 108165, "maxRanks": 1, "type": "passive", "name": "Savage Fury", "spellId": 449645, "icon": "ability_druid_kingofthejungle", "index": 100}]}, {"id": 82116, "name": "Survival Instincts", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82101], "prev": [82119, 82102], "entries": [{"id": 103180, "definitionId": 108185, "maxRanks": 1, "type": "active", "name": "Survival Instincts", "spellId": 61336, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82103, "name": "Rampant Ferocity", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82117], "prev": [82119], "entries": [{"id": 103164, "definitionId": 108169, "maxRanks": 1, "type": "passive", "name": "Rampant Ferocity", "spellId": 391709, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 82118, "name": "Infected Wounds", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82117, 82088], "prev": [82119], "entries": [{"id": 103182, "definitionId": 108187, "maxRanks": 1, "type": "passive", "name": "Infected Wounds", "spellId": 48484, "icon": "ability_druid_infectedwound", "index": 100}]}, {"id": 92641, "name": "Lunar Inspiration", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82104], "entries": [{"id": 114771, "definitionId": 119778, "maxRanks": 1, "type": "passive", "name": "Lunar Inspiration", "spellId": 155580, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 82106, "name": "Predatory Swiftness", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82107, 82110], "prev": [82104, 82099], "entries": [{"id": 103167, "definitionId": 108172, "maxRanks": 1, "type": "passive", "name": "Predatory Swiftness", "spellId": 16974, "icon": "ability_hunter_pet_cat", "index": 100}]}, {"id": 82101, "name": "Berserk", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82105, 82100, 82090], "prev": [82116], "entries": [{"id": 103162, "definitionId": 108167, "maxRanks": 1, "type": "active", "name": "Berserk", "spellId": 343223, "visibleSpellId": 106951, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82117, "name": "Dreadful Bleeding", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82091, 82094], "prev": [82118, 82103], "entries": [{"id": 103181, "definitionId": 108186, "maxRanks": 1, "type": "passive", "name": "Dreadful Bleeding", "spellId": 391045, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82088, "name": "Taste for Blood", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82118], "entries": [{"id": 103147, "definitionId": 108152, "maxRanks": 1, "type": "passive", "name": "Taste for Blood", "spellId": 384665, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 82107, "name": "Raging Fury / Tiger's Tenacity", "type": "choice", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82110, 82109], "prev": [82106], "entries": [{"id": 103169, "definitionId": 108174, "maxRanks": 1, "type": "passive", "name": "Raging Fury", "spellId": 391078, "icon": "ability_druid_predatoryinstincts", "index": 100}, {"id": 103168, "definitionId": 108173, "maxRanks": 1, "type": "passive", "name": "Tiger's Tenacity", "spellId": 391872, "icon": "ability_druid_healinginstincts", "index": 200}]}, {"id": 82105, "name": "Berserk: Heart of the Lion", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103166, "definitionId": 108171, "maxRanks": 1, "type": "passive", "name": "Berserk: Heart of the Lion", "spellId": 391174, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82100, "name": "Moment of Clarity", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103161, "definitionId": 108166, "maxRanks": 1, "type": "passive", "name": "Moment of Clarity", "spellId": 236068, "icon": "spell_druid_momentofclarity", "index": 100}]}, {"id": 82090, "name": "Berserk: Frenzy", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82115], "prev": [82101], "entries": [{"id": 103149, "definitionId": 108154, "maxRanks": 1, "type": "passive", "name": "Berserk: Frenzy", "spellId": 384668, "icon": "ability_druid_berserk", "index": 100}]}, {"id": 82091, "name": "Wild Slashes / Brutal Slash", "type": "choice", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82094, 82093], "prev": [82117], "entries": [{"id": 103150, "definitionId": 108155, "maxRanks": 1, "type": "passive", "name": "Wild Slashes", "spellId": 390864, "icon": "ability_xavius_tormentingswipe", "index": 100}, {"id": 103151, "definitionId": 108156, "maxRanks": 1, "type": "active", "name": "Brutal Slash", "spellId": 202028, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 82110, "name": "Carnivorous Instinct", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82112, 82109, 82108], "prev": [82107, 82106], "entries": [{"id": 103173, "definitionId": 108178, "maxRanks": 2, "type": "passive", "name": "Carnivorous Instinct", "spellId": 390902, "icon": "ability_mount_jungletiger", "index": 100}]}, {"id": 82115, "name": "Frantic Momentum", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82112, 82114, 82096], "prev": [82090, 82100, 82105], "entries": [{"id": 103179, "definitionId": 108184, "maxRanks": 2, "type": "passive", "name": "Frantic Momentum", "spellId": 391875, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 82094, "name": "Saber Jaws", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82096, 82093, 82092], "prev": [82091, 82117], "entries": [{"id": 103155, "definitionId": 108160, "maxRanks": 2, "type": "passive", "name": "Saber Jaws", "spellId": 421432, "icon": "inv_misc_monsterfang_02", "index": 100}]}, {"id": 82109, "name": "Lion's Strength / Bloodtalons", "type": "choice", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82108], "prev": [82110, 82107], "entries": [{"id": 103172, "definitionId": 108177, "maxRanks": 1, "type": "passive", "name": "Lion's Strength", "spellId": 391972, "icon": "ability_hunter_masterscall", "index": 100}, {"id": 103171, "definitionId": 108176, "maxRanks": 1, "type": "passive", "name": "Bloodtalons", "spellId": 319439, "icon": "spell_druid_bloodythrash", "index": 200}]}, {"id": 82112, "name": "Adaptive Swarm", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82111], "prev": [82110, 82115], "entries": [{"id": 103175, "definitionId": 108180, "maxRanks": 1, "type": "active", "name": "Adaptive Swarm", "spellId": 391888, "icon": "inv_ability_druid_adaptiveswarm", "index": 100}]}, {"id": 82114, "name": "Incarnation: Avatar of Ashamane / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82113], "prev": [82115], "entries": [{"id": 103178, "definitionId": 108183, "maxRanks": 1, "type": "active", "name": "Incarnation: Avatar of Ashamane", "spellId": 102543, "icon": "spell_druid_incarnation", "index": 100}, {"id": 103177, "definitionId": 108182, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "inv_ability_druid_convokethespirits", "index": 200}]}, {"id": 82096, "name": "Soul of the Forest", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82095], "prev": [82094, 82115], "entries": [{"id": 103157, "definitionId": 108162, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158476, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 82093, "name": "Veinripper / Rip and Tear", "type": "choice", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82092], "prev": [82091, 82094], "entries": [{"id": 103154, "definitionId": 108159, "maxRanks": 1, "type": "passive", "name": "Veinripper", "spellId": 391978, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}, {"id": 103153, "definitionId": 108158, "maxRanks": 1, "type": "passive", "name": "Rip and Tear", "spellId": 391347, "icon": "ability_ghoulfrenzy", "index": 200}]}, {"id": 82108, "name": "Feral Frenzy", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82109, 82110], "entries": [{"id": 103170, "definitionId": 108175, "maxRanks": 1, "type": "active", "name": "Feral Frenzy", "spellId": 274837, "icon": "ability_druid_rake", "index": 100}]}, {"id": 82111, "name": "Unbridled Swarm", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82112], "entries": [{"id": 103174, "definitionId": 108179, "maxRanks": 1, "type": "passive", "name": "Unbridled Swarm", "spellId": 391951, "icon": "inv_ability_druid_adaptiveswarm", "index": 100}]}, {"id": 82113, "name": "Ashamane's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82114], "entries": [{"id": 103176, "definitionId": 108181, "maxRanks": 1, "type": "passive", "name": "Ashamane's Guidance", "spellId": 391548, "icon": "spell_druid_incarnation", "index": 100}]}, {"id": 82095, "name": "Circle of Life and Death", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82096], "entries": [{"id": 103156, "definitionId": 108161, "maxRanks": 1, "type": "passive", "name": "Circle of Life and Death", "spellId": 400320, "icon": "ability_druid_cyclone", "index": 100}]}, {"id": 82092, "name": "Apex Predator's Craving", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82093, 82094], "entries": [{"id": 103152, "definitionId": 108157, "maxRanks": 1, "type": "passive", "name": "Apex Predator's Craving", "spellId": 391881, "icon": "ability_druid_primaltenacity", "index": 100}]}], "heroNodes": [{"id": 94626, "name": "Thriving Growth", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 22, "next": [94629, 94621, 94623], "prev": [], "entries": [{"id": 117226, "definitionId": 122238, "maxRanks": 1, "type": "passive", "name": "Thriving Growth", "spellId": 439528, "icon": "inv_ability_wildstalkerdruid_thrivinggrowth", "index": 100}], "freeNode": true}, {"id": 94629, "name": "Hunt Beneath the Open Skies", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94624], "prev": [94626], "entries": [{"id": 117231, "definitionId": 122243, "maxRanks": 1, "type": "passive", "name": "Hunt Beneath the Open Skies", "spellId": 439868, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 94623, "name": "Strategic Infusion", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94622], "prev": [94626], "entries": [{"id": 117223, "definitionId": 122235, "maxRanks": 1, "type": "passive", "name": "Strategic Infusion", "spellId": 439890, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 94621, "name": "Wildstalker's Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94625], "prev": [94626], "entries": [{"id": 117221, "definitionId": 122233, "maxRanks": 1, "type": "passive", "name": "Wildstalker's Power", "spellId": 439926, "icon": "ability_druid_skinteeth", "index": 100}]}, {"id": 94624, "name": "Lethal Preservation", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94631], "prev": [94629], "entries": [{"id": 117224, "definitionId": 122236, "maxRanks": 1, "type": "passive", "name": "Lethal Preservation", "spellId": 455461, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 94622, "name": "Entangling Vortex / Flower Walk", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94630], "prev": [94623], "entries": [{"id": 117222, "definitionId": 122234, "maxRanks": 1, "type": "passive", "name": "Entangling Vortex", "spellId": 439895, "icon": "spell_druid_ursolsvortex", "index": 100}, {"id": 119855, "definitionId": 124755, "maxRanks": 1, "type": "passive", "name": "Flower Walk", "spellId": 439901, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94625, "name": "Bond with Nature / Harmonious Constitution", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94628], "prev": [94621], "entries": [{"id": 117225, "definitionId": 122237, "maxRanks": 1, "type": "passive", "name": "Bond with Nature", "spellId": 439929, "icon": "inv_misc_marrigolds_01", "index": 100}, {"id": 119854, "definitionId": 124754, "maxRanks": 1, "type": "passive", "name": "Harmonious Constitution", "spellId": 440116, "icon": "talentspec_druid_restoration", "index": 200}]}, {"id": 94631, "name": "Resilient Flourishing / Root Network", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94624], "entries": [{"id": 117234, "definitionId": 122246, "maxRanks": 1, "type": "passive", "name": "Resilient Flourishing", "spellId": 439880, "icon": "inv_misc_herb_16", "index": 100}, {"id": 117233, "definitionId": 122245, "maxRanks": 1, "type": "passive", "name": "Root Network", "spellId": 439882, "icon": "ability_creature_poison_04", "index": 200}]}, {"id": 94630, "name": "Bursting Growth", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94622], "entries": [{"id": 117232, "definitionId": 122244, "maxRanks": 1, "type": "passive", "name": "Bursting Growth", "spellId": 440120, "icon": "inv_collections_armor_flowerbracelet_b_01", "index": 100}]}, {"id": 94628, "name": "Twin Sprouts / Implant", "type": "choice", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94625], "entries": [{"id": 117230, "definitionId": 122242, "maxRanks": 1, "type": "passive", "name": "Twin Sprouts", "spellId": 440117, "icon": "inv_misc_herb_evergreenmoss", "index": 100}, {"id": 117229, "definitionId": 122241, "maxRanks": 1, "type": "passive", "name": "Implant", "spellId": 440118, "icon": "ability_creature_poison_03", "index": 200}]}, {"id": 94627, "name": "Vigorous Creepers", "type": "single", "posX": 15290, "posY": 3900, "maxRanks": 1, "subTreeId": 22, "next": [], "prev": [94630, 94628, 94631], "entries": [{"id": 117227, "definitionId": 122239, "maxRanks": 1, "type": "passive", "name": "Vigorous Creepers", "spellId": 440119, "icon": "spell_druid_massentanglement", "index": 200}]}, {"id": 94609, "name": "Ravage", "type": "single", "posX": 1200, "posY": 5110, "maxRanks": 1, "entryNode": true, "subTreeId": 21, "next": [94620, 94611, 94618], "prev": [], "entries": [{"id": 117206, "definitionId": 122218, "maxRanks": 1, "type": "passive", "name": "Ravage", "spellId": 441583, "icon": "inv_ability_druidoftheclawdruid_ravage", "index": 100}], "freeNode": true}, {"id": 94618, "name": "Fount of Strength", "type": "single", "posX": 600, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94610], "prev": [94609], "entries": [{"id": 117218, "definitionId": 122230, "maxRanks": 1, "type": "passive", "name": "Fount of Strength", "spellId": 441675, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 94620, "name": "Dreadful Wound", "type": "single", "posX": 1200, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94619], "prev": [94609], "entries": [{"id": 117220, "definitionId": 122232, "maxRanks": 1, "type": "passive", "name": "Dreadful Wound", "spellId": 441809, "icon": "artifactability_feraldruid_openwounds", "index": 100}]}, {"id": 94611, "name": "Bestial Strength", "type": "single", "posX": 1800, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94615], "prev": [94609], "entries": [{"id": 117208, "definitionId": 122220, "maxRanks": 1, "type": "passive", "name": "Bestial Strength", "spellId": 441841, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 94610, "name": "Wildshape Mastery", "type": "single", "posX": 600, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94612], "prev": [94618], "entries": [{"id": 117207, "definitionId": 122219, "maxRanks": 1, "type": "passive", "name": "Wildshape Mastery", "spellId": 441678, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 94619, "name": "Ruthless Aggression / Killing Strikes", "type": "choice", "posX": 1200, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94616], "prev": [94620], "entries": [{"id": 117219, "definitionId": 122231, "maxRanks": 1, "type": "passive", "name": "Ruthless Aggression", "spellId": 441814, "icon": "ability_druid_rake", "index": 100}, {"id": 123048, "definitionId": 127929, "maxRanks": 1, "type": "passive", "name": "Killing Strikes", "spellId": 441824, "icon": "ability_druid_kingofthejungle", "index": 200}]}, {"id": 94615, "name": "Pack's Endurance", "type": "single", "posX": 1800, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "requiresNode": 82234, "next": [94614], "prev": [94611], "entries": [{"id": 117215, "definitionId": 122227, "maxRanks": 1, "type": "passive", "name": "Pack's Endurance", "spellId": 441844, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 94612, "name": "Empowered Shapeshifting / Wildpower Surge", "type": "choice", "posX": 600, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94610], "entries": [{"id": 117210, "definitionId": 122222, "maxRanks": 1, "type": "passive", "name": "Empowered Shapeshifting", "spellId": 441689, "icon": "spell_druid_primaltenacity", "index": 100}, {"id": 117209, "definitionId": 122221, "maxRanks": 1, "type": "passive", "name": "Wildpower Surge", "spellId": 441691, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 94616, "name": "Aggravate Wounds", "type": "single", "posX": 1200, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94619], "entries": [{"id": 117216, "definitionId": 122228, "maxRanks": 1, "type": "passive", "name": "Aggravate Wounds", "spellId": 441829, "icon": "artifactability_guardiandruid_goryfur", "index": 100}]}, {"id": 94614, "name": "Strike for the Heart / Tear Down the Mighty", "type": "choice", "posX": 1800, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94615], "entries": [{"id": 117214, "definitionId": 122226, "maxRanks": 1, "type": "passive", "name": "Strike for the Heart", "spellId": 441845, "icon": "ability_druid_primalagression", "index": 100}, {"id": 117213, "definitionId": 122225, "maxRanks": 1, "type": "passive", "name": "Tear Down the Mighty", "spellId": 441846, "icon": "spell_druid_malfurionstenacity", "index": 200}]}, {"id": 94613, "name": "Claw Rampage", "type": "single", "posX": 1200, "posY": 7510, "maxRanks": 1, "subTreeId": 21, "next": [], "prev": [94614, 94616, 94612], "entries": [{"id": 117211, "definitionId": 122223, "maxRanks": 1, "type": "passive", "name": "Claw Rampage", "spellId": 441835, "icon": "ability_xavius_tormentingswipe", "index": 200}]}], "subTreeNodes": [{"id": 99805, "name": "Druid of the Claw / Wildstalker", "type": "subtree", "posX": 8100, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123297, "type": "subtree", "name": "Druid of the Claw", "traitSubTreeId": 21, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-druidoftheclaw", "nodes": [94609, 94618, 94620, 94611, 94610, 94619, 94615, 94612, 94616, 94614, 94613]}, {"id": 123296, "type": "subtree", "name": "Wildstalker", "traitSubTreeId": 22, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-wildstalker", "nodes": [94626, 94629, 94623, 94621, 94624, 94622, 94625, 94631, 94630, 94628, 94627]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100223, 103846, 103847, 103873, 103874, 103875, 103876]}, {"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Guardian", "specId": 104, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}], "freeNode": true}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82215, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 91041, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112964, "definitionId": 117969, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}], "freeNode": true}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82215, "name": "Remove Corruption", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103293, "definitionId": 108298, "maxRanks": 1, "type": "active", "name": "Remove Corruption", "spellId": 2782, "icon": "spell_holy_removecurse", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91041], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91041], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82215, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82127, "name": "Maul", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82129, 82126], "prev": [], "entries": [{"id": 103191, "definitionId": 108196, "maxRanks": 1, "type": "active", "name": "Maul", "spellId": 6807, "icon": "ability_druid_maul", "index": 0}]}, {"id": 82126, "name": "Gore", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [92227, 82161], "prev": [82127], "entries": [{"id": 103190, "definitionId": 108195, "maxRanks": 1, "type": "passive", "name": "Gore", "spellId": 210706, "icon": "spell_druid_bearhug", "index": 0}]}, {"id": 82129, "name": "Survival Instincts", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82131, 82128], "prev": [82127], "entries": [{"id": 103193, "definitionId": 108198, "maxRanks": 1, "type": "active", "name": "Survival Instincts", "spellId": 61336, "icon": "ability_druid_tigersroar", "index": 0}]}, {"id": 92227, "name": "Dream of Cenarius", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82160], "prev": [82126], "entries": [{"id": 103218, "definitionId": 108223, "maxRanks": 1, "type": "passive", "name": "Dream of Cenarius", "spellId": 372119, "icon": "ability_druid_dreamstate", "index": 100}]}, {"id": 82161, "name": "Brambles / Bristling Fur", "type": "choice", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82160, 82162, 82149], "prev": [82126], "entries": [{"id": 103231, "definitionId": 108236, "maxRanks": 1, "type": "passive", "name": "Brambles", "spellId": 203953, "icon": "inv_misc_thornnecklace", "index": 0}, {"id": 103230, "definitionId": 108235, "maxRanks": 1, "type": "active", "name": "Bristling Fur", "spellId": 155835, "icon": "spell_druid_bristlingfur", "index": 1}]}, {"id": 82131, "name": "Mangle", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82149, 82130, 82132], "prev": [82129], "entries": [{"id": 103195, "definitionId": 108200, "maxRanks": 1, "type": "passive", "name": "Mangle", "spellId": 231064, "icon": "ability_druid_mangle2", "index": 0}]}, {"id": 82128, "name": "Improved Survival Instincts", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82132], "prev": [82129], "entries": [{"id": 103192, "definitionId": 108197, "maxRanks": 1, "type": "passive", "name": "Improved Survival Instincts", "spellId": 328767, "icon": "ability_druid_tigersroar", "index": 0}]}, {"id": 82160, "name": "Innate Resolve", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82157, 82159], "prev": [82161, 92227], "entries": [{"id": 103229, "definitionId": 108234, "maxRanks": 1, "type": "passive", "name": "Innate Resolve", "spellId": 377811, "icon": "spell_nature_healingway", "index": 0}]}, {"id": 82162, "name": "Infected Wounds", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82159], "prev": [82161], "entries": [{"id": 103232, "definitionId": 108237, "maxRanks": 1, "type": "passive", "name": "Infected Wounds", "spellId": 345208, "icon": "ability_druid_infectedwound", "index": 0}]}, {"id": 82149, "name": "Berserk: Ravage", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82159, 82148], "prev": [82161, 82131], "entries": [{"id": 103216, "definitionId": 108221, "maxRanks": 1, "type": "active", "name": "Berserk: Ravage", "spellId": 343240, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82130, "name": "Ursoc's Endurance", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82148], "prev": [82131], "entries": [{"id": 103194, "definitionId": 108199, "maxRanks": 1, "type": "passive", "name": "Ursoc's Endurance", "spellId": 393611, "icon": "ability_hunter_pet_bear", "index": 0}]}, {"id": 82132, "name": "Gory Fur", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82148, 82143], "prev": [82131, 82128], "entries": [{"id": 103196, "definitionId": 108201, "maxRanks": 1, "type": "passive", "name": "Gory Fur", "spellId": 200854, "icon": "artifactability_guardiandruid_goryfur", "index": 0}]}, {"id": 82157, "name": "Reinvigoration", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [82156, 82158], "prev": [82160], "entries": [{"id": 103226, "definitionId": 108231, "maxRanks": 2, "type": "passive", "name": "Reinvigoration", "spellId": 372945, "icon": "ability_druid_overgrowth", "index": 0}]}, {"id": 82159, "name": "Vulnerable Flesh", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92226, 82158, 82133], "prev": [82149, 82160, 82162], "entries": [{"id": 103228, "definitionId": 108233, "maxRanks": 2, "type": "passive", "name": "Vulnerable Flesh", "spellId": 372618, "icon": "ability_druid_primalagression", "index": 0}]}, {"id": 82148, "name": "Layered Mane", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92226, 92585, 82139], "prev": [82149, 82132, 82130], "entries": [{"id": 103215, "definitionId": 108220, "maxRanks": 2, "type": "passive", "name": "Layered Mane", "spellId": 384721, "icon": "ability_druid_ironfur", "index": 0}]}, {"id": 82143, "name": "Survival of the Fittest", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [92585, 82140], "prev": [82132], "entries": [{"id": 103210, "definitionId": 108215, "maxRanks": 2, "type": "passive", "name": "Survival of the Fittest", "spellId": 203965, "icon": "ability_druid_enrage", "index": 0}]}, {"id": 82156, "name": "Earthwarden", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155, 82152], "prev": [82157], "entries": [{"id": 103225, "definitionId": 108230, "maxRanks": 1, "type": "passive", "name": "Earthwarden", "spellId": 203974, "icon": "spell_shaman_blessingofeternals", "index": 0}]}, {"id": 82158, "name": "Vicious Cycle", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155], "prev": [82157, 82159], "entries": [{"id": 103227, "definitionId": 108232, "maxRanks": 1, "type": "passive", "name": "Vicious Cycle", "spellId": 371999, "icon": "ability_druid_rake", "index": 0}]}, {"id": 82133, "name": "Tooth and Claw", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82155, 82138, 82137], "prev": [82159], "entries": [{"id": 103197, "definitionId": 108202, "maxRanks": 1, "type": "passive", "name": "Tooth and Claw", "spellId": 135288, "icon": "inv_misc_monsterfang_01", "index": 0}]}, {"id": 92226, "name": "Soul of the Forest", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82138], "prev": [82148, 82159], "entries": [{"id": 103208, "definitionId": 108213, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158477, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 82139, "name": "Reinforced Fur", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82138, 82144, 82134], "prev": [82148], "entries": [{"id": 103204, "definitionId": 108209, "maxRanks": 1, "type": "passive", "name": "Reinforced Fur", "spellId": 393618, "icon": "spell_nature_spiritarmor", "index": 0}]}, {"id": 92585, "name": "Thorns of Iron", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82144], "prev": [82143, 82148], "entries": [{"id": 114698, "definitionId": 119704, "maxRanks": 1, "type": "passive", "name": "Thorns of Iron", "spellId": 400222, "icon": "spell_nature_thorns_iron", "index": 0}]}, {"id": 82140, "name": "After the Wildfire / Guardian of Elune", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82144, 82145], "prev": [82143], "entries": [{"id": 103206, "definitionId": 108211, "maxRanks": 1, "type": "passive", "name": "After the Wildfire", "spellId": 371905, "icon": "spell_nature_naturetouchgrow", "index": 0}, {"id": 103205, "definitionId": 108210, "maxRanks": 1, "type": "passive", "name": "Guardian of Elune", "spellId": 155578, "icon": "spell_druid_guardianofelune", "index": 1}]}, {"id": 82155, "name": "Berserk: Unchecked Aggression", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82152, 82137, 82154], "prev": [82133, 82156, 82158], "entries": [{"id": 103224, "definitionId": 108229, "maxRanks": 1, "type": "active", "name": "Berserk: Unchecked Aggression", "spellId": 377623, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82138, "name": "Fury of Nature", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82137, 82134], "prev": [82133, 82139, 92226], "entries": [{"id": 103203, "definitionId": 108208, "maxRanks": 2, "type": "passive", "name": "Fury of Nature", "spellId": 370695, "icon": "ability_druid_cresentburn", "index": 0}]}, {"id": 82144, "name": "Berserk: Persistence", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82134, 82145, 82146], "prev": [82139, 82140, 92585], "entries": [{"id": 103211, "definitionId": 108216, "maxRanks": 1, "type": "active", "name": "Berserk: Persistence", "spellId": 377779, "visibleSpellId": 50334, "icon": "ability_druid_berserk", "index": 0}]}, {"id": 82152, "name": "Rend and Tear / Untamed Savagery", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82151, 82154], "prev": [82155, 82156], "entries": [{"id": 103221, "definitionId": 108226, "maxRanks": 1, "type": "passive", "name": "Rend and Tear", "spellId": 204053, "icon": "ability_druid_swipe", "index": 0}, {"id": 103220, "definitionId": 108225, "maxRanks": 1, "type": "passive", "name": "Untamed Savagery", "spellId": 372943, "icon": "spell_druid_bloodythrash", "index": 1}]}, {"id": 82137, "name": "Circle of Life and Death", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82142, 82136, 82154], "prev": [82155, 82133, 82138], "entries": [{"id": 103202, "definitionId": 108207, "maxRanks": 1, "type": "passive", "name": "Circle of Life and Death", "spellId": 391969, "icon": "ability_druid_cyclone", "index": 0}]}, {"id": 82134, "name": "Elune's Favored", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82136, 92586, 82146], "prev": [82139, 82144, 82138], "entries": [{"id": 103198, "definitionId": 108203, "maxRanks": 1, "type": "passive", "name": "Elune's Favored", "spellId": 370586, "icon": "spell_holy_elunesgrace", "index": 0}]}, {"id": 82145, "name": "Galactic Guardian", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82147, 82146], "prev": [82140, 82144], "entries": [{"id": 103212, "definitionId": 108217, "maxRanks": 1, "type": "passive", "name": "Galactic Guardian", "spellId": 203964, "icon": "spell_frost_iceclaw", "index": 0}]}, {"id": 82151, "name": "Ursoc's Fury", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82153], "prev": [82152], "entries": [{"id": 103219, "definitionId": 108224, "maxRanks": 1, "type": "passive", "name": "Ursoc's Fury", "spellId": 377210, "icon": "achievement_emeraldnightmare_ursoc", "index": 0}]}, {"id": 82154, "name": "Flashing Claws", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82153, 92588], "prev": [82155, 82137, 82152], "entries": [{"id": 103223, "definitionId": 108228, "maxRanks": 2, "type": "passive", "name": "Flashing Claws", "spellId": 393427, "icon": "spell_druid_thrash", "index": 0}]}, {"id": 82142, "name": "Blood Frenzy", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [92588], "prev": [82137], "entries": [{"id": 103209, "definitionId": 108214, "maxRanks": 1, "type": "passive", "name": "Blood Frenzy", "spellId": 203962, "icon": "ability_druid_primaltenacity", "index": 0}]}, {"id": 82136, "name": "Incarnation: Guardian of Ursoc / Convoke the Spirits", "type": "choice", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82135, 92588, 82141], "prev": [82137, 82134], "entries": [{"id": 103201, "definitionId": 108206, "maxRanks": 1, "type": "active", "name": "Incarnation: Guardian of Ursoc", "spellId": 394786, "visibleSpellId": 102558, "icon": "spell_druid_incarnation", "index": 0}, {"id": 103200, "definitionId": 108205, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "inv_ability_druid_convokethespirits", "index": 1}]}, {"id": 92586, "name": "Moonless Night", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82141], "prev": [82134], "entries": [{"id": 114699, "definitionId": 119705, "maxRanks": 1, "type": "passive", "name": "Moonless Night", "spellId": 400278, "icon": "artifactability_balancedruid_newmoon", "index": 0}]}, {"id": 82146, "name": "Scintillating Moonlight", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [92587, 82141], "prev": [82144, 82145, 82134], "entries": [{"id": 103213, "definitionId": 108218, "maxRanks": 2, "type": "passive", "name": "Scintillating Moonlight", "spellId": 238049, "icon": "spell_fire_twilightfireward", "index": 0}]}, {"id": 82147, "name": "Twin Moonfire", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [92587], "prev": [82145], "entries": [{"id": 103214, "definitionId": 108219, "maxRanks": 1, "type": "passive", "name": "Twin Moonfire", "spellId": 372567, "icon": "spell_nature_starfall", "index": 0}]}, {"id": 82153, "name": "Pulverize", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82151, 82154], "entries": [{"id": 103222, "definitionId": 108227, "maxRanks": 1, "type": "active", "name": "Pulverize", "spellId": 80313, "icon": "spell_druid_malfurionstenacity", "index": 0}]}, {"id": 92588, "name": "Raze", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82142, 82154, 82136], "entries": [{"id": 114701, "definitionId": 119707, "maxRanks": 1, "type": "active", "name": "Raze", "spellId": 400254, "icon": "ability_druid_lacerate", "index": 0}]}, {"id": 82135, "name": "Ursoc's Guidance", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82136], "entries": [{"id": 103199, "definitionId": 108204, "maxRanks": 1, "type": "passive", "name": "Ursoc's Guidance", "spellId": 393414, "icon": "inv_ability_druid_convokethespirits", "index": 0}]}, {"id": 82141, "name": "Rage of the Sleeper", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82146, 92586, 82136], "entries": [{"id": 103207, "definitionId": 108212, "maxRanks": 1, "type": "active", "name": "Rage of the Sleeper", "spellId": 200851, "icon": "inv_hand_1h_artifactursoc_d_01", "index": 0}]}, {"id": 92587, "name": "Lunar Beam", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82146, 82147], "entries": [{"id": 114700, "definitionId": 119706, "maxRanks": 1, "type": "active", "name": "Lunar Beam", "spellId": 204066, "icon": "spell_nature_moonglow", "index": 0}]}], "heroNodes": [{"id": 94608, "name": "Boundless Moonlight", "type": "single", "posX": 7800, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 24, "requiresNode": 92587, "next": [94598, 94588, 94594], "prev": [], "entries": [{"id": 117205, "definitionId": 122217, "maxRanks": 1, "type": "passive", "name": "Boundless Moonlight", "spellId": 424058, "icon": "inv_ability_eluneschosendruid_boundlessmoonlight", "index": 100}], "freeNode": true}, {"id": 94598, "name": "Moon Guardian", "type": "single", "posX": 7200, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "requiresNode": 82145, "next": [94596], "prev": [94608], "entries": [{"id": 117193, "definitionId": 122205, "maxRanks": 1, "type": "passive", "name": "Moon Guardian", "spellId": 429520, "icon": "spell_nature_moonglow", "index": 100}]}, {"id": 94588, "name": "Lunar Insight", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94607], "prev": [94608], "entries": [{"id": 117181, "definitionId": 122193, "maxRanks": 1, "type": "passive", "name": "Lunar Insight", "spellId": 429530, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94594, "name": "Glistening Fur", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 24, "next": [94597], "prev": [94608], "entries": [{"id": 117769, "definitionId": 122781, "maxRanks": 1, "type": "passive", "name": "Glistening Fur", "spellId": 429533, "icon": "ability_druid_ironfur", "index": 200}]}, {"id": 94596, "name": "Lunar Amplification", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94590], "prev": [94598], "entries": [{"id": 117190, "definitionId": 122202, "maxRanks": 1, "type": "passive", "name": "Lunar Amplification", "spellId": 429529, "icon": "spell_druid_lunarinspiration", "index": 200}]}, {"id": 94607, "name": "Atmospheric Exposure", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [94585], "prev": [94588], "entries": [{"id": 117204, "definitionId": 122216, "maxRanks": 1, "type": "passive", "name": "Atmospheric Exposure", "spellId": 429532, "icon": "inv_cosmicvoid_nova", "index": 100}]}, {"id": 94597, "name": "Moondust / Elune's Grace", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 24, "next": [94586], "prev": [94594], "entries": [{"id": 117192, "definitionId": 122204, "maxRanks": 1, "type": "passive", "name": "Moondust", "spellId": 429538, "icon": "inv_enchant_dust", "index": 100}, {"id": 123304, "definitionId": 128177, "maxRanks": 1, "type": "passive", "name": "Elune's Grace", "spellId": 443046, "icon": "spell_druid_wildcharge", "index": 200}]}, {"id": 94590, "name": "Stellar Command / Lunar Calling", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94596], "entries": [{"id": 117183, "definitionId": 122195, "maxRanks": 1, "type": "passive", "name": "Stellar Command", "spellId": 429668, "icon": "artifactability_balancedruid_moonandstars", "index": 100}, {"id": 117770, "definitionId": 122782, "maxRanks": 1, "type": "passive", "name": "Lunar Calling", "spellId": 429523, "icon": "ability_druid_cresentburn", "index": 200}]}, {"id": 94585, "name": "The Light of Elune / Astral Insight", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94607], "entries": [{"id": 117176, "definitionId": 122188, "maxRanks": 1, "type": "passive", "name": "The Light of Elune", "spellId": 428655, "icon": "ability_druid_dreamstate", "index": 100}, {"id": 117772, "definitionId": 122784, "maxRanks": 1, "type": "passive", "name": "Astral Insight", "spellId": 429536, "icon": "spell_druid_incarnation", "index": 200}]}, {"id": 94586, "name": "Arcane Affinity / Lunation", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 24, "next": [94587], "prev": [94597], "entries": [{"id": 117178, "definitionId": 122190, "maxRanks": 1, "type": "passive", "name": "Arcane Affinity", "spellId": 429540, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 117177, "definitionId": 122189, "maxRanks": 1, "type": "passive", "name": "Lunation", "spellId": 429539, "icon": "spell_nature_moonglow", "index": 200}]}, {"id": 94587, "name": "The Eternal Moon", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 24, "requiresNode": 92587, "next": [], "prev": [94590, 94585, 94586], "entries": [{"id": 117179, "definitionId": 122191, "maxRanks": 1, "type": "passive", "name": "The Eternal Moon", "spellId": 424113, "icon": "artifactability_balancedruid_newmoon", "index": 200}]}, {"id": 94609, "name": "Ravage", "type": "single", "posX": 1200, "posY": 5110, "maxRanks": 1, "entryNode": true, "subTreeId": 21, "next": [94620, 94611, 94618], "prev": [], "entries": [{"id": 117206, "definitionId": 122218, "maxRanks": 1, "type": "passive", "name": "Ravage", "spellId": 441583, "icon": "inv_ability_druidoftheclawdruid_ravage", "index": 100}], "freeNode": true}, {"id": 94618, "name": "Fount of Strength", "type": "single", "posX": 600, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94610], "prev": [94609], "entries": [{"id": 117218, "definitionId": 122230, "maxRanks": 1, "type": "passive", "name": "Fount of Strength", "spellId": 441675, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 94620, "name": "Dreadful Wound", "type": "single", "posX": 1200, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94619], "prev": [94609], "entries": [{"id": 117220, "definitionId": 122232, "maxRanks": 1, "type": "passive", "name": "Dreadful Wound", "spellId": 441809, "icon": "artifactability_feraldruid_openwounds", "index": 100}]}, {"id": 94611, "name": "Bestial Strength", "type": "single", "posX": 1800, "posY": 5700, "maxRanks": 1, "subTreeId": 21, "next": [94615], "prev": [94609], "entries": [{"id": 117208, "definitionId": 122220, "maxRanks": 1, "type": "passive", "name": "Bestial Strength", "spellId": 441841, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 94610, "name": "Wildshape Mastery", "type": "single", "posX": 600, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94612], "prev": [94618], "entries": [{"id": 117207, "definitionId": 122219, "maxRanks": 1, "type": "passive", "name": "Wildshape Mastery", "spellId": 441678, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 94619, "name": "Ruthless Aggression / Killing Strikes", "type": "choice", "posX": 1200, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "next": [94616], "prev": [94620], "entries": [{"id": 117219, "definitionId": 122231, "maxRanks": 1, "type": "passive", "name": "Ruthless Aggression", "spellId": 441814, "icon": "ability_druid_rake", "index": 100}, {"id": 123048, "definitionId": 127929, "maxRanks": 1, "type": "passive", "name": "Killing Strikes", "spellId": 441824, "icon": "ability_druid_kingofthejungle", "index": 200}]}, {"id": 94615, "name": "Pack's Endurance", "type": "single", "posX": 1800, "posY": 6300, "maxRanks": 1, "subTreeId": 21, "requiresNode": 82234, "next": [94614], "prev": [94611], "entries": [{"id": 117215, "definitionId": 122227, "maxRanks": 1, "type": "passive", "name": "Pack's Endurance", "spellId": 441844, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 94612, "name": "Empowered Shapeshifting / Wildpower Surge", "type": "choice", "posX": 600, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94610], "entries": [{"id": 117210, "definitionId": 122222, "maxRanks": 1, "type": "passive", "name": "Empowered Shapeshifting", "spellId": 441689, "icon": "spell_druid_primaltenacity", "index": 100}, {"id": 117209, "definitionId": 122221, "maxRanks": 1, "type": "passive", "name": "Wildpower Surge", "spellId": 441691, "icon": "ability_druid_ravage", "index": 200}]}, {"id": 94616, "name": "Aggravate Wounds", "type": "single", "posX": 1200, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94619], "entries": [{"id": 117216, "definitionId": 122228, "maxRanks": 1, "type": "passive", "name": "Aggravate Wounds", "spellId": 441829, "icon": "artifactability_guardiandruid_goryfur", "index": 100}]}, {"id": 94614, "name": "Strike for the Heart / Tear Down the Mighty", "type": "choice", "posX": 1800, "posY": 6900, "maxRanks": 1, "subTreeId": 21, "next": [94613], "prev": [94615], "entries": [{"id": 117214, "definitionId": 122226, "maxRanks": 1, "type": "passive", "name": "Strike for the Heart", "spellId": 441845, "icon": "ability_druid_primalagression", "index": 100}, {"id": 117213, "definitionId": 122225, "maxRanks": 1, "type": "passive", "name": "Tear Down the Mighty", "spellId": 441846, "icon": "spell_druid_malfurionstenacity", "index": 200}]}, {"id": 94613, "name": "Claw Rampage", "type": "single", "posX": 1200, "posY": 7510, "maxRanks": 1, "subTreeId": 21, "next": [], "prev": [94614, 94616, 94612], "entries": [{"id": 117211, "definitionId": 122223, "maxRanks": 1, "type": "passive", "name": "Claw Rampage", "spellId": 441835, "icon": "ability_xavius_tormentingswipe", "index": 200}]}], "subTreeNodes": [{"id": 99807, "name": "Druid of the Claw / Elune's Chosen", "type": "subtree", "posX": 8700, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123301, "type": "subtree", "name": "Druid of the Claw", "traitSubTreeId": 21, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-druidoftheclaw", "nodes": [94609, 94618, 94620, 94611, 94610, 94619, 94615, 94612, 94616, 94614, 94613]}, {"id": 123295, "type": "subtree", "name": "Elune's Chosen", "traitSubTreeId": 24, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-eluneschosen", "nodes": [94608, 94598, 94588, 94594, 94596, 94607, 94597, 94590, 94585, 94586, 94587]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100223, 103846, 103847, 103873, 103874, 103875, 103876]}, {"traitTreeId": 793, "className": "Druid", "classId": 11, "specName": "Restoration", "specId": 105, "classNodes": [{"id": 82199, "name": "Rake", "type": "single", "posX": 2100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82239, 82223, 82222], "prev": [], "entries": [{"id": 103277, "definitionId": 108282, "maxRanks": 1, "type": "active", "name": "Rake", "spellId": 1822, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 82220, "name": "Frenzied Regeneration", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82223, 82219, 82227], "prev": [], "entries": [{"id": 103298, "definitionId": 108303, "maxRanks": 1, "type": "active", "name": "Frenzied Regeneration", "spellId": 22842, "icon": "ability_bullrush", "index": 100}]}, {"id": 82217, "name": "Rejuvenation", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82219, 82203, 82241], "prev": [], "entries": [{"id": 103295, "definitionId": 108300, "maxRanks": 1, "type": "active", "name": "Rejuvenation", "spellId": 774, "icon": "spell_nature_rejuvenation", "index": 100}], "freeNode": true}, {"id": 91040, "name": "Starfire", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82200, 82208], "prev": [], "entries": [{"id": 112963, "definitionId": 117968, "maxRanks": 1, "type": "active", "name": "Starfire", "spellId": 197628, "icon": "spell_arcane_starfire", "index": 100}]}, {"id": 82239, "name": "Feline Swiftness", "type": "single", "posX": 1500, "posY": 2100, "maxRanks": 1, "next": [], "prev": [82199], "entries": [{"id": 103318, "definitionId": 108323, "maxRanks": 1, "type": "passive", "name": "Feline Swiftness", "spellId": 131768, "icon": "ability_druid_dash", "index": 100}]}, {"id": 82223, "name": "Thrash", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82225], "prev": [82220, 82199], "entries": [{"id": 103301, "definitionId": 108306, "maxRanks": 1, "type": "active", "name": "Thrash", "spellId": 106832, "icon": "spell_druid_thrash", "index": 100}]}, {"id": 82219, "name": "Improved Barkskin", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82218], "prev": [82220, 82217], "entries": [{"id": 103297, "definitionId": 108302, "maxRanks": 1, "type": "passive", "name": "Improved Barkskin", "spellId": 327993, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82203, "name": "Improved Nature's Cure", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82214], "prev": [82217], "entries": [{"id": 103281, "definitionId": 108286, "maxRanks": 1, "type": "passive", "name": "Improved Nature's Cure", "spellId": 392378, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 82200, "name": "Starsurge", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91040], "entries": [{"id": 103278, "definitionId": 108283, "maxRanks": 1, "type": "active", "name": "Starsurge", "spellId": 197626, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 82222, "name": "Rip", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82225, 82221], "prev": [82199], "entries": [{"id": 103300, "definitionId": 108305, "maxRanks": 1, "type": "active", "name": "Rip", "spellId": 1079, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 82227, "name": "Ironfur", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82225, 82211, 82228], "prev": [82220], "entries": [{"id": 103305, "definitionId": 108310, "maxRanks": 1, "type": "active", "name": "Ironfur", "spellId": 192081, "icon": "ability_druid_ironfur", "index": 100}]}, {"id": 82218, "name": "Verdant Heart", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82211], "prev": [82219], "entries": [{"id": 103296, "definitionId": 108301, "maxRanks": 1, "type": "passive", "name": "Verdant Heart", "spellId": 301768, "icon": "ability_bullrush", "index": 100}]}, {"id": 82241, "name": "Wild Growth", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82211, 82214, 82206], "prev": [82217], "entries": [{"id": 103320, "definitionId": 108325, "maxRanks": 1, "type": "active", "name": "Wild Growth", "spellId": 48438, "icon": "ability_druid_flourish", "index": 100}], "freeNode": true}, {"id": 82208, "name": "Sunfire", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82214, 93714], "prev": [91040], "entries": [{"id": 103286, "definitionId": 108291, "maxRanks": 1, "type": "active", "name": "Sunfire", "spellId": 93402, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82221, "name": "Maim", "type": "single", "posX": 1500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82222], "entries": [{"id": 103299, "definitionId": 108304, "maxRanks": 1, "type": "active", "name": "Maim", "spellId": 22570, "icon": "ability_druid_mangle.tga", "index": 100}]}, {"id": 82225, "name": "Killer Instinct", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 2, "next": [82224, 82228, 82198], "prev": [82222, 82223, 82227], "entries": [{"id": 103303, "definitionId": 108308, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 108299, "icon": "ability_druid_predatoryinstincts", "index": 100}]}, {"id": 82211, "name": "Hibernate", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82241, 82227, 82218], "entries": [{"id": 103289, "definitionId": 108294, "maxRanks": 1, "type": "active", "name": "Hibernate", "spellId": 2637, "icon": "spell_nature_sleep", "index": 100}]}, {"id": 82214, "name": "Nurturing Instinct", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 2, "next": [82206, 82210, 82232], "prev": [82241, 82203, 82208], "entries": [{"id": 103292, "definitionId": 108297, "maxRanks": 2, "type": "passive", "name": "Nurturing Instinct", "spellId": 33873, "icon": "ability_druid_healinginstincts", "index": 100}]}, {"id": 93714, "name": "Improved Sunfire", "type": "single", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82208], "entries": [{"id": 116102, "definitionId": 121114, "maxRanks": 1, "type": "passive", "name": "Improved Sunfire", "spellId": 231050, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82224, "name": "Skull Bash", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82238], "prev": [82225], "entries": [{"id": 103302, "definitionId": 108307, "maxRanks": 1, "type": "active", "name": "Skull Bash", "spellId": 106839, "icon": "inv_bone_skull_04", "index": 100}]}, {"id": 82228, "name": "Thick Hide", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82198, 100177], "prev": [82225, 82227], "entries": [{"id": 103306, "definitionId": 108311, "maxRanks": 1, "type": "passive", "name": "Thick Hide", "spellId": 16931, "icon": "inv_misc_pelt_bear_03", "index": 100}]}, {"id": 82242, "name": "Mass Entanglement / Ursol's Vortex", "type": "choice", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [82229, 82213], "prev": [], "entries": [{"id": 103322, "definitionId": 108327, "maxRanks": 1, "type": "active", "name": "Mass Entanglement", "spellId": 102359, "icon": "spell_druid_massentanglement", "index": 100}, {"id": 103321, "definitionId": 108326, "maxRanks": 1, "type": "active", "name": "Ursol's Vortex", "spellId": 102793, "icon": "spell_druid_ursolsvortex", "index": 200}]}, {"id": 82206, "name": "Natural Recovery", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82232, 82240], "prev": [82241, 82214], "entries": [{"id": 103284, "definitionId": 108289, "maxRanks": 1, "type": "passive", "name": "Natural Recovery", "spellId": 377796, "icon": "ability_druid_naturalperfection", "index": 100}]}, {"id": 82210, "name": "Astral Influence", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100223], "prev": [82214], "entries": [{"id": 103288, "definitionId": 108293, "maxRanks": 1, "type": "passive", "name": "Astral Influence", "spellId": 197524, "icon": "ability_skyreach_lens_flare", "index": 100}]}, {"id": 82238, "name": "Primal Fury", "type": "single", "posX": 1500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82224], "entries": [{"id": 103317, "definitionId": 108322, "maxRanks": 1, "type": "passive", "name": "Primal Fury", "spellId": 159286, "icon": "ability_racial_cannibalize", "index": 100}]}, {"id": 82198, "name": "Wild Charge / Tiger Dash", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82236, 82235], "prev": [82225, 82228], "entries": [{"id": 103276, "definitionId": 108281, "maxRanks": 1, "type": "active", "name": "Wild Charge", "spellId": 102401, "icon": "spell_druid_wildcharge", "index": 100}, {"id": 103275, "definitionId": 108280, "maxRanks": 1, "type": "active", "name": "Tiger Dash", "spellId": 252216, "icon": "ability_druid_dash_orange", "index": 200}]}, {"id": 82229, "name": "Soothe", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100177, 82234], "prev": [82242], "entries": [{"id": 103307, "definitionId": 108312, "maxRanks": 1, "type": "active", "name": "Soothe", "spellId": 2908, "icon": "ability_hunter_beastsoothe", "index": 100}]}, {"id": 82213, "name": "Cyclone", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82234, 82240], "prev": [82242], "entries": [{"id": 103291, "definitionId": 108296, "maxRanks": 1, "type": "active", "name": "Cyclone", "spellId": 33786, "icon": "spell_nature_earthbind", "index": 100}]}, {"id": 82232, "name": "Renewal", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82207, 82209], "prev": [82214, 82206], "entries": [{"id": 103310, "definitionId": 108315, "maxRanks": 1, "type": "active", "name": "Renewal", "spellId": 108238, "icon": "spell_nature_natureblessing", "index": 100}]}, {"id": 100223, "name": "Starlight Conduit", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82210], "entries": [{"id": 123868, "definitionId": 128706, "maxRanks": 1, "type": "passive", "name": "Starlight Conduit", "spellId": 451211, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 82236, "name": "Matted Fur", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103314, "definitionId": 108319, "maxRanks": 1, "type": "passive", "name": "Matted Fur", "spellId": 385786, "icon": "inv_misc_pelt_15", "index": 200}]}, {"id": 82235, "name": "Ursine Vigor", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100176], "prev": [82198], "entries": [{"id": 103313, "definitionId": 108318, "maxRanks": 1, "type": "passive", "name": "Ursine Vigor", "spellId": 377842, "icon": "ability_druid_markofursol", "index": 100}]}, {"id": 100177, "name": "Ursoc's Spirit", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82229, 82228], "entries": [{"id": 123796, "definitionId": 128634, "maxRanks": 1, "type": "passive", "name": "Ursoc's Spirit", "spellId": 449182, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 82234, "name": "Stampeding Roar", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82233], "prev": [82213, 82229], "entries": [{"id": 103312, "definitionId": 108317, "maxRanks": 1, "type": "active", "name": "Stampeding Roar", "spellId": 106898, "icon": "spell_druid_stampedingroar_cat", "index": 100}]}, {"id": 82240, "name": "Improved Rejuvenation", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [82213, 82206], "entries": [{"id": 103319, "definitionId": 108324, "maxRanks": 1, "type": "passive", "name": "Improved Rejuvenation", "spellId": 231040, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 82207, "name": "Rising Light, Falling Night", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103285, "definitionId": 108290, "maxRanks": 1, "type": "passive", "name": "Rising Light, Falling Night", "spellId": 417712, "icon": "spell_druid_equinox", "index": 100}]}, {"id": 82209, "name": "Typhoon", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [100175], "prev": [82232], "entries": [{"id": 103287, "definitionId": 108292, "maxRanks": 1, "type": "active", "name": "Typhoon", "spellId": 132469, "icon": "ability_druid_typhoon", "index": 100}]}, {"id": 100176, "name": "Instincts of the Claw", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100174, 82237], "prev": [82235, 82236], "entries": [{"id": 123795, "definitionId": 128633, "maxRanks": 2, "type": "passive", "name": "Instincts of the Claw", "spellId": 449184, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 82233, "name": "Lycara's Teachings", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [82230, 92229], "prev": [82234], "entries": [{"id": 103311, "definitionId": 108316, "maxRanks": 2, "type": "passive", "name": "Lycara's Teachings", "spellId": 378988, "icon": "inv_trinket_ardenweald_02_green", "index": 100}]}, {"id": 100175, "name": "Lore of the Grove", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [100173, 82243], "prev": [82207, 82209], "entries": [{"id": 123794, "definitionId": 128632, "maxRanks": 2, "type": "passive", "name": "Lore of the Grove", "spellId": 449185, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 100174, "name": "Oakskin", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 123793, "definitionId": 128631, "maxRanks": 1, "type": "passive", "name": "Oakskin", "spellId": 449191, "icon": "spell_nature_stoneclawtotem", "index": 100}]}, {"id": 82237, "name": "Incapacitating Roar / Mighty Bash", "type": "choice", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82246], "prev": [100176], "entries": [{"id": 103316, "definitionId": 108321, "maxRanks": 1, "type": "active", "name": "Incapacitating Roar", "spellId": 99, "icon": "ability_druid_demoralizingroar", "index": 100}, {"id": 103315, "definitionId": 108320, "maxRanks": 1, "type": "active", "name": "Mighty Bash", "spellId": 5211, "icon": "ability_druid_bash", "index": 200}]}, {"id": 82230, "name": "Improved Stampeding Roar", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 103308, "definitionId": 108313, "maxRanks": 1, "type": "passive", "name": "Improved Stampeding Roar", "spellId": 288826, "icon": "spell_druid_stamedingroar", "index": 100}]}, {"id": 92229, "name": "Fluid Form", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82231], "prev": [82233], "entries": [{"id": 114300, "definitionId": 119305, "maxRanks": 1, "type": "passive", "name": "Fluid Form", "spellId": 449193, "icon": "ability_druid_mastershapeshifter", "index": 100}]}, {"id": 100173, "name": "Forestwalk", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 123792, "definitionId": 128630, "maxRanks": 1, "type": "passive", "name": "Forestwalk", "spellId": 400129, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 82243, "name": "Innervate", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82244], "prev": [100175], "entries": [{"id": 103323, "definitionId": 108328, "maxRanks": 1, "type": "active", "name": "Innervate", "spellId": 29166, "icon": "spell_nature_lightning", "index": 100}]}, {"id": 82246, "name": "Well-Honed Instincts", "type": "single", "posX": 2100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82237, 100174], "entries": [{"id": 103326, "definitionId": 108331, "maxRanks": 1, "type": "passive", "name": "Well-Honed Instincts", "spellId": 377847, "icon": "ability_druid_tigersroar", "index": 100}]}, {"id": 82231, "name": "Heart of the Wild", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82230, 92229], "entries": [{"id": 103309, "definitionId": 108314, "maxRanks": 1, "type": "active", "name": "Heart of the Wild", "spellId": 319454, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82244, "name": "Nature's Vigil", "type": "single", "posX": 5700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82243, 100173], "entries": [{"id": 103324, "definitionId": 108329, "maxRanks": 1, "type": "active", "name": "Nature's Vigil", "spellId": 124974, "icon": "achievement_zone_feralas", "index": 100}]}], "specNodes": [{"id": 82049, "name": "Lifebloom", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82048, 82050, 82083], "prev": [], "entries": [{"id": 103100, "definitionId": 108105, "maxRanks": 1, "type": "active", "name": "Lifebloom", "spellId": 33763, "icon": "inv_misc_herb_felblossom", "index": 100}]}, {"id": 82048, "name": "Ysera's Gift", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [82047], "prev": [82049], "entries": [{"id": 103099, "definitionId": 108104, "maxRanks": 1, "type": "passive", "name": "Ysera's Gift", "spellId": 145108, "icon": "inv_misc_head_dragon_green", "index": 100}]}, {"id": 82050, "name": "Nature's Swiftness", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82051, 103875], "prev": [82049], "entries": [{"id": 103101, "definitionId": 108106, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 132158, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 82083, "name": "Flash of Clarity", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82052], "prev": [82049], "entries": [{"id": 103142, "definitionId": 108147, "maxRanks": 1, "type": "passive", "name": "Flash of Clarity", "spellId": 392220, "icon": "spell_nature_crystalball", "index": 100}]}, {"id": 82047, "name": "Grove Tending", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [82046, 82055, 82057], "prev": [82048], "entries": [{"id": 103098, "definitionId": 108103, "maxRanks": 1, "type": "passive", "name": "Grove Tending", "spellId": 383192, "icon": "inv_relics_idolofrejuvenation", "index": 100}]}, {"id": 82051, "name": "Nature's Splendor / Passing Seasons", "type": "choice", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82055], "prev": [82050], "entries": [{"id": 103103, "definitionId": 108108, "maxRanks": 1, "type": "passive", "name": "Nature's Splendor", "spellId": 392288, "icon": "spell_nature_spiritarmor", "index": 100}, {"id": 103102, "definitionId": 108107, "maxRanks": 1, "type": "passive", "name": "Passing Seasons", "spellId": 382550, "icon": "spell_nature_ravenform", "index": 200}]}, {"id": 103875, "name": "Twinleaf", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82055, 92674, 82054], "prev": [82050], "entries": [{"id": 128276, "definitionId": 133083, "maxRanks": 1, "type": "passive", "name": "Twinleaf", "spellId": 470540, "icon": "inv_misc_plant_02", "index": 100}]}, {"id": 82052, "name": "Abundance / Cenarion Ward", "type": "choice", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [92674, 103876, 82082], "prev": [82083], "entries": [{"id": 103105, "definitionId": 108110, "maxRanks": 1, "type": "passive", "name": "Abundance", "spellId": 207383, "icon": "ability_druid_empoweredrejuvination", "index": 100}, {"id": 103104, "definitionId": 108109, "maxRanks": 1, "type": "active", "name": "Cenarion Ward", "spellId": 102351, "icon": "ability_druid_naturalperfection", "index": 200}]}, {"id": 82046, "name": "Waking Dream", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82047], "entries": [{"id": 103097, "definitionId": 108102, "maxRanks": 1, "type": "passive", "name": "Waking Dream", "spellId": 392221, "icon": "inv_misc_head_dragon_green", "index": 100}]}, {"id": 82055, "name": "Improved Regrowth", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82057, 82054], "prev": [82047, 103875, 82051], "entries": [{"id": 103109, "definitionId": 108114, "maxRanks": 1, "type": "passive", "name": "Improved Regrowth", "spellId": 231032, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 92674, "name": "Tranquil Mind", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82054, 82082], "prev": [82052, 103875], "entries": [{"id": 114808, "definitionId": 119815, "maxRanks": 1, "type": "passive", "name": "Tranquil Mind", "spellId": 403521, "icon": "ability_druid_serenefocus", "index": 100}]}, {"id": 103876, "name": "Wildwood Roots", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [], "prev": [82052], "entries": [{"id": 128277, "definitionId": 133084, "maxRanks": 1, "type": "passive", "name": "Wildwood Roots", "spellId": 470549, "icon": "inv_misc_herb_liferoot_stem", "index": 100}]}, {"id": 82057, "name": "Efflorescence", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82043, 82059, 103874], "prev": [82047, 82055], "entries": [{"id": 103111, "definitionId": 108116, "maxRanks": 1, "type": "active", "name": "Efflorescence", "spellId": 145205, "icon": "inv_misc_herb_talandrasrose", "index": 100}]}, {"id": 82054, "name": "Tranquility", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82053], "prev": [82055, 103875, 92674], "entries": [{"id": 103108, "definitionId": 108113, "maxRanks": 1, "type": "active", "name": "Tranquility", "spellId": 740, "icon": "spell_nature_tranquility", "index": 100}]}, {"id": 82082, "name": "Ironbark", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82045, 82056, 82081], "prev": [92674, 82052], "entries": [{"id": 103141, "definitionId": 108146, "maxRanks": 1, "type": "active", "name": "Ironbark", "spellId": 102342, "icon": "spell_druid_ironbark", "index": 100}]}, {"id": 82059, "name": "Soul of the Forest", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82058, 82060, 82062], "prev": [82057], "entries": [{"id": 103113, "definitionId": 108118, "maxRanks": 1, "type": "passive", "name": "Soul of the Forest", "spellId": 158478, "icon": "ability_druid_manatree", "index": 100}]}, {"id": 103874, "name": "Renewing Surge", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82062], "prev": [82057], "entries": [{"id": 128275, "definitionId": 133082, "maxRanks": 1, "type": "passive", "name": "Renewing Surge", "spellId": 470562, "icon": "inv_relics_idolofhealth", "index": 100}]}, {"id": 82043, "name": "Nourish / Grove Guardians", "type": "choice", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [94535, 82065, 82062], "prev": [82057], "entries": [{"id": 103094, "definitionId": 108099, "maxRanks": 1, "type": "active", "name": "Nourish", "spellId": 50464, "icon": "ability_druid_nourish", "index": 100}, {"id": 117104, "definitionId": 122116, "maxRanks": 1, "type": "active", "name": "Grove Guardians", "spellId": 102693, "icon": "ability_druid_forceofnature", "index": 200}]}, {"id": 82053, "name": "Inner Peace / Dreamstate", "type": "choice", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82065], "prev": [82054], "entries": [{"id": 103107, "definitionId": 108112, "maxRanks": 1, "type": "passive", "name": "Inner Peace", "spellId": 197073, "icon": "ability_druid_dreamstate", "index": 200}, {"id": 103106, "definitionId": 108111, "maxRanks": 1, "type": "passive", "name": "Dreamstate", "spellId": 392162, "icon": "spell_unused", "index": 300}]}, {"id": 82056, "name": "Cultivation", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82065, 82080], "prev": [82082], "entries": [{"id": 103110, "definitionId": 108115, "maxRanks": 1, "type": "passive", "name": "Cultivation", "spellId": 200390, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 82045, "name": "Improved Wild Growth", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82080], "prev": [82082], "entries": [{"id": 103096, "definitionId": 108101, "maxRanks": 1, "type": "passive", "name": "Improved Wild Growth", "spellId": 328025, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82081, "name": "Stonebark / Improved Ironbark", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82075, 82080, 82079], "prev": [82082], "entries": [{"id": 103140, "definitionId": 108145, "maxRanks": 1, "type": "passive", "name": "Stonebark", "spellId": 197061, "icon": "archaeology_5_0_crackedmogurunestone", "index": 100}, {"id": 103139, "definitionId": 108144, "maxRanks": 1, "type": "passive", "name": "Improved Ironbark", "spellId": 382552, "icon": "spell_druid_ironbark", "index": 200}]}, {"id": 82060, "name": "Verdancy", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82061, 82074], "prev": [82059], "entries": [{"id": 103114, "definitionId": 108119, "maxRanks": 1, "type": "passive", "name": "Verdancy", "spellId": 392325, "icon": "inv_10_herb_seed_magiccolor5", "index": 100}]}, {"id": 82058, "name": "Rampant Growth", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82061], "prev": [82059], "entries": [{"id": 103112, "definitionId": 108117, "maxRanks": 1, "type": "passive", "name": "Rampant Growth", "spellId": 404521, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 82062, "name": "Regenesis", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82061, 82064], "prev": [82059, 82043, 103874], "entries": [{"id": 103117, "definitionId": 108122, "maxRanks": 2, "type": "passive", "name": "Regenesis", "spellId": 383191, "icon": "inv_misc_herb_liferoot_stem", "index": 100}]}, {"id": 94535, "name": "Wild Synthesis", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82064], "prev": [82043], "entries": [{"id": 117105, "definitionId": 122117, "maxRanks": 1, "type": "passive", "name": "Wild Synthesis", "spellId": 400533, "icon": "spell_nature_protectionformnature", "index": 100}]}, {"id": 82065, "name": "Harmonious Blooming", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82067, 82064], "prev": [82056, 82043, 82053], "entries": [{"id": 103121, "definitionId": 108126, "maxRanks": 1, "type": "passive", "name": "Harmonious Blooming", "spellId": 392256, "icon": "inv_misc_herb_felblossom", "index": 100}]}, {"id": 82080, "name": "Unstoppable Growth", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82067, 82079], "prev": [82081, 82045, 82056], "entries": [{"id": 103138, "definitionId": 108143, "maxRanks": 2, "type": "passive", "name": "Unstoppable Growth", "spellId": 382559, "icon": "ability_druid_flourish", "index": 100}]}, {"id": 82075, "name": "Regenerative Heartwood", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82079, 82076], "prev": [82081], "entries": [{"id": 103131, "definitionId": 108136, "maxRanks": 1, "type": "passive", "name": "Regenerative Heartwood", "spellId": 392116, "icon": "spell_nature_naturetouchgrow", "index": 100}]}, {"id": 82061, "name": "Spring Blossoms / Overgrowth", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82070, 82074, 82073], "prev": [82058, 82060, 82062], "entries": [{"id": 103116, "definitionId": 108121, "maxRanks": 1, "type": "passive", "name": "Spring Blossoms", "spellId": 207385, "icon": "inv_misc_trailofflowers", "index": 100}, {"id": 103115, "definitionId": 108120, "maxRanks": 1, "type": "active", "name": "Overgrowth", "spellId": 203651, "icon": "ability_druid_overgrowth", "index": 200}]}, {"id": 82064, "name": "Incarnation: Tree of Life / Convoke the Spirits", "type": "choice", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82070, 82063, 82072], "prev": [82062, 82065, 94535], "entries": [{"id": 103120, "definitionId": 108125, "maxRanks": 1, "type": "active", "name": "Incarnation: Tree of Life", "spellId": 33891, "icon": "ability_druid_improvedtreeform", "index": 100}, {"id": 103119, "definitionId": 108124, "maxRanks": 1, "type": "active", "name": "Convoke the Spirits", "spellId": 391528, "icon": "inv_ability_druid_convokethespirits", "index": 200}]}, {"id": 82067, "name": "Call of the Elder Druid", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82068, 82066, 82072], "prev": [82080, 82065], "entries": [{"id": 103123, "definitionId": 108128, "maxRanks": 1, "type": "passive", "name": "Call of the Elder Druid", "spellId": 426784, "icon": "spell_holy_blessingofagility", "index": 100}]}, {"id": 82079, "name": "Verdant Infusion / Prosperity", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82068, 82076, 103873], "prev": [82075, 82080, 82081], "entries": [{"id": 103137, "definitionId": 108142, "maxRanks": 1, "type": "passive", "name": "Verdant Infusion", "spellId": 392410, "icon": "inv_relics_totemoflife", "index": 100}, {"id": 103136, "definitionId": 108141, "maxRanks": 1, "type": "passive", "name": "Prosperity", "spellId": 200383, "icon": "ability_druid_giftoftheearthmother", "index": 200}]}, {"id": 82074, "name": "Liveliness / Master Shapeshifter", "type": "choice", "posX": 9900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82073], "prev": [82060, 82061], "entries": [{"id": 103130, "definitionId": 108135, "maxRanks": 1, "type": "passive", "name": "Liveliness", "spellId": 426702, "icon": "spell_druid_symbiosis", "index": 100}, {"id": 114809, "definitionId": 119816, "maxRanks": 1, "type": "passive", "name": "Master Shapeshifter", "spellId": 289237, "icon": "ability_druid_mastershapeshifter", "index": 200}]}, {"id": 82070, "name": "Embrace of the Dream / Invigorate", "type": "choice", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82073, 82077], "prev": [82061, 82064], "entries": [{"id": 103126, "definitionId": 108131, "maxRanks": 1, "type": "passive", "name": "Embrace of the Dream", "spellId": 392124, "icon": "ability_druid_healinginstincts", "index": 100}, {"id": 123777, "definitionId": 128615, "maxRanks": 1, "type": "active", "name": "Invigorate", "spellId": 392160, "icon": "spell_nature_preservation", "index": 200}]}, {"id": 82063, "name": "Cenarius' Guidance", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82077], "prev": [82064], "entries": [{"id": 103118, "definitionId": 108123, "maxRanks": 1, "type": "passive", "name": "Cenarius' Guidance", "spellId": 393371, "icon": "ability_druid_treeoflife", "index": 100}]}, {"id": 82072, "name": "Budding Leaves", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82077, 82069], "prev": [82064, 82067], "entries": [{"id": 103128, "definitionId": 108133, "maxRanks": 2, "type": "passive", "name": "Budding Leaves", "spellId": 392167, "icon": "inv_misc_herb_fellotus", "index": 100}]}, {"id": 82066, "name": "Dream of Cenarius", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82069], "prev": [82067], "entries": [{"id": 103122, "definitionId": 108127, "maxRanks": 1, "type": "passive", "name": "Dream of Cenarius", "spellId": 158504, "icon": "ability_druid_dreamstate", "index": 100}]}, {"id": 82068, "name": "Thriving Vegetation", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82069, 82071], "prev": [82079, 82067], "entries": [{"id": 103124, "definitionId": 108129, "maxRanks": 2, "type": "passive", "name": "Thriving Vegetation", "spellId": 447131, "icon": "spell_nature_rejuvenation", "index": 100}]}, {"id": 103873, "name": "Forest's Flow", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82071], "prev": [82079], "entries": [{"id": 128274, "definitionId": 133081, "maxRanks": 1, "type": "passive", "name": "Forest's Flow", "spellId": 470581, "icon": "ability_monk_explodingjadeblossom", "index": 100}]}, {"id": 82076, "name": "Nurturing Dormancy", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82071], "prev": [82079, 82075], "entries": [{"id": 103132, "definitionId": 108137, "maxRanks": 1, "type": "passive", "name": "Nurturing Dormancy", "spellId": 392099, "icon": "ability_druid_replenish", "index": 100}]}, {"id": 82073, "name": "Photosynthesis / Flourish", "type": "choice", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82074, 82070, 82061], "entries": [{"id": 103129, "definitionId": 108134, "maxRanks": 1, "type": "passive", "name": "Photosynthesis", "spellId": 274902, "icon": "spell_lifegivingseed", "index": 200}, {"id": 123776, "definitionId": 128614, "maxRanks": 1, "type": "active", "name": "Flourish", "spellId": 197721, "icon": "spell_druid_wildburst", "index": 300}]}, {"id": 82077, "name": "Power of the Archdruid / Undergrowth", "type": "choice", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82063, 82072, 82070], "entries": [{"id": 103134, "definitionId": 108139, "maxRanks": 1, "type": "passive", "name": "Power of the Archdruid", "spellId": 392302, "icon": "spell_druid_rampantgrowth", "index": 100}, {"id": 103133, "definitionId": 108138, "maxRanks": 1, "type": "passive", "name": "Undergrowth", "spellId": 392301, "icon": "spell_druid_germination_rejuvenation", "index": 200}]}, {"id": 82069, "name": "Reforestation", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82068, 82072, 82066], "entries": [{"id": 103125, "definitionId": 108130, "maxRanks": 1, "type": "passive", "name": "Reforestation", "spellId": 392356, "icon": "inv_herbalism_70_yserallineseed", "index": 100}]}, {"id": 82071, "name": "Germination", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82076, 82068, 103873], "entries": [{"id": 103127, "definitionId": 108132, "maxRanks": 1, "type": "passive", "name": "Germination", "spellId": 155675, "icon": "spell_druid_germination", "index": 100}]}], "heroNodes": [{"id": 94626, "name": "Thriving Growth", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 22, "next": [94629, 94621, 94623], "prev": [], "entries": [{"id": 117226, "definitionId": 122238, "maxRanks": 1, "type": "passive", "name": "Thriving Growth", "spellId": 439528, "icon": "inv_ability_wildstalkerdruid_thrivinggrowth", "index": 100}], "freeNode": true}, {"id": 94629, "name": "Hunt Beneath the Open Skies", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94624], "prev": [94626], "entries": [{"id": 117231, "definitionId": 122243, "maxRanks": 1, "type": "passive", "name": "Hunt Beneath the Open Skies", "spellId": 439868, "icon": "spell_druid_lunarinspiration", "index": 100}]}, {"id": 94623, "name": "Strategic Infusion", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94622], "prev": [94626], "entries": [{"id": 117223, "definitionId": 122235, "maxRanks": 1, "type": "passive", "name": "Strategic Infusion", "spellId": 439890, "icon": "ability_druid_supriseattack", "index": 100}]}, {"id": 94621, "name": "Wildstalker's Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 22, "next": [94625], "prev": [94626], "entries": [{"id": 117221, "definitionId": 122233, "maxRanks": 1, "type": "passive", "name": "Wildstalker's Power", "spellId": 439926, "icon": "ability_druid_skinteeth", "index": 100}]}, {"id": 94624, "name": "Lethal Preservation", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94631], "prev": [94629], "entries": [{"id": 117224, "definitionId": 122236, "maxRanks": 1, "type": "passive", "name": "Lethal Preservation", "spellId": 455461, "icon": "spell_nature_healingtouch", "index": 100}]}, {"id": 94622, "name": "Entangling Vortex / Flower Walk", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94630], "prev": [94623], "entries": [{"id": 117222, "definitionId": 122234, "maxRanks": 1, "type": "passive", "name": "Entangling Vortex", "spellId": 439895, "icon": "spell_druid_ursolsvortex", "index": 100}, {"id": 119855, "definitionId": 124755, "maxRanks": 1, "type": "passive", "name": "Flower Walk", "spellId": 439901, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94625, "name": "Bond with Nature / Harmonious Constitution", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 22, "next": [94628], "prev": [94621], "entries": [{"id": 117225, "definitionId": 122237, "maxRanks": 1, "type": "passive", "name": "Bond with Nature", "spellId": 439929, "icon": "inv_misc_marrigolds_01", "index": 100}, {"id": 119854, "definitionId": 124754, "maxRanks": 1, "type": "passive", "name": "Harmonious Constitution", "spellId": 440116, "icon": "talentspec_druid_restoration", "index": 200}]}, {"id": 94631, "name": "Resilient Flourishing / Root Network", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94624], "entries": [{"id": 117234, "definitionId": 122246, "maxRanks": 1, "type": "passive", "name": "Resilient Flourishing", "spellId": 439880, "icon": "inv_misc_herb_16", "index": 100}, {"id": 117233, "definitionId": 122245, "maxRanks": 1, "type": "passive", "name": "Root Network", "spellId": 439882, "icon": "ability_creature_poison_04", "index": 200}]}, {"id": 94630, "name": "Bursting Growth", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94622], "entries": [{"id": 117232, "definitionId": 122244, "maxRanks": 1, "type": "passive", "name": "Bursting Growth", "spellId": 440120, "icon": "inv_collections_armor_flowerbracelet_b_01", "index": 100}]}, {"id": 94628, "name": "Twin Sprouts / Implant", "type": "choice", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 22, "next": [94627], "prev": [94625], "entries": [{"id": 117230, "definitionId": 122242, "maxRanks": 1, "type": "passive", "name": "Twin Sprouts", "spellId": 440117, "icon": "inv_misc_herb_evergreenmoss", "index": 100}, {"id": 117229, "definitionId": 122241, "maxRanks": 1, "type": "passive", "name": "Implant", "spellId": 440118, "icon": "ability_creature_poison_03", "index": 200}]}, {"id": 94627, "name": "Vigorous Creepers", "type": "single", "posX": 15290, "posY": 3900, "maxRanks": 1, "subTreeId": 22, "next": [], "prev": [94630, 94628, 94631], "entries": [{"id": 117227, "definitionId": 122239, "maxRanks": 1, "type": "passive", "name": "Vigorous Creepers", "spellId": 440119, "icon": "spell_druid_massentanglement", "index": 200}]}, {"id": 94600, "name": "Dream Surge", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "entryNode": true, "subTreeId": 23, "requiresNode": 0, "next": [94599, 94602, 94593], "prev": [], "entries": [{"id": 117195, "definitionId": 122207, "maxRanks": 1, "type": "passive", "name": "Dream Surge", "spellId": 433831, "icon": "inv_ability_keeperofthegrovedruid_dreamsurge_fiendly", "index": 100}], "freeNode": true}, {"id": 94599, "name": "Treants of the Moon", "type": "single", "posX": 7200, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94605], "prev": [94600], "entries": [{"id": 117194, "definitionId": 122206, "maxRanks": 1, "type": "passive", "name": "Treants of the Moon", "spellId": 428544, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 94602, "name": "Expansiveness", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94604], "prev": [94600], "entries": [{"id": 117197, "definitionId": 122209, "maxRanks": 1, "type": "passive", "name": "Expansiveness", "spellId": 429399, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 94593, "name": "Protective Growth", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 23, "next": [94595], "prev": [94600], "entries": [{"id": 117186, "definitionId": 122198, "maxRanks": 1, "type": "passive", "name": "Protective Growth", "spellId": 433748, "icon": "spell_nature_resistnature", "index": 100}]}, {"id": 94605, "name": "Power of Nature / Durability of Nature", "type": "choice", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94591], "prev": [94599], "entries": [{"id": 117201, "definitionId": 122213, "maxRanks": 1, "type": "passive", "name": "Power of Nature", "spellId": 428859, "icon": "spell_nature_naturesblessing", "index": 100}, {"id": 117200, "definitionId": 122212, "maxRanks": 1, "type": "passive", "name": "Durability of Nature", "spellId": 429227, "icon": "ability_druid_manatree", "index": 200}]}, {"id": 94604, "name": "Cenarius' Might", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94592], "prev": [94602], "entries": [{"id": 117199, "definitionId": 122211, "maxRanks": 1, "type": "passive", "name": "Cenarius' Might", "spellId": 455797, "icon": "achievement_reputation_guardiansofcenarius", "index": 100}]}, {"id": 94595, "name": "Grove's Inspiration / Potent Enchantments", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 23, "next": [94601], "prev": [94593], "entries": [{"id": 117189, "definitionId": 122201, "maxRanks": 1, "type": "passive", "name": "Grove's Inspiration", "spellId": 429402, "icon": "ability_druid_protectionofthegrove", "index": 100}, {"id": 117188, "definitionId": 122200, "maxRanks": 1, "type": "passive", "name": "Potent Enchantments", "spellId": 429420, "icon": "ability_druid_serenefocus", "index": 200}]}, {"id": 94591, "name": "Bounteous Bloom / Early Spring", "type": "choice", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [94606], "prev": [94605], "entries": [{"id": 117184, "definitionId": 122196, "maxRanks": 1, "type": "passive", "name": "Bounteous Bloom", "spellId": 429215, "icon": "inv_herbalism_70_dreamleaf", "index": 100}, {"id": 117895, "definitionId": 122907, "maxRanks": 1, "type": "passive", "name": "Early Spring", "spellId": 428937, "icon": "inv_misc_trailofflowers", "index": 200}]}, {"id": 94592, "name": "Power of the Dream / Control of the Dream", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94604], "entries": [{"id": 117185, "definitionId": 122197, "maxRanks": 1, "type": "passive", "name": "Power of the Dream", "spellId": 434220, "icon": "ability_xavius_dreamsimulacrum", "index": 100}, {"id": 117894, "definitionId": 122906, "maxRanks": 1, "type": "passive", "name": "Control of the Dream", "spellId": 434249, "icon": "inv_cloth_outdooremeralddream_d_01_buckle", "index": 200}]}, {"id": 94601, "name": "Blooming Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 23, "next": [94606], "prev": [94595], "entries": [{"id": 117196, "definitionId": 122208, "maxRanks": 1, "type": "passive", "name": "Blooming Infusion", "spellId": 429433, "icon": "spell_nature_thorns", "index": 100}]}, {"id": 94606, "name": "Harmony of the Grove", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 23, "requiresNode": 0, "next": [], "prev": [94601, 94592, 94591], "entries": [{"id": 117203, "definitionId": 122215, "maxRanks": 1, "type": "passive", "name": "Harmony of the Grove", "spellId": 428731, "icon": "ability_druid_forceofnature", "index": 100}]}], "subTreeNodes": [{"id": 99806, "name": "Keeper of the Grove / Wildstalker", "type": "subtree", "posX": 9300, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123299, "type": "subtree", "name": "Keeper of the Grove", "traitSubTreeId": 23, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-keeperofthegrove", "nodes": [94600, 94599, 94602, 94593, 94605, 94604, 94595, 94591, 94592, 94601, 94606]}, {"id": 123298, "type": "subtree", "name": "Wildstalker", "traitSubTreeId": 22, "traitTreeId": 793, "atlasMemberName": "talents-heroclass-druid-wildstalker", "nodes": [94626, 94629, 94623, 94621, 94624, 94622, 94625, 94631, 94630, 94628, 94627]}]}], "fullNodeOrder": [82043, 82045, 82046, 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, 82077, 82079, 82080, 82081, 82082, 82083, 82085, 82086, 82088, 82090, 82091, 82092, 82093, 82094, 82095, 82096, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82126, 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, 82147, 82148, 82149, 82151, 82152, 82153, 82154, 82155, 82156, 82157, 82158, 82159, 82160, 82161, 82162, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, 82207, 82208, 82209, 82210, 82211, 82213, 82214, 82215, 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82246, 88199, 88200, 88201, 88202, 88203, 88204, 88206, 88207, 88208, 88209, 88210, 88211, 88212, 88213, 88214, 88215, 88216, 88217, 88218, 88219, 88220, 88221, 88222, 88223, 88224, 88225, 88226, 88227, 88228, 88229, 88231, 88232, 88234, 88235, 88236, 91040, 91041, 91044, 91046, 91047, 91048, 92226, 92227, 92229, 92585, 92586, 92587, 92588, 92641, 92674, 93714, 94535, 94585, 94586, 94587, 94588, 94590, 94591, 94592, 94593, 94594, 94595, 94596, 94597, 94598, 94599, 94600, 94601, 94602, 94604, 94605, 94606, 94607, 94608, 94609, 94610, 94611, 94612, 94613, 94614, 94615, 94616, 94618, 94619, 94620, 94621, 94622, 94623, 94624, 94625, 94626, 94627, 94628, 94629, 94630, 94631, 99805, 99806, 99807, 99808, 100173, 100174, 100175, 100176, 100177, 100223, 103846, 103847, 103873, 103874, 103875, 103876]}, {"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Devastation", "specId": 1467, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}], "freeNode": true}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103843], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}]}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}]}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}], "freeNode": true}, {"id": 103843, "name": "Heavy Wingbeats", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 128216, "definitionId": 133023, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}]}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 103844], "prev": [93312, 103843], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [103843], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [103844, 93290, 93294], "prev": [93341, 103843], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 103844, "name": "Clobbering Sweep", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93295, 93302], "entries": [{"id": 128217, "definitionId": 133024, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 100}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93334, "name": "Pyre", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93285, 93333], "prev": [], "entries": [{"id": 115647, "definitionId": 120659, "maxRanks": 1, "type": "active", "name": "Pyre", "spellId": 357211, "icon": "ability_evoker_pyre", "index": 100}]}, {"id": 93285, "name": "Ruby Essence Burst", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93284, 93332], "prev": [93334], "entries": [{"id": 115593, "definitionId": 120605, "maxRanks": 1, "type": "passive", "name": "Ruby Essence Burst", "spellId": 376872, "icon": "ability_evoker_essenceburst4", "index": 100}]}, {"id": 93333, "name": "Azure Essence Burst", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93332, 93275], "prev": [93334], "entries": [{"id": 115646, "definitionId": 120658, "maxRanks": 1, "type": "passive", "name": "Azure Essence Burst", "spellId": 375721, "icon": "ability_evoker_essenceburst2", "index": 100}]}, {"id": 93284, "name": "Dense Energy", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93283, 93276], "prev": [93285], "entries": [{"id": 115592, "definitionId": 120604, "maxRanks": 1, "type": "passive", "name": "Dense Energy", "spellId": 370962, "icon": "ability_evoker_pyre", "index": 100}]}, {"id": 93332, "name": "Imposing Presence / Inner Radiance", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93331], "prev": [93333, 93285], "entries": [{"id": 115645, "definitionId": 120657, "maxRanks": 1, "type": "passive", "name": "Imposing Presence", "spellId": 371016, "icon": "ability_evoker_quell", "index": 100}, {"id": 115644, "definitionId": 120656, "maxRanks": 1, "type": "passive", "name": "Inner Radiance", "spellId": 386405, "icon": "spell_holy_spellwarding", "index": 200}]}, {"id": 93275, "name": "Eternity Surge", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93273, 93274], "prev": [93333], "entries": [{"id": 115581, "definitionId": 120593, "maxRanks": 1, "type": "active", "name": "Eternity Surge", "spellId": 359073, "icon": "ability_evoker_eternitysurge", "index": 100}]}, {"id": 93283, "name": "Volatility", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 2, "next": [93282], "prev": [93284], "entries": [{"id": 115591, "definitionId": 120603, "maxRanks": 2, "type": "passive", "name": "Volatility", "spellId": 369089, "icon": "spell_fire_ragnaros_lavabolt", "index": 100}]}, {"id": 93276, "name": "Power Nexus", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [93282], "prev": [93284], "entries": [{"id": 115582, "definitionId": 120594, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93331, "name": "Dragonrage", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93330], "prev": [93332], "entries": [{"id": 115643, "definitionId": 120655, "maxRanks": 1, "type": "active", "name": "Dragonrage", "spellId": 375087, "icon": "ability_evoker_dragonrage", "index": 100}]}, {"id": 93273, "name": "Lay Waste", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [93319], "prev": [93275], "entries": [{"id": 115579, "definitionId": 120591, "maxRanks": 1, "type": "passive", "name": "Lay Waste", "spellId": 371034, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 93274, "name": "Arcane Intensity", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 2, "next": [93319], "prev": [93275], "entries": [{"id": 115580, "definitionId": 120592, "maxRanks": 2, "type": "passive", "name": "Arcane Intensity", "spellId": 375618, "icon": "ability_evoker_disintegrate", "index": 100}]}, {"id": 93282, "name": "Ruby Embers / Engulfing Blaze", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93278, 93281], "prev": [93283, 93276], "entries": [{"id": 115590, "definitionId": 120602, "maxRanks": 1, "type": "passive", "name": "Ruby Embers", "spellId": 365937, "icon": "inv_tradeskillitem_lessersorcerersfire", "index": 100}, {"id": 115589, "definitionId": 120601, "maxRanks": 1, "type": "passive", "name": "Engulfing Blaze", "spellId": 370837, "icon": "inv_inscription_pigment_ruby", "index": 200}]}, {"id": 93330, "name": "Animosity", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93281, 93329], "prev": [93331], "entries": [{"id": 115642, "definitionId": 120654, "maxRanks": 1, "type": "passive", "name": "Animosity", "spellId": 375797, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 93319, "name": "Essence Attunement", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93329, 93320, 93318], "prev": [93274, 93273], "entries": [{"id": 115631, "definitionId": 120643, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93278, "name": "Firestorm", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93280, 93277], "prev": [93282], "entries": [{"id": 115585, "definitionId": 120597, "maxRanks": 1, "type": "active", "name": "Firestorm", "spellId": 368847, "icon": "ability_evoker_firestorm", "index": 100}]}, {"id": 93281, "name": "Heat Wave", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93280, 93328], "prev": [93282, 93330], "entries": [{"id": 115588, "definitionId": 120600, "maxRanks": 2, "type": "passive", "name": "Heat Wave", "spellId": 375725, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 93329, "name": "Honed Aggression", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93328, 93317], "prev": [93319, 93330], "entries": [{"id": 115641, "definitionId": 120653, "maxRanks": 2, "type": "passive", "name": "Honed Aggression", "spellId": 371038, "icon": "spell_fire_blueimmolation", "index": 100}]}, {"id": 93320, "name": "Eternity's Span", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93319], "entries": [{"id": 115632, "definitionId": 120644, "maxRanks": 1, "type": "passive", "name": "Eternity's Span", "spellId": 375757, "icon": "spell_arcane_arcanetorrent", "index": 100}]}, {"id": 93318, "name": "Eye of Infinity / Event Horizon", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93317, 93316], "prev": [93319], "entries": [{"id": 115630, "definitionId": 120642, "maxRanks": 1, "type": "passive", "name": "Eye of Infinity", "spellId": 411165, "icon": "ability_evoker_dragonrage2_blue", "index": 100}, {"id": 115629, "definitionId": 120641, "maxRanks": 1, "type": "passive", "name": "Event Horizon", "spellId": 411164, "icon": "ability_priest_cascade_shadow", "index": 200}]}, {"id": 93280, "name": "Catalyze", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93314], "prev": [93278, 93281], "entries": [{"id": 115587, "definitionId": 120599, "maxRanks": 1, "type": "passive", "name": "Catalyze", "spellId": 386283, "icon": "spell_fire_masterofelements", "index": 100}]}, {"id": 93328, "name": "Tyranny", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93314, 93327, 93323], "prev": [93281, 93329], "entries": [{"id": 115640, "definitionId": 120652, "maxRanks": 1, "type": "passive", "name": "Tyranny", "spellId": 376888, "icon": "ability_evoker_dragonrage2", "index": 100}]}, {"id": 93317, "name": "Charged Blast", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93323], "prev": [93318, 93329], "entries": [{"id": 115628, "definitionId": 120640, "maxRanks": 1, "type": "passive", "name": "Charged Blast", "spellId": 370455, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 93316, "name": "Shattering Star", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93315], "prev": [93318], "entries": [{"id": 115627, "definitionId": 120639, "maxRanks": 1, "type": "active", "name": "Shattering Star", "spellId": 370452, "icon": "ability_evoker_chargedblast", "index": 100}]}, {"id": 93277, "name": "Snapfire", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93326], "prev": [93278], "entries": [{"id": 115584, "definitionId": 120596, "maxRanks": 1, "type": "passive", "name": "Snapfire", "spellId": 370783, "icon": "spell_shaman_improvedfirenova", "index": 200}]}, {"id": 93314, "name": "Burnout", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93326, 93279, 93272], "prev": [93328, 93280], "entries": [{"id": 115624, "definitionId": 120636, "maxRanks": 1, "type": "passive", "name": "Burnout", "spellId": 375801, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93327, "name": "Onyx Legacy", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93328], "entries": [{"id": 115639, "definitionId": 120651, "maxRanks": 1, "type": "passive", "name": "Onyx Legacy", "spellId": 386348, "icon": "inv_misc_head_dragon_black", "index": 100}]}, {"id": 93323, "name": "Spellweaver's Dominance", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93272, 93325, 93322], "prev": [93328, 93317], "entries": [{"id": 115635, "definitionId": 120647, "maxRanks": 1, "type": "passive", "name": "Spellweaver's Dominance", "spellId": 370845, "icon": "spell_shaman_shockinglava", "index": 100}]}, {"id": 93315, "name": "Focusing Iris / Arcane Vigor", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93322], "prev": [93316], "entries": [{"id": 115626, "definitionId": 120638, "maxRanks": 1, "type": "passive", "name": "Focusing Iris", "spellId": 386336, "icon": "spell_mage_temporalshield", "index": 100}, {"id": 115625, "definitionId": 120637, "maxRanks": 1, "type": "passive", "name": "Arcane Vigor", "spellId": 386342, "icon": "spell_arcane_arcane01", "index": 200}]}, {"id": 93326, "name": "Imminent Destruction", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93313], "prev": [93277, 93314], "entries": [{"id": 115638, "definitionId": 120650, "maxRanks": 1, "type": "passive", "name": "Imminent Destruction", "spellId": 370781, "icon": "spell_burningbladeshaman_blazing_radiance", "index": 100}]}, {"id": 93279, "name": "Font of Magic", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93365], "prev": [93314], "entries": [{"id": 115586, "definitionId": 120598, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 411212, "icon": "ability_evoker_fontofmagic", "index": 100}]}, {"id": 93272, "name": "Titanic Wrath", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93366], "prev": [93314, 93323], "entries": [{"id": 115578, "definitionId": 120590, "maxRanks": 1, "type": "passive", "name": "Titanic Wrath", "spellId": 386272, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 93325, "name": "Hoarded Power", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93324], "prev": [93323], "entries": [{"id": 115637, "definitionId": 120649, "maxRanks": 1, "type": "passive", "name": "Hoarded Power", "spellId": 375796, "icon": "ability_evoker_innatemagic2", "index": 100}]}, {"id": 93322, "name": "Power Swell", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93321], "prev": [93323, 93315], "entries": [{"id": 115634, "definitionId": 120646, "maxRanks": 1, "type": "passive", "name": "Power Swell", "spellId": 370839, "icon": "ability_evoker_powernexus2", "index": 100}]}, {"id": 93313, "name": "Feed the Flames", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93326], "entries": [{"id": 115623, "definitionId": 120635, "maxRanks": 1, "type": "passive", "name": "Feed the Flames", "spellId": 369846, "icon": "mace_1h_blacksmithing_d_04_icon", "index": 100}]}, {"id": 93365, "name": "Scorching Embers", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93279], "entries": [{"id": 115622, "definitionId": 120634, "maxRanks": 1, "type": "passive", "name": "Scorching Embers", "spellId": 370819, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 93366, "name": "Causality", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93272], "entries": [{"id": 115683, "definitionId": 120695, "maxRanks": 1, "type": "passive", "name": "Causality", "spellId": 375777, "icon": "spell_azerite_essence_16", "index": 100}]}, {"id": 93324, "name": "Scintillation", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93325], "entries": [{"id": 115636, "definitionId": 120648, "maxRanks": 1, "type": "passive", "name": "Scintillation", "spellId": 370821, "icon": "spell_arcane_arcane03", "index": 100}]}, {"id": 93321, "name": "Iridescence", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93322], "entries": [{"id": 115633, "definitionId": 120645, "maxRanks": 1, "type": "passive", "name": "Iridescence", "spellId": 370867, "icon": "ability_evoker_powerswell", "index": 100}]}], "heroNodes": [{"id": 94939, "name": "Mass Disintegrate", "type": "single", "posX": 15000, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 36, "next": [94952, 94936, 94944], "prev": [], "entries": [{"id": 117536, "definitionId": 122548, "maxRanks": 1, "type": "passive", "name": "Mass Disintegrate", "spellId": 436335, "icon": "ability_evoker_disintegrate", "index": 100}], "freeNode": true}, {"id": 94950, "name": "Engulf", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 37, "next": [94937, 99857, 94956], "prev": [], "entries": [{"id": 117547, "definitionId": 122559, "maxRanks": 1, "type": "active", "name": "Engulf", "spellId": 443328, "icon": "inv_ability_flameshaperevoker_engulf", "index": 100}], "freeNode": true}, {"id": 94952, "name": "Might of the Black Dragonflight", "type": "single", "posX": 14400, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94921], "prev": [94939, 98931], "entries": [{"id": 117549, "definitionId": 122561, "maxRanks": 1, "type": "passive", "name": "Might of the Black Dragonflight", "spellId": 441705, "icon": "ability_evoker_blackattunementalt", "index": 100}]}, {"id": 94936, "name": "Bombardments", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94953], "prev": [94939, 98931], "entries": [{"id": 117533, "definitionId": 122545, "maxRanks": 1, "type": "passive", "name": "Bombardments", "spellId": 434300, "icon": "inv_ability_scalecommanderevoker_bombardments", "index": 100}]}, {"id": 94944, "name": "Onslaught", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94934], "prev": [94939, 98931], "entries": [{"id": 117541, "definitionId": 122553, "maxRanks": 1, "type": "passive", "name": "Onslaught", "spellId": 441245, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 94937, "name": "Trailblazer / Shape of Flame", "type": "choice", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94949], "prev": [94950], "entries": [{"id": 117534, "definitionId": 122546, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 444849, "icon": "ability_deathwing_fierygrip", "index": 100}, {"id": 123404, "definitionId": 128242, "maxRanks": 1, "type": "passive", "name": "Shape of Flame", "spellId": 445074, "icon": "ability_mage_flamecannon", "index": 200}]}, {"id": 99857, "name": "Traveling Flame", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94946], "prev": [94950], "entries": [{"id": 123416, "definitionId": 128254, "maxRanks": 1, "type": "passive", "name": "Traveling Flame", "spellId": 444140, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 94956, "name": "Enkindle", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94923], "prev": [94950], "entries": [{"id": 117553, "definitionId": 122565, "maxRanks": 1, "type": "passive", "name": "Enkindle", "spellId": 444016, "icon": "inv_10_elementalcombinedfoozles_purifiedshadowflame", "index": 100}]}, {"id": 94921, "name": "Melt Armor", "type": "single", "posX": 14400, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94933], "prev": [94952], "entries": [{"id": 117518, "definitionId": 122530, "maxRanks": 1, "type": "passive", "name": "Melt Armor", "spellId": 441176, "icon": "inv_10_gearupgrade_drakesshadowflameenhancedcrest", "index": 100}]}, {"id": 94953, "name": "Wingleader", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94928], "prev": [94936], "entries": [{"id": 117550, "definitionId": 122562, "maxRanks": 1, "type": "passive", "name": "Wingleader", "spellId": 441206, "icon": "ability_racial_soar", "index": 100}]}, {"id": 94934, "name": "Unrelenting Siege", "type": "single", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94943], "prev": [94944], "entries": [{"id": 117531, "definitionId": 122543, "maxRanks": 1, "type": "passive", "name": "Unrelenting Siege", "spellId": 441246, "icon": "ability_siege_engineer_superheated", "index": 100}]}, {"id": 94949, "name": "Conduit of Flame", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94920], "prev": [94937], "entries": [{"id": 117546, "definitionId": 122558, "maxRanks": 1, "type": "passive", "name": "Conduit of Flame", "spellId": 444843, "icon": "ability_evoker_innatemagic5", "index": 100}]}, {"id": 94946, "name": "Burning Adrenaline", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94945], "prev": [99857], "entries": [{"id": 117543, "definitionId": 122555, "maxRanks": 1, "type": "passive", "name": "Burning Adrenaline", "spellId": 444020, "icon": "inv_gauntlets_03", "index": 100}]}, {"id": 94923, "name": "Fan the Flames / Expanded Lungs", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94931], "prev": [94956], "entries": [{"id": 117520, "definitionId": 122532, "maxRanks": 1, "type": "passive", "name": "Fan the Flames", "spellId": 444318, "icon": "ability_evoker_oppressingroar2", "index": 100}, {"id": 123767, "definitionId": 128605, "maxRanks": 1, "type": "passive", "name": "Expanded Lungs", "spellId": 444845, "icon": "inv_fyrakk_dragonbreath", "index": 200}]}, {"id": 94933, "name": "Hardened Scales / Menacing Presence", "type": "choice", "posX": 14400, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94921], "entries": [{"id": 117530, "definitionId": 122542, "maxRanks": 1, "type": "passive", "name": "Hardened Scales", "spellId": 441180, "icon": "inv_10_skinning_scales_black", "index": 100}, {"id": 120125, "definitionId": 125025, "maxRanks": 1, "type": "passive", "name": "Menacing Presence", "spellId": 441181, "icon": "ability_racial_wingbuffet", "index": 200}]}, {"id": 94928, "name": "Extended Battle / Diverted Power", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94953], "entries": [{"id": 117525, "definitionId": 122537, "maxRanks": 1, "type": "passive", "name": "Extended Battle", "spellId": 441212, "icon": "ability_evoker_divideandconquer", "index": 100}, {"id": 120124, "definitionId": 125024, "maxRanks": 1, "type": "passive", "name": "Diverted Power", "spellId": 441219, "icon": "ability_evoker_powerswell", "index": 200}]}, {"id": 94943, "name": "Nimble Flyer / Slipstream", "type": "choice", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94934], "entries": [{"id": 117540, "definitionId": 122552, "maxRanks": 1, "type": "passive", "name": "Nimble Flyer", "spellId": 441253, "icon": "ability_evoker_hover", "index": 100}, {"id": 120123, "definitionId": 125023, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 441257, "icon": "ability_dragonriding_barrelroll01", "index": 200}]}, {"id": 94920, "name": "Titanic Precision", "type": "single", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94949], "entries": [{"id": 117517, "definitionId": 122529, "maxRanks": 1, "type": "passive", "name": "Titanic Precision", "spellId": 445625, "icon": "inv_10_misc_titansspark_shadowflame", "index": 100}]}, {"id": 94945, "name": "Red Hot", "type": "single", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94946], "entries": [{"id": 117542, "definitionId": 122554, "maxRanks": 1, "type": "passive", "name": "Red Hot", "spellId": 444081, "icon": "ability_ironmaidens_grapeshotblast", "index": 100}]}, {"id": 94931, "name": "Lifecinders / Draconic Instincts", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94923], "entries": [{"id": 117528, "definitionId": 122540, "maxRanks": 1, "type": "passive", "name": "Lifecinders", "spellId": 444322, "icon": "inv_misc_herb_cinderbloom_petal", "index": 100}, {"id": 123405, "definitionId": 128243, "maxRanks": 1, "type": "passive", "name": "Draconic Instincts", "spellId": 445958, "icon": "inv_misc_scales_basilliskorange", "index": 200}]}, {"id": 94941, "name": "Maneuverability", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 36, "next": [], "prev": [94928, 94933, 94943], "entries": [{"id": 117538, "definitionId": 122550, "maxRanks": 1, "type": "passive", "name": "Maneuverability", "spellId": 433871, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 94922, "name": "Consume Flame", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 37, "next": [], "prev": [94920, 94945, 94931], "entries": [{"id": 117519, "definitionId": 122531, "maxRanks": 1, "type": "passive", "name": "Consume Flame", "spellId": 444088, "icon": "inv_shadowflames_wave", "index": 100}]}], "subTreeNodes": [{"id": 99827, "name": "Flameshaper / Scalecommander", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123336, "type": "subtree", "name": "Flameshaper", "traitSubTreeId": 37, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-flameshaper", "nodes": [94950, 94937, 99857, 94956, 94949, 94946, 94923, 94920, 94945, 94931, 94922]}, {"id": 123333, "type": "subtree", "name": "Scalecommander", "traitSubTreeId": 36, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-scalecommander", "nodes": [94939, 98931, 94952, 94936, 94944, 94921, 94953, 94934, 94933, 94928, 94943, 94941]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93297, 93298, 93299, 93300, 93301, 93302, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249, 103843, 103844]}, {"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Preservation", "specId": 1468, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103843], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}]}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}], "freeNode": true}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 103843, "name": "Heavy Wingbeats", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 128216, "definitionId": 133023, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}], "freeNode": true}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 103844], "prev": [93312, 103843], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [103843], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [103844, 93290, 93294], "prev": [93341, 103843], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 103844, "name": "Clobbering Sweep", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93295, 93302], "entries": [{"id": 128217, "definitionId": 133024, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 100}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93339, "name": "Echo", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93240, 93338], "prev": [], "entries": [{"id": 115653, "definitionId": 120665, "maxRanks": 1, "type": "active", "name": "Echo", "spellId": 364343, "icon": "ability_evoker_echo", "index": 100}]}, {"id": 93240, "name": "Dream Breath", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93241, 93239], "prev": [93339], "entries": [{"id": 115542, "definitionId": 120554, "maxRanks": 1, "type": "active", "name": "Dream Breath", "spellId": 355936, "icon": "ability_evoker_dreambreath", "index": 100}]}, {"id": 93338, "name": "Reversion", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93239, 93337], "prev": [93339], "entries": [{"id": 115652, "definitionId": 120664, "maxRanks": 1, "type": "active", "name": "Reversion", "spellId": 366155, "icon": "ability_evoker_reversion", "index": 100}]}, {"id": 93241, "name": "Temporal Compression", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93243], "prev": [93240], "entries": [{"id": 115543, "definitionId": 120555, "maxRanks": 1, "type": "passive", "name": "Temporal Compression", "spellId": 362874, "icon": "ability_evoker_rewind2", "index": 100}]}, {"id": 93239, "name": "Essence Burst", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93238], "prev": [93338, 93240], "entries": [{"id": 115541, "definitionId": 120553, "maxRanks": 1, "type": "passive", "name": "Essence Burst", "spellId": 369297, "icon": "ability_evoker_essenceburst", "index": 100}]}, {"id": 93337, "name": "Rewind", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93336], "prev": [93338], "entries": [{"id": 115651, "definitionId": 120663, "maxRanks": 1, "type": "active", "name": "Rewind", "spellId": 363534, "icon": "ability_evoker_rewind", "index": 100}]}, {"id": 93243, "name": "Spiritbloom", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [93245, 93242, 93247], "prev": [93241], "entries": [{"id": 115546, "definitionId": 120558, "maxRanks": 1, "type": "active", "name": "Spiritbloom", "spellId": 367226, "icon": "ability_evoker_spiritbloom2", "index": 100}]}, {"id": 93238, "name": "Essence Attunement", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93247, 93252, 93255], "prev": [93239], "entries": [{"id": 115540, "definitionId": 120552, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93336, "name": "Time Dilation", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [93255, 93335, 93257], "prev": [93337], "entries": [{"id": 115650, "definitionId": 120662, "maxRanks": 1, "type": "active", "name": "Time Dilation", "spellId": 357170, "icon": "ability_evoker_timedilation", "index": 100}]}, {"id": 93245, "name": "Emerald Communion", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93244, 93246], "prev": [93243], "entries": [{"id": 115549, "definitionId": 120561, "maxRanks": 1, "type": "active", "name": "Emerald Communion", "spellId": 370960, "icon": "ability_evoker_green_01", "index": 100}]}, {"id": 93242, "name": "Empath / Spiritual Clarity", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93243], "entries": [{"id": 115545, "definitionId": 120557, "maxRanks": 1, "type": "passive", "name": "Empath", "spellId": 376138, "icon": "ability_evoker_powernexus2", "index": 100}, {"id": 115544, "definitionId": 120556, "maxRanks": 1, "type": "passive", "name": "Spiritual Clarity", "spellId": 376150, "icon": "ability_evoker_spiritbloom", "index": 200}]}, {"id": 93247, "name": "Fluttering Seedlings", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93246, 93248], "prev": [93238, 93243], "entries": [{"id": 115551, "definitionId": 120563, "maxRanks": 2, "type": "passive", "name": "Fluttering Seedlings", "spellId": 359793, "icon": "inv_herbalism_70_yserallineseed", "index": 100}]}, {"id": 93252, "name": "Font of Magic", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93249], "prev": [93238], "entries": [{"id": 115556, "definitionId": 120568, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 375783, "icon": "ability_evoker_fontofmagic", "index": 200}]}, {"id": 93255, "name": "Golden Hour", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93254, 93256], "prev": [93336, 93238], "entries": [{"id": 115559, "definitionId": 120571, "maxRanks": 1, "type": "passive", "name": "Golden Hour", "spellId": 378196, "icon": "inv_belt_armor_waistoftime_d_01", "index": 100}]}, {"id": 93335, "name": "Delay Harm / Just in Time", "type": "choice", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93336], "entries": [{"id": 115649, "definitionId": 120661, "maxRanks": 1, "type": "passive", "name": "Delay Harm", "spellId": 376207, "icon": "ability_racial_magicalresistance", "index": 100}, {"id": 115648, "definitionId": 120660, "maxRanks": 1, "type": "passive", "name": "Just in Time", "spellId": 376204, "icon": "inv_offhand_1h_artifactsilverhand_d_01", "index": 200}]}, {"id": 93257, "name": "Temporal Anomaly", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93256, 93258], "prev": [93336], "entries": [{"id": 115561, "definitionId": 120573, "maxRanks": 1, "type": "active", "name": "Temporal Anomaly", "spellId": 373861, "icon": "ability_evoker_temporalanomaly", "index": 100}]}, {"id": 93244, "name": "Dreamwalker / Rush of Vitality", "type": "choice", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93250], "prev": [93245], "entries": [{"id": 115548, "definitionId": 120560, "maxRanks": 1, "type": "passive", "name": "Dreamwalker", "spellId": 377082, "icon": "ability_hunter_onewithnature", "index": 100}, {"id": 115547, "definitionId": 120559, "maxRanks": 1, "type": "passive", "name": "Rush of Vitality", "spellId": 377086, "icon": "trade_enchanting_greatermysteriousessence", "index": 200}]}, {"id": 93246, "name": "Exhilarating Burst", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [], "prev": [93247, 93245], "entries": [{"id": 115550, "definitionId": 120562, "maxRanks": 2, "type": "passive", "name": "Exhilarating Burst", "spellId": 377100, "icon": "ability_evoker_essenceburst3", "index": 100}]}, {"id": 93248, "name": "Field of Dreams", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93250, 93253], "prev": [93247], "entries": [{"id": 115552, "definitionId": 120564, "maxRanks": 1, "type": "passive", "name": "Field of Dreams", "spellId": 370062, "icon": "inv_misc_herb_chamlotus", "index": 100}]}, {"id": 93249, "name": "Power Nexus", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93253], "prev": [93252], "entries": [{"id": 115553, "definitionId": 120565, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93254, "name": "Time Lord", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93253, 93260], "prev": [93255], "entries": [{"id": 115558, "definitionId": 120570, "maxRanks": 2, "type": "passive", "name": "Time Lord", "spellId": 372527, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93256, "name": "Flow State", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [], "prev": [93257, 93255], "entries": [{"id": 115560, "definitionId": 120572, "maxRanks": 2, "type": "passive", "name": "Flow State", "spellId": 385696, "icon": "ability_evoker_timespiral", "index": 100}]}, {"id": 93258, "name": "Resonating Sphere / Nozdormu's Teachings", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93260], "prev": [93257], "entries": [{"id": 115563, "definitionId": 120575, "maxRanks": 1, "type": "passive", "name": "Resonating Sphere", "spellId": 376236, "icon": "ability_evoker_bronze_01", "index": 100}, {"id": 115562, "definitionId": 120574, "maxRanks": 1, "type": "passive", "name": "Nozdormu's Teachings", "spellId": 376237, "icon": "inv_misc_head_dragon_bronze", "index": 200}]}, {"id": 93250, "name": "Call of Ysera", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93269, 93251, 93237], "prev": [93244, 93248], "entries": [{"id": 115554, "definitionId": 120566, "maxRanks": 1, "type": "passive", "name": "Call of Ysera", "spellId": 373834, "icon": "", "index": 200}]}, {"id": 93253, "name": "Lifebind", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93237, 99803, 93264], "prev": [93248, 93254, 93249], "entries": [{"id": 115557, "definitionId": 120569, "maxRanks": 1, "type": "passive", "name": "Lifebind", "spellId": 373270, "icon": "ability_evoker_hoverred", "index": 100}]}, {"id": 93260, "name": "Punctuality", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93264, 93261, 93259], "prev": [93258, 93254], "entries": [{"id": 115565, "definitionId": 120577, "maxRanks": 1, "type": "passive", "name": "Punctuality", "spellId": 371270, "icon": "inv_offhand_1h_ulduarraid_d_01", "index": 100}]}, {"id": 93269, "name": "Spark of Insight", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268], "prev": [93250], "entries": [{"id": 115575, "definitionId": 120587, "maxRanks": 1, "type": "passive", "name": "Spark of Insight", "spellId": 377099, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 93251, "name": "Ouroboros", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268], "prev": [93250], "entries": [{"id": 115555, "definitionId": 120567, "maxRanks": 1, "type": "passive", "name": "Ouroboros", "spellId": 381921, "icon": "ability_evoker_innatemagic", "index": 100}]}, {"id": 93237, "name": "Life-Giver's Flame", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93268, 93236], "prev": [93253, 93250], "entries": [{"id": 115539, "definitionId": 120551, "maxRanks": 1, "type": "passive", "name": "Life-Giver's Flame", "spellId": 371426, "icon": "item_sparkofragnoros", "index": 100}]}, {"id": 99803, "name": "Titan's Gift", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93236], "prev": [93253], "entries": [{"id": 123293, "definitionId": 128171, "maxRanks": 1, "type": "passive", "name": "Titan's Gift", "spellId": 443264, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 93264, "name": "Erasure / Temporal Artificer", "type": "choice", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93236, 93263], "prev": [93253, 93260], "entries": [{"id": 115570, "definitionId": 120582, "maxRanks": 1, "type": "passive", "name": "Erasure", "spellId": 376210, "icon": "ability_bossmagistrix_timewarp2", "index": 100}, {"id": 115569, "definitionId": 120581, "maxRanks": 1, "type": "passive", "name": "Temporal Artificer", "spellId": 381922, "icon": "ability_evoker_rewind", "index": 200}]}, {"id": 93261, "name": "Energy Loop", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93263], "prev": [93260], "entries": [{"id": 115566, "definitionId": 120578, "maxRanks": 1, "type": "passive", "name": "Energy Loop", "spellId": 372233, "icon": "inv_elemental_mote_mana", "index": 100}]}, {"id": 93259, "name": "Time of Need", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93263], "prev": [93260], "entries": [{"id": 115564, "definitionId": 120576, "maxRanks": 1, "type": "passive", "name": "Time of Need", "spellId": 368412, "icon": "ability_evoker_masterylifebinder_bronze", "index": 300}]}, {"id": 93268, "name": "Renewing Breath", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93267, 93266], "prev": [93237, 93269, 93251], "entries": [{"id": 115574, "definitionId": 120586, "maxRanks": 2, "type": "passive", "name": "Renewing Breath", "spellId": 371257, "icon": "ability_evoker_dreambreath", "index": 100}]}, {"id": 93236, "name": "Lifeforce Mender", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [99804], "prev": [93264, 93237, 99803], "entries": [{"id": 115538, "definitionId": 120550, "maxRanks": 2, "type": "passive", "name": "Lifeforce Mender", "spellId": 376179, "icon": "ability_evoker_dragonrage2", "index": 100}]}, {"id": 93263, "name": "Timeless Magic", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93265, 93262], "prev": [93264, 93259, 93261], "entries": [{"id": 115568, "definitionId": 120580, "maxRanks": 2, "type": "passive", "name": "Timeless Magic", "spellId": 376240, "icon": "inv_artifact_xp05", "index": 100}]}, {"id": 93267, "name": "Dream Flight", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93268], "entries": [{"id": 115573, "definitionId": 120585, "maxRanks": 1, "type": "active", "name": "Dream Flight", "spellId": 359816, "icon": "ability_evoker_dreamflight", "index": 200}]}, {"id": 93266, "name": "Cycle of Life", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93268], "entries": [{"id": 115572, "definitionId": 120584, "maxRanks": 1, "type": "passive", "name": "Cycle of Life", "spellId": 371832, "icon": "spell_lifegivingseed", "index": 100}]}, {"id": 99804, "name": "Lifespark", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93236], "entries": [{"id": 123294, "definitionId": 128172, "maxRanks": 1, "type": "passive", "name": "Lifespark", "spellId": 443177, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93265, "name": "Grace Period", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93263], "entries": [{"id": 115571, "definitionId": 120583, "maxRanks": 1, "type": "passive", "name": "Grace Period", "spellId": 376239, "icon": "ability_evoker_reversion_green", "index": 100}]}, {"id": 93262, "name": "Stasis", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93263], "entries": [{"id": 115567, "definitionId": 120579, "maxRanks": 1, "type": "active", "name": "Stasis", "spellId": 370537, "icon": "ability_evoker_stasis", "index": 200}]}], "heroNodes": [{"id": 94950, "name": "Engulf", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 37, "next": [94937, 99857, 94956], "prev": [], "entries": [{"id": 117547, "definitionId": 122559, "maxRanks": 1, "type": "active", "name": "Engulf", "spellId": 443328, "icon": "inv_ability_flameshaperevoker_engulf", "index": 100}], "freeNode": true}, {"id": 94937, "name": "Trailblazer / Shape of Flame", "type": "choice", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94949], "prev": [94950], "entries": [{"id": 117534, "definitionId": 122546, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 444849, "icon": "ability_deathwing_fierygrip", "index": 100}, {"id": 123404, "definitionId": 128242, "maxRanks": 1, "type": "passive", "name": "Shape of Flame", "spellId": 445074, "icon": "ability_mage_flamecannon", "index": 200}]}, {"id": 99857, "name": "Traveling Flame", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94946], "prev": [94950], "entries": [{"id": 123416, "definitionId": 128254, "maxRanks": 1, "type": "passive", "name": "Traveling Flame", "spellId": 444140, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 94956, "name": "Enkindle", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 37, "next": [94923], "prev": [94950], "entries": [{"id": 117553, "definitionId": 122565, "maxRanks": 1, "type": "passive", "name": "Enkindle", "spellId": 444016, "icon": "inv_10_elementalcombinedfoozles_purifiedshadowflame", "index": 100}]}, {"id": 94949, "name": "Conduit of Flame", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94920], "prev": [94937], "entries": [{"id": 117546, "definitionId": 122558, "maxRanks": 1, "type": "passive", "name": "Conduit of Flame", "spellId": 444843, "icon": "ability_evoker_innatemagic5", "index": 100}]}, {"id": 94946, "name": "Burning Adrenaline", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94945], "prev": [99857], "entries": [{"id": 117543, "definitionId": 122555, "maxRanks": 1, "type": "passive", "name": "Burning Adrenaline", "spellId": 444020, "icon": "inv_gauntlets_03", "index": 100}]}, {"id": 94923, "name": "Fan the Flames / Expanded Lungs", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 37, "next": [94931], "prev": [94956], "entries": [{"id": 117520, "definitionId": 122532, "maxRanks": 1, "type": "passive", "name": "Fan the Flames", "spellId": 444318, "icon": "ability_evoker_oppressingroar2", "index": 100}, {"id": 123767, "definitionId": 128605, "maxRanks": 1, "type": "passive", "name": "Expanded Lungs", "spellId": 444845, "icon": "inv_fyrakk_dragonbreath", "index": 200}]}, {"id": 94920, "name": "Titanic Precision", "type": "single", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94949], "entries": [{"id": 117517, "definitionId": 122529, "maxRanks": 1, "type": "passive", "name": "Titanic Precision", "spellId": 445625, "icon": "inv_10_misc_titansspark_shadowflame", "index": 100}]}, {"id": 94945, "name": "Red Hot", "type": "single", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94946], "entries": [{"id": 117542, "definitionId": 122554, "maxRanks": 1, "type": "passive", "name": "Red Hot", "spellId": 444081, "icon": "ability_ironmaidens_grapeshotblast", "index": 100}]}, {"id": 94931, "name": "Lifecinders / Draconic Instincts", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 37, "next": [94922], "prev": [94923], "entries": [{"id": 117528, "definitionId": 122540, "maxRanks": 1, "type": "passive", "name": "Lifecinders", "spellId": 444322, "icon": "inv_misc_herb_cinderbloom_petal", "index": 100}, {"id": 123405, "definitionId": 128243, "maxRanks": 1, "type": "passive", "name": "Draconic Instincts", "spellId": 445958, "icon": "inv_misc_scales_basilliskorange", "index": 200}]}, {"id": 94922, "name": "Consume Flame", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 37, "next": [], "prev": [94920, 94945, 94931], "entries": [{"id": 117519, "definitionId": 122531, "maxRanks": 1, "type": "passive", "name": "Consume Flame", "spellId": 444088, "icon": "inv_shadowflames_wave", "index": 100}]}, {"id": 94954, "name": "Chrono Flame", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 38, "next": [94955, 94948, 94925], "prev": [], "entries": [{"id": 117551, "definitionId": 122563, "maxRanks": 1, "type": "passive", "name": "Chrono Flame", "spellId": 431442, "icon": "inv_ability_chronowardenevoker_chronoflame", "index": 100}], "freeNode": true}, {"id": 94948, "name": "Warp", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94935], "prev": [94954], "entries": [{"id": 117545, "definitionId": 122557, "maxRanks": 1, "type": "passive", "name": "Warp", "spellId": 429483, "icon": "ability_evoker_spatialparadox", "index": 100}]}, {"id": 94955, "name": "Temporal Burst", "type": "single", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "requiresNode": 93350, "next": [94947], "prev": [94954], "entries": [{"id": 117552, "definitionId": 122564, "maxRanks": 1, "type": "passive", "name": "Temporal Burst", "spellId": 431695, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 94925, "name": "Reverberations", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94951], "prev": [94954], "entries": [{"id": 117522, "definitionId": 122534, "maxRanks": 1, "type": "passive", "name": "Reverberations", "spellId": 431615, "icon": "ability_evoker_giftoftheaspects", "index": 100}]}, {"id": 94935, "name": "Temporality / Motes of Acceleration", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94932], "prev": [94948], "entries": [{"id": 117532, "definitionId": 122544, "maxRanks": 1, "type": "passive", "name": "Temporality", "spellId": 431873, "icon": "ability_evoker_return", "index": 100}, {"id": 117784, "definitionId": 122796, "maxRanks": 1, "type": "passive", "name": "Motes of Acceleration", "spellId": 432008, "icon": "item_timemote_icon", "index": 200}]}, {"id": 94947, "name": "Threads of Fate", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94930], "prev": [94955], "entries": [{"id": 117544, "definitionId": 122556, "maxRanks": 1, "type": "passive", "name": "Threads of Fate", "spellId": 431715, "icon": "ability_evoker_sandsoftime", "index": 100}]}, {"id": 94951, "name": "Primacy", "type": "single", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94942], "prev": [94925], "entries": [{"id": 117548, "definitionId": 122560, "maxRanks": 1, "type": "passive", "name": "Primacy", "spellId": 431657, "icon": "inv_misc_pocketwatch_01", "index": 100}]}, {"id": 94932, "name": "Double-time / Time Convergence", "type": "choice", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94935], "entries": [{"id": 117529, "definitionId": 122541, "maxRanks": 1, "type": "passive", "name": "Double-time", "spellId": 431874, "icon": "spell_holy_borrowedtime", "index": 100}, {"id": 117786, "definitionId": 122798, "maxRanks": 1, "type": "passive", "name": "Time Convergence", "spellId": 431984, "icon": "ability_evoker_plotthefuture", "index": 200}]}, {"id": 94930, "name": "Master of Destiny / Instability Matrix", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94947], "entries": [{"id": 117527, "definitionId": 122539, "maxRanks": 1, "type": "passive", "name": "Master of Destiny", "spellId": 431840, "icon": "ability_evoker_defyfate", "index": 100}, {"id": 126310, "definitionId": 131136, "maxRanks": 1, "type": "passive", "name": "Instability Matrix", "spellId": 431484, "icon": "ability_dragonriding_bronzerewind01", "index": 200}]}, {"id": 94942, "name": "Golden Opportunity", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94951], "entries": [{"id": 117539, "definitionId": 122551, "maxRanks": 1, "type": "passive", "name": "Golden Opportunity", "spellId": 432004, "icon": "achievement_faction_goldenlotus", "index": 100}]}, {"id": 94929, "name": "Afterimage", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 38, "next": [], "prev": [94930, 94932, 94942], "entries": [{"id": 117526, "definitionId": 122538, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 431875, "icon": "ability_evoker_livingflame", "index": 100}]}], "subTreeNodes": [{"id": 99826, "name": "Chronowarden / Flameshaper", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123335, "type": "subtree", "name": "Chronowarden", "traitSubTreeId": 38, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-chronowarden", "nodes": [94954, 94948, 94955, 94925, 94935, 94947, 94951, 94932, 94930, 94942, 94929]}, {"id": 123332, "type": "subtree", "name": "Flameshaper", "traitSubTreeId": 37, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-flameshaper", "nodes": [94950, 94937, 99857, 94956, 94949, 94946, 94923, 94920, 94945, 94931, 94922]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93297, 93298, 93299, 93300, 93301, 93302, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249, 103843, 103844]}, {"traitTreeId": 872, "className": "Evoker", "classId": 13, "specName": "Augmentation", "specId": 1473, "classNodes": [{"id": 93305, "name": "Landslide", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93312], "prev": [], "entries": [{"id": 115614, "definitionId": 120626, "maxRanks": 1, "type": "active", "name": "Landslide", "spellId": 358385, "icon": "ability_earthen_pillar", "index": 100}], "freeNode": true}, {"id": 93304, "name": "Obsidian Scales", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103843], "prev": [], "entries": [{"id": 115613, "definitionId": 120625, "maxRanks": 1, "type": "active", "name": "Obsidian Scales", "spellId": 363916, "icon": "inv_artifact_dragonscales", "index": 100}], "freeNode": true}, {"id": 93306, "name": "Expunge", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93341], "prev": [], "entries": [{"id": 115615, "definitionId": 120627, "maxRanks": 1, "type": "active", "name": "Expunge", "spellId": 365585, "icon": "ability_evoker_fontofmagic_green", "index": 100}]}, {"id": 93312, "name": "Natural Convergence", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [93270, 93302, 93311], "prev": [93305], "entries": [{"id": 115621, "definitionId": 120633, "maxRanks": 1, "type": "passive", "name": "Natural Convergence", "spellId": 369913, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 103843, "name": "Heavy Wingbeats", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [93302, 93289, 93295], "prev": [93304], "entries": [{"id": 128216, "definitionId": 133023, "maxRanks": 1, "type": "passive", "name": "Heavy Wingbeats", "spellId": 368838, "icon": "ability_racial_wingbuffet", "index": 100}]}, {"id": 93341, "name": "Verdant Embrace", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [93295, 93340, 93294], "prev": [93306], "entries": [{"id": 115655, "definitionId": 120667, "maxRanks": 1, "type": "active", "name": "Verdant Embrace", "spellId": 360995, "icon": "ability_evoker_rescue", "index": 100}]}, {"id": 93270, "name": "Forger of Mountains", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93312], "entries": [{"id": 115576, "definitionId": 120588, "maxRanks": 1, "type": "passive", "name": "Forger of Mountains", "spellId": 375528, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 93302, "name": "Innate Magic", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [93311, 93301, 103844], "prev": [93312, 103843], "entries": [{"id": 115611, "definitionId": 120623, "maxRanks": 2, "type": "passive", "name": "Innate Magic", "spellId": 375520, "icon": "ability_evoker_innatemagic4", "index": 100}]}, {"id": 93289, "name": "Obsidian Bulwark", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [], "prev": [103843], "entries": [{"id": 115597, "definitionId": 120609, "maxRanks": 1, "type": "passive", "name": "Obsidian Bulwark", "spellId": 375406, "icon": "inv_shield_1h_revenantfire_d_01", "index": 100}]}, {"id": 93295, "name": "Enkindled", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [103844, 93290, 93294], "prev": [93341, 103843], "entries": [{"id": 115603, "definitionId": 120615, "maxRanks": 2, "type": "passive", "name": "Enkindled", "spellId": 375554, "icon": "ability_evoker_livingflame", "index": 100}]}, {"id": 93340, "name": "Scarlet Adaptation", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [], "prev": [93341], "entries": [{"id": 115654, "definitionId": 120666, "maxRanks": 1, "type": "passive", "name": "Scarlet Adaptation", "spellId": 372469, "icon": "inv_bijou_red", "index": 100}]}, {"id": 93311, "name": "Quell", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [93271, 93310], "prev": [93312, 93302], "entries": [{"id": 115620, "definitionId": 120632, "maxRanks": 1, "type": "active", "name": "Quell", "spellId": 351338, "icon": "ability_evoker_quell", "index": 100}]}, {"id": 93301, "name": "Recall", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [93355], "prev": [93302], "entries": [{"id": 115610, "definitionId": 120622, "maxRanks": 1, "type": "passive", "name": "Recall", "spellId": 371806, "icon": "ability_evoker_recall", "index": 100}]}, {"id": 103844, "name": "Clobbering Sweep", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [], "prev": [93295, 93302], "entries": [{"id": 128217, "definitionId": 133024, "maxRanks": 1, "type": "passive", "name": "Clobbering Sweep", "spellId": 375443, "icon": "ability_racial_tailswipe", "index": 100}]}, {"id": 93290, "name": "Tailwind", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [93349], "prev": [93295], "entries": [{"id": 115598, "definitionId": 120610, "maxRanks": 1, "type": "passive", "name": "Tailwind", "spellId": 375556, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 93294, "name": "Cauterizing Flame", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [93292, 93293], "prev": [93295, 93341], "entries": [{"id": 115602, "definitionId": 120614, "maxRanks": 1, "type": "active", "name": "Cauterizing Flame", "spellId": 374251, "icon": "ability_evoker_fontofmagic_red", "index": 100}]}, {"id": 93271, "name": "Ancient Flame", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93311], "entries": [{"id": 115577, "definitionId": 120589, "maxRanks": 1, "type": "passive", "name": "Ancient Flame", "spellId": 369990, "icon": "inv_elemental_mote_fire01", "index": 100}]}, {"id": 93310, "name": "Instinctive Arcana", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93353], "prev": [93311], "entries": [{"id": 115619, "definitionId": 120631, "maxRanks": 2, "type": "passive", "name": "Instinctive Arcana", "spellId": 376164, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 93350, "name": "Tip the Scales", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "entryNode": true, "next": [93355, 93300, 93349], "prev": [], "entries": [{"id": 115665, "definitionId": 120677, "maxRanks": 1, "type": "active", "name": "Tip the Scales", "spellId": 370553, "icon": "ability_evoker_tipthescales", "index": 100}]}, {"id": 93292, "name": "Attuned to the Dream", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [93291], "prev": [93294], "entries": [{"id": 115600, "definitionId": 120612, "maxRanks": 2, "type": "passive", "name": "Attuned to the Dream", "spellId": 376930, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 93293, "name": "Sleep Walk", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93294], "entries": [{"id": 115601, "definitionId": 120613, "maxRanks": 1, "type": "active", "name": "Sleep Walk", "spellId": 360806, "icon": "ability_xavius_dreamsimulacrum", "index": 100}]}, {"id": 93353, "name": "Regenerative Magic", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93309], "prev": [93310], "entries": [{"id": 115668, "definitionId": 120680, "maxRanks": 1, "type": "passive", "name": "Regenerative Magic", "spellId": 387787, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 93355, "name": "Inherent Resistance", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93309, 93299], "prev": [93301, 93350], "entries": [{"id": 115670, "definitionId": 120682, "maxRanks": 2, "type": "passive", "name": "Inherent Resistance", "spellId": 375544, "icon": "inv_misc_rubysanctum1", "index": 100}]}, {"id": 93300, "name": "Draconic Legacy", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93354], "prev": [93350], "entries": [{"id": 115609, "definitionId": 120621, "maxRanks": 1, "type": "passive", "name": "Draconic Legacy", "spellId": 376166, "icon": "inv_helm_mail_dracthyrquest_b_02", "index": 100}]}, {"id": 93349, "name": "Extended Flight", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [93286, 93348], "prev": [93290, 93350], "entries": [{"id": 115664, "definitionId": 120676, "maxRanks": 2, "type": "passive", "name": "Extended Flight", "spellId": 375517, "icon": "ability_evoker_hover", "index": 100}]}, {"id": 93291, "name": "Bountiful Bloom", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93348], "prev": [93292], "entries": [{"id": 115599, "definitionId": 120611, "maxRanks": 1, "type": "passive", "name": "Bountiful Bloom", "spellId": 370886, "icon": "ability_evoker_emeraldblossom", "index": 100}]}, {"id": 93309, "name": "Blast Furnace", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93308, 93307, 93298], "prev": [93355, 93353], "entries": [{"id": 115618, "definitionId": 120630, "maxRanks": 1, "type": "passive", "name": "Blast Furnace", "spellId": 375510, "icon": "ability_evoker_firebreath", "index": 100}]}, {"id": 93299, "name": "Exuberance", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298], "prev": [93355], "entries": [{"id": 115608, "definitionId": 120620, "maxRanks": 1, "type": "passive", "name": "Exuberance", "spellId": 375542, "icon": "ability_evoker_hover2", "index": 100}]}, {"id": 93354, "name": "Renewing Blaze", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93298, 93345, 93288], "prev": [93300], "entries": [{"id": 115669, "definitionId": 120681, "maxRanks": 1, "type": "active", "name": "Renewing Blaze", "spellId": 374348, "icon": "ability_evoker_masterylifebinder_red", "index": 100}]}, {"id": 93286, "name": "Walloping Blow", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288], "prev": [93349], "entries": [{"id": 115594, "definitionId": 120606, "maxRanks": 1, "type": "passive", "name": "Walloping Blow", "spellId": 387341, "icon": "inv_misc_monsterscales_06", "index": 100}]}, {"id": 93348, "name": "Panacea", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93288, 93347, 93344], "prev": [93291, 93349], "entries": [{"id": 115663, "definitionId": 120675, "maxRanks": 1, "type": "passive", "name": "Panacea", "spellId": 387761, "icon": "ability_druid_protectionofthegrove", "index": 100}]}, {"id": 93308, "name": "Unravel", "type": "single", "posX": 2100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115617, "definitionId": 120629, "maxRanks": 1, "type": "active", "name": "Unravel", "spellId": 368432, "icon": "ability_evoker_unravel", "index": 100}]}, {"id": 93307, "name": "Protracted Talons", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343], "prev": [93309], "entries": [{"id": 115616, "definitionId": 120628, "maxRanks": 1, "type": "passive", "name": "Protracted Talons", "spellId": 369909, "icon": "ability_evoker_azurestrike", "index": 100}]}, {"id": 93298, "name": "Oppressing Roar", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93343, 93297, 93352], "prev": [93299, 93309, 93354], "entries": [{"id": 115607, "definitionId": 120619, "maxRanks": 1, "type": "active", "name": "Oppressing Roar", "spellId": 372048, "icon": "ability_evoker_oppressingroar", "index": 100}]}, {"id": 93345, "name": "Foci of Life / Fire Within", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352], "prev": [93354], "entries": [{"id": 115660, "definitionId": 120672, "maxRanks": 1, "type": "passive", "name": "Foci of Life", "spellId": 375574, "icon": "spell_fire_incinerate", "index": 100}, {"id": 115659, "definitionId": 120671, "maxRanks": 1, "type": "passive", "name": "Fire Within", "spellId": 375577, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 93288, "name": "Rescue", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93352, 93287], "prev": [93348, 93286, 93354], "entries": [{"id": 115596, "definitionId": 120608, "maxRanks": 1, "type": "active", "name": "Rescue", "spellId": 370665, "icon": "ability_evoker_flywithme", "index": 100}]}, {"id": 93347, "name": "Lush Growth", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93346], "prev": [93348], "entries": [{"id": 115662, "definitionId": 120674, "maxRanks": 2, "type": "passive", "name": "Lush Growth", "spellId": 375561, "icon": "inv_staff_2h_bloodelf_c_01", "index": 100}]}, {"id": 93344, "name": "Source of Magic", "type": "single", "posX": 5700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93715], "prev": [93348], "entries": [{"id": 115658, "definitionId": 120670, "maxRanks": 1, "type": "active", "name": "Source of Magic", "spellId": 369459, "icon": "ability_evoker_blue_01", "index": 100}]}, {"id": 93343, "name": "Leaping Flames", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93342], "prev": [93308, 93307, 93298], "entries": [{"id": 115657, "definitionId": 120669, "maxRanks": 1, "type": "passive", "name": "Leaping Flames", "spellId": 369939, "icon": "spell_fire_flare", "index": 100}]}, {"id": 93297, "name": "Overawe", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93298], "entries": [{"id": 115606, "definitionId": 120618, "maxRanks": 1, "type": "passive", "name": "Overawe", "spellId": 374346, "icon": "ability_evoker_oppressingroar2", "index": 100}]}, {"id": 93352, "name": "Aerial Mastery", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93351], "prev": [93288, 93298, 93345], "entries": [{"id": 115667, "definitionId": 120679, "maxRanks": 1, "type": "passive", "name": "Aerial Mastery", "spellId": 365933, "icon": "ability_evoker_aerialmastery", "index": 100}]}, {"id": 93287, "name": "Twin Guardian", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93288], "entries": [{"id": 115595, "definitionId": 120607, "maxRanks": 1, "type": "passive", "name": "Twin Guardian", "spellId": 370888, "icon": "ability_skyreach_shielded", "index": 100}]}, {"id": 93715, "name": "Potent Mana", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93346], "prev": [93344], "entries": [{"id": 116103, "definitionId": 121115, "maxRanks": 1, "type": "passive", "name": "Potent Mana", "spellId": 418101, "icon": "spell_magic_managain", "index": 100}]}, {"id": 93342, "name": "Terror of the Skies", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93343], "entries": [{"id": 115656, "definitionId": 120668, "maxRanks": 1, "type": "passive", "name": "Terror of the Skies", "spellId": 371032, "icon": "ability_evoker_terroroftheskies", "index": 100}]}, {"id": 93351, "name": "Time Spiral / Spatial Paradox", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93352], "entries": [{"id": 115666, "definitionId": 120678, "maxRanks": 1, "type": "active", "name": "Time Spiral", "spellId": 374968, "icon": "ability_evoker_timespiral", "index": 100}, {"id": 125610, "definitionId": 130442, "maxRanks": 1, "type": "active", "name": "Spatial Paradox", "spellId": 406732, "icon": "ability_evoker_stretchtime", "index": 100}]}, {"id": 93346, "name": "Zephyr", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93347, 93287, 93715], "entries": [{"id": 115661, "definitionId": 120673, "maxRanks": 1, "type": "active", "name": "Zephyr", "spellId": 374227, "icon": "ability_evoker_hoverblack", "index": 100}]}], "specNodes": [{"id": 93196, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 93198, "name": "Ebon Might", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [93200, 93220], "prev": [], "entries": [{"id": 115496, "definitionId": 120508, "maxRanks": 1, "type": "active", "name": "Ebon Might", "spellId": 395152, "icon": "spell_sarkareth", "index": 100}]}, {"id": 93200, "name": "Eruption", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [93199, 93208], "prev": [93198], "entries": [{"id": 115498, "definitionId": 120510, "maxRanks": 1, "type": "active", "name": "Eruption", "spellId": 395160, "icon": "ability_evoker_eruption", "index": 100}]}, {"id": 93220, "name": "Essence Burst", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93219, 93221], "prev": [93198], "entries": [{"id": 115520, "definitionId": 120532, "maxRanks": 1, "type": "passive", "name": "Essence Burst", "spellId": 396187, "icon": "ability_evoker_essenceburst", "index": 100}]}, {"id": 93199, "name": "Imposing Presence / Inner Radiance", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [93203], "prev": [93200], "entries": [{"id": 115497, "definitionId": 120509, "maxRanks": 1, "type": "passive", "name": "Imposing Presence", "spellId": 371016, "icon": "ability_evoker_quell", "index": 100}, {"id": 115690, "definitionId": 120702, "maxRanks": 1, "type": "passive", "name": "Inner Radiance", "spellId": 386405, "icon": "spell_holy_spellwarding", "index": 200}]}, {"id": 93208, "name": "Ricocheting Pyroclast", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [93203, 93234], "prev": [93200], "entries": [{"id": 115507, "definitionId": 120519, "maxRanks": 1, "type": "passive", "name": "Ricocheting Pyroclast", "spellId": 406659, "icon": "ability_rhyolith_volcano", "index": 100}]}, {"id": 93219, "name": "Essence Attunement", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [93234, 93222], "prev": [93220], "entries": [{"id": 115519, "definitionId": 120531, "maxRanks": 1, "type": "passive", "name": "Essence Attunement", "spellId": 375722, "icon": "ability_evoker_essenceburststacks", "index": 100}]}, {"id": 93221, "name": "Pupil of Alexstrasza / Echoing Strike", "type": "choice", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [93222], "prev": [93220], "entries": [{"id": 115521, "definitionId": 120533, "maxRanks": 1, "type": "passive", "name": "Pupil of Alexstrasza", "spellId": 407814, "icon": "ability_evoker_pupilofalexstraza", "index": 100}, {"id": 115680, "definitionId": 120692, "maxRanks": 1, "type": "passive", "name": "Echoing Strike", "spellId": 410784, "icon": "ability_evoker_echoingstrike", "index": 200}]}, {"id": 93203, "name": "Upheaval", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [93368, 93201, 93206], "prev": [93208, 93199], "entries": [{"id": 115502, "definitionId": 120514, "maxRanks": 1, "type": "active", "name": "Upheaval", "spellId": 396286, "icon": "ability_evoker_upheaval", "index": 100}]}, {"id": 93234, "name": "Breath of Eons", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [93235, 93382], "prev": [93219, 93208], "entries": [{"id": 115536, "definitionId": 120548, "maxRanks": 1, "type": "active", "name": "Breath of Eons", "spellId": 403631, "icon": "ability_evoker_breathofeons", "index": 100}]}, {"id": 93222, "name": "Defy Fate", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [93382, 93360, 93195], "prev": [93221, 93219], "entries": [{"id": 115522, "definitionId": 120534, "maxRanks": 1, "type": "passive", "name": "Defy Fate", "spellId": 404195, "icon": "ability_evoker_defyfate", "index": 100}]}, {"id": 93368, "name": "Seismic Slam", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209, 93202], "prev": [93203], "entries": [{"id": 115688, "definitionId": 120700, "maxRanks": 1, "type": "passive", "name": "Seismic Slam", "spellId": 408543, "icon": "ability_evoker_seismicslam", "index": 100}]}, {"id": 93201, "name": "Power Nexus", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209], "prev": [93203], "entries": [{"id": 115499, "definitionId": 120511, "maxRanks": 1, "type": "passive", "name": "Power Nexus", "spellId": 369908, "icon": "ability_evoker_powernexus", "index": 100}]}, {"id": 93206, "name": "Volcanism", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93209, 93218], "prev": [93203], "entries": [{"id": 115505, "definitionId": 120517, "maxRanks": 1, "type": "passive", "name": "Volcanism", "spellId": 406904, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 93235, "name": "Perilous Fate / Chrono Ward", "type": "choice", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93218], "prev": [93234], "entries": [{"id": 115537, "definitionId": 120549, "maxRanks": 1, "type": "passive", "name": "Perilous Fate", "spellId": 410253, "icon": "spell_shadow_lastingafflictions", "index": 100}, {"id": 115706, "definitionId": 120718, "maxRanks": 1, "type": "passive", "name": "Chrono Ward", "spellId": 409676, "icon": "ability_evoker_bronze_01", "index": 200}]}, {"id": 93382, "name": "Stretch Time", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93218, 93358], "prev": [93222, 93234], "entries": [{"id": 115534, "definitionId": 120546, "maxRanks": 1, "type": "passive", "name": "Stretch Time", "spellId": 410352, "icon": "ability_evoker_timedilation", "index": 100}]}, {"id": 93360, "name": "Timelessness", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93358], "prev": [93222], "entries": [{"id": 115679, "definitionId": 120691, "maxRanks": 1, "type": "active", "name": "Timelessness", "spellId": 412710, "icon": "ability_evoker_timelessness", "index": 100}]}, {"id": 93195, "name": "Bestow Weyrnstone", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93358], "prev": [93222], "entries": [{"id": 115493, "definitionId": 120505, "maxRanks": 1, "type": "active", "name": "Bestow Weyrnstone", "spellId": 408233, "icon": "ability_evoker_bestowweyrnstone", "index": 100}]}, {"id": 93209, "name": "Blistering Scales", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93202, 93211, 93207], "prev": [93368, 93206, 93201], "entries": [{"id": 115508, "definitionId": 120520, "maxRanks": 1, "type": "active", "name": "Blistering Scales", "spellId": 360827, "icon": "ability_evoker_blisteringscales", "index": 100}]}, {"id": 93218, "name": "Draconic Attunements", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93207, 93217, 93225], "prev": [93206, 93235, 93382], "entries": [{"id": 115518, "definitionId": 120530, "maxRanks": 1, "type": "active", "name": "Draconic Attunements", "spellId": 403208, "icon": "ability_evoker_draconicattunements", "index": 100}]}, {"id": 93358, "name": "Prescience", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93225, 93367, 93215], "prev": [93360, 93195, 93382], "entries": [{"id": 115675, "definitionId": 120687, "maxRanks": 1, "type": "active", "name": "Prescience", "spellId": 409311, "icon": "ability_evoker_prescience", "index": 100}]}, {"id": 93202, "name": "Unyielding Domain / Tectonic Locus", "type": "choice", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [93209, 93368], "entries": [{"id": 115501, "definitionId": 120513, "maxRanks": 1, "type": "passive", "name": "Unyielding Domain", "spellId": 412733, "icon": "spell_shaman_stormearthfire", "index": 100}, {"id": 115500, "definitionId": 120512, "maxRanks": 1, "type": "passive", "name": "Tectonic Locus", "spellId": 408002, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 93211, "name": "Regenerative Chitin / Molten Blood", "type": "choice", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93210, 93231, 93212], "prev": [93209], "entries": [{"id": 115511, "definitionId": 120523, "maxRanks": 1, "type": "passive", "name": "Regenerative Chitin", "spellId": 406907, "icon": "inv_tradeskill_skinning_prismaticscale", "index": 100}, {"id": 115510, "definitionId": 120522, "maxRanks": 1, "type": "passive", "name": "Molten Blood", "spellId": 410643, "icon": "spell_shaman_spewlava", "index": 200}]}, {"id": 93207, "name": "Momentum Shift", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93212], "prev": [93218, 93209], "entries": [{"id": 115506, "definitionId": 120518, "maxRanks": 1, "type": "passive", "name": "Momentum Shift", "spellId": 408004, "icon": "ability_priest_voidshift", "index": 100}]}, {"id": 93217, "name": "Aspects' Favor", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [93212, 93230], "prev": [93218], "entries": [{"id": 115517, "definitionId": 120529, "maxRanks": 2, "type": "passive", "name": "Aspects' Favor", "spellId": 407243, "icon": "ability_evoker_aspectsfavor", "index": 100}]}, {"id": 93225, "name": "Arcane Reach", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93230], "prev": [93358, 93218], "entries": [{"id": 115526, "definitionId": 120538, "maxRanks": 1, "type": "passive", "name": "Arcane Reach", "spellId": 454983, "icon": "classicon_evoker", "index": 100}]}, {"id": 93367, "name": "Fate Mirror", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93230, 93223], "prev": [93358], "entries": [{"id": 115685, "definitionId": 120697, "maxRanks": 1, "type": "passive", "name": "Fate Mirror", "spellId": 412774, "icon": "trade_archaeology_highbornesoulmirror", "index": 100}]}, {"id": 93215, "name": "Symbiotic Bloom", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [93359], "prev": [93358], "entries": [{"id": 115515, "definitionId": 120527, "maxRanks": 2, "type": "passive", "name": "Symbiotic Bloom", "spellId": 410685, "icon": "inv_10_herb_seed_magiccolor5", "index": 100}]}, {"id": 93210, "name": "Reactive Hide", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229], "prev": [93211], "entries": [{"id": 115509, "definitionId": 120521, "maxRanks": 1, "type": "passive", "name": "Reactive Hide", "spellId": 409329, "icon": "ability_evoker_reactivehide", "index": 100}]}, {"id": 93231, "name": "Font of Magic", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229], "prev": [93211], "entries": [{"id": 115532, "definitionId": 120544, "maxRanks": 1, "type": "passive", "name": "Font of Magic", "spellId": 408083, "icon": "ability_evoker_fontofmagic", "index": 100}]}, {"id": 93212, "name": "Hoarded Power", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93229, 102248, 93232], "prev": [93217, 93211, 93207], "entries": [{"id": 115512, "definitionId": 120524, "maxRanks": 1, "type": "passive", "name": "Hoarded Power", "spellId": 375796, "icon": "ability_evoker_innatemagic2", "index": 100}]}, {"id": 93230, "name": "Ignition Rush", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93232, 93227], "prev": [93217, 93367, 93225], "entries": [{"id": 115531, "definitionId": 120543, "maxRanks": 1, "type": "passive", "name": "Ignition Rush", "spellId": 408775, "icon": "spell_fire_immolation", "index": 100}]}, {"id": 93223, "name": "Anachronism", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93227, 93197], "prev": [93367], "entries": [{"id": 115523, "definitionId": 120535, "maxRanks": 1, "type": "passive", "name": "Anachronism", "spellId": 407869, "icon": "ability_evoker_essenceburst6", "index": 100}]}, {"id": 93359, "name": "Prolong Life / Dream of Spring", "type": "choice", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93197], "prev": [93215], "entries": [{"id": 115678, "definitionId": 120690, "maxRanks": 1, "type": "passive", "name": "Prolong Life", "spellId": 410687, "icon": "ability_evoker_reversion_green", "index": 100}, {"id": 115881, "definitionId": 120893, "maxRanks": 1, "type": "passive", "name": "Dream of Spring", "spellId": 414969, "icon": "ability_evoker_masterylifebinder", "index": 200}]}, {"id": 93229, "name": "Accretion", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93205], "prev": [93212, 93210, 93231], "entries": [{"id": 115530, "definitionId": 120542, "maxRanks": 1, "type": "passive", "name": "Accretion", "spellId": 407876, "icon": "ability_evoker_accretion", "index": 100}]}, {"id": 102248, "name": "Imminent Destruction", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93226], "prev": [93212], "entries": [{"id": 126304, "definitionId": 131130, "maxRanks": 1, "type": "passive", "name": "Imminent Destruction", "spellId": 459537, "icon": "spell_burningbladeshaman_blazing_radiance", "index": 100}]}, {"id": 93232, "name": "Time Skip", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93369], "prev": [93230, 93212], "entries": [{"id": 115533, "definitionId": 120545, "maxRanks": 1, "type": "active", "name": "Time Skip", "spellId": 404977, "icon": "ability_evoker_timeskip", "index": 100}]}, {"id": 93227, "name": "Motes of Possibility", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93213], "prev": [93230, 93223], "entries": [{"id": 115528, "definitionId": 120540, "maxRanks": 1, "type": "passive", "name": "Motes of Possibility", "spellId": 409267, "icon": "ability_evoker_motesofpossibility", "index": 100}]}, {"id": 93197, "name": "Inferno's Blessing", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102249], "prev": [93223, 93359], "entries": [{"id": 115495, "definitionId": 120507, "maxRanks": 1, "type": "passive", "name": "Inferno's Blessing", "spellId": 410261, "icon": "ability_evoker_infernosblessing", "index": 100}]}, {"id": 93205, "name": "Rumbling Earth", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93229], "entries": [{"id": 115504, "definitionId": 120516, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 459120, "icon": "ability_evoker_geomancy", "index": 100}]}, {"id": 93226, "name": "Plot the Future", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102248], "entries": [{"id": 115527, "definitionId": 120539, "maxRanks": 1, "type": "passive", "name": "Plot the Future", "spellId": 407866, "icon": "ability_evoker_plotthefuture", "index": 100}]}, {"id": 93369, "name": "Tomorrow, Today / Interwoven Threads", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93232], "entries": [{"id": 115687, "definitionId": 120699, "maxRanks": 1, "type": "passive", "name": "Tomorrow, Today", "spellId": 412723, "icon": "ability_evoker_rewind2", "index": 100}, {"id": 115686, "definitionId": 120698, "maxRanks": 1, "type": "passive", "name": "Interwoven Threads", "spellId": 412713, "icon": "inv_enchant_optionalreagent_01", "index": 200}]}, {"id": 93213, "name": "Overlord", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93227], "entries": [{"id": 115513, "definitionId": 120525, "maxRanks": 1, "type": "passive", "name": "Overlord", "spellId": 410260, "icon": "ability_evoker_overlord", "index": 100}]}, {"id": 102249, "name": "Molten Embers", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93197], "entries": [{"id": 126305, "definitionId": 131131, "maxRanks": 1, "type": "passive", "name": "Molten Embers", "spellId": 459725, "icon": "ability_evoker_earthensky", "index": 100}]}], "heroNodes": [{"id": 98931, "name": "Mass Eruption", "type": "single", "posX": 15000, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 36, "next": [94952, 94936, 94944], "prev": [], "entries": [{"id": 122279, "definitionId": 127179, "maxRanks": 1, "type": "passive", "name": "Mass Eruption", "spellId": 438587, "icon": "ability_evoker_eruption", "index": 100}], "freeNode": true}, {"id": 94952, "name": "Might of the Black Dragonflight", "type": "single", "posX": 14400, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94921], "prev": [94939, 98931], "entries": [{"id": 117549, "definitionId": 122561, "maxRanks": 1, "type": "passive", "name": "Might of the Black Dragonflight", "spellId": 441705, "icon": "ability_evoker_blackattunementalt", "index": 100}]}, {"id": 94936, "name": "Bombardments", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94953], "prev": [94939, 98931], "entries": [{"id": 117533, "definitionId": 122545, "maxRanks": 1, "type": "passive", "name": "Bombardments", "spellId": 434300, "icon": "inv_ability_scalecommanderevoker_bombardments", "index": 100}]}, {"id": 94944, "name": "Onslaught", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 36, "next": [94934], "prev": [94939, 98931], "entries": [{"id": 117541, "definitionId": 122553, "maxRanks": 1, "type": "passive", "name": "Onslaught", "spellId": 441245, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 94921, "name": "Melt Armor", "type": "single", "posX": 14400, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94933], "prev": [94952], "entries": [{"id": 117518, "definitionId": 122530, "maxRanks": 1, "type": "passive", "name": "Melt Armor", "spellId": 441176, "icon": "inv_10_gearupgrade_drakesshadowflameenhancedcrest", "index": 100}]}, {"id": 94953, "name": "Wingleader", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94928], "prev": [94936], "entries": [{"id": 117550, "definitionId": 122562, "maxRanks": 1, "type": "passive", "name": "Wingleader", "spellId": 441206, "icon": "ability_racial_soar", "index": 100}]}, {"id": 94934, "name": "Unrelenting Siege", "type": "single", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 36, "next": [94943], "prev": [94944], "entries": [{"id": 117531, "definitionId": 122543, "maxRanks": 1, "type": "passive", "name": "Unrelenting Siege", "spellId": 441246, "icon": "ability_siege_engineer_superheated", "index": 100}]}, {"id": 94933, "name": "Hardened Scales / Menacing Presence", "type": "choice", "posX": 14400, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94921], "entries": [{"id": 117530, "definitionId": 122542, "maxRanks": 1, "type": "passive", "name": "Hardened Scales", "spellId": 441180, "icon": "inv_10_skinning_scales_black", "index": 100}, {"id": 120125, "definitionId": 125025, "maxRanks": 1, "type": "passive", "name": "Menacing Presence", "spellId": 441181, "icon": "ability_racial_wingbuffet", "index": 200}]}, {"id": 94928, "name": "Extended Battle / Diverted Power", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94953], "entries": [{"id": 117525, "definitionId": 122537, "maxRanks": 1, "type": "passive", "name": "Extended Battle", "spellId": 441212, "icon": "ability_evoker_divideandconquer", "index": 100}, {"id": 120124, "definitionId": 125024, "maxRanks": 1, "type": "passive", "name": "Diverted Power", "spellId": 441219, "icon": "ability_evoker_powerswell", "index": 200}]}, {"id": 94943, "name": "Nimble Flyer / Slipstream", "type": "choice", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 36, "next": [94941], "prev": [94934], "entries": [{"id": 117540, "definitionId": 122552, "maxRanks": 1, "type": "passive", "name": "Nimble Flyer", "spellId": 441253, "icon": "ability_evoker_hover", "index": 100}, {"id": 120123, "definitionId": 125023, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 441257, "icon": "ability_dragonriding_barrelroll01", "index": 200}]}, {"id": 94941, "name": "Maneuverability", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 36, "next": [], "prev": [94928, 94933, 94943], "entries": [{"id": 117538, "definitionId": 122550, "maxRanks": 1, "type": "passive", "name": "Maneuverability", "spellId": 433871, "icon": "ability_evoker_deepbreath", "index": 100}]}, {"id": 94954, "name": "Chrono Flame", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 38, "next": [94955, 94948, 94925], "prev": [], "entries": [{"id": 117551, "definitionId": 122563, "maxRanks": 1, "type": "passive", "name": "Chrono Flame", "spellId": 431442, "icon": "inv_ability_chronowardenevoker_chronoflame", "index": 100}], "freeNode": true}, {"id": 94948, "name": "Warp", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94935], "prev": [94954], "entries": [{"id": 117545, "definitionId": 122557, "maxRanks": 1, "type": "passive", "name": "Warp", "spellId": 429483, "icon": "ability_evoker_spatialparadox", "index": 100}]}, {"id": 94955, "name": "Temporal Burst", "type": "single", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "requiresNode": 93350, "next": [94947], "prev": [94954], "entries": [{"id": 117552, "definitionId": 122564, "maxRanks": 1, "type": "passive", "name": "Temporal Burst", "spellId": 431695, "icon": "ability_evoker_essenceburst5", "index": 100}]}, {"id": 94925, "name": "Reverberations", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 38, "next": [94951], "prev": [94954], "entries": [{"id": 117522, "definitionId": 122534, "maxRanks": 1, "type": "passive", "name": "Reverberations", "spellId": 431615, "icon": "ability_evoker_giftoftheaspects", "index": 100}]}, {"id": 94935, "name": "Temporality / Motes of Acceleration", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94932], "prev": [94948], "entries": [{"id": 117532, "definitionId": 122544, "maxRanks": 1, "type": "passive", "name": "Temporality", "spellId": 431873, "icon": "ability_evoker_return", "index": 100}, {"id": 117784, "definitionId": 122796, "maxRanks": 1, "type": "passive", "name": "Motes of Acceleration", "spellId": 432008, "icon": "item_timemote_icon", "index": 200}]}, {"id": 94947, "name": "Threads of Fate", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94930], "prev": [94955], "entries": [{"id": 117544, "definitionId": 122556, "maxRanks": 1, "type": "passive", "name": "Threads of Fate", "spellId": 431715, "icon": "ability_evoker_sandsoftime", "index": 100}]}, {"id": 94951, "name": "Primacy", "type": "single", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 38, "next": [94942], "prev": [94925], "entries": [{"id": 117548, "definitionId": 122560, "maxRanks": 1, "type": "passive", "name": "Primacy", "spellId": 431657, "icon": "inv_misc_pocketwatch_01", "index": 100}]}, {"id": 94932, "name": "Double-time / Time Convergence", "type": "choice", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94935], "entries": [{"id": 117529, "definitionId": 122541, "maxRanks": 1, "type": "passive", "name": "Double-time", "spellId": 431874, "icon": "spell_holy_borrowedtime", "index": 100}, {"id": 117786, "definitionId": 122798, "maxRanks": 1, "type": "passive", "name": "Time Convergence", "spellId": 431984, "icon": "ability_evoker_plotthefuture", "index": 200}]}, {"id": 94930, "name": "Master of Destiny / Instability Matrix", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94947], "entries": [{"id": 117527, "definitionId": 122539, "maxRanks": 1, "type": "passive", "name": "Master of Destiny", "spellId": 431840, "icon": "ability_evoker_defyfate", "index": 100}, {"id": 126310, "definitionId": 131136, "maxRanks": 1, "type": "passive", "name": "Instability Matrix", "spellId": 431484, "icon": "ability_dragonriding_bronzerewind01", "index": 200}]}, {"id": 94942, "name": "Golden Opportunity", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 38, "next": [94929], "prev": [94951], "entries": [{"id": 117539, "definitionId": 122551, "maxRanks": 1, "type": "passive", "name": "Golden Opportunity", "spellId": 432004, "icon": "achievement_faction_goldenlotus", "index": 100}]}, {"id": 94929, "name": "Afterimage", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 38, "next": [], "prev": [94930, 94932, 94942], "entries": [{"id": 117526, "definitionId": 122538, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 431875, "icon": "ability_evoker_livingflame", "index": 100}]}], "subTreeNodes": [{"id": 99825, "name": "Chronowarden / Scalecommander", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123334, "type": "subtree", "name": "Chronowarden", "traitSubTreeId": 38, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-chronowarden", "nodes": [94954, 94948, 94955, 94925, 94935, 94947, 94951, 94932, 94930, 94942, 94929]}, {"id": 123331, "type": "subtree", "name": "Scalecommander", "traitSubTreeId": 36, "traitTreeId": 872, "atlasMemberName": "talents-heroclass-evoker-scalecommander", "nodes": [94939, 98931, 94952, 94936, 94944, 94921, 94953, 94934, 94933, 94928, 94943, 94941]}]}], "fullNodeOrder": [93195, 93196, 93197, 93198, 93199, 93200, 93201, 93202, 93203, 93205, 93206, 93207, 93208, 93209, 93210, 93211, 93212, 93213, 93215, 93217, 93218, 93219, 93220, 93221, 93222, 93223, 93225, 93226, 93227, 93229, 93230, 93231, 93232, 93234, 93235, 93236, 93237, 93238, 93239, 93240, 93241, 93242, 93243, 93244, 93245, 93246, 93247, 93248, 93249, 93250, 93251, 93252, 93253, 93254, 93255, 93256, 93257, 93258, 93259, 93260, 93261, 93262, 93263, 93264, 93265, 93266, 93267, 93268, 93269, 93270, 93271, 93272, 93273, 93274, 93275, 93276, 93277, 93278, 93279, 93280, 93281, 93282, 93283, 93284, 93285, 93286, 93287, 93288, 93289, 93290, 93291, 93292, 93293, 93294, 93295, 93297, 93298, 93299, 93300, 93301, 93302, 93304, 93305, 93306, 93307, 93308, 93309, 93310, 93311, 93312, 93313, 93314, 93315, 93316, 93317, 93318, 93319, 93320, 93321, 93322, 93323, 93324, 93325, 93326, 93327, 93328, 93329, 93330, 93331, 93332, 93333, 93334, 93335, 93336, 93337, 93338, 93339, 93340, 93341, 93342, 93343, 93344, 93345, 93346, 93347, 93348, 93349, 93350, 93351, 93352, 93353, 93354, 93355, 93358, 93359, 93360, 93365, 93366, 93367, 93368, 93369, 93382, 93715, 94920, 94921, 94922, 94923, 94925, 94928, 94929, 94930, 94931, 94932, 94933, 94934, 94935, 94936, 94937, 94939, 94941, 94942, 94943, 94944, 94945, 94946, 94947, 94948, 94949, 94950, 94951, 94952, 94953, 94954, 94955, 94956, 98931, 99803, 99804, 99825, 99826, 99827, 99857, 102248, 102249, 103843, 103844]}, {"traitTreeId": 795, "className": "Priest", "classId": 5, "specName": "Discipline", "specId": 256, "classNodes": [{"id": 82717, "name": "Renew", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82718, 82714], "prev": [], "entries": [{"id": 103869, "definitionId": 108874, "maxRanks": 1, "type": "active", "name": "Renew", "spellId": 139, "icon": "spell_holy_renew", "index": 100}], "freeNode": true}, {"id": 82715, "name": "Dispel Magic", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82714, 82705, 82695], "prev": [], "entries": [{"id": 103867, "definitionId": 108872, "maxRanks": 1, "type": "active", "name": "Dispel Magic", "spellId": 528, "icon": "spell_nature_nullifydisease", "index": 100}]}, {"id": 82713, "name": "Shadowfiend", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82695, 82712], "prev": [], "entries": [{"id": 103865, "definitionId": 108870, "maxRanks": 1, "type": "active", "name": "Shadowfiend", "spellId": 34433, "icon": "spell_shadow_shadowfiend", "index": 100}], "freeNode": true}, {"id": 82718, "name": "Prayer of Mending", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82719, 82701, 82720], "prev": [82717], "entries": [{"id": 103870, "definitionId": 108875, "maxRanks": 1, "type": "active", "name": "Prayer of Mending", "spellId": 33076, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 82714, "name": "Improved Flash Heal", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82701, 82707, 82703], "prev": [82715, 82717], "entries": [{"id": 103866, "definitionId": 108871, "maxRanks": 1, "type": "passive", "name": "Improved Flash Heal", "spellId": 393870, "icon": "spell_holy_heal", "index": 100}]}, {"id": 82705, "name": "Improved Purify", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [82703], "prev": [82715], "entries": [{"id": 103855, "definitionId": 108860, "maxRanks": 1, "type": "passive", "name": "Improved Purify", "spellId": 390632, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 82695, "name": "Psychic Voice / Petrifying Scream", "type": "choice", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82703, 82556], "prev": [82715, 82713], "entries": [{"id": 103845, "definitionId": 108850, "maxRanks": 1, "type": "passive", "name": "Psychic Voice", "spellId": 196704, "icon": "ability_warrior_commandingshout", "index": 100}, {"id": 114588, "definitionId": 119593, "maxRanks": 1, "type": "passive", "name": "Petrifying Scream", "spellId": 55676, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82712, "name": "Shadow Word: Death", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [82556, 82711], "prev": [82713], "entries": [{"id": 103864, "definitionId": 108869, "maxRanks": 1, "type": "active", "name": "Shadow Word: Death", "spellId": 32379, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82719, "name": "Focused Mending", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82720], "prev": [82718], "entries": [{"id": 103871, "definitionId": 108876, "maxRanks": 1, "type": "passive", "name": "Focused Mending", "spellId": 372354, "icon": "achievement_bg_returnxflags_def_wsg", "index": 100}]}, {"id": 82701, "name": "Holy Nova", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82720, 82700, 82716], "prev": [82714, 82718], "entries": [{"id": 103851, "definitionId": 108856, "maxRanks": 1, "type": "active", "name": "Holy Nova", "spellId": 132157, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82707, "name": "Protective Light / From Darkness Comes Light", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82716], "prev": [82714], "entries": [{"id": 103858, "definitionId": 108863, "maxRanks": 1, "type": "passive", "name": "Protective Light", "spellId": 193063, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 103857, "definitionId": 108862, "maxRanks": 1, "type": "passive", "name": "From Darkness Comes Light", "spellId": 390615, "icon": "spell_holy_flashheal", "index": 200}]}, {"id": 82703, "name": "Angelic Feather", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82716, 82693, 82708], "prev": [82714, 82705, 82695], "entries": [{"id": 103853, "definitionId": 108858, "maxRanks": 1, "type": "active", "name": "Angelic Feather", "spellId": 121536, "icon": "ability_priest_angelicfeather", "index": 0}]}, {"id": 82556, "name": "Phantasm", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82708, 82710], "prev": [82695, 82712], "entries": [{"id": 103834, "definitionId": 108839, "maxRanks": 1, "type": "passive", "name": "Phantasm", "spellId": 108942, "icon": "ability_priest_phantasm", "index": 100}]}, {"id": 82711, "name": "Death and Madness", "type": "single", "posX": 6900, "posY": 2700, "maxRanks": 1, "next": [82710, 82688], "prev": [82712], "entries": [{"id": 103863, "definitionId": 108868, "maxRanks": 1, "type": "passive", "name": "Death and Madness", "spellId": 321291, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82720, "name": "Spell Warding / Blessed Recovery", "type": "choice", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [82721, 82699, 82696], "prev": [82718, 82701, 82719], "entries": [{"id": 103872, "definitionId": 108877, "maxRanks": 1, "type": "passive", "name": "Spell Warding", "spellId": 390667, "icon": "spell_holy_spellwarding", "index": 100}, {"id": 103677, "definitionId": 108682, "maxRanks": 1, "type": "passive", "name": "Blessed Recovery", "spellId": 390767, "icon": "spell_holy_blessedrecovery", "index": 200}]}, {"id": 82700, "name": "Rhapsody", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [82699], "prev": [82701], "entries": [{"id": 103850, "definitionId": 108855, "maxRanks": 1, "type": "passive", "name": "Rhapsody", "spellId": 390622, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82716, "name": "Leap of Faith", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [82699, 82702, 82694], "prev": [82703, 82701, 82707], "entries": [{"id": 103868, "definitionId": 108873, "maxRanks": 1, "type": "active", "name": "Leap of Faith", "spellId": 73325, "icon": "priest_spell_leapoffaith_a", "index": 100}]}, {"id": 82693, "name": "Shackle Undead", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [82694], "prev": [82703], "entries": [{"id": 103843, "definitionId": 108848, "maxRanks": 1, "type": "active", "name": "Shackle Undead", "spellId": 9484, "icon": "spell_nature_slow", "index": 100}]}, {"id": 82708, "name": "Sheer Terror / Void Tendrils", "type": "choice", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [82694, 82691], "prev": [82703, 82556], "entries": [{"id": 103860, "definitionId": 108865, "maxRanks": 1, "type": "passive", "name": "Sheer Terror", "spellId": 390919, "icon": "spell_nzinsanity_fearofdeath", "index": 100}, {"id": 103859, "definitionId": 108864, "maxRanks": 1, "type": "active", "name": "Void Tendrils", "spellId": 108920, "icon": "spell_priest_voidtendrils", "index": 200}]}, {"id": 82710, "name": "Mind Control / Dominate Mind", "type": "choice", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [82691, 82689], "prev": [82556, 82711], "entries": [{"id": 103862, "definitionId": 108867, "maxRanks": 1, "type": "active", "name": "Mind Control", "spellId": 605, "icon": "spell_shadow_shadowworddominate", "index": 100}, {"id": 103678, "definitionId": 108683, "maxRanks": 1, "type": "active", "name": "Dominate Mind", "spellId": 205364, "icon": "spell_priest_void_flay", "index": 200}]}, {"id": 82721, "name": "Words of the Pious", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696], "prev": [82720], "entries": [{"id": 103873, "definitionId": 108878, "maxRanks": 1, "type": "passive", "name": "Words of the Pious", "spellId": 377438, "icon": "ability_priest_clarityofwill", "index": 200}]}, {"id": 82699, "name": "Mass Dispel", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696, 82698, 82706], "prev": [82716, 82720, 82700], "entries": [{"id": 103849, "definitionId": 108854, "maxRanks": 1, "type": "active", "name": "Mass Dispel", "spellId": 32375, "icon": "spell_arcane_massdispel", "index": 100}]}, {"id": 82702, "name": "Move with Grace", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706], "prev": [82716], "entries": [{"id": 103852, "definitionId": 108857, "maxRanks": 1, "type": "passive", "name": "Move with Grace", "spellId": 390620, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82694, "name": "Power Infusion", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706, 82683, 82692], "prev": [82716, 82693, 82708], "entries": [{"id": 103844, "definitionId": 108849, "maxRanks": 1, "type": "active", "name": "Power Infusion", "spellId": 10060, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 82691, "name": "Sanguine Teachings / Vampiric Embrace", "type": "choice", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82692, 82690, 82689], "prev": [82710, 82708], "entries": [{"id": 114735, "definitionId": 108846, "maxRanks": 1, "type": "passive", "name": "Sanguine Teachings", "spellId": 373218, "icon": "inv_archaeology_80_zandalari_sanguinetotem", "index": 100}, {"id": 103841, "definitionId": 119742, "maxRanks": 1, "type": "active", "name": "Vampiric Embrace", "spellId": 15286, "icon": "spell_shadow_unsummonbuilding", "index": 200}]}, {"id": 82688, "name": "Tithe Evasion", "type": "single", "posX": 6900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82689], "prev": [82711], "entries": [{"id": 103838, "definitionId": 108843, "maxRanks": 1, "type": "passive", "name": "Tithe Evasion", "spellId": 373223, "icon": "spell_nzinsanity_bloodthirst", "index": 100}]}, {"id": 82696, "name": "Inspiration", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82721, 82699, 82720], "entries": [{"id": 103846, "definitionId": 108851, "maxRanks": 1, "type": "passive", "name": "Inspiration", "spellId": 390676, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 82698, "name": "Mental Agility", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82699], "entries": [{"id": 103848, "definitionId": 108853, "maxRanks": 1, "type": "passive", "name": "Mental Agility", "spellId": 341167, "icon": "spell_holy_dispelmagic", "index": 100}]}, {"id": 82706, "name": "Body and Soul", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697, 82684], "prev": [82694, 82699, 82702], "entries": [{"id": 103856, "definitionId": 108861, "maxRanks": 1, "type": "passive", "name": "Body and Soul", "spellId": 64129, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82683, "name": "Twins of the Sun Priestess", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684], "prev": [82694], "entries": [{"id": 103832, "definitionId": 108837, "maxRanks": 1, "type": "passive", "name": "Twins of the Sun Priestess", "spellId": 373466, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82692, "name": "Void Shield", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684, 82709], "prev": [82691, 82694], "entries": [{"id": 103842, "definitionId": 108847, "maxRanks": 1, "type": "passive", "name": "Void Shield", "spellId": 280749, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 82690, "name": "San'layn", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82691], "entries": [{"id": 103840, "definitionId": 108845, "maxRanks": 1, "type": "passive", "name": "San'layn", "spellId": 199855, "icon": "achievement_boss_lanathel", "index": 100}]}, {"id": 82689, "name": "Apathy", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82710, 82688, 82691], "entries": [{"id": 103839, "definitionId": 108844, "maxRanks": 1, "type": "passive", "name": "Apathy", "spellId": 390668, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 82697, "name": "Unwavering Will", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82678, 82682], "prev": [82706, 82696, 82698], "entries": [{"id": 103847, "definitionId": 108852, "maxRanks": 2, "type": "passive", "name": "Unwavering Will", "spellId": 373456, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 82684, "name": "Twist of Fate", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82682, 82685], "prev": [82706, 82692, 82683], "entries": [{"id": 103833, "definitionId": 108838, "maxRanks": 2, "type": "passive", "name": "Twist of Fate", "spellId": 390972, "icon": "spell_shadow_mindtwisting", "index": 100}]}, {"id": 82709, "name": "Throes of Pain", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82685, 82687], "prev": [82692, 82690, 82689], "entries": [{"id": 103861, "definitionId": 108866, "maxRanks": 2, "type": "passive", "name": "Throes of Pain", "spellId": 377422, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 82678, "name": "Angel's Mercy / Binding Heals", "type": "choice", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82677, 82679], "prev": [82697], "entries": [{"id": 103825, "definitionId": 108830, "maxRanks": 1, "type": "passive", "name": "Angel's Mercy", "spellId": 238100, "icon": "spell_holy_testoffaith", "index": 100}, {"id": 103824, "definitionId": 108829, "maxRanks": 1, "type": "passive", "name": "Binding Heals", "spellId": 368275, "icon": "spell_holy_blindingheal", "index": 200}]}, {"id": 82682, "name": "Divine Star / Halo", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82679, 82681], "prev": [82697, 82684], "entries": [{"id": 103831, "definitionId": 108836, "maxRanks": 1, "type": "active", "name": "Divine Star", "spellId": 110744, "icon": "spell_priest_divinestar", "index": 200}, {"id": 103830, "definitionId": 108835, "maxRanks": 1, "type": "active", "name": "Halo", "spellId": 120517, "icon": "ability_priest_halo", "index": 300}]}, {"id": 82685, "name": "Translucent Image", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82681, 82686], "prev": [82709, 82684], "entries": [{"id": 103835, "definitionId": 108840, "maxRanks": 1, "type": "passive", "name": "Translucent Image", "spellId": 373446, "icon": "spell_nature_invisibilty", "index": 100}]}, {"id": 82687, "name": "Cauterizing Shadows", "type": "single", "posX": 6300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82686, 82672], "prev": [82709], "entries": [{"id": 103837, "definitionId": 108842, "maxRanks": 1, "type": "passive", "name": "Cauterizing Shadows", "spellId": 459990, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82677, "name": "Surge of Light", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82676], "prev": [82678], "entries": [{"id": 103823, "definitionId": 108828, "maxRanks": 1, "type": "passive", "name": "Surge of Light", "spellId": 109186, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 82679, "name": "Light's Inspiration", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82676, 82675], "prev": [82682, 82678], "entries": [{"id": 103826, "definitionId": 108831, "maxRanks": 2, "type": "passive", "name": "Light's Inspiration", "spellId": 373450, "icon": "spell_holy_restoration", "index": 100}]}, {"id": 82681, "name": "Crystalline Reflection", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82675, 82674], "prev": [82685, 82682], "entries": [{"id": 103829, "definitionId": 108834, "maxRanks": 2, "type": "passive", "name": "Crystalline Reflection", "spellId": 373457, "icon": "ability_priest_reflectiveshield", "index": 100}]}, {"id": 82686, "name": "Improved Fade", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82674, 82673], "prev": [82685, 82687], "entries": [{"id": 103836, "definitionId": 108841, "maxRanks": 2, "type": "passive", "name": "Improved Fade", "spellId": 390670, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 82672, "name": "Manipulation", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82673], "prev": [82687], "entries": [{"id": 103818, "definitionId": 108823, "maxRanks": 1, "type": "passive", "name": "Manipulation", "spellId": 459985, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82676, "name": "Benevolence / Power Word: Life", "type": "choice", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82677, 82679], "entries": [{"id": 115884, "definitionId": 120896, "maxRanks": 1, "type": "passive", "name": "Benevolence", "spellId": 415416, "icon": "ability_priest_spiritoftheredeemer", "index": 100}, {"id": 103822, "definitionId": 108827, "maxRanks": 1, "type": "active", "name": "Power Word: Life", "spellId": 373481, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 82675, "name": "Angelic Bulwark", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82679, 82681], "entries": [{"id": 103821, "definitionId": 108826, "maxRanks": 1, "type": "passive", "name": "Angelic Bulwark", "spellId": 108945, "icon": "ability_priest_angelicbulwark", "index": 100}]}, {"id": 82674, "name": "Essence Devourer / Void Shift", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82681, 82686], "entries": [{"id": 115883, "definitionId": 120895, "maxRanks": 1, "type": "passive", "name": "Essence Devourer", "spellId": 415479, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}, {"id": 103820, "definitionId": 108825, "maxRanks": 1, "type": "active", "name": "Void Shift", "spellId": 108968, "icon": "spell_priest_voidshift", "index": 200}]}, {"id": 82673, "name": "Phantom Reach", "type": "single", "posX": 6300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82672, 82686], "entries": [{"id": 103819, "definitionId": 108824, "maxRanks": 1, "type": "passive", "name": "Phantom Reach", "spellId": 459559, "icon": "spell_shadow_chilltouch", "index": 100}]}], "specNodes": [{"id": 82594, "name": "Atonement", "type": "single", "posX": 12900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82593, 82587, 82595], "prev": [], "entries": [{"id": 103723, "definitionId": 108728, "maxRanks": 1, "type": "passive", "name": "Atonement", "spellId": 81749, "icon": "ability_priest_atonement", "index": 100}]}, {"id": 82593, "name": "Power Word: Radiance", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82592, 92225], "prev": [82594], "entries": [{"id": 103722, "definitionId": 108727, "maxRanks": 1, "type": "active", "name": "Power Word: Radiance", "spellId": 194509, "icon": "spell_priest_power_word", "index": 100}]}, {"id": 82587, "name": "Pain Suppression", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [92225, 82588], "prev": [82594], "entries": [{"id": 103713, "definitionId": 108718, "maxRanks": 1, "type": "active", "name": "Pain Suppression", "spellId": 33206, "icon": "spell_holy_painsupression", "index": 100}]}, {"id": 82595, "name": "Power of the Dark Side", "type": "single", "posX": 13500, "posY": 2100, "maxRanks": 1, "next": [82596, 82579], "prev": [82594], "entries": [{"id": 103724, "definitionId": 108729, "maxRanks": 1, "type": "passive", "name": "Power of the Dark Side", "spellId": 198068, "icon": "inv_artifact_powerofthedarkside", "index": 100}]}, {"id": 82592, "name": "Light's Promise", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82591, 82589], "prev": [82593], "entries": [{"id": 103721, "definitionId": 108726, "maxRanks": 1, "type": "passive", "name": "Light's Promise", "spellId": 322115, "icon": "spell_priest_power_word", "index": 100}]}, {"id": 92225, "name": "Sanctuary", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82589, 82564], "prev": [82587, 82593], "entries": [{"id": 108225, "definitionId": 113230, "maxRanks": 1, "type": "passive", "name": "Sanctuary", "spellId": 231682, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 82588, "name": "Pain Transformation / Protector of the Frail", "type": "choice", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82564], "prev": [82587], "entries": [{"id": 103715, "definitionId": 108720, "maxRanks": 1, "type": "passive", "name": "Pain Transformation", "spellId": 372991, "icon": "spell_holy_blessedrecovery", "index": 200}, {"id": 103714, "definitionId": 108719, "maxRanks": 1, "type": "passive", "name": "Protector of the Frail", "spellId": 373035, "icon": "ability_racial_forceshield", "index": 300}]}, {"id": 82596, "name": "Dark Indulgence", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82564, 82597], "prev": [82595], "entries": [{"id": 103725, "definitionId": 108730, "maxRanks": 1, "type": "passive", "name": "Dark Indulgence", "spellId": 372972, "icon": "spell_shadow_unholyfrenzy", "index": 100}]}, {"id": 82579, "name": "Schism", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [82597, 82580, 82581], "prev": [82595], "entries": [{"id": 103704, "definitionId": 108709, "maxRanks": 1, "type": "passive", "name": "Schism", "spellId": 424509, "icon": "spell_warlock_focusshadow", "index": 100}]}, {"id": 82591, "name": "Bright Pupil / Enduring Luminescence", "type": "choice", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82590], "prev": [82592], "entries": [{"id": 103720, "definitionId": 108725, "maxRanks": 1, "type": "passive", "name": "Bright Pupil", "spellId": 390684, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 103719, "definitionId": 108724, "maxRanks": 1, "type": "passive", "name": "Enduring Luminescence", "spellId": 390685, "icon": "ability_priest_holybolts01", "index": 200}]}, {"id": 82589, "name": "Shield Discipline", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82590, 82598], "prev": [82592, 92225], "entries": [{"id": 103717, "definitionId": 108722, "maxRanks": 1, "type": "passive", "name": "Shield Discipline", "spellId": 197045, "icon": "spell_holy_divineprotection", "index": 200}]}, {"id": 82564, "name": "Luminous Barrier / Power Word: Barrier", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82598], "prev": [82596, 92225, 82588], "entries": [{"id": 116182, "definitionId": 121194, "maxRanks": 1, "type": "active", "name": "Luminous Barrier", "spellId": 271466, "icon": "spell_priest_burningwill", "index": 100}, {"id": 103687, "definitionId": 108692, "maxRanks": 1, "type": "active", "name": "Power Word: Barrier", "spellId": 62618, "icon": "spell_holy_powerwordbarrier", "index": 200}]}, {"id": 82597, "name": "Painful Punishment", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82598, 82581], "prev": [82579, 82596], "entries": [{"id": 103726, "definitionId": 108731, "maxRanks": 1, "type": "passive", "name": "Painful Punishment", "spellId": 390686, "icon": "ability_priest_clarityofpower", "index": 100}]}, {"id": 82580, "name": "Malicious Intent", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "next": [82581], "prev": [82579], "entries": [{"id": 103705, "definitionId": 108710, "maxRanks": 1, "type": "passive", "name": "Malicious Intent", "spellId": 372969, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 82590, "name": "Purge the Wicked", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82566, 82599], "prev": [82589, 82591], "entries": [{"id": 103718, "definitionId": 108723, "maxRanks": 1, "type": "active", "name": "Purge the Wicked", "spellId": 204197, "icon": "ability_mage_firestarter", "index": 100}]}, {"id": 82598, "name": "Rapture", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82599, 82576, 82578], "prev": [82589, 82564, 82597], "entries": [{"id": 103727, "definitionId": 108732, "maxRanks": 1, "type": "active", "name": "Rapture", "spellId": 47536, "icon": "spell_holy_rapture", "index": 100}]}, {"id": 82581, "name": "Shadow Covenant", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82578, 82582], "prev": [82597, 82579, 82580], "entries": [{"id": 103706, "definitionId": 108711, "maxRanks": 1, "type": "passive", "name": "Shadow Covenant", "spellId": 314867, "icon": "spell_shadow_summonvoidwalker", "index": 100}]}, {"id": 82566, "name": "Revel in Purity", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82600, 82601], "prev": [82590], "entries": [{"id": 103690, "definitionId": 108695, "maxRanks": 1, "type": "passive", "name": "Revel in Purity", "spellId": 373003, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82599, "name": "Contrition", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82600, 82577], "prev": [82590, 82598], "entries": [{"id": 103728, "definitionId": 108733, "maxRanks": 1, "type": "passive", "name": "Contrition", "spellId": 197419, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82576, "name": "Exaltation / Indemnity", "type": "choice", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82577], "prev": [82598], "entries": [{"id": 103701, "definitionId": 108706, "maxRanks": 1, "type": "passive", "name": "Exaltation", "spellId": 373042, "icon": "spell_holy_spiritualguidence", "index": 200}, {"id": 108226, "definitionId": 113231, "maxRanks": 1, "type": "passive", "name": "Indemnity", "spellId": 373049, "icon": "ability_priest_clarityofwill", "index": 300}]}, {"id": 82578, "name": "Pain and Suffering", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [82577, 82583], "prev": [82598, 82581], "entries": [{"id": 103703, "definitionId": 108708, "maxRanks": 2, "type": "passive", "name": "Pain and Suffering", "spellId": 390689, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82582, "name": "Twilight Corruption", "type": "single", "posX": 14700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82583, 82570], "prev": [82581], "entries": [{"id": 103708, "definitionId": 108713, "maxRanks": 1, "type": "passive", "name": "Twilight Corruption", "spellId": 373065, "icon": "spell_fire_twilightimmolation", "index": 100}]}, {"id": 82600, "name": "Borrowed Time", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82601, 82575], "prev": [82566, 82599], "entries": [{"id": 103729, "definitionId": 108734, "maxRanks": 2, "type": "passive", "name": "Borrowed Time", "spellId": 390691, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 82577, "name": "Castigation", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82575, 82567], "prev": [82576, 82599, 82578], "entries": [{"id": 103702, "definitionId": 108707, "maxRanks": 1, "type": "passive", "name": "Castigation", "spellId": 193134, "icon": "spell_holy_searinglightpriest", "index": 100}]}, {"id": 82583, "name": "Abyssal Reverie", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82567, 82570], "prev": [82578, 82582], "entries": [{"id": 103709, "definitionId": 108714, "maxRanks": 2, "type": "passive", "name": "Abyssal Reverie", "spellId": 373054, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 82601, "name": "Train of Thought", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82602, 82568], "prev": [82600, 82566], "entries": [{"id": 103731, "definitionId": 108736, "maxRanks": 1, "type": "passive", "name": "Train of Thought", "spellId": 390693, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 82575, "name": "Ultimate Penitence", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82568, 82574, 82572], "prev": [82600, 82577], "entries": [{"id": 103700, "definitionId": 108705, "maxRanks": 1, "type": "active", "name": "Ultimate Penitence", "spellId": 421453, "icon": "ability_priest_ascendance", "index": 200}]}, {"id": 82567, "name": "Lenience / Evangelism", "type": "choice", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82572, 82585], "prev": [82577, 82583], "entries": [{"id": 103692, "definitionId": 108697, "maxRanks": 1, "type": "passive", "name": "Lenience", "spellId": 238063, "icon": "ability_priest_atonement", "index": 0}, {"id": 103691, "definitionId": 108696, "maxRanks": 1, "type": "active", "name": "Evangelism", "spellId": 246287, "icon": "spell_holy_divineillumination", "index": 100}]}, {"id": 82570, "name": "Void Summoner", "type": "single", "posX": 14700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82585, 82586], "prev": [82583, 82582], "entries": [{"id": 103695, "definitionId": 108700, "maxRanks": 1, "type": "passive", "name": "Void Summoner", "spellId": 390770, "icon": "spell_shadow_shadowfiend", "index": 100}]}, {"id": 82602, "name": "Divine Aegis", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [86730], "prev": [82601], "entries": [{"id": 103732, "definitionId": 108737, "maxRanks": 1, "type": "passive", "name": "Divine Aegis", "spellId": 47515, "icon": "spell_holy_devineaegis", "index": 100}]}, {"id": 82568, "name": "Blaze of Light", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82569], "prev": [82601, 82575], "entries": [{"id": 103693, "definitionId": 108698, "maxRanks": 2, "type": "passive", "name": "Blaze of Light", "spellId": 215768, "icon": "spell_holy_searinglight", "index": 100}]}, {"id": 82574, "name": "Heaven's Wrath", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82573], "prev": [82575], "entries": [{"id": 103699, "definitionId": 108704, "maxRanks": 1, "type": "passive", "name": "Heaven's Wrath", "spellId": 421558, "icon": "spell_holy_penance", "index": 100}]}, {"id": 82572, "name": "Harsh Discipline", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82571], "prev": [82575, 82567], "entries": [{"id": 103697, "definitionId": 108702, "maxRanks": 2, "type": "passive", "name": "Harsh Discipline", "spellId": 373180, "icon": "ability_paladin_handoflight", "index": 200}]}, {"id": 82585, "name": "Expiation", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82571], "prev": [82567, 82570], "entries": [{"id": 103711, "definitionId": 108716, "maxRanks": 2, "type": "passive", "name": "Expiation", "spellId": 390832, "icon": "spell_shadow_shadowpower", "index": 200}]}, {"id": 82586, "name": "Inescapable Torment", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82584], "prev": [82570], "entries": [{"id": 103712, "definitionId": 108717, "maxRanks": 1, "type": "passive", "name": "Inescapable Torment", "spellId": 373427, "icon": "spell_shadow_chilltouch", "index": 100}]}, {"id": 86730, "name": "Aegis of Wrath", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82602], "entries": [{"id": 103688, "definitionId": 108693, "maxRanks": 1, "type": "passive", "name": "Aegis of Wrath", "spellId": 238135, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 82569, "name": "Weal and Woe", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82568], "entries": [{"id": 103694, "definitionId": 108699, "maxRanks": 1, "type": "passive", "name": "Weal and Woe", "spellId": 390786, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 82573, "name": "Overloaded with Light", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82574], "entries": [{"id": 103698, "definitionId": 108703, "maxRanks": 1, "type": "passive", "name": "Overloaded with Light", "spellId": 421557, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 82571, "name": "Twilight Equilibrium", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82572, 82585], "entries": [{"id": 103696, "definitionId": 108701, "maxRanks": 1, "type": "passive", "name": "Twilight Equilibrium", "spellId": 390705, "icon": "ability_priest_innerlightandshadow", "index": 100}]}, {"id": 82584, "name": "Mindbender", "type": "single", "posX": 14700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82586], "entries": [{"id": 103710, "definitionId": 108715, "maxRanks": 1, "type": "active", "name": "Mindbender", "spellId": 123040, "icon": "spell_shadow_soulleech_3", "index": 100}]}], "heroNodes": [{"id": 94683, "name": "Premonition", "type": "single", "posX": 8400, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 20, "next": [94698, 94674, 94679], "prev": [], "entries": [{"id": 117286, "definitionId": 122298, "maxRanks": 1, "type": "active", "name": "Premonition", "spellId": 428924, "icon": "inv_ability_oraclepriest_premonitioninsight", "index": 100}], "freeNode": true}, {"id": 94698, "name": "Preventive Measures", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94691], "prev": [94683], "entries": [{"id": 117301, "definitionId": 122313, "maxRanks": 1, "type": "passive", "name": "Preventive Measures", "spellId": 440662, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 94674, "name": "Preemptive Care", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94675], "prev": [94683], "entries": [{"id": 117277, "definitionId": 122289, "maxRanks": 1, "type": "passive", "name": "Preemptive Care", "spellId": 440671, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 94679, "name": "Waste No Time / Miraculous Recovery", "type": "choice", "posX": 9000, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94689], "prev": [94683], "entries": [{"id": 117282, "definitionId": 122294, "maxRanks": 1, "type": "passive", "name": "Waste No Time", "spellId": 440681, "icon": "spell_nature_timestop", "index": 100}, {"id": 119332, "definitionId": 124232, "maxRanks": 1, "type": "passive", "name": "Miraculous Recovery", "spellId": 440674, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 94691, "name": "Assured Safety", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94690], "prev": [94698], "entries": [{"id": 117294, "definitionId": 122306, "maxRanks": 1, "type": "passive", "name": "Assured Safety", "spellId": 440766, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 94675, "name": "Divine Feathers / Save the Day", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94673], "prev": [94674], "entries": [{"id": 117278, "definitionId": 122290, "maxRanks": 1, "type": "passive", "name": "Divine Feathers", "spellId": 440670, "icon": "ability_priest_angelicfeather", "index": 100}, {"id": 119331, "definitionId": 124231, "maxRanks": 1, "type": "passive", "name": "Save the Day", "spellId": 440669, "icon": "priest_spell_leapoffaith_a", "index": 200}]}, {"id": 94689, "name": "Foreseen Circumstances", "type": "single", "posX": 9000, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94700], "prev": [94679], "entries": [{"id": 117292, "definitionId": 122304, "maxRanks": 1, "type": "passive", "name": "Foreseen Circumstances", "spellId": 440738, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 94690, "name": "Prophet's Will / Desperate Measures", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94691], "entries": [{"id": 117293, "definitionId": 122305, "maxRanks": 1, "type": "passive", "name": "Prophet's Will", "spellId": 433905, "icon": "ability_priest_clarityofpurpose", "index": 100}, {"id": 126068, "definitionId": 130900, "maxRanks": 1, "type": "passive", "name": "Desperate Measures", "spellId": 458718, "icon": "spell_holy_testoffaith", "index": 200}]}, {"id": 94673, "name": "Divine Providence", "type": "single", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94675], "entries": [{"id": 117276, "definitionId": 122288, "maxRanks": 1, "type": "passive", "name": "Divine Providence", "spellId": 440742, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 94700, "name": "Fatebender / Perfect Vision", "type": "choice", "posX": 9000, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94689], "entries": [{"id": 117303, "definitionId": 122315, "maxRanks": 1, "type": "passive", "name": "Fatebender", "spellId": 440743, "icon": "ability_priest_voidshift", "index": 100}, {"id": 119330, "definitionId": 124230, "maxRanks": 1, "type": "passive", "name": "Perfect Vision", "spellId": 440661, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 94687, "name": "Clairvoyance", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 20, "next": [], "prev": [94700, 94673, 94690], "entries": [{"id": 117290, "definitionId": 122302, "maxRanks": 1, "type": "passive", "name": "Clairvoyance", "spellId": 428940, "icon": "inv_ability_oraclepriest_clairvoyance", "index": 100}]}, {"id": 94684, "name": "Entropic Rift", "type": "single", "posX": 8400, "posY": 4500, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "subTreeId": 18, "requiresNode": 82654, "next": [94693, 94703, 94670], "prev": [], "entries": [{"id": 117287, "definitionId": 122299, "maxRanks": 1, "type": "passive", "name": "Entropic Rift", "spellId": 447444, "icon": "inv_ability_voidweaverpriest_entropicrift", "index": 100}], "freeNode": true}, {"id": 94693, "name": "No Escape / Dark Energy", "type": "choice", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94668], "prev": [94684], "entries": [{"id": 117296, "definitionId": 122308, "maxRanks": 1, "type": "passive", "name": "No Escape", "spellId": 451204, "icon": "spell_fire_twilighthellfire", "index": 100}, {"id": 123845, "definitionId": 128683, "maxRanks": 1, "type": "passive", "name": "Dark Energy", "spellId": 451018, "icon": "achievement_boss_triumvirate_darknaaru", "index": 200}]}, {"id": 94703, "name": "Void Blast", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94695], "prev": [94684], "entries": [{"id": 117306, "definitionId": 122318, "maxRanks": 1, "type": "active", "name": "Void Blast", "spellId": 450405, "icon": "inv_cosmicvoid_missile", "index": 100}]}, {"id": 94670, "name": "Inner Quietus", "type": "single", "posX": 9000, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "next": [100212], "prev": [94684], "entries": [{"id": 117273, "definitionId": 122285, "maxRanks": 1, "type": "passive", "name": "Inner Quietus", "spellId": 448278, "icon": "inv_cosmicvoid_buff", "index": 100}]}, {"id": 94668, "name": "Devour Matter / Darkening Horizon", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94692], "prev": [94693], "entries": [{"id": 117271, "definitionId": 122283, "maxRanks": 1, "type": "passive", "name": "Devour Matter", "spellId": 451840, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 117298, "definitionId": 122310, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 94695, "name": "Void Empowerment / Darkening Horizon", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94669], "prev": [94703], "entries": [{"id": 125821, "definitionId": 128681, "maxRanks": 1, "type": "passive", "name": "Void Empowerment", "spellId": 450138, "icon": "inv_cosmicvoid_nova", "index": 100}, {"id": 125982, "definitionId": 130813, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 100212, "name": "Depth of Shadows / Voidwraith", "type": "choice", "posX": 9000, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94696], "prev": [94670], "entries": [{"id": 123842, "definitionId": 128680, "maxRanks": 1, "type": "passive", "name": "Depth of Shadows", "spellId": 451308, "icon": "warlock_summon__voidlord", "index": 100}, {"id": 123841, "definitionId": 128679, "maxRanks": 1, "type": "passive", "name": "Voidwraith", "spellId": 451234, "icon": "warlock_curse_shadow", "index": 200}]}, {"id": 94692, "name": "Voidheart", "type": "single", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94668], "entries": [{"id": 117295, "definitionId": 122307, "maxRanks": 1, "type": "passive", "name": "Voidheart", "spellId": 449880, "icon": "inv_cosmicvoid_orb", "index": 100}]}, {"id": 94669, "name": "Void Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94695], "entries": [{"id": 117272, "definitionId": 122284, "maxRanks": 1, "type": "passive", "name": "Void Infusion", "spellId": 450612, "icon": "inv_misc_volatileshadow", "index": 100}]}, {"id": 94696, "name": "Void Leech / Embrace the Shadow", "type": "choice", "posX": 9000, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "next": [94694], "prev": [100212], "entries": [{"id": 117299, "definitionId": 122311, "maxRanks": 1, "type": "passive", "name": "Void Leech", "spellId": 451311, "icon": "spell_shadow_soulleech_2", "index": 100}, {"id": 123844, "definitionId": 128682, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadow", "spellId": 451569, "icon": "spell_shadow_shadesofdarkness", "index": 200}]}, {"id": 94694, "name": "Collapsing Void", "type": "single", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [], "prev": [94669, 94692, 94696], "entries": [{"id": 117297, "definitionId": 122309, "maxRanks": 1, "type": "passive", "name": "Collapsing Void", "spellId": 448403, "icon": "inv_cosmicvoid_groundsate", "index": 100}]}], "subTreeNodes": [{"id": 99801, "name": "Oracle / Voidweaver", "type": "subtree", "posX": 8400, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123290, "type": "subtree", "name": "Oracle", "traitSubTreeId": 20, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-oracle", "nodes": [94683, 94698, 94674, 94679, 94691, 94675, 94689, 94690, 94673, 94700, 94687]}, {"id": 123288, "type": "subtree", "name": "Voidweaver", "traitSubTreeId": 18, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-voidweaver", "nodes": [94684, 94693, 94703, 94670, 94668, 94695, 100212, 94692, 94669, 94696, 94694]}]}], "fullNodeOrder": [82552, 82553, 82554, 82555, 82556, 82557, 82558, 82559, 82560, 82561, 82563, 82564, 82566, 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, 82647, 82648, 82649, 82651, 82652, 82653, 82654, 82655, 82656, 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82665, 82666, 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, 82687, 82688, 82689, 82690, 82691, 82692, 82693, 82694, 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, 82715, 82716, 82717, 82718, 82719, 82720, 82721, 86730, 92225, 93170, 93171, 93172, 94668, 94669, 94670, 94673, 94674, 94675, 94676, 94677, 94678, 94679, 94680, 94681, 94683, 94684, 94685, 94686, 94687, 94688, 94689, 94690, 94691, 94692, 94693, 94694, 94695, 94696, 94697, 94698, 94699, 94700, 94702, 94703, 99800, 99801, 99802, 100212]}, {"traitTreeId": 795, "className": "Priest", "classId": 5, "specName": "Holy", "specId": 257, "classNodes": [{"id": 82717, "name": "Renew", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82718, 82714], "prev": [], "entries": [{"id": 103869, "definitionId": 108874, "maxRanks": 1, "type": "active", "name": "Renew", "spellId": 139, "icon": "spell_holy_renew", "index": 100}], "freeNode": true}, {"id": 82715, "name": "Dispel Magic", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82714, 82705, 82695], "prev": [], "entries": [{"id": 103867, "definitionId": 108872, "maxRanks": 1, "type": "active", "name": "Dispel Magic", "spellId": 528, "icon": "spell_nature_nullifydisease", "index": 100}]}, {"id": 82713, "name": "Shadowfiend", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82695, 82712], "prev": [], "entries": [{"id": 103865, "definitionId": 108870, "maxRanks": 1, "type": "active", "name": "Shadowfiend", "spellId": 34433, "icon": "spell_shadow_shadowfiend", "index": 100}]}, {"id": 82718, "name": "Prayer of Mending", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82719, 82701, 82720], "prev": [82717], "entries": [{"id": 103870, "definitionId": 108875, "maxRanks": 1, "type": "active", "name": "Prayer of Mending", "spellId": 33076, "icon": "spell_holy_prayerofmendingtga", "index": 100}], "freeNode": true}, {"id": 82714, "name": "Improved Flash Heal", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82701, 82707, 82703], "prev": [82715, 82717], "entries": [{"id": 103866, "definitionId": 108871, "maxRanks": 1, "type": "passive", "name": "Improved Flash Heal", "spellId": 393870, "icon": "spell_holy_heal", "index": 100}]}, {"id": 82705, "name": "Improved Purify", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [82703], "prev": [82715], "entries": [{"id": 103855, "definitionId": 108860, "maxRanks": 1, "type": "passive", "name": "Improved Purify", "spellId": 390632, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 82695, "name": "Psychic Voice / Petrifying Scream", "type": "choice", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82703, 82556], "prev": [82715, 82713], "entries": [{"id": 103845, "definitionId": 108850, "maxRanks": 1, "type": "passive", "name": "Psychic Voice", "spellId": 196704, "icon": "ability_warrior_commandingshout", "index": 100}, {"id": 114588, "definitionId": 119593, "maxRanks": 1, "type": "passive", "name": "Petrifying Scream", "spellId": 55676, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82712, "name": "Shadow Word: Death", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [82556, 82711], "prev": [82713], "entries": [{"id": 103864, "definitionId": 108869, "maxRanks": 1, "type": "active", "name": "Shadow Word: Death", "spellId": 32379, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82719, "name": "Focused Mending", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82720], "prev": [82718], "entries": [{"id": 103871, "definitionId": 108876, "maxRanks": 1, "type": "passive", "name": "Focused Mending", "spellId": 372354, "icon": "achievement_bg_returnxflags_def_wsg", "index": 100}]}, {"id": 82701, "name": "Holy Nova", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82720, 82700, 82716], "prev": [82714, 82718], "entries": [{"id": 103851, "definitionId": 108856, "maxRanks": 1, "type": "active", "name": "Holy Nova", "spellId": 132157, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82707, "name": "Protective Light / From Darkness Comes Light", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82716], "prev": [82714], "entries": [{"id": 103858, "definitionId": 108863, "maxRanks": 1, "type": "passive", "name": "Protective Light", "spellId": 193063, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 103857, "definitionId": 108862, "maxRanks": 1, "type": "passive", "name": "From Darkness Comes Light", "spellId": 390615, "icon": "spell_holy_flashheal", "index": 200}]}, {"id": 82703, "name": "Angelic Feather", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82716, 82693, 82708], "prev": [82714, 82705, 82695], "entries": [{"id": 103853, "definitionId": 108858, "maxRanks": 1, "type": "active", "name": "Angelic Feather", "spellId": 121536, "icon": "ability_priest_angelicfeather", "index": 0}]}, {"id": 82556, "name": "Phantasm", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82708, 82710], "prev": [82695, 82712], "entries": [{"id": 103834, "definitionId": 108839, "maxRanks": 1, "type": "passive", "name": "Phantasm", "spellId": 108942, "icon": "ability_priest_phantasm", "index": 100}]}, {"id": 82711, "name": "Death and Madness", "type": "single", "posX": 6900, "posY": 2700, "maxRanks": 1, "next": [82710, 82688], "prev": [82712], "entries": [{"id": 103863, "definitionId": 108868, "maxRanks": 1, "type": "passive", "name": "Death and Madness", "spellId": 321291, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82720, "name": "Spell Warding / Blessed Recovery", "type": "choice", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [82721, 82699, 82696], "prev": [82718, 82701, 82719], "entries": [{"id": 103872, "definitionId": 108877, "maxRanks": 1, "type": "passive", "name": "Spell Warding", "spellId": 390667, "icon": "spell_holy_spellwarding", "index": 100}, {"id": 103677, "definitionId": 108682, "maxRanks": 1, "type": "passive", "name": "Blessed Recovery", "spellId": 390767, "icon": "spell_holy_blessedrecovery", "index": 200}]}, {"id": 82700, "name": "Rhapsody", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [82699], "prev": [82701], "entries": [{"id": 103850, "definitionId": 108855, "maxRanks": 1, "type": "passive", "name": "Rhapsody", "spellId": 390622, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82716, "name": "Leap of Faith", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [82699, 82702, 82694], "prev": [82703, 82701, 82707], "entries": [{"id": 103868, "definitionId": 108873, "maxRanks": 1, "type": "active", "name": "Leap of Faith", "spellId": 73325, "icon": "priest_spell_leapoffaith_a", "index": 100}]}, {"id": 82693, "name": "Shackle Undead", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [82694], "prev": [82703], "entries": [{"id": 103843, "definitionId": 108848, "maxRanks": 1, "type": "active", "name": "Shackle Undead", "spellId": 9484, "icon": "spell_nature_slow", "index": 100}]}, {"id": 82708, "name": "Sheer Terror / Void Tendrils", "type": "choice", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [82694, 82691], "prev": [82703, 82556], "entries": [{"id": 103860, "definitionId": 108865, "maxRanks": 1, "type": "passive", "name": "Sheer Terror", "spellId": 390919, "icon": "spell_nzinsanity_fearofdeath", "index": 100}, {"id": 103859, "definitionId": 108864, "maxRanks": 1, "type": "active", "name": "Void Tendrils", "spellId": 108920, "icon": "spell_priest_voidtendrils", "index": 200}]}, {"id": 82710, "name": "Mind Control / Dominate Mind", "type": "choice", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [82691, 82689], "prev": [82556, 82711], "entries": [{"id": 103862, "definitionId": 108867, "maxRanks": 1, "type": "active", "name": "Mind Control", "spellId": 605, "icon": "spell_shadow_shadowworddominate", "index": 100}, {"id": 103678, "definitionId": 108683, "maxRanks": 1, "type": "active", "name": "Dominate Mind", "spellId": 205364, "icon": "spell_priest_void_flay", "index": 200}]}, {"id": 82721, "name": "Words of the Pious", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696], "prev": [82720], "entries": [{"id": 103873, "definitionId": 108878, "maxRanks": 1, "type": "passive", "name": "Words of the Pious", "spellId": 377438, "icon": "ability_priest_clarityofwill", "index": 200}]}, {"id": 82699, "name": "Mass Dispel", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696, 82698, 82706], "prev": [82716, 82720, 82700], "entries": [{"id": 103849, "definitionId": 108854, "maxRanks": 1, "type": "active", "name": "Mass Dispel", "spellId": 32375, "icon": "spell_arcane_massdispel", "index": 100}]}, {"id": 82702, "name": "Move with Grace", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706], "prev": [82716], "entries": [{"id": 103852, "definitionId": 108857, "maxRanks": 1, "type": "passive", "name": "Move with Grace", "spellId": 390620, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82694, "name": "Power Infusion", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706, 82683, 82692], "prev": [82716, 82693, 82708], "entries": [{"id": 103844, "definitionId": 108849, "maxRanks": 1, "type": "active", "name": "Power Infusion", "spellId": 10060, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 82691, "name": "Sanguine Teachings / Vampiric Embrace", "type": "choice", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82692, 82690, 82689], "prev": [82710, 82708], "entries": [{"id": 114735, "definitionId": 108846, "maxRanks": 1, "type": "passive", "name": "Sanguine Teachings", "spellId": 373218, "icon": "inv_archaeology_80_zandalari_sanguinetotem", "index": 100}, {"id": 103841, "definitionId": 119742, "maxRanks": 1, "type": "active", "name": "Vampiric Embrace", "spellId": 15286, "icon": "spell_shadow_unsummonbuilding", "index": 200}]}, {"id": 82688, "name": "Tithe Evasion", "type": "single", "posX": 6900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82689], "prev": [82711], "entries": [{"id": 103838, "definitionId": 108843, "maxRanks": 1, "type": "passive", "name": "Tithe Evasion", "spellId": 373223, "icon": "spell_nzinsanity_bloodthirst", "index": 100}]}, {"id": 82696, "name": "Inspiration", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82721, 82699, 82720], "entries": [{"id": 103846, "definitionId": 108851, "maxRanks": 1, "type": "passive", "name": "Inspiration", "spellId": 390676, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 82698, "name": "Mental Agility", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82699], "entries": [{"id": 103848, "definitionId": 108853, "maxRanks": 1, "type": "passive", "name": "Mental Agility", "spellId": 341167, "icon": "spell_holy_dispelmagic", "index": 100}]}, {"id": 82706, "name": "Body and Soul", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697, 82684], "prev": [82694, 82699, 82702], "entries": [{"id": 103856, "definitionId": 108861, "maxRanks": 1, "type": "passive", "name": "Body and Soul", "spellId": 64129, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82683, "name": "Twins of the Sun Priestess", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684], "prev": [82694], "entries": [{"id": 103832, "definitionId": 108837, "maxRanks": 1, "type": "passive", "name": "Twins of the Sun Priestess", "spellId": 373466, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82692, "name": "Void Shield", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684, 82709], "prev": [82691, 82694], "entries": [{"id": 103842, "definitionId": 108847, "maxRanks": 1, "type": "passive", "name": "Void Shield", "spellId": 280749, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 82690, "name": "San'layn", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82691], "entries": [{"id": 103840, "definitionId": 108845, "maxRanks": 1, "type": "passive", "name": "San'layn", "spellId": 199855, "icon": "achievement_boss_lanathel", "index": 100}]}, {"id": 82689, "name": "Apathy", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82710, 82688, 82691], "entries": [{"id": 103839, "definitionId": 108844, "maxRanks": 1, "type": "passive", "name": "Apathy", "spellId": 390668, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 82697, "name": "Unwavering Will", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82678, 82682], "prev": [82706, 82696, 82698], "entries": [{"id": 103847, "definitionId": 108852, "maxRanks": 2, "type": "passive", "name": "Unwavering Will", "spellId": 373456, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 82684, "name": "Twist of Fate", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82682, 82685], "prev": [82706, 82692, 82683], "entries": [{"id": 103833, "definitionId": 108838, "maxRanks": 2, "type": "passive", "name": "Twist of Fate", "spellId": 390972, "icon": "spell_shadow_mindtwisting", "index": 100}]}, {"id": 82709, "name": "Throes of Pain", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82685, 82687], "prev": [82692, 82690, 82689], "entries": [{"id": 103861, "definitionId": 108866, "maxRanks": 2, "type": "passive", "name": "Throes of Pain", "spellId": 377422, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 82678, "name": "Angel's Mercy / Binding Heals", "type": "choice", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82677, 82679], "prev": [82697], "entries": [{"id": 103825, "definitionId": 108830, "maxRanks": 1, "type": "passive", "name": "Angel's Mercy", "spellId": 238100, "icon": "spell_holy_testoffaith", "index": 100}, {"id": 103824, "definitionId": 108829, "maxRanks": 1, "type": "passive", "name": "Binding Heals", "spellId": 368275, "icon": "spell_holy_blindingheal", "index": 200}]}, {"id": 82682, "name": "Divine Star / Halo", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82679, 82681], "prev": [82697, 82684], "entries": [{"id": 103831, "definitionId": 108836, "maxRanks": 1, "type": "active", "name": "Divine Star", "spellId": 110744, "icon": "spell_priest_divinestar", "index": 200}, {"id": 103830, "definitionId": 108835, "maxRanks": 1, "type": "active", "name": "Halo", "spellId": 120517, "icon": "ability_priest_halo", "index": 300}]}, {"id": 82685, "name": "Translucent Image", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82681, 82686], "prev": [82709, 82684], "entries": [{"id": 103835, "definitionId": 108840, "maxRanks": 1, "type": "passive", "name": "Translucent Image", "spellId": 373446, "icon": "spell_nature_invisibilty", "index": 100}]}, {"id": 82687, "name": "Cauterizing Shadows", "type": "single", "posX": 6300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82686, 82672], "prev": [82709], "entries": [{"id": 103837, "definitionId": 108842, "maxRanks": 1, "type": "passive", "name": "Cauterizing Shadows", "spellId": 459990, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82677, "name": "Surge of Light", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82676], "prev": [82678], "entries": [{"id": 103823, "definitionId": 108828, "maxRanks": 1, "type": "passive", "name": "Surge of Light", "spellId": 109186, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 82679, "name": "Light's Inspiration", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82676, 82675], "prev": [82682, 82678], "entries": [{"id": 103826, "definitionId": 108831, "maxRanks": 2, "type": "passive", "name": "Light's Inspiration", "spellId": 373450, "icon": "spell_holy_restoration", "index": 100}]}, {"id": 82681, "name": "Crystalline Reflection", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82675, 82674], "prev": [82685, 82682], "entries": [{"id": 103829, "definitionId": 108834, "maxRanks": 2, "type": "passive", "name": "Crystalline Reflection", "spellId": 373457, "icon": "ability_priest_reflectiveshield", "index": 100}]}, {"id": 82686, "name": "Improved Fade", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82674, 82673], "prev": [82685, 82687], "entries": [{"id": 103836, "definitionId": 108841, "maxRanks": 2, "type": "passive", "name": "Improved Fade", "spellId": 390670, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 82672, "name": "Manipulation", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82673], "prev": [82687], "entries": [{"id": 103818, "definitionId": 108823, "maxRanks": 1, "type": "passive", "name": "Manipulation", "spellId": 459985, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82676, "name": "Benevolence / Power Word: Life", "type": "choice", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82677, 82679], "entries": [{"id": 115884, "definitionId": 120896, "maxRanks": 1, "type": "passive", "name": "Benevolence", "spellId": 415416, "icon": "ability_priest_spiritoftheredeemer", "index": 100}, {"id": 103822, "definitionId": 108827, "maxRanks": 1, "type": "active", "name": "Power Word: Life", "spellId": 373481, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 82675, "name": "Angelic Bulwark", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82679, 82681], "entries": [{"id": 103821, "definitionId": 108826, "maxRanks": 1, "type": "passive", "name": "Angelic Bulwark", "spellId": 108945, "icon": "ability_priest_angelicbulwark", "index": 100}]}, {"id": 82674, "name": "Essence Devourer / Void Shift", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82681, 82686], "entries": [{"id": 115883, "definitionId": 120895, "maxRanks": 1, "type": "passive", "name": "Essence Devourer", "spellId": 415479, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}, {"id": 103820, "definitionId": 108825, "maxRanks": 1, "type": "active", "name": "Void Shift", "spellId": 108968, "icon": "spell_priest_voidshift", "index": 200}]}, {"id": 82673, "name": "Phantom Reach", "type": "single", "posX": 6300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82672, 82686], "entries": [{"id": 103819, "definitionId": 108824, "maxRanks": 1, "type": "passive", "name": "Phantom Reach", "spellId": 459559, "icon": "spell_shadow_chilltouch", "index": 100}]}], "specNodes": [{"id": 82638, "name": "Holy Word: Serenity", "type": "single", "posX": 12900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82631, 82637, 82639], "prev": [], "entries": [{"id": 103775, "definitionId": 108780, "maxRanks": 1, "type": "active", "name": "Holy Word: Serenity", "spellId": 2050, "icon": "spell_holy_persuitofjustice", "index": 100}]}, {"id": 82631, "name": "Holy Word: Sanctify", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82632, 82630], "prev": [82638], "entries": [{"id": 103766, "definitionId": 108771, "maxRanks": 1, "type": "active", "name": "Holy Word: Sanctify", "spellId": 34861, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 82637, "name": "Guardian Spirit", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [82636], "prev": [82638], "entries": [{"id": 103774, "definitionId": 108779, "maxRanks": 1, "type": "active", "name": "Guardian Spirit", "spellId": 47788, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 82639, "name": "Holy Word: Chastise", "type": "single", "posX": 13500, "posY": 2100, "maxRanks": 1, "next": [82619, 82640], "prev": [82638], "entries": [{"id": 103776, "definitionId": 108781, "maxRanks": 1, "type": "active", "name": "Holy Word: Chastise", "spellId": 88625, "icon": "spell_holy_chastise", "index": 100}]}, {"id": 82632, "name": "Prayer of Healing", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [82624, 82633, 82630], "prev": [82631], "entries": [{"id": 103767, "definitionId": 108772, "maxRanks": 1, "type": "active", "name": "Prayer of Healing", "spellId": 596, "icon": "spell_holy_prayerofhealing02", "index": 100}]}, {"id": 82636, "name": "Guardian Angel / Guardians of the Light", "type": "choice", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82630, 82635, 82620], "prev": [82637], "entries": [{"id": 103773, "definitionId": 108778, "maxRanks": 1, "type": "passive", "name": "Guardian Angel", "spellId": 200209, "icon": "ability_priest_pathofthedevout", "index": 100}, {"id": 103772, "definitionId": 108777, "maxRanks": 1, "type": "passive", "name": "Guardians of the Light", "spellId": 196437, "icon": "spell_holy_guardianspirit", "index": 200}]}, {"id": 82619, "name": "Censure", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [82620], "prev": [82639], "entries": [{"id": 103753, "definitionId": 108758, "maxRanks": 1, "type": "passive", "name": "Censure", "spellId": 200199, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 82640, "name": "Empyreal Blaze", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [82620, 82607], "prev": [82639], "entries": [{"id": 103777, "definitionId": 108782, "maxRanks": 1, "type": "passive", "name": "Empyreal Blaze", "spellId": 372616, "icon": "ability_priest_empyrealblaze", "index": 100}]}, {"id": 82624, "name": "Circle of Healing", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [82625, 82623], "prev": [82632], "entries": [{"id": 103758, "definitionId": 108763, "maxRanks": 1, "type": "active", "name": "Circle of Healing", "spellId": 204883, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 82633, "name": "Revitalizing Prayers / Sanctified Prayers", "type": "choice", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [82623, 82634], "prev": [82632], "entries": [{"id": 103769, "definitionId": 108774, "maxRanks": 1, "type": "passive", "name": "Revitalizing Prayers", "spellId": 391208, "icon": "inv_staff_2h_artifacttome_d_06", "index": 100}, {"id": 103768, "definitionId": 108773, "maxRanks": 1, "type": "passive", "name": "Sanctified Prayers", "spellId": 196489, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 82630, "name": "Cosmic Ripple", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82634, 82621], "prev": [82636, 82632, 82631], "entries": [{"id": 103765, "definitionId": 108770, "maxRanks": 1, "type": "passive", "name": "Cosmic Ripple", "spellId": 238136, "icon": "spell_holy_summonlightwell", "index": 100}]}, {"id": 82635, "name": "Afterlife", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82621], "prev": [82636], "entries": [{"id": 103771, "definitionId": 108776, "maxRanks": 1, "type": "passive", "name": "Afterlife", "spellId": 196707, "icon": "inv_enchant_essencemagiclarge", "index": 100}]}, {"id": 82620, "name": "Renewed Faith", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82621, 82618, 82641], "prev": [82640, 82636, 82619], "entries": [{"id": 103754, "definitionId": 108759, "maxRanks": 1, "type": "passive", "name": "Renewed Faith", "spellId": 341997, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 82607, "name": "Burning Vehemence", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "next": [82641], "prev": [82640], "entries": [{"id": 103739, "definitionId": 108744, "maxRanks": 1, "type": "passive", "name": "Burning Vehemence", "spellId": 372307, "icon": "ability_paladin_sacredcleansing", "index": 100}]}, {"id": 82625, "name": "Prayer Circle / Healing Chorus", "type": "choice", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82626], "prev": [82624], "entries": [{"id": 103760, "definitionId": 108765, "maxRanks": 1, "type": "passive", "name": "Prayer Circle", "spellId": 321377, "icon": "spell_paladin_divinecircle", "index": 100}, {"id": 103759, "definitionId": 108764, "maxRanks": 1, "type": "passive", "name": "Healing Chorus", "spellId": 390881, "icon": "spell_holy_circleofrenewal", "index": 200}]}, {"id": 82623, "name": "Prayerful Litany", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622, 82627], "prev": [82633, 82624], "entries": [{"id": 103757, "definitionId": 108762, "maxRanks": 1, "type": "passive", "name": "Prayerful Litany", "spellId": 391209, "icon": "spell_holy_prayerofhealing02", "index": 100}]}, {"id": 82634, "name": "Trail of Light", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622], "prev": [82630, 82633], "entries": [{"id": 103770, "definitionId": 108775, "maxRanks": 1, "type": "passive", "name": "Trail of Light", "spellId": 200128, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 82621, "name": "Divine Hymn", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82622, 82613, 82617], "prev": [82635, 82630, 82620], "entries": [{"id": 103755, "definitionId": 108760, "maxRanks": 1, "type": "active", "name": "Divine Hymn", "spellId": 64843, "icon": "spell_holy_divinehymn", "index": 100}]}, {"id": 82618, "name": "Enlightenment", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82617], "prev": [82620], "entries": [{"id": 103752, "definitionId": 108757, "maxRanks": 1, "type": "passive", "name": "Enlightenment", "spellId": 193155, "icon": "spell_arcane_mindmastery", "index": 100}]}, {"id": 82641, "name": "Benediction / Holy Mending", "type": "choice", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82617, 82642], "prev": [82607, 82620], "entries": [{"id": 103779, "definitionId": 108784, "maxRanks": 1, "type": "passive", "name": "Benediction", "spellId": 193157, "icon": "spell_monk_diffusemagic", "index": 100}, {"id": 103778, "definitionId": 108783, "maxRanks": 1, "type": "passive", "name": "Holy Mending", "spellId": 391154, "icon": "spell_holy_healingfocus", "index": 200}]}, {"id": 82626, "name": "Orison", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82627, 82628], "prev": [82625], "entries": [{"id": 103761, "definitionId": 108766, "maxRanks": 1, "type": "passive", "name": "Orison", "spellId": 390947, "icon": "spell_holy_fanaticism", "index": 100}]}, {"id": 82622, "name": "Everlasting Light", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614, 82627], "prev": [82634, 82621, 82623], "entries": [{"id": 103756, "definitionId": 108761, "maxRanks": 1, "type": "passive", "name": "Everlasting Light", "spellId": 391161, "icon": "inv_mace_1h_artifactheartofkure_d_01", "index": 100}]}, {"id": 82613, "name": "Gales of Song", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614], "prev": [82621], "entries": [{"id": 103747, "definitionId": 108752, "maxRanks": 1, "type": "passive", "name": "Gales of Song", "spellId": 372370, "icon": "inv_misc_volatileair", "index": 100}]}, {"id": 82617, "name": "Symbol of Hope", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82614, 82616], "prev": [82641, 82621, 82618], "entries": [{"id": 103751, "definitionId": 108756, "maxRanks": 1, "type": "active", "name": "Symbol of Hope", "spellId": 64901, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82642, "name": "Divine Service", "type": "single", "posX": 14700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82616, 82615], "prev": [82641], "entries": [{"id": 103780, "definitionId": 108785, "maxRanks": 1, "type": "passive", "name": "Divine Service", "spellId": 391233, "icon": "spell_holy_prayerofspirit", "index": 100}]}, {"id": 82627, "name": "Crisis Management", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82628, 82610], "prev": [82623, 82622, 82626], "entries": [{"id": 103762, "definitionId": 108767, "maxRanks": 2, "type": "passive", "name": "Crisis Management", "spellId": 390954, "icon": "spell_holy_flashheal", "index": 100}]}, {"id": 82614, "name": "Prismatic Echoes", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82610, 82612], "prev": [82613, 82622, 82617], "entries": [{"id": 103748, "definitionId": 108753, "maxRanks": 2, "type": "passive", "name": "Prismatic Echoes", "spellId": 390967, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 82616, "name": "Prayers of the Virtuous", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82612, 82615], "prev": [82617, 82642], "entries": [{"id": 103750, "definitionId": 108755, "maxRanks": 2, "type": "passive", "name": "Prayers of the Virtuous", "spellId": 390977, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 82628, "name": "Pontifex", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82604, 82629], "prev": [82627, 82626], "entries": [{"id": 103763, "definitionId": 108768, "maxRanks": 1, "type": "passive", "name": "Pontifex", "spellId": 390980, "icon": "spell_priest_pontifex", "index": 100}]}, {"id": 82610, "name": "Apotheosis / Holy Word: Salvation", "type": "choice", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82629, 82608, 82611], "prev": [82627, 82614], "entries": [{"id": 103743, "definitionId": 108748, "maxRanks": 1, "type": "active", "name": "Apotheosis", "spellId": 200183, "icon": "ability_priest_ascension", "index": 100}, {"id": 103742, "definitionId": 108747, "maxRanks": 1, "type": "active", "name": "Holy Word: Salvation", "spellId": 265202, "icon": "ability_priest_archangel", "index": 200}]}, {"id": 82612, "name": "Miracle Worker", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82611, 82609], "prev": [82614, 82616], "entries": [{"id": 103745, "definitionId": 108750, "maxRanks": 1, "type": "passive", "name": "Miracle Worker", "spellId": 235587, "icon": "spell_holy_persuitofjustice", "index": 200}]}, {"id": 82615, "name": "Say Your Prayers", "type": "single", "posX": 14700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82609, 82606], "prev": [82616, 82642], "entries": [{"id": 103749, "definitionId": 108754, "maxRanks": 1, "type": "passive", "name": "Say Your Prayers", "spellId": 391186, "icon": "ability_priest_bindingprayers", "index": 100}]}, {"id": 82604, "name": "Resonant Words", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82603], "prev": [82628], "entries": [{"id": 103735, "definitionId": 108740, "maxRanks": 2, "type": "passive", "name": "Resonant Words", "spellId": 372309, "icon": "spell_holy_holybolt", "index": 100}]}, {"id": 82629, "name": "Light of the Naaru", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82603], "prev": [82628, 82610], "entries": [{"id": 103764, "definitionId": 108769, "maxRanks": 2, "type": "passive", "name": "Light of the Naaru", "spellId": 196985, "icon": "inv_pet_naaru", "index": 100}]}, {"id": 82608, "name": "Answered Prayers", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82554], "prev": [82610], "entries": [{"id": 103740, "definitionId": 108745, "maxRanks": 2, "type": "passive", "name": "Answered Prayers", "spellId": 391387, "icon": "inv_staff_2h_artifactheartofkure_d_06", "index": 100}]}, {"id": 82611, "name": "Voice of Harmony", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82554], "prev": [82612, 82610], "entries": [{"id": 103744, "definitionId": 108749, "maxRanks": 2, "type": "passive", "name": "Voice of Harmony", "spellId": 390994, "icon": "ability_priest_heavanlyvoice", "index": 100}]}, {"id": 82609, "name": "Desperate Times", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82605], "prev": [82615, 82612], "entries": [{"id": 103741, "definitionId": 108746, "maxRanks": 2, "type": "passive", "name": "Desperate Times", "spellId": 391381, "icon": "ability_pvp_defenderoftheweak", "index": 100}]}, {"id": 82606, "name": "Epiphany", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82605], "prev": [82615], "entries": [{"id": 103738, "definitionId": 108743, "maxRanks": 2, "type": "passive", "name": "Epiphany", "spellId": 414553, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 82603, "name": "Lightweaver / Lightwell", "type": "choice", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82629, 82604], "entries": [{"id": 103734, "definitionId": 108739, "maxRanks": 1, "type": "passive", "name": "Lightweaver", "spellId": 390992, "icon": "spell_holy_greaterheal", "index": 100}, {"id": 103733, "definitionId": 108738, "maxRanks": 1, "type": "active", "name": "Lightwell", "spellId": 372835, "icon": "spell_holy_summonlightwell", "index": 200}]}, {"id": 82554, "name": "Divine Image", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82611, 82608], "entries": [{"id": 103675, "definitionId": 108680, "maxRanks": 1, "type": "passive", "name": "Divine Image", "spellId": 392988, "icon": "inv_staff_2h_artifactheartofkure_d_04", "index": 200}]}, {"id": 82605, "name": "Restitution / Divine Word", "type": "choice", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82606, 82609], "entries": [{"id": 103737, "definitionId": 108742, "maxRanks": 1, "type": "passive", "name": "Restitution", "spellId": 391124, "icon": "inv_staff_2h_artifactheartofkure_d_03", "index": 100}, {"id": 103676, "definitionId": 108681, "maxRanks": 1, "type": "active", "name": "Divine Word", "spellId": 372760, "icon": "spell_priest_chakra", "index": 200}]}], "heroNodes": [{"id": 94683, "name": "Premonition", "type": "single", "posX": 8400, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 20, "next": [94698, 94674, 94679], "prev": [], "entries": [{"id": 117286, "definitionId": 122298, "maxRanks": 1, "type": "active", "name": "Premonition", "spellId": 428924, "icon": "inv_ability_oraclepriest_premonitioninsight", "index": 100}], "freeNode": true}, {"id": 94697, "name": "Power Surge", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 19, "requiresNode": 0, "next": [94677, 94681, 94699], "prev": [], "entries": [{"id": 117300, "definitionId": 122312, "maxRanks": 1, "type": "passive", "name": "Power Surge", "spellId": 453109, "icon": "inv_ability_holyfire_groundstate", "index": 100}], "freeNode": true}, {"id": 94698, "name": "Preventive Measures", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94691], "prev": [94683], "entries": [{"id": 117301, "definitionId": 122313, "maxRanks": 1, "type": "passive", "name": "Preventive Measures", "spellId": 440662, "icon": "spell_holy_powerwordshield", "index": 100}]}, {"id": 94674, "name": "Preemptive Care", "type": "single", "posX": 8400, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94675], "prev": [94683], "entries": [{"id": 117277, "definitionId": 122289, "maxRanks": 1, "type": "passive", "name": "Preemptive Care", "spellId": 440671, "icon": "ability_pvp_innerrenewal", "index": 100}]}, {"id": 94679, "name": "Waste No Time / Miraculous Recovery", "type": "choice", "posX": 9000, "posY": 2100, "maxRanks": 1, "subTreeId": 20, "next": [94689], "prev": [94683], "entries": [{"id": 117282, "definitionId": 122294, "maxRanks": 1, "type": "passive", "name": "Waste No Time", "spellId": 440681, "icon": "spell_nature_timestop", "index": 100}, {"id": 119332, "definitionId": 124232, "maxRanks": 1, "type": "passive", "name": "Miraculous Recovery", "spellId": 440674, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 94677, "name": "Perfected Form", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "next": [94686], "prev": [94697], "entries": [{"id": 117280, "definitionId": 122292, "maxRanks": 1, "type": "passive", "name": "Perfected Form", "spellId": 453917, "icon": "inv_ability_holyfire_buff", "index": 100}]}, {"id": 94681, "name": "Resonant Energy", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94680], "prev": [94697], "entries": [{"id": 117284, "definitionId": 122296, "maxRanks": 1, "type": "passive", "name": "Resonant Energy", "spellId": 453845, "icon": "ability_priest_halo", "index": 100}]}, {"id": 94699, "name": "Manifested Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94688], "prev": [94697], "entries": [{"id": 117302, "definitionId": 122314, "maxRanks": 1, "type": "passive", "name": "Manifested Power", "spellId": 453783, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 94691, "name": "Assured Safety", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94690], "prev": [94698], "entries": [{"id": 117294, "definitionId": 122306, "maxRanks": 1, "type": "passive", "name": "Assured Safety", "spellId": 440766, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 94675, "name": "Divine Feathers / Save the Day", "type": "choice", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94673], "prev": [94674], "entries": [{"id": 117278, "definitionId": 122290, "maxRanks": 1, "type": "passive", "name": "Divine Feathers", "spellId": 440670, "icon": "ability_priest_angelicfeather", "index": 100}, {"id": 119331, "definitionId": 124231, "maxRanks": 1, "type": "passive", "name": "Save the Day", "spellId": 440669, "icon": "priest_spell_leapoffaith_a", "index": 200}]}, {"id": 94689, "name": "Foreseen Circumstances", "type": "single", "posX": 9000, "posY": 2700, "maxRanks": 1, "subTreeId": 20, "next": [94700], "prev": [94679], "entries": [{"id": 117292, "definitionId": 122304, "maxRanks": 1, "type": "passive", "name": "Foreseen Circumstances", "spellId": 440738, "icon": "spell_holy_guardianspirit", "index": 100}]}, {"id": 94686, "name": "Shock Pulse / Incessant Screams", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94678], "prev": [94677], "entries": [{"id": 117289, "definitionId": 122301, "maxRanks": 1, "type": "passive", "name": "Shock Pulse", "spellId": 453852, "icon": "spell_priest_pathofdevout", "index": 100}, {"id": 125083, "definitionId": 129915, "maxRanks": 1, "type": "passive", "name": "Incessant Screams", "spellId": 453918, "icon": "spell_shadow_psychicscream", "index": 200}]}, {"id": 94680, "name": "Word of Supremacy / Heightened Alteration", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94676], "prev": [94681], "entries": [{"id": 117283, "definitionId": 122295, "maxRanks": 1, "type": "passive", "name": "Word of Supremacy", "spellId": 453726, "icon": "spell_holy_wordfortitude", "index": 100}, {"id": 125084, "definitionId": 129916, "maxRanks": 1, "type": "passive", "name": "Heightened Alteration", "spellId": 453729, "icon": "inv_enchant_essenceeternallarge", "index": 200}]}, {"id": 94688, "name": "Empowered Surges", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94685], "prev": [94699], "entries": [{"id": 117291, "definitionId": 122303, "maxRanks": 1, "type": "passive", "name": "Empowered Surges", "spellId": 453799, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 94690, "name": "Prophet's Will / Desperate Measures", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94691], "entries": [{"id": 117293, "definitionId": 122305, "maxRanks": 1, "type": "passive", "name": "Prophet's Will", "spellId": 433905, "icon": "ability_priest_clarityofpurpose", "index": 100}, {"id": 126068, "definitionId": 130900, "maxRanks": 1, "type": "passive", "name": "Desperate Measures", "spellId": 458718, "icon": "spell_holy_testoffaith", "index": 200}]}, {"id": 94673, "name": "Divine Providence", "type": "single", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94675], "entries": [{"id": 117276, "definitionId": 122288, "maxRanks": 1, "type": "passive", "name": "Divine Providence", "spellId": 440742, "icon": "ability_priest_wordsofmeaning", "index": 100}]}, {"id": 94700, "name": "Fatebender / Perfect Vision", "type": "choice", "posX": 9000, "posY": 3300, "maxRanks": 1, "subTreeId": 20, "next": [94687], "prev": [94689], "entries": [{"id": 117303, "definitionId": 122315, "maxRanks": 1, "type": "passive", "name": "Fatebender", "spellId": 440743, "icon": "ability_priest_voidshift", "index": 100}, {"id": 119330, "definitionId": 124230, "maxRanks": 1, "type": "passive", "name": "Perfect Vision", "spellId": 440661, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 94678, "name": "Energy Compression / Sustained Potency", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94702], "prev": [94686], "entries": [{"id": 117281, "definitionId": 122293, "maxRanks": 1, "type": "passive", "name": "Energy Compression", "spellId": 449874, "icon": "spell_holy_circleofrenewal", "index": 100}, {"id": 125085, "definitionId": 129917, "maxRanks": 1, "type": "passive", "name": "Sustained Potency", "spellId": 454001, "icon": "ability_priest_ascension", "index": 200}]}, {"id": 94676, "name": "Concentrated Infusion", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 82694, "next": [94702], "prev": [94680], "entries": [{"id": 117279, "definitionId": 122291, "maxRanks": 1, "type": "passive", "name": "Concentrated Infusion", "spellId": 453844, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 94685, "name": "Energy Cycle", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "next": [94702], "prev": [94688], "entries": [{"id": 117288, "definitionId": 122300, "maxRanks": 1, "type": "passive", "name": "Energy Cycle", "spellId": 453828, "icon": "ability_priest_voidshift", "index": 100}]}, {"id": 94687, "name": "Clairvoyance", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 20, "next": [], "prev": [94700, 94673, 94690], "entries": [{"id": 117290, "definitionId": 122302, "maxRanks": 1, "type": "passive", "name": "Clairvoyance", "spellId": 428940, "icon": "inv_ability_oraclepriest_clairvoyance", "index": 100}]}, {"id": 94702, "name": "Divine Halo", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [], "prev": [94678, 94685, 94676], "entries": [{"id": 117305, "definitionId": 122317, "maxRanks": 1, "type": "passive", "name": "Divine Halo", "spellId": 449806, "icon": "inv_ability_holyfire_nova", "index": 100}]}], "subTreeNodes": [{"id": 99802, "name": "Oracle / Archon", "type": "subtree", "posX": 7500, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123292, "type": "subtree", "name": "Oracle", "traitSubTreeId": 20, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-oracle", "nodes": [94683, 94698, 94674, 94679, 94691, 94675, 94689, 94690, 94673, 94700, 94687]}, {"id": 123291, "type": "subtree", "name": "Archon", "traitSubTreeId": 19, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-archon", "nodes": [94697, 94677, 94681, 94699, 94686, 94680, 94688, 94678, 94676, 94685, 94702]}]}], "fullNodeOrder": [82552, 82553, 82554, 82555, 82556, 82557, 82558, 82559, 82560, 82561, 82563, 82564, 82566, 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, 82647, 82648, 82649, 82651, 82652, 82653, 82654, 82655, 82656, 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82665, 82666, 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, 82687, 82688, 82689, 82690, 82691, 82692, 82693, 82694, 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, 82715, 82716, 82717, 82718, 82719, 82720, 82721, 86730, 92225, 93170, 93171, 93172, 94668, 94669, 94670, 94673, 94674, 94675, 94676, 94677, 94678, 94679, 94680, 94681, 94683, 94684, 94685, 94686, 94687, 94688, 94689, 94690, 94691, 94692, 94693, 94694, 94695, 94696, 94697, 94698, 94699, 94700, 94702, 94703, 99800, 99801, 99802, 100212]}, {"traitTreeId": 795, "className": "Priest", "classId": 5, "specName": "Shadow", "specId": 258, "classNodes": [{"id": 82717, "name": "Renew", "type": "single", "posX": 3300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82718, 82714], "prev": [], "entries": [{"id": 103869, "definitionId": 108874, "maxRanks": 1, "type": "active", "name": "Renew", "spellId": 139, "icon": "spell_holy_renew", "index": 100}]}, {"id": 82715, "name": "Dispel Magic", "type": "single", "posX": 4500, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82714, 82704, 82695], "prev": [], "entries": [{"id": 103867, "definitionId": 108872, "maxRanks": 1, "type": "active", "name": "Dispel Magic", "spellId": 528, "icon": "spell_nature_nullifydisease", "index": 100}]}, {"id": 82713, "name": "Shadowfiend", "type": "single", "posX": 5700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82695, 82712], "prev": [], "entries": [{"id": 103865, "definitionId": 108870, "maxRanks": 1, "type": "active", "name": "Shadowfiend", "spellId": 34433, "icon": "spell_shadow_shadowfiend", "index": 100}], "freeNode": true}, {"id": 82718, "name": "Prayer of Mending", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [82719, 82701, 82720], "prev": [82717], "entries": [{"id": 103870, "definitionId": 108875, "maxRanks": 1, "type": "active", "name": "Prayer of Mending", "spellId": 33076, "icon": "spell_holy_prayerofmendingtga", "index": 100}]}, {"id": 82714, "name": "Improved Flash Heal", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [82701, 82707, 82703], "prev": [82715, 82717], "entries": [{"id": 103866, "definitionId": 108871, "maxRanks": 1, "type": "passive", "name": "Improved Flash Heal", "spellId": 393870, "icon": "spell_holy_heal", "index": 100}]}, {"id": 82704, "name": "Purify Disease", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [82703], "prev": [82715], "entries": [{"id": 103854, "definitionId": 108859, "maxRanks": 1, "type": "active", "name": "Purify Disease", "spellId": 213634, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 82695, "name": "Psychic Voice / Petrifying Scream", "type": "choice", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [82703, 82556], "prev": [82715, 82713], "entries": [{"id": 103845, "definitionId": 108850, "maxRanks": 1, "type": "passive", "name": "Psychic Voice", "spellId": 196704, "icon": "ability_warrior_commandingshout", "index": 100}, {"id": 114588, "definitionId": 119593, "maxRanks": 1, "type": "passive", "name": "Petrifying Scream", "spellId": 55676, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82712, "name": "Shadow Word: Death", "type": "single", "posX": 6300, "posY": 2100, "maxRanks": 1, "next": [82556, 82711], "prev": [82713], "entries": [{"id": 103864, "definitionId": 108869, "maxRanks": 1, "type": "active", "name": "Shadow Word: Death", "spellId": 32379, "icon": "spell_shadow_demonicfortitude", "index": 100}], "freeNode": true}, {"id": 82719, "name": "Focused Mending", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 1, "next": [82720], "prev": [82718], "entries": [{"id": 103871, "definitionId": 108876, "maxRanks": 1, "type": "passive", "name": "Focused Mending", "spellId": 372354, "icon": "achievement_bg_returnxflags_def_wsg", "index": 100}]}, {"id": 82701, "name": "Holy Nova", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 1, "next": [82720, 82700, 82716], "prev": [82714, 82718], "entries": [{"id": 103851, "definitionId": 108856, "maxRanks": 1, "type": "active", "name": "Holy Nova", "spellId": 132157, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82707, "name": "Protective Light / From Darkness Comes Light", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [82716], "prev": [82714], "entries": [{"id": 103858, "definitionId": 108863, "maxRanks": 1, "type": "passive", "name": "Protective Light", "spellId": 193063, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 103857, "definitionId": 108862, "maxRanks": 1, "type": "passive", "name": "From Darkness Comes Light", "spellId": 390615, "icon": "spell_holy_flashheal", "index": 200}]}, {"id": 82703, "name": "Angelic Feather", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 1, "next": [82716, 82693, 82708], "prev": [82714, 82695, 82704], "entries": [{"id": 103853, "definitionId": 108858, "maxRanks": 1, "type": "active", "name": "Angelic Feather", "spellId": 121536, "icon": "ability_priest_angelicfeather", "index": 0}]}, {"id": 82556, "name": "Phantasm", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 1, "next": [82708, 82710], "prev": [82695, 82712], "entries": [{"id": 103834, "definitionId": 108839, "maxRanks": 1, "type": "passive", "name": "Phantasm", "spellId": 108942, "icon": "ability_priest_phantasm", "index": 100}]}, {"id": 82711, "name": "Death and Madness", "type": "single", "posX": 6900, "posY": 2700, "maxRanks": 1, "next": [82710, 82688], "prev": [82712], "entries": [{"id": 103863, "definitionId": 108868, "maxRanks": 1, "type": "passive", "name": "Death and Madness", "spellId": 321291, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82720, "name": "Spell Warding / Blessed Recovery", "type": "choice", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [82721, 82699, 82696], "prev": [82718, 82701, 82719], "entries": [{"id": 103872, "definitionId": 108877, "maxRanks": 1, "type": "passive", "name": "Spell Warding", "spellId": 390667, "icon": "spell_holy_spellwarding", "index": 100}, {"id": 103677, "definitionId": 108682, "maxRanks": 1, "type": "passive", "name": "Blessed Recovery", "spellId": 390767, "icon": "spell_holy_blessedrecovery", "index": 200}]}, {"id": 82700, "name": "Rhapsody", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [82699], "prev": [82701], "entries": [{"id": 103850, "definitionId": 108855, "maxRanks": 1, "type": "passive", "name": "Rhapsody", "spellId": 390622, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 82716, "name": "Leap of Faith", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [82699, 82702, 82694], "prev": [82703, 82701, 82707], "entries": [{"id": 103868, "definitionId": 108873, "maxRanks": 1, "type": "active", "name": "Leap of Faith", "spellId": 73325, "icon": "priest_spell_leapoffaith_a", "index": 100}]}, {"id": 82693, "name": "Shackle Undead", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [82694], "prev": [82703], "entries": [{"id": 103843, "definitionId": 108848, "maxRanks": 1, "type": "active", "name": "Shackle Undead", "spellId": 9484, "icon": "spell_nature_slow", "index": 100}]}, {"id": 82708, "name": "Sheer Terror / Void Tendrils", "type": "choice", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [82694, 82691], "prev": [82703, 82556], "entries": [{"id": 103860, "definitionId": 108865, "maxRanks": 1, "type": "passive", "name": "Sheer Terror", "spellId": 390919, "icon": "spell_nzinsanity_fearofdeath", "index": 100}, {"id": 103859, "definitionId": 108864, "maxRanks": 1, "type": "active", "name": "Void Tendrils", "spellId": 108920, "icon": "spell_priest_voidtendrils", "index": 200}]}, {"id": 82710, "name": "Mind Control / Dominate Mind", "type": "choice", "posX": 6300, "posY": 3300, "maxRanks": 1, "next": [82691, 82689], "prev": [82556, 82711], "entries": [{"id": 103862, "definitionId": 108867, "maxRanks": 1, "type": "active", "name": "Mind Control", "spellId": 605, "icon": "spell_shadow_shadowworddominate", "index": 100}, {"id": 103678, "definitionId": 108683, "maxRanks": 1, "type": "active", "name": "Dominate Mind", "spellId": 205364, "icon": "spell_priest_void_flay", "index": 200}]}, {"id": 82721, "name": "Words of the Pious", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696], "prev": [82720], "entries": [{"id": 103873, "definitionId": 108878, "maxRanks": 1, "type": "passive", "name": "Words of the Pious", "spellId": 377438, "icon": "ability_priest_clarityofwill", "index": 200}]}, {"id": 82699, "name": "Mass Dispel", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82696, 82698, 82706], "prev": [82716, 82720, 82700], "entries": [{"id": 103849, "definitionId": 108854, "maxRanks": 1, "type": "active", "name": "Mass Dispel", "spellId": 32375, "icon": "spell_arcane_massdispel", "index": 100}]}, {"id": 82702, "name": "Move with Grace", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706], "prev": [82716], "entries": [{"id": 103852, "definitionId": 108857, "maxRanks": 1, "type": "passive", "name": "Move with Grace", "spellId": 390620, "icon": "ability_priest_savinggrace", "index": 100}]}, {"id": 82694, "name": "Power Infusion", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82706, 82683, 82692], "prev": [82716, 82693, 82708], "entries": [{"id": 103844, "definitionId": 108849, "maxRanks": 1, "type": "active", "name": "Power Infusion", "spellId": 10060, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 82691, "name": "Sanguine Teachings / Vampiric Embrace", "type": "choice", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82692, 82690, 82689], "prev": [82710, 82708], "entries": [{"id": 114735, "definitionId": 108846, "maxRanks": 1, "type": "passive", "name": "Sanguine Teachings", "spellId": 373218, "icon": "inv_archaeology_80_zandalari_sanguinetotem", "index": 100}, {"id": 103841, "definitionId": 119742, "maxRanks": 1, "type": "active", "name": "Vampiric Embrace", "spellId": 15286, "icon": "spell_shadow_unsummonbuilding", "index": 200}]}, {"id": 82688, "name": "Tithe Evasion", "type": "single", "posX": 6900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82689], "prev": [82711], "entries": [{"id": 103838, "definitionId": 108843, "maxRanks": 1, "type": "passive", "name": "Tithe Evasion", "spellId": 373223, "icon": "spell_nzinsanity_bloodthirst", "index": 100}]}, {"id": 82696, "name": "Inspiration", "type": "single", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82721, 82699, 82720], "entries": [{"id": 103846, "definitionId": 108851, "maxRanks": 1, "type": "passive", "name": "Inspiration", "spellId": 390676, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 82698, "name": "Mental Agility", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697], "prev": [82699], "entries": [{"id": 103848, "definitionId": 108853, "maxRanks": 1, "type": "passive", "name": "Mental Agility", "spellId": 341167, "icon": "spell_holy_dispelmagic", "index": 100}]}, {"id": 82706, "name": "Body and Soul", "type": "single", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82697, 82684], "prev": [82694, 82699, 82702], "entries": [{"id": 103856, "definitionId": 108861, "maxRanks": 1, "type": "passive", "name": "Body and Soul", "spellId": 64129, "icon": "spell_holy_symbolofhope", "index": 100}]}, {"id": 82683, "name": "Twins of the Sun Priestess", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684], "prev": [82694], "entries": [{"id": 103832, "definitionId": 108837, "maxRanks": 1, "type": "passive", "name": "Twins of the Sun Priestess", "spellId": 373466, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 82692, "name": "Void Shield", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82684, 82709], "prev": [82691, 82694], "entries": [{"id": 103842, "definitionId": 108847, "maxRanks": 1, "type": "passive", "name": "Void Shield", "spellId": 280749, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 82690, "name": "San'layn", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82691], "entries": [{"id": 103840, "definitionId": 108845, "maxRanks": 1, "type": "passive", "name": "San'layn", "spellId": 199855, "icon": "achievement_boss_lanathel", "index": 100}]}, {"id": 82689, "name": "Apathy", "type": "single", "posX": 6300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82709], "prev": [82710, 82688, 82691], "entries": [{"id": 103839, "definitionId": 108844, "maxRanks": 1, "type": "passive", "name": "Apathy", "spellId": 390668, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 82697, "name": "Unwavering Will", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82678, 82680], "prev": [82706, 82696, 82698], "entries": [{"id": 103847, "definitionId": 108852, "maxRanks": 2, "type": "passive", "name": "Unwavering Will", "spellId": 373456, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 82684, "name": "Twist of Fate", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82680, 82685], "prev": [82706, 82692, 82683], "entries": [{"id": 103833, "definitionId": 108838, "maxRanks": 2, "type": "passive", "name": "Twist of Fate", "spellId": 390972, "icon": "spell_shadow_mindtwisting", "index": 100}]}, {"id": 82709, "name": "Throes of Pain", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82685, 82687], "prev": [82692, 82690, 82689], "entries": [{"id": 103861, "definitionId": 108866, "maxRanks": 2, "type": "passive", "name": "Throes of Pain", "spellId": 377422, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 82678, "name": "Angel's Mercy / Binding Heals", "type": "choice", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82677, 82679], "prev": [82697], "entries": [{"id": 103825, "definitionId": 108830, "maxRanks": 1, "type": "passive", "name": "Angel's Mercy", "spellId": 238100, "icon": "spell_holy_testoffaith", "index": 100}, {"id": 103824, "definitionId": 108829, "maxRanks": 1, "type": "passive", "name": "Binding Heals", "spellId": 368275, "icon": "spell_holy_blindingheal", "index": 200}]}, {"id": 82680, "name": "Divine Star / Halo", "type": "choice", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82679, 82681], "prev": [82684, 82697], "entries": [{"id": 103828, "definitionId": 108833, "maxRanks": 1, "type": "active", "name": "Divine Star", "spellId": 122121, "icon": "spell_priest_divinestar_shadow2", "index": 200}, {"id": 103827, "definitionId": 108832, "maxRanks": 1, "type": "active", "name": "Halo", "spellId": 120644, "icon": "ability_priest_halo_shadow", "index": 300}]}, {"id": 82685, "name": "Translucent Image", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82681, 82686], "prev": [82709, 82684], "entries": [{"id": 103835, "definitionId": 108840, "maxRanks": 1, "type": "passive", "name": "Translucent Image", "spellId": 373446, "icon": "spell_nature_invisibilty", "index": 100}]}, {"id": 82687, "name": "Cauterizing Shadows", "type": "single", "posX": 6300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82686, 82672], "prev": [82709], "entries": [{"id": 103837, "definitionId": 108842, "maxRanks": 1, "type": "passive", "name": "Cauterizing Shadows", "spellId": 459990, "icon": "spell_shadow_shadowwordpain", "index": 100}]}, {"id": 82677, "name": "Surge of Light", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82676], "prev": [82678], "entries": [{"id": 103823, "definitionId": 108828, "maxRanks": 1, "type": "passive", "name": "Surge of Light", "spellId": 109186, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 82679, "name": "Light's Inspiration", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82676, 82675], "prev": [82678, 82680], "entries": [{"id": 103826, "definitionId": 108831, "maxRanks": 2, "type": "passive", "name": "Light's Inspiration", "spellId": 373450, "icon": "spell_holy_restoration", "index": 100}]}, {"id": 82681, "name": "Crystalline Reflection", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82675, 82674], "prev": [82680, 82685], "entries": [{"id": 103829, "definitionId": 108834, "maxRanks": 2, "type": "passive", "name": "Crystalline Reflection", "spellId": 373457, "icon": "ability_priest_reflectiveshield", "index": 100}]}, {"id": 82686, "name": "Improved Fade", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82674, 82673], "prev": [82685, 82687], "entries": [{"id": 103836, "definitionId": 108841, "maxRanks": 2, "type": "passive", "name": "Improved Fade", "spellId": 390670, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 82672, "name": "Manipulation", "type": "single", "posX": 6300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82673], "prev": [82687], "entries": [{"id": 103818, "definitionId": 108823, "maxRanks": 1, "type": "passive", "name": "Manipulation", "spellId": 459985, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82676, "name": "Benevolence / Power Word: Life", "type": "choice", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82677, 82679], "entries": [{"id": 115884, "definitionId": 120896, "maxRanks": 1, "type": "passive", "name": "Benevolence", "spellId": 415416, "icon": "ability_priest_spiritoftheredeemer", "index": 100}, {"id": 103822, "definitionId": 108827, "maxRanks": 1, "type": "active", "name": "Power Word: Life", "spellId": 373481, "icon": "ability_priest_holywordlife", "index": 200}]}, {"id": 82675, "name": "Angelic Bulwark", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82679, 82681], "entries": [{"id": 103821, "definitionId": 108826, "maxRanks": 1, "type": "passive", "name": "Angelic Bulwark", "spellId": 108945, "icon": "ability_priest_angelicbulwark", "index": 100}]}, {"id": 82674, "name": "Essence Devourer / Void Shift", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82681, 82686], "entries": [{"id": 115883, "definitionId": 120895, "maxRanks": 1, "type": "passive", "name": "Essence Devourer", "spellId": 415479, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}, {"id": 103820, "definitionId": 108825, "maxRanks": 1, "type": "active", "name": "Void Shift", "spellId": 108968, "icon": "spell_priest_voidshift", "index": 200}]}, {"id": 82673, "name": "Phantom Reach", "type": "single", "posX": 6300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82672, 82686], "entries": [{"id": 103819, "definitionId": 108824, "maxRanks": 1, "type": "passive", "name": "Phantom Reach", "spellId": 459559, "icon": "spell_shadow_chilltouch", "index": 100}]}], "specNodes": [{"id": 82665, "name": "Devouring Plague", "type": "single", "posX": 12900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [82663, 82666, 82651], "prev": [], "entries": [{"id": 103808, "definitionId": 108813, "maxRanks": 1, "type": "active", "name": "Devouring Plague", "spellId": 335467, "icon": "spell_shadow_devouringplague", "index": 100}]}, {"id": 82663, "name": "Dispersion", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [82659], "prev": [82665], "entries": [{"id": 103806, "definitionId": 108811, "maxRanks": 1, "type": "active", "name": "Dispersion", "spellId": 47585, "icon": "spell_shadow_dispersion", "index": 100}]}, {"id": 82666, "name": "Shadowy Apparitions", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [93171], "prev": [82665], "entries": [{"id": 103809, "definitionId": 108814, "maxRanks": 1, "type": "passive", "name": "Shadowy Apparitions", "spellId": 341491, "icon": "ability_priest_shadowyapparition", "index": 100}]}, {"id": 82651, "name": "Silence", "type": "single", "posX": 13500, "posY": 2100, "maxRanks": 1, "next": [82652], "prev": [82665], "entries": [{"id": 103792, "definitionId": 108797, "maxRanks": 1, "type": "active", "name": "Silence", "spellId": 15487, "icon": "ability_priest_silence", "index": 100}]}, {"id": 82659, "name": "Intangibility / Mental Fortitude", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [82653], "prev": [82663], "entries": [{"id": 103801, "definitionId": 108806, "maxRanks": 1, "type": "passive", "name": "Intangibility", "spellId": 288733, "icon": "spell_shadow_dispersion", "index": 200}, {"id": 103800, "definitionId": 108805, "maxRanks": 1, "type": "passive", "name": "Mental Fortitude", "spellId": 377065, "icon": "ability_priest_clarityofpower", "index": 300}]}, {"id": 93171, "name": "Misery", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [82653, 82670, 82668], "prev": [82666], "entries": [{"id": 115448, "definitionId": 120460, "maxRanks": 1, "type": "passive", "name": "Misery", "spellId": 238558, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 82652, "name": "Last Word / Psychic Horror", "type": "choice", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [], "prev": [82651], "entries": [{"id": 103794, "definitionId": 108799, "maxRanks": 1, "type": "passive", "name": "Last Word", "spellId": 263716, "icon": "ability_priest_silence", "index": 100}, {"id": 103793, "definitionId": 108798, "maxRanks": 1, "type": "active", "name": "Psychic Horror", "spellId": 64044, "icon": "spell_shadow_psychichorrors", "index": 200}]}, {"id": 82653, "name": "Thought Harvester", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [82669, 82661, 82657], "prev": [82659, 93171], "entries": [{"id": 103795, "definitionId": 108800, "maxRanks": 1, "type": "passive", "name": "Thought Harvester", "spellId": 406788, "icon": "spell_shadow_unholyfrenzy", "index": 100}]}, {"id": 82670, "name": "Psychic Link", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [82657], "prev": [93171], "entries": [{"id": 103814, "definitionId": 108819, "maxRanks": 1, "type": "passive", "name": "Psychic Link", "spellId": 199484, "icon": "ability_priest_psychiclink", "index": 100}]}, {"id": 82668, "name": "Surge of Insanity", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [82657, 82658, 82557], "prev": [93171], "entries": [{"id": 103812, "definitionId": 108817, "maxRanks": 1, "type": "passive", "name": "Surge of Insanity", "spellId": 391399, "icon": "spell_fire_twilightflamebreath", "index": 100}]}, {"id": 82669, "name": "Shadow Crash / Shadow Crash", "type": "choice", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82559, 82662], "prev": [82653], "entries": [{"id": 103813, "definitionId": 108818, "maxRanks": 1, "type": "active", "name": "Shadow Crash", "spellId": 457042, "icon": "spell_shadow_shadowfury", "index": 100}, {"id": 125983, "definitionId": 130814, "maxRanks": 1, "type": "active", "name": "Shadow Crash", "spellId": 205385, "icon": "spell_shadow_shadowfury", "index": 200}]}, {"id": 82661, "name": "Unfurling Darkness", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82662], "prev": [82653], "entries": [{"id": 103804, "definitionId": 108809, "maxRanks": 1, "type": "passive", "name": "Unfurling Darkness", "spellId": 341273, "icon": "spell_priest_shadow_mend", "index": 100}]}, {"id": 82657, "name": "Dark Ascension / Void Eruption", "type": "choice", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82662, 82656, 82646], "prev": [82653, 82668, 82670], "entries": [{"id": 103680, "definitionId": 108685, "maxRanks": 1, "type": "active", "name": "Dark Ascension", "spellId": 391109, "icon": "ability_priest_darkarchangel", "index": 200}, {"id": 103674, "definitionId": 108679, "maxRanks": 1, "type": "active", "name": "Void Eruption", "spellId": 228260, "icon": "spell_priest_void_blast", "index": 300}]}, {"id": 82658, "name": "Mental Decay", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82646], "prev": [82668], "entries": [{"id": 103799, "definitionId": 108804, "maxRanks": 1, "type": "passive", "name": "Mental Decay", "spellId": 375994, "icon": "ability_kaztik_dominatemind", "index": 100}]}, {"id": 82557, "name": "Mind Spike", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [82646, 93172], "prev": [82668], "entries": [{"id": 103803, "definitionId": 108808, "maxRanks": 1, "type": "active", "name": "Mind Spike", "spellId": 73510, "icon": "spell_priest_mindspike", "index": 100}]}, {"id": 82559, "name": "Whispering Shadows", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82645, 82648], "prev": [82669], "entries": [{"id": 103682, "definitionId": 108687, "maxRanks": 1, "type": "passive", "name": "Whispering Shadows", "spellId": 406777, "icon": "spell_shadow_shadowfury", "index": 100}]}, {"id": 82662, "name": "Shadowy Insight", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82645, 82660], "prev": [82657, 82661, 82669], "entries": [{"id": 103805, "definitionId": 108810, "maxRanks": 1, "type": "passive", "name": "Shadowy Insight", "spellId": 375888, "icon": "spell_shadow_possession", "index": 100}]}, {"id": 82656, "name": "Ancient Madness", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82660, 82561, 82563], "prev": [82657], "entries": [{"id": 103798, "definitionId": 108803, "maxRanks": 1, "type": "passive", "name": "Ancient Madness", "spellId": 341240, "icon": "spell_priest_void_flay", "index": 100}]}, {"id": 82646, "name": "Voidtouched", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82563, 82647], "prev": [82557, 82657, 82658], "entries": [{"id": 103785, "definitionId": 108790, "maxRanks": 1, "type": "passive", "name": "Voidtouched", "spellId": 407430, "icon": "inv_enchant_voidsphere", "index": 100}]}, {"id": 93172, "name": "Mind Melt", "type": "single", "posX": 14700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [82647, 82654], "prev": [82557], "entries": [{"id": 115449, "definitionId": 120461, "maxRanks": 1, "type": "passive", "name": "Mind Melt", "spellId": 391090, "icon": "spell_shadow_skull", "index": 100}]}, {"id": 82645, "name": "Maddening Touch", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82648, 82558], "prev": [82662, 82559], "entries": [{"id": 103784, "definitionId": 108789, "maxRanks": 2, "type": "passive", "name": "Maddening Touch", "spellId": 391228, "icon": "spell_holy_stoicism", "index": 100}]}, {"id": 82660, "name": "Dark Evangelism", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82558], "prev": [82662, 82656], "entries": [{"id": 103802, "definitionId": 108807, "maxRanks": 2, "type": "passive", "name": "Dark Evangelism", "spellId": 391095, "icon": "spell_mage_presenceofmind", "index": 100}]}, {"id": 82561, "name": "Mind Devourer", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82558, 82667], "prev": [82656], "entries": [{"id": 103684, "definitionId": 108689, "maxRanks": 2, "type": "passive", "name": "Mind Devourer", "spellId": 373202, "icon": "spell_arcane_mindmastery", "index": 100}]}, {"id": 82563, "name": "Phantasmal Pathogen", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [82667], "prev": [82646, 82656], "entries": [{"id": 103686, "definitionId": 108691, "maxRanks": 2, "type": "passive", "name": "Phantasmal Pathogen", "spellId": 407469, "icon": "spell_shadow_shadetruesight", "index": 100}]}, {"id": 82647, "name": "Mind's Eye / Distorted Reality", "type": "choice", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [82667, 82654], "prev": [93172, 82646], "entries": [{"id": 103786, "definitionId": 108791, "maxRanks": 1, "type": "passive", "name": "Mind's Eye", "spellId": 407470, "icon": "spell_shadow_devouringplague", "index": 100}, {"id": 115671, "definitionId": 120683, "maxRanks": 1, "type": "passive", "name": "Distorted Reality", "spellId": 409044, "icon": "spell_shadow_gathershadows", "index": 200}]}, {"id": 82648, "name": "Mindbender", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82644, 82671], "prev": [82645, 82559], "entries": [{"id": 103788, "definitionId": 108793, "maxRanks": 1, "type": "active", "name": "Mindbender", "spellId": 200174, "icon": "spell_shadow_soulleech_3", "index": 100}]}, {"id": 82558, "name": "Deathspeaker", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82671, 82649], "prev": [82645, 82660, 82561], "entries": [{"id": 103681, "definitionId": 108686, "maxRanks": 1, "type": "passive", "name": "Deathspeaker", "spellId": 392507, "icon": "spell_shadow_demonicfortitude", "index": 100}]}, {"id": 82667, "name": "Auspicious Spirits", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82649, 93170, 82560], "prev": [82561, 82563, 82647], "entries": [{"id": 103811, "definitionId": 108816, "maxRanks": 1, "type": "passive", "name": "Auspicious Spirits", "spellId": 155271, "icon": "ability_priest_auspiciousspirits", "index": 300}]}, {"id": 82654, "name": "Void Torrent", "type": "single", "posX": 14700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [82560, 82655], "prev": [93172, 82647], "entries": [{"id": 103796, "definitionId": 108801, "maxRanks": 1, "type": "active", "name": "Void Torrent", "spellId": 263165, "icon": "spell_priest_voidsear", "index": 100}]}, {"id": 82644, "name": "Inescapable Torment", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82553], "prev": [82648], "entries": [{"id": 103783, "definitionId": 108788, "maxRanks": 1, "type": "passive", "name": "Inescapable Torment", "spellId": 373427, "icon": "spell_shadow_chilltouch", "index": 100}]}, {"id": 82671, "name": "Mastermind", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82552], "prev": [82558, 82648], "entries": [{"id": 103816, "definitionId": 108821, "maxRanks": 2, "type": "passive", "name": "Mastermind", "spellId": 391151, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 82649, "name": "Screams of the Void", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82552], "prev": [82558, 82667], "entries": [{"id": 103789, "definitionId": 108794, "maxRanks": 2, "type": "passive", "name": "Screams of the Void", "spellId": 375767, "icon": "spell_shadow_lifedrain02_purple", "index": 100}]}, {"id": 93170, "name": "Tormented Spirits", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82555], "prev": [82667], "entries": [{"id": 103810, "definitionId": 108815, "maxRanks": 2, "type": "passive", "name": "Tormented Spirits", "spellId": 391284, "icon": "spell_shadow_painandsuffering", "index": 100}]}, {"id": 82560, "name": "Insidious Ire", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [82643], "prev": [82654, 82667], "entries": [{"id": 103683, "definitionId": 108688, "maxRanks": 2, "type": "passive", "name": "Insidious Ire", "spellId": 373212, "icon": "spell_fire_twilightcano", "index": 100}]}, {"id": 82655, "name": "Malediction", "type": "single", "posX": 14700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [82643], "prev": [82654], "entries": [{"id": 103797, "definitionId": 108802, "maxRanks": 1, "type": "passive", "name": "Malediction", "spellId": 373221, "icon": "spell_shadow_deathsembrace", "index": 100}]}, {"id": 82553, "name": "Idol of Y'Shaarj", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82644], "entries": [{"id": 103787, "definitionId": 108792, "maxRanks": 1, "type": "passive", "name": "Idol of Y'Shaarj", "spellId": 373310, "icon": "achievement_raid_terraceofendlessspring04", "index": 100}]}, {"id": 82552, "name": "Idol of N'Zoth", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82671, 82649], "entries": [{"id": 103781, "definitionId": 108786, "maxRanks": 1, "type": "passive", "name": "Idol of N'Zoth", "spellId": 373280, "icon": "achievement_nzothraid_nzoth", "index": 100}]}, {"id": 82555, "name": "Idol of Yogg-Saron", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93170], "entries": [{"id": 103817, "definitionId": 108822, "maxRanks": 1, "type": "passive", "name": "Idol of Yogg-Saron", "spellId": 373273, "icon": "achievement_boss_heraldvolazj", "index": 100}]}, {"id": 82643, "name": "Idol of C'Thun", "type": "single", "posX": 14700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [82560, 82655], "entries": [{"id": 103782, "definitionId": 108787, "maxRanks": 1, "type": "passive", "name": "Idol of C'Thun", "spellId": 377349, "icon": "achievement_boss_cthun", "index": 100}]}], "heroNodes": [{"id": 94697, "name": "Power Surge", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "entryNode": true, "subTreeId": 19, "requiresNode": 0, "next": [94677, 94681, 94699], "prev": [], "entries": [{"id": 117300, "definitionId": 122312, "maxRanks": 1, "type": "passive", "name": "Power Surge", "spellId": 453109, "icon": "inv_ability_holyfire_groundstate", "index": 100}], "freeNode": true}, {"id": 94677, "name": "Perfected Form", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "next": [94686], "prev": [94697], "entries": [{"id": 117280, "definitionId": 122292, "maxRanks": 1, "type": "passive", "name": "Perfected Form", "spellId": 453917, "icon": "inv_ability_holyfire_buff", "index": 100}]}, {"id": 94681, "name": "Resonant Energy", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94680], "prev": [94697], "entries": [{"id": 117284, "definitionId": 122296, "maxRanks": 1, "type": "passive", "name": "Resonant Energy", "spellId": 453845, "icon": "ability_priest_halo", "index": 100}]}, {"id": 94699, "name": "Manifested Power", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94688], "prev": [94697], "entries": [{"id": 117302, "definitionId": 122314, "maxRanks": 1, "type": "passive", "name": "Manifested Power", "spellId": 453783, "icon": "spell_holy_surgeoflight", "index": 100}]}, {"id": 94686, "name": "Shock Pulse / Incessant Screams", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94678], "prev": [94677], "entries": [{"id": 117289, "definitionId": 122301, "maxRanks": 1, "type": "passive", "name": "Shock Pulse", "spellId": 453852, "icon": "spell_priest_pathofdevout", "index": 100}, {"id": 125083, "definitionId": 129915, "maxRanks": 1, "type": "passive", "name": "Incessant Screams", "spellId": 453918, "icon": "spell_shadow_psychicscream", "index": 200}]}, {"id": 94680, "name": "Word of Supremacy / Heightened Alteration", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94676], "prev": [94681], "entries": [{"id": 117283, "definitionId": 122295, "maxRanks": 1, "type": "passive", "name": "Word of Supremacy", "spellId": 453726, "icon": "spell_holy_wordfortitude", "index": 100}, {"id": 125084, "definitionId": 129916, "maxRanks": 1, "type": "passive", "name": "Heightened Alteration", "spellId": 453729, "icon": "inv_enchant_essenceeternallarge", "index": 200}]}, {"id": 94688, "name": "Empowered Surges", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 19, "next": [94685], "prev": [94699], "entries": [{"id": 117291, "definitionId": 122303, "maxRanks": 1, "type": "passive", "name": "Empowered Surges", "spellId": 453799, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 94678, "name": "Energy Compression / Sustained Potency", "type": "choice", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [94702], "prev": [94686], "entries": [{"id": 117281, "definitionId": 122293, "maxRanks": 1, "type": "passive", "name": "Energy Compression", "spellId": 449874, "icon": "spell_holy_circleofrenewal", "index": 100}, {"id": 125085, "definitionId": 129917, "maxRanks": 1, "type": "passive", "name": "Sustained Potency", "spellId": 454001, "icon": "ability_priest_ascension", "index": 200}]}, {"id": 94676, "name": "Concentrated Infusion", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "requiresNode": 82694, "next": [94702], "prev": [94680], "entries": [{"id": 117279, "definitionId": 122291, "maxRanks": 1, "type": "passive", "name": "Concentrated Infusion", "spellId": 453844, "icon": "spell_holy_powerinfusion", "index": 100}]}, {"id": 94685, "name": "Energy Cycle", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 19, "next": [94702], "prev": [94688], "entries": [{"id": 117288, "definitionId": 122300, "maxRanks": 1, "type": "passive", "name": "Energy Cycle", "spellId": 453828, "icon": "ability_priest_voidshift", "index": 100}]}, {"id": 94702, "name": "Divine Halo", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 19, "requiresNode": 0, "next": [], "prev": [94678, 94685, 94676], "entries": [{"id": 117305, "definitionId": 122317, "maxRanks": 1, "type": "passive", "name": "Divine Halo", "spellId": 449806, "icon": "inv_ability_holyfire_nova", "index": 100}]}, {"id": 94684, "name": "Entropic Rift", "type": "single", "posX": 8400, "posY": 4500, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "subTreeId": 18, "requiresNode": 82654, "next": [94693, 94703, 94670], "prev": [], "entries": [{"id": 117287, "definitionId": 122299, "maxRanks": 1, "type": "passive", "name": "Entropic Rift", "spellId": 447444, "icon": "inv_ability_voidweaverpriest_entropicrift", "index": 100}], "freeNode": true}, {"id": 94693, "name": "No Escape / Dark Energy", "type": "choice", "posX": 7800, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94668], "prev": [94684], "entries": [{"id": 117296, "definitionId": 122308, "maxRanks": 1, "type": "passive", "name": "No Escape", "spellId": 451204, "icon": "spell_fire_twilighthellfire", "index": 100}, {"id": 123845, "definitionId": 128683, "maxRanks": 1, "type": "passive", "name": "Dark Energy", "spellId": 451018, "icon": "achievement_boss_triumvirate_darknaaru", "index": 200}]}, {"id": 94703, "name": "Void Blast", "type": "single", "posX": 8400, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94695], "prev": [94684], "entries": [{"id": 117306, "definitionId": 122318, "maxRanks": 1, "type": "active", "name": "Void Blast", "spellId": 450405, "icon": "inv_cosmicvoid_missile", "index": 100}]}, {"id": 94670, "name": "Inner Quietus", "type": "single", "posX": 9000, "posY": 5100, "maxRanks": 1, "subTreeId": 18, "next": [100212], "prev": [94684], "entries": [{"id": 117273, "definitionId": 122285, "maxRanks": 1, "type": "passive", "name": "Inner Quietus", "spellId": 448278, "icon": "inv_cosmicvoid_buff", "index": 100}]}, {"id": 94668, "name": "Devour Matter / Darkening Horizon", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94692], "prev": [94693], "entries": [{"id": 117271, "definitionId": 122283, "maxRanks": 1, "type": "passive", "name": "Devour Matter", "spellId": 451840, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 117298, "definitionId": 122310, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 94695, "name": "Void Empowerment / Darkening Horizon", "type": "choice", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94669], "prev": [94703], "entries": [{"id": 125821, "definitionId": 128681, "maxRanks": 1, "type": "passive", "name": "Void Empowerment", "spellId": 450138, "icon": "inv_cosmicvoid_nova", "index": 100}, {"id": 125982, "definitionId": 130813, "maxRanks": 1, "type": "passive", "name": "Darkening Horizon", "spellId": 449912, "icon": "inv_misc_83_voidfocus", "index": 200}]}, {"id": 100212, "name": "Depth of Shadows / Voidwraith", "type": "choice", "posX": 9000, "posY": 5700, "maxRanks": 1, "subTreeId": 18, "next": [94696], "prev": [94670], "entries": [{"id": 123842, "definitionId": 128680, "maxRanks": 1, "type": "passive", "name": "Depth of Shadows", "spellId": 451308, "icon": "warlock_summon__voidlord", "index": 100}, {"id": 123841, "definitionId": 128679, "maxRanks": 1, "type": "passive", "name": "Voidwraith", "spellId": 451234, "icon": "warlock_curse_shadow", "index": 200}]}, {"id": 94692, "name": "Voidheart", "type": "single", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94668], "entries": [{"id": 117295, "definitionId": 122307, "maxRanks": 1, "type": "passive", "name": "Voidheart", "spellId": 449880, "icon": "inv_cosmicvoid_orb", "index": 100}]}, {"id": 94669, "name": "Void Infusion", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [94694], "prev": [94695], "entries": [{"id": 117272, "definitionId": 122284, "maxRanks": 1, "type": "passive", "name": "Void Infusion", "spellId": 450612, "icon": "inv_misc_volatileshadow", "index": 100}]}, {"id": 94696, "name": "Void Leech / Embrace the Shadow", "type": "choice", "posX": 9000, "posY": 6300, "maxRanks": 1, "subTreeId": 18, "next": [94694], "prev": [100212], "entries": [{"id": 117299, "definitionId": 122311, "maxRanks": 1, "type": "passive", "name": "Void Leech", "spellId": 451311, "icon": "spell_shadow_soulleech_2", "index": 100}, {"id": 123844, "definitionId": 128682, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadow", "spellId": 451569, "icon": "spell_shadow_shadesofdarkness", "index": 200}]}, {"id": 94694, "name": "Collapsing Void", "type": "single", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 18, "requiresNode": 82654, "next": [], "prev": [94669, 94692, 94696], "entries": [{"id": 117297, "definitionId": 122309, "maxRanks": 1, "type": "passive", "name": "Collapsing Void", "spellId": 448403, "icon": "inv_cosmicvoid_groundsate", "index": 100}]}], "subTreeNodes": [{"id": 99800, "name": "Archon / Voidweaver", "type": "subtree", "posX": 9300, "posY": 900, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123289, "type": "subtree", "name": "Archon", "traitSubTreeId": 19, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-archon", "nodes": [94697, 94677, 94681, 94699, 94686, 94680, 94688, 94678, 94676, 94685, 94702]}, {"id": 123287, "type": "subtree", "name": "Voidweaver", "traitSubTreeId": 18, "traitTreeId": 795, "atlasMemberName": "talents-heroclass-priest-voidweaver", "nodes": [94684, 94693, 94703, 94670, 94668, 94695, 100212, 94692, 94669, 94696, 94694]}]}], "fullNodeOrder": [82552, 82553, 82554, 82555, 82556, 82557, 82558, 82559, 82560, 82561, 82563, 82564, 82566, 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, 82647, 82648, 82649, 82651, 82652, 82653, 82654, 82655, 82656, 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82665, 82666, 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, 82687, 82688, 82689, 82690, 82691, 82692, 82693, 82694, 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, 82715, 82716, 82717, 82718, 82719, 82720, 82721, 86730, 92225, 93170, 93171, 93172, 94668, 94669, 94670, 94673, 94674, 94675, 94676, 94677, 94678, 94679, 94680, 94681, 94683, 94684, 94685, 94686, 94687, 94688, 94689, 94690, 94691, 94692, 94693, 94694, 94695, 94696, 94697, 94698, 94699, 94700, 94702, 94703, 99800, 99801, 99802, 100212]}, {"traitTreeId": 750, "className": "Death Knight", "classId": 6, "specName": "Blood", "specId": 250, "classNodes": [{"id": 76081, "name": "Icebound Fortitude", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76045], "prev": [], "entries": [{"id": 96210, "definitionId": 101212, "maxRanks": 1, "type": "active", "name": "Icebound Fortitude", "spellId": 48792, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 76071, "name": "Death Strike", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76067], "prev": [], "entries": [{"id": 96200, "definitionId": 101202, "maxRanks": 1, "type": "active", "name": "Death Strike", "spellId": 49998, "icon": "spell_deathknight_butcher2", "index": 100}], "freeNode": true}, {"id": 76072, "name": "Raise Dead", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76073], "prev": [], "entries": [{"id": 96201, "definitionId": 101203, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46585, "icon": "inv_pet_ghoul", "index": 100}]}, {"id": 76045, "name": "Runic Attenuation", "type": "single", "posX": 3000, "posY": 1800, "maxRanks": 1, "next": [76084, 76044, 76046], "prev": [76081], "entries": [{"id": 96173, "definitionId": 101175, "maxRanks": 1, "type": "passive", "name": "Runic Attenuation", "spellId": 207104, "icon": "boss_odunrunes_blue", "index": 100}]}, {"id": 76067, "name": "Improved Death Strike", "type": "single", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [76046, 76074, 76069], "prev": [76071], "entries": [{"id": 96196, "definitionId": 101198, "maxRanks": 1, "type": "passive", "name": "Improved Death Strike", "spellId": 374277, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76073, "name": "Cleaving Strikes", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [76069, 76059, 76060], "prev": [76072], "entries": [{"id": 96202, "definitionId": 101204, "maxRanks": 1, "type": "passive", "name": "Cleaving Strikes", "spellId": 316916, "icon": "spell_shadow_deathanddecay", "index": 100}]}, {"id": 76084, "name": "Mind Freeze", "type": "single", "posX": 2400, "posY": 2400, "maxRanks": 1, "next": [76083, 101708], "prev": [76045], "entries": [{"id": 96213, "definitionId": 101215, "maxRanks": 1, "type": "active", "name": "Mind Freeze", "spellId": 47528, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 76044, "name": "Blinding Sleet", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [101708], "prev": [76045], "entries": [{"id": 96172, "definitionId": 101174, "maxRanks": 1, "type": "active", "name": "Blinding Sleet", "spellId": 207167, "icon": "spell_frost_chillingblast", "index": 100}]}, {"id": 76046, "name": "Anti-Magic Barrier", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [101708, 76066, 76068], "prev": [76045, 76067], "entries": [{"id": 96174, "definitionId": 101176, "maxRanks": 1, "type": "passive", "name": "Anti-Magic Barrier", "spellId": 205727, "icon": "spell_shadow_antimagicshell", "index": 100}]}, {"id": 76074, "name": "March of Darkness", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [76068], "prev": [76067], "entries": [{"id": 96203, "definitionId": 101205, "maxRanks": 1, "type": "passive", "name": "March of Darkness", "spellId": 391546, "icon": "ability_argus_deathfog", "index": 100}]}, {"id": 76069, "name": "Unholy Ground", "type": "single", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [76068, 76075, 76061], "prev": [76073, 76067], "entries": [{"id": 96198, "definitionId": 101200, "maxRanks": 1, "type": "passive", "name": "Unholy Ground", "spellId": 374265, "icon": "ability_deathknight_desecratedground", "index": 100}]}, {"id": 76059, "name": "Control Undead", "type": "single", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [76061], "prev": [76073], "entries": [{"id": 96188, "definitionId": 101190, "maxRanks": 1, "type": "active", "name": "Control Undead", "spellId": 111673, "icon": "inv_misc_bone_skull_01", "index": 100}]}, {"id": 76060, "name": "Enfeeble / Sacrificial Pact", "type": "choice", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [76061, 102006], "prev": [76073], "entries": [{"id": 96189, "definitionId": 101191, "maxRanks": 1, "type": "passive", "name": "Enfeeble", "spellId": 392566, "icon": "ability_creature_poison_01", "index": 100}, {"id": 125608, "definitionId": 130440, "maxRanks": 1, "type": "active", "name": "Sacrificial Pact", "spellId": 327574, "icon": "spell_shadow_corpseexplode", "index": 200}]}, {"id": 76083, "name": "Coldthirst", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084], "entries": [{"id": 96212, "definitionId": 101214, "maxRanks": 1, "type": "passive", "name": "Coldthirst", "spellId": 378848, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 101708, "name": "Proliferating Chill", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084, 76046, 76044], "entries": [{"id": 125606, "definitionId": 130438, "maxRanks": 1, "type": "passive", "name": "Proliferating Chill", "spellId": 373930, "icon": "spell_frost_chainsofice", "index": 100}]}, {"id": 76066, "name": "Permafrost", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [76085, 76065], "prev": [76046], "entries": [{"id": 96195, "definitionId": 101197, "maxRanks": 1, "type": "passive", "name": "Permafrost", "spellId": 207200, "icon": "achievement_zone_frostfire", "index": 100}]}, {"id": 76068, "name": "Veteran of the Third War", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [76065], "prev": [76069, 76046, 76074], "entries": [{"id": 96197, "definitionId": 101199, "maxRanks": 1, "type": "passive", "name": "Veteran of the Third War", "spellId": 48263, "icon": "spell_misc_warsongfocus", "index": 100}]}, {"id": 76075, "name": "Death Pact", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [76065, 76076], "prev": [76069], "entries": [{"id": 96204, "definitionId": 101206, "maxRanks": 1, "type": "active", "name": "Death Pact", "spellId": 48743, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 76061, "name": "Brittle", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [76076], "prev": [76060, 76069, 76059], "entries": [{"id": 96190, "definitionId": 101192, "maxRanks": 1, "type": "passive", "name": "Brittle", "spellId": 374504, "icon": "ability_bosskilrogg_deaththroes", "index": 100}]}, {"id": 102006, "name": "Death's Reach", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [76076, 76063], "prev": [76060], "entries": [{"id": 126014, "definitionId": 130845, "maxRanks": 1, "type": "passive", "name": "Death's Reach", "spellId": 276079, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 76085, "name": "Icy Talons", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76086, 76052, 76064], "prev": [76066, 101708, 76083], "entries": [{"id": 96214, "definitionId": 101216, "maxRanks": 1, "type": "passive", "name": "Icy Talons", "spellId": 194878, "icon": "spell_deathknight_icytalons", "index": 100}]}, {"id": 76065, "name": "Anti-Magic Zone", "type": "single", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76064, 76048, 76077], "prev": [76068, 76075, 76066], "entries": [{"id": 96194, "definitionId": 101196, "maxRanks": 1, "type": "active", "name": "Anti-Magic Zone", "spellId": 51052, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76076, "name": "Unholy Bond", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76077, 76057, 76063], "prev": [76075, 102006, 76061], "entries": [{"id": 96205, "definitionId": 101207, "maxRanks": 1, "type": "passive", "name": "Unholy Bond", "spellId": 374261, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 76086, "name": "Ice Prison", "type": "single", "posX": 2400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96215, "definitionId": 101217, "maxRanks": 1, "type": "passive", "name": "Ice Prison", "spellId": 454786, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76052, "name": "Gloom Ward", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96180, "definitionId": 101182, "maxRanks": 1, "type": "passive", "name": "Gloom Ward", "spellId": 391571, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 76064, "name": "Asphyxiate", "type": "single", "posX": 3600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087, 76078], "prev": [76085, 76065], "entries": [{"id": 96193, "definitionId": 101195, "maxRanks": 1, "type": "active", "name": "Asphyxiate", "spellId": 221562, "icon": "ability_deathknight_asphixiate", "index": 100}]}, {"id": 76048, "name": "Assimilation", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078], "prev": [76065], "entries": [{"id": 96176, "definitionId": 101178, "maxRanks": 1, "type": "passive", "name": "Assimilation", "spellId": 374383, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76077, "name": "Wraith Walk", "type": "single", "posX": 4800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078, 76058], "prev": [76065, 76076], "entries": [{"id": 96206, "definitionId": 101208, "maxRanks": 1, "type": "active", "name": "Wraith Walk", "spellId": 212552, "icon": "inv_helm_plate_raiddeathknight_p_01", "index": 100}]}, {"id": 76057, "name": "Grip of the Dead", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076], "entries": [{"id": 96186, "definitionId": 101188, "maxRanks": 1, "type": "passive", "name": "Grip of the Dead", "spellId": 273952, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 76063, "name": "Soul Reaper", "type": "single", "posX": 6000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076, 102006], "entries": [{"id": 96192, "definitionId": 101194, "maxRanks": 1, "type": "active", "name": "Soul Reaper", "spellId": 343294, "icon": "ability_deathknight_soulreaper", "index": 100}]}, {"id": 76087, "name": "Suppression", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76088, 76051], "prev": [76052, 76086, 76064], "entries": [{"id": 96216, "definitionId": 101218, "maxRanks": 1, "type": "passive", "name": "Suppression", "spellId": 374049, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 76078, "name": "Blood Scent", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76051, 76055], "prev": [76048, 76064, 76077], "entries": [{"id": 96207, "definitionId": 101209, "maxRanks": 1, "type": "passive", "name": "Blood Scent", "spellId": 374030, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 76058, "name": "Unholy Endurance", "type": "single", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76055, 76056], "prev": [76057, 76063, 76077], "entries": [{"id": 96187, "definitionId": 101189, "maxRanks": 1, "type": "passive", "name": "Unholy Endurance", "spellId": 389682, "icon": "spell_deathknight_subversion", "index": 100}]}, {"id": 76088, "name": "Osmosis", "type": "single", "posX": 2400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079], "prev": [76087], "entries": [{"id": 96217, "definitionId": 101219, "maxRanks": 1, "type": "passive", "name": "Osmosis", "spellId": 454835, "icon": "spell_nature_rune", "index": 100}]}, {"id": 76051, "name": "Insidious Chill", "type": "single", "posX": 3600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079, 76080], "prev": [76078, 76087], "entries": [{"id": 96179, "definitionId": 101181, "maxRanks": 1, "type": "passive", "name": "Insidious Chill", "spellId": 391566, "icon": "ability_racial_wardoftheloafrost", "index": 100}]}, {"id": 76055, "name": "Runic Protection", "type": "single", "posX": 4800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76080, 76054], "prev": [76058, 76078], "entries": [{"id": 96183, "definitionId": 101185, "maxRanks": 1, "type": "passive", "name": "Runic Protection", "spellId": 454788, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 76056, "name": "Blood Draw", "type": "single", "posX": 6000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76054], "prev": [76058], "entries": [{"id": 96184, "definitionId": 101186, "maxRanks": 1, "type": "passive", "name": "Blood Draw", "spellId": 374598, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 76079, "name": "Rune Mastery", "type": "single", "posX": 3000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102008, 76050], "prev": [76051, 76088], "entries": [{"id": 96208, "definitionId": 101210, "maxRanks": 2, "type": "passive", "name": "Rune Mastery", "spellId": 374574, "icon": "ability_deathknight_hungeringruneblade", "index": 100}]}, {"id": 76080, "name": "Subduing Grasp", "type": "single", "posX": 4200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76050, 76049, 102007], "prev": [76055, 76051], "entries": [{"id": 96209, "definitionId": 101211, "maxRanks": 1, "type": "passive", "name": "Subduing Grasp", "spellId": 454822, "icon": "spell_nature_elementalshields", "index": 100}]}, {"id": 76054, "name": "Will of the Necropolis", "type": "single", "posX": 5400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102007, 76053], "prev": [76055, 76056], "entries": [{"id": 96182, "definitionId": 101184, "maxRanks": 2, "type": "passive", "name": "Will of the Necropolis", "spellId": 206967, "icon": "achievement_boss_kelthuzad_01", "index": 100}]}, {"id": 102008, "name": "Null Magic", "type": "single", "posX": 2400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76079], "entries": [{"id": 126016, "definitionId": 130847, "maxRanks": 1, "type": "passive", "name": "Null Magic", "spellId": 454842, "icon": "spell_shadow_detectinvisibility", "index": 100}]}, {"id": 76050, "name": "Unyielding Will", "type": "single", "posX": 3600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76079], "entries": [{"id": 96178, "definitionId": 101180, "maxRanks": 1, "type": "passive", "name": "Unyielding Will", "spellId": 457574, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 76049, "name": "Abomination Limb", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080], "entries": [{"id": 96177, "definitionId": 101179, "maxRanks": 1, "type": "active", "name": "Abomination Limb", "spellId": 383269, "icon": "ability_maldraxxus_deathknight", "index": 100}]}, {"id": 102007, "name": "Death's Echo", "type": "single", "posX": 4800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76054], "entries": [{"id": 126015, "definitionId": 130846, "maxRanks": 1, "type": "passive", "name": "Death's Echo", "spellId": 356367, "icon": "inv_fabric_ebonweave", "index": 100}]}, {"id": 76053, "name": "Vestigial Shell", "type": "single", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76054], "entries": [{"id": 96181, "definitionId": 101183, "maxRanks": 1, "type": "passive", "name": "Vestigial Shell", "spellId": 454851, "icon": "ability_domination_rune12", "index": 100}]}], "specNodes": [{"id": 76169, "name": "Heart Strike", "type": "single", "posX": 12600, "posY": 1200, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "next": [76168, 76170], "prev": [], "entries": [{"id": 96304, "definitionId": 101306, "maxRanks": 1, "type": "active", "name": "Heart Strike", "spellId": 206930, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 76168, "name": "Marrowrend", "type": "single", "posX": 12000, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76173], "prev": [76169], "entries": [{"id": 96303, "definitionId": 101305, "maxRanks": 1, "type": "active", "name": "Marrowrend", "spellId": 195182, "icon": "ability_deathknight_marrowrend", "index": 100}]}, {"id": 76170, "name": "Blood Boil", "type": "single", "posX": 13200, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76171], "prev": [76169], "entries": [{"id": 96305, "definitionId": 101307, "maxRanks": 1, "type": "active", "name": "Blood Boil", "spellId": 50842, "icon": "spell_deathknight_bloodboil", "index": 100}]}, {"id": 76173, "name": "Vampiric Blood", "type": "single", "posX": 12000, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76144, 76140], "prev": [76168], "entries": [{"id": 96308, "definitionId": 101310, "maxRanks": 1, "type": "active", "name": "Vampiric Blood", "spellId": 55233, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 76171, "name": "Bone Collector", "type": "single", "posX": 13200, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76126, 76146], "prev": [76170], "entries": [{"id": 96306, "definitionId": 101308, "maxRanks": 1, "type": "passive", "name": "Bone Collector", "spellId": 458572, "icon": "ability_deathknight_boneshield", "index": 100}]}, {"id": 76144, "name": "Ossuary", "type": "single", "posX": 11400, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76145, 76135, 76167], "prev": [76173], "entries": [{"id": 96277, "definitionId": 101279, "maxRanks": 1, "type": "passive", "name": "Ossuary", "spellId": 219786, "icon": "ability_deathknight_brittlebones", "index": 100}]}, {"id": 76140, "name": "Improved Vampiric Blood", "type": "single", "posX": 12000, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76167, 76138], "prev": [76173], "entries": [{"id": 96272, "definitionId": 101274, "maxRanks": 2, "type": "passive", "name": "Improved Vampiric Blood", "spellId": 317133, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 76126, "name": "Improved Heart Strike", "type": "single", "posX": 13200, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76138, 76137], "prev": [76171], "entries": [{"id": 96257, "definitionId": 101259, "maxRanks": 2, "type": "passive", "name": "Improved Heart Strike", "spellId": 374717, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 76146, "name": "Ossified Vitriol", "type": "single", "posX": 13800, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76137, 76124, 76147], "prev": [76171], "entries": [{"id": 96279, "definitionId": 101281, "maxRanks": 1, "type": "passive", "name": "Ossified Vitriol", "spellId": 458744, "icon": "ability_warlock_cremation", "index": 100}]}, {"id": 76145, "name": "Leeching Strike", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76042, 76039], "prev": [76144], "entries": [{"id": 96278, "definitionId": 101280, "maxRanks": 1, "type": "passive", "name": "Leeching Strike", "spellId": 377629, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 76135, "name": "Heartbreaker", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76042, 76142], "prev": [76144], "entries": [{"id": 96266, "definitionId": 101268, "maxRanks": 1, "type": "passive", "name": "Heartbreaker", "spellId": 221536, "icon": "spell_deathknight_deathstrike", "index": 100}]}, {"id": 76167, "name": "Foul Bulwark", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76142], "prev": [76140, 76144], "entries": [{"id": 96302, "definitionId": 101304, "maxRanks": 1, "type": "passive", "name": "Foul Bulwark", "spellId": 206974, "icon": "inv_armor_shield_naxxramas_d_02", "index": 100}]}, {"id": 76138, "name": "Dancing Rune Weapon", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76142, 76129, 76166], "prev": [76140, 76126], "entries": [{"id": 96269, "definitionId": 101271, "maxRanks": 1, "type": "active", "name": "Dancing Rune Weapon", "spellId": 49028, "icon": "inv_sword_07", "index": 100}]}, {"id": 76137, "name": "Hemostasis", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76166], "prev": [76126, 76146], "entries": [{"id": 96268, "definitionId": 101270, "maxRanks": 1, "type": "passive", "name": "Hemostasis", "spellId": 273946, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 76124, "name": "Perseverance of the Ebon Blade", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76166, 76141], "prev": [76146], "entries": [{"id": 96255, "definitionId": 101257, "maxRanks": 1, "type": "passive", "name": "Perseverance of the Ebon Blade", "spellId": 374747, "icon": "ability_deathknight_sanguinfortitude", "index": 100}]}, {"id": 76147, "name": "Relish in Blood", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76141, 76174], "prev": [76146], "entries": [{"id": 96280, "definitionId": 101282, "maxRanks": 1, "type": "passive", "name": "Relish in Blood", "spellId": 317610, "icon": "ability_deathknight_roilingblood", "index": 100}]}, {"id": 76042, "name": "Gorefiend's Grasp", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76039, 76165], "prev": [76145, 76135], "entries": [{"id": 96170, "definitionId": 101172, "maxRanks": 1, "type": "active", "name": "Gorefiend's Grasp", "spellId": 108199, "icon": "ability_deathknight_aoedeathgrip", "index": 100}]}, {"id": 76142, "name": "Improved Bone Shield", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76143], "prev": [76135, 76167, 76138], "entries": [{"id": 96274, "definitionId": 101276, "maxRanks": 1, "type": "passive", "name": "Improved Bone Shield", "spellId": 374715, "icon": "ability_deathknight_marrowrend", "index": 100}]}, {"id": 76129, "name": "Insatiable Blade", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76143, 76130, 76043], "prev": [76138], "entries": [{"id": 96260, "definitionId": 101262, "maxRanks": 1, "type": "passive", "name": "Insatiable Blade", "spellId": 377637, "icon": "70_inscription_vantus_rune_nightmare", "index": 100}]}, {"id": 76166, "name": "Rune Tap", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76043, 76038], "prev": [76138, 76137, 76124], "entries": [{"id": 96301, "definitionId": 101303, "maxRanks": 1, "type": "active", "name": "Rune Tap", "spellId": 194679, "icon": "spell_deathknight_runetap", "index": 100}]}, {"id": 76141, "name": "Rapid Decomposition", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76038, 76174], "prev": [76147, 76124], "entries": [{"id": 96273, "definitionId": 101275, "maxRanks": 1, "type": "passive", "name": "Rapid Decomposition", "spellId": 194662, "icon": "ability_deathknight_deathsiphon2", "index": 100}]}, {"id": 76039, "name": "Blood Tap", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102243], "prev": [76042, 76145], "entries": [{"id": 96167, "definitionId": 101169, "maxRanks": 1, "type": "active", "name": "Blood Tap", "spellId": 221699, "icon": "spell_deathknight_bloodtap", "index": 100}]}, {"id": 76165, "name": "Tightening Grasp", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102243, 76139], "prev": [76042], "entries": [{"id": 96300, "definitionId": 101302, "maxRanks": 1, "type": "passive", "name": "Tightening Grasp", "spellId": 206970, "icon": "spell_shadow_coneofsilence", "index": 100}]}, {"id": 76143, "name": "Reinforced Bones", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76139, 102244], "prev": [76142, 76129], "entries": [{"id": 96276, "definitionId": 101278, "maxRanks": 1, "type": "passive", "name": "Reinforced Bones", "spellId": 374737, "icon": "ability_rogue_deadenednerves", "index": 100}]}, {"id": 76130, "name": "Everlasting Bond", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102244], "prev": [76129], "entries": [{"id": 96261, "definitionId": 101263, "maxRanks": 1, "type": "passive", "name": "Everlasting Bond", "spellId": 377668, "icon": "inv_sword_07", "index": 100}]}, {"id": 76043, "name": "Voracious", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102244, 102242], "prev": [76129, 76166], "entries": [{"id": 96171, "definitionId": 101173, "maxRanks": 1, "type": "passive", "name": "Voracious", "spellId": 273953, "icon": "ability_ironmaidens_whirlofblood", "index": 100}]}, {"id": 76038, "name": "Coagulopathy", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [102242, 76041], "prev": [76141, 76166], "entries": [{"id": 96166, "definitionId": 101168, "maxRanks": 1, "type": "passive", "name": "Coagulopathy", "spellId": 391477, "icon": "ability_skeer_bloodletting", "index": 100}]}, {"id": 76174, "name": "Bloodworms", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76041], "prev": [76141, 76147], "entries": [{"id": 96309, "definitionId": 101311, "maxRanks": 1, "type": "passive", "name": "Bloodworms", "spellId": 195679, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 102243, "name": "Blood Feast", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76128], "prev": [76039, 76165], "entries": [{"id": 126298, "definitionId": 131124, "maxRanks": 1, "type": "passive", "name": "Blood Feast", "spellId": 391386, "icon": "spell_deathknight_vendetta", "index": 100}]}, {"id": 76139, "name": "Mark of Blood / Tombstone", "type": "choice", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76128, 76131], "prev": [76143, 76165], "entries": [{"id": 96271, "definitionId": 101273, "maxRanks": 1, "type": "active", "name": "Mark of Blood", "spellId": 206940, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 96270, "definitionId": 101272, "maxRanks": 1, "type": "active", "name": "Tombstone", "spellId": 219809, "icon": "ability_fiegndead", "index": 200}]}, {"id": 102244, "name": "Blooddrinker / Consumption", "type": "choice", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76131, 102245, 76172], "prev": [76043, 76130, 76143], "entries": [{"id": 126300, "definitionId": 131126, "maxRanks": 1, "type": "active", "name": "Blooddrinker", "spellId": 206931, "icon": "ability_animusdraw", "index": 100}, {"id": 126299, "definitionId": 131125, "maxRanks": 1, "type": "active", "name": "Consumption", "spellId": 274156, "icon": "inv_axe_2h_artifactmaw_d_01", "index": 200}]}, {"id": 102242, "name": "Bloodied Blade", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76172, 76132], "prev": [76043, 76038], "entries": [{"id": 126296, "definitionId": 131122, "maxRanks": 1, "type": "passive", "name": "Bloodied Blade", "spellId": 458753, "icon": "inv_sword_2h_ebonblade_b_01_red", "index": 100}]}, {"id": 76041, "name": "Sanguine Ground", "type": "single", "posX": 14400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76132], "prev": [76038, 76174], "entries": [{"id": 96169, "definitionId": 101171, "maxRanks": 1, "type": "passive", "name": "Sanguine Ground", "spellId": 391458, "icon": "inv_artifact_corruptedbloodofzakajz", "index": 100}]}, {"id": 76128, "name": "Shattering Bone", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76127], "prev": [76139, 102243], "entries": [{"id": 96259, "definitionId": 101261, "maxRanks": 1, "type": "passive", "name": "Shattering Bone", "spellId": 377640, "icon": "ability_deathknight_shatteringbone", "index": 100}]}, {"id": 76131, "name": "Heartrend", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76133], "prev": [76139, 102244], "entries": [{"id": 96262, "definitionId": 101264, "maxRanks": 1, "type": "passive", "name": "Heartrend", "spellId": 377655, "icon": "inv_weapon_shortblade_40", "index": 100}]}, {"id": 102245, "name": "Carnage", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102244], "entries": [{"id": 126301, "definitionId": 131127, "maxRanks": 1, "type": "passive", "name": "Carnage", "spellId": 458752, "icon": "sha_ability_warrior_bloodnova_nightmare", "index": 100}]}, {"id": 76172, "name": "Iron Heart", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76125], "prev": [102242, 102244], "entries": [{"id": 96307, "definitionId": 101309, "maxRanks": 1, "type": "passive", "name": "Iron Heart", "spellId": 391395, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 76132, "name": "Red Thirst", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76040], "prev": [102242, 76041], "entries": [{"id": 96263, "definitionId": 101265, "maxRanks": 1, "type": "passive", "name": "Red Thirst", "spellId": 205723, "icon": "spell_deathknight_bloodpresence", "index": 100}]}, {"id": 76127, "name": "Bonestorm", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76128], "entries": [{"id": 96258, "definitionId": 101260, "maxRanks": 1, "type": "active", "name": "Bonestorm", "spellId": 194844, "icon": "achievement_boss_lordmarrowgar", "index": 100}]}, {"id": 76133, "name": "Purgatory", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76131], "entries": [{"id": 96264, "definitionId": 101266, "maxRanks": 1, "type": "passive", "name": "Purgatory", "spellId": 114556, "icon": "inv_misc_shadowegg", "index": 100}]}, {"id": 76125, "name": "Bloodshot", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76172], "entries": [{"id": 96256, "definitionId": 101258, "maxRanks": 1, "type": "passive", "name": "Bloodshot", "spellId": 391398, "icon": "ability_warlock_baneofhavoc", "index": 100}]}, {"id": 76040, "name": "Umbilicus Eternus", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76132], "entries": [{"id": 96168, "definitionId": 101170, "maxRanks": 1, "type": "passive", "name": "Umbilicus Eternus", "spellId": 391517, "icon": "artifactability_blooddeathknight_umbilicuseternus", "index": 100}]}], "heroNodes": [{"id": 95062, "name": "Reaper's Mark", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 33, "next": [95036, 95058, 95043], "prev": [], "entries": [{"id": 117659, "definitionId": 122671, "maxRanks": 1, "type": "active", "name": "Reaper's Mark", "spellId": 439843, "icon": "inv_ability_deathbringerdeathknight_reapersmark", "index": 100}], "freeNode": true}, {"id": 95051, "name": "Vampiric Strike", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 31, "next": [95064, 95048, 95056], "prev": [], "entries": [{"id": 117648, "definitionId": 122660, "maxRanks": 1, "type": "passive", "name": "Vampiric Strike", "spellId": 433901, "icon": "inv_ability_sanlayndeathknight_vampiricstrike", "index": 100}], "freeNode": true}, {"id": 95036, "name": "Wave of Souls", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95061], "prev": [95062], "entries": [{"id": 117633, "definitionId": 122645, "maxRanks": 1, "type": "passive", "name": "Wave of Souls", "spellId": 439851, "icon": "spell_animamaw_wave", "index": 100}]}, {"id": 95058, "name": "Wither Away", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95034], "prev": [95062], "entries": [{"id": 117655, "definitionId": 122667, "maxRanks": 1, "type": "passive", "name": "Wither Away", "spellId": 441894, "icon": "sha_spell_warlock_demonsoul", "index": 100}]}, {"id": 95043, "name": "Bind in Darkness", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95035], "prev": [95062], "entries": [{"id": 117640, "definitionId": 122652, "maxRanks": 1, "type": "passive", "name": "Bind in Darkness", "spellId": 440031, "icon": "ability_argus_soulbombdebuffsmall", "index": 100}]}, {"id": 95064, "name": "Newly Turned / Vampiric Speed", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95033], "prev": [95051], "entries": [{"id": 117661, "definitionId": 122673, "maxRanks": 1, "type": "passive", "name": "Newly Turned", "spellId": 433934, "icon": "ability_deathknight_hemorrhagicfever", "index": 100}, {"id": 117892, "definitionId": 122904, "maxRanks": 1, "type": "passive", "name": "Vampiric Speed", "spellId": 434028, "icon": "inv_boots_cloth_34v2", "index": 200}]}, {"id": 95048, "name": "Blood-Soaked Ground", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95065], "prev": [95051], "entries": [{"id": 117645, "definitionId": 122657, "maxRanks": 1, "type": "passive", "name": "Blood-Soaked Ground", "spellId": 434033, "icon": "ability_ironmaidens_corruptedblood", "index": 100}]}, {"id": 95056, "name": "Vampiric Aura / Bloody Fortitude", "type": "choice", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95046], "prev": [95051], "entries": [{"id": 117653, "definitionId": 122665, "maxRanks": 1, "type": "passive", "name": "Vampiric Aura", "spellId": 434100, "icon": "ability_rogue_vendetta", "index": 100}, {"id": 117891, "definitionId": 122903, "maxRanks": 1, "type": "passive", "name": "Bloody Fortitude", "spellId": 434136, "icon": "ability_warrior_intensifyrage", "index": 200}]}, {"id": 95061, "name": "Soul Rupture", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95032], "prev": [95036], "entries": [{"id": 117658, "definitionId": 122670, "maxRanks": 1, "type": "passive", "name": "Soul Rupture", "spellId": 437161, "icon": "warlock_siphonlife", "index": 100}]}, {"id": 95034, "name": "Grim Reaper / Reaper of Souls", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95057], "prev": [95058], "entries": [{"id": 117631, "definitionId": 122643, "maxRanks": 1, "type": "passive", "name": "Grim Reaper", "spellId": 434905, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}, {"id": 128235, "definitionId": 133042, "maxRanks": 1, "type": "passive", "name": "Reaper of Souls", "spellId": 440002, "icon": "pvp_soulrip", "index": 200}]}, {"id": 95035, "name": "Pact of the Deathbringer / Rune Carved Plates", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95049], "prev": [95043], "entries": [{"id": 117632, "definitionId": 122644, "maxRanks": 1, "type": "passive", "name": "Pact of the Deathbringer", "spellId": 440476, "icon": "ability_revendreth_deathknight", "index": 100}, {"id": 123420, "definitionId": 128258, "maxRanks": 1, "type": "passive", "name": "Rune Carved Plates", "spellId": 440282, "icon": "spell_deathknight_runetap", "index": 200}]}, {"id": 95033, "name": "Infliction of Sorrow", "type": "single", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95045], "prev": [95064], "entries": [{"id": 117630, "definitionId": 122642, "maxRanks": 1, "type": "passive", "name": "Infliction of Sorrow", "spellId": 434143, "icon": "ability_warrior_bloodbath", "index": 100}]}, {"id": 95065, "name": "Frenzied Bloodthirst", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95040], "prev": [95048], "entries": [{"id": 117662, "definitionId": 122674, "maxRanks": 1, "type": "passive", "name": "Frenzied Bloodthirst", "spellId": 434075, "icon": "inv_sulfurelemental_blood", "index": 100}]}, {"id": 95046, "name": "The Blood is Life", "type": "single", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95055], "prev": [95056], "entries": [{"id": 117643, "definitionId": 122655, "maxRanks": 1, "type": "passive", "name": "The Blood is Life", "spellId": 434260, "icon": "achievement_nazmir_boss_bloodofghuun", "index": 100}]}, {"id": 95032, "name": "Swift and Painful", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95061], "entries": [{"id": 117629, "definitionId": 122641, "maxRanks": 1, "type": "passive", "name": "Swift and Painful", "spellId": 443560, "icon": "ability_domination_rune02", "index": 100}]}, {"id": 95057, "name": "Dark Talons / Reaper's Onslaught", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95034], "entries": [{"id": 117654, "definitionId": 122666, "maxRanks": 1, "type": "passive", "name": "Dark Talons", "spellId": 436687, "icon": "inv_shoulder_93", "index": 100}, {"id": 128266, "definitionId": 133073, "maxRanks": 1, "type": "passive", "name": "Reaper's Onslaught", "spellId": 469870, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 95049, "name": "Death's Messenger / Expelling Shield", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95035], "entries": [{"id": 117646, "definitionId": 122658, "maxRanks": 1, "type": "passive", "name": "Death's Messenger", "spellId": 437122, "icon": "ability_argus_deathfog", "index": 100}, {"id": 128234, "definitionId": 133041, "maxRanks": 1, "type": "passive", "name": "Expelling Shield", "spellId": 439948, "icon": "spell_shadow_antimagicshell", "index": 200}]}, {"id": 95045, "name": "Visceral Strength", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95033], "entries": [{"id": 117642, "definitionId": 122654, "maxRanks": 1, "type": "passive", "name": "Visceral Strength", "spellId": 434157, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 95040, "name": "Incite Terror", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95065], "entries": [{"id": 117637, "definitionId": 122649, "maxRanks": 1, "type": "passive", "name": "Incite Terror", "spellId": 434151, "icon": "ability_warlock_improveddemonictactics", "index": 100}]}, {"id": 95055, "name": "Pact of the San'layn / Sanguine Scent", "type": "choice", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95046], "entries": [{"id": 117652, "definitionId": 122664, "maxRanks": 1, "type": "passive", "name": "Pact of the San'layn", "spellId": 434261, "icon": "ability_warrior_bloodnova", "index": 100}, {"id": 117893, "definitionId": 122905, "maxRanks": 1, "type": "passive", "name": "Sanguine Scent", "spellId": 434263, "icon": "ability_deathknight_roilingblood", "index": 200}]}, {"id": 95068, "name": "Exterminate", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 33, "next": [], "prev": [95057, 95032, 95049], "entries": [{"id": 117665, "definitionId": 122677, "maxRanks": 1, "type": "passive", "name": "Exterminate", "spellId": 441378, "icon": "inv_polearm_2h_titanargus_d_01", "index": 100}]}, {"id": 95053, "name": "Gift of the San'layn", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 31, "next": [], "prev": [95040, 95045, 95055], "entries": [{"id": 117650, "definitionId": 122662, "maxRanks": 1, "type": "passive", "name": "Gift of the San'layn", "spellId": 434152, "icon": "spell_deathknight_bloodtap", "index": 100}]}], "subTreeNodes": [{"id": 99822, "name": "Deathbringer / San'layn", "type": "subtree", "posX": 7500, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123326, "type": "subtree", "name": "Deathbringer", "traitSubTreeId": 33, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-deathbringer", "nodes": [95062, 95036, 95058, 95043, 95061, 95034, 95035, 95032, 95057, 95049, 95068]}, {"id": 123325, "type": "subtree", "name": "San'layn", "traitSubTreeId": 31, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-sanlayn", "nodes": [95051, 95064, 95048, 95056, 95033, 95065, 95046, 95045, 95040, 95055, 95053]}]}], "fullNodeOrder": [76033, 76035, 76037, 76038, 76039, 76040, 76041, 76042, 76043, 76044, 76045, 76046, 76048, 76049, 76050, 76051, 76052, 76053, 76054, 76055, 76056, 76057, 76058, 76059, 76060, 76061, 76063, 76064, 76065, 76066, 76067, 76068, 76069, 76071, 76072, 76073, 76074, 76075, 76076, 76077, 76078, 76079, 76080, 76081, 76083, 76084, 76085, 76086, 76087, 76088, 76089, 76091, 76092, 76093, 76094, 76095, 76096, 76097, 76098, 76099, 76100, 76101, 76102, 76103, 76105, 76106, 76108, 76109, 76110, 76111, 76112, 76113, 76114, 76115, 76116, 76117, 76118, 76119, 76120, 76121, 76122, 76123, 76124, 76125, 76126, 76127, 76128, 76129, 76130, 76131, 76132, 76133, 76135, 76137, 76138, 76139, 76140, 76141, 76142, 76143, 76144, 76145, 76146, 76147, 76148, 76149, 76150, 76151, 76152, 76153, 76154, 76155, 76156, 76157, 76158, 76159, 76160, 76161, 76162, 76163, 76164, 76165, 76166, 76167, 76168, 76169, 76170, 76171, 76172, 76173, 76174, 76175, 76176, 76177, 76178, 76179, 76180, 76181, 76182, 76183, 76184, 76185, 76186, 76187, 76188, 76189, 76190, 76191, 76192, 76193, 76194, 76195, 76196, 76197, 95032, 95033, 95034, 95035, 95036, 95037, 95040, 95041, 95042, 95043, 95044, 95045, 95046, 95047, 95048, 95049, 95051, 95053, 95054, 95055, 95056, 95057, 95058, 95059, 95060, 95061, 95062, 95063, 95064, 95065, 95066, 95067, 95068, 99820, 99821, 99822, 101708, 101882, 101929, 101930, 101931, 101932, 101933, 102006, 102007, 102008, 102009, 102242, 102243, 102244, 102245]}, {"traitTreeId": 750, "className": "Death Knight", "classId": 6, "specName": "Frost", "specId": 251, "classNodes": [{"id": 76081, "name": "Icebound Fortitude", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76045], "prev": [], "entries": [{"id": 96210, "definitionId": 101212, "maxRanks": 1, "type": "active", "name": "Icebound Fortitude", "spellId": 48792, "icon": "spell_deathknight_iceboundfortitude", "index": 100}], "freeNode": true}, {"id": 76071, "name": "Death Strike", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76067], "prev": [], "entries": [{"id": 96200, "definitionId": 101202, "maxRanks": 1, "type": "active", "name": "Death Strike", "spellId": 49998, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76072, "name": "Raise Dead", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76073], "prev": [], "entries": [{"id": 96201, "definitionId": 101203, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46585, "icon": "inv_pet_ghoul", "index": 100}]}, {"id": 76045, "name": "Runic Attenuation", "type": "single", "posX": 3000, "posY": 1800, "maxRanks": 1, "next": [76084, 76044, 76046], "prev": [76081], "entries": [{"id": 96173, "definitionId": 101175, "maxRanks": 1, "type": "passive", "name": "Runic Attenuation", "spellId": 207104, "icon": "boss_odunrunes_blue", "index": 100}]}, {"id": 76067, "name": "Improved Death Strike", "type": "single", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [76046, 76074, 76069], "prev": [76071], "entries": [{"id": 96196, "definitionId": 101198, "maxRanks": 1, "type": "passive", "name": "Improved Death Strike", "spellId": 374277, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76073, "name": "Cleaving Strikes", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [76069, 76059, 76060], "prev": [76072], "entries": [{"id": 96202, "definitionId": 101204, "maxRanks": 1, "type": "passive", "name": "Cleaving Strikes", "spellId": 316916, "icon": "spell_shadow_deathanddecay", "index": 100}]}, {"id": 76084, "name": "Mind Freeze", "type": "single", "posX": 2400, "posY": 2400, "maxRanks": 1, "next": [76083, 101708], "prev": [76045], "entries": [{"id": 96213, "definitionId": 101215, "maxRanks": 1, "type": "active", "name": "Mind Freeze", "spellId": 47528, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 76044, "name": "Blinding Sleet", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [101708], "prev": [76045], "entries": [{"id": 96172, "definitionId": 101174, "maxRanks": 1, "type": "active", "name": "Blinding Sleet", "spellId": 207167, "icon": "spell_frost_chillingblast", "index": 100}]}, {"id": 76046, "name": "Anti-Magic Barrier", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [101708, 76066, 76068], "prev": [76045, 76067], "entries": [{"id": 96174, "definitionId": 101176, "maxRanks": 1, "type": "passive", "name": "Anti-Magic Barrier", "spellId": 205727, "icon": "spell_shadow_antimagicshell", "index": 100}]}, {"id": 76074, "name": "March of Darkness", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [76068], "prev": [76067], "entries": [{"id": 96203, "definitionId": 101205, "maxRanks": 1, "type": "passive", "name": "March of Darkness", "spellId": 391546, "icon": "ability_argus_deathfog", "index": 100}]}, {"id": 76069, "name": "Unholy Ground", "type": "single", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [76068, 76075, 76061], "prev": [76073, 76067], "entries": [{"id": 96198, "definitionId": 101200, "maxRanks": 1, "type": "passive", "name": "Unholy Ground", "spellId": 374265, "icon": "ability_deathknight_desecratedground", "index": 100}]}, {"id": 76059, "name": "Control Undead", "type": "single", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [76061], "prev": [76073], "entries": [{"id": 96188, "definitionId": 101190, "maxRanks": 1, "type": "active", "name": "Control Undead", "spellId": 111673, "icon": "inv_misc_bone_skull_01", "index": 100}]}, {"id": 76060, "name": "Enfeeble / Sacrificial Pact", "type": "choice", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [76061, 102006], "prev": [76073], "entries": [{"id": 96189, "definitionId": 101191, "maxRanks": 1, "type": "passive", "name": "Enfeeble", "spellId": 392566, "icon": "ability_creature_poison_01", "index": 100}, {"id": 125608, "definitionId": 130440, "maxRanks": 1, "type": "active", "name": "Sacrificial Pact", "spellId": 327574, "icon": "spell_shadow_corpseexplode", "index": 200}]}, {"id": 76083, "name": "Coldthirst", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084], "entries": [{"id": 96212, "definitionId": 101214, "maxRanks": 1, "type": "passive", "name": "Coldthirst", "spellId": 378848, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 101708, "name": "Proliferating Chill", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084, 76046, 76044], "entries": [{"id": 125606, "definitionId": 130438, "maxRanks": 1, "type": "passive", "name": "Proliferating Chill", "spellId": 373930, "icon": "spell_frost_chainsofice", "index": 100}]}, {"id": 76066, "name": "Permafrost", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [76085, 76065], "prev": [76046], "entries": [{"id": 96195, "definitionId": 101197, "maxRanks": 1, "type": "passive", "name": "Permafrost", "spellId": 207200, "icon": "achievement_zone_frostfire", "index": 100}]}, {"id": 76068, "name": "Veteran of the Third War", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [76065], "prev": [76069, 76046, 76074], "entries": [{"id": 96197, "definitionId": 101199, "maxRanks": 1, "type": "passive", "name": "Veteran of the Third War", "spellId": 48263, "icon": "spell_misc_warsongfocus", "index": 100}]}, {"id": 76075, "name": "Death Pact", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [76065, 76076], "prev": [76069], "entries": [{"id": 96204, "definitionId": 101206, "maxRanks": 1, "type": "active", "name": "Death Pact", "spellId": 48743, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 76061, "name": "Brittle", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [76076], "prev": [76060, 76069, 76059], "entries": [{"id": 96190, "definitionId": 101192, "maxRanks": 1, "type": "passive", "name": "Brittle", "spellId": 374504, "icon": "ability_bosskilrogg_deaththroes", "index": 100}]}, {"id": 102006, "name": "Death's Reach", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [76076, 76063], "prev": [76060], "entries": [{"id": 126014, "definitionId": 130845, "maxRanks": 1, "type": "passive", "name": "Death's Reach", "spellId": 276079, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 76085, "name": "Icy Talons", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76086, 76052, 76064], "prev": [76066, 101708, 76083], "entries": [{"id": 96214, "definitionId": 101216, "maxRanks": 1, "type": "passive", "name": "Icy Talons", "spellId": 194878, "icon": "spell_deathknight_icytalons", "index": 100}]}, {"id": 76065, "name": "Anti-Magic Zone", "type": "single", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76064, 76048, 76077], "prev": [76068, 76075, 76066], "entries": [{"id": 96194, "definitionId": 101196, "maxRanks": 1, "type": "active", "name": "Anti-Magic Zone", "spellId": 51052, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76076, "name": "Unholy Bond", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76077, 76057, 76063], "prev": [76075, 102006, 76061], "entries": [{"id": 96205, "definitionId": 101207, "maxRanks": 1, "type": "passive", "name": "Unholy Bond", "spellId": 374261, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 76086, "name": "Ice Prison", "type": "single", "posX": 2400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96215, "definitionId": 101217, "maxRanks": 1, "type": "passive", "name": "Ice Prison", "spellId": 454786, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76052, "name": "Gloom Ward", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96180, "definitionId": 101182, "maxRanks": 1, "type": "passive", "name": "Gloom Ward", "spellId": 391571, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 76064, "name": "Asphyxiate", "type": "single", "posX": 3600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087, 76078], "prev": [76085, 76065], "entries": [{"id": 96193, "definitionId": 101195, "maxRanks": 1, "type": "active", "name": "Asphyxiate", "spellId": 221562, "icon": "ability_deathknight_asphixiate", "index": 100}]}, {"id": 76048, "name": "Assimilation", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078], "prev": [76065], "entries": [{"id": 96176, "definitionId": 101178, "maxRanks": 1, "type": "passive", "name": "Assimilation", "spellId": 374383, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76077, "name": "Wraith Walk", "type": "single", "posX": 4800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078, 76058], "prev": [76065, 76076], "entries": [{"id": 96206, "definitionId": 101208, "maxRanks": 1, "type": "active", "name": "Wraith Walk", "spellId": 212552, "icon": "inv_helm_plate_raiddeathknight_p_01", "index": 100}]}, {"id": 76057, "name": "Grip of the Dead", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076], "entries": [{"id": 96186, "definitionId": 101188, "maxRanks": 1, "type": "passive", "name": "Grip of the Dead", "spellId": 273952, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 76063, "name": "Soul Reaper", "type": "single", "posX": 6000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076, 102006], "entries": [{"id": 96192, "definitionId": 101194, "maxRanks": 1, "type": "active", "name": "Soul Reaper", "spellId": 343294, "icon": "ability_deathknight_soulreaper", "index": 100}]}, {"id": 76087, "name": "Suppression", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76088, 76051], "prev": [76052, 76086, 76064], "entries": [{"id": 96216, "definitionId": 101218, "maxRanks": 1, "type": "passive", "name": "Suppression", "spellId": 374049, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 76078, "name": "Blood Scent", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76051, 76055], "prev": [76048, 76064, 76077], "entries": [{"id": 96207, "definitionId": 101209, "maxRanks": 1, "type": "passive", "name": "Blood Scent", "spellId": 374030, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 76058, "name": "Unholy Endurance", "type": "single", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76055, 76056], "prev": [76057, 76063, 76077], "entries": [{"id": 96187, "definitionId": 101189, "maxRanks": 1, "type": "passive", "name": "Unholy Endurance", "spellId": 389682, "icon": "spell_deathknight_subversion", "index": 100}]}, {"id": 76088, "name": "Osmosis", "type": "single", "posX": 2400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079], "prev": [76087], "entries": [{"id": 96217, "definitionId": 101219, "maxRanks": 1, "type": "passive", "name": "Osmosis", "spellId": 454835, "icon": "spell_nature_rune", "index": 100}]}, {"id": 76051, "name": "Insidious Chill", "type": "single", "posX": 3600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079, 76080], "prev": [76078, 76087], "entries": [{"id": 96179, "definitionId": 101181, "maxRanks": 1, "type": "passive", "name": "Insidious Chill", "spellId": 391566, "icon": "ability_racial_wardoftheloafrost", "index": 100}]}, {"id": 76055, "name": "Runic Protection", "type": "single", "posX": 4800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76080, 76054], "prev": [76058, 76078], "entries": [{"id": 96183, "definitionId": 101185, "maxRanks": 1, "type": "passive", "name": "Runic Protection", "spellId": 454788, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 76056, "name": "Blood Draw", "type": "single", "posX": 6000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76054], "prev": [76058], "entries": [{"id": 96184, "definitionId": 101186, "maxRanks": 1, "type": "passive", "name": "Blood Draw", "spellId": 374598, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 76079, "name": "Rune Mastery", "type": "single", "posX": 3000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102008, 76050], "prev": [76051, 76088], "entries": [{"id": 96208, "definitionId": 101210, "maxRanks": 2, "type": "passive", "name": "Rune Mastery", "spellId": 374574, "icon": "ability_deathknight_hungeringruneblade", "index": 100}]}, {"id": 76080, "name": "Subduing Grasp", "type": "single", "posX": 4200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76050, 76049, 102007], "prev": [76055, 76051], "entries": [{"id": 96209, "definitionId": 101211, "maxRanks": 1, "type": "passive", "name": "Subduing Grasp", "spellId": 454822, "icon": "spell_nature_elementalshields", "index": 100}]}, {"id": 76054, "name": "Will of the Necropolis", "type": "single", "posX": 5400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102007, 76053], "prev": [76055, 76056], "entries": [{"id": 96182, "definitionId": 101184, "maxRanks": 2, "type": "passive", "name": "Will of the Necropolis", "spellId": 206967, "icon": "achievement_boss_kelthuzad_01", "index": 100}]}, {"id": 102008, "name": "Null Magic", "type": "single", "posX": 2400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76079], "entries": [{"id": 126016, "definitionId": 130847, "maxRanks": 1, "type": "passive", "name": "Null Magic", "spellId": 454842, "icon": "spell_shadow_detectinvisibility", "index": 100}]}, {"id": 76050, "name": "Unyielding Will", "type": "single", "posX": 3600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76079], "entries": [{"id": 96178, "definitionId": 101180, "maxRanks": 1, "type": "passive", "name": "Unyielding Will", "spellId": 457574, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 76049, "name": "Abomination Limb", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080], "entries": [{"id": 96177, "definitionId": 101179, "maxRanks": 1, "type": "active", "name": "Abomination Limb", "spellId": 383269, "icon": "ability_maldraxxus_deathknight", "index": 100}]}, {"id": 102007, "name": "Death's Echo", "type": "single", "posX": 4800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76054], "entries": [{"id": 126015, "definitionId": 130846, "maxRanks": 1, "type": "passive", "name": "Death's Echo", "spellId": 356367, "icon": "inv_fabric_ebonweave", "index": 100}]}, {"id": 76053, "name": "Vestigial Shell", "type": "single", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76054], "entries": [{"id": 96181, "definitionId": 101183, "maxRanks": 1, "type": "passive", "name": "Vestigial Shell", "spellId": 454851, "icon": "ability_domination_rune12", "index": 100}]}], "specNodes": [{"id": 76115, "name": "Frost Strike", "type": "single", "posX": 12600, "posY": 1200, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "next": [76116, 76114], "prev": [], "entries": [{"id": 96245, "definitionId": 101247, "maxRanks": 1, "type": "active", "name": "Frost Strike", "spellId": 49143, "icon": "spell_deathknight_empowerruneblade2", "index": 100}]}, {"id": 76116, "name": "Obliterate", "type": "single", "posX": 12000, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76117], "prev": [76115], "entries": [{"id": 96246, "definitionId": 101248, "maxRanks": 1, "type": "active", "name": "Obliterate", "spellId": 49020, "icon": "spell_deathknight_classicon", "index": 100}]}, {"id": 76114, "name": "Howling Blast", "type": "single", "posX": 13200, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76113], "prev": [76115], "entries": [{"id": 96244, "definitionId": 101246, "maxRanks": 1, "type": "active", "name": "Howling Blast", "spellId": 49184, "icon": "spell_frost_arcticwinds", "index": 100}]}, {"id": 76117, "name": "Killing Machine", "type": "single", "posX": 12000, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76118, 76103], "prev": [76116], "entries": [{"id": 96247, "definitionId": 101249, "maxRanks": 1, "type": "passive", "name": "Killing Machine", "spellId": 51128, "icon": "inv_sword_122", "index": 100}]}, {"id": 76113, "name": "Everfrost", "type": "single", "posX": 13200, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76102, 76112], "prev": [76114], "entries": [{"id": 96243, "definitionId": 101245, "maxRanks": 1, "type": "passive", "name": "Everfrost", "spellId": 376938, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76118, "name": "Unleashed Frenzy", "type": "single", "posX": 11400, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76119, 76092], "prev": [76117], "entries": [{"id": 96248, "definitionId": 101250, "maxRanks": 1, "type": "passive", "name": "Unleashed Frenzy", "spellId": 376905, "icon": "spell_deathknight_icetouch", "index": 100}]}, {"id": 76103, "name": "Improved Frost Strike", "type": "single", "posX": 12000, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76092, 101929], "prev": [76117], "entries": [{"id": 96233, "definitionId": 101235, "maxRanks": 2, "type": "passive", "name": "Improved Frost Strike", "spellId": 316803, "icon": "spell_deathknight_empowerruneblade2", "index": 100}]}, {"id": 76102, "name": "Runic Command", "type": "single", "posX": 13200, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [101929, 76096], "prev": [76113], "entries": [{"id": 96232, "definitionId": 101234, "maxRanks": 2, "type": "passive", "name": "Runic Command", "spellId": 376251, "icon": "ability_deathknight_remorselesswinters", "index": 100}]}, {"id": 76112, "name": "Improved Rime", "type": "single", "posX": 13800, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76096, 76111], "prev": [76113], "entries": [{"id": 96242, "definitionId": 101244, "maxRanks": 1, "type": "passive", "name": "Improved Rime", "spellId": 316838, "icon": "spell_frost_freezingbreath", "index": 100}]}, {"id": 76119, "name": "Improved Obliterate", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76120, 76035, 76089], "prev": [76118], "entries": [{"id": 96249, "definitionId": 101251, "maxRanks": 1, "type": "passive", "name": "Improved Obliterate", "spellId": 317198, "icon": "spell_deathknight_classicon", "index": 100}]}, {"id": 76092, "name": "Glacial Advance", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76089], "prev": [76103, 76118], "entries": [{"id": 96221, "definitionId": 101223, "maxRanks": 1, "type": "active", "name": "Glacial Advance", "spellId": 194913, "icon": "ability_hunter_glacialtrap", "index": 100}]}, {"id": 101929, "name": "Pillar of Frost", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76100, 101930, 76106], "prev": [76102, 76103], "entries": [{"id": 125874, "definitionId": 130705, "maxRanks": 1, "type": "active", "name": "Pillar of Frost", "spellId": 51271, "icon": "ability_deathknight_pillaroffrost", "index": 100}]}, {"id": 76096, "name": "Frostscythe", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76110], "prev": [76112, 76102], "entries": [{"id": 96225, "definitionId": 101227, "maxRanks": 1, "type": "active", "name": "Frostscythe", "spellId": 207230, "icon": "inv_misc_2h_farmscythe_a_01", "index": 100}]}, {"id": 76111, "name": "Biting Cold", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76110, 76098], "prev": [76112], "entries": [{"id": 96241, "definitionId": 101243, "maxRanks": 1, "type": "passive", "name": "Biting Cold", "spellId": 377056, "icon": "ability_deathknight_remorselesswinters2", "index": 100}]}, {"id": 76120, "name": "Frigid Executioner / Rage of the Frozen Champion", "type": "choice", "posX": 10200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121], "prev": [76119], "entries": [{"id": 96251, "definitionId": 101253, "maxRanks": 1, "type": "passive", "name": "Frigid Executioner", "spellId": 377073, "icon": "spell_shadow_focusedpower", "index": 100}, {"id": 96250, "definitionId": 101252, "maxRanks": 1, "type": "passive", "name": "Rage of the Frozen Champion", "spellId": 377076, "icon": "spell_mage_frostbomb", "index": 200}]}, {"id": 76035, "name": "Cold Heart", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121], "prev": [76119], "entries": [{"id": 96163, "definitionId": 101165, "maxRanks": 1, "type": "passive", "name": "Cold Heart", "spellId": 281208, "icon": "spell_frost_frozencore", "index": 100}]}, {"id": 76089, "name": "Horn of Winter", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76121, 76037], "prev": [76119, 76092], "entries": [{"id": 96218, "definitionId": 101220, "maxRanks": 1, "type": "active", "name": "Horn of Winter", "spellId": 57330, "icon": "inv_misc_horn_02", "index": 100}]}, {"id": 76100, "name": "Enduring Strength", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76037, 101931], "prev": [101929], "entries": [{"id": 96230, "definitionId": 101232, "maxRanks": 1, "type": "passive", "name": "Enduring Strength", "spellId": 377190, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 101930, "name": "Icecap", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101931], "prev": [101929], "entries": [{"id": 125875, "definitionId": 130706, "maxRanks": 1, "type": "passive", "name": "Icecap", "spellId": 207126, "icon": "inv_misc_herb_icecap", "index": 100}]}, {"id": 76106, "name": "Frostwhelp's Aid", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101931, 76099], "prev": [101929], "entries": [{"id": 96236, "definitionId": 101238, "maxRanks": 1, "type": "passive", "name": "Frostwhelp's Aid", "spellId": 377226, "icon": "inv_pet_dkwhelplingfrost", "index": 100}]}, {"id": 76110, "name": "Empower Rune Weapon", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76099, 76109], "prev": [76111, 76096], "entries": [{"id": 96240, "definitionId": 101242, "maxRanks": 1, "type": "active", "name": "Empower Rune Weapon", "spellId": 47568, "icon": "inv_sword_62", "index": 100}]}, {"id": 76098, "name": "Chill Streak", "type": "single", "posX": 15000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76109, 76097], "prev": [76111], "entries": [{"id": 96228, "definitionId": 101230, "maxRanks": 1, "type": "active", "name": "Chill Streak", "spellId": 305392, "icon": "spell_frost_piercing_chill", "index": 100}]}, {"id": 76121, "name": "Murderous Efficiency", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76122], "prev": [76035, 76089, 76120], "entries": [{"id": 96252, "definitionId": 101254, "maxRanks": 1, "type": "passive", "name": "Murderous Efficiency", "spellId": 207061, "icon": "spell_frost_frostarmor", "index": 100}]}, {"id": 76037, "name": "Inexorable Assault", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76122, 76101], "prev": [76089, 76100], "entries": [{"id": 96165, "definitionId": 101167, "maxRanks": 1, "type": "passive", "name": "Inexorable Assault", "spellId": 253593, "icon": "achievement_dungeon_icecrown_frostmourne", "index": 100}]}, {"id": 101931, "name": "Frostwyrm's Fury", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76101, 102009, 76105], "prev": [101930, 76100, 76106], "entries": [{"id": 125876, "definitionId": 130707, "maxRanks": 1, "type": "active", "name": "Frostwyrm's Fury", "spellId": 279302, "icon": "achievement_boss_sindragosa", "index": 100}]}, {"id": 76099, "name": "Gathering Storm", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76105, 76033], "prev": [76110, 76106], "entries": [{"id": 96229, "definitionId": 101231, "maxRanks": 1, "type": "passive", "name": "Gathering Storm", "spellId": 194912, "icon": "spell_frost_ice_shards", "index": 100}]}, {"id": 76109, "name": "Cryogenic Chamber", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76033], "prev": [76098, 76110], "entries": [{"id": 96239, "definitionId": 101241, "maxRanks": 1, "type": "passive", "name": "Cryogenic Chamber", "spellId": 456237, "icon": "spell_fire_bluecano", "index": 100}]}, {"id": 76097, "name": "Piercing Chill / Enduring Chill", "type": "choice", "posX": 15000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [76098], "entries": [{"id": 96227, "definitionId": 101229, "maxRanks": 1, "type": "passive", "name": "Piercing Chill", "spellId": 377351, "icon": "spell_frost_piercing_chill", "index": 100}, {"id": 96226, "definitionId": 101228, "maxRanks": 1, "type": "passive", "name": "Enduring Chill", "spellId": 377376, "icon": "spell_frost_piercing_chill", "index": 200}]}, {"id": 76122, "name": "Bonegrinder", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 2, "next": [76123], "prev": [76037, 76121], "entries": [{"id": 96253, "definitionId": 101255, "maxRanks": 2, "type": "passive", "name": "Bonegrinder", "spellId": 377098, "icon": "ability_deathknight_bonegrinder", "index": 100}]}, {"id": 76101, "name": "Smothering Offense", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [101933], "prev": [101931, 76037], "entries": [{"id": 96231, "definitionId": 101233, "maxRanks": 1, "type": "passive", "name": "Smothering Offense", "spellId": 435005, "icon": "inv_10_specialreagentfoozles_tuskclaw_ice", "index": 100}]}, {"id": 102009, "name": "Absolute Zero", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101931], "entries": [{"id": 126017, "definitionId": 130848, "maxRanks": 1, "type": "passive", "name": "Absolute Zero", "spellId": 377047, "icon": "spell_fire_blueflamering", "index": 100}]}, {"id": 76105, "name": "Avalanche", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76095], "prev": [76099, 101931], "entries": [{"id": 96235, "definitionId": 101237, "maxRanks": 1, "type": "passive", "name": "Avalanche", "spellId": 207142, "icon": "spell_frost_icestorm", "index": 100}]}, {"id": 76033, "name": "Icebreaker", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 2, "next": [76108], "prev": [76109, 76099], "entries": [{"id": 96161, "definitionId": 101163, "maxRanks": 2, "type": "passive", "name": "Icebreaker", "spellId": 392950, "icon": "ability_mage_icewall", "index": 100}]}, {"id": 76123, "name": "Obliteration", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76091], "prev": [76122], "entries": [{"id": 96254, "definitionId": 101256, "maxRanks": 1, "type": "passive", "name": "Obliteration", "spellId": 281238, "icon": "inv_axe_114", "index": 100}]}, {"id": 101933, "name": "Icy Death Torrent", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101932], "prev": [76101], "entries": [{"id": 125878, "definitionId": 130709, "maxRanks": 1, "type": "passive", "name": "Icy Death Torrent", "spellId": 435010, "icon": "ability_argus_soulburst", "index": 100}]}, {"id": 76095, "name": "Shattering Blade", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76094], "prev": [76105], "entries": [{"id": 96224, "definitionId": 101226, "maxRanks": 1, "type": "passive", "name": "Shattering Blade", "spellId": 207057, "icon": "inv_7af_deathknight_frostmournefragment", "index": 100}]}, {"id": 76108, "name": "Hyperpyrexia", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76093], "prev": [76033], "entries": [{"id": 96238, "definitionId": 101240, "maxRanks": 1, "type": "passive", "name": "Hyperpyrexia", "spellId": 456238, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 76091, "name": "Arctic Assault", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76123], "entries": [{"id": 96220, "definitionId": 101222, "maxRanks": 1, "type": "passive", "name": "Arctic Assault", "spellId": 456230, "icon": "artifactability_frostmage_blackicicles", "index": 100}]}, {"id": 101932, "name": "The Long Winter", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101933], "entries": [{"id": 125877, "definitionId": 130708, "maxRanks": 1, "type": "passive", "name": "The Long Winter", "spellId": 456240, "icon": "inv_10_dungeonjewelry_primalist_necklace_1_frost", "index": 100}]}, {"id": 76094, "name": "Shattered Frost", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76095], "entries": [{"id": 96223, "definitionId": 101225, "maxRanks": 1, "type": "passive", "name": "Shattered Frost", "spellId": 455993, "icon": "inv_10_enchanting_shard_color3", "index": 100}]}, {"id": 76093, "name": "Breath of Sindragosa", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76108], "entries": [{"id": 96222, "definitionId": 101224, "maxRanks": 1, "type": "active", "name": "Breath of Sindragosa", "spellId": 152279, "icon": "spell_deathknight_breathofsindragosa", "index": 100}]}], "heroNodes": [{"id": 95062, "name": "Reaper's Mark", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 33, "next": [95036, 95058, 95043], "prev": [], "entries": [{"id": 117659, "definitionId": 122671, "maxRanks": 1, "type": "active", "name": "Reaper's Mark", "spellId": 439843, "icon": "inv_ability_deathbringerdeathknight_reapersmark", "index": 100}], "freeNode": true}, {"id": 95036, "name": "Wave of Souls", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95061], "prev": [95062], "entries": [{"id": 117633, "definitionId": 122645, "maxRanks": 1, "type": "passive", "name": "Wave of Souls", "spellId": 439851, "icon": "spell_animamaw_wave", "index": 100}]}, {"id": 95058, "name": "Wither Away", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95034], "prev": [95062], "entries": [{"id": 117655, "definitionId": 122667, "maxRanks": 1, "type": "passive", "name": "Wither Away", "spellId": 441894, "icon": "sha_spell_warlock_demonsoul", "index": 100}]}, {"id": 95043, "name": "Bind in Darkness", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 33, "next": [95035], "prev": [95062], "entries": [{"id": 117640, "definitionId": 122652, "maxRanks": 1, "type": "passive", "name": "Bind in Darkness", "spellId": 440031, "icon": "ability_argus_soulbombdebuffsmall", "index": 100}]}, {"id": 95061, "name": "Soul Rupture", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95032], "prev": [95036], "entries": [{"id": 117658, "definitionId": 122670, "maxRanks": 1, "type": "passive", "name": "Soul Rupture", "spellId": 437161, "icon": "warlock_siphonlife", "index": 100}]}, {"id": 95034, "name": "Grim Reaper / Reaper of Souls", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95057], "prev": [95058], "entries": [{"id": 117631, "definitionId": 122643, "maxRanks": 1, "type": "passive", "name": "Grim Reaper", "spellId": 434905, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}, {"id": 128235, "definitionId": 133042, "maxRanks": 1, "type": "passive", "name": "Reaper of Souls", "spellId": 440002, "icon": "pvp_soulrip", "index": 200}]}, {"id": 95035, "name": "Pact of the Deathbringer / Rune Carved Plates", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 33, "next": [95049], "prev": [95043], "entries": [{"id": 117632, "definitionId": 122644, "maxRanks": 1, "type": "passive", "name": "Pact of the Deathbringer", "spellId": 440476, "icon": "ability_revendreth_deathknight", "index": 100}, {"id": 123420, "definitionId": 128258, "maxRanks": 1, "type": "passive", "name": "Rune Carved Plates", "spellId": 440282, "icon": "spell_deathknight_runetap", "index": 200}]}, {"id": 95032, "name": "Swift and Painful", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95061], "entries": [{"id": 117629, "definitionId": 122641, "maxRanks": 1, "type": "passive", "name": "Swift and Painful", "spellId": 443560, "icon": "ability_domination_rune02", "index": 100}]}, {"id": 95057, "name": "Dark Talons / Reaper's Onslaught", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95034], "entries": [{"id": 117654, "definitionId": 122666, "maxRanks": 1, "type": "passive", "name": "Dark Talons", "spellId": 436687, "icon": "inv_shoulder_93", "index": 100}, {"id": 128266, "definitionId": 133073, "maxRanks": 1, "type": "passive", "name": "Reaper's Onslaught", "spellId": 469870, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 95049, "name": "Death's Messenger / Expelling Shield", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 33, "next": [95068], "prev": [95035], "entries": [{"id": 117646, "definitionId": 122658, "maxRanks": 1, "type": "passive", "name": "Death's Messenger", "spellId": 437122, "icon": "ability_argus_deathfog", "index": 100}, {"id": 128234, "definitionId": 133041, "maxRanks": 1, "type": "passive", "name": "Expelling Shield", "spellId": 439948, "icon": "spell_shadow_antimagicshell", "index": 200}]}, {"id": 95068, "name": "Exterminate", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 33, "next": [], "prev": [95057, 95032, 95049], "entries": [{"id": 117665, "definitionId": 122677, "maxRanks": 1, "type": "passive", "name": "Exterminate", "spellId": 441378, "icon": "inv_polearm_2h_titanargus_d_01", "index": 100}]}, {"id": 95066, "name": "Rider's Champion", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 32, "next": [95060, 95067, 95037], "prev": [], "entries": [{"id": 117663, "definitionId": 122675, "maxRanks": 1, "type": "passive", "name": "Rider's Champion", "spellId": 444005, "icon": "achievement_zone_icecrown_01", "index": 100}], "freeNode": true}, {"id": 95060, "name": "On a Paler Horse / Death Charge", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95047], "prev": [95066], "entries": [{"id": 117657, "definitionId": 122669, "maxRanks": 1, "type": "passive", "name": "On a Paler Horse", "spellId": 444008, "icon": "inv_skeletalwarhorse_01_purple", "index": 100}, {"id": 123412, "definitionId": 128250, "maxRanks": 1, "type": "passive", "name": "Death Charge", "spellId": 444010, "icon": "ability_mount_steelwarhorse", "index": 200}]}, {"id": 95067, "name": "Mograine's Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95059], "prev": [95066], "entries": [{"id": 117664, "definitionId": 122676, "maxRanks": 1, "type": "passive", "name": "Mograine's Might", "spellId": 444047, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 95037, "name": "Horsemen's Aid / Pact of the Apocalypse", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95063], "prev": [95066], "entries": [{"id": 117634, "definitionId": 122646, "maxRanks": 1, "type": "passive", "name": "Horsemen's Aid", "spellId": 444074, "icon": "achievement_dungeon_nexusraid_10man", "index": 100}, {"id": 123410, "definitionId": 128248, "maxRanks": 1, "type": "passive", "name": "Pact of the Apocalypse", "spellId": 444083, "icon": "achievement_dungeon_nexus80_25man", "index": 200}]}, {"id": 95047, "name": "Whitemane's Famine", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95044], "prev": [95060], "entries": [{"id": 117644, "definitionId": 122656, "maxRanks": 1, "type": "passive", "name": "Whitemane's Famine", "spellId": 444033, "icon": "spell_deathknight_necroticplague", "index": 100}]}, {"id": 95059, "name": "Nazgrim's Conquest", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95042], "prev": [95067], "entries": [{"id": 117656, "definitionId": 122668, "maxRanks": 1, "type": "passive", "name": "Nazgrim's Conquest", "spellId": 444052, "icon": "ability_maldraxxus_warriorplantbanner", "index": 100}]}, {"id": 95063, "name": "Trollbane's Icy Fury", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95054], "prev": [95037], "entries": [{"id": 117660, "definitionId": 122672, "maxRanks": 1, "type": "passive", "name": "Trollbane's Icy Fury", "spellId": 444097, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95044, "name": "Hungering Thirst", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95047], "entries": [{"id": 117641, "definitionId": 122653, "maxRanks": 1, "type": "passive", "name": "Hungering Thirst", "spellId": 444037, "icon": "spell_shadow_fumble", "index": 100}]}, {"id": 95042, "name": "Fury of the Horsemen / A Feast of Souls", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95059], "entries": [{"id": 117639, "definitionId": 122651, "maxRanks": 1, "type": "passive", "name": "Fury of the Horsemen", "spellId": 444069, "icon": "inv_plate_raiddeathknightmythic_o_01helm", "index": 100}, {"id": 123411, "definitionId": 128249, "maxRanks": 1, "type": "passive", "name": "A Feast of Souls", "spellId": 444072, "icon": "inv_misc_supersoulash", "index": 200}]}, {"id": 95054, "name": "Mawsworn Menace", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95063], "entries": [{"id": 117651, "definitionId": 122663, "maxRanks": 1, "type": "passive", "name": "Mawsworn Menace", "spellId": 444099, "icon": "inv_mawguardpet_black", "index": 100}]}, {"id": 95041, "name": "Apocalypse Now", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 32, "requiresNode": 76196, "next": [], "prev": [95042, 95044, 95054], "entries": [{"id": 117638, "definitionId": 122650, "maxRanks": 1, "type": "passive", "name": "Apocalypse Now", "spellId": 444040, "icon": "inv_ability_rideroftheapocalypsedeathknight_apocalypsenow", "index": 100}]}], "subTreeNodes": [{"id": 99821, "name": "Deathbringer / Rider of the Apocalypse", "type": "subtree", "posX": 8400, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123324, "type": "subtree", "name": "Deathbringer", "traitSubTreeId": 33, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-deathbringer", "nodes": [95062, 95036, 95058, 95043, 95061, 95034, 95035, 95032, 95057, 95049, 95068]}, {"id": 123323, "type": "subtree", "name": "Rider of the Apocalypse", "traitSubTreeId": 32, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-rideroftheapocalypse", "nodes": [95066, 95060, 95067, 95037, 95047, 95059, 95063, 95044, 95042, 95054, 95041]}]}], "fullNodeOrder": [76033, 76035, 76037, 76038, 76039, 76040, 76041, 76042, 76043, 76044, 76045, 76046, 76048, 76049, 76050, 76051, 76052, 76053, 76054, 76055, 76056, 76057, 76058, 76059, 76060, 76061, 76063, 76064, 76065, 76066, 76067, 76068, 76069, 76071, 76072, 76073, 76074, 76075, 76076, 76077, 76078, 76079, 76080, 76081, 76083, 76084, 76085, 76086, 76087, 76088, 76089, 76091, 76092, 76093, 76094, 76095, 76096, 76097, 76098, 76099, 76100, 76101, 76102, 76103, 76105, 76106, 76108, 76109, 76110, 76111, 76112, 76113, 76114, 76115, 76116, 76117, 76118, 76119, 76120, 76121, 76122, 76123, 76124, 76125, 76126, 76127, 76128, 76129, 76130, 76131, 76132, 76133, 76135, 76137, 76138, 76139, 76140, 76141, 76142, 76143, 76144, 76145, 76146, 76147, 76148, 76149, 76150, 76151, 76152, 76153, 76154, 76155, 76156, 76157, 76158, 76159, 76160, 76161, 76162, 76163, 76164, 76165, 76166, 76167, 76168, 76169, 76170, 76171, 76172, 76173, 76174, 76175, 76176, 76177, 76178, 76179, 76180, 76181, 76182, 76183, 76184, 76185, 76186, 76187, 76188, 76189, 76190, 76191, 76192, 76193, 76194, 76195, 76196, 76197, 95032, 95033, 95034, 95035, 95036, 95037, 95040, 95041, 95042, 95043, 95044, 95045, 95046, 95047, 95048, 95049, 95051, 95053, 95054, 95055, 95056, 95057, 95058, 95059, 95060, 95061, 95062, 95063, 95064, 95065, 95066, 95067, 95068, 99820, 99821, 99822, 101708, 101882, 101929, 101930, 101931, 101932, 101933, 102006, 102007, 102008, 102009, 102242, 102243, 102244, 102245]}, {"traitTreeId": 750, "className": "Death Knight", "classId": 6, "specName": "Unholy", "specId": 252, "classNodes": [{"id": 76081, "name": "Icebound Fortitude", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76045], "prev": [], "entries": [{"id": 96210, "definitionId": 101212, "maxRanks": 1, "type": "active", "name": "Icebound Fortitude", "spellId": 48792, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 76071, "name": "Death Strike", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76067], "prev": [], "entries": [{"id": 96200, "definitionId": 101202, "maxRanks": 1, "type": "active", "name": "Death Strike", "spellId": 49998, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76072, "name": "Raise Dead", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [76073], "prev": [], "entries": [{"id": 96201, "definitionId": 101203, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46585, "icon": "inv_pet_ghoul", "index": 100}], "freeNode": true}, {"id": 76045, "name": "Runic Attenuation", "type": "single", "posX": 3000, "posY": 1800, "maxRanks": 1, "next": [76084, 76044, 76046], "prev": [76081], "entries": [{"id": 96173, "definitionId": 101175, "maxRanks": 1, "type": "passive", "name": "Runic Attenuation", "spellId": 207104, "icon": "boss_odunrunes_blue", "index": 100}]}, {"id": 76067, "name": "Improved Death Strike", "type": "single", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [76046, 76074, 76069], "prev": [76071], "entries": [{"id": 96196, "definitionId": 101198, "maxRanks": 1, "type": "passive", "name": "Improved Death Strike", "spellId": 374277, "icon": "spell_deathknight_butcher2", "index": 100}]}, {"id": 76073, "name": "Cleaving Strikes", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [76069, 76059, 76060], "prev": [76072], "entries": [{"id": 96202, "definitionId": 101204, "maxRanks": 1, "type": "passive", "name": "Cleaving Strikes", "spellId": 316916, "icon": "spell_shadow_deathanddecay", "index": 100}]}, {"id": 76084, "name": "Mind Freeze", "type": "single", "posX": 2400, "posY": 2400, "maxRanks": 1, "next": [76083, 101708], "prev": [76045], "entries": [{"id": 96213, "definitionId": 101215, "maxRanks": 1, "type": "active", "name": "Mind Freeze", "spellId": 47528, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 76044, "name": "Blinding Sleet", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [101708], "prev": [76045], "entries": [{"id": 96172, "definitionId": 101174, "maxRanks": 1, "type": "active", "name": "Blinding Sleet", "spellId": 207167, "icon": "spell_frost_chillingblast", "index": 100}]}, {"id": 76046, "name": "Anti-Magic Barrier", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [101708, 76066, 76068], "prev": [76045, 76067], "entries": [{"id": 96174, "definitionId": 101176, "maxRanks": 1, "type": "passive", "name": "Anti-Magic Barrier", "spellId": 205727, "icon": "spell_shadow_antimagicshell", "index": 100}]}, {"id": 76074, "name": "March of Darkness", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [76068], "prev": [76067], "entries": [{"id": 96203, "definitionId": 101205, "maxRanks": 1, "type": "passive", "name": "March of Darkness", "spellId": 391546, "icon": "ability_argus_deathfog", "index": 100}]}, {"id": 76069, "name": "Unholy Ground", "type": "single", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [76068, 76075, 76061], "prev": [76073, 76067], "entries": [{"id": 96198, "definitionId": 101200, "maxRanks": 1, "type": "passive", "name": "Unholy Ground", "spellId": 374265, "icon": "ability_deathknight_desecratedground", "index": 100}]}, {"id": 76059, "name": "Control Undead", "type": "single", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [76061], "prev": [76073], "entries": [{"id": 96188, "definitionId": 101190, "maxRanks": 1, "type": "active", "name": "Control Undead", "spellId": 111673, "icon": "inv_misc_bone_skull_01", "index": 100}]}, {"id": 76060, "name": "Enfeeble / Sacrificial Pact", "type": "choice", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [76061, 102006], "prev": [76073], "entries": [{"id": 96189, "definitionId": 101191, "maxRanks": 1, "type": "passive", "name": "Enfeeble", "spellId": 392566, "icon": "ability_creature_poison_01", "index": 100}, {"id": 125608, "definitionId": 130440, "maxRanks": 1, "type": "active", "name": "Sacrificial Pact", "spellId": 327574, "icon": "spell_shadow_corpseexplode", "index": 200}]}, {"id": 76083, "name": "Coldthirst", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084], "entries": [{"id": 96212, "definitionId": 101214, "maxRanks": 1, "type": "passive", "name": "Coldthirst", "spellId": 378848, "icon": "spell_deathknight_mindfreeze", "index": 100}]}, {"id": 101708, "name": "Proliferating Chill", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [76085], "prev": [76084, 76046, 76044], "entries": [{"id": 125606, "definitionId": 130438, "maxRanks": 1, "type": "passive", "name": "Proliferating Chill", "spellId": 373930, "icon": "spell_frost_chainsofice", "index": 100}]}, {"id": 76066, "name": "Permafrost", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [76085, 76065], "prev": [76046], "entries": [{"id": 96195, "definitionId": 101197, "maxRanks": 1, "type": "passive", "name": "Permafrost", "spellId": 207200, "icon": "achievement_zone_frostfire", "index": 100}]}, {"id": 76068, "name": "Veteran of the Third War", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [76065], "prev": [76069, 76046, 76074], "entries": [{"id": 96197, "definitionId": 101199, "maxRanks": 1, "type": "passive", "name": "Veteran of the Third War", "spellId": 48263, "icon": "spell_misc_warsongfocus", "index": 100}]}, {"id": 76075, "name": "Death Pact", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [76065, 76076], "prev": [76069], "entries": [{"id": 96204, "definitionId": 101206, "maxRanks": 1, "type": "active", "name": "Death Pact", "spellId": 48743, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 76061, "name": "Brittle", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [76076], "prev": [76060, 76069, 76059], "entries": [{"id": 96190, "definitionId": 101192, "maxRanks": 1, "type": "passive", "name": "Brittle", "spellId": 374504, "icon": "ability_bosskilrogg_deaththroes", "index": 100}]}, {"id": 102006, "name": "Death's Reach", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [76076, 76063], "prev": [76060], "entries": [{"id": 126014, "definitionId": 130845, "maxRanks": 1, "type": "passive", "name": "Death's Reach", "spellId": 276079, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 76085, "name": "Icy Talons", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76086, 76052, 76064], "prev": [76066, 101708, 76083], "entries": [{"id": 96214, "definitionId": 101216, "maxRanks": 1, "type": "passive", "name": "Icy Talons", "spellId": 194878, "icon": "spell_deathknight_icytalons", "index": 100}]}, {"id": 76065, "name": "Anti-Magic Zone", "type": "single", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76064, 76048, 76077], "prev": [76068, 76075, 76066], "entries": [{"id": 96194, "definitionId": 101196, "maxRanks": 1, "type": "active", "name": "Anti-Magic Zone", "spellId": 51052, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76076, "name": "Unholy Bond", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76077, 76057, 76063], "prev": [76075, 102006, 76061], "entries": [{"id": 96205, "definitionId": 101207, "maxRanks": 1, "type": "passive", "name": "Unholy Bond", "spellId": 374261, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 76086, "name": "Ice Prison", "type": "single", "posX": 2400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96215, "definitionId": 101217, "maxRanks": 1, "type": "passive", "name": "Ice Prison", "spellId": 454786, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 76052, "name": "Gloom Ward", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087], "prev": [76085], "entries": [{"id": 96180, "definitionId": 101182, "maxRanks": 1, "type": "passive", "name": "Gloom Ward", "spellId": 391571, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 76064, "name": "Asphyxiate", "type": "single", "posX": 3600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76087, 76078], "prev": [76085, 76065], "entries": [{"id": 96193, "definitionId": 101195, "maxRanks": 1, "type": "active", "name": "Asphyxiate", "spellId": 221562, "icon": "ability_deathknight_asphixiate", "index": 100}]}, {"id": 76048, "name": "Assimilation", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078], "prev": [76065], "entries": [{"id": 96176, "definitionId": 101178, "maxRanks": 1, "type": "passive", "name": "Assimilation", "spellId": 374383, "icon": "spell_deathknight_antimagiczone", "index": 100}]}, {"id": 76077, "name": "Wraith Walk", "type": "single", "posX": 4800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76078, 76058], "prev": [76065, 76076], "entries": [{"id": 96206, "definitionId": 101208, "maxRanks": 1, "type": "active", "name": "Wraith Walk", "spellId": 212552, "icon": "inv_helm_plate_raiddeathknight_p_01", "index": 100}]}, {"id": 76057, "name": "Grip of the Dead", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076], "entries": [{"id": 96186, "definitionId": 101188, "maxRanks": 1, "type": "passive", "name": "Grip of the Dead", "spellId": 273952, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 76063, "name": "Soul Reaper", "type": "single", "posX": 6000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76058], "prev": [76076, 102006], "entries": [{"id": 96192, "definitionId": 101194, "maxRanks": 1, "type": "active", "name": "Soul Reaper", "spellId": 343294, "icon": "ability_deathknight_soulreaper", "index": 100}]}, {"id": 76087, "name": "Suppression", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76088, 76051], "prev": [76052, 76086, 76064], "entries": [{"id": 96216, "definitionId": 101218, "maxRanks": 1, "type": "passive", "name": "Suppression", "spellId": 374049, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 76078, "name": "Blood Scent", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76051, 76055], "prev": [76048, 76064, 76077], "entries": [{"id": 96207, "definitionId": 101209, "maxRanks": 1, "type": "passive", "name": "Blood Scent", "spellId": 374030, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 76058, "name": "Unholy Endurance", "type": "single", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76055, 76056], "prev": [76057, 76063, 76077], "entries": [{"id": 96187, "definitionId": 101189, "maxRanks": 1, "type": "passive", "name": "Unholy Endurance", "spellId": 389682, "icon": "spell_deathknight_subversion", "index": 100}]}, {"id": 76088, "name": "Osmosis", "type": "single", "posX": 2400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079], "prev": [76087], "entries": [{"id": 96217, "definitionId": 101219, "maxRanks": 1, "type": "passive", "name": "Osmosis", "spellId": 454835, "icon": "spell_nature_rune", "index": 100}]}, {"id": 76051, "name": "Insidious Chill", "type": "single", "posX": 3600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76079, 76080], "prev": [76078, 76087], "entries": [{"id": 96179, "definitionId": 101181, "maxRanks": 1, "type": "passive", "name": "Insidious Chill", "spellId": 391566, "icon": "ability_racial_wardoftheloafrost", "index": 100}]}, {"id": 76055, "name": "Runic Protection", "type": "single", "posX": 4800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76080, 76054], "prev": [76058, 76078], "entries": [{"id": 96183, "definitionId": 101185, "maxRanks": 1, "type": "passive", "name": "Runic Protection", "spellId": 454788, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 76056, "name": "Blood Draw", "type": "single", "posX": 6000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76054], "prev": [76058], "entries": [{"id": 96184, "definitionId": 101186, "maxRanks": 1, "type": "passive", "name": "Blood Draw", "spellId": 374598, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 76079, "name": "Rune Mastery", "type": "single", "posX": 3000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102008, 76050], "prev": [76051, 76088], "entries": [{"id": 96208, "definitionId": 101210, "maxRanks": 2, "type": "passive", "name": "Rune Mastery", "spellId": 374574, "icon": "ability_deathknight_hungeringruneblade", "index": 100}]}, {"id": 76080, "name": "Subduing Grasp", "type": "single", "posX": 4200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76050, 76049, 102007], "prev": [76055, 76051], "entries": [{"id": 96209, "definitionId": 101211, "maxRanks": 1, "type": "passive", "name": "Subduing Grasp", "spellId": 454822, "icon": "spell_nature_elementalshields", "index": 100}]}, {"id": 76054, "name": "Will of the Necropolis", "type": "single", "posX": 5400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [102007, 76053], "prev": [76055, 76056], "entries": [{"id": 96182, "definitionId": 101184, "maxRanks": 2, "type": "passive", "name": "Will of the Necropolis", "spellId": 206967, "icon": "achievement_boss_kelthuzad_01", "index": 100}]}, {"id": 102008, "name": "Null Magic", "type": "single", "posX": 2400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76079], "entries": [{"id": 126016, "definitionId": 130847, "maxRanks": 1, "type": "passive", "name": "Null Magic", "spellId": 454842, "icon": "spell_shadow_detectinvisibility", "index": 100}]}, {"id": 76050, "name": "Unyielding Will", "type": "single", "posX": 3600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76079], "entries": [{"id": 96178, "definitionId": 101180, "maxRanks": 1, "type": "passive", "name": "Unyielding Will", "spellId": 457574, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 76049, "name": "Abomination Limb", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080], "entries": [{"id": 96177, "definitionId": 101179, "maxRanks": 1, "type": "active", "name": "Abomination Limb", "spellId": 383269, "icon": "ability_maldraxxus_deathknight", "index": 100}]}, {"id": 102007, "name": "Death's Echo", "type": "single", "posX": 4800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76080, 76054], "entries": [{"id": 126015, "definitionId": 130846, "maxRanks": 1, "type": "passive", "name": "Death's Echo", "spellId": 356367, "icon": "inv_fabric_ebonweave", "index": 100}]}, {"id": 76053, "name": "Vestigial Shell", "type": "single", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76054], "entries": [{"id": 96181, "definitionId": 101183, "maxRanks": 1, "type": "passive", "name": "Vestigial Shell", "spellId": 454851, "icon": "ability_domination_rune12", "index": 100}]}], "specNodes": [{"id": 76189, "name": "Festering Strike", "type": "single", "posX": 12600, "posY": 1200, "reqPoints": 0, "maxRanks": 1, "entryNode": true, "next": [76190, 76188], "prev": [], "entries": [{"id": 96326, "definitionId": 101328, "maxRanks": 1, "type": "active", "name": "Festering Strike", "spellId": 85948, "icon": "spell_deathknight_festering_strike", "index": 100}]}, {"id": 76190, "name": "Scourge Strike", "type": "single", "posX": 12000, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76191], "prev": [76189], "entries": [{"id": 96327, "definitionId": 101329, "maxRanks": 1, "type": "active", "name": "Scourge Strike", "spellId": 55090, "icon": "spell_deathknight_scourgestrike", "index": 100}]}, {"id": 76188, "name": "Raise Dead", "type": "single", "posX": 13200, "posY": 1800, "reqPoints": 0, "maxRanks": 1, "next": [76187], "prev": [76189], "entries": [{"id": 96325, "definitionId": 101327, "maxRanks": 1, "type": "active", "name": "Raise Dead", "spellId": 46584, "icon": "inv_pet_ghoul", "index": 100}]}, {"id": 76191, "name": "Sudden Doom", "type": "single", "posX": 12000, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76162, 76192], "prev": [76190], "entries": [{"id": 96328, "definitionId": 101330, "maxRanks": 1, "type": "passive", "name": "Sudden Doom", "spellId": 49530, "icon": "spell_shadow_painspike", "index": 100}]}, {"id": 76187, "name": "Dark Transformation", "type": "single", "posX": 13200, "posY": 2400, "reqPoints": 0, "maxRanks": 1, "next": [76186, 76182], "prev": [76188], "entries": [{"id": 96324, "definitionId": 101326, "maxRanks": 1, "type": "active", "name": "Dark Transformation", "spellId": 63560, "icon": "achievement_boss_festergutrotface", "index": 100}]}, {"id": 76162, "name": "Foul Infections", "type": "single", "posX": 11400, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76161, 76163, 76193], "prev": [76191], "entries": [{"id": 96296, "definitionId": 101298, "maxRanks": 1, "type": "passive", "name": "Foul Infections", "spellId": 455396, "icon": "spell_holy_nullifydisease", "index": 100}]}, {"id": 76192, "name": "Improved Festering Strike", "type": "single", "posX": 12000, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76193, 76185], "prev": [76191], "entries": [{"id": 96329, "definitionId": 101331, "maxRanks": 2, "type": "passive", "name": "Improved Festering Strike", "spellId": 316867, "icon": "spell_deathknight_festering_strike", "index": 100}]}, {"id": 76186, "name": "Runic Mastery", "type": "single", "posX": 13200, "posY": 3000, "reqPoints": 0, "maxRanks": 2, "next": [76185, 76183], "prev": [76187], "entries": [{"id": 96323, "definitionId": 101325, "maxRanks": 2, "type": "passive", "name": "Runic Mastery", "spellId": 390166, "icon": "ability_deathknight_remorselesswinters", "index": 100}]}, {"id": 76182, "name": "Eternal Agony", "type": "single", "posX": 13800, "posY": 3000, "reqPoints": 0, "maxRanks": 1, "next": [76183, 76179, 76181], "prev": [76187], "entries": [{"id": 96318, "definitionId": 101320, "maxRanks": 1, "type": "passive", "name": "Eternal Agony", "spellId": 390268, "icon": "spell_necro_deathsdoor", "index": 100}]}, {"id": 76161, "name": "Defile", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76160], "prev": [76162], "entries": [{"id": 96295, "definitionId": 101297, "maxRanks": 1, "type": "active", "name": "Defile", "spellId": 152280, "icon": "spell_deathknight_defile", "index": 100}]}, {"id": 76163, "name": "Unholy Blight", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76160, 76164, 76194], "prev": [76162], "entries": [{"id": 96297, "definitionId": 101299, "maxRanks": 1, "type": "passive", "name": "Unholy Blight", "spellId": 460448, "icon": "spell_shadow_contagion", "index": 100}]}, {"id": 76193, "name": "Festering Scythe", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76194], "prev": [76162, 76192], "entries": [{"id": 96330, "definitionId": 101332, "maxRanks": 1, "type": "passive", "name": "Festering Scythe", "spellId": 455397, "icon": "inv_polearm_2h_mawnecromancerboss_d_01_darkblue", "index": 100}]}, {"id": 76185, "name": "Apocalypse", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76194, 76148, 76184], "prev": [76192, 76186], "entries": [{"id": 96322, "definitionId": 101324, "maxRanks": 1, "type": "active", "name": "Apocalypse", "spellId": 275699, "icon": "artifactability_unholydeathknight_deathsembrace", "index": 100}]}, {"id": 76183, "name": "Plaguebringer / Clawing Shadows", "type": "choice", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76184], "prev": [76182, 76186], "entries": [{"id": 96319, "definitionId": 101321, "maxRanks": 1, "type": "passive", "name": "Plaguebringer", "spellId": 390175, "icon": "spell_deathknight_plaguestrike", "index": 100}, {"id": 96320, "definitionId": 101322, "maxRanks": 1, "type": "active", "name": "Clawing Shadows", "spellId": 207311, "icon": "warlock_curse_shadow", "index": 200}]}, {"id": 76179, "name": "Reaping", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76184, 76178, 76180], "prev": [76182], "entries": [{"id": 96314, "definitionId": 101316, "maxRanks": 1, "type": "passive", "name": "Reaping", "spellId": 377514, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 76181, "name": "All Will Serve", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [76180], "prev": [76182], "entries": [{"id": 96317, "definitionId": 101319, "maxRanks": 1, "type": "passive", "name": "All Will Serve", "spellId": 194916, "icon": "ability_fiegndead", "index": 100}]}, {"id": 76160, "name": "Ebon Fever", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76159], "prev": [76163, 76161], "entries": [{"id": 96294, "definitionId": 101296, "maxRanks": 1, "type": "passive", "name": "Ebon Fever", "spellId": 207269, "icon": "spell_shadow_creepingplague", "index": 100}]}, {"id": 76164, "name": "Bursting Sores", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76159, 76157, 76195], "prev": [76163], "entries": [{"id": 96299, "definitionId": 101301, "maxRanks": 1, "type": "passive", "name": "Bursting Sores", "spellId": 207264, "icon": "ability_druid_infectedwound", "index": 100}]}, {"id": 76194, "name": "Ghoulish Frenzy", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76195], "prev": [76185, 76163, 76193], "entries": [{"id": 96331, "definitionId": 101333, "maxRanks": 1, "type": "passive", "name": "Ghoulish Frenzy", "spellId": 377587, "icon": "ability_warlock_baneofhavoc", "index": 100}]}, {"id": 76148, "name": "Magus of the Dead", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76195, 101882, 76156], "prev": [76185], "entries": [{"id": 96282, "definitionId": 101284, "maxRanks": 1, "type": "passive", "name": "Magus of the Dead", "spellId": 390196, "icon": "ability_maldraxxus_mage", "index": 100}]}, {"id": 76184, "name": "Improved Death Coil", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76156], "prev": [76179, 76183, 76185], "entries": [{"id": 96321, "definitionId": 101323, "maxRanks": 1, "type": "passive", "name": "Improved Death Coil", "spellId": 377580, "icon": "spell_shadow_deathcoil", "index": 100}]}, {"id": 76178, "name": "Harbinger of Doom", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76156, 76175, 76177], "prev": [76179], "entries": [{"id": 96313, "definitionId": 101315, "maxRanks": 1, "type": "passive", "name": "Harbinger of Doom", "spellId": 276023, "icon": "spell_shadow_painspike", "index": 100}]}, {"id": 76180, "name": "Unholy Pact / Defile", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [76177], "prev": [76179, 76181], "entries": [{"id": 96316, "definitionId": 101318, "maxRanks": 1, "type": "passive", "name": "Unholy Pact", "spellId": 319230, "icon": "spell_shadow_deathsembrace", "index": 100}, {"id": 96315, "definitionId": 101317, "maxRanks": 1, "type": "active", "name": "Defile", "spellId": 152280, "icon": "spell_deathknight_defile", "index": 200}]}, {"id": 76159, "name": "Vile Contagion", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76158], "prev": [76164, 76160], "entries": [{"id": 96293, "definitionId": 101295, "maxRanks": 1, "type": "active", "name": "Vile Contagion", "spellId": 390279, "icon": "spell_shadow_plaguecloud", "index": 100}]}, {"id": 76157, "name": "Pestilence", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76158], "prev": [76164], "entries": [{"id": 96291, "definitionId": 101293, "maxRanks": 1, "type": "passive", "name": "Pestilence", "spellId": 277234, "icon": "spell_deathknight_necroticplague", "index": 100}]}, {"id": 76195, "name": "Infected Claws", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76158, 76196], "prev": [76194, 76148, 76164], "entries": [{"id": 96332, "definitionId": 101334, "maxRanks": 1, "type": "passive", "name": "Infected Claws", "spellId": 207272, "icon": "spell_deathknight_thrash_ghoul", "index": 100}]}, {"id": 101882, "name": "Menacing Magus", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76196], "prev": [76148], "entries": [{"id": 125815, "definitionId": 130647, "maxRanks": 1, "type": "passive", "name": "Menacing Magus", "spellId": 455135, "icon": "ability_warlock_coil2", "index": 100}]}, {"id": 76156, "name": "Coil of Devastation", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76196, 76176], "prev": [76184, 76148, 76178], "entries": [{"id": 96290, "definitionId": 101292, "maxRanks": 1, "type": "passive", "name": "Coil of Devastation", "spellId": 390270, "icon": "ability_malkorok_blightofyshaarj_green", "index": 100}]}, {"id": 76175, "name": "Rotten Touch", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76176], "prev": [76178], "entries": [{"id": 96310, "definitionId": 101312, "maxRanks": 1, "type": "passive", "name": "Rotten Touch", "spellId": 390275, "icon": "ability_deathwing_grasping_tendrilsgreen", "index": 100}]}, {"id": 76177, "name": "Ruptured Viscera", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [76176], "prev": [76180, 76178], "entries": [{"id": 96312, "definitionId": 101314, "maxRanks": 1, "type": "passive", "name": "Ruptured Viscera", "spellId": 390236, "icon": "artifactability_unholydeathknight_flagellation", "index": 100}]}, {"id": 76158, "name": "Death Rot", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76197, 76152], "prev": [76195, 76157, 76159], "entries": [{"id": 96292, "definitionId": 101294, "maxRanks": 1, "type": "passive", "name": "Death Rot", "spellId": 377537, "icon": "ability_creature_cursed_03", "index": 100}]}, {"id": 76196, "name": "Army of the Dead", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76152, 76153, 76154], "prev": [76156, 76195, 101882], "entries": [{"id": 96333, "definitionId": 101335, "maxRanks": 1, "type": "active", "name": "Army of the Dead", "spellId": 42650, "icon": "spell_deathknight_armyofthedead", "index": 100}]}, {"id": 76176, "name": "Summon Gargoyle / Doomed Bidding", "type": "choice", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [76154, 76150], "prev": [76156, 76175, 76177], "entries": [{"id": 96311, "definitionId": 101313, "maxRanks": 1, "type": "active", "name": "Summon Gargoyle", "spellId": 49206, "icon": "ability_deathknight_summongargoyle", "index": 100}, {"id": 125816, "definitionId": 130648, "maxRanks": 1, "type": "passive", "name": "Doomed Bidding", "spellId": 455386, "icon": "ability_deathknight_shatteringbone", "index": 200}]}, {"id": 76197, "name": "Morbidity", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [76155], "prev": [76158], "entries": [{"id": 96334, "definitionId": 101336, "maxRanks": 2, "type": "passive", "name": "Morbidity", "spellId": 377592, "icon": "spell_necro_deathlyecho", "index": 100}]}, {"id": 76152, "name": "Festermight", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [76151], "prev": [76158, 76196], "entries": [{"id": 96286, "definitionId": 101288, "maxRanks": 2, "type": "passive", "name": "Festermight", "spellId": 377590, "icon": "ability_deathknight_festermight", "index": 100}]}, {"id": 76153, "name": "Raise Abomination", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [76151], "prev": [76196], "entries": [{"id": 96287, "definitionId": 101289, "maxRanks": 1, "type": "active", "name": "Raise Abomination", "spellId": 455395, "icon": "achievement_boss_patchwerk", "index": 100}]}, {"id": 76154, "name": "Decomposition", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [76151], "prev": [76176, 76196], "entries": [{"id": 96288, "definitionId": 101290, "maxRanks": 2, "type": "passive", "name": "Decomposition", "spellId": 455398, "icon": "ability_rogue_deviouspoisons", "index": 100}]}, {"id": 76150, "name": "Unholy Aura", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [76149], "prev": [76176], "entries": [{"id": 96284, "definitionId": 101286, "maxRanks": 2, "type": "passive", "name": "Unholy Aura", "spellId": 377440, "icon": "ability_deathknight_decomposingaura", "index": 100}]}, {"id": 76155, "name": "Superstrain", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76197], "entries": [{"id": 96289, "definitionId": 101291, "maxRanks": 1, "type": "passive", "name": "Superstrain", "spellId": 390283, "icon": "spell_deathknight_explode_ghoul", "index": 100}]}, {"id": 76151, "name": "Unholy Assault", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76154, 76153, 76152], "entries": [{"id": 96285, "definitionId": 101287, "maxRanks": 1, "type": "active", "name": "Unholy Assault", "spellId": 207289, "icon": "spell_shadow_unholyfrenzy", "index": 100}]}, {"id": 76149, "name": "Commander of the Dead", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [76150], "entries": [{"id": 96283, "definitionId": 101285, "maxRanks": 1, "type": "passive", "name": "Commander of the Dead", "spellId": 390259, "icon": "spell_shadow_fumble", "index": 100}]}], "heroNodes": [{"id": 95051, "name": "Vampiric Strike", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 31, "next": [95064, 95048, 95056], "prev": [], "entries": [{"id": 117648, "definitionId": 122660, "maxRanks": 1, "type": "passive", "name": "Vampiric Strike", "spellId": 433901, "icon": "inv_ability_sanlayndeathknight_vampiricstrike", "index": 100}], "freeNode": true}, {"id": 95064, "name": "Newly Turned / Vampiric Speed", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95033], "prev": [95051], "entries": [{"id": 117661, "definitionId": 122673, "maxRanks": 1, "type": "passive", "name": "Newly Turned", "spellId": 433934, "icon": "ability_deathknight_hemorrhagicfever", "index": 100}, {"id": 117892, "definitionId": 122904, "maxRanks": 1, "type": "passive", "name": "Vampiric Speed", "spellId": 434028, "icon": "inv_boots_cloth_34v2", "index": 200}]}, {"id": 95048, "name": "Blood-Soaked Ground", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95065], "prev": [95051], "entries": [{"id": 117645, "definitionId": 122657, "maxRanks": 1, "type": "passive", "name": "Blood-Soaked Ground", "spellId": 434033, "icon": "ability_ironmaidens_corruptedblood", "index": 100}]}, {"id": 95056, "name": "Vampiric Aura / Bloody Fortitude", "type": "choice", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 31, "next": [95046], "prev": [95051], "entries": [{"id": 117653, "definitionId": 122665, "maxRanks": 1, "type": "passive", "name": "Vampiric Aura", "spellId": 434100, "icon": "ability_rogue_vendetta", "index": 100}, {"id": 117891, "definitionId": 122903, "maxRanks": 1, "type": "passive", "name": "Bloody Fortitude", "spellId": 434136, "icon": "ability_warrior_intensifyrage", "index": 200}]}, {"id": 95033, "name": "Infliction of Sorrow", "type": "single", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95045], "prev": [95064], "entries": [{"id": 117630, "definitionId": 122642, "maxRanks": 1, "type": "passive", "name": "Infliction of Sorrow", "spellId": 434143, "icon": "ability_warrior_bloodbath", "index": 100}]}, {"id": 95065, "name": "Frenzied Bloodthirst", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95040], "prev": [95048], "entries": [{"id": 117662, "definitionId": 122674, "maxRanks": 1, "type": "passive", "name": "Frenzied Bloodthirst", "spellId": 434075, "icon": "inv_sulfurelemental_blood", "index": 100}]}, {"id": 95046, "name": "The Blood is Life", "type": "single", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 31, "next": [95055], "prev": [95056], "entries": [{"id": 117643, "definitionId": 122655, "maxRanks": 1, "type": "passive", "name": "The Blood is Life", "spellId": 434260, "icon": "achievement_nazmir_boss_bloodofghuun", "index": 100}]}, {"id": 95045, "name": "Visceral Strength", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95033], "entries": [{"id": 117642, "definitionId": 122654, "maxRanks": 1, "type": "passive", "name": "Visceral Strength", "spellId": 434157, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 95040, "name": "Incite Terror", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95065], "entries": [{"id": 117637, "definitionId": 122649, "maxRanks": 1, "type": "passive", "name": "Incite Terror", "spellId": 434151, "icon": "ability_warlock_improveddemonictactics", "index": 100}]}, {"id": 95055, "name": "Pact of the San'layn / Sanguine Scent", "type": "choice", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 31, "next": [95053], "prev": [95046], "entries": [{"id": 117652, "definitionId": 122664, "maxRanks": 1, "type": "passive", "name": "Pact of the San'layn", "spellId": 434261, "icon": "ability_warrior_bloodnova", "index": 100}, {"id": 117893, "definitionId": 122905, "maxRanks": 1, "type": "passive", "name": "Sanguine Scent", "spellId": 434263, "icon": "ability_deathknight_roilingblood", "index": 200}]}, {"id": 95053, "name": "Gift of the San'layn", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 31, "next": [], "prev": [95040, 95045, 95055], "entries": [{"id": 117650, "definitionId": 122662, "maxRanks": 1, "type": "passive", "name": "Gift of the San'layn", "spellId": 434152, "icon": "spell_deathknight_bloodtap", "index": 100}]}, {"id": 95066, "name": "Rider's Champion", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 32, "next": [95060, 95067, 95037], "prev": [], "entries": [{"id": 117663, "definitionId": 122675, "maxRanks": 1, "type": "passive", "name": "Rider's Champion", "spellId": 444005, "icon": "achievement_zone_icecrown_01", "index": 100}], "freeNode": true}, {"id": 95060, "name": "On a Paler Horse / Death Charge", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95047], "prev": [95066], "entries": [{"id": 117657, "definitionId": 122669, "maxRanks": 1, "type": "passive", "name": "On a Paler Horse", "spellId": 444008, "icon": "inv_skeletalwarhorse_01_purple", "index": 100}, {"id": 123412, "definitionId": 128250, "maxRanks": 1, "type": "passive", "name": "Death Charge", "spellId": 444010, "icon": "ability_mount_steelwarhorse", "index": 200}]}, {"id": 95067, "name": "Mograine's Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95059], "prev": [95066], "entries": [{"id": 117664, "definitionId": 122676, "maxRanks": 1, "type": "passive", "name": "Mograine's Might", "spellId": 444047, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 95037, "name": "Horsemen's Aid / Pact of the Apocalypse", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 32, "next": [95063], "prev": [95066], "entries": [{"id": 117634, "definitionId": 122646, "maxRanks": 1, "type": "passive", "name": "Horsemen's Aid", "spellId": 444074, "icon": "achievement_dungeon_nexusraid_10man", "index": 100}, {"id": 123410, "definitionId": 128248, "maxRanks": 1, "type": "passive", "name": "Pact of the Apocalypse", "spellId": 444083, "icon": "achievement_dungeon_nexus80_25man", "index": 200}]}, {"id": 95047, "name": "Whitemane's Famine", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95044], "prev": [95060], "entries": [{"id": 117644, "definitionId": 122656, "maxRanks": 1, "type": "passive", "name": "Whitemane's Famine", "spellId": 444033, "icon": "spell_deathknight_necroticplague", "index": 100}]}, {"id": 95059, "name": "Nazgrim's Conquest", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95042], "prev": [95067], "entries": [{"id": 117656, "definitionId": 122668, "maxRanks": 1, "type": "passive", "name": "Nazgrim's Conquest", "spellId": 444052, "icon": "ability_maldraxxus_warriorplantbanner", "index": 100}]}, {"id": 95063, "name": "Trollbane's Icy Fury", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 32, "next": [95054], "prev": [95037], "entries": [{"id": 117660, "definitionId": 122672, "maxRanks": 1, "type": "passive", "name": "Trollbane's Icy Fury", "spellId": 444097, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95044, "name": "Hungering Thirst", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95047], "entries": [{"id": 117641, "definitionId": 122653, "maxRanks": 1, "type": "passive", "name": "Hungering Thirst", "spellId": 444037, "icon": "spell_shadow_fumble", "index": 100}]}, {"id": 95042, "name": "Fury of the Horsemen / A Feast of Souls", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95059], "entries": [{"id": 117639, "definitionId": 122651, "maxRanks": 1, "type": "passive", "name": "Fury of the Horsemen", "spellId": 444069, "icon": "inv_plate_raiddeathknightmythic_o_01helm", "index": 100}, {"id": 123411, "definitionId": 128249, "maxRanks": 1, "type": "passive", "name": "A Feast of Souls", "spellId": 444072, "icon": "inv_misc_supersoulash", "index": 200}]}, {"id": 95054, "name": "Mawsworn Menace", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 32, "next": [95041], "prev": [95063], "entries": [{"id": 117651, "definitionId": 122663, "maxRanks": 1, "type": "passive", "name": "Mawsworn Menace", "spellId": 444099, "icon": "inv_mawguardpet_black", "index": 100}]}, {"id": 95041, "name": "Apocalypse Now", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 32, "requiresNode": 76196, "next": [], "prev": [95042, 95044, 95054], "entries": [{"id": 117638, "definitionId": 122650, "maxRanks": 1, "type": "passive", "name": "Apocalypse Now", "spellId": 444040, "icon": "inv_ability_rideroftheapocalypsedeathknight_apocalypsenow", "index": 100}]}], "subTreeNodes": [{"id": 99820, "name": "Rider of the Apocalypse / San'layn", "type": "subtree", "posX": 9300, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123322, "type": "subtree", "name": "Rider of the Apocalypse", "traitSubTreeId": 32, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-rideroftheapocalypse", "nodes": [95066, 95060, 95067, 95037, 95047, 95059, 95063, 95044, 95042, 95054, 95041]}, {"id": 123321, "type": "subtree", "name": "San'layn", "traitSubTreeId": 31, "traitTreeId": 750, "atlasMemberName": "talents-heroclass-deathknight-sanlayn", "nodes": [95051, 95064, 95048, 95056, 95033, 95065, 95046, 95045, 95040, 95055, 95053]}]}], "fullNodeOrder": [76033, 76035, 76037, 76038, 76039, 76040, 76041, 76042, 76043, 76044, 76045, 76046, 76048, 76049, 76050, 76051, 76052, 76053, 76054, 76055, 76056, 76057, 76058, 76059, 76060, 76061, 76063, 76064, 76065, 76066, 76067, 76068, 76069, 76071, 76072, 76073, 76074, 76075, 76076, 76077, 76078, 76079, 76080, 76081, 76083, 76084, 76085, 76086, 76087, 76088, 76089, 76091, 76092, 76093, 76094, 76095, 76096, 76097, 76098, 76099, 76100, 76101, 76102, 76103, 76105, 76106, 76108, 76109, 76110, 76111, 76112, 76113, 76114, 76115, 76116, 76117, 76118, 76119, 76120, 76121, 76122, 76123, 76124, 76125, 76126, 76127, 76128, 76129, 76130, 76131, 76132, 76133, 76135, 76137, 76138, 76139, 76140, 76141, 76142, 76143, 76144, 76145, 76146, 76147, 76148, 76149, 76150, 76151, 76152, 76153, 76154, 76155, 76156, 76157, 76158, 76159, 76160, 76161, 76162, 76163, 76164, 76165, 76166, 76167, 76168, 76169, 76170, 76171, 76172, 76173, 76174, 76175, 76176, 76177, 76178, 76179, 76180, 76181, 76182, 76183, 76184, 76185, 76186, 76187, 76188, 76189, 76190, 76191, 76192, 76193, 76194, 76195, 76196, 76197, 95032, 95033, 95034, 95035, 95036, 95037, 95040, 95041, 95042, 95043, 95044, 95045, 95046, 95047, 95048, 95049, 95051, 95053, 95054, 95055, 95056, 95057, 95058, 95059, 95060, 95061, 95062, 95063, 95064, 95065, 95066, 95067, 95068, 99820, 99821, 99822, 101708, 101882, 101929, 101930, 101931, 101932, 101933, 102006, 102007, 102008, 102009, 102242, 102243, 102244, 102245]}, {"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Beast Mastery", "specId": 253, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102378, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126441, "definitionId": 131267, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 53351, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Deathblow", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102378], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Deathblow", "spellId": 343248, "icon": "ability_hunter_runningshot", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 102292], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [102292, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 102292, "name": "Counter Shot", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 126352, "definitionId": 131178, "maxRanks": 1, "type": "active", "name": "Counter Shot", "spellId": 147362, "icon": "inv_ammo_arrow_03", "index": 100}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [102292, 102403, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [102292], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [102292, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102346, "name": "Kill Command", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102354, 102361, 102377], "prev": [], "entries": [{"id": 126408, "definitionId": 131234, "maxRanks": 1, "type": "active", "name": "Kill Command", "spellId": 34026, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102354, "name": "Cobra Shot", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102374, 102351], "prev": [102346], "entries": [{"id": 126416, "definitionId": 131242, "maxRanks": 1, "type": "active", "name": "Cobra Shot", "spellId": 193455, "icon": "ability_hunter_cobrashot", "index": 100}]}, {"id": 102361, "name": "Animal Companion", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [102363], "prev": [102346], "entries": [{"id": 126423, "definitionId": 131249, "maxRanks": 1, "type": "passive", "name": "Animal Companion", "spellId": 267116, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}, {"id": 102377, "name": "Barbed Shot", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102343, 102345], "prev": [102346], "entries": [{"id": 126440, "definitionId": 131266, "maxRanks": 1, "type": "active", "name": "Barbed Shot", "spellId": 217200, "icon": "ability_hunter_barbedshot", "index": 100}]}, {"id": 102374, "name": "Pack Tactics", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [102357], "prev": [102354], "entries": [{"id": 126437, "definitionId": 131263, "maxRanks": 1, "type": "passive", "name": "Pack Tactics", "spellId": 321014, "icon": "ability_hunter_invigeration", "index": 100}]}, {"id": 102351, "name": "Aspect of the Beast", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102357], "prev": [102354], "entries": [{"id": 126413, "definitionId": 131239, "maxRanks": 1, "type": "passive", "name": "Aspect of the Beast", "spellId": 191384, "icon": "ability_deathwing_assualtaspects", "index": 100}]}, {"id": 102343, "name": "War Orders", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102369], "prev": [102377], "entries": [{"id": 126405, "definitionId": 131231, "maxRanks": 1, "type": "passive", "name": "War Orders", "spellId": 393933, "icon": "ability_hunter_barbedshot", "index": 100}]}, {"id": 102345, "name": "Thrill of the Hunt", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [102369], "prev": [102377], "entries": [{"id": 126407, "definitionId": 131233, "maxRanks": 1, "type": "passive", "name": "Thrill of the Hunt", "spellId": 257944, "icon": "ability_hunter_thrillofthehunt", "index": 100}]}, {"id": 102357, "name": "Go for the Throat", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102356, 102368, 102344], "prev": [102351, 102374], "entries": [{"id": 126419, "definitionId": 131245, "maxRanks": 1, "type": "passive", "name": "Go for the Throat", "spellId": 459550, "icon": "ability_hunter_goforthethroat", "index": 100}]}, {"id": 102363, "name": "Multi-Shot", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [102341], "prev": [102361], "entries": [{"id": 126425, "definitionId": 131251, "maxRanks": 1, "type": "active", "name": "Multi-Shot", "spellId": 2643, "icon": "ability_upgrademoonglaive", "index": 100}]}, {"id": 102369, "name": "Laceration", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102338, 102360, 102358], "prev": [102345, 102343], "entries": [{"id": 126432, "definitionId": 131258, "maxRanks": 1, "type": "passive", "name": "Laceration", "spellId": 459552, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 102356, "name": "Barbed Scales", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102347], "prev": [102357], "entries": [{"id": 126418, "definitionId": 131244, "maxRanks": 1, "type": "passive", "name": "Barbed Scales", "spellId": 469880, "icon": "inv_misc_scales_stonygreen", "index": 100}]}, {"id": 102368, "name": "Alpha Predator", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102359, 102347], "prev": [102357], "entries": [{"id": 126431, "definitionId": 131257, "maxRanks": 1, "type": "passive", "name": "Alpha Predator", "spellId": 269737, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 102344, "name": "Snakeskin Quiver / Cobra Senses", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102359], "prev": [102357], "entries": [{"id": 126406, "definitionId": 131232, "maxRanks": 1, "type": "passive", "name": "Snakeskin Quiver", "spellId": 468695, "icon": "inv_quiver_1h_hunter_c_01_green", "index": 100}, {"id": 128265, "definitionId": 133072, "maxRanks": 1, "type": "passive", "name": "Cobra Senses", "spellId": 378244, "icon": "ability_hunter_cobrastrikes", "index": 200}]}, {"id": 102341, "name": "Beast Cleave", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102355, 102359, 102348], "prev": [102363], "entries": [{"id": 126403, "definitionId": 131229, "maxRanks": 1, "type": "passive", "name": "Beast Cleave", "spellId": 115939, "icon": "ability_hunter_sickem", "index": 100}]}, {"id": 102338, "name": "Wild Call", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102348], "prev": [102369], "entries": [{"id": 126399, "definitionId": 131225, "maxRanks": 1, "type": "passive", "name": "Wild Call", "spellId": 185789, "icon": "ability_hunter_masterscall", "index": 100}]}, {"id": 102360, "name": "Hunter's Prey", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102348, 102376], "prev": [102369], "entries": [{"id": 126422, "definitionId": 131248, "maxRanks": 1, "type": "passive", "name": "Hunter's Prey", "spellId": 378210, "icon": "ability_hunter_assassinate", "index": 100}]}, {"id": 102358, "name": "Venom's Bite", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102376], "prev": [102369], "entries": [{"id": 126420, "definitionId": 131246, "maxRanks": 1, "type": "passive", "name": "Venom's Bite", "spellId": 459565, "icon": "spell_hunter_exoticmunitions_poisoned", "index": 100}]}, {"id": 102347, "name": "Stomp", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102352, 102335, 102353], "prev": [102368, 102356], "entries": [{"id": 126409, "definitionId": 131235, "maxRanks": 1, "type": "passive", "name": "Stomp", "spellId": 199530, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 102359, "name": "Serpentine Rhythm", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102340, 102353], "prev": [102341, 102368, 102344], "entries": [{"id": 126421, "definitionId": 131247, "maxRanks": 1, "type": "passive", "name": "Serpentine Rhythm", "spellId": 468701, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 102355, "name": "Kill Cleave", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102340], "prev": [102341], "entries": [{"id": 126417, "definitionId": 131243, "maxRanks": 1, "type": "passive", "name": "Kill Cleave", "spellId": 378207, "icon": "spell_druid_bloodythrash", "index": 100}]}, {"id": 102348, "name": "Training Expert", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102340, 102365], "prev": [102341, 102360, 102338], "entries": [{"id": 126410, "definitionId": 131236, "maxRanks": 1, "type": "passive", "name": "Training Expert", "spellId": 378209, "icon": "spell_hunter_adaptation", "index": 100}]}, {"id": 102376, "name": "Dire Beast", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102349, 102337, 102365], "prev": [102358, 102360], "entries": [{"id": 126439, "definitionId": 131265, "maxRanks": 1, "type": "active", "name": "Dire Beast", "spellId": 120679, "icon": "ability_hunter_longevity", "index": 100}]}, {"id": 102352, "name": "A Murder of Crows", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364], "prev": [102347], "entries": [{"id": 126414, "definitionId": 131240, "maxRanks": 1, "type": "passive", "name": "A Murder of Crows", "spellId": 459760, "icon": "ability_hunter_murderofcrows", "index": 100}]}, {"id": 102335, "name": "Barrage", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364], "prev": [102347], "entries": [{"id": 126396, "definitionId": 131222, "maxRanks": 1, "type": "active", "name": "Barrage", "spellId": 120360, "icon": "ability_hunter_rapidregeneration", "index": 100}]}, {"id": 102353, "name": "Savagery", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102364, 102372], "prev": [102359, 102347], "entries": [{"id": 126415, "definitionId": 131241, "maxRanks": 1, "type": "passive", "name": "Savagery", "spellId": 424557, "icon": "spell_nature_protectionformnature", "index": 100}]}, {"id": 102340, "name": "Bestial Wrath", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102372, 102373, 102370], "prev": [102359, 102348, 102355], "entries": [{"id": 126402, "definitionId": 131228, "maxRanks": 1, "type": "active", "name": "Bestial Wrath", "spellId": 19574, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 102365, "name": "Dire Command", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102370, 102367], "prev": [102376, 102348], "entries": [{"id": 126427, "definitionId": 131253, "maxRanks": 1, "type": "passive", "name": "Dire Command", "spellId": 378743, "icon": "ability_hunter_ferociousinspiration", "index": 100}]}, {"id": 102349, "name": "Huntmaster's Call", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102367], "prev": [102376], "entries": [{"id": 126411, "definitionId": 131237, "maxRanks": 1, "type": "passive", "name": "Huntmaster's Call", "spellId": 459730, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 102337, "name": "Dire Frenzy", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102367], "prev": [102376], "entries": [{"id": 126398, "definitionId": 131224, "maxRanks": 1, "type": "passive", "name": "Dire Frenzy", "spellId": 385810, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102364, "name": "Killer Instinct", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102336], "prev": [102335, 102352, 102353], "entries": [{"id": 126426, "definitionId": 131252, "maxRanks": 2, "type": "passive", "name": "Killer Instinct", "spellId": 273887, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102372, "name": "Master Handler", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102340, 102353], "entries": [{"id": 126435, "definitionId": 131261, "maxRanks": 1, "type": "passive", "name": "Master Handler", "spellId": 424558, "icon": "ability_hunter_beastwithin", "index": 100}]}, {"id": 102373, "name": "Barbed Wrath", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102375, 102342, 102350], "prev": [102340], "entries": [{"id": 126436, "definitionId": 131262, "maxRanks": 1, "type": "passive", "name": "Barbed Wrath", "spellId": 231548, "icon": "ability_druid_ferociousbite", "index": 100}]}, {"id": 102370, "name": "Explosive Venom", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102365, 102340], "entries": [{"id": 126433, "definitionId": 131259, "maxRanks": 1, "type": "passive", "name": "Explosive Venom", "spellId": 459693, "icon": "ability_hunter_potentvenom", "index": 100}]}, {"id": 102367, "name": "Basilisk Collar", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102362], "prev": [102337, 102349, 102365], "entries": [{"id": 126430, "definitionId": 131256, "maxRanks": 2, "type": "passive", "name": "Basilisk Collar", "spellId": 459571, "icon": "hunter_pvp_direbeastbasilisk", "index": 100}]}, {"id": 102336, "name": "Call of the Wild", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102339], "prev": [102364], "entries": [{"id": 126397, "definitionId": 131223, "maxRanks": 1, "type": "active", "name": "Call of the Wild", "spellId": 359844, "icon": "ability_hunter_callofthewild", "index": 100}]}, {"id": 102375, "name": "Killer Cobra", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102371], "prev": [102373], "entries": [{"id": 126438, "definitionId": 131264, "maxRanks": 1, "type": "passive", "name": "Killer Cobra", "spellId": 199532, "icon": "ability_hunter_snaketrap", "index": 100}]}, {"id": 102342, "name": "Scent of Blood", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [102371], "prev": [102373], "entries": [{"id": 126404, "definitionId": 131230, "maxRanks": 2, "type": "passive", "name": "Scent of Blood", "spellId": 193532, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 102350, "name": "Brutal Companion", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102371], "prev": [102373], "entries": [{"id": 126412, "definitionId": 131238, "maxRanks": 1, "type": "passive", "name": "Brutal Companion", "spellId": 386870, "icon": "ability_druid_rake", "index": 100}]}, {"id": 102362, "name": "Bloodshed", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102366], "prev": [102367], "entries": [{"id": 126424, "definitionId": 131250, "maxRanks": 1, "type": "active", "name": "Bloodshed", "spellId": 321530, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 102339, "name": "Wild Instincts / Bloody Frenzy", "type": "choice", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102336], "entries": [{"id": 126401, "definitionId": 131227, "maxRanks": 1, "type": "passive", "name": "Wild Instincts", "spellId": 378442, "icon": "ability_hunter_beastwithin", "index": 100}, {"id": 126400, "definitionId": 131226, "maxRanks": 1, "type": "passive", "name": "Bloody Frenzy", "spellId": 407412, "icon": "ability_racial_cannibalize", "index": 200}]}, {"id": 102371, "name": "Piercing Fangs", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102350, 102342, 102375], "entries": [{"id": 126434, "definitionId": 131260, "maxRanks": 1, "type": "passive", "name": "Piercing Fangs", "spellId": 392053, "icon": "inv_misc_monsterfang_02", "index": 100}]}, {"id": 102366, "name": "Venomous Bite / Shower of Blood", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102362], "entries": [{"id": 126429, "definitionId": 131255, "maxRanks": 1, "type": "passive", "name": "Venomous Bite", "spellId": 459667, "icon": "ability_creature_poison_01", "index": 100}, {"id": 126428, "definitionId": 131254, "maxRanks": 1, "type": "passive", "name": "Shower of Blood", "spellId": 459729, "icon": "inv_artifact_bloodoftheassassinated", "index": 200}]}], "heroNodes": [{"id": 94987, "name": "Black Arrow", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 44, "next": [94961, 94968, 94983], "prev": [], "entries": [{"id": 117584, "definitionId": 122596, "maxRanks": 1, "type": "passive", "name": "Black Arrow", "spellId": 466932, "icon": "inv_ability_darkrangerhunter_blackarrow", "index": 100}], "freeNode": true}, {"id": 94961, "name": "Bleak Arrows", "type": "single", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94986], "prev": [94987], "entries": [{"id": 117558, "definitionId": 122570, "maxRanks": 1, "type": "passive", "name": "Bleak Arrows", "spellId": 467749, "icon": "inv_quiver_1h_mawraid_d_01", "index": 100}]}, {"id": 94983, "name": "Shadow Hounds / Soul Drinker", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94959], "prev": [94987], "entries": [{"id": 117580, "definitionId": 122592, "maxRanks": 1, "type": "passive", "name": "Shadow Hounds", "spellId": 430707, "icon": "inv_darkhoundmount_draka_blue", "index": 100}, {"id": 128238, "definitionId": 133045, "maxRanks": 1, "type": "passive", "name": "Soul Drinker", "spellId": 469638, "icon": "ability_warlock_soulsiphon", "index": 200}]}, {"id": 94968, "name": "The Bell Tolls", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94960], "prev": [94987], "entries": [{"id": 117565, "definitionId": 122577, "maxRanks": 1, "type": "passive", "name": "The Bell Tolls", "spellId": 467644, "icon": "spell_shadow_animatedead", "index": 100}]}, {"id": 94986, "name": "Phantom Pain / Ebon Bowstring", "type": "choice", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94957], "prev": [94961], "entries": [{"id": 117583, "definitionId": 122595, "maxRanks": 1, "type": "passive", "name": "Phantom Pain", "spellId": 467941, "icon": "spell_holy_painsupression", "index": 100}, {"id": 123780, "definitionId": 128618, "maxRanks": 1, "type": "passive", "name": "Ebon Bowstring", "spellId": 467897, "icon": "inv_10_tailoring_craftingoptionalreagent_enhancedspellthread_color4", "index": 200}]}, {"id": 94959, "name": "Embrace the Shadows / Smoke Screen", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94982], "prev": [94983], "entries": [{"id": 117556, "definitionId": 122568, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadows", "spellId": 430704, "icon": "spell_shadow_shadowembrace", "index": 100}, {"id": 123779, "definitionId": 128617, "maxRanks": 1, "type": "passive", "name": "Smoke Screen", "spellId": 430709, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 94960, "name": "Dark Chains / Shadow Dagger", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94974], "prev": [94968], "entries": [{"id": 117557, "definitionId": 122569, "maxRanks": 1, "type": "passive", "name": "Dark Chains", "spellId": 430712, "icon": "inv_belt_44c", "index": 100}, {"id": 128219, "definitionId": 133026, "maxRanks": 1, "type": "passive", "name": "Shadow Dagger", "spellId": 467741, "icon": "ability_throw", "index": 200}]}, {"id": 94957, "name": "Banshee's Mark", "type": "single", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94986], "entries": [{"id": 117554, "definitionId": 122566, "maxRanks": 1, "type": "passive", "name": "Banshee's Mark", "spellId": 467902, "icon": "achievement_leader_sylvanas", "index": 100}]}, {"id": 94982, "name": "Shadow Surge", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94959], "entries": [{"id": 117579, "definitionId": 122591, "maxRanks": 1, "type": "passive", "name": "Shadow Surge", "spellId": 467936, "icon": "ability_warlock_eradication", "index": 100}]}, {"id": 94974, "name": "Bleak Powder", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94960], "entries": [{"id": 117571, "definitionId": 122583, "maxRanks": 1, "type": "passive", "name": "Bleak Powder", "spellId": 467911, "icon": "inv_misc_powder_tin", "index": 100}]}, {"id": 94993, "name": "Withering Fire", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 44, "requiresNode": 102340, "next": [], "prev": [94982, 94957, 94974], "entries": [{"id": 117590, "definitionId": 122602, "maxRanks": 1, "type": "passive", "name": "Withering Fire", "spellId": 466990, "icon": "spell_shadow_painspike", "index": 100}]}, {"id": 94991, "name": "Vicious Hunt", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 43, "next": [94985, 94992, 94962], "prev": [], "entries": [{"id": 117588, "definitionId": 122600, "maxRanks": 1, "type": "passive", "name": "Vicious Hunt", "spellId": 445404, "icon": "inv_ability_packleaderhunter_vicioushunt", "index": 100}], "freeNode": true}, {"id": 94985, "name": "Pack Coordination", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94972], "prev": [94991], "entries": [{"id": 117582, "definitionId": 122594, "maxRanks": 1, "type": "passive", "name": "Pack Coordination", "spellId": 445505, "icon": "ability_hunter_separationanxiety", "index": 100}]}, {"id": 94992, "name": "Howl of the Pack", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94984], "prev": [94991], "entries": [{"id": 117589, "definitionId": 122601, "maxRanks": 1, "type": "passive", "name": "Howl of the Pack", "spellId": 445707, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 94962, "name": "Wild Attacks", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94988], "prev": [94991], "entries": [{"id": 117559, "definitionId": 122571, "maxRanks": 1, "type": "passive", "name": "Wild Attacks", "spellId": 445708, "icon": "inv_misc_bone_09", "index": 100}]}, {"id": 94972, "name": "Den Recovery", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94969], "prev": [94985], "entries": [{"id": 117569, "definitionId": 122581, "maxRanks": 1, "type": "passive", "name": "Den Recovery", "spellId": 445710, "icon": "ability_shaman_freedomwolf", "index": 100}]}, {"id": 94984, "name": "Tireless Hunt / Cornered Prey", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94967], "prev": [94992], "entries": [{"id": 117581, "definitionId": 122593, "maxRanks": 1, "type": "passive", "name": "Tireless Hunt", "spellId": 445701, "icon": "ability_mount_jungletiger", "index": 100}, {"id": 123782, "definitionId": 128620, "maxRanks": 1, "type": "passive", "name": "Cornered Prey", "spellId": 445702, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 94988, "name": "Frenzied Tear", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94979], "prev": [94962], "entries": [{"id": 117585, "definitionId": 122597, "maxRanks": 1, "type": "passive", "name": "Frenzied Tear", "spellId": 445696, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 94969, "name": "Scattered Prey / Covering Fire", "type": "choice", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94972], "entries": [{"id": 117566, "definitionId": 122578, "maxRanks": 1, "type": "passive", "name": "Scattered Prey", "spellId": 445768, "icon": "inv_misc_bone_09", "index": 100}, {"id": 123783, "definitionId": 128621, "maxRanks": 1, "type": "passive", "name": "Covering Fire", "spellId": 445715, "icon": "ability_hunter_runningshot", "index": 200}]}, {"id": 94967, "name": "Cull the Herd", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94984], "entries": [{"id": 117564, "definitionId": 122576, "maxRanks": 1, "type": "passive", "name": "Cull the Herd", "spellId": 445717, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 94979, "name": "Furious Assault / Beast of Opportunity", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94988], "entries": [{"id": 117576, "definitionId": 122588, "maxRanks": 1, "type": "passive", "name": "Furious Assault", "spellId": 445699, "icon": "spell_druid_feralchargecat", "index": 100}, {"id": 123781, "definitionId": 128619, "maxRanks": 1, "type": "passive", "name": "Beast of Opportunity", "spellId": 445700, "icon": "ability_hunter_catlikereflexes", "index": 200}]}, {"id": 94966, "name": "Pack Assault", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 43, "next": [], "prev": [94967, 94969, 94979], "entries": [{"id": 117563, "definitionId": 122575, "maxRanks": 1, "type": "passive", "name": "Pack Assault", "spellId": 445721, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}], "subTreeNodes": [{"id": 99832, "name": "Dark Ranger / Pack Leader", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123348, "type": "subtree", "name": "Dark Ranger", "traitSubTreeId": 44, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-darkranger", "nodes": [94987, 94961, 94983, 94968, 94986, 94959, 94960, 94957, 94982, 94974, 94993]}, {"id": 123347, "type": "subtree", "name": "Pack Leader", "traitSubTreeId": 43, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-packleader", "nodes": [94991, 94985, 94992, 94962, 94972, 94984, 94988, 94969, 94967, 94979, 94966]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]}, {"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Marksmanship", "specId": 254, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102399, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126463, "definitionId": 131289, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 53351, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Deathblow", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102399], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Deathblow", "spellId": 343248, "icon": "ability_hunter_runningshot", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 102402], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [102402, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 102402, "name": "Counter Shot", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 126466, "definitionId": 131292, "maxRanks": 1, "type": "active", "name": "Counter Shot", "spellId": 147362, "icon": "inv_ammo_arrow_03", "index": 100}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [102403, 102402, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [102402], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [102402, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102297, "name": "Aimed Shot", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102318, 102295, 102294], "prev": [], "entries": [{"id": 126357, "definitionId": 131183, "maxRanks": 1, "type": "active", "name": "Aimed Shot", "spellId": 19434, "icon": "inv_spear_07", "index": 100}]}, {"id": 102318, "name": "Rapid Fire", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102320, 102308], "prev": [102297], "entries": [{"id": 126378, "definitionId": 131204, "maxRanks": 1, "type": "active", "name": "Rapid Fire", "spellId": 257044, "icon": "ability_hunter_efficiency", "index": 100}]}, {"id": 102295, "name": "Multi-Shot", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [102309], "prev": [102297], "entries": [{"id": 126355, "definitionId": 131181, "maxRanks": 1, "type": "active", "name": "Multi-Shot", "spellId": 257620, "icon": "ability_upgrademoonglaive", "index": 100}]}, {"id": 102294, "name": "Precise Shot", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102328, 102329], "prev": [102297], "entries": [{"id": 126354, "definitionId": 131180, "maxRanks": 1, "type": "passive", "name": "Precise Shot", "spellId": 260240, "icon": "ability_hunter_snipertraining", "index": 100}]}, {"id": 102320, "name": "Surging Shots", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [102331], "prev": [102318], "entries": [{"id": 126380, "definitionId": 131206, "maxRanks": 1, "type": "passive", "name": "Surging Shots", "spellId": 391559, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 102308, "name": "Streamline", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102331], "prev": [102318], "entries": [{"id": 126368, "definitionId": 131194, "maxRanks": 1, "type": "passive", "name": "Streamline", "spellId": 260367, "icon": "ability_hunter_aimedshot", "index": 100}]}, {"id": 102328, "name": "Improved Steady Shot / Pin Cushion", "type": "choice", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102296], "prev": [102294], "entries": [{"id": 126388, "definitionId": 131214, "maxRanks": 1, "type": "passive", "name": "Improved Steady Shot", "spellId": 321018, "icon": "ability_hunter_improvedsteadyshot", "index": 100}, {"id": 128222, "definitionId": 133029, "maxRanks": 1, "type": "passive", "name": "Pin Cushion", "spellId": 468392, "icon": "ability_hunter_snipershot", "index": 200}]}, {"id": 102329, "name": "Crack Shot", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [102296], "prev": [102294], "entries": [{"id": 126389, "definitionId": 131215, "maxRanks": 1, "type": "passive", "name": "Crack Shot", "spellId": 321293, "icon": "ability_hunter_focusfire", "index": 100}]}, {"id": 102331, "name": "Penetrating Shots", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102314, 102313], "prev": [102320, 102308], "entries": [{"id": 126391, "definitionId": 131217, "maxRanks": 1, "type": "passive", "name": "Penetrating Shots", "spellId": 459783, "icon": "achievement_guildperk_reinforce_rank2", "index": 100}]}, {"id": 102309, "name": "Trick Shots", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [102334, 102303], "prev": [102295], "entries": [{"id": 126369, "definitionId": 131195, "maxRanks": 1, "type": "passive", "name": "Trick Shots", "spellId": 257621, "icon": "inv_trickshot", "index": 100}]}, {"id": 102296, "name": "Master Marksman", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102324, 102293], "prev": [102329, 102328], "entries": [{"id": 126356, "definitionId": 131182, "maxRanks": 1, "type": "passive", "name": "Master Marksman", "spellId": 260309, "icon": "ability_hunter_mastermarksman", "index": 100}]}, {"id": 102314, "name": "Fan the Hammer", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102305], "prev": [102331], "entries": [{"id": 126374, "definitionId": 131200, "maxRanks": 1, "type": "passive", "name": "Fan the Hammer", "spellId": 459794, "icon": "ability_rogue_pistolshot", "index": 100}]}, {"id": 102313, "name": "Careful Aim", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102305, 102332, 102321], "prev": [102331], "entries": [{"id": 126373, "definitionId": 131199, "maxRanks": 1, "type": "passive", "name": "Careful Aim", "spellId": 260228, "icon": "ability_hunter_zenarchery", "index": 100}]}, {"id": 102334, "name": "Heavy Ammo / Light Ammo", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102321], "prev": [102309], "entries": [{"id": 126395, "definitionId": 131221, "maxRanks": 1, "type": "passive", "name": "Heavy Ammo", "spellId": 378910, "icon": "inv_ammo_bullet_04", "index": 100}, {"id": 126394, "definitionId": 131220, "maxRanks": 1, "type": "passive", "name": "Light Ammo", "spellId": 378913, "icon": "ships_ability_armorpiercingammo", "index": 200}]}, {"id": 102303, "name": "Bulletstorm", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102311], "prev": [102309], "entries": [{"id": 126363, "definitionId": 131189, "maxRanks": 1, "type": "passive", "name": "Bulletstorm", "spellId": 389019, "icon": "ability_hunter_markedshot", "index": 100}]}, {"id": 102324, "name": "Lock and Load", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102311, 102315, 102323], "prev": [102296], "entries": [{"id": 126384, "definitionId": 131210, "maxRanks": 1, "type": "passive", "name": "Lock and Load", "spellId": 194595, "icon": "ability_hunter_lockandload", "index": 100}]}, {"id": 102293, "name": "Steady Focus", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102323], "prev": [102296], "entries": [{"id": 126353, "definitionId": 131179, "maxRanks": 1, "type": "passive", "name": "Steady Focus", "spellId": 193533, "icon": "hunter_pvp_snipershot", "index": 100}]}, {"id": 102305, "name": "Improved Deathblow", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102330], "prev": [102313, 102314], "entries": [{"id": 126365, "definitionId": 131191, "maxRanks": 1, "type": "passive", "name": "Improved Deathblow", "spellId": 378769, "icon": "ability_hunter_runningshot", "index": 100}]}, {"id": 102332, "name": "Barrage", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102330, 102302, 102319], "prev": [102313], "entries": [{"id": 126392, "definitionId": 131218, "maxRanks": 1, "type": "active", "name": "Barrage", "spellId": 120360, "icon": "ability_hunter_rapidregeneration", "index": 100}]}, {"id": 102321, "name": "Night Hunter", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102319, 102300], "prev": [102313, 102334], "entries": [{"id": 126381, "definitionId": 131207, "maxRanks": 1, "type": "passive", "name": "Night Hunter", "spellId": 378766, "icon": "artifactability_balancedruid_fullmoon", "index": 100}]}, {"id": 102311, "name": "Tactical Reload", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102300, 102298], "prev": [102324, 102303], "entries": [{"id": 126371, "definitionId": 131197, "maxRanks": 1, "type": "passive", "name": "Tactical Reload", "spellId": 400472, "icon": "ability_hunter_crossfire", "index": 100}]}, {"id": 102315, "name": "Serpentstalker's Trickery", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102298, 102301, 102317], "prev": [102324], "entries": [{"id": 126375, "definitionId": 131201, "maxRanks": 1, "type": "passive", "name": "Serpentstalker's Trickery", "spellId": 378888, "icon": "ability_hunter_serpentswiftness", "index": 100}]}, {"id": 102323, "name": "Chimaera Shot", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102317], "prev": [102324, 102293], "entries": [{"id": 126383, "definitionId": 131209, "maxRanks": 1, "type": "active", "name": "Chimaera Shot", "spellId": 342049, "icon": "ability_hunter_chimerashot2", "index": 200}]}, {"id": 102330, "name": "Killer Accuracy", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327, 102322], "prev": [102305, 102332], "entries": [{"id": 126390, "definitionId": 131216, "maxRanks": 1, "type": "passive", "name": "Killer Accuracy", "spellId": 378765, "icon": "ability_hunter_piercingshots", "index": 100}]}, {"id": 102302, "name": "Rapid Fire Barrage", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327], "prev": [102332], "entries": [{"id": 126362, "definitionId": 131188, "maxRanks": 1, "type": "passive", "name": "Rapid Fire Barrage", "spellId": 459800, "icon": "inv_engineering_deployablebulletdispenser", "index": 100}]}, {"id": 102319, "name": "In the Rhythm", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102327, 102304], "prev": [102332, 102321], "entries": [{"id": 126379, "definitionId": 131205, "maxRanks": 1, "type": "passive", "name": "In the Rhythm", "spellId": 407404, "icon": "ability_hunter_longshots", "index": 100}]}, {"id": 102300, "name": "Lone Wolf", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102304], "prev": [102311, 102321], "entries": [{"id": 126360, "definitionId": 131186, "maxRanks": 1, "type": "passive", "name": "Lone Wolf", "spellId": 155228, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 102298, "name": "Bullseye", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102304, 102333], "prev": [102311, 102315], "entries": [{"id": 126358, "definitionId": 131184, "maxRanks": 1, "type": "passive", "name": "Bullseye", "spellId": 204089, "icon": "ability_hunter_focusedaim", "index": 100}]}, {"id": 102301, "name": "Hydra's Bite", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102333], "prev": [102315], "entries": [{"id": 126361, "definitionId": 131187, "maxRanks": 1, "type": "passive", "name": "Hydra's Bite", "spellId": 260241, "icon": "inv_hydrasbite", "index": 100}]}, {"id": 102317, "name": "Volley", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102333, 102310], "prev": [102323, 102315], "entries": [{"id": 126377, "definitionId": 131203, "maxRanks": 1, "type": "active", "name": "Volley", "spellId": 260243, "icon": "ability_hunter_rapidkilling", "index": 100}]}, {"id": 102327, "name": "Legacy of the Windrunners", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102299], "prev": [102319, 102302, 102330], "entries": [{"id": 126387, "definitionId": 131213, "maxRanks": 2, "type": "passive", "name": "Legacy of the Windrunners", "spellId": 406425, "icon": "artifactability_marksmanhunter_legacyofthewindrunners", "index": 100}]}, {"id": 102304, "name": "Trueshot", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102326], "prev": [102319, 102298, 102300], "entries": [{"id": 126364, "definitionId": 131190, "maxRanks": 1, "type": "active", "name": "Trueshot", "spellId": 288613, "icon": "ability_trueshot", "index": 100}]}, {"id": 102333, "name": "Focused Aim", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102325], "prev": [102301, 102298, 102317], "entries": [{"id": 126393, "definitionId": 131219, "maxRanks": 2, "type": "passive", "name": "Focused Aim", "spellId": 378767, "icon": "inv_engineering_snipingscope", "index": 100}]}, {"id": 102322, "name": "Razor Fragments", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102330], "entries": [{"id": 126382, "definitionId": 131208, "maxRanks": 1, "type": "passive", "name": "Razor Fragments", "spellId": 384790, "icon": "ability_hunter_razorwire", "index": 100}]}, {"id": 102299, "name": "Wailing Arrow", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102307], "prev": [102327], "entries": [{"id": 126359, "definitionId": 131185, "maxRanks": 1, "type": "passive", "name": "Wailing Arrow", "spellId": 459806, "icon": "ability_theblackarrow", "index": 100}]}, {"id": 102326, "name": "Unerring Vision", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102312], "prev": [102304], "entries": [{"id": 126386, "definitionId": 131212, "maxRanks": 1, "type": "passive", "name": "Unerring Vision", "spellId": 386878, "icon": "spell_hunter_exoticmunitions_frozen", "index": 100}]}, {"id": 102325, "name": "Small Game Hunter", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102316], "prev": [102333], "entries": [{"id": 126385, "definitionId": 131211, "maxRanks": 1, "type": "passive", "name": "Small Game Hunter", "spellId": 459802, "icon": "inv_rabbit2_darkmoon", "index": 100}]}, {"id": 102310, "name": "Kill Zone", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102317], "entries": [{"id": 126370, "definitionId": 131196, "maxRanks": 1, "type": "passive", "name": "Kill Zone", "spellId": 459921, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 102307, "name": "Readiness", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102299], "entries": [{"id": 126367, "definitionId": 131193, "maxRanks": 1, "type": "passive", "name": "Readiness", "spellId": 389865, "icon": "ability_hunter_readiness", "index": 100}]}, {"id": 102312, "name": "Calling the Shots", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102326], "entries": [{"id": 126372, "definitionId": 131198, "maxRanks": 1, "type": "passive", "name": "Calling the Shots", "spellId": 260404, "icon": "ability_hunter_assassinate", "index": 200}]}, {"id": 102316, "name": "Salvo", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102325], "entries": [{"id": 126376, "definitionId": 131202, "maxRanks": 1, "type": "active", "name": "Salvo", "spellId": 400456, "icon": "spell_hunter_exoticmunitions_incendiary", "index": 0}]}], "heroNodes": [{"id": 94976, "name": "Sentinel", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 42, "next": [94989, 94973, 94981], "prev": [], "entries": [{"id": 117573, "definitionId": 122585, "maxRanks": 1, "type": "passive", "name": "Sentinel", "spellId": 450369, "icon": "ability_hunter_sentinelowl", "index": 100}], "freeNode": true}, {"id": 94987, "name": "Black Arrow", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 44, "next": [94961, 94968, 94983], "prev": [], "entries": [{"id": 117584, "definitionId": 122596, "maxRanks": 1, "type": "passive", "name": "Black Arrow", "spellId": 466932, "icon": "inv_ability_darkrangerhunter_blackarrow", "index": 100}], "freeNode": true}, {"id": 94989, "name": "Don't Look Back", "type": "single", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94958], "prev": [94976], "entries": [{"id": 117586, "definitionId": 122598, "maxRanks": 1, "type": "passive", "name": "Don't Look Back", "spellId": 450373, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 94973, "name": "Extrapolated Shots", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94990], "prev": [94976], "entries": [{"id": 117570, "definitionId": 122582, "maxRanks": 1, "type": "passive", "name": "Extrapolated Shots", "spellId": 450374, "icon": "ability_hunter_huntingparty", "index": 100}]}, {"id": 94981, "name": "Sentinel Precision", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94971], "prev": [94976], "entries": [{"id": 117578, "definitionId": 122590, "maxRanks": 1, "type": "passive", "name": "Sentinel Precision", "spellId": 450375, "icon": "inv_weapon_shortblade_83", "index": 100}]}, {"id": 94961, "name": "Bleak Arrows", "type": "single", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94986], "prev": [94987], "entries": [{"id": 117558, "definitionId": 122570, "maxRanks": 1, "type": "passive", "name": "Bleak Arrows", "spellId": 467749, "icon": "inv_quiver_1h_mawraid_d_01", "index": 100}]}, {"id": 94983, "name": "Shadow Hounds / Soul Drinker", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94959], "prev": [94987], "entries": [{"id": 117580, "definitionId": 122592, "maxRanks": 1, "type": "passive", "name": "Shadow Hounds", "spellId": 430707, "icon": "inv_darkhoundmount_draka_blue", "index": 100}, {"id": 128238, "definitionId": 133045, "maxRanks": 1, "type": "passive", "name": "Soul Drinker", "spellId": 469638, "icon": "ability_warlock_soulsiphon", "index": 200}]}, {"id": 94968, "name": "The Bell Tolls", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 44, "next": [94960], "prev": [94987], "entries": [{"id": 117565, "definitionId": 122577, "maxRanks": 1, "type": "passive", "name": "The Bell Tolls", "spellId": 467644, "icon": "spell_shadow_animatedead", "index": 100}]}, {"id": 94958, "name": "Release and Reload", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94970], "prev": [94989], "entries": [{"id": 117555, "definitionId": 122567, "maxRanks": 1, "type": "passive", "name": "Release and Reload", "spellId": 450376, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94990, "name": "Catch Out / Sideline", "type": "choice", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94965], "prev": [94973], "entries": [{"id": 117587, "definitionId": 122599, "maxRanks": 1, "type": "passive", "name": "Catch Out", "spellId": 451516, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 123869, "definitionId": 128707, "maxRanks": 1, "type": "passive", "name": "Sideline", "spellId": 450378, "icon": "ability_rogue_trip", "index": 200}]}, {"id": 94971, "name": "Invigorating Pulse", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94980], "prev": [94981], "entries": [{"id": 117568, "definitionId": 122580, "maxRanks": 1, "type": "passive", "name": "Invigorating Pulse", "spellId": 450379, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 94986, "name": "Phantom Pain / Ebon Bowstring", "type": "choice", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94957], "prev": [94961], "entries": [{"id": 117583, "definitionId": 122595, "maxRanks": 1, "type": "passive", "name": "Phantom Pain", "spellId": 467941, "icon": "spell_holy_painsupression", "index": 100}, {"id": 123780, "definitionId": 128618, "maxRanks": 1, "type": "passive", "name": "Ebon Bowstring", "spellId": 467897, "icon": "inv_10_tailoring_craftingoptionalreagent_enhancedspellthread_color4", "index": 200}]}, {"id": 94959, "name": "Embrace the Shadows / Smoke Screen", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94982], "prev": [94983], "entries": [{"id": 117556, "definitionId": 122568, "maxRanks": 1, "type": "passive", "name": "Embrace the Shadows", "spellId": 430704, "icon": "spell_shadow_shadowembrace", "index": 100}, {"id": 123779, "definitionId": 128617, "maxRanks": 1, "type": "passive", "name": "Smoke Screen", "spellId": 430709, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 94960, "name": "Dark Chains / Shadow Dagger", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 44, "next": [94974], "prev": [94968], "entries": [{"id": 117557, "definitionId": 122569, "maxRanks": 1, "type": "passive", "name": "Dark Chains", "spellId": 430712, "icon": "inv_belt_44c", "index": 100}, {"id": 128219, "definitionId": 133026, "maxRanks": 1, "type": "passive", "name": "Shadow Dagger", "spellId": 467741, "icon": "ability_throw", "index": 200}]}, {"id": 94970, "name": "Sentinel Watch / Eyes Closed", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94958], "entries": [{"id": 117567, "definitionId": 122579, "maxRanks": 1, "type": "passive", "name": "Sentinel Watch", "spellId": 451546, "icon": "inv_quiver_1h_sylvanas_d_01", "index": 100}, {"id": 123871, "definitionId": 128709, "maxRanks": 1, "type": "passive", "name": "Eyes Closed", "spellId": 450381, "icon": "inv_trickshot", "index": 200}]}, {"id": 94965, "name": "Symphonic Arsenal", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94990], "entries": [{"id": 117562, "definitionId": 122574, "maxRanks": 1, "type": "passive", "name": "Symphonic Arsenal", "spellId": 450383, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 94980, "name": "Overwatch / Crescent Steel", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94971], "entries": [{"id": 117577, "definitionId": 122589, "maxRanks": 1, "type": "passive", "name": "Overwatch", "spellId": 450384, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 123870, "definitionId": 128708, "maxRanks": 1, "type": "passive", "name": "Crescent Steel", "spellId": 451530, "icon": "inv_enchant_crescentoil", "index": 200}]}, {"id": 94957, "name": "Banshee's Mark", "type": "single", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94986], "entries": [{"id": 117554, "definitionId": 122566, "maxRanks": 1, "type": "passive", "name": "Banshee's Mark", "spellId": 467902, "icon": "achievement_leader_sylvanas", "index": 100}]}, {"id": 94982, "name": "Shadow Surge", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94959], "entries": [{"id": 117579, "definitionId": 122591, "maxRanks": 1, "type": "passive", "name": "Shadow Surge", "spellId": 467936, "icon": "ability_warlock_eradication", "index": 100}]}, {"id": 94974, "name": "Bleak Powder", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 44, "next": [94993], "prev": [94960], "entries": [{"id": 117571, "definitionId": 122583, "maxRanks": 1, "type": "passive", "name": "Bleak Powder", "spellId": 467911, "icon": "inv_misc_powder_tin", "index": 100}]}, {"id": 94978, "name": "Lunar Storm", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 42, "next": [], "prev": [94965, 94970, 94980], "entries": [{"id": 117575, "definitionId": 122587, "maxRanks": 1, "type": "passive", "name": "Lunar Storm", "spellId": 450385, "icon": "inv_ability_sentinelhunter_lunarstorm", "index": 100}]}, {"id": 94993, "name": "Withering Fire", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 44, "requiresNode": 102340, "next": [], "prev": [94982, 94957, 94974], "entries": [{"id": 117590, "definitionId": 122602, "maxRanks": 1, "type": "passive", "name": "Withering Fire", "spellId": 466990, "icon": "spell_shadow_painspike", "index": 100}]}], "subTreeNodes": [{"id": 99831, "name": "Dark Ranger / Sentinel", "type": "subtree", "posX": 8100, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123346, "type": "subtree", "name": "Dark Ranger", "traitSubTreeId": 44, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-darkranger", "nodes": [94987, 94961, 94983, 94968, 94986, 94959, 94960, 94957, 94982, 94974, 94993]}, {"id": 123345, "type": "subtree", "name": "Sentinel", "traitSubTreeId": 42, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-sentinel", "nodes": [94976, 94989, 94973, 94981, 94958, 94990, 94971, 94970, 94965, 94980, 94978]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]}, {"traitTreeId": 774, "className": "Hunter", "classId": 3, "specName": "Survival", "specId": 255, "classNodes": [{"id": 102401, "name": "Natural Mending", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102381], "prev": [], "entries": [{"id": 126465, "definitionId": 131291, "maxRanks": 1, "type": "passive", "name": "Natural Mending", "spellId": 270581, "icon": "ability_hunter_onewithnature", "index": 100}]}, {"id": 102411, "name": "Posthaste", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102423], "prev": [], "entries": [{"id": 126475, "definitionId": 131301, "maxRanks": 1, "type": "passive", "name": "Posthaste", "spellId": 109215, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 102379, "name": "Kill Shot", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102410], "prev": [], "entries": [{"id": 126442, "definitionId": 131268, "maxRanks": 1, "type": "active", "name": "Kill Shot", "spellId": 320976, "icon": "ability_hunter_assassinate2", "index": 100}], "freeNode": true}, {"id": 102381, "name": "Rejuvenating Wind", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [102383, 102393], "prev": [102401], "entries": [{"id": 126444, "definitionId": 131270, "maxRanks": 1, "type": "passive", "name": "Rejuvenating Wind", "spellId": 385539, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 102423, "name": "Hunter's Avoidance", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [102393, 102380], "prev": [102411], "entries": [{"id": 126489, "definitionId": 131315, "maxRanks": 1, "type": "passive", "name": "Hunter's Avoidance", "spellId": 384799, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 102410, "name": "Deathblow", "type": "single", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [102380, 102407], "prev": [102379], "entries": [{"id": 126474, "definitionId": 131300, "maxRanks": 1, "type": "passive", "name": "Deathblow", "spellId": 343248, "icon": "ability_hunter_runningshot", "index": 100}]}, {"id": 102383, "name": "Wilderness Medicine", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [102422, 102424], "prev": [102381], "entries": [{"id": 126446, "definitionId": 131272, "maxRanks": 1, "type": "passive", "name": "Wilderness Medicine", "spellId": 343242, "icon": "ability_hunter_mendpet", "index": 100}]}, {"id": 102393, "name": "Tar Trap", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [102422, 102403, 79837], "prev": [102423, 102381], "entries": [{"id": 126457, "definitionId": 131283, "maxRanks": 1, "type": "active", "name": "Tar Trap", "spellId": 187698, "icon": "spell_yorsahj_bloodboil_black", "index": 100}]}, {"id": 102380, "name": "Tranquilizing Shot", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [79837, 102415, 102419], "prev": [102423, 102410], "entries": [{"id": 126443, "definitionId": 131269, "maxRanks": 1, "type": "active", "name": "Tranquilizing Shot", "spellId": 19801, "icon": "spell_nature_drowsy", "index": 100}]}, {"id": 102407, "name": "Concussive Shot", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [102419, 102382], "prev": [102410], "entries": [{"id": 126471, "definitionId": 131297, "maxRanks": 1, "type": "active", "name": "Concussive Shot", "spellId": 5116, "icon": "spell_frost_stun", "index": 100}]}, {"id": 102422, "name": "Survival of the Fittest", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [102424, 102406, 102391], "prev": [102383, 102393], "entries": [{"id": 126488, "definitionId": 131314, "maxRanks": 1, "type": "active", "name": "Survival of the Fittest", "spellId": 264735, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 102403, "name": "Entrapment", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102391], "prev": [102393], "entries": [{"id": 126467, "definitionId": 131293, "maxRanks": 1, "type": "passive", "name": "Entrapment", "spellId": 393344, "icon": "ability_ensnare", "index": 100}]}, {"id": 79837, "name": "Muzzle", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [102391, 102390, 102395], "prev": [102393, 102380], "entries": [{"id": 100543, "definitionId": 105545, "maxRanks": 1, "type": "active", "name": "Muzzle", "spellId": 187707, "icon": "ability_hunter_negate", "index": 0}]}, {"id": 102415, "name": "Kodo Tranquilizer / Devilsaur Tranquilizer", "type": "choice", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [102395], "prev": [102380], "entries": [{"id": 126480, "definitionId": 131306, "maxRanks": 1, "type": "passive", "name": "Kodo Tranquilizer", "spellId": 459983, "icon": "ability_mount_kodo_03", "index": 100}, {"id": 126479, "definitionId": 131305, "maxRanks": 1, "type": "passive", "name": "Devilsaur Tranquilizer", "spellId": 459991, "icon": "ability_hunter_pet_devilsaur", "index": 200}]}, {"id": 102419, "name": "Misdirection", "type": "single", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [102395, 102412, 102382], "prev": [102407, 102380], "entries": [{"id": 126484, "definitionId": 131310, "maxRanks": 1, "type": "active", "name": "Misdirection", "spellId": 34477, "icon": "ability_hunter_misdirection", "index": 100}]}, {"id": 102424, "name": "Scout's Instincts", "type": "single", "posX": 2400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422, 102383], "entries": [{"id": 126490, "definitionId": 131316, "maxRanks": 1, "type": "passive", "name": "Scout's Instincts", "spellId": 459455, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 102406, "name": "Padded Armor", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397], "prev": [102422], "entries": [{"id": 126470, "definitionId": 131296, "maxRanks": 1, "type": "passive", "name": "Padded Armor", "spellId": 459450, "icon": "ability_rogue_plunderarmor", "index": 100}]}, {"id": 102391, "name": "Lone Survivor", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102397, 102420], "prev": [79837, 102403, 102422], "entries": [{"id": 126454, "definitionId": 131280, "maxRanks": 1, "type": "passive", "name": "Lone Survivor", "spellId": 388039, "icon": "ability_hunter_huntervswild", "index": 100}]}, {"id": 102390, "name": "Specialized Arsenal", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420], "prev": [79837], "entries": [{"id": 126453, "definitionId": 131279, "maxRanks": 1, "type": "passive", "name": "Specialized Arsenal", "spellId": 459542, "icon": "inv_misc_quiver_03", "index": 100}]}, {"id": 102395, "name": "Disruptive Rounds", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102420, 102386], "prev": [79837, 102419, 102415], "entries": [{"id": 126459, "definitionId": 131285, "maxRanks": 1, "type": "passive", "name": "Disruptive Rounds", "spellId": 343244, "icon": "hunter_pvp_vipersting", "index": 100}]}, {"id": 102412, "name": "No Hard Feelings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419], "entries": [{"id": 126476, "definitionId": 131302, "maxRanks": 1, "type": "passive", "name": "No Hard Feelings", "spellId": 459546, "icon": "ability_seal", "index": 100}]}, {"id": 102382, "name": "Scare Beast", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102386], "prev": [102419, 102407], "entries": [{"id": 126445, "definitionId": 131271, "maxRanks": 1, "type": "active", "name": "Scare Beast", "spellId": 1513, "icon": "ability_druid_cower", "index": 100}]}, {"id": 102397, "name": "Intimidation", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102421, 102394, 102396], "prev": [102424, 102406, 102391], "entries": [{"id": 126461, "definitionId": 131287, "maxRanks": 1, "type": "active", "name": "Intimidation", "spellId": 19577, "icon": "ability_devour", "index": 100}]}, {"id": 102420, "name": "Explosive Shot", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102396, 102392, 102409], "prev": [102395, 102391, 102390], "entries": [{"id": 126485, "definitionId": 131311, "maxRanks": 1, "type": "active", "name": "Explosive Shot", "spellId": 212431, "icon": "ability_hunter_explosiveshot", "index": 100}]}, {"id": 102386, "name": "Binding Shot", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102409, 102417, 102408], "prev": [102395, 102382, 102412], "entries": [{"id": 126449, "definitionId": 131275, "maxRanks": 1, "type": "active", "name": "Binding Shot", "spellId": 109248, "icon": "spell_shaman_bindelemental", "index": 100}]}, {"id": 102421, "name": "Bursting Shot / Scatter Shot", "type": "choice", "posX": 2400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102413, 102404], "prev": [102397], "entries": [{"id": 126487, "definitionId": 131313, "maxRanks": 1, "type": "active", "name": "Bursting Shot", "spellId": 186387, "icon": "ability_hunter_burstingshot", "index": 100}, {"id": 126486, "definitionId": 131312, "maxRanks": 1, "type": "active", "name": "Scatter Shot", "spellId": 213691, "icon": "ability_golemstormbolt", "index": 200}]}, {"id": 102394, "name": "Territorial Instincts", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102404], "prev": [102397], "entries": [{"id": 126458, "definitionId": 131284, "maxRanks": 1, "type": "passive", "name": "Territorial Instincts", "spellId": 459507, "icon": "spell_nature_shamanrage", "index": 100}]}, {"id": 102396, "name": "Trigger Finger", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102404, 102388], "prev": [102397, 102420], "entries": [{"id": 126460, "definitionId": 131286, "maxRanks": 2, "type": "passive", "name": "Trigger Finger", "spellId": 459534, "icon": "inv_10_engineering2_pvpflaregun_color1", "index": 100}]}, {"id": 102392, "name": "Blackrock Munitions", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102388], "prev": [102420], "entries": [{"id": 126456, "definitionId": 131282, "maxRanks": 1, "type": "passive", "name": "Blackrock Munitions", "spellId": 462036, "icon": "inv_ore_blackrock_nugget", "index": 100}]}, {"id": 102409, "name": "Keen Eyesight", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [102388, 102414], "prev": [102386, 102420], "entries": [{"id": 126473, "definitionId": 131299, "maxRanks": 2, "type": "passive", "name": "Keen Eyesight", "spellId": 378004, "icon": "ability_hunter_silenthunter", "index": 100}]}, {"id": 102417, "name": "Tar-Coated Bindings", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414], "prev": [102386], "entries": [{"id": 126482, "definitionId": 131308, "maxRanks": 1, "type": "passive", "name": "Tar-Coated Bindings", "spellId": 459460, "icon": "inv_misc_food_legion_goooil_pool", "index": 100}]}, {"id": 102408, "name": "Scrappy", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102414, 102425], "prev": [102386], "entries": [{"id": 126472, "definitionId": 131298, "maxRanks": 1, "type": "passive", "name": "Scrappy", "spellId": 459533, "icon": "inv_misc_gear_08", "index": 100}]}, {"id": 102413, "name": "Quick Load", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400], "prev": [102421], "entries": [{"id": 126477, "definitionId": 131303, "maxRanks": 1, "type": "passive", "name": "Quick Load", "spellId": 378771, "icon": "ability_hunter_wildquiver", "index": 100}]}, {"id": 102404, "name": "Pathfinding", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102400, 102405, 102384], "prev": [102394, 102396, 102421], "entries": [{"id": 126468, "definitionId": 131294, "maxRanks": 1, "type": "passive", "name": "Pathfinding", "spellId": 378002, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 102388, "name": "Binding Shackles", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102384, 102426, 102416], "prev": [102392, 102396, 102409], "entries": [{"id": 126451, "definitionId": 131277, "maxRanks": 1, "type": "passive", "name": "Binding Shackles", "spellId": 321468, "icon": "inv_misc_steelweaponchain", "index": 100}]}, {"id": 102414, "name": "Camouflage", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102416, 102385, 102418], "prev": [102417, 102409, 102408], "entries": [{"id": 126478, "definitionId": 131304, "maxRanks": 1, "type": "active", "name": "Camouflage", "spellId": 199483, "icon": "ability_hunter_camouflage", "index": 100}]}, {"id": 102425, "name": "Kindling Flare", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102418], "prev": [102408], "entries": [{"id": 126491, "definitionId": 131317, "maxRanks": 1, "type": "passive", "name": "Kindling Flare", "spellId": 459506, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 102400, "name": "Trailblazer", "type": "single", "posX": 2400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404, 102413], "entries": [{"id": 126464, "definitionId": 131290, "maxRanks": 1, "type": "passive", "name": "Trailblazer", "spellId": 199921, "icon": "ability_hunter_aspectmastery", "index": 100}]}, {"id": 102405, "name": "Roar of Sacrifice", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389], "prev": [102404], "entries": [{"id": 126469, "definitionId": 131295, "maxRanks": 1, "type": "active", "name": "Roar of Sacrifice", "spellId": 53480, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102384, "name": "Serrated Tips", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102389, 102739], "prev": [102388, 102404], "entries": [{"id": 126447, "definitionId": 131273, "maxRanks": 1, "type": "passive", "name": "Serrated Tips", "spellId": 459502, "icon": "inv_spear_01", "index": 100}]}, {"id": 102426, "name": "Moment of Opportunity", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739], "prev": [102388], "entries": [{"id": 126492, "definitionId": 131318, "maxRanks": 1, "type": "passive", "name": "Moment of Opportunity", "spellId": 459488, "icon": "ability_karoz_leap", "index": 100}]}, {"id": 102416, "name": "Born To Be Wild", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102739, 102387], "prev": [102388, 102414], "entries": [{"id": 126481, "definitionId": 131307, "maxRanks": 1, "type": "passive", "name": "Born To Be Wild", "spellId": 266921, "icon": "ability_hunter_aspectoftheviper", "index": 100}]}, {"id": 102385, "name": "Ghillie Suit", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414], "entries": [{"id": 126448, "definitionId": 131274, "maxRanks": 1, "type": "passive", "name": "Ghillie Suit", "spellId": 459466, "icon": "ability_ambush", "index": 100}]}, {"id": 102418, "name": "Improved Traps", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102387], "prev": [102414, 102425], "entries": [{"id": 126483, "definitionId": 131309, "maxRanks": 1, "type": "passive", "name": "Improved Traps", "spellId": 343247, "icon": "ability_hunter_traplauncher", "index": 100}]}, {"id": 102389, "name": "Emergency Salve", "type": "single", "posX": 3000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102405, 102400, 102384], "entries": [{"id": 126452, "definitionId": 131278, "maxRanks": 1, "type": "passive", "name": "Emergency Salve", "spellId": 459517, "icon": "inv_potion_29", "index": 100}]}, {"id": 102739, "name": "High Explosive Trap / Implosive Trap", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102426, 102416, 102384], "entries": [{"id": 126830, "definitionId": 131657, "maxRanks": 1, "type": "active", "name": "High Explosive Trap", "spellId": 236776, "icon": "spell_fire_selfdestruct", "index": 100}, {"id": 126829, "definitionId": 131656, "maxRanks": 1, "type": "active", "name": "Implosive Trap", "spellId": 462031, "icon": "6bf_explosive_shard", "index": 200}]}, {"id": 102387, "name": "Unnatural Causes", "type": "single", "posX": 5400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102385, 102418, 102416], "entries": [{"id": 126450, "definitionId": 131276, "maxRanks": 1, "type": "passive", "name": "Unnatural Causes", "spellId": 459527, "icon": "ability_hunter_potentvenom", "index": 100}]}], "specNodes": [{"id": 102255, "name": "Kill Command", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102264, 102262], "prev": [], "entries": [{"id": 126314, "definitionId": 131140, "maxRanks": 1, "type": "active", "name": "Kill Command", "spellId": 259489, "icon": "ability_hunter_killcommand", "index": 100}]}, {"id": 102264, "name": "Wildfire Bomb", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [102285], "prev": [102255], "entries": [{"id": 126324, "definitionId": 131150, "maxRanks": 1, "type": "active", "name": "Wildfire Bomb", "spellId": 259495, "icon": "inv_wildfirebomb", "index": 100}]}, {"id": 102262, "name": "Raptor Strike", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [102263], "prev": [102255], "entries": [{"id": 126322, "definitionId": 131148, "maxRanks": 1, "type": "active", "name": "Raptor Strike", "spellId": 186270, "icon": "ability_hunter_raptorstrike", "index": 100}]}, {"id": 102285, "name": "Guerrilla Tactics", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [102272, 102279], "prev": [102264], "entries": [{"id": 126345, "definitionId": 131171, "maxRanks": 1, "type": "passive", "name": "Guerrilla Tactics", "spellId": 264332, "icon": "spell_mage_flameorb", "index": 100}]}, {"id": 102263, "name": "Tip of the Spear", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [102257, 102283], "prev": [102262], "entries": [{"id": 126323, "definitionId": 131149, "maxRanks": 1, "type": "passive", "name": "Tip of the Spear", "spellId": 260285, "icon": "ability_bossmannoroth_glaivethrust", "index": 100}]}, {"id": 102272, "name": "Lunge", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [102265, 102274], "prev": [102285], "entries": [{"id": 126332, "definitionId": 131158, "maxRanks": 1, "type": "passive", "name": "Lunge", "spellId": 378934, "icon": "inv_polearm_2h_kultirasharpoon_a_01", "index": 100}]}, {"id": 102279, "name": "Quick Shot", "type": "single", "posX": 12000, "posY": 3300, "maxRanks": 1, "next": [102274, 102266, 102290], "prev": [102285], "entries": [{"id": 126339, "definitionId": 131165, "maxRanks": 1, "type": "passive", "name": "Quick Shot", "spellId": 378940, "icon": "ability_hunter_fervor", "index": 100}]}, {"id": 102257, "name": "Mongoose Bite", "type": "single", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [102290, 102268, 102259], "prev": [102263], "entries": [{"id": 126316, "definitionId": 131142, "maxRanks": 1, "type": "active", "name": "Mongoose Bite", "spellId": 259387, "icon": "ability_hunter_mongoosebite", "index": 100}]}, {"id": 102283, "name": "Flanker's Advantage", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [102259, 102256], "prev": [102263], "entries": [{"id": 126343, "definitionId": 131169, "maxRanks": 1, "type": "passive", "name": "Flanker's Advantage", "spellId": 459964, "icon": "ability_hunter_beastmastery", "index": 100}]}, {"id": 102265, "name": "Wildfire Infusion", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102287, 102278], "prev": [102272], "entries": [{"id": 126325, "definitionId": 131151, "maxRanks": 1, "type": "passive", "name": "Wildfire Infusion", "spellId": 460198, "icon": "inv_misc_5potionbag_special", "index": 100}]}, {"id": 102274, "name": "Improved Wildfire Bomb", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102278], "prev": [102279, 102272], "entries": [{"id": 126334, "definitionId": 131160, "maxRanks": 1, "type": "passive", "name": "Improved Wildfire Bomb", "spellId": 321290, "icon": "inv_eng_bombfire", "index": 100}]}, {"id": 102266, "name": "Sulfur-Lined Pockets", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102278], "prev": [102279], "entries": [{"id": 126326, "definitionId": 131152, "maxRanks": 1, "type": "passive", "name": "Sulfur-Lined Pockets", "spellId": 459828, "icon": "inv_misc_ammo_gunpowder_01", "index": 100}]}, {"id": 102290, "name": "Butchery", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102286, 102267], "prev": [102257, 102279], "entries": [{"id": 126350, "definitionId": 131176, "maxRanks": 1, "type": "active", "name": "Butchery", "spellId": 212436, "icon": "ability_butcher_cleave", "index": 200}]}, {"id": 102268, "name": "Bloody Claws", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260], "prev": [102257], "entries": [{"id": 126328, "definitionId": 131154, "maxRanks": 1, "type": "passive", "name": "Bloody Claws", "spellId": 385737, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 102259, "name": "Alpha Predator", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260], "prev": [102257, 102283], "entries": [{"id": 126319, "definitionId": 131145, "maxRanks": 1, "type": "passive", "name": "Alpha Predator", "spellId": 269737, "icon": "spell_druid_savagery", "index": 100}]}, {"id": 102256, "name": "Ranger", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102260, 102270], "prev": [102283], "entries": [{"id": 126315, "definitionId": 131141, "maxRanks": 1, "type": "passive", "name": "Ranger", "spellId": 385695, "icon": "ability_hunter_thrillofthehunt", "index": 100}]}, {"id": 102287, "name": "Grenade Juggler", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102288], "prev": [102265], "entries": [{"id": 126347, "definitionId": 131173, "maxRanks": 1, "type": "passive", "name": "Grenade Juggler", "spellId": 459843, "icon": "inv_misc_mohawkgrenade", "index": 100}]}, {"id": 102278, "name": "Flanking Strike", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102288, 102271, 102277], "prev": [102274, 102265, 102266], "entries": [{"id": 126338, "definitionId": 131164, "maxRanks": 1, "type": "active", "name": "Flanking Strike", "spellId": 269751, "icon": "ability_hunter_invigeration", "index": 100}]}, {"id": 102286, "name": "Frenzy Strikes", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102277], "prev": [102290], "entries": [{"id": 126346, "definitionId": 131172, "maxRanks": 1, "type": "passive", "name": "Frenzy Strikes", "spellId": 294029, "icon": "ability_demonhunter_manabreak", "index": 100}]}, {"id": 102267, "name": "Merciless Blow", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102280], "prev": [102290], "entries": [{"id": 126327, "definitionId": 131153, "maxRanks": 1, "type": "passive", "name": "Merciless Blow", "spellId": 459868, "icon": "ability_hunter_swiftstrike", "index": 100}]}, {"id": 102260, "name": "Viper's Venom", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102280, 102276, 102269], "prev": [102268, 102256, 102259], "entries": [{"id": 126320, "definitionId": 131146, "maxRanks": 1, "type": "passive", "name": "Viper's Venom", "spellId": 268501, "icon": "ability_hunter_potentvenom", "index": 100}]}, {"id": 102270, "name": "Bloodseeker", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102269], "prev": [102256], "entries": [{"id": 126330, "definitionId": 131156, "maxRanks": 1, "type": "passive", "name": "Bloodseeker", "spellId": 260248, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 102288, "name": "Terms of Engagement", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281], "prev": [102287, 102278], "entries": [{"id": 126348, "definitionId": 131174, "maxRanks": 1, "type": "passive", "name": "Terms of Engagement", "spellId": 265895, "icon": "ability_hunter_harpoon", "index": 100}]}, {"id": 102271, "name": "Exposed Flank", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281], "prev": [102278], "entries": [{"id": 126331, "definitionId": 131157, "maxRanks": 1, "type": "passive", "name": "Exposed Flank", "spellId": 459861, "icon": "ability_hunter_animalhandler", "index": 100}]}, {"id": 102277, "name": "Tactical Advantage", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102281, 102289], "prev": [102278, 102286], "entries": [{"id": 126337, "definitionId": 131163, "maxRanks": 1, "type": "passive", "name": "Tactical Advantage", "spellId": 378951, "icon": "ability_hunter_zenarchery", "index": 100}]}, {"id": 102280, "name": "Sic 'Em", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102289, 102282], "prev": [102267, 102260], "entries": [{"id": 126340, "definitionId": 131166, "maxRanks": 1, "type": "passive", "name": "Sic 'Em", "spellId": 459920, "icon": "ability_hunter_sickem", "index": 100}]}, {"id": 102276, "name": "Contagious Reagents", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102282], "prev": [102260], "entries": [{"id": 126336, "definitionId": 131162, "maxRanks": 1, "type": "passive", "name": "Contagious Reagents", "spellId": 459741, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 102269, "name": "Outland Venom", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102282], "prev": [102260, 102270], "entries": [{"id": 126329, "definitionId": 131155, "maxRanks": 1, "type": "passive", "name": "Outland Venom", "spellId": 459939, "icon": "ability_creature_disease_04", "index": 100}]}, {"id": 102281, "name": "Explosives Expert", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102275], "prev": [102277, 102271, 102288], "entries": [{"id": 126341, "definitionId": 131167, "maxRanks": 2, "type": "passive", "name": "Explosives Expert", "spellId": 378937, "icon": "inv_misc_bomb_05", "index": 100}]}, {"id": 102289, "name": "Sweeping Spear", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102252], "prev": [102277, 102280], "entries": [{"id": 126349, "definitionId": 131175, "maxRanks": 2, "type": "passive", "name": "Sweeping Spear", "spellId": 378950, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 102282, "name": "Killer Companion", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102291], "prev": [102276, 102269, 102280], "entries": [{"id": 126342, "definitionId": 131168, "maxRanks": 2, "type": "passive", "name": "Killer Companion", "spellId": 378955, "icon": "ability_hunter_masterscall", "index": 100}]}, {"id": 102275, "name": "Fury of the Eagle", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102261], "prev": [102281], "entries": [{"id": 126335, "definitionId": 131161, "maxRanks": 1, "type": "active", "name": "Fury of the Eagle", "spellId": 203415, "icon": "inv_polearm_2h_artifacteagle_d_01", "index": 100}]}, {"id": 102252, "name": "Coordinated Assault", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102258, 102273], "prev": [102289], "entries": [{"id": 126311, "definitionId": 131137, "maxRanks": 1, "type": "active", "name": "Coordinated Assault", "spellId": 360952, "icon": "inv__coordinatedassault", "index": 100}]}, {"id": 102291, "name": "Spearhead", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102284], "prev": [102282], "entries": [{"id": 126351, "definitionId": 131177, "maxRanks": 1, "type": "active", "name": "Spearhead", "spellId": 360966, "icon": "ability_hunter_spearhead", "index": 100}]}, {"id": 102261, "name": "Ruthless Marauder", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102275], "entries": [{"id": 126321, "definitionId": 131147, "maxRanks": 1, "type": "passive", "name": "Ruthless Marauder", "spellId": 470068, "icon": "ability_rogue_findweakness", "index": 100}]}, {"id": 102258, "name": "Symbiotic Adrenaline / Relentless Primal Ferocity", "type": "choice", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102252], "entries": [{"id": 126318, "definitionId": 131144, "maxRanks": 1, "type": "passive", "name": "Symbiotic Adrenaline", "spellId": 459875, "icon": "ability_rogue_bloodyeye", "index": 100}, {"id": 126317, "definitionId": 131143, "maxRanks": 1, "type": "passive", "name": "Relentless Primal Ferocity", "spellId": 459922, "icon": "ability_xavius_tormentingswipe", "index": 200}]}, {"id": 102273, "name": "Bombardier", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102252], "entries": [{"id": 126333, "definitionId": 131159, "maxRanks": 1, "type": "passive", "name": "Bombardier", "spellId": 389880, "icon": "inv_eng_bombfire", "index": 100}]}, {"id": 102284, "name": "Deadly Duo", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102291], "entries": [{"id": 126344, "definitionId": 131170, "maxRanks": 1, "type": "passive", "name": "Deadly Duo", "spellId": 378962, "icon": "ability_hunter_separationanxiety", "index": 100}]}], "heroNodes": [{"id": 94976, "name": "Sentinel", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 42, "next": [94989, 94973, 94981], "prev": [], "entries": [{"id": 117573, "definitionId": 122585, "maxRanks": 1, "type": "passive", "name": "Sentinel", "spellId": 450369, "icon": "ability_hunter_sentinelowl", "index": 100}], "freeNode": true}, {"id": 94989, "name": "Don't Look Back", "type": "single", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94958], "prev": [94976], "entries": [{"id": 117586, "definitionId": 122598, "maxRanks": 1, "type": "passive", "name": "Don't Look Back", "spellId": 450373, "icon": "ability_racial_forceshield", "index": 100}]}, {"id": 94973, "name": "Extrapolated Shots", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94990], "prev": [94976], "entries": [{"id": 117570, "definitionId": 122582, "maxRanks": 1, "type": "passive", "name": "Extrapolated Shots", "spellId": 450374, "icon": "ability_hunter_huntingparty", "index": 100}]}, {"id": 94981, "name": "Sentinel Precision", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 42, "next": [94971], "prev": [94976], "entries": [{"id": 117578, "definitionId": 122590, "maxRanks": 1, "type": "passive", "name": "Sentinel Precision", "spellId": 450375, "icon": "inv_weapon_shortblade_83", "index": 100}]}, {"id": 94958, "name": "Release and Reload", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94970], "prev": [94989], "entries": [{"id": 117555, "definitionId": 122567, "maxRanks": 1, "type": "passive", "name": "Release and Reload", "spellId": 450376, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94990, "name": "Catch Out / Sideline", "type": "choice", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94965], "prev": [94973], "entries": [{"id": 117587, "definitionId": 122599, "maxRanks": 1, "type": "passive", "name": "Catch Out", "spellId": 451516, "icon": "spell_arcane_arcane01", "index": 100}, {"id": 123869, "definitionId": 128707, "maxRanks": 1, "type": "passive", "name": "Sideline", "spellId": 450378, "icon": "ability_rogue_trip", "index": 200}]}, {"id": 94971, "name": "Invigorating Pulse", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 42, "next": [94980], "prev": [94981], "entries": [{"id": 117568, "definitionId": 122580, "maxRanks": 1, "type": "passive", "name": "Invigorating Pulse", "spellId": 450379, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 94970, "name": "Sentinel Watch / Eyes Closed", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94958], "entries": [{"id": 117567, "definitionId": 122579, "maxRanks": 1, "type": "passive", "name": "Sentinel Watch", "spellId": 451546, "icon": "inv_quiver_1h_sylvanas_d_01", "index": 100}, {"id": 123871, "definitionId": 128709, "maxRanks": 1, "type": "passive", "name": "Eyes Closed", "spellId": 450381, "icon": "inv_trickshot", "index": 200}]}, {"id": 94965, "name": "Symphonic Arsenal", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94990], "entries": [{"id": 117562, "definitionId": 122574, "maxRanks": 1, "type": "passive", "name": "Symphonic Arsenal", "spellId": 450383, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 94980, "name": "Overwatch / Crescent Steel", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 42, "next": [94978], "prev": [94971], "entries": [{"id": 117577, "definitionId": 122589, "maxRanks": 1, "type": "passive", "name": "Overwatch", "spellId": 450384, "icon": "ability_hunter_rapidkilling", "index": 100}, {"id": 123870, "definitionId": 128708, "maxRanks": 1, "type": "passive", "name": "Crescent Steel", "spellId": 451530, "icon": "inv_enchant_crescentoil", "index": 200}]}, {"id": 94978, "name": "Lunar Storm", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 42, "next": [], "prev": [94965, 94970, 94980], "entries": [{"id": 117575, "definitionId": 122587, "maxRanks": 1, "type": "passive", "name": "Lunar Storm", "spellId": 450385, "icon": "inv_ability_sentinelhunter_lunarstorm", "index": 100}]}, {"id": 94991, "name": "Vicious Hunt", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 43, "next": [94985, 94992, 94962], "prev": [], "entries": [{"id": 117588, "definitionId": 122600, "maxRanks": 1, "type": "passive", "name": "Vicious Hunt", "spellId": 445404, "icon": "inv_ability_packleaderhunter_vicioushunt", "index": 100}], "freeNode": true}, {"id": 94985, "name": "Pack Coordination", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94972], "prev": [94991], "entries": [{"id": 117582, "definitionId": 122594, "maxRanks": 1, "type": "passive", "name": "Pack Coordination", "spellId": 445505, "icon": "ability_hunter_separationanxiety", "index": 100}]}, {"id": 94992, "name": "Howl of the Pack", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94984], "prev": [94991], "entries": [{"id": 117589, "definitionId": 122601, "maxRanks": 1, "type": "passive", "name": "Howl of the Pack", "spellId": 445707, "icon": "spell_hunter_lonewolf", "index": 100}]}, {"id": 94962, "name": "Wild Attacks", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 43, "next": [94988], "prev": [94991], "entries": [{"id": 117559, "definitionId": 122571, "maxRanks": 1, "type": "passive", "name": "Wild Attacks", "spellId": 445708, "icon": "inv_misc_bone_09", "index": 100}]}, {"id": 94972, "name": "Den Recovery", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94969], "prev": [94985], "entries": [{"id": 117569, "definitionId": 122581, "maxRanks": 1, "type": "passive", "name": "Den Recovery", "spellId": 445710, "icon": "ability_shaman_freedomwolf", "index": 100}]}, {"id": 94984, "name": "Tireless Hunt / Cornered Prey", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94967], "prev": [94992], "entries": [{"id": 117581, "definitionId": 122593, "maxRanks": 1, "type": "passive", "name": "Tireless Hunt", "spellId": 445701, "icon": "ability_mount_jungletiger", "index": 100}, {"id": 123782, "definitionId": 128620, "maxRanks": 1, "type": "passive", "name": "Cornered Prey", "spellId": 445702, "icon": "ability_hunter_resistanceisfutile", "index": 200}]}, {"id": 94988, "name": "Frenzied Tear", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 43, "next": [94979], "prev": [94962], "entries": [{"id": 117585, "definitionId": 122597, "maxRanks": 1, "type": "passive", "name": "Frenzied Tear", "spellId": 445696, "icon": "spell_shadow_vampiricaura", "index": 100}]}, {"id": 94969, "name": "Scattered Prey / Covering Fire", "type": "choice", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94972], "entries": [{"id": 117566, "definitionId": 122578, "maxRanks": 1, "type": "passive", "name": "Scattered Prey", "spellId": 445768, "icon": "inv_misc_bone_09", "index": 100}, {"id": 123783, "definitionId": 128621, "maxRanks": 1, "type": "passive", "name": "Covering Fire", "spellId": 445715, "icon": "ability_hunter_runningshot", "index": 200}]}, {"id": 94967, "name": "Cull the Herd", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94984], "entries": [{"id": 117564, "definitionId": 122576, "maxRanks": 1, "type": "passive", "name": "Cull the Herd", "spellId": 445717, "icon": "ability_druid_primaltenacity", "index": 100}]}, {"id": 94979, "name": "Furious Assault / Beast of Opportunity", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 43, "next": [94966], "prev": [94988], "entries": [{"id": 117576, "definitionId": 122588, "maxRanks": 1, "type": "passive", "name": "Furious Assault", "spellId": 445699, "icon": "spell_druid_feralchargecat", "index": 100}, {"id": 123781, "definitionId": 128619, "maxRanks": 1, "type": "passive", "name": "Beast of Opportunity", "spellId": 445700, "icon": "ability_hunter_catlikereflexes", "index": 200}]}, {"id": 94966, "name": "Pack Assault", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 43, "next": [], "prev": [94967, 94969, 94979], "entries": [{"id": 117563, "definitionId": 122575, "maxRanks": 1, "type": "passive", "name": "Pack Assault", "spellId": 445721, "icon": "ability_hunter_bestialdiscipline", "index": 100}]}], "subTreeNodes": [{"id": 99833, "name": "Pack Leader / Sentinel", "type": "subtree", "posX": 9000, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123350, "type": "subtree", "name": "Pack Leader", "traitSubTreeId": 43, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-packleader", "nodes": [94991, 94985, 94992, 94962, 94972, 94984, 94988, 94969, 94967, 94979, 94966]}, {"id": 123349, "type": "subtree", "name": "Sentinel", "traitSubTreeId": 42, "traitTreeId": 774, "atlasMemberName": "talents-heroclass-hunter-sentinel", "nodes": [94976, 94989, 94973, 94981, 94958, 94990, 94971, 94970, 94965, 94980, 94978]}]}], "fullNodeOrder": [79837, 94957, 94958, 94959, 94960, 94961, 94962, 94965, 94966, 94967, 94968, 94969, 94970, 94971, 94972, 94973, 94974, 94976, 94978, 94979, 94980, 94981, 94982, 94983, 94984, 94985, 94986, 94987, 94988, 94989, 94990, 94991, 94992, 94993, 99831, 99832, 99833, 102252, 102255, 102256, 102257, 102258, 102259, 102260, 102261, 102262, 102263, 102264, 102265, 102266, 102267, 102268, 102269, 102270, 102271, 102272, 102273, 102274, 102275, 102276, 102277, 102278, 102279, 102280, 102281, 102282, 102283, 102284, 102285, 102286, 102287, 102288, 102289, 102290, 102291, 102292, 102293, 102294, 102295, 102296, 102297, 102298, 102299, 102300, 102301, 102302, 102303, 102304, 102305, 102307, 102308, 102309, 102310, 102311, 102312, 102313, 102314, 102315, 102316, 102317, 102318, 102319, 102320, 102321, 102322, 102323, 102324, 102325, 102326, 102327, 102328, 102329, 102330, 102331, 102332, 102333, 102334, 102335, 102336, 102337, 102338, 102339, 102340, 102341, 102342, 102343, 102344, 102345, 102346, 102347, 102348, 102349, 102350, 102351, 102352, 102353, 102354, 102355, 102356, 102357, 102358, 102359, 102360, 102361, 102362, 102363, 102364, 102365, 102366, 102367, 102368, 102369, 102370, 102371, 102372, 102373, 102374, 102375, 102376, 102377, 102378, 102379, 102380, 102381, 102382, 102383, 102384, 102385, 102386, 102387, 102388, 102389, 102390, 102391, 102392, 102393, 102394, 102395, 102396, 102397, 102399, 102400, 102401, 102402, 102403, 102404, 102405, 102406, 102407, 102408, 102409, 102410, 102411, 102412, 102413, 102414, 102415, 102416, 102417, 102418, 102419, 102420, 102421, 102422, 102423, 102424, 102425, 102426, 102739]}, {"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Assassination", "specId": 259, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}], "freeNode": true}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}]}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Thrill Seeking", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "passive", "name": "Thrill Seeking", "spellId": 394931, "icon": "inv_ragnaros_heart_shadowflame", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Supercharger", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 2, "type": "passive", "name": "Supercharger", "spellId": 470347, "icon": "inv_engineering_90_electrifiedether", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 469779, "visibleSpellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Echoing Reprimand / Forced Induction", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Echoing Reprimand", "spellId": 470669, "icon": "inv_ability_rogue_echoingreprimand", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Forced Induction", "spellId": 470668, "icon": "inv_misc_enggizmos_06", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90783, "name": "Deadly Poison", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90628, 90635, 94536], "prev": [], "entries": [{"id": 112676, "definitionId": 117681, "maxRanks": 1, "type": "active", "name": "Deadly Poison", "spellId": 2823, "icon": "ability_rogue_dualweild", "index": 100}]}, {"id": 90628, "name": "Improved Shiv", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [94557], "prev": [90783], "entries": [{"id": 112513, "definitionId": 117518, "maxRanks": 1, "type": "passive", "name": "Improved Shiv", "spellId": 319032, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90635, "name": "Venomous Wounds", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90634], "prev": [90783], "entries": [{"id": 112520, "definitionId": 117525, "maxRanks": 1, "type": "passive", "name": "Venomous Wounds", "spellId": 79134, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94536, "name": "Path of Blood", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90625], "prev": [90783], "entries": [{"id": 117106, "definitionId": 122118, "maxRanks": 1, "type": "passive", "name": "Path of Blood", "spellId": 423054, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 94557, "name": "Rapid Injection", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90630, 90757], "prev": [90628], "entries": [{"id": 117139, "definitionId": 122151, "maxRanks": 1, "type": "passive", "name": "Rapid Injection", "spellId": 455072, "icon": "inv_ammo_arrow_04", "index": 100}]}, {"id": 90634, "name": "Improved Poisons", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90757, 94556], "prev": [90635], "entries": [{"id": 112519, "definitionId": 117524, "maxRanks": 1, "type": "passive", "name": "Improved Poisons", "spellId": 381624, "icon": "ability_poisons", "index": 100}]}, {"id": 90625, "name": "Bloody Mess", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [94556, 90780], "prev": [94536], "entries": [{"id": 112510, "definitionId": 117515, "maxRanks": 1, "type": "passive", "name": "Bloody Mess", "spellId": 381626, "icon": "ability_rogue_rupture", "index": 100}]}, {"id": 90630, "name": "Thrown Precision", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90633, 90632], "prev": [94557], "entries": [{"id": 112515, "definitionId": 117520, "maxRanks": 1, "type": "passive", "name": "Thrown Precision", "spellId": 381629, "icon": "ability_hunter_cobrashot", "index": 100}]}, {"id": 90757, "name": "Seal Fate", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90633, 90769], "prev": [90634, 94557], "entries": [{"id": 112649, "definitionId": 117654, "maxRanks": 1, "type": "passive", "name": "Seal Fate", "spellId": 14190, "icon": "ability_rogue_stayofexecution", "index": 100}]}, {"id": 94556, "name": "Caustic Spatter / Internal Bleeding", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90769, 90779], "prev": [90634, 90625], "entries": [{"id": 117137, "definitionId": 122149, "maxRanks": 1, "type": "passive", "name": "Caustic Spatter", "spellId": 421975, "icon": "ability_creature_poison_02", "index": 100}, {"id": 117136, "definitionId": 122148, "maxRanks": 1, "type": "passive", "name": "Internal Bleeding", "spellId": 381627, "icon": "ability_rogue_bloodsplatter", "index": 200}]}, {"id": 90780, "name": "Improved Garrote", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90779, 90623], "prev": [90625], "entries": [{"id": 112673, "definitionId": 117678, "maxRanks": 1, "type": "passive", "name": "Improved Garrote", "spellId": 381632, "icon": "ability_rogue_garrote", "index": 100}]}, {"id": 90632, "name": "Crimson Tempest", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94554], "prev": [90630], "entries": [{"id": 112517, "definitionId": 117522, "maxRanks": 1, "type": "active", "name": "Crimson Tempest", "spellId": 121411, "icon": "inv_knife_1h_cataclysm_c_05", "index": 100}]}, {"id": 90633, "name": "Lightweight Shiv", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94554, 90772], "prev": [90757, 90630], "entries": [{"id": 112518, "definitionId": 117523, "maxRanks": 1, "type": "passive", "name": "Lightweight Shiv", "spellId": 394983, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90769, "name": "Deathmark", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90772, 90626, 90624], "prev": [90757, 94556], "entries": [{"id": 112662, "definitionId": 117667, "maxRanks": 1, "type": "active", "name": "Deathmark", "spellId": 360194, "icon": "ability_rogue_deathmark", "index": 100}]}, {"id": 90779, "name": "Sanguine Blades", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90624, 94555], "prev": [94556, 90780], "entries": [{"id": 112672, "definitionId": 117677, "maxRanks": 1, "type": "passive", "name": "Sanguine Blades", "spellId": 200806, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 90623, "name": "Master Assassin", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94555], "prev": [90780], "entries": [{"id": 112508, "definitionId": 117513, "maxRanks": 1, "type": "passive", "name": "Master Assassin", "spellId": 255989, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 94554, "name": "Flying Daggers / Sanguine Stratagem", "type": "choice", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90771], "prev": [90633, 90632], "entries": [{"id": 117133, "definitionId": 122145, "maxRanks": 1, "type": "passive", "name": "Flying Daggers", "spellId": 381631, "icon": "ability_rogue_fanofknives", "index": 100}, {"id": 117132, "definitionId": 122144, "maxRanks": 1, "type": "passive", "name": "Sanguine Stratagem", "spellId": 457512, "icon": "archaeology_5_0_changkiboard", "index": 200}]}, {"id": 90772, "name": "Vicious Venoms", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90771, 90770], "prev": [90633, 90769], "entries": [{"id": 112665, "definitionId": 117670, "maxRanks": 2, "type": "passive", "name": "Vicious Venoms", "spellId": 381634, "icon": "ability_rogue_deadlybrew", "index": 100}]}, {"id": 90626, "name": "Fatal Concoction", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90621, 90768], "prev": [90769], "entries": [{"id": 112511, "definitionId": 117516, "maxRanks": 1, "type": "passive", "name": "Fatal Concoction", "spellId": 392384, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90624, "name": "Lethal Dose", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90777, 90776], "prev": [90769, 90779], "entries": [{"id": 112509, "definitionId": 117514, "maxRanks": 2, "type": "passive", "name": "Lethal Dose", "spellId": 381640, "icon": "ability_rogue_deviouspoisons", "index": 100}]}, {"id": 94555, "name": "Intent to Kill / Iron Wire", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90777], "prev": [90779, 90623], "entries": [{"id": 117135, "definitionId": 122147, "maxRanks": 1, "type": "passive", "name": "Intent to Kill", "spellId": 381630, "icon": "ability_rogue_bloodyeye", "index": 100}, {"id": 117134, "definitionId": 122146, "maxRanks": 1, "type": "passive", "name": "Iron Wire", "spellId": 196861, "icon": "inv_jewelcrafting_delicatecopperwire", "index": 200}]}, {"id": 90771, "name": "Systemic Failure", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90786, 90770], "prev": [94554, 90772], "entries": [{"id": 112664, "definitionId": 117669, "maxRanks": 1, "type": "passive", "name": "Systemic Failure", "spellId": 381652, "icon": "ability_skeer_bloodletting", "index": 100}]}, {"id": 90621, "name": "Amplifying Poison", "type": "single", "posX": 12010, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90766], "prev": [90626], "entries": [{"id": 112505, "definitionId": 117510, "maxRanks": 1, "type": "active", "name": "Amplifying Poison", "spellId": 381664, "icon": "inv_misc_herb_fellotus", "index": 100}]}, {"id": 90768, "name": "Twist the Knife", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90766], "prev": [90626], "entries": [{"id": 112661, "definitionId": 117666, "maxRanks": 1, "type": "passive", "name": "Twist the Knife", "spellId": 381669, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 90777, "name": "Doomblade", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90776, 90622], "prev": [94555, 90624], "entries": [{"id": 112670, "definitionId": 117675, "maxRanks": 1, "type": "passive", "name": "Doomblade", "spellId": 381673, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 90786, "name": "Blindside", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90785], "prev": [90771], "entries": [{"id": 112679, "definitionId": 117684, "maxRanks": 1, "type": "passive", "name": "Blindside", "spellId": 328085, "icon": "ability_rogue_focusedattacks", "index": 100}]}, {"id": 90770, "name": "Tiny Toxic Blade", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90785, 90767], "prev": [90771, 90772], "entries": [{"id": 112663, "definitionId": 117668, "maxRanks": 1, "type": "passive", "name": "Tiny Toxic Blade", "spellId": 381800, "icon": "ability_rogue_poisonedknife", "index": 100}]}, {"id": 90766, "name": "Dashing Scoundrel", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90767], "prev": [90768, 90621], "entries": [{"id": 112659, "definitionId": 117664, "maxRanks": 1, "type": "passive", "name": "Dashing Scoundrel", "spellId": 381797, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 90776, "name": "Shrouded Suffocation", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90767, 90775], "prev": [90777, 90624], "entries": [{"id": 112669, "definitionId": 117674, "maxRanks": 1, "type": "passive", "name": "Shrouded Suffocation", "spellId": 385478, "icon": "ability_rogue_garrote", "index": 100}]}, {"id": 90622, "name": "Serrated Bone Spikes", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90775], "prev": [90777], "entries": [{"id": 112507, "definitionId": 117512, "maxRanks": 1, "type": "passive", "name": "Serrated Bone Spikes", "spellId": 455352, "icon": "ability_maldraxxus_rogue", "index": 100}]}, {"id": 90785, "name": "Zoldyck Recipe", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90784, 94552], "prev": [90770, 90786], "entries": [{"id": 112678, "definitionId": 117683, "maxRanks": 2, "type": "passive", "name": "Zoldyck Recipe", "spellId": 381798, "icon": "archaeology_5_0_thunderkinginsignia", "index": 100}]}, {"id": 90767, "name": "Poison Bomb", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94552, 94553, 90774], "prev": [90776, 90770, 90766], "entries": [{"id": 112660, "definitionId": 117665, "maxRanks": 2, "type": "passive", "name": "Poison Bomb", "spellId": 255544, "icon": "rogue_paralytic_poison", "index": 100}]}, {"id": 90775, "name": "Scent of Blood", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90774, 94551], "prev": [90776, 90622], "entries": [{"id": 112668, "definitionId": 117673, "maxRanks": 2, "type": "passive", "name": "Scent of Blood", "spellId": 381799, "icon": "ability_rogue_rupture", "index": 100}]}, {"id": 90784, "name": "Arterial Precision", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90785], "entries": [{"id": 112677, "definitionId": 117682, "maxRanks": 1, "type": "passive", "name": "Arterial Precision", "spellId": 400783, "icon": "ability_rogue_surpriseattack", "index": 100}]}, {"id": 94552, "name": "Kingsbane", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767, 90785], "entries": [{"id": 117130, "definitionId": 122142, "maxRanks": 1, "type": "active", "name": "Kingsbane", "spellId": 385627, "icon": "inv_knife_1h_artifactgarona_d_01", "index": 100}]}, {"id": 94553, "name": "Dragon-Tempered Blades", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767], "entries": [{"id": 117131, "definitionId": 122143, "maxRanks": 1, "type": "passive", "name": "Dragon-Tempered Blades", "spellId": 381801, "icon": "spell_fire_flameblades", "index": 100}]}, {"id": 90774, "name": "Indiscriminate Carnage", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767, 90775], "entries": [{"id": 112667, "definitionId": 117672, "maxRanks": 1, "type": "passive", "name": "Indiscriminate Carnage", "spellId": 381802, "icon": "ability_rogue_indiscriminatecarnage", "index": 100}]}, {"id": 94551, "name": "Sudden Demise", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90775], "entries": [{"id": 117129, "definitionId": 122141, "maxRanks": 1, "type": "passive", "name": "Sudden Demise", "spellId": 423136, "icon": "ability_deathknight_hemorrhagicfever", "index": 100}]}], "heroNodes": [{"id": 95125, "name": "Hand of Fate", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 52, "next": [95138, 95122, 95130], "prev": [], "entries": [{"id": 117722, "definitionId": 122734, "maxRanks": 1, "type": "passive", "name": "Hand of Fate", "spellId": 452536, "icon": "inv_ability_fateboundrogue_handoffateheads", "index": 100}], "freeNode": true}, {"id": 95136, "name": "Deathstalker's Mark", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 53, "next": [95110, 95132, 95117], "prev": [], "entries": [{"id": 117733, "definitionId": 122745, "maxRanks": 1, "type": "passive", "name": "Deathstalker's Mark", "spellId": 457052, "icon": "inv_ability_deathstalkerrogue_deathstalkersmark", "index": 100}], "freeNode": true}, {"id": 95138, "name": "Chosen's Revelry / Tempted Fate", "type": "choice", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95107], "prev": [95125], "entries": [{"id": 117735, "definitionId": 122747, "maxRanks": 1, "type": "passive", "name": "Chosen's Revelry", "spellId": 454300, "icon": "ability_priest_heavanlyvoice", "index": 100}, {"id": 125132, "definitionId": 129964, "maxRanks": 1, "type": "passive", "name": "Tempted Fate", "spellId": 454286, "icon": "ability_rogue_sabreslash", "index": 200}]}, {"id": 95122, "name": "Mean Streak", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95139], "prev": [95125], "entries": [{"id": 117719, "definitionId": 122731, "maxRanks": 1, "type": "passive", "name": "Mean Streak", "spellId": 453428, "icon": "inv_sigil_thorim", "index": 100}]}, {"id": 95130, "name": "Inexorable March / Death's Arrival", "type": "choice", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95120], "prev": [95125], "entries": [{"id": 117727, "definitionId": 122739, "maxRanks": 1, "type": "passive", "name": "Inexorable March", "spellId": 454432, "icon": "ability_monk_ridethewind", "index": 100}, {"id": 125140, "definitionId": 129972, "maxRanks": 1, "type": "passive", "name": "Death's Arrival", "spellId": 454433, "icon": "achievement_guildperk_havegroup_willtravel", "index": 200}]}, {"id": 95110, "name": "Clear the Witnesses", "type": "single", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95135], "prev": [95136], "entries": [{"id": 117707, "definitionId": 122719, "maxRanks": 1, "type": "passive", "name": "Clear the Witnesses", "spellId": 457053, "icon": "ability_rogue_fanofknives", "index": 100}]}, {"id": 95132, "name": "Hunt Them Down", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95108], "prev": [95136], "entries": [{"id": 117729, "definitionId": 122741, "maxRanks": 1, "type": "passive", "name": "Hunt Them Down", "spellId": 457054, "icon": "ability_rogue_creepingvenom", "index": 100}]}, {"id": 95117, "name": "Singular Focus", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95109], "prev": [95136], "entries": [{"id": 117714, "definitionId": 122726, "maxRanks": 1, "type": "passive", "name": "Singular Focus", "spellId": 457055, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 95107, "name": "Deal Fate", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95119], "prev": [95138], "entries": [{"id": 117704, "definitionId": 122716, "maxRanks": 1, "type": "passive", "name": "Deal Fate", "spellId": 454419, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 95139, "name": "Edge Case", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "requiresNode": 90769, "next": [95114], "prev": [95122], "entries": [{"id": 117736, "definitionId": 122748, "maxRanks": 1, "type": "passive", "name": "Edge Case", "spellId": 453457, "icon": "item_icecrownnecklacea", "index": 100}]}, {"id": 95120, "name": "Fate Intertwined", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95129], "prev": [95130], "entries": [{"id": 117717, "definitionId": 122729, "maxRanks": 1, "type": "passive", "name": "Fate Intertwined", "spellId": 454429, "icon": "inv_cosmicvoid_beam", "index": 100}]}, {"id": 95135, "name": "Fatal Intent", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95106], "prev": [95110], "entries": [{"id": 117732, "definitionId": 122744, "maxRanks": 1, "type": "passive", "name": "Fatal Intent", "spellId": 461980, "icon": "ability_warrior_deepcuts", "index": 100}]}, {"id": 95108, "name": "Corrupt the Blood", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95131], "prev": [95132], "entries": [{"id": 117705, "definitionId": 122717, "maxRanks": 1, "type": "passive", "name": "Corrupt the Blood", "spellId": 457066, "icon": "ability_ironmaidens_bloodritual", "index": 100}]}, {"id": 95109, "name": "Lingering Darkness / Symbolic Victory", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95123], "prev": [95117], "entries": [{"id": 117706, "definitionId": 122718, "maxRanks": 1, "type": "passive", "name": "Lingering Darkness", "spellId": 457056, "icon": "ability_rogue_envelopingshadows", "index": 100}, {"id": 126030, "definitionId": 130862, "maxRanks": 1, "type": "passive", "name": "Symbolic Victory", "spellId": 457062, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 95119, "name": "Delivered Doom", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95107], "entries": [{"id": 117716, "definitionId": 122728, "maxRanks": 1, "type": "passive", "name": "Delivered Doom", "spellId": 454426, "icon": "ability_bossgorefiend_touchofdoom", "index": 100}]}, {"id": 95114, "name": "Inevitabile End / Destiny Defined", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95139], "entries": [{"id": 117711, "definitionId": 122723, "maxRanks": 1, "type": "passive", "name": "Inevitabile End", "spellId": 454434, "icon": "spell_ice_lament", "index": 100}, {"id": 125139, "definitionId": 129971, "maxRanks": 1, "type": "passive", "name": "Destiny Defined", "spellId": 454435, "icon": "ability_boss_fatescribe_rune6", "index": 200}]}, {"id": 95129, "name": "Double Jeopardy", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95120], "entries": [{"id": 117726, "definitionId": 122738, "maxRanks": 1, "type": "passive", "name": "Double Jeopardy", "spellId": 454430, "icon": "spell_nature_mirrorimage", "index": 100}]}, {"id": 95106, "name": "Ethereal Cloak / Bait and Switch", "type": "choice", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95135], "entries": [{"id": 117703, "definitionId": 122715, "maxRanks": 1, "type": "passive", "name": "Ethereal Cloak", "spellId": 457022, "icon": "spell_arcane_prismaticcloak", "index": 100}, {"id": 126029, "definitionId": 130861, "maxRanks": 1, "type": "passive", "name": "Bait and Switch", "spellId": 457034, "icon": "ability_druid_earthandsky", "index": 200}]}, {"id": 95131, "name": "Momentum of Despair / Follow the Blood", "type": "choice", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95108], "entries": [{"id": 117728, "definitionId": 122740, "maxRanks": 1, "type": "passive", "name": "Momentum of Despair", "spellId": 457067, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 126028, "definitionId": 130860, "maxRanks": 1, "type": "passive", "name": "Follow the Blood", "spellId": 457068, "icon": "sha_ability_rogue_bloodyeye_nightmare", "index": 200}]}, {"id": 95123, "name": "Shadewalker / Shroud of Night", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95109], "entries": [{"id": 117720, "definitionId": 122732, "maxRanks": 1, "type": "passive", "name": "Shadewalker", "spellId": 457057, "icon": "rogue_shadow_reflection", "index": 100}, {"id": 126027, "definitionId": 130859, "maxRanks": 1, "type": "passive", "name": "Shroud of Night", "spellId": 457063, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 95127, "name": "Fateful Ending", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 52, "next": [], "prev": [95114, 95119, 95129], "entries": [{"id": 117724, "definitionId": 122736, "maxRanks": 1, "type": "passive", "name": "Fateful Ending", "spellId": 454428, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 95142, "name": "Darkest Night", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 53, "next": [], "prev": [95131, 95106, 95123], "entries": [{"id": 117739, "definitionId": 122751, "maxRanks": 1, "type": "passive", "name": "Darkest Night", "spellId": 457058, "icon": "spell_shadow_twilight", "index": 100}]}], "subTreeNodes": [{"id": 99844, "name": "Deathstalker / Fatebound", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123375, "type": "subtree", "name": "Deathstalker", "traitSubTreeId": 53, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-deathstalker", "nodes": [95136, 95110, 95132, 95117, 95135, 95108, 95109, 95106, 95131, 95123, 95142]}, {"id": 123371, "type": "subtree", "name": "Fatebound", "traitSubTreeId": 52, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-fatebound", "nodes": [95125, 95138, 95122, 95130, 95107, 95139, 95120, 95119, 95114, 95129, 95127]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]}, {"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Outlaw", "specId": 260, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}], "freeNode": true}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Thrill Seeking", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "passive", "name": "Thrill Seeking", "spellId": 394931, "icon": "inv_ragnaros_heart_shadowflame", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Supercharger", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 2, "type": "passive", "name": "Supercharger", "spellId": 470347, "icon": "inv_engineering_90_electrifiedether", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 469779, "visibleSpellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Echoing Reprimand / Forced Induction", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Echoing Reprimand", "spellId": 470669, "icon": "inv_ability_rogue_echoingreprimand", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Forced Induction", "spellId": 470668, "icon": "inv_misc_enggizmos_06", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90683, "name": "Opportunity", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90659, 90681, 90673], "prev": [], "entries": [{"id": 112571, "definitionId": 117576, "maxRanks": 1, "type": "passive", "name": "Opportunity", "spellId": 279876, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 90659, "name": "Adrenaline Rush", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90645, 90646, 90648], "prev": [90683], "entries": [{"id": 112545, "definitionId": 117550, "maxRanks": 1, "type": "active", "name": "Adrenaline Rush", "spellId": 13750, "icon": "spell_shadow_shadowworddominate", "index": 100}]}, {"id": 90681, "name": "Retractable Hook", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90643, 90755], "prev": [90683], "entries": [{"id": 112569, "definitionId": 117574, "maxRanks": 1, "type": "passive", "name": "Retractable Hook", "spellId": 256188, "icon": "ability_rogue_grapplinghook", "index": 100}]}, {"id": 90645, "name": "Dirty Tricks", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [90755], "prev": [90659], "entries": [{"id": 112531, "definitionId": 117536, "maxRanks": 1, "type": "passive", "name": "Dirty Tricks", "spellId": 108216, "icon": "ability_rogue_dirtydeeds", "index": 100}]}, {"id": 90646, "name": "Combat Potency", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90755, 90661], "prev": [90659], "entries": [{"id": 112532, "definitionId": 117537, "maxRanks": 1, "type": "passive", "name": "Combat Potency", "spellId": 61329, "icon": "inv_weapon_shortblade_38", "index": 100}]}, {"id": 90648, "name": "Combat Stamina", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90661], "prev": [90659], "entries": [{"id": 112534, "definitionId": 117539, "maxRanks": 1, "type": "passive", "name": "Combat Stamina", "spellId": 381877, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 90673, "name": "Hit and Run", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90661, 90647], "prev": [90683], "entries": [{"id": 112560, "definitionId": 117565, "maxRanks": 1, "type": "passive", "name": "Hit and Run", "spellId": 196922, "icon": "ability_rogue_fleetfooted", "index": 100}]}, {"id": 90643, "name": "Blinding Powder", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90679, 90642], "prev": [90681], "entries": [{"id": 112529, "definitionId": 117534, "maxRanks": 1, "type": "passive", "name": "Blinding Powder", "spellId": 256165, "icon": "inv_misc_ammo_gunpowder_06", "index": 100}]}, {"id": 90755, "name": "Float Like a Butterfly / Sting Like a Bee", "type": "choice", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90679, 94566, 90662], "prev": [90646, 90681, 90645], "entries": [{"id": 112647, "definitionId": 117652, "maxRanks": 1, "type": "passive", "name": "Float Like a Butterfly", "spellId": 354897, "icon": "inv_pet_butterfly_orange", "index": 100}, {"id": 117173, "definitionId": 122185, "maxRanks": 1, "type": "passive", "name": "Sting Like a Bee", "spellId": 131511, "icon": "inv_giantwasp_orange", "index": 200}]}, {"id": 90661, "name": "Riposte", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90662, 90660, 90663], "prev": [90673, 90648, 90646], "entries": [{"id": 112547, "definitionId": 117552, "maxRanks": 1, "type": "passive", "name": "Riposte", "spellId": 344363, "icon": "ability_warrior_challange", "index": 100}]}, {"id": 90647, "name": "Precision Shot", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90663, 90672], "prev": [90673], "entries": [{"id": 112533, "definitionId": 117538, "maxRanks": 1, "type": "passive", "name": "Precision Shot", "spellId": 428377, "icon": "inv_legendary_gun", "index": 100}]}, {"id": 90642, "name": "Heavy Hitter", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90680], "prev": [90643], "entries": [{"id": 112528, "definitionId": 117533, "maxRanks": 1, "type": "passive", "name": "Heavy Hitter", "spellId": 381885, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 90679, "name": "Devious Stratagem", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90680, 90649, 90656], "prev": [90755, 90643], "entries": [{"id": 112567, "definitionId": 117572, "maxRanks": 1, "type": "passive", "name": "Devious Stratagem", "spellId": 394321, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 94566, "name": "Killing Spree", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90656], "prev": [90755], "entries": [{"id": 117149, "definitionId": 122161, "maxRanks": 1, "type": "active", "name": "Killing Spree", "spellId": 51690, "icon": "ability_rogue_murderspree", "index": 100}]}, {"id": 90662, "name": "Fatal Flourish", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90656, 90651], "prev": [90755, 90661], "entries": [{"id": 112548, "definitionId": 117553, "maxRanks": 1, "type": "passive", "name": "Fatal Flourish", "spellId": 35551, "icon": "ability_rogue_unfairadvantage", "index": 100}]}, {"id": 90660, "name": "Ambidexterity", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90651], "prev": [90661], "entries": [{"id": 112546, "definitionId": 117551, "maxRanks": 1, "type": "passive", "name": "Ambidexterity", "spellId": 381822, "icon": "inv_glove_cloth_oribosdungeon_c_01", "index": 100}]}, {"id": 90663, "name": "Quick Draw", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90651, 90753, 90671], "prev": [90661, 90647], "entries": [{"id": 112549, "definitionId": 117554, "maxRanks": 1, "type": "passive", "name": "Quick Draw", "spellId": 196938, "icon": "inv_weapon_rifle_40", "index": 100}]}, {"id": 90672, "name": "Deft Maneuvers", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90671], "prev": [90647], "entries": [{"id": 112559, "definitionId": 117564, "maxRanks": 1, "type": "passive", "name": "Deft Maneuvers", "spellId": 381878, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90680, "name": "Ruthlessness", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678, 90641], "prev": [90679, 90642], "entries": [{"id": 112568, "definitionId": 117573, "maxRanks": 1, "type": "passive", "name": "Ruthlessness", "spellId": 14161, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 90649, "name": "Swift Slasher", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678], "prev": [90679], "entries": [{"id": 112535, "definitionId": 117540, "maxRanks": 1, "type": "passive", "name": "Swift Slasher", "spellId": 381988, "icon": "ability_rogue_slicedice", "index": 100}]}, {"id": 90656, "name": "Loaded Dice", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678, 90654], "prev": [90679, 90662, 94566], "entries": [{"id": 112542, "definitionId": 117547, "maxRanks": 1, "type": "passive", "name": "Loaded Dice", "spellId": 256170, "icon": "ability_rogue_rollthebones", "index": 100}]}, {"id": 90651, "name": "Sleight of Hand", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90654, 90668], "prev": [90663, 90660, 90662], "entries": [{"id": 112537, "definitionId": 117542, "maxRanks": 1, "type": "passive", "name": "Sleight of Hand", "spellId": 381839, "icon": "inv_misc_dice_02", "index": 100}]}, {"id": 90753, "name": "Thief's Versatility", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90668], "prev": [90663], "entries": [{"id": 112645, "definitionId": 117650, "maxRanks": 1, "type": "passive", "name": "Thief's Versatility", "spellId": 381619, "icon": "ability_rogue_versatility", "index": 100}]}, {"id": 90671, "name": "Improved Between the Eyes", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90668, 90669], "prev": [90672, 90663], "entries": [{"id": 112558, "definitionId": 117563, "maxRanks": 1, "type": "passive", "name": "Improved Between the Eyes", "spellId": 235484, "icon": "inv_weapon_rifle_01", "index": 100}]}, {"id": 90641, "name": "Audacity", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90677], "prev": [90680], "entries": [{"id": 112527, "definitionId": 117532, "maxRanks": 1, "type": "passive", "name": "Audacity", "spellId": 381845, "icon": "ability_rogue_ambush", "index": 100}]}, {"id": 90678, "name": "Triple Threat", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90677, 90664], "prev": [90656, 90680, 90649], "entries": [{"id": 112566, "definitionId": 117571, "maxRanks": 1, "type": "passive", "name": "Triple Threat", "spellId": 381894, "icon": "ability_dualwield", "index": 100}]}, {"id": 90654, "name": "Improved Adrenaline Rush", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90664, 90655, 90670], "prev": [90651, 90656], "entries": [{"id": 112540, "definitionId": 117545, "maxRanks": 1, "type": "passive", "name": "Improved Adrenaline Rush", "spellId": 395422, "icon": "spell_shadow_shadowworddominate", "index": 100}]}, {"id": 90668, "name": "Improved Main Gauche", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90670, 90667], "prev": [90651, 90671, 90753], "entries": [{"id": 112555, "definitionId": 117560, "maxRanks": 1, "type": "passive", "name": "Improved Main Gauche", "spellId": 382746, "icon": "inv_weapon_shortblade_15", "index": 100}]}, {"id": 90669, "name": "Dancing Steel", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90667], "prev": [90671], "entries": [{"id": 112556, "definitionId": 117561, "maxRanks": 1, "type": "passive", "name": "Dancing Steel", "spellId": 272026, "icon": "ability_warrior_punishingblow", "index": 100}]}, {"id": 90677, "name": "Underhanded Upper Hand", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90676], "prev": [90641, 90678], "entries": [{"id": 112565, "definitionId": 117570, "maxRanks": 1, "type": "passive", "name": "Underhanded Upper Hand", "spellId": 424044, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 90664, "name": "Blade Rush", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90676], "prev": [90678, 90654], "entries": [{"id": 112551, "definitionId": 117556, "maxRanks": 1, "type": "active", "name": "Blade Rush", "spellId": 271877, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 90655, "name": "Count the Odds", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90653], "prev": [90654], "entries": [{"id": 112541, "definitionId": 117546, "maxRanks": 1, "type": "passive", "name": "Count the Odds", "spellId": 381982, "icon": "inv_misc_dice_01", "index": 100}]}, {"id": 90670, "name": "Ace Up Your Sleeve", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90666], "prev": [90654, 90668], "entries": [{"id": 112557, "definitionId": 117562, "maxRanks": 1, "type": "passive", "name": "Ace Up Your Sleeve", "spellId": 381828, "icon": "inv_inscription_darkmooncard_putrescence", "index": 100}]}, {"id": 90667, "name": "Precise Cuts", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90666], "prev": [90669, 90668], "entries": [{"id": 112554, "definitionId": 117559, "maxRanks": 1, "type": "passive", "name": "Precise Cuts", "spellId": 381985, "icon": "ability_warrior_punishingblow", "index": 100}]}, {"id": 90676, "name": "Take 'em by Surprise", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90675, 94565], "prev": [90677, 90664], "entries": [{"id": 112563, "definitionId": 117568, "maxRanks": 2, "type": "passive", "name": "Take 'em by Surprise", "spellId": 382742, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 90653, "name": "Summarily Dispatched", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94565, 90652, 90644], "prev": [90655], "entries": [{"id": 112539, "definitionId": 117544, "maxRanks": 2, "type": "passive", "name": "Summarily Dispatched", "spellId": 381990, "icon": "ability_rogue_waylay", "index": 100}]}, {"id": 90666, "name": "Fan the Hammer", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90644, 90665], "prev": [90667, 90670], "entries": [{"id": 112553, "definitionId": 117558, "maxRanks": 2, "type": "passive", "name": "Fan the Hammer", "spellId": 381846, "icon": "ability_rogue_pistolshot", "index": 100}]}, {"id": 90675, "name": "Hidden Opportunity", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90676], "entries": [{"id": 112562, "definitionId": 117567, "maxRanks": 1, "type": "passive", "name": "Hidden Opportunity", "spellId": 383281, "icon": "ability_rogue_ambush", "index": 100}]}, {"id": 94565, "name": "Crackshot", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90676, 90653], "entries": [{"id": 117148, "definitionId": 122160, "maxRanks": 1, "type": "passive", "name": "Crackshot", "spellId": 423703, "icon": "ability_hisek_aim", "index": 100}]}, {"id": 90652, "name": "Keep It Rolling", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90653], "entries": [{"id": 112538, "definitionId": 117543, "maxRanks": 1, "type": "active", "name": "Keep It Rolling", "spellId": 381989, "icon": "ability_rogue_keepitrolling", "index": 100}]}, {"id": 90644, "name": "Ghostly Strike / Ghostly Strike", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90653, 90666], "entries": [{"id": 112530, "definitionId": 117535, "maxRanks": 1, "type": "active", "name": "Ghostly Strike", "spellId": 196937, "icon": "ability_creature_cursed_02", "index": 100}, {"id": 117162, "definitionId": 122174, "maxRanks": 1, "type": "active", "name": "Ghostly Strike", "spellId": 196937, "icon": "ability_creature_cursed_02", "index": 200}]}, {"id": 90665, "name": "Greenskin's Wickers", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90666], "entries": [{"id": 112552, "definitionId": 117557, "maxRanks": 1, "type": "passive", "name": "Greenskin's Wickers", "spellId": 386823, "icon": "ability_creature_cursed_04", "index": 100}]}], "heroNodes": [{"id": 95125, "name": "Hand of Fate", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 52, "next": [95138, 95122, 95130], "prev": [], "entries": [{"id": 117722, "definitionId": 122734, "maxRanks": 1, "type": "passive", "name": "Hand of Fate", "spellId": 452536, "icon": "inv_ability_fateboundrogue_handoffateheads", "index": 100}], "freeNode": true}, {"id": 95138, "name": "Chosen's Revelry / Tempted Fate", "type": "choice", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95107], "prev": [95125], "entries": [{"id": 117735, "definitionId": 122747, "maxRanks": 1, "type": "passive", "name": "Chosen's Revelry", "spellId": 454300, "icon": "ability_priest_heavanlyvoice", "index": 100}, {"id": 125132, "definitionId": 129964, "maxRanks": 1, "type": "passive", "name": "Tempted Fate", "spellId": 454286, "icon": "ability_rogue_sabreslash", "index": 200}]}, {"id": 95122, "name": "Mean Streak", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95139], "prev": [95125], "entries": [{"id": 117719, "definitionId": 122731, "maxRanks": 1, "type": "passive", "name": "Mean Streak", "spellId": 453428, "icon": "inv_sigil_thorim", "index": 100}]}, {"id": 95130, "name": "Inexorable March / Death's Arrival", "type": "choice", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95120], "prev": [95125], "entries": [{"id": 117727, "definitionId": 122739, "maxRanks": 1, "type": "passive", "name": "Inexorable March", "spellId": 454432, "icon": "ability_monk_ridethewind", "index": 100}, {"id": 125140, "definitionId": 129972, "maxRanks": 1, "type": "passive", "name": "Death's Arrival", "spellId": 454433, "icon": "achievement_guildperk_havegroup_willtravel", "index": 200}]}, {"id": 95107, "name": "Deal Fate", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95119], "prev": [95138], "entries": [{"id": 117704, "definitionId": 122716, "maxRanks": 1, "type": "passive", "name": "Deal Fate", "spellId": 454419, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 95139, "name": "Edge Case", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "requiresNode": 90769, "next": [95114], "prev": [95122], "entries": [{"id": 117736, "definitionId": 122748, "maxRanks": 1, "type": "passive", "name": "Edge Case", "spellId": 453457, "icon": "item_icecrownnecklacea", "index": 100}]}, {"id": 95120, "name": "Fate Intertwined", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95129], "prev": [95130], "entries": [{"id": 117717, "definitionId": 122729, "maxRanks": 1, "type": "passive", "name": "Fate Intertwined", "spellId": 454429, "icon": "inv_cosmicvoid_beam", "index": 100}]}, {"id": 95119, "name": "Delivered Doom", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95107], "entries": [{"id": 117716, "definitionId": 122728, "maxRanks": 1, "type": "passive", "name": "Delivered Doom", "spellId": 454426, "icon": "ability_bossgorefiend_touchofdoom", "index": 100}]}, {"id": 95114, "name": "Inevitabile End / Destiny Defined", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95139], "entries": [{"id": 117711, "definitionId": 122723, "maxRanks": 1, "type": "passive", "name": "Inevitabile End", "spellId": 454434, "icon": "spell_ice_lament", "index": 100}, {"id": 125139, "definitionId": 129971, "maxRanks": 1, "type": "passive", "name": "Destiny Defined", "spellId": 454435, "icon": "ability_boss_fatescribe_rune6", "index": 200}]}, {"id": 95129, "name": "Double Jeopardy", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95120], "entries": [{"id": 117726, "definitionId": 122738, "maxRanks": 1, "type": "passive", "name": "Double Jeopardy", "spellId": 454430, "icon": "spell_nature_mirrorimage", "index": 100}]}, {"id": 95127, "name": "Fateful Ending", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 52, "next": [], "prev": [95114, 95119, 95129], "entries": [{"id": 117724, "definitionId": 122736, "maxRanks": 1, "type": "passive", "name": "Fateful Ending", "spellId": 454428, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 95140, "name": "Unseen Blade", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 51, "next": [95141, 95111, 95121], "prev": [], "entries": [{"id": 117737, "definitionId": 122749, "maxRanks": 1, "type": "passive", "name": "Unseen Blade", "spellId": 441146, "icon": "inv_weapon_shortblade_55", "index": 100}], "freeNode": true}, {"id": 95121, "name": "Surprising Strikes", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95134], "prev": [95140], "entries": [{"id": 117718, "definitionId": 122730, "maxRanks": 1, "type": "passive", "name": "Surprising Strikes", "spellId": 441273, "icon": "ability_rogue_surpriseattack2", "index": 100}]}, {"id": 95141, "name": "Smoke / Mirrors", "type": "choice", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95133], "prev": [95140], "entries": [{"id": 117738, "definitionId": 122750, "maxRanks": 1, "type": "passive", "name": "Smoke", "spellId": 441247, "icon": "rogue_dirtytricks", "index": 100}, {"id": 120130, "definitionId": 125030, "maxRanks": 1, "type": "passive", "name": "Mirrors", "spellId": 441250, "icon": "trade_archaeology_highbornesoulmirror", "index": 200}]}, {"id": 95111, "name": "Flawless Form", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95137], "prev": [95140], "entries": [{"id": 117708, "definitionId": 122720, "maxRanks": 1, "type": "passive", "name": "Flawless Form", "spellId": 441321, "icon": "inv_qiraj_jewelblessed", "index": 100}]}, {"id": 95134, "name": "So Tricky / Don't Be Suspicious", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95118], "prev": [95121], "entries": [{"id": 117731, "definitionId": 122743, "maxRanks": 1, "type": "passive", "name": "So Tricky", "spellId": 441403, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 120133, "definitionId": 125033, "maxRanks": 1, "type": "passive", "name": "Don't Be Suspicious", "spellId": 441415, "icon": "ability_rogue_disguise", "index": 200}]}, {"id": 95133, "name": "Devious Distractions", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95116], "prev": [95141], "entries": [{"id": 117730, "definitionId": 122742, "maxRanks": 1, "type": "passive", "name": "Devious Distractions", "spellId": 441263, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 95137, "name": "Thousand Cuts / Flickerstrike", "type": "choice", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95128], "prev": [95111], "entries": [{"id": 117734, "definitionId": 122746, "maxRanks": 1, "type": "passive", "name": "Thousand Cuts", "spellId": 441346, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}, {"id": 120131, "definitionId": 125031, "maxRanks": 1, "type": "passive", "name": "Flickerstrike", "spellId": 441359, "icon": "spell_nature_invisibilty", "index": 200}]}, {"id": 95118, "name": "Disorienting Strikes", "type": "single", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95115], "prev": [95134], "entries": [{"id": 117715, "definitionId": 122727, "maxRanks": 1, "type": "passive", "name": "Disorienting Strikes", "spellId": 441274, "icon": "petbattle_speed", "index": 100}]}, {"id": 95116, "name": "Cloud Cover / No Scruples", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95133], "entries": [{"id": 117713, "definitionId": 122725, "maxRanks": 1, "type": "passive", "name": "Cloud Cover", "spellId": 441429, "icon": "ability_rogue_smoke", "index": 100}, {"id": 120132, "definitionId": 125032, "maxRanks": 1, "type": "passive", "name": "No Scruples", "spellId": 441398, "icon": "ability_rogue_surpriseattack", "index": 200}]}, {"id": 95128, "name": "Nimble Flurry", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95137], "entries": [{"id": 117725, "definitionId": 122737, "maxRanks": 1, "type": "passive", "name": "Nimble Flurry", "spellId": 441367, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 95115, "name": "Coup de Grace", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 51, "next": [], "prev": [95116, 95118, 95128], "entries": [{"id": 117712, "definitionId": 122724, "maxRanks": 1, "type": "passive", "name": "Coup de Grace", "spellId": 441423, "icon": "inv_ability_tricksterrogue_coupdegrace", "index": 100}]}], "subTreeNodes": [{"id": 99843, "name": "Fatebound / Trickster", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123374, "type": "subtree", "name": "Fatebound", "traitSubTreeId": 52, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-fatebound", "nodes": [95125, 95138, 95122, 95130, 95107, 95139, 95120, 95119, 95114, 95129, 95127]}, {"id": 123372, "type": "subtree", "name": "Trickster", "traitSubTreeId": 51, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-trickster", "nodes": [95140, 95121, 95141, 95111, 95134, 95133, 95137, 95118, 95116, 95128, 95115]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]}, {"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Subtlety", "specId": 261, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}]}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}], "freeNode": true}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Thrill Seeking", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "passive", "name": "Thrill Seeking", "spellId": 394931, "icon": "inv_ragnaros_heart_shadowflame", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Supercharger", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 2, "type": "passive", "name": "Supercharger", "spellId": 470347, "icon": "inv_engineering_90_electrifiedether", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 469779, "visibleSpellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Echoing Reprimand / Forced Induction", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Echoing Reprimand", "spellId": 470669, "icon": "inv_ability_rogue_echoingreprimand", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Forced Induction", "spellId": 470668, "icon": "inv_misc_enggizmos_06", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90690, "name": "Find Weakness", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90739, 90726, 90710], "prev": [], "entries": [{"id": 112578, "definitionId": 117583, "maxRanks": 1, "type": "passive", "name": "Find Weakness", "spellId": 91023, "icon": "ability_rogue_findweakness", "index": 100}]}, {"id": 90739, "name": "Improved Backstab", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [90698], "prev": [90690], "entries": [{"id": 112629, "definitionId": 117634, "maxRanks": 1, "type": "passive", "name": "Improved Backstab", "spellId": 319949, "icon": "ability_backstab", "index": 100}]}, {"id": 90726, "name": "Shadow Blades", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90728, 90725], "prev": [90690], "entries": [{"id": 112614, "definitionId": 117619, "maxRanks": 1, "type": "active", "name": "Shadow Blades", "spellId": 121471, "icon": "inv_knife_1h_grimbatolraid_d_03", "index": 100}]}, {"id": 90710, "name": "Improved Shuriken Storm", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90711], "prev": [90690], "entries": [{"id": 112598, "definitionId": 117603, "maxRanks": 1, "type": "passive", "name": "Improved Shuriken Storm", "spellId": 319951, "icon": "ability_rogue_shuriken_storm", "index": 100}]}, {"id": 90698, "name": "Shot in the Dark", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90700, 90727], "prev": [90739], "entries": [{"id": 112586, "definitionId": 117591, "maxRanks": 1, "type": "passive", "name": "Shot in the Dark", "spellId": 257505, "icon": "ability_cheapshot", "index": 100}]}, {"id": 90728, "name": "Quick Decisions", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [90727], "prev": [90726], "entries": [{"id": 112616, "definitionId": 117621, "maxRanks": 1, "type": "passive", "name": "Quick Decisions", "spellId": 382503, "icon": "inv_misc_hook_01", "index": 100}]}, {"id": 90725, "name": "Ephemeral Bond", "type": "single", "posX": 12600, "posY": 2700, "maxRanks": 1, "next": [90733], "prev": [90726], "entries": [{"id": 112613, "definitionId": 117618, "maxRanks": 1, "type": "passive", "name": "Ephemeral Bond", "spellId": 426563, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 90711, "name": "Exhilarating Execution", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90733, 94582], "prev": [90710], "entries": [{"id": 112599, "definitionId": 117604, "maxRanks": 1, "type": "passive", "name": "Exhilarating Execution", "spellId": 428486, "icon": "inv_weapon_hand_04", "index": 100}]}, {"id": 90700, "name": "Shrouded in Darkness", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90736, 90701], "prev": [90698], "entries": [{"id": 112588, "definitionId": 117593, "maxRanks": 1, "type": "passive", "name": "Shrouded in Darkness", "spellId": 382507, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 90727, "name": "Shadow Focus", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90736, 90699, 90734], "prev": [90698, 90728], "entries": [{"id": 112615, "definitionId": 117620, "maxRanks": 1, "type": "passive", "name": "Shadow Focus", "spellId": 108209, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90733, "name": "Cloaked in Shadows / Fade to Nothing", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90734, 90715, 90709], "prev": [90725, 90711], "entries": [{"id": 112622, "definitionId": 117627, "maxRanks": 1, "type": "passive", "name": "Cloaked in Shadows", "spellId": 382515, "icon": "inv_helm_cloth_shadowmoonclan_b_01", "index": 100}, {"id": 112621, "definitionId": 117626, "maxRanks": 1, "type": "passive", "name": "Fade to Nothing", "spellId": 382514, "icon": "ability_warlock_everlastingaffliction", "index": 200}]}, {"id": 94582, "name": "Night Terrors / Terrifying Pace", "type": "choice", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90709, 90714], "prev": [90711], "entries": [{"id": 117170, "definitionId": 122182, "maxRanks": 1, "type": "passive", "name": "Night Terrors", "spellId": 277953, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 117753, "definitionId": 122765, "maxRanks": 1, "type": "passive", "name": "Terrifying Pace", "spellId": 428387, "icon": "ability_druid_typhoon", "index": 200}]}, {"id": 90701, "name": "Swift Death", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90737], "prev": [90700], "entries": [{"id": 112589, "definitionId": 117594, "maxRanks": 1, "type": "passive", "name": "Swift Death", "spellId": 394309, "icon": "spell_shadow_rune", "index": 100}]}, {"id": 90736, "name": "Improved Shadow Techniques", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90737, 90703, 101715], "prev": [90700, 90727], "entries": [{"id": 112626, "definitionId": 117631, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Techniques", "spellId": 394023, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 90699, "name": "Gloomblade", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101715], "prev": [90727], "entries": [{"id": 112587, "definitionId": 117592, "maxRanks": 1, "type": "active", "name": "Gloomblade", "spellId": 200758, "icon": "ability_ironmaidens_convulsiveshadows", "index": 100}]}, {"id": 90734, "name": "Improved Shadow Dance", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101715, 90723], "prev": [90733, 90727], "entries": [{"id": 112623, "definitionId": 117628, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Dance", "spellId": 393972, "icon": "ability_rogue_shadowdance", "index": 100}]}, {"id": 90715, "name": "Secret Technique", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90723], "prev": [90733], "entries": [{"id": 112603, "definitionId": 117608, "maxRanks": 1, "type": "active", "name": "Secret Technique", "spellId": 280719, "icon": "ability_rogue_sinistercalling", "index": 100}]}, {"id": 90709, "name": "Relentless Strikes", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90723, 90722, 90717], "prev": [94582, 90733], "entries": [{"id": 112597, "definitionId": 117602, "maxRanks": 1, "type": "passive", "name": "Relentless Strikes", "spellId": 58423, "icon": "ability_warrior_decisivestrike", "index": 100}]}, {"id": 90714, "name": "Silent Storm", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90717], "prev": [94582], "entries": [{"id": 112602, "definitionId": 117607, "maxRanks": 1, "type": "passive", "name": "Silent Storm", "spellId": 385722, "icon": "ability_rogue_shuriken_storm", "index": 100}]}, {"id": 90737, "name": "Premeditation", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90738], "prev": [90701, 90736], "entries": [{"id": 112627, "definitionId": 117632, "maxRanks": 1, "type": "passive", "name": "Premeditation", "spellId": 343160, "icon": "spell_shadow_possession", "index": 100}]}, {"id": 90703, "name": "Planned Execution / Warning Signs", "type": "choice", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90738, 90735], "prev": [90736], "entries": [{"id": 112591, "definitionId": 117596, "maxRanks": 1, "type": "passive", "name": "Planned Execution", "spellId": 382508, "icon": "ability_creature_cursed_02", "index": 100}, {"id": 117172, "definitionId": 122184, "maxRanks": 1, "type": "passive", "name": "Warning Signs", "spellId": 426555, "icon": "achievement_bg_kill_flag_carrier", "index": 200}]}, {"id": 101715, "name": "Double Dance", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90735, 90724], "prev": [90736, 90699, 90734], "entries": [{"id": 125619, "definitionId": 130451, "maxRanks": 1, "type": "passive", "name": "Double Dance", "spellId": 394930, "icon": "warrior_doubletime", "index": 100}]}, {"id": 90723, "name": "Shadowed Finishers", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90724, 90713], "prev": [90715, 90709, 90734], "entries": [{"id": 112611, "definitionId": 117616, "maxRanks": 1, "type": "passive", "name": "Shadowed Finishers", "spellId": 382511, "icon": "ability_rogue_eviscerate", "index": 100}]}, {"id": 90722, "name": "Secret Stratagem", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90713, 90716], "prev": [90709], "entries": [{"id": 112610, "definitionId": 117615, "maxRanks": 1, "type": "passive", "name": "Secret Stratagem", "spellId": 394320, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 90717, "name": "Replicating Shadows", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90716], "prev": [90714, 90709], "entries": [{"id": 112605, "definitionId": 117610, "maxRanks": 1, "type": "passive", "name": "Replicating Shadows", "spellId": 382506, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 90738, "name": "Weaponmaster", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90704], "prev": [90703, 90737], "entries": [{"id": 112628, "definitionId": 117633, "maxRanks": 1, "type": "passive", "name": "Weaponmaster", "spellId": 193537, "icon": "ability_ironmaidens_bladerush", "index": 100}]}, {"id": 90735, "name": "The First Dance / Master of Shadows", "type": "choice", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90704, 90707], "prev": [90703, 101715], "entries": [{"id": 112625, "definitionId": 117630, "maxRanks": 1, "type": "passive", "name": "The First Dance", "spellId": 382505, "icon": "ability_rogue_shadowdance", "index": 100}, {"id": 112624, "definitionId": 117629, "maxRanks": 1, "type": "passive", "name": "Master of Shadows", "spellId": 196976, "icon": "spell_shadow_charm", "index": 200}]}, {"id": 90724, "name": "Deepening Shadows", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90707, 90731, 90721], "prev": [90723, 101715], "entries": [{"id": 112612, "definitionId": 117617, "maxRanks": 1, "type": "passive", "name": "Deepening Shadows", "spellId": 185314, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90713, "name": "Veiltouched", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90721, 90718], "prev": [90722, 90723], "entries": [{"id": 112601, "definitionId": 117606, "maxRanks": 1, "type": "passive", "name": "Veiltouched", "spellId": 382017, "icon": "spell_arcane_prismaticcloak", "index": 100}]}, {"id": 90716, "name": "Shuriken Tornado", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90718], "prev": [90717, 90722], "entries": [{"id": 112604, "definitionId": 117609, "maxRanks": 1, "type": "active", "name": "Shuriken Tornado", "spellId": 277925, "icon": "ability_rogue_throwingspecialization", "index": 100}]}, {"id": 90704, "name": "Inevitability", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90706], "prev": [90738, 90735], "entries": [{"id": 112592, "definitionId": 117597, "maxRanks": 1, "type": "passive", "name": "Inevitability", "spellId": 382512, "icon": "spell_shadow_rune", "index": 100}]}, {"id": 90707, "name": "Perforated Veins", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90706, 90732], "prev": [90724, 90735], "entries": [{"id": 112595, "definitionId": 117600, "maxRanks": 1, "type": "passive", "name": "Perforated Veins", "spellId": 382518, "icon": "ability_warrior_bloodfrenzy", "index": 100}]}, {"id": 90731, "name": "Lingering Shadow", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90732], "prev": [90724], "entries": [{"id": 112619, "definitionId": 117624, "maxRanks": 1, "type": "passive", "name": "Lingering Shadow", "spellId": 382524, "icon": "spell_fire_twilightnova", "index": 100}]}, {"id": 90721, "name": "Deeper Daggers", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90732, 90720], "prev": [90724, 90713], "entries": [{"id": 112609, "definitionId": 117614, "maxRanks": 1, "type": "passive", "name": "Deeper Daggers", "spellId": 382517, "icon": "inv_weapon_shortblade_15", "index": 100}]}, {"id": 90718, "name": "Flagellation", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90720], "prev": [90716, 90713], "entries": [{"id": 112606, "definitionId": 117611, "maxRanks": 1, "type": "active", "name": "Flagellation", "spellId": 384631, "icon": "inv_ability_rogue_flagellation", "index": 100}]}, {"id": 90706, "name": "Death Perception", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90705, 94580], "prev": [90707, 90704], "entries": [{"id": 112594, "definitionId": 117599, "maxRanks": 2, "type": "passive", "name": "Death Perception", "spellId": 469642, "icon": "spell_nzinsanity_shortsighted", "index": 100}]}, {"id": 90732, "name": "Dark Shadow", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94580, 90730, 94581], "prev": [90731, 90707, 90721], "entries": [{"id": 112620, "definitionId": 117625, "maxRanks": 2, "type": "passive", "name": "Dark Shadow", "spellId": 245687, "icon": "spell_warlock_demonsoul", "index": 100}]}, {"id": 90720, "name": "Finality", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94581, 90719], "prev": [90718, 90721], "entries": [{"id": 112608, "definitionId": 117613, "maxRanks": 2, "type": "passive", "name": "Finality", "spellId": 382525, "icon": "ability_rogue_eviscerate", "index": 100}]}, {"id": 90705, "name": "The Rotten", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90706], "entries": [{"id": 112593, "definitionId": 117598, "maxRanks": 1, "type": "passive", "name": "The Rotten", "spellId": 382015, "icon": "spell_shadow_nightofthedead", "index": 100}]}, {"id": 94580, "name": "Shadowcraft", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90732, 90706], "entries": [{"id": 117168, "definitionId": 122180, "maxRanks": 1, "type": "passive", "name": "Shadowcraft", "spellId": 426594, "icon": "spell_shadow_sealofkings", "index": 100}]}, {"id": 90730, "name": "Danse Macabre", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90732], "entries": [{"id": 112618, "definitionId": 117623, "maxRanks": 1, "type": "passive", "name": "Danse Macabre", "spellId": 382528, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 94581, "name": "Goremaw's Bite", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90720, 90732], "entries": [{"id": 117169, "definitionId": 122181, "maxRanks": 1, "type": "active", "name": "Goremaw's Bite", "spellId": 426591, "icon": "inv_knife_1h_artifactfangs_d_01", "index": 100}]}, {"id": 90719, "name": "Dark Brew", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90720], "entries": [{"id": 112607, "definitionId": 117612, "maxRanks": 1, "type": "passive", "name": "Dark Brew", "spellId": 382504, "icon": "spell_nature_slowpoison", "index": 100}]}], "heroNodes": [{"id": 95136, "name": "Deathstalker's Mark", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 53, "next": [95110, 95132, 95117], "prev": [], "entries": [{"id": 117733, "definitionId": 122745, "maxRanks": 1, "type": "passive", "name": "Deathstalker's Mark", "spellId": 457052, "icon": "inv_ability_deathstalkerrogue_deathstalkersmark", "index": 100}], "freeNode": true}, {"id": 95110, "name": "Clear the Witnesses", "type": "single", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95135], "prev": [95136], "entries": [{"id": 117707, "definitionId": 122719, "maxRanks": 1, "type": "passive", "name": "Clear the Witnesses", "spellId": 457053, "icon": "ability_rogue_fanofknives", "index": 100}]}, {"id": 95132, "name": "Hunt Them Down", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95108], "prev": [95136], "entries": [{"id": 117729, "definitionId": 122741, "maxRanks": 1, "type": "passive", "name": "Hunt Them Down", "spellId": 457054, "icon": "ability_rogue_creepingvenom", "index": 100}]}, {"id": 95117, "name": "Singular Focus", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95109], "prev": [95136], "entries": [{"id": 117714, "definitionId": 122726, "maxRanks": 1, "type": "passive", "name": "Singular Focus", "spellId": 457055, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 95135, "name": "Fatal Intent", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95106], "prev": [95110], "entries": [{"id": 117732, "definitionId": 122744, "maxRanks": 1, "type": "passive", "name": "Fatal Intent", "spellId": 461980, "icon": "ability_warrior_deepcuts", "index": 100}]}, {"id": 95108, "name": "Corrupt the Blood", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95131], "prev": [95132], "entries": [{"id": 117705, "definitionId": 122717, "maxRanks": 1, "type": "passive", "name": "Corrupt the Blood", "spellId": 457066, "icon": "ability_ironmaidens_bloodritual", "index": 100}]}, {"id": 95109, "name": "Lingering Darkness / Symbolic Victory", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95123], "prev": [95117], "entries": [{"id": 117706, "definitionId": 122718, "maxRanks": 1, "type": "passive", "name": "Lingering Darkness", "spellId": 457056, "icon": "ability_rogue_envelopingshadows", "index": 100}, {"id": 126030, "definitionId": 130862, "maxRanks": 1, "type": "passive", "name": "Symbolic Victory", "spellId": 457062, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 95106, "name": "Ethereal Cloak / Bait and Switch", "type": "choice", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95135], "entries": [{"id": 117703, "definitionId": 122715, "maxRanks": 1, "type": "passive", "name": "Ethereal Cloak", "spellId": 457022, "icon": "spell_arcane_prismaticcloak", "index": 100}, {"id": 126029, "definitionId": 130861, "maxRanks": 1, "type": "passive", "name": "Bait and Switch", "spellId": 457034, "icon": "ability_druid_earthandsky", "index": 200}]}, {"id": 95131, "name": "Momentum of Despair / Follow the Blood", "type": "choice", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95108], "entries": [{"id": 117728, "definitionId": 122740, "maxRanks": 1, "type": "passive", "name": "Momentum of Despair", "spellId": 457067, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 126028, "definitionId": 130860, "maxRanks": 1, "type": "passive", "name": "Follow the Blood", "spellId": 457068, "icon": "sha_ability_rogue_bloodyeye_nightmare", "index": 200}]}, {"id": 95123, "name": "Shadewalker / Shroud of Night", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95109], "entries": [{"id": 117720, "definitionId": 122732, "maxRanks": 1, "type": "passive", "name": "Shadewalker", "spellId": 457057, "icon": "rogue_shadow_reflection", "index": 100}, {"id": 126027, "definitionId": 130859, "maxRanks": 1, "type": "passive", "name": "Shroud of Night", "spellId": 457063, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 95142, "name": "Darkest Night", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 53, "next": [], "prev": [95131, 95106, 95123], "entries": [{"id": 117739, "definitionId": 122751, "maxRanks": 1, "type": "passive", "name": "Darkest Night", "spellId": 457058, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 95140, "name": "Unseen Blade", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 51, "next": [95141, 95111, 95121], "prev": [], "entries": [{"id": 117737, "definitionId": 122749, "maxRanks": 1, "type": "passive", "name": "Unseen Blade", "spellId": 441146, "icon": "inv_weapon_shortblade_55", "index": 100}], "freeNode": true}, {"id": 95121, "name": "Surprising Strikes", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95134], "prev": [95140], "entries": [{"id": 117718, "definitionId": 122730, "maxRanks": 1, "type": "passive", "name": "Surprising Strikes", "spellId": 441273, "icon": "ability_rogue_surpriseattack2", "index": 100}]}, {"id": 95141, "name": "Smoke / Mirrors", "type": "choice", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95133], "prev": [95140], "entries": [{"id": 117738, "definitionId": 122750, "maxRanks": 1, "type": "passive", "name": "Smoke", "spellId": 441247, "icon": "rogue_dirtytricks", "index": 100}, {"id": 120130, "definitionId": 125030, "maxRanks": 1, "type": "passive", "name": "Mirrors", "spellId": 441250, "icon": "trade_archaeology_highbornesoulmirror", "index": 200}]}, {"id": 95111, "name": "Flawless Form", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95137], "prev": [95140], "entries": [{"id": 117708, "definitionId": 122720, "maxRanks": 1, "type": "passive", "name": "Flawless Form", "spellId": 441321, "icon": "inv_qiraj_jewelblessed", "index": 100}]}, {"id": 95134, "name": "So Tricky / Don't Be Suspicious", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95118], "prev": [95121], "entries": [{"id": 117731, "definitionId": 122743, "maxRanks": 1, "type": "passive", "name": "So Tricky", "spellId": 441403, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 120133, "definitionId": 125033, "maxRanks": 1, "type": "passive", "name": "Don't Be Suspicious", "spellId": 441415, "icon": "ability_rogue_disguise", "index": 200}]}, {"id": 95133, "name": "Devious Distractions", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95116], "prev": [95141], "entries": [{"id": 117730, "definitionId": 122742, "maxRanks": 1, "type": "passive", "name": "Devious Distractions", "spellId": 441263, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 95137, "name": "Thousand Cuts / Flickerstrike", "type": "choice", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95128], "prev": [95111], "entries": [{"id": 117734, "definitionId": 122746, "maxRanks": 1, "type": "passive", "name": "Thousand Cuts", "spellId": 441346, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}, {"id": 120131, "definitionId": 125031, "maxRanks": 1, "type": "passive", "name": "Flickerstrike", "spellId": 441359, "icon": "spell_nature_invisibilty", "index": 200}]}, {"id": 95118, "name": "Disorienting Strikes", "type": "single", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95115], "prev": [95134], "entries": [{"id": 117715, "definitionId": 122727, "maxRanks": 1, "type": "passive", "name": "Disorienting Strikes", "spellId": 441274, "icon": "petbattle_speed", "index": 100}]}, {"id": 95116, "name": "Cloud Cover / No Scruples", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95133], "entries": [{"id": 117713, "definitionId": 122725, "maxRanks": 1, "type": "passive", "name": "Cloud Cover", "spellId": 441429, "icon": "ability_rogue_smoke", "index": 100}, {"id": 120132, "definitionId": 125032, "maxRanks": 1, "type": "passive", "name": "No Scruples", "spellId": 441398, "icon": "ability_rogue_surpriseattack", "index": 200}]}, {"id": 95128, "name": "Nimble Flurry", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95137], "entries": [{"id": 117725, "definitionId": 122737, "maxRanks": 1, "type": "passive", "name": "Nimble Flurry", "spellId": 441367, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 95115, "name": "Coup de Grace", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 51, "next": [], "prev": [95116, 95118, 95128], "entries": [{"id": 117712, "definitionId": 122724, "maxRanks": 1, "type": "passive", "name": "Coup de Grace", "spellId": 441423, "icon": "inv_ability_tricksterrogue_coupdegrace", "index": 100}]}], "subTreeNodes": [{"id": 99842, "name": "Deathstalker / Trickster", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123373, "type": "subtree", "name": "Deathstalker", "traitSubTreeId": 53, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-deathstalker", "nodes": [95136, 95110, 95132, 95117, 95135, 95108, 95109, 95106, 95131, 95123, 95142]}, {"id": 123370, "type": "subtree", "name": "Trickster", "traitSubTreeId": 51, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-trickster", "nodes": [95140, 95121, 95141, 95111, 95134, 95133, 95137, 95118, 95116, 95128, 95115]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]}, {"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Elemental", "specId": 262, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}]}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}], "freeNode": true}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}]}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}], "freeNode": true}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 103608], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost_orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 103608], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [103608, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 103608, "name": "Cleanse Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103590, 103617, 103605], "entries": [{"id": 127884, "definitionId": 132693, "maxRanks": 1, "type": "active", "name": "Cleanse Spirit", "spellId": 51886, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103608, 103593, 103601], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 80984, "name": "Earth Shock / Elemental Blast", "type": "choice", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [80985, 80983, 80981], "prev": [], "entries": [{"id": 101854, "definitionId": 106811, "maxRanks": 1, "type": "active", "name": "Earth Shock", "spellId": 8042, "icon": "spell_nature_earthshock", "index": 100}, {"id": 127924, "definitionId": 132733, "maxRanks": 1, "type": "active", "name": "Elemental Blast", "spellId": 117014, "icon": "shaman_talent_elementalblast", "index": 200}]}, {"id": 80985, "name": "Earthquake / Earthquake", "type": "choice", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [80990], "prev": [80984], "entries": [{"id": 101855, "definitionId": 106814, "maxRanks": 1, "type": "active", "name": "Earthquake", "spellId": 462620, "icon": "spell_shaman_earthquake", "index": 100}, {"id": 127925, "definitionId": 132734, "maxRanks": 1, "type": "active", "name": "Earthquake", "spellId": 61882, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 80983, "name": "Elemental Fury", "type": "single", "posX": 12600, "posY": 1800, "maxRanks": 1, "next": [81000], "prev": [80984], "entries": [{"id": 101853, "definitionId": 106810, "maxRanks": 1, "type": "passive", "name": "Elemental Fury", "spellId": 60188, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 80981, "name": "Fire Elemental / Storm Elemental", "type": "choice", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [80999], "prev": [80984], "entries": [{"id": 101850, "definitionId": 106837, "maxRanks": 1, "type": "active", "name": "Fire Elemental", "spellId": 198067, "icon": "spell_fire_elemental_totem", "index": 100}, {"id": 101849, "definitionId": 106836, "maxRanks": 1, "type": "active", "name": "Storm Elemental", "spellId": 192249, "icon": "inv_stormelemental", "index": 200}]}, {"id": 80990, "name": "Flash of Lightning", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [80997, 103635], "prev": [80985], "entries": [{"id": 101861, "definitionId": 106843, "maxRanks": 1, "type": "passive", "name": "Flash of Lightning", "spellId": 381936, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 81000, "name": "Aftershock / Surge of Power", "type": "choice", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [80988], "prev": [80983], "entries": [{"id": 101874, "definitionId": 106831, "maxRanks": 1, "type": "passive", "name": "Aftershock", "spellId": 273221, "icon": "spell_nature_stormreach", "index": 100}, {"id": 101873, "definitionId": 106830, "maxRanks": 1, "type": "passive", "name": "Surge of Power", "spellId": 262303, "icon": "spell_nature_shamanrage", "index": 200}]}, {"id": 80999, "name": "Echo of the Elements", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [81004], "prev": [80981], "entries": [{"id": 101872, "definitionId": 106832, "maxRanks": 1, "type": "passive", "name": "Echo of the Elements", "spellId": 333919, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 80997, "name": "Icefury", "type": "single", "posX": 10800, "posY": 3000, "maxRanks": 1, "next": [103638], "prev": [80990], "entries": [{"id": 101870, "definitionId": 106817, "maxRanks": 1, "type": "passive", "name": "Icefury", "spellId": 462816, "icon": "spell_frost_iceshard", "index": 100}]}, {"id": 80988, "name": "Stormkeeper", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [81016, 103639, 80998], "prev": [81000], "entries": [{"id": 101859, "definitionId": 106819, "maxRanks": 1, "type": "active", "name": "Stormkeeper", "spellId": 191634, "icon": "ability_thunderking_lightningwhip", "index": 100}]}, {"id": 81004, "name": "Master of the Elements", "type": "single", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [103630], "prev": [80999], "entries": [{"id": 101879, "definitionId": 106829, "maxRanks": 1, "type": "passive", "name": "Master of the Elements", "spellId": 16166, "icon": "spell_nature_elementalabsorption", "index": 100}]}, {"id": 103638, "name": "Fusion of Elements", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80996], "prev": [80997], "entries": [{"id": 127919, "definitionId": 132728, "maxRanks": 1, "type": "passive", "name": "Fusion of Elements", "spellId": 462840, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}, {"id": 103635, "name": "Storm Frenzy", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80996, 103631, 80995], "prev": [80990], "entries": [{"id": 127917, "definitionId": 132726, "maxRanks": 1, "type": "passive", "name": "Storm Frenzy", "spellId": 462695, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 81016, "name": "Swelling Maelstrom", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103631], "prev": [80988], "entries": [{"id": 101893, "definitionId": 106815, "maxRanks": 1, "type": "passive", "name": "Swelling Maelstrom", "spellId": 381707, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 103639, "name": "Primordial Fury", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103631, 81015, 81009], "prev": [80988], "entries": [{"id": 127920, "definitionId": 132729, "maxRanks": 1, "type": "passive", "name": "Primordial Fury", "spellId": 378193, "icon": "inv_10_elementalshardfoozles_primordial", "index": 100}]}, {"id": 80998, "name": "Fury of the Storms / Herald of the Storms", "type": "choice", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81009, 103633], "prev": [80988], "entries": [{"id": 101871, "definitionId": 106816, "maxRanks": 1, "type": "passive", "name": "Fury of the Storms", "spellId": 191717, "icon": "ability_thunderking_overcharge", "index": 100}, {"id": 128223, "definitionId": 133030, "maxRanks": 1, "type": "passive", "name": "Herald of the Storms", "spellId": 468571, "icon": "achievement_raidprimalist_windelemental", "index": 200}]}, {"id": 103630, "name": "Elemental Unity", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103633, 81010], "prev": [81004], "entries": [{"id": 127912, "definitionId": 132721, "maxRanks": 1, "type": "passive", "name": "Elemental Unity", "spellId": 462866, "icon": "inv_10_elementalspiritfoozles_air", "index": 100}]}, {"id": 80996, "name": "Flux Melting", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80995, 80993], "prev": [103635, 103638], "entries": [{"id": 101869, "definitionId": 106823, "maxRanks": 1, "type": "passive", "name": "Flux Melting", "spellId": 381776, "icon": "spell_frostfire_orb", "index": 100}]}, {"id": 103631, "name": "Lightning Capacitor", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80995, 103636, 81013], "prev": [103635, 81016, 103639], "entries": [{"id": 127913, "definitionId": 132722, "maxRanks": 1, "type": "passive", "name": "Lightning Capacitor", "spellId": 462862, "icon": "spell_nature_lightningshield", "index": 100}]}, {"id": 81015, "name": "Power of the Maelstrom", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81013, 81005], "prev": [103639], "entries": [{"id": 101892, "definitionId": 106824, "maxRanks": 1, "type": "passive", "name": "Power of the Maelstrom", "spellId": 191861, "icon": "spell_fire_masterofelements", "index": 100}]}, {"id": 81009, "name": "Improved Flametongue Weapon", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81005], "prev": [103639, 80998], "entries": [{"id": 101886, "definitionId": 106853, "maxRanks": 1, "type": "passive", "name": "Improved Flametongue Weapon", "spellId": 382027, "icon": "spell_fire_flametounge", "index": 100}]}, {"id": 103633, "name": "Everlasting Elements", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81005, 103634, 81010], "prev": [103630, 80998], "entries": [{"id": 127915, "definitionId": 132724, "maxRanks": 1, "type": "passive", "name": "Everlasting Elements", "spellId": 462867, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 80995, "name": "Earthshatter", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80993, 81003], "prev": [103635, 103631, 80996], "entries": [{"id": 101867, "definitionId": 106821, "maxRanks": 1, "type": "passive", "name": "Earthshatter", "spellId": 468626, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 103636, "name": "Thunderstrike Ward", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81003], "prev": [103631], "entries": [{"id": 127918, "definitionId": 132727, "maxRanks": 1, "type": "active", "name": "Thunderstrike Ward", "spellId": 462757, "icon": "inv_armorkit_lightning_imbued", "index": 100}]}, {"id": 81013, "name": "Echo Chamber", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81003, 80989, 81008], "prev": [103631, 81015], "entries": [{"id": 101890, "definitionId": 106839, "maxRanks": 1, "type": "passive", "name": "Echo Chamber", "spellId": 382032, "icon": "spell_nature_lightningoverload", "index": 100}]}, {"id": 81005, "name": "Searing Flames", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81008, 81014], "prev": [81015, 81009, 103633], "entries": [{"id": 101880, "definitionId": 106847, "maxRanks": 1, "type": "passive", "name": "Searing Flames", "spellId": 381782, "icon": "inv_offhand_1h_artifactdoomhammer_d_01", "index": 100}]}, {"id": 103634, "name": "Earthen Rage", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81014], "prev": [103633], "entries": [{"id": 127916, "definitionId": 132725, "maxRanks": 1, "type": "passive", "name": "Earthen Rage", "spellId": 170374, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 81010, "name": "Flames of the Cauldron", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81014], "prev": [103630, 103633], "entries": [{"id": 101887, "definitionId": 106854, "maxRanks": 1, "type": "passive", "name": "Flames of the Cauldron", "spellId": 378266, "icon": "inv_misc_cauldron_fire", "index": 100}]}, {"id": 80993, "name": "Elemental Equilibrium", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81012], "prev": [80995, 80996], "entries": [{"id": 101865, "definitionId": 106841, "maxRanks": 1, "type": "passive", "name": "Elemental Equilibrium", "spellId": 378271, "icon": "ability_shaman_ascendance", "index": 100}]}, {"id": 81003, "name": "Eye of the Storm", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81012, 81002], "prev": [103636, 81013, 80995], "entries": [{"id": 101877, "definitionId": 106827, "maxRanks": 1, "type": "passive", "name": "Eye of the Storm", "spellId": 381708, "icon": "spell_shadow_soulleech_2", "index": 300}]}, {"id": 80989, "name": "Ascendance", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81002, 103640, 81006], "prev": [81013], "entries": [{"id": 101860, "definitionId": 106820, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114050, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 81008, "name": "Echo of the Elementals", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81006, 81007], "prev": [81013, 81005], "entries": [{"id": 101885, "definitionId": 106852, "maxRanks": 1, "type": "passive", "name": "Echo of the Elementals", "spellId": 462864, "icon": "inv_10_elementalspiritfoozles_fire", "index": 200}]}, {"id": 81014, "name": "Primordial Wave", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81007, 80978], "prev": [81005, 81010, 103634], "entries": [{"id": 101891, "definitionId": 106840, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 375982, "icon": "inv_ability_shaman_primordialwave", "index": 100}]}, {"id": 81012, "name": "Lightning Rod", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80991, 103641], "prev": [81003, 80993], "entries": [{"id": 101889, "definitionId": 106838, "maxRanks": 1, "type": "passive", "name": "Lightning Rod", "spellId": 210689, "icon": "inv_rod_enchantedcobalt", "index": 100}]}, {"id": 81002, "name": "Mountains Will Fall", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103641, 80992], "prev": [81003, 80989], "entries": [{"id": 101876, "definitionId": 106826, "maxRanks": 1, "type": "passive", "name": "Mountains Will Fall", "spellId": 381726, "icon": "inv_elementalearth2", "index": 100}]}, {"id": 103640, "name": "First Ascendant / Preeminence", "type": "choice", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80992, 103632], "prev": [80989], "entries": [{"id": 127921, "definitionId": 132730, "maxRanks": 1, "type": "passive", "name": "First Ascendant", "spellId": 462440, "icon": "spell_shaman_astralshift", "index": 100}, {"id": 128224, "definitionId": 133031, "maxRanks": 1, "type": "passive", "name": "Preeminence", "spellId": 462443, "icon": "spell_shaman_improvedreincarnation", "index": 200}]}, {"id": 81006, "name": "Erupting Lava", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103632], "prev": [81008, 80989], "entries": [{"id": 101881, "definitionId": 106848, "maxRanks": 1, "type": "passive", "name": "Erupting Lava", "spellId": 468574, "icon": "ability_rhyolith_lavapool", "index": 300}]}, {"id": 81007, "name": "Magma Chamber", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103632, 103637], "prev": [81008, 81014], "entries": [{"id": 101883, "definitionId": 106850, "maxRanks": 1, "type": "passive", "name": "Magma Chamber", "spellId": 381932, "icon": "ability_rhyolith_magmaflow_whole", "index": 100}]}, {"id": 80978, "name": "Splintered Elements", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103637], "prev": [81014], "entries": [{"id": 101844, "definitionId": 106856, "maxRanks": 1, "type": "passive", "name": "Splintered Elements", "spellId": 382042, "icon": "spell_nature_elementalprecision_1", "index": 300}]}, {"id": 80991, "name": "Charged Conduit", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81012], "entries": [{"id": 101862, "definitionId": 106844, "maxRanks": 1, "type": "passive", "name": "Charged Conduit", "spellId": 468625, "icon": "ability_thunderking_thunderstruck", "index": 100}]}, {"id": 103641, "name": "Echoes of Great Sundering", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81012, 81002], "entries": [{"id": 127922, "definitionId": 132731, "maxRanks": 1, "type": "passive", "name": "Echoes of Great Sundering", "spellId": 384087, "icon": "spell_shaman_earthquake", "index": 300}]}, {"id": 80992, "name": "Deeply Rooted Elements", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81002, 103640], "entries": [{"id": 101864, "definitionId": 106846, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 100}]}, {"id": 103632, "name": "Primal Elementalist", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103640, 81007, 81006], "entries": [{"id": 127914, "definitionId": 132723, "maxRanks": 1, "type": "passive", "name": "Primal Elementalist", "spellId": 117013, "icon": "shaman_talent_primalelementalist", "index": 100}]}, {"id": 103637, "name": "Liquid Magma Totem", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81007, 80978], "entries": [{"id": 101884, "definitionId": 106851, "maxRanks": 1, "type": "active", "name": "Liquid Magma Totem", "spellId": 192222, "icon": "spell_shaman_spewlava", "index": 100}]}], "heroNodes": [{"id": 94888, "name": "Call of the Ancestors", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 56, "requiresNode": 81037, "next": [94862, 94869, 94884], "prev": [], "entries": [{"id": 117485, "definitionId": 122497, "maxRanks": 1, "type": "passive", "name": "Call of the Ancestors", "spellId": 443450, "icon": "ability_racial_ancestralcall", "index": 100}], "freeNode": true}, {"id": 94862, "name": "Latent Wisdom / Ancient Fellowship", "type": "choice", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94887], "prev": [94888], "entries": [{"id": 117459, "definitionId": 122471, "maxRanks": 1, "type": "passive", "name": "Latent Wisdom", "spellId": 443449, "icon": "spell_holy_spiritualguidence", "index": 100}, {"id": 123632, "definitionId": 128470, "maxRanks": 1, "type": "passive", "name": "Ancient Fellowship", "spellId": 443423, "icon": "spell_shaman_astralshift", "index": 200}]}, {"id": 94884, "name": "Heed My Call / Routine Communication", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94860], "prev": [94888], "entries": [{"id": 117481, "definitionId": 122493, "maxRanks": 1, "type": "passive", "name": "Heed My Call", "spellId": 443444, "icon": "spell_unused2", "index": 100}, {"id": 123630, "definitionId": 128468, "maxRanks": 1, "type": "passive", "name": "Routine Communication", "spellId": 443445, "icon": "spell_nature_undyingstrength", "index": 200}]}, {"id": 94869, "name": "Elemental Reverb", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94861], "prev": [94888], "entries": [{"id": 117466, "definitionId": 122478, "maxRanks": 1, "type": "passive", "name": "Elemental Reverb", "spellId": 443418, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 94887, "name": "Offering from Beyond", "type": "single", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94858], "prev": [94862], "entries": [{"id": 117484, "definitionId": 122496, "maxRanks": 1, "type": "passive", "name": "Offering from Beyond", "spellId": 443451, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 94860, "name": "Primordial Capacity", "type": "single", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94883], "prev": [94884], "entries": [{"id": 117457, "definitionId": 122469, "maxRanks": 1, "type": "passive", "name": "Primordial Capacity", "spellId": 443448, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 94861, "name": "Spiritwalker's Momentum", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94875], "prev": [94869], "entries": [{"id": 117458, "definitionId": 122470, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Momentum", "spellId": 443425, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 94858, "name": "Natural Harmony / Earthen Communion", "type": "choice", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94887], "entries": [{"id": 117455, "definitionId": 122467, "maxRanks": 1, "type": "passive", "name": "Natural Harmony", "spellId": 443442, "icon": "spell_nature_natureguardian", "index": 100}, {"id": 123631, "definitionId": 128469, "maxRanks": 1, "type": "passive", "name": "Earthen Communion", "spellId": 443441, "icon": "spell_nature_skinofearth", "index": 200}]}, {"id": 94883, "name": "Maelstrom Supremacy", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94860], "entries": [{"id": 117480, "definitionId": 122492, "maxRanks": 1, "type": "passive", "name": "Maelstrom Supremacy", "spellId": 443447, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 94875, "name": "Final Calling", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94861], "entries": [{"id": 117472, "definitionId": 122484, "maxRanks": 1, "type": "passive", "name": "Final Calling", "spellId": 443446, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 94894, "name": "Ancestral Swiftness", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 56, "next": [], "prev": [94883, 94858, 94875], "entries": [{"id": 117491, "definitionId": 122503, "maxRanks": 1, "type": "active", "name": "Ancestral Swiftness", "spellId": 448861, "visibleSpellId": 443454, "icon": "inv_ability_farseershaman_ancestralswiftness", "index": 100}]}, {"id": 94892, "name": "Tempest", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 55, "next": [94886, 94893, 94863], "prev": [], "entries": [{"id": 117489, "definitionId": 122501, "maxRanks": 1, "type": "passive", "name": "Tempest", "spellId": 454009, "icon": "inv_ability_stormcallershaman_tempest", "index": 100}], "freeNode": true}, {"id": 94886, "name": "Unlimited Power", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94873], "prev": [94892], "entries": [{"id": 117483, "definitionId": 122495, "maxRanks": 1, "type": "passive", "name": "Unlimited Power", "spellId": 454391, "icon": "spell_nature_purge", "index": 100}]}, {"id": 94893, "name": "Stormcaller", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94885], "prev": [94892], "entries": [{"id": 117490, "definitionId": 122502, "maxRanks": 1, "type": "passive", "name": "Stormcaller", "spellId": 454021, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94863, "name": "Lightning Conduit / Electroshock", "type": "choice", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94889], "prev": [94892], "entries": [{"id": 117460, "definitionId": 122472, "maxRanks": 1, "type": "passive", "name": "Lightning Conduit", "spellId": 467778, "icon": "spell_shaman_staticshock", "index": 100}, {"id": 128226, "definitionId": 133033, "maxRanks": 1, "type": "passive", "name": "Electroshock", "spellId": 454022, "icon": "ability_thunderking_overcharge", "index": 200}]}, {"id": 94873, "name": "Storm Swell / Supercharge", "type": "choice", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94870], "prev": [94886], "entries": [{"id": 117470, "definitionId": 122482, "maxRanks": 1, "type": "passive", "name": "Storm Swell", "spellId": 455088, "icon": "spell_nature_unrelentingstorm", "index": 100}, {"id": 128225, "definitionId": 133032, "maxRanks": 1, "type": "passive", "name": "Supercharge", "spellId": 455110, "icon": "inv_misc_stormlordsfavor", "index": 200}]}, {"id": 94885, "name": "Arc Discharge", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94868], "prev": [94893], "entries": [{"id": 117482, "definitionId": 122494, "maxRanks": 1, "type": "passive", "name": "Arc Discharge", "spellId": 455096, "icon": "ability_thunderking_balllightning", "index": 100}]}, {"id": 94889, "name": "Rolling Thunder", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94880], "prev": [94863], "entries": [{"id": 117486, "definitionId": 122498, "maxRanks": 1, "type": "passive", "name": "Rolling Thunder", "spellId": 454026, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 94870, "name": "Voltaic Surge", "type": "single", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94873], "entries": [{"id": 117467, "definitionId": 122479, "maxRanks": 1, "type": "passive", "name": "Voltaic Surge", "spellId": 454919, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 94868, "name": "Conductive Energy", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94885], "entries": [{"id": 117465, "definitionId": 122477, "maxRanks": 1, "type": "passive", "name": "Conductive Energy", "spellId": 455123, "icon": "inv_rod_enchantedcobalt", "index": 100}]}, {"id": 94880, "name": "Nature's Protection / Surging Currents", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94889], "entries": [{"id": 117477, "definitionId": 122489, "maxRanks": 1, "type": "passive", "name": "Nature's Protection", "spellId": 454027, "icon": "spell_nature_lightningshield", "index": 100}, {"id": 125617, "definitionId": 130449, "maxRanks": 1, "type": "passive", "name": "Surging Currents", "spellId": 454372, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94867, "name": "Awakening Storms", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 55, "next": [], "prev": [94868, 94870, 94880], "entries": [{"id": 117464, "definitionId": 122476, "maxRanks": 1, "type": "passive", "name": "Awakening Storms", "spellId": 455129, "icon": "spell_nature_stormreach", "index": 100}]}], "subTreeNodes": [{"id": 99845, "name": "Farseer / Stormbringer", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123377, "type": "subtree", "name": "Farseer", "traitSubTreeId": 56, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-farseer", "nodes": [94888, 94862, 94884, 94869, 94887, 94860, 94861, 94858, 94883, 94875, 94894]}, {"id": 123376, "type": "subtree", "name": "Stormbringer", "traitSubTreeId": 55, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-stormbringer", "nodes": [94892, 94886, 94893, 94863, 94873, 94885, 94889, 94870, 94868, 94880, 94867]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810, 103848, 103871, 103915]}, {"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Enhancement", "specId": 263, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}]}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}]}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}], "freeNode": true}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}], "freeNode": true}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 103608], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost_orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 103608], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [103608, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 103608, "name": "Cleanse Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103590, 103617, 103605], "entries": [{"id": 127884, "definitionId": 132693, "maxRanks": 1, "type": "active", "name": "Cleanse Spirit", "spellId": 51886, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103608, 103593, 103601], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 80941, "name": "Stormstrike", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [80958, 80942], "prev": [], "entries": [{"id": 101804, "definitionId": 106862, "maxRanks": 1, "type": "active", "name": "Stormstrike", "spellId": 17364, "icon": "ability_shaman_stormstrike", "index": 100}]}, {"id": 80958, "name": "Windfury Weapon", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [80969, 80957], "prev": [80941], "entries": [{"id": 101823, "definitionId": 106876, "maxRanks": 1, "type": "active", "name": "Windfury Weapon", "spellId": 33757, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 80942, "name": "Lava Lash", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [80957, 80943, 80956], "prev": [80941], "entries": [{"id": 101805, "definitionId": 106864, "maxRanks": 1, "type": "active", "name": "Lava Lash", "spellId": 60103, "icon": "ability_shaman_lavalash", "index": 100}]}, {"id": 80969, "name": "Forceful Winds", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [80968, 80966], "prev": [80958], "entries": [{"id": 101834, "definitionId": 106888, "maxRanks": 1, "type": "passive", "name": "Forceful Winds", "spellId": 262647, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 80957, "name": "Improved Maelstrom Weapon", "type": "single", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [80966, 80939, 80956], "prev": [80958, 80942], "entries": [{"id": 101822, "definitionId": 106865, "maxRanks": 1, "type": "passive", "name": "Improved Maelstrom Weapon", "spellId": 383303, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 80943, "name": "Molten Assault", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [80956, 80944], "prev": [80942], "entries": [{"id": 101806, "definitionId": 106863, "maxRanks": 1, "type": "passive", "name": "Molten Assault", "spellId": 334033, "icon": "spell_shaman_improvelavalash", "index": 100}]}, {"id": 80968, "name": "Unruly Winds", "type": "single", "posX": 11400, "posY": 3000, "maxRanks": 1, "next": [80959, 103642, 80967], "prev": [80969], "entries": [{"id": 101833, "definitionId": 106887, "maxRanks": 1, "type": "passive", "name": "Unruly Winds", "spellId": 390288, "icon": "ability_skyreach_wind_wall", "index": 100}]}, {"id": 80966, "name": "Tempest Strikes / Elemental Blast", "type": "choice", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [103642], "prev": [80957, 80969], "entries": [{"id": 101831, "definitionId": 106886, "maxRanks": 1, "type": "passive", "name": "Tempest Strikes", "spellId": 428071, "icon": "spell_nature_thunderclap", "index": 100}, {"id": 117750, "definitionId": 122762, "maxRanks": 1, "type": "active", "name": "Elemental Blast", "spellId": 394150, "visibleSpellId": 117014, "icon": "shaman_talent_elementalblast", "index": 200}]}, {"id": 80939, "name": "Raging Maelstrom", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [80938, 80975], "prev": [80957], "entries": [{"id": 101802, "definitionId": 106871, "maxRanks": 1, "type": "passive", "name": "Raging Maelstrom", "spellId": 384143, "icon": "spell_shaman_stormearthfire", "index": 0}]}, {"id": 80956, "name": "Ice Strike / Ice Strike", "type": "choice", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [80975, 80955], "prev": [80943, 80942, 80957], "entries": [{"id": 101821, "definitionId": 106866, "maxRanks": 1, "type": "passive", "name": "Ice Strike", "spellId": 466467, "icon": "spell_frost_frostbolt", "index": 100}, {"id": 128271, "definitionId": 133078, "maxRanks": 1, "type": "active", "name": "Ice Strike", "spellId": 470194, "icon": "spell_frost_frostbolt", "index": 200}]}, {"id": 80944, "name": "Hailstorm / Fire Nova", "type": "choice", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [80955, 80945], "prev": [80943], "entries": [{"id": 101808, "definitionId": 106900, "maxRanks": 1, "type": "passive", "name": "Hailstorm", "spellId": 334195, "icon": "spell_frost_icestorm", "index": 100}, {"id": 101807, "definitionId": 106899, "maxRanks": 1, "type": "active", "name": "Fire Nova", "spellId": 333974, "icon": "spell_shaman_improvedfirenova", "index": 200}]}, {"id": 80959, "name": "Doom Winds", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80967], "prev": [80968], "entries": [{"id": 101824, "definitionId": 106859, "maxRanks": 1, "type": "active", "name": "Doom Winds", "spellId": 384352, "icon": "ability_ironmaidens_swirlingvortex", "index": 100}]}, {"id": 103642, "name": "Flurry", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80967, 80974, 80961], "prev": [80966, 80968], "entries": [{"id": 101799, "definitionId": 106872, "maxRanks": 1, "type": "passive", "name": "Flurry", "spellId": 382888, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 80938, "name": "Overflowing Maelstrom", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80974], "prev": [80939], "entries": [{"id": 101801, "definitionId": 106880, "maxRanks": 1, "type": "passive", "name": "Overflowing Maelstrom", "spellId": 384149, "icon": "spell_shaman_maelstromweapon", "index": 0}]}, {"id": 80975, "name": "Sundering", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80974, 103848, 80954], "prev": [80956, 80939], "entries": [{"id": 101841, "definitionId": 106874, "maxRanks": 1, "type": "active", "name": "Sundering", "spellId": 197214, "icon": "ability_rhyolith_lavapool", "index": 100}]}, {"id": 80955, "name": "Swirling Maelstrom", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80954], "prev": [80956, 80944], "entries": [{"id": 101820, "definitionId": 106867, "maxRanks": 1, "type": "passive", "name": "Swirling Maelstrom", "spellId": 384359, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 80945, "name": "Hot Hand", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [80954, 80947], "prev": [80944], "entries": [{"id": 101809, "definitionId": 106898, "maxRanks": 2, "type": "passive", "name": "Hot Hand", "spellId": 201900, "icon": "spell_fire_playingwithfire", "index": 100}]}, {"id": 80967, "name": "Storm's Wrath", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80960, 103871, 80961], "prev": [80968, 80959, 103642], "entries": [{"id": 101832, "definitionId": 107009, "maxRanks": 1, "type": "passive", "name": "Storm's Wrath", "spellId": 392352, "icon": "spell_nature_stormreach", "index": 100}]}, {"id": 80974, "name": "Crash Lightning", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80961, 80973, 80953], "prev": [80938, 80975, 103642], "entries": [{"id": 101840, "definitionId": 106879, "maxRanks": 1, "type": "active", "name": "Crash Lightning", "spellId": 187874, "icon": "spell_shaman_crashlightning", "index": 100}]}, {"id": 103848, "name": "Molten Thunder", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80953], "prev": [80975], "entries": [{"id": 128237, "definitionId": 133044, "maxRanks": 1, "type": "passive", "name": "Molten Thunder", "spellId": 469344, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 80954, "name": "Stormflurry", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80953, 92219], "prev": [80955, 80945, 80975], "entries": [{"id": 101819, "definitionId": 106869, "maxRanks": 1, "type": "passive", "name": "Stormflurry", "spellId": 344357, "icon": "ability_shaman_stormstrike", "index": 100}]}, {"id": 80947, "name": "Ashen Catalyst", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80948], "prev": [80945], "entries": [{"id": 101811, "definitionId": 106897, "maxRanks": 1, "type": "passive", "name": "Ashen Catalyst", "spellId": 390370, "icon": "spell_shaman_stormearthfire", "index": 0}]}, {"id": 80960, "name": "Stormblast", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80965], "prev": [80967], "entries": [{"id": 101825, "definitionId": 106877, "maxRanks": 1, "type": "passive", "name": "Stormblast", "spellId": 319930, "icon": "spell_shaman_focusedstrikes", "index": 100}]}, {"id": 103871, "name": "Voltaic Blaze", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80965], "prev": [80967], "entries": [{"id": 128270, "definitionId": 133077, "maxRanks": 1, "type": "passive", "name": "Voltaic Blaze", "spellId": 470053, "icon": "inv_10_dungeonjewelry_primalist_trinket_1ragingelement_fire", "index": 100}]}, {"id": 80961, "name": "Elemental Weapons", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80965, 80972], "prev": [80974, 80967, 103642], "entries": [{"id": 101826, "definitionId": 106861, "maxRanks": 1, "type": "passive", "name": "Elemental Weapons", "spellId": 384355, "icon": "inv_mace_2h_draenorraid_d_03", "index": 100}]}, {"id": 80973, "name": "Converging Storms / Unrelenting Storms", "type": "choice", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80972], "prev": [80974], "entries": [{"id": 101839, "definitionId": 106878, "maxRanks": 1, "type": "passive", "name": "Converging Storms", "spellId": 384363, "icon": "warrior_talent_icon_stormbolt", "index": 100}, {"id": 128272, "definitionId": 133079, "maxRanks": 1, "type": "passive", "name": "Unrelenting Storms", "spellId": 470490, "icon": "spell_nature_lightningoverload", "index": 200}]}, {"id": 80953, "name": "Crashing Storms", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80972, 92219], "prev": [80954, 80974, 103848], "entries": [{"id": 101818, "definitionId": 106868, "maxRanks": 1, "type": "passive", "name": "Crashing Storms", "spellId": 334308, "icon": "spell_nature_chainlightning", "index": 100}]}, {"id": 80948, "name": "Lashing Flames", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [92219], "prev": [80947], "entries": [{"id": 101812, "definitionId": 106896, "maxRanks": 1, "type": "passive", "name": "Lashing Flames", "spellId": 334046, "icon": "spell_shaman_improvelavalash", "index": 100}]}, {"id": 80965, "name": "Primordial Wave", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80964, 80962], "prev": [80961, 80960, 103871], "entries": [{"id": 101830, "definitionId": 106885, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 375982, "icon": "inv_ability_shaman_primordialwave", "index": 100}]}, {"id": 80972, "name": "Feral Spirit", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80962, 80971, 80951], "prev": [80961, 80953, 80973], "entries": [{"id": 101838, "definitionId": 106892, "maxRanks": 1, "type": "active", "name": "Feral Spirit", "spellId": 51533, "icon": "spell_shaman_feralspirit", "index": 100}]}, {"id": 92219, "name": "Deeply Rooted Elements / Ascendance", "type": "choice", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80951, 80950], "prev": [80954, 80953, 80948], "entries": [{"id": 101816, "definitionId": 106894, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 100}, {"id": 114291, "definitionId": 119296, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114051, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 80964, "name": "Primal Maelstrom", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80963], "prev": [80965], "entries": [{"id": 101829, "definitionId": 106884, "maxRanks": 2, "type": "passive", "name": "Primal Maelstrom", "spellId": 384405, "icon": "shaman_talent_unleashedfury", "index": 100}]}, {"id": 80962, "name": "Elemental Assault", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [], "prev": [80972, 80965], "entries": [{"id": 101827, "definitionId": 106860, "maxRanks": 2, "type": "passive", "name": "Elemental Assault", "spellId": 210853, "icon": "spell_shaman_improvedstormstrike", "index": 100}]}, {"id": 80971, "name": "Witch Doctor's Ancestry / Flowing Spirits", "type": "choice", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80970], "prev": [80972], "entries": [{"id": 101837, "definitionId": 106891, "maxRanks": 1, "type": "passive", "name": "Witch Doctor's Ancestry", "spellId": 384447, "icon": "inv_misc_bone_09", "index": 100}, {"id": 128236, "definitionId": 133043, "maxRanks": 1, "type": "passive", "name": "Flowing Spirits", "spellId": 469314, "icon": "inv_jewelry_frostwolftrinket_02", "index": 200}]}, {"id": 80951, "name": "Legacy of the Frost Witch", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [], "prev": [80972, 92219], "entries": [{"id": 101815, "definitionId": 106893, "maxRanks": 2, "type": "passive", "name": "Legacy of the Frost Witch", "spellId": 384450, "icon": "ability_thunderking_thunderstruck", "index": 100}]}, {"id": 80950, "name": "Static Accumulation", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80949], "prev": [92219], "entries": [{"id": 101814, "definitionId": 106881, "maxRanks": 2, "type": "passive", "name": "Static Accumulation", "spellId": 384411, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 80963, "name": "Splintered Elements", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80964], "entries": [{"id": 101828, "definitionId": 106883, "maxRanks": 1, "type": "passive", "name": "Splintered Elements", "spellId": 382042, "icon": "spell_nature_elementalprecision_1", "index": 100}]}, {"id": 80970, "name": "Elemental Spirits / Alpha Wolf", "type": "choice", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80971], "entries": [{"id": 101836, "definitionId": 106890, "maxRanks": 1, "type": "passive", "name": "Elemental Spirits", "spellId": 262624, "icon": "spell_shaman_feralspirit", "index": 100}, {"id": 101835, "definitionId": 106889, "maxRanks": 1, "type": "passive", "name": "Alpha Wolf", "spellId": 198434, "icon": "spell_beastmaster_wolf", "index": 200}]}, {"id": 80949, "name": "Thorim's Invocation", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80950], "entries": [{"id": 101813, "definitionId": 106882, "maxRanks": 1, "type": "passive", "name": "Thorim's Invocation", "spellId": 384444, "icon": "spell_shaman_ancestralawakening", "index": 100}]}], "heroNodes": [{"id": 94877, "name": "Surging Totem", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 54, "next": [94890, 94874, 94882], "prev": [], "entries": [{"id": 117474, "definitionId": 122486, "maxRanks": 1, "type": "active", "name": "Surging Totem", "spellId": 455630, "visibleSpellId": 444995, "icon": "inv_ability_totemicshaman_surgingtotem", "index": 100}], "freeNode": true}, {"id": 94890, "name": "Totemic Rebound", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94859], "prev": [94877], "entries": [{"id": 117487, "definitionId": 122499, "maxRanks": 1, "type": "passive", "name": "Totemic Rebound", "spellId": 445025, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94874, "name": "Amplification Core / Oversurge", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94891], "prev": [94877], "entries": [{"id": 117471, "definitionId": 122483, "maxRanks": 1, "type": "passive", "name": "Amplification Core", "spellId": 445029, "icon": "ability_evoker_essenceburststacks", "index": 100}, {"id": 125823, "definitionId": 130654, "maxRanks": 1, "type": "passive", "name": "Oversurge", "spellId": 445030, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 94882, "name": "Lively Totems", "type": "single", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "requiresNode": 80942, "next": [94872], "prev": [94877], "entries": [{"id": 117479, "definitionId": 122491, "maxRanks": 1, "type": "passive", "name": "Lively Totems", "spellId": 445034, "icon": "spell_fire_searingtotem", "index": 100}]}, {"id": 94859, "name": "Oversized Totems / Swift Recall", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94871], "prev": [94890], "entries": [{"id": 117456, "definitionId": 122468, "maxRanks": 1, "type": "passive", "name": "Oversized Totems", "spellId": 445026, "icon": "ability_shaman_totemrelocation", "index": 100}, {"id": 125825, "definitionId": 130656, "maxRanks": 1, "type": "passive", "name": "Swift Recall", "spellId": 445027, "icon": "spell_nature_brilliance", "index": 200}]}, {"id": 94891, "name": "Wind Barrier", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94866], "prev": [94874], "entries": [{"id": 117488, "definitionId": 122500, "maxRanks": 1, "type": "passive", "name": "Wind Barrier", "spellId": 445031, "icon": "spell_nature_eyeofthestorm", "index": 100}]}, {"id": 94872, "name": "Reactivity", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "requiresNode": 103590, "next": [94881], "prev": [94882], "entries": [{"id": 117469, "definitionId": 122481, "maxRanks": 1, "type": "passive", "name": "Reactivity", "spellId": 445035, "icon": "spell_fire_totemofwrath", "index": 100}]}, {"id": 94871, "name": "Imbuement Mastery", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "requiresNode": 81049, "next": [94879], "prev": [94859], "entries": [{"id": 117468, "definitionId": 122480, "maxRanks": 1, "type": "passive", "name": "Imbuement Mastery", "spellId": 445028, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 94866, "name": "Pulse Capacitor / Supportive Imbuements", "type": "choice", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94891], "entries": [{"id": 117463, "definitionId": 122475, "maxRanks": 1, "type": "passive", "name": "Pulse Capacitor", "spellId": 445032, "icon": "spell_nature_elementalprecision_1", "index": 100}, {"id": 125824, "definitionId": 130655, "maxRanks": 1, "type": "passive", "name": "Supportive Imbuements", "spellId": 445033, "icon": "ability_shaman_fortifyingwaters", "index": 200}]}, {"id": 94881, "name": "Totemic Coordination / Earthsurge", "type": "choice", "posX": 16200, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94872], "entries": [{"id": 117478, "definitionId": 122490, "maxRanks": 1, "type": "passive", "name": "Totemic Coordination", "spellId": 445036, "icon": "ability_shaman_echooftheelements", "index": 100}, {"id": 125822, "definitionId": 130653, "maxRanks": 1, "type": "passive", "name": "Earthsurge", "spellId": 455590, "icon": "inv_elementalearth2", "index": 200}]}, {"id": 94879, "name": "Whirling Elements", "type": "single", "posX": 15600, "posY": 3600, "maxRanks": 1, "subTreeId": 54, "next": [], "prev": [94866, 94871, 94881], "entries": [{"id": 117476, "definitionId": 122488, "maxRanks": 1, "type": "passive", "name": "Whirling Elements", "spellId": 445024, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}, {"id": 94892, "name": "Tempest", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 55, "next": [94886, 94893, 94863], "prev": [], "entries": [{"id": 117489, "definitionId": 122501, "maxRanks": 1, "type": "passive", "name": "Tempest", "spellId": 454009, "icon": "inv_ability_stormcallershaman_tempest", "index": 100}], "freeNode": true}, {"id": 94886, "name": "Unlimited Power", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94873], "prev": [94892], "entries": [{"id": 117483, "definitionId": 122495, "maxRanks": 1, "type": "passive", "name": "Unlimited Power", "spellId": 454391, "icon": "spell_nature_purge", "index": 100}]}, {"id": 94893, "name": "Stormcaller", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94885], "prev": [94892], "entries": [{"id": 117490, "definitionId": 122502, "maxRanks": 1, "type": "passive", "name": "Stormcaller", "spellId": 454021, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94863, "name": "Lightning Conduit / Electroshock", "type": "choice", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94889], "prev": [94892], "entries": [{"id": 117460, "definitionId": 122472, "maxRanks": 1, "type": "passive", "name": "Lightning Conduit", "spellId": 467778, "icon": "spell_shaman_staticshock", "index": 100}, {"id": 128226, "definitionId": 133033, "maxRanks": 1, "type": "passive", "name": "Electroshock", "spellId": 454022, "icon": "ability_thunderking_overcharge", "index": 200}]}, {"id": 94873, "name": "Storm Swell / Supercharge", "type": "choice", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94870], "prev": [94886], "entries": [{"id": 117470, "definitionId": 122482, "maxRanks": 1, "type": "passive", "name": "Storm Swell", "spellId": 455088, "icon": "spell_nature_unrelentingstorm", "index": 100}, {"id": 128225, "definitionId": 133032, "maxRanks": 1, "type": "passive", "name": "Supercharge", "spellId": 455110, "icon": "inv_misc_stormlordsfavor", "index": 200}]}, {"id": 94885, "name": "Arc Discharge", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94868], "prev": [94893], "entries": [{"id": 117482, "definitionId": 122494, "maxRanks": 1, "type": "passive", "name": "Arc Discharge", "spellId": 455096, "icon": "ability_thunderking_balllightning", "index": 100}]}, {"id": 94889, "name": "Rolling Thunder", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94880], "prev": [94863], "entries": [{"id": 117486, "definitionId": 122498, "maxRanks": 1, "type": "passive", "name": "Rolling Thunder", "spellId": 454026, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 94870, "name": "Voltaic Surge", "type": "single", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94873], "entries": [{"id": 117467, "definitionId": 122479, "maxRanks": 1, "type": "passive", "name": "Voltaic Surge", "spellId": 454919, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 94868, "name": "Conductive Energy", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94885], "entries": [{"id": 117465, "definitionId": 122477, "maxRanks": 1, "type": "passive", "name": "Conductive Energy", "spellId": 455123, "icon": "inv_rod_enchantedcobalt", "index": 100}]}, {"id": 94880, "name": "Nature's Protection / Surging Currents", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94889], "entries": [{"id": 117477, "definitionId": 122489, "maxRanks": 1, "type": "passive", "name": "Nature's Protection", "spellId": 454027, "icon": "spell_nature_lightningshield", "index": 100}, {"id": 125617, "definitionId": 130449, "maxRanks": 1, "type": "passive", "name": "Surging Currents", "spellId": 454372, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94867, "name": "Awakening Storms", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 55, "next": [], "prev": [94868, 94870, 94880], "entries": [{"id": 117464, "definitionId": 122476, "maxRanks": 1, "type": "passive", "name": "Awakening Storms", "spellId": 455129, "icon": "spell_nature_stormreach", "index": 100}]}], "subTreeNodes": [{"id": 99847, "name": "Stormbringer / Totemic", "type": "subtree", "posX": 8100, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123381, "type": "subtree", "name": "Stormbringer", "traitSubTreeId": 55, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-stormbringer", "nodes": [94892, 94886, 94893, 94863, 94873, 94885, 94889, 94870, 94868, 94880, 94867]}, {"id": 123379, "type": "subtree", "name": "Totemic", "traitSubTreeId": 54, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-totemic", "nodes": [94877, 94890, 94874, 94882, 94859, 94891, 94872, 94871, 94866, 94881, 94879]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810, 103848, 103871, 103915]}, {"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Restoration", "specId": 264, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}], "freeNode": true}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}], "freeNode": true}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}]}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}]}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 81073], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost_orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 81073], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [81073, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 81073, "name": "Improved Purify Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103617, 103590, 103605], "entries": [{"id": 101964, "definitionId": 106962, "maxRanks": 1, "type": "passive", "name": "Improved Purify Spirit", "spellId": 383016, "icon": "ability_shaman_cleansespirit", "index": 0}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103593, 103601, 81073], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 81027, "name": "Riptide", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [81040, 81022, 81026], "prev": [], "entries": [{"id": 101905, "definitionId": 106805, "maxRanks": 1, "type": "active", "name": "Riptide", "spellId": 61295, "icon": "spell_nature_riptide", "index": 100}]}, {"id": 81040, "name": "Healing Rain", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [103428, 81039], "prev": [81027], "entries": [{"id": 101923, "definitionId": 106911, "maxRanks": 1, "type": "active", "name": "Healing Rain", "spellId": 73920, "icon": "spell_nature_giftofthewaterspirit", "index": 100}]}, {"id": 81022, "name": "Healing Stream Totem", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [81021], "prev": [81027], "entries": [{"id": 101900, "definitionId": 106920, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392916, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103428, "name": "Deluge", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [92677, 103429, 81038], "prev": [81040], "entries": [{"id": 127672, "definitionId": 132481, "maxRanks": 1, "type": "passive", "name": "Deluge", "spellId": 200076, "icon": "ability_shawaterelemental_reform", "index": 100}]}, {"id": 81039, "name": "Acid Rain", "type": "single", "posX": 12000, "posY": 2400, "maxRanks": 1, "next": [103429], "prev": [81040], "entries": [{"id": 101922, "definitionId": 106910, "maxRanks": 1, "type": "passive", "name": "Acid Rain", "spellId": 378443, "icon": "spell_nature_acid_01", "index": 200}]}, {"id": 81026, "name": "Healing Wave", "type": "single", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [103429, 81024, 81033], "prev": [81027], "entries": [{"id": 101904, "definitionId": 106918, "maxRanks": 1, "type": "active", "name": "Healing Wave", "spellId": 77472, "icon": "spell_nature_healingwavelesser", "index": 100}]}, {"id": 81021, "name": "Tidal Waves", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [81024, 81018], "prev": [81022], "entries": [{"id": 101899, "definitionId": 106921, "maxRanks": 1, "type": "passive", "name": "Tidal Waves", "spellId": 51564, "icon": "spell_shaman_tidalwaves", "index": 100}]}, {"id": 92677, "name": "Overflowing Shores", "type": "single", "posX": 10800, "posY": 3000, "maxRanks": 1, "next": [81047], "prev": [103428], "entries": [{"id": 114813, "definitionId": 119820, "maxRanks": 1, "type": "passive", "name": "Overflowing Shores", "spellId": 383222, "icon": "spell_nature_giftofthewaterspirit", "index": 100}]}, {"id": 103429, "name": "Ancestral Vigor", "type": "single", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [81038], "prev": [103428, 81026, 81039], "entries": [{"id": 127673, "definitionId": 132482, "maxRanks": 1, "type": "passive", "name": "Ancestral Vigor", "spellId": 207401, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 81024, "name": "Resurgence", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [81019], "prev": [81026, 81021], "entries": [{"id": 101902, "definitionId": 106916, "maxRanks": 1, "type": "passive", "name": "Resurgence", "spellId": 16196, "icon": "ability_shaman_watershield", "index": 100}]}, {"id": 81018, "name": "Water Totem Mastery", "type": "single", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [81019, 81048], "prev": [81021], "entries": [{"id": 101895, "definitionId": 106925, "maxRanks": 1, "type": "passive", "name": "Water Totem Mastery", "spellId": 382030, "icon": "ability_shaman_totemcooldownrefund", "index": 100}]}, {"id": 81038, "name": "White Water", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81047, 81032, 81037], "prev": [103428, 103429], "entries": [{"id": 101920, "definitionId": 106908, "maxRanks": 1, "type": "passive", "name": "White Water", "spellId": 462587, "icon": "ability_shawaterelemental_swirl", "index": 100}]}, {"id": 81033, "name": "Spirit Link Totem", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81032, 103432, 81045], "prev": [81026], "entries": [{"id": 101913, "definitionId": 106933, "maxRanks": 1, "type": "active", "name": "Spirit Link Totem", "spellId": 98008, "icon": "spell_shaman_spiritlink", "index": 100}]}, {"id": 81019, "name": "Master of the Elements", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81045, 81031, 81046], "prev": [81018, 81024], "entries": [{"id": 101896, "definitionId": 106923, "maxRanks": 1, "type": "passive", "name": "Master of the Elements", "spellId": 462375, "icon": "spell_nature_elementalabsorption", "index": 300}]}, {"id": 81048, "name": "Living Stream / Cloudburst Totem", "type": "choice", "posX": 15000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81031, 81049], "prev": [81018], "entries": [{"id": 101934, "definitionId": 106927, "maxRanks": 1, "type": "passive", "name": "Living Stream", "spellId": 382482, "icon": "spell_nature_natureresistancetotem", "index": 100}, {"id": 101933, "definitionId": 106926, "maxRanks": 1, "type": "active", "name": "Cloudburst Totem", "spellId": 157153, "icon": "ability_shaman_condensationtotem", "index": 200}]}, {"id": 81047, "name": "Torrent", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81037, 103436], "prev": [81038, 92677], "entries": [{"id": 101932, "definitionId": 106929, "maxRanks": 1, "type": "passive", "name": "Torrent", "spellId": 200072, "icon": "spell_nature_riptide", "index": 100}]}, {"id": 81032, "name": "Healing Tide Totem", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81037, 92675, 81044], "prev": [81038, 81033], "entries": [{"id": 101912, "definitionId": 106942, "maxRanks": 1, "type": "active", "name": "Healing Tide Totem", "spellId": 108280, "icon": "ability_shaman_healingtide", "index": 100}]}, {"id": 103432, "name": "Spouting Spirits", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81044], "prev": [81033], "entries": [{"id": 127678, "definitionId": 132487, "maxRanks": 1, "type": "passive", "name": "Spouting Spirits", "spellId": 462383, "icon": "spell_shaman_spiritlink", "index": 100}]}, {"id": 81045, "name": "Mana Tide Totem", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81044, 92681, 81046], "prev": [81019, 81033], "entries": [{"id": 101929, "definitionId": 106932, "maxRanks": 1, "type": "active", "name": "Mana Tide Totem", "spellId": 16191, "icon": "ability_shaman_manatidetotem", "index": 100}]}, {"id": 81031, "name": "Ancestral Reach / Flow of the Tides", "type": "choice", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81046, 81049], "prev": [81048, 81019], "entries": [{"id": 101911, "definitionId": 106944, "maxRanks": 1, "type": "passive", "name": "Ancestral Reach", "spellId": 382732, "icon": "spell_nature_healingwavegreater", "index": 100}, {"id": 101910, "definitionId": 106943, "maxRanks": 1, "type": "passive", "name": "Flow of the Tides", "spellId": 382039, "icon": "spell_frost_manarecharge", "index": 200}]}, {"id": 81037, "name": "Undulation / Unleash Life", "type": "choice", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103436, 81055], "prev": [81032, 81047, 81038], "entries": [{"id": 101919, "definitionId": 106907, "maxRanks": 1, "type": "passive", "name": "Undulation", "spellId": 200071, "icon": "spell_nature_healingway", "index": 100}, {"id": 101918, "definitionId": 106906, "maxRanks": 1, "type": "active", "name": "Unleash Life", "spellId": 73685, "icon": "spell_shaman_unleashweapon_life", "index": 200}]}, {"id": 92675, "name": "Current Control / Tide Turner", "type": "choice", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81055], "prev": [81032], "entries": [{"id": 114811, "definitionId": 119818, "maxRanks": 1, "type": "passive", "name": "Current Control", "spellId": 404015, "icon": "ability_shaman_healingtide", "index": 100}, {"id": 114810, "definitionId": 119817, "maxRanks": 1, "type": "passive", "name": "Tide Turner", "spellId": 404019, "icon": "ability_deathknight_frozencenter", "index": 200}]}, {"id": 81044, "name": "Echo of the Elements", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81055, 81041], "prev": [81045, 81032, 103432], "entries": [{"id": 101928, "definitionId": 106941, "maxRanks": 1, "type": "passive", "name": "Echo of the Elements", "spellId": 333919, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 92681, "name": "Spiritwalker's Tidal Totem", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81041], "prev": [81045], "entries": [{"id": 114817, "definitionId": 119824, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Tidal Totem", "spellId": 404522, "icon": "spell_nature_regeneration_02", "index": 200}]}, {"id": 81046, "name": "Earthen Wall Totem / Ancestral Protection Totem", "type": "choice", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81041, 103430], "prev": [81045, 81031, 81019], "entries": [{"id": 101931, "definitionId": 106931, "maxRanks": 1, "type": "active", "name": "Earthen Wall Totem", "spellId": 198838, "icon": "spell_nature_stoneskintotem", "index": 100}, {"id": 101930, "definitionId": 106930, "maxRanks": 1, "type": "active", "name": "Ancestral Protection Totem", "spellId": 207399, "icon": "spell_nature_reincarnation", "index": 200}]}, {"id": 81049, "name": "Earthliving Weapon", "type": "single", "posX": 15000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103430, 81050], "prev": [81048, 81031], "entries": [{"id": 101935, "definitionId": 106928, "maxRanks": 1, "type": "active", "name": "Earthliving Weapon", "spellId": 382021, "icon": "spell_shaman_giftearthmother", "index": 100}]}, {"id": 103436, "name": "Primal Tide Core", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103434, 81052], "prev": [81047, 81037], "entries": [{"id": 127682, "definitionId": 132491, "maxRanks": 1, "type": "passive", "name": "Primal Tide Core", "spellId": 382045, "icon": "ability_shaman_repulsiontotem", "index": 100}]}, {"id": 81055, "name": "Ascendance", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81052, 103433, 103427], "prev": [92675, 81037, 81044], "entries": [{"id": 101942, "definitionId": 106939, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114052, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 81041, "name": "Tidebringer", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103427, 103915, 81043], "prev": [92681, 81046, 81044], "entries": [{"id": 101924, "definitionId": 106915, "maxRanks": 1, "type": "passive", "name": "Tidebringer", "spellId": 236501, "icon": "spell_shaman_blessingofeternals", "index": 100}]}, {"id": 103430, "name": "Earthen Harmony", "type": "single", "posX": 14400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81043, 103435], "prev": [81049, 81046], "entries": [{"id": 127674, "definitionId": 132483, "maxRanks": 1, "type": "passive", "name": "Earthen Harmony", "spellId": 382020, "icon": "spell_shaman_improvedearthshield", "index": 100}]}, {"id": 103434, "name": "Tidewaters", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81036], "prev": [103436], "entries": [{"id": 127680, "definitionId": 132489, "maxRanks": 1, "type": "passive", "name": "Tidewaters", "spellId": 462424, "icon": "ability_shawaterelemental_split", "index": 100}]}, {"id": 81052, "name": "Undercurrent", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [81036, 80976], "prev": [103436, 81055], "entries": [{"id": 101939, "definitionId": 106935, "maxRanks": 2, "type": "passive", "name": "Undercurrent", "spellId": 382194, "icon": "spell_fire_bluehellfire", "index": 100}]}, {"id": 103433, "name": "First Ascendant / Preeminence", "type": "choice", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80976], "prev": [81055], "entries": [{"id": 127679, "definitionId": 132488, "maxRanks": 1, "type": "passive", "name": "First Ascendant", "spellId": 462440, "icon": "spell_shaman_astralshift", "index": 100}, {"id": 127675, "definitionId": 132484, "maxRanks": 1, "type": "passive", "name": "Preeminence", "spellId": 462443, "icon": "spell_shaman_improvedreincarnation", "index": 200}]}, {"id": 103427, "name": "Wavespeaker's Blessing", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80976, 81042], "prev": [81041, 81055], "entries": [{"id": 127671, "definitionId": 132480, "maxRanks": 2, "type": "passive", "name": "Wavespeaker's Blessing", "spellId": 381946, "icon": "inv_alchemist_81_spiritedalchemiststone", "index": 100}]}, {"id": 103915, "name": "Coalescing Water", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81042], "prev": [81041], "entries": [{"id": 128332, "definitionId": 133139, "maxRanks": 1, "type": "passive", "name": "Coalescing Water", "spellId": 470076, "icon": "inv_helm_mail_raidshamanmythic_s_01", "index": 100}]}, {"id": 81043, "name": "Ancestral Awakening", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [81042, 81051], "prev": [81041, 103430], "entries": [{"id": 101927, "definitionId": 106914, "maxRanks": 2, "type": "passive", "name": "Ancestral Awakening", "spellId": 382309, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 103435, "name": "Reactive Warding", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81051], "prev": [103430], "entries": [{"id": 127681, "definitionId": 132490, "maxRanks": 1, "type": "passive", "name": "Reactive Warding", "spellId": 462454, "icon": "inv_10_elementalcombinedfoozles_water", "index": 100}]}, {"id": 81050, "name": "Improved Earthliving Weapon", "type": "single", "posX": 15000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81051], "prev": [81049], "entries": [{"id": 101936, "definitionId": 106938, "maxRanks": 1, "type": "passive", "name": "Improved Earthliving Weapon", "spellId": 382315, "icon": "spell_shaman_giftearthmother", "index": 100}]}, {"id": 81036, "name": "Primordial Wave", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103434, 81052], "entries": [{"id": 101917, "definitionId": 106905, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 428332, "icon": "ability_maldraxxus_shaman", "index": 100}]}, {"id": 80976, "name": "Downpour", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103427, 103433, 81052], "entries": [{"id": 101842, "definitionId": 106901, "maxRanks": 1, "type": "passive", "name": "Downpour", "spellId": 462486, "icon": "ability_mage_waterjet", "index": 100}]}, {"id": 81042, "name": "High Tide", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103427, 81043, 103915], "entries": [{"id": 101925, "definitionId": 106912, "maxRanks": 1, "type": "passive", "name": "High Tide", "spellId": 157154, "icon": "spell_shaman_hightide", "index": 400}]}, {"id": 81051, "name": "Deeply Rooted Elements / Wellspring", "type": "choice", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81050, 81043, 103435], "entries": [{"id": 101937, "definitionId": 106936, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 300}, {"id": 127676, "definitionId": 132485, "maxRanks": 1, "type": "active", "name": "Wellspring", "spellId": 197995, "icon": "ability_shawaterelemental_split", "index": 400}]}], "heroNodes": [{"id": 94888, "name": "Call of the Ancestors", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 56, "requiresNode": 81037, "next": [94862, 94869, 94884], "prev": [], "entries": [{"id": 117485, "definitionId": 122497, "maxRanks": 1, "type": "passive", "name": "Call of the Ancestors", "spellId": 443450, "icon": "ability_racial_ancestralcall", "index": 100}], "freeNode": true}, {"id": 94877, "name": "Surging Totem", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 54, "next": [94890, 94874, 94882], "prev": [], "entries": [{"id": 117474, "definitionId": 122486, "maxRanks": 1, "type": "active", "name": "Surging Totem", "spellId": 455630, "visibleSpellId": 444995, "icon": "inv_ability_totemicshaman_surgingtotem", "index": 100}], "freeNode": true}, {"id": 94862, "name": "Latent Wisdom / Ancient Fellowship", "type": "choice", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94887], "prev": [94888], "entries": [{"id": 117459, "definitionId": 122471, "maxRanks": 1, "type": "passive", "name": "Latent Wisdom", "spellId": 443449, "icon": "spell_holy_spiritualguidence", "index": 100}, {"id": 123632, "definitionId": 128470, "maxRanks": 1, "type": "passive", "name": "Ancient Fellowship", "spellId": 443423, "icon": "spell_shaman_astralshift", "index": 200}]}, {"id": 94884, "name": "Heed My Call / Routine Communication", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94860], "prev": [94888], "entries": [{"id": 117481, "definitionId": 122493, "maxRanks": 1, "type": "passive", "name": "Heed My Call", "spellId": 443444, "icon": "spell_unused2", "index": 100}, {"id": 123630, "definitionId": 128468, "maxRanks": 1, "type": "passive", "name": "Routine Communication", "spellId": 443445, "icon": "spell_nature_undyingstrength", "index": 200}]}, {"id": 94869, "name": "Elemental Reverb", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94861], "prev": [94888], "entries": [{"id": 117466, "definitionId": 122478, "maxRanks": 1, "type": "passive", "name": "Elemental Reverb", "spellId": 443418, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 94890, "name": "Totemic Rebound", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94859], "prev": [94877], "entries": [{"id": 117487, "definitionId": 122499, "maxRanks": 1, "type": "passive", "name": "Totemic Rebound", "spellId": 445025, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94874, "name": "Amplification Core / Oversurge", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94891], "prev": [94877], "entries": [{"id": 117471, "definitionId": 122483, "maxRanks": 1, "type": "passive", "name": "Amplification Core", "spellId": 445029, "icon": "ability_evoker_essenceburststacks", "index": 100}, {"id": 125823, "definitionId": 130654, "maxRanks": 1, "type": "passive", "name": "Oversurge", "spellId": 445030, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 94882, "name": "Lively Totems", "type": "single", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "requiresNode": 80942, "next": [94872], "prev": [94877], "entries": [{"id": 117479, "definitionId": 122491, "maxRanks": 1, "type": "passive", "name": "Lively Totems", "spellId": 445034, "icon": "spell_fire_searingtotem", "index": 100}]}, {"id": 94887, "name": "Offering from Beyond", "type": "single", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94858], "prev": [94862], "entries": [{"id": 117484, "definitionId": 122496, "maxRanks": 1, "type": "passive", "name": "Offering from Beyond", "spellId": 443451, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 94860, "name": "Primordial Capacity", "type": "single", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94883], "prev": [94884], "entries": [{"id": 117457, "definitionId": 122469, "maxRanks": 1, "type": "passive", "name": "Primordial Capacity", "spellId": 443448, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 94861, "name": "Spiritwalker's Momentum", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94875], "prev": [94869], "entries": [{"id": 117458, "definitionId": 122470, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Momentum", "spellId": 443425, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 94859, "name": "Oversized Totems / Swift Recall", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94871], "prev": [94890], "entries": [{"id": 117456, "definitionId": 122468, "maxRanks": 1, "type": "passive", "name": "Oversized Totems", "spellId": 445026, "icon": "ability_shaman_totemrelocation", "index": 100}, {"id": 125825, "definitionId": 130656, "maxRanks": 1, "type": "passive", "name": "Swift Recall", "spellId": 445027, "icon": "spell_nature_brilliance", "index": 200}]}, {"id": 94891, "name": "Wind Barrier", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94866], "prev": [94874], "entries": [{"id": 117488, "definitionId": 122500, "maxRanks": 1, "type": "passive", "name": "Wind Barrier", "spellId": 445031, "icon": "spell_nature_eyeofthestorm", "index": 100}]}, {"id": 94872, "name": "Reactivity", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "requiresNode": 103590, "next": [94881], "prev": [94882], "entries": [{"id": 117469, "definitionId": 122481, "maxRanks": 1, "type": "passive", "name": "Reactivity", "spellId": 445035, "icon": "spell_fire_totemofwrath", "index": 100}]}, {"id": 94858, "name": "Natural Harmony / Earthen Communion", "type": "choice", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94887], "entries": [{"id": 117455, "definitionId": 122467, "maxRanks": 1, "type": "passive", "name": "Natural Harmony", "spellId": 443442, "icon": "spell_nature_natureguardian", "index": 100}, {"id": 123631, "definitionId": 128469, "maxRanks": 1, "type": "passive", "name": "Earthen Communion", "spellId": 443441, "icon": "spell_nature_skinofearth", "index": 200}]}, {"id": 94883, "name": "Maelstrom Supremacy", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94860], "entries": [{"id": 117480, "definitionId": 122492, "maxRanks": 1, "type": "passive", "name": "Maelstrom Supremacy", "spellId": 443447, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 94875, "name": "Final Calling", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94861], "entries": [{"id": 117472, "definitionId": 122484, "maxRanks": 1, "type": "passive", "name": "Final Calling", "spellId": 443446, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 94871, "name": "Imbuement Mastery", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "requiresNode": 81049, "next": [94879], "prev": [94859], "entries": [{"id": 117468, "definitionId": 122480, "maxRanks": 1, "type": "passive", "name": "Imbuement Mastery", "spellId": 445028, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 94866, "name": "Pulse Capacitor / Supportive Imbuements", "type": "choice", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94891], "entries": [{"id": 117463, "definitionId": 122475, "maxRanks": 1, "type": "passive", "name": "Pulse Capacitor", "spellId": 445032, "icon": "spell_nature_elementalprecision_1", "index": 100}, {"id": 125824, "definitionId": 130655, "maxRanks": 1, "type": "passive", "name": "Supportive Imbuements", "spellId": 445033, "icon": "ability_shaman_fortifyingwaters", "index": 200}]}, {"id": 94881, "name": "Totemic Coordination / Earthsurge", "type": "choice", "posX": 16200, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94872], "entries": [{"id": 117478, "definitionId": 122490, "maxRanks": 1, "type": "passive", "name": "Totemic Coordination", "spellId": 445036, "icon": "ability_shaman_echooftheelements", "index": 100}, {"id": 125822, "definitionId": 130653, "maxRanks": 1, "type": "passive", "name": "Earthsurge", "spellId": 455590, "icon": "inv_elementalearth2", "index": 200}]}, {"id": 94894, "name": "Ancestral Swiftness", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 56, "next": [], "prev": [94883, 94858, 94875], "entries": [{"id": 117491, "definitionId": 122503, "maxRanks": 1, "type": "active", "name": "Ancestral Swiftness", "spellId": 448861, "visibleSpellId": 443454, "icon": "inv_ability_farseershaman_ancestralswiftness", "index": 100}]}, {"id": 94879, "name": "Whirling Elements", "type": "single", "posX": 15600, "posY": 3600, "maxRanks": 1, "subTreeId": 54, "next": [], "prev": [94866, 94871, 94881], "entries": [{"id": 117476, "definitionId": 122488, "maxRanks": 1, "type": "passive", "name": "Whirling Elements", "spellId": 445024, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}], "subTreeNodes": [{"id": 99846, "name": "Farseer / Totemic", "type": "subtree", "posX": 9000, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123380, "type": "subtree", "name": "Farseer", "traitSubTreeId": 56, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-farseer", "nodes": [94888, 94862, 94884, 94869, 94887, 94860, 94861, 94858, 94883, 94875, 94894]}, {"id": 123378, "type": "subtree", "name": "Totemic", "traitSubTreeId": 54, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-totemic", "nodes": [94877, 94890, 94874, 94882, 94859, 94891, 94872, 94871, 94866, 94881, 94879]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810, 103848, 103871, 103915]}, {"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Holy", "specId": 65, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103859, 81602, 81508], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}], "freeNode": true}, {"id": 81600, "name": "Auras of the Resolute", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81602, 81598, 81632], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}], "freeNode": true}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81598, 93010, 92220], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81508, "name": "Improved Cleanse", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [103858, 81613], "prev": [81597], "entries": [{"id": 102477, "definitionId": 107482, "maxRanks": 1, "type": "passive", "name": "Improved Cleanse", "spellId": 393024, "icon": "spell_holy_purify", "index": 100}]}, {"id": 103859, "name": "Empyreal Ward", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [81613], "prev": [81597], "entries": [{"id": 128255, "definitionId": 133062, "maxRanks": 1, "type": "passive", "name": "Empyreal Ward", "spellId": 387791, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [81613, 81632], "prev": [81600, 81597], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 1, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 103854, 92220], "prev": [81510, 81600], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [103855], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 103858, "name": "A Just Reward", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [103860], "prev": [81508], "entries": [{"id": 128254, "definitionId": 133061, "maxRanks": 1, "type": "passive", "name": "A Just Reward", "spellId": 469411, "icon": "spell_holy_blindingheal", "index": 100}]}, {"id": 81613, "name": "Afterimage", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [103860, 81630], "prev": [81508, 103859, 81602], "entries": [{"id": 102601, "definitionId": 107606, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [103857, 81605, 81631], "prev": [81602, 81598, 81600], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}], "freeNode": true}, {"id": 103854, "name": "Light's Countenance", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [81598], "entries": [{"id": 128247, "definitionId": 133054, "maxRanks": 1, "type": "passive", "name": "Light's Countenance", "spellId": 469325, "icon": "inv_shoulder_raidpaladindragon_d_01", "index": 100}]}, {"id": 92220, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 93009], "prev": [81510, 81598], "entries": [{"id": 114292, "definitionId": 119297, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231644, "icon": "spell_holy_righteousfury", "index": 0}]}, {"id": 103855, "name": "Wrench Evil / Stand Against Evil", "type": "choice", "posX": 6600, "posY": 2700, "maxRanks": 1, "next": [81604], "prev": [93010], "entries": [{"id": 128250, "definitionId": 133057, "maxRanks": 1, "type": "passive", "name": "Wrench Evil", "spellId": 460720, "icon": "ability_paladin_turnevil", "index": 100}, {"id": 128249, "definitionId": 133056, "maxRanks": 1, "type": "passive", "name": "Stand Against Evil", "spellId": 469317, "icon": "spell_holy_excorcism", "index": 200}]}, {"id": 103860, "name": "Holy Reprieve", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81630, 93168], "prev": [103858, 81613], "entries": [{"id": 128256, "definitionId": 133063, "maxRanks": 1, "type": "passive", "name": "Holy Reprieve", "spellId": 469445, "icon": "spell_holy_sealofsalvation", "index": 100}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81630, 81496, 81614], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 103857, "name": "Divine Spurs", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [], "prev": [81632], "entries": [{"id": 128253, "definitionId": 133060, "maxRanks": 1, "type": "passive", "name": "Divine Spurs", "spellId": 469409, "icon": "ability_mount_charger", "index": 100}]}, {"id": 81631, "name": "Steed of Liberty / Blessing of Freedom", "type": "choice", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81496, 93520, 93009], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Steed of Liberty", "spellId": 469304, "icon": "spell_holy_crusaderaura", "index": 200}, {"id": 128251, "definitionId": 133058, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 300}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93009, 93165], "prev": [92220, 103855], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93168, 81614, 81609], "prev": [103860, 81613, 81605], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93180, 81614, 81616], "prev": [81631, 81605], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "inv_ability_paladin_divinetoll", "index": 100}]}, {"id": 93520, "name": "Echoing Blessings", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616], "prev": [81631], "entries": [{"id": 115872, "definitionId": 120884, "maxRanks": 1, "type": "passive", "name": "Echoing Blessings", "spellId": 387801, "icon": "achievement_dungeon_heroic_gloryoftheraider", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81543, 81616, 81615], "prev": [81604, 92220, 81631], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81543], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 93168, "name": "Divine Reach", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81609, 103852], "prev": [103860, 81630], "entries": [{"id": 115447, "definitionId": 120459, "maxRanks": 1, "type": "passive", "name": "Divine Reach", "spellId": 469476, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81609, 93191], "prev": [81605, 81630, 81496], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 93180, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 115466, "definitionId": 120478, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 386738, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115465, "definitionId": 120477, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81617, 93191, 81615], "prev": [93520, 81496, 93009], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Consecrated Ground", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81608], "prev": [93165, 93009], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Consecrated Ground", "spellId": 204054, "icon": "ability_paladin_righteousvengeance", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103852, 103867], "prev": [81630, 93168, 81614], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 1, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103867, 103865, 103866], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 93191, "name": "Sacred Strength / Divine Purpose", "type": "choice", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103866, 103868], "prev": [81614, 81616], "entries": [{"id": 115489, "definitionId": 120501, "maxRanks": 1, "type": "passive", "name": "Sacred Strength", "spellId": 469337, "icon": "spell_holy_righteousnessaura", "index": 100}, {"id": 128246, "definitionId": 133053, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 223817, "icon": "spell_holy_divinepurpose", "index": 200}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103868, 103864], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103864, 81608], "prev": [93009, 81543, 81616], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 103852, "name": "Lightforged Blessing", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495], "prev": [93168, 81609], "entries": [{"id": 128242, "definitionId": 133049, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 406468, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 103867, "name": "Lead the Charge", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495, 103862, 81621], "prev": [81609, 81607], "entries": [{"id": 128263, "definitionId": 133070, "maxRanks": 1, "type": "passive", "name": "Lead the Charge", "spellId": 469780, "icon": "inv_helm_plate_raidpaladin_r_01mythic", "index": 100}]}, {"id": 103865, "name": "Worthy Sacrifice / Righteous Protection", "type": "choice", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621], "prev": [81607], "entries": [{"id": 128261, "definitionId": 133068, "maxRanks": 1, "type": "passive", "name": "Worthy Sacrifice", "spellId": 469279, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 128248, "definitionId": 133055, "maxRanks": 1, "type": "passive", "name": "Righteous Protection", "spellId": 469321, "icon": "spell_holy_blessingofprotection", "index": 200}]}, {"id": 103866, "name": "Holy Ritual", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621, 93683, 93177], "prev": [81607, 93191], "entries": [{"id": 128262, "definitionId": 133069, "maxRanks": 1, "type": "passive", "name": "Holy Ritual", "spellId": 199422, "icon": "inv_relics_libramoftruth", "index": 100}]}, {"id": 103868, "name": "Blessed Calling", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81617, 93191], "entries": [{"id": 128264, "definitionId": 133071, "maxRanks": 1, "type": "passive", "name": "Blessed Calling", "spellId": 469770, "icon": "ability_paladin_judgementofthepure", "index": 100}]}, {"id": 103864, "name": "Inspired Guard", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81628, 103856], "prev": [81617, 81615], "entries": [{"id": 128260, "definitionId": 133067, "maxRanks": 1, "type": "passive", "name": "Inspired Guard", "spellId": 469439, "icon": "spell_holy_divineprotection", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [103856], "prev": [81615, 81543], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93357], "prev": [103852, 103867], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 103862, "name": "Stoicism", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93357], "prev": [103867], "entries": [{"id": 128258, "definitionId": 133065, "maxRanks": 1, "type": "passive", "name": "Stoicism", "spellId": 469316, "icon": "spell_magic_magearmor", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93357, 103861], "prev": [103866, 103865, 103867], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 93683, "name": "Seal of the Crusader", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103861], "prev": [103866], "entries": [{"id": 116064, "definitionId": 121076, "maxRanks": 1, "type": "passive", "name": "Seal of the Crusader", "spellId": 416770, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 93177, "name": "Vengeful Wrath", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [103861, 103863], "prev": [103866], "entries": [{"id": 115457, "definitionId": 120469, "maxRanks": 2, "type": "passive", "name": "Vengeful Wrath", "spellId": 406835, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81628, "name": "Eye for an Eye", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Eye for an Eye", "spellId": 469309, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 103856, "name": "Golden Path / Selfless Healer", "type": "choice", "posX": 6600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864, 81608], "entries": [{"id": 128252, "definitionId": 133059, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}, {"id": 128309, "definitionId": 133116, "maxRanks": 1, "type": "passive", "name": "Selfless Healer", "spellId": 469434, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 93357, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81495, 81621, 103862], "entries": [{"id": 115673, "definitionId": 120685, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 409439, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 103861, "name": "Lightbearer", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93177, 81621, 93683], "entries": [{"id": 128257, "definitionId": 133064, "maxRanks": 1, "type": "passive", "name": "Lightbearer", "spellId": 469416, "icon": "spell_paladin_clarityofpurpose", "index": 100}]}, {"id": 103863, "name": "Light's Revocation", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103856, 93177, 81628], "entries": [{"id": 128259, "definitionId": 133066, "maxRanks": 1, "type": "passive", "name": "Light's Revocation", "spellId": 146956, "icon": "spell_holy_divineshield", "index": 100}]}], "specNodes": [{"id": 81555, "name": "Holy Shock", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81569, 81565], "prev": [], "entries": [{"id": 102534, "definitionId": 107539, "maxRanks": 1, "type": "active", "name": "Holy Shock", "spellId": 20473, "icon": "spell_holy_searinglight", "index": 100}]}, {"id": 81569, "name": "Extrication", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [93927, 81567], "prev": [81555], "entries": [{"id": 102550, "definitionId": 107555, "maxRanks": 1, "type": "passive", "name": "Extrication", "spellId": 461278, "icon": "spell_holy_spiritualguidence", "index": 100}]}, {"id": 81565, "name": "Light of Dawn", "type": "single", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [81567, 81568], "prev": [81555], "entries": [{"id": 102545, "definitionId": 107550, "maxRanks": 1, "type": "active", "name": "Light of Dawn", "spellId": 85222, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 93927, "name": "Light's Conviction", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [81586, 81573, 81577], "prev": [81569], "entries": [{"id": 116376, "definitionId": 121388, "maxRanks": 1, "type": "passive", "name": "Light's Conviction", "spellId": 414073, "icon": "paladin_holy", "index": 100}]}, {"id": 81567, "name": "Aura Mastery", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [81566], "prev": [81569, 81565], "entries": [{"id": 102548, "definitionId": 107553, "maxRanks": 1, "type": "active", "name": "Aura Mastery", "spellId": 31821, "icon": "spell_holy_auramastery", "index": 100}]}, {"id": 81568, "name": "Beacon of the Lightbringer", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [81564, 81575, 81557], "prev": [81565], "entries": [{"id": 102549, "definitionId": 107554, "maxRanks": 1, "type": "passive", "name": "Beacon of the Lightbringer", "spellId": 197446, "icon": "spell_paladin_clarityofpurpose", "index": 100}]}, {"id": 81586, "name": "Tower of Radiance", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [81571, 93523], "prev": [93927], "entries": [{"id": 102571, "definitionId": 107576, "maxRanks": 1, "type": "passive", "name": "Tower of Radiance", "spellId": 231642, "icon": "inv_helm_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 81573, "name": "Tirion's Devotion", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [81574], "prev": [93927], "entries": [{"id": 102556, "definitionId": 107561, "maxRanks": 1, "type": "passive", "name": "Tirion's Devotion", "spellId": 414720, "icon": "spell_holy_revivechampion", "index": 200}]}, {"id": 81575, "name": "Unending Light", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [93522], "prev": [81568], "entries": [{"id": 102558, "definitionId": 107563, "maxRanks": 1, "type": "passive", "name": "Unending Light", "spellId": 387998, "icon": "spell_holy_holybolt", "index": 100}]}, {"id": 81564, "name": "Awestruck", "type": "single", "posX": 15000, "posY": 3300, "maxRanks": 1, "next": [81561, 81562], "prev": [81568], "entries": [{"id": 102544, "definitionId": 107549, "maxRanks": 1, "type": "passive", "name": "Awestruck", "spellId": 417855, "icon": "ability_paladin_blindinglight2", "index": 100}]}, {"id": 81571, "name": "Moment of Compassion / Resplendent Light", "type": "choice", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102502], "prev": [81586], "entries": [{"id": 102553, "definitionId": 107558, "maxRanks": 1, "type": "passive", "name": "Moment of Compassion", "spellId": 387786, "icon": "spell_holy_flashheal", "index": 100}, {"id": 102552, "definitionId": 107557, "maxRanks": 1, "type": "passive", "name": "Resplendent Light", "spellId": 392902, "icon": "ability_priest_voidshift", "index": 200}]}, {"id": 81577, "name": "Holy Prism / Barrier of Faith", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93523, 81570, 81574], "prev": [93927], "entries": [{"id": 102561, "definitionId": 107566, "maxRanks": 1, "type": "active", "name": "Holy Prism", "spellId": 114165, "icon": "spell_paladin_holyprism", "index": 100}, {"id": 102560, "definitionId": 107565, "maxRanks": 1, "type": "active", "name": "Barrier of Faith", "spellId": 148039, "icon": "ability_paladin_barrieroffaith", "index": 200}]}, {"id": 81566, "name": "Unwavering Spirit / Protection of Tyr", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93522, 81574], "prev": [81567], "entries": [{"id": 102547, "definitionId": 107552, "maxRanks": 1, "type": "passive", "name": "Unwavering Spirit", "spellId": 392911, "icon": "spell_holy_fanaticism", "index": 100}, {"id": 102546, "definitionId": 107551, "maxRanks": 1, "type": "passive", "name": "Protection of Tyr", "spellId": 200430, "icon": "spell_holy_auramastery", "index": 200}]}, {"id": 81557, "name": "Imbued Infusions", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93522, 81556, 81562], "prev": [81568], "entries": [{"id": 102536, "definitionId": 107541, "maxRanks": 1, "type": "passive", "name": "Imbued Infusions", "spellId": 392961, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 81561, "name": "Light of the Martyr", "type": "single", "posX": 15600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81560], "prev": [81564], "entries": [{"id": 102540, "definitionId": 107545, "maxRanks": 1, "type": "passive", "name": "Light of the Martyr", "spellId": 447985, "icon": "ability_paladin_lightofthemartyr", "index": 100}]}, {"id": 93523, "name": "Righteous Judgment", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102502, 81580], "prev": [81577, 81586], "entries": [{"id": 115875, "definitionId": 120887, "maxRanks": 1, "type": "passive", "name": "Righteous Judgment", "spellId": 414113, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 81570, "name": "Divine Favor / Hand of Divinity", "type": "choice", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81580], "prev": [81577], "entries": [{"id": 102551, "definitionId": 107556, "maxRanks": 1, "type": "passive", "name": "Divine Favor", "spellId": 460422, "icon": "spell_holy_heal", "index": 100}, {"id": 115876, "definitionId": 120888, "maxRanks": 1, "type": "active", "name": "Hand of Divinity", "spellId": 414273, "icon": "spell_holy_vindication", "index": 200}]}, {"id": 81574, "name": "Saved by the Light", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81580, 81576, 81583], "prev": [81573, 81577, 81566], "entries": [{"id": 102557, "definitionId": 107562, "maxRanks": 1, "type": "passive", "name": "Saved by the Light", "spellId": 157047, "icon": "ability_paladin_savedbythelight", "index": 200}]}, {"id": 93522, "name": "Light's Protection", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81583, 81578, 81585], "prev": [81557, 81566, 81575], "entries": [{"id": 115874, "definitionId": 120886, "maxRanks": 1, "type": "passive", "name": "Light's Protection", "spellId": 461243, "icon": "spell_holy_absolution", "index": 100}]}, {"id": 81556, "name": "Overflowing Light", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81585], "prev": [81557], "entries": [{"id": 102535, "definitionId": 107540, "maxRanks": 1, "type": "passive", "name": "Overflowing Light", "spellId": 461244, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 81562, "name": "Shining Righteousness", "type": "single", "posX": 15000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81585], "prev": [81557, 81564], "entries": [{"id": 102541, "definitionId": 107546, "maxRanks": 1, "type": "passive", "name": "Shining Righteousness", "spellId": 414443, "icon": "spell_holy_holynova", "index": 100}]}, {"id": 102502, "name": "Liberation", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81554], "prev": [93523, 81571], "entries": [{"id": 126571, "definitionId": 131398, "maxRanks": 1, "type": "passive", "name": "Liberation", "spellId": 461287, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81580, "name": "Commanding Light", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81554, 103831, 81581], "prev": [81574, 81570, 93523], "entries": [{"id": 102564, "definitionId": 107569, "maxRanks": 1, "type": "passive", "name": "Commanding Light", "spellId": 387781, "icon": "ability_paladin_beaconoflight", "index": 100}]}, {"id": 81576, "name": "Glistening Radiance", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81581], "prev": [81574], "entries": [{"id": 102559, "definitionId": 107564, "maxRanks": 1, "type": "passive", "name": "Glistening Radiance", "spellId": 461245, "icon": "spell_paladin_divinecircle", "index": 100}]}, {"id": 81583, "name": "Breaking Dawn", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [81581, 81584], "prev": [93522, 81574], "entries": [{"id": 102567, "definitionId": 107572, "maxRanks": 2, "type": "passive", "name": "Breaking Dawn", "spellId": 387879, "icon": "spell_holy_rune", "index": 100}]}, {"id": 81578, "name": "Divine Revelations", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81584], "prev": [93522], "entries": [{"id": 102562, "definitionId": 107567, "maxRanks": 1, "type": "passive", "name": "Divine Revelations", "spellId": 387808, "icon": "ability_paladin_infusionoflight", "index": 100}]}, {"id": 81585, "name": "Divine Glimpse", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81584, 81589, 81588], "prev": [81556, 93522, 81562], "entries": [{"id": 102570, "definitionId": 107575, "maxRanks": 1, "type": "passive", "name": "Divine Glimpse", "spellId": 387805, "icon": "spell_holy_healingaura", "index": 100}]}, {"id": 81560, "name": "Bestow Light", "type": "single", "posX": 15600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81588], "prev": [81561], "entries": [{"id": 102539, "definitionId": 107544, "maxRanks": 1, "type": "passive", "name": "Bestow Light", "spellId": 448040, "icon": "ability_paladin_sheathoflight", "index": 100}]}, {"id": 81554, "name": "Beacon of Faith / Beacon of Virtue", "type": "choice", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594, 81579, 81595], "prev": [81580, 102502], "entries": [{"id": 102533, "definitionId": 107538, "maxRanks": 1, "type": "active", "name": "Beacon of Faith", "spellId": 156910, "icon": "ability_paladin_beaconsoflight", "index": 100}, {"id": 102532, "definitionId": 107537, "maxRanks": 1, "type": "active", "name": "Beacon of Virtue", "spellId": 200025, "icon": "ability_paladin_beaconofinsight", "index": 200}]}, {"id": 103831, "name": "Empyrean Legacy", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594], "prev": [81580], "entries": [{"id": 102576, "definitionId": 107581, "maxRanks": 1, "type": "passive", "name": "Empyrean Legacy", "spellId": 387170, "icon": "item_holyspark", "index": 100}]}, {"id": 81581, "name": "Veneration", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81594], "prev": [81580, 81583, 81576], "entries": [{"id": 102565, "definitionId": 107570, "maxRanks": 1, "type": "passive", "name": "Veneration", "spellId": 392938, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 81584, "name": "Avenging Wrath / Avenging Crusader", "type": "choice", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81592, 81558], "prev": [81583, 81585, 81578], "entries": [{"id": 102569, "definitionId": 107574, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 31884, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}, {"id": 102568, "definitionId": 107573, "maxRanks": 1, "type": "active", "name": "Avenging Crusader", "spellId": 394088, "visibleSpellId": 216331, "icon": "ability_paladin_veneration", "index": 200}]}, {"id": 81589, "name": "Power of the Silver Hand", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81558], "prev": [81585], "entries": [{"id": 102574, "definitionId": 107579, "maxRanks": 1, "type": "passive", "name": "Power of the Silver Hand", "spellId": 200474, "icon": "ability_paladin_blessedhands", "index": 100}]}, {"id": 81588, "name": "Tyr's Deliverance", "type": "single", "posX": 15000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81558, 81590, 81587], "prev": [81560, 81585], "entries": [{"id": 102573, "definitionId": 107578, "maxRanks": 1, "type": "active", "name": "Tyr's Deliverance", "spellId": 200652, "icon": "inv_mace_2h_artifactsilverhand_d_01", "index": 100}]}, {"id": 81579, "name": "Truth Prevails", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81554], "entries": [{"id": 102563, "definitionId": 107568, "maxRanks": 1, "type": "passive", "name": "Truth Prevails", "spellId": 461273, "icon": "ability_paladin_artofwar", "index": 100}]}, {"id": 81594, "name": "Crusader's Might", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93521], "prev": [81554, 81581, 103831], "entries": [{"id": 102580, "definitionId": 107585, "maxRanks": 1, "type": "passive", "name": "Crusader's Might", "spellId": 196926, "icon": "ability_paladin_swiftretribution", "index": 100}]}, {"id": 81592, "name": "Sanctified Wrath / Awakening", "type": "choice", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93521, 81593, 81591], "prev": [81584], "entries": [{"id": 102578, "definitionId": 107583, "maxRanks": 1, "type": "passive", "name": "Sanctified Wrath", "spellId": 53376, "icon": "ability_paladin_judgementsofthejust", "index": 100}, {"id": 116205, "definitionId": 121217, "maxRanks": 1, "type": "passive", "name": "Awakening", "spellId": 414195, "icon": "inv_helm_plate_raidpaladin_n_01", "index": 200}]}, {"id": 81558, "name": "Reclamation", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81591], "prev": [81588, 81584, 81589], "entries": [{"id": 102537, "definitionId": 107542, "maxRanks": 1, "type": "passive", "name": "Reclamation", "spellId": 415364, "icon": "ability_paladin_longarmofthelaw", "index": 100}]}, {"id": 81590, "name": "Relentless Inquisitor", "type": "single", "posX": 15600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81588], "entries": [{"id": 102575, "definitionId": 107580, "maxRanks": 1, "type": "passive", "name": "Relentless Inquisitor", "spellId": 383388, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81595, "name": "Rising Sunlight", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81554], "entries": [{"id": 102581, "definitionId": 107586, "maxRanks": 1, "type": "passive", "name": "Rising Sunlight", "spellId": 461250, "icon": "spell_priest_divinestar_holy", "index": 100}]}, {"id": 93521, "name": "Glorious Dawn", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81594, 81592], "entries": [{"id": 115873, "definitionId": 120885, "maxRanks": 1, "type": "passive", "name": "Glorious Dawn", "spellId": 461246, "icon": "ability_paladin_holyavenger", "index": 100}]}, {"id": 81593, "name": "Merciful Auras / Blessing of Summer", "type": "choice", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81592], "entries": [{"id": 102579, "definitionId": 107584, "maxRanks": 1, "type": "passive", "name": "Merciful Auras", "spellId": 183415, "icon": "spell_holy_blessedlife", "index": 100}, {"id": 116183, "definitionId": 121195, "maxRanks": 1, "type": "active", "name": "Blessing of Summer", "spellId": 388007, "icon": "ability_ardenweald_paladin_summer", "index": 200}]}, {"id": 81591, "name": "Inflorescence of the Sunwell", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81558, 81592], "entries": [{"id": 102577, "definitionId": 107582, "maxRanks": 1, "type": "passive", "name": "Inflorescence of the Sunwell", "spellId": 392907, "icon": "spell_lfieblood", "index": 100}]}, {"id": 81587, "name": "Boundless Salvation", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81588], "entries": [{"id": 102572, "definitionId": 107577, "maxRanks": 1, "type": "passive", "name": "Boundless Salvation", "spellId": 392951, "icon": "ability_paladin_selflesshealer", "index": 100}]}], "heroNodes": [{"id": 95099, "name": "Dawnlight", "type": "single", "posX": 8700, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 50, "requiresNode": 81577, "next": [95073, 95095, 95080], "prev": [], "entries": [{"id": 117696, "definitionId": 122708, "maxRanks": 1, "type": "passive", "name": "Dawnlight", "spellId": 431377, "icon": "inv_ability_heraldofthesunpaladin_dawnlight", "index": 100}], "freeNode": true}, {"id": 95073, "name": "Morning Star / Gleaming Rays", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95098], "prev": [95099], "entries": [{"id": 117670, "definitionId": 122682, "maxRanks": 1, "type": "passive", "name": "Morning Star", "spellId": 431482, "icon": "spell_holy_persecution", "index": 100}, {"id": 117778, "definitionId": 122790, "maxRanks": 1, "type": "passive", "name": "Gleaming Rays", "spellId": 431480, "icon": "spell_priest_power_word", "index": 200}]}, {"id": 95095, "name": "Eternal Flame", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95071], "prev": [95099], "entries": [{"id": 117692, "definitionId": 122704, "maxRanks": 1, "type": "active", "name": "Eternal Flame", "spellId": 156322, "icon": "inv_torch_thrown", "index": 100}]}, {"id": 95080, "name": "Luminosity", "type": "single", "posX": 9300, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95072], "prev": [95099], "entries": [{"id": 117677, "definitionId": 122689, "maxRanks": 1, "type": "passive", "name": "Luminosity", "spellId": 431402, "icon": "inv_qirajidol_sun", "index": 100}]}, {"id": 95098, "name": "Illumine / Will of the Dawn", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95069], "prev": [95073], "entries": [{"id": 117695, "definitionId": 122707, "maxRanks": 1, "type": "passive", "name": "Illumine", "spellId": 431423, "icon": "spell_holy_divineillumination", "index": 100}, {"id": 117777, "definitionId": 122789, "maxRanks": 1, "type": "passive", "name": "Will of the Dawn", "spellId": 431406, "icon": "spell_holy_divineprovidence", "index": 200}]}, {"id": 95071, "name": "Blessing of An'she / Lingering Radiance", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95094], "prev": [95095], "entries": [{"id": 117668, "definitionId": 122680, "maxRanks": 1, "type": "passive", "name": "Blessing of An'she", "spellId": 445200, "icon": "inv_ability_holyfire_orb", "index": 100}, {"id": 117779, "definitionId": 122791, "maxRanks": 1, "type": "passive", "name": "Lingering Radiance", "spellId": 431407, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 95072, "name": "Sun Sear", "type": "single", "posX": 9300, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95086], "prev": [95080], "entries": [{"id": 117669, "definitionId": 122681, "maxRanks": 1, "type": "passive", "name": "Sun Sear", "spellId": 431413, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 95069, "name": "Aurora", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81577, "next": [95105], "prev": [95098], "entries": [{"id": 117666, "definitionId": 122678, "maxRanks": 1, "type": "passive", "name": "Aurora", "spellId": 439760, "icon": "spell_holy_rune", "index": 100}]}, {"id": 95094, "name": "Solar Grace", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95105], "prev": [95071], "entries": [{"id": 117691, "definitionId": 122703, "maxRanks": 1, "type": "passive", "name": "Solar Grace", "spellId": 431404, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 100}]}, {"id": 95086, "name": "Second Sunrise", "type": "single", "posX": 9300, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "next": [95105], "prev": [95072], "entries": [{"id": 117683, "definitionId": 122695, "maxRanks": 1, "type": "passive", "name": "Second Sunrise", "spellId": 431474, "icon": "ability_priest_halo", "index": 100}]}, {"id": 95105, "name": "Sun's Avatar", "type": "single", "posX": 8700, "posY": 3600, "maxRanks": 1, "subTreeId": 50, "next": [], "prev": [95094, 95069, 95086], "entries": [{"id": 117702, "definitionId": 122714, "maxRanks": 1, "type": "passive", "name": "Sun's Avatar", "spellId": 431425, "icon": "ability_paladin_holyavenger", "index": 100}]}, {"id": 95234, "name": "Holy Armaments", "type": "single", "posX": 8690, "posY": 4190, "maxRanks": 1, "entryNode": true, "subTreeId": 49, "next": [95233, 95228, 95235], "prev": [], "entries": [{"id": 117882, "definitionId": 122894, "maxRanks": 1, "type": "active", "name": "Holy Armaments", "spellId": 432459, "icon": "inv_ability_lightsmithpaladin_holybulwark", "index": 100}], "freeNode": true}, {"id": 95233, "name": "Rite of Sanctification / Rite of Adjuration", "type": "choice", "posX": 8100, "posY": 4790, "maxRanks": 1, "subTreeId": 49, "next": [95236], "prev": [95234], "entries": [{"id": 117881, "definitionId": 122893, "maxRanks": 1, "type": "active", "name": "Rite of Sanctification", "spellId": 433568, "icon": "inv_inscription_weaponscroll01", "index": 100}, {"id": 117880, "definitionId": 122892, "maxRanks": 1, "type": "active", "name": "Rite of Adjuration", "spellId": 433583, "icon": "inv_inscription_armorscroll02", "index": 200}]}, {"id": 95228, "name": "Solidarity", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95231], "prev": [95234], "entries": [{"id": 117873, "definitionId": 122885, "maxRanks": 1, "type": "passive", "name": "Solidarity", "spellId": 432802, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 95235, "name": "Divine Guidance / Blessed Assurance", "type": "choice", "posX": 9300, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95232], "prev": [95234], "entries": [{"id": 117884, "definitionId": 122896, "maxRanks": 1, "type": "passive", "name": "Divine Guidance", "spellId": 433106, "icon": "spell_holy_lightsgrace", "index": 100}, {"id": 117883, "definitionId": 122895, "maxRanks": 1, "type": "passive", "name": "Blessed Assurance", "spellId": 433015, "icon": "spell_holy_blessedlife", "index": 200}]}, {"id": 95231, "name": "Divine Inspiration / Forewarning", "type": "choice", "posX": 8700, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95229], "prev": [95228], "entries": [{"id": 117877, "definitionId": 122889, "maxRanks": 1, "type": "passive", "name": "Divine Inspiration", "spellId": 432964, "icon": "ability_priest_flashoflight", "index": 100}, {"id": 117876, "definitionId": 122888, "maxRanks": 1, "type": "passive", "name": "Forewarning", "spellId": 432804, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 95232, "name": "Authoritative Rebuke / Tempered in Battle", "type": "choice", "posX": 9290, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95238], "prev": [95235], "entries": [{"id": 117879, "definitionId": 122891, "maxRanks": 1, "type": "passive", "name": "Authoritative Rebuke", "spellId": 469886, "icon": "inv_misc_symbolofkings_01", "index": 100}, {"id": 117878, "definitionId": 122890, "maxRanks": 1, "type": "passive", "name": "Tempered in Battle", "spellId": 469701, "icon": "inv_everburningforge_yellow", "index": 200}]}, {"id": 95236, "name": "Laying Down Arms", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 49, "next": [95237], "prev": [95233], "entries": [{"id": 117885, "definitionId": 122897, "maxRanks": 1, "type": "passive", "name": "Laying Down Arms", "spellId": 432866, "icon": "ability_paladin_handoflight", "index": 100}]}, {"id": 95229, "name": "Valiance", "type": "single", "posX": 8700, "posY": 5980, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95231], "entries": [{"id": 117874, "definitionId": 122886, "maxRanks": 1, "type": "passive", "name": "Valiance", "spellId": 432919, "icon": "inv_mace_47", "index": 100}]}, {"id": 95237, "name": "Shared Resolve", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95236], "entries": [{"id": 117886, "definitionId": 122898, "maxRanks": 1, "type": "passive", "name": "Shared Resolve", "spellId": 432821, "icon": "spell_holy_devotionaura", "index": 100}]}, {"id": 95238, "name": "Hammer and Anvil", "type": "single", "posX": 9300, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95232], "entries": [{"id": 117887, "definitionId": 122899, "maxRanks": 1, "type": "passive", "name": "Hammer and Anvil", "spellId": 433718, "icon": "inv_10_blacksmithing_consumable_repairhammer_color1", "index": 100}]}, {"id": 95230, "name": "Blessing of the Forge", "type": "single", "posX": 8690, "posY": 6600, "maxRanks": 1, "subTreeId": 49, "next": [], "prev": [95229, 95237, 95238], "entries": [{"id": 117875, "definitionId": 122887, "maxRanks": 1, "type": "passive", "name": "Blessing of the Forge", "spellId": 433011, "icon": "inv_ability_lightsmithpaladin_sacredweapon", "index": 100}]}], "subTreeNodes": [{"id": 99839, "name": "Herald of the Sun / Lightsmith", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123362, "type": "subtree", "name": "Herald of the Sun", "traitSubTreeId": 50, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-heraldofthesun", "nodes": [95099, 95073, 95095, 95080, 95098, 95071, 95072, 95069, 95094, 95086, 95105]}, {"id": 123359, "type": "subtree", "name": "Lightsmith", "traitSubTreeId": 49, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-lightsmith", "nodes": [95234, 95233, 95228, 95235, 95231, 95232, 95236, 95229, 95237, 95238, 95230]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81600, 81602, 81603, 81604, 81605, 81607, 81608, 81609, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81621, 81624, 81625, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831, 103849, 103850, 103851, 103852, 103853, 103854, 103855, 103856, 103857, 103858, 103859, 103860, 103861, 103862, 103863, 103864, 103865, 103866, 103867, 103868, 103877]}, {"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Protection", "specId": 66, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103859, 81602, 81507], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}], "freeNode": true}, {"id": 81600, "name": "Auras of the Resolute", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81602, 81598, 81632], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}], "freeNode": true}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81598, 93010, 81603], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81507, "name": "Cleanse Toxins", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [103858, 93188], "prev": [81597], "entries": [{"id": 102476, "definitionId": 107481, "maxRanks": 1, "type": "active", "name": "Cleanse Toxins", "spellId": 213644, "icon": "spell_holy_renew", "index": 100}]}, {"id": 103859, "name": "Empyreal Ward", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [93188], "prev": [81597], "entries": [{"id": 128255, "definitionId": 133062, "maxRanks": 1, "type": "passive", "name": "Empyreal Ward", "spellId": 387791, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [93188, 81632], "prev": [81600, 81597], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 1, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 103854, 81603], "prev": [81510, 81600], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [103855], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 103858, "name": "A Just Reward", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [103860], "prev": [81507], "entries": [{"id": 128254, "definitionId": 133061, "maxRanks": 1, "type": "passive", "name": "A Just Reward", "spellId": 469411, "icon": "spell_holy_blindingheal", "index": 100}]}, {"id": 93188, "name": "Afterimage", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [103860, 81630], "prev": [81507, 81602, 103859], "entries": [{"id": 115480, "definitionId": 120492, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [103857, 81605, 81631], "prev": [81602, 81598, 81600], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}], "freeNode": true}, {"id": 103854, "name": "Light's Countenance", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [81598], "entries": [{"id": 128247, "definitionId": 133054, "maxRanks": 1, "type": "passive", "name": "Light's Countenance", "spellId": 469325, "icon": "inv_shoulder_raidpaladindragon_d_01", "index": 100}]}, {"id": 81603, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 93009], "prev": [81510, 81598], "entries": [{"id": 102590, "definitionId": 107595, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231663, "icon": "spell_holy_righteousfury", "index": 0}]}, {"id": 103855, "name": "Wrench Evil / Stand Against Evil", "type": "choice", "posX": 6600, "posY": 2700, "maxRanks": 1, "next": [81604], "prev": [93010], "entries": [{"id": 128250, "definitionId": 133057, "maxRanks": 1, "type": "passive", "name": "Wrench Evil", "spellId": 460720, "icon": "ability_paladin_turnevil", "index": 100}, {"id": 128249, "definitionId": 133056, "maxRanks": 1, "type": "passive", "name": "Stand Against Evil", "spellId": 469317, "icon": "spell_holy_excorcism", "index": 200}]}, {"id": 103860, "name": "Holy Reprieve", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81630, 93168], "prev": [93188, 103858], "entries": [{"id": 128256, "definitionId": 133063, "maxRanks": 1, "type": "passive", "name": "Holy Reprieve", "spellId": 469445, "icon": "spell_holy_sealofsalvation", "index": 100}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81630, 81496, 81614], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 103857, "name": "Divine Spurs", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [], "prev": [81632], "entries": [{"id": 128253, "definitionId": 133060, "maxRanks": 1, "type": "passive", "name": "Divine Spurs", "spellId": 469409, "icon": "ability_mount_charger", "index": 100}]}, {"id": 81631, "name": "Steed of Liberty / Blessing of Freedom", "type": "choice", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81496, 93187, 93009], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Steed of Liberty", "spellId": 469304, "icon": "spell_holy_crusaderaura", "index": 200}, {"id": 128251, "definitionId": 133058, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 300}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93009, 93165], "prev": [81603, 103855], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93168, 81614, 81609], "prev": [93188, 103860, 81605], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81479, 81614, 81616], "prev": [81631, 81605], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "inv_ability_paladin_divinetoll", "index": 100}]}, {"id": 93187, "name": "Unbound Freedom", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616], "prev": [81631], "entries": [{"id": 115479, "definitionId": 120491, "maxRanks": 1, "type": "passive", "name": "Unbound Freedom", "spellId": 305394, "icon": "spell_holy_sealofvalor", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81543, 81616, 81615], "prev": [81603, 81604, 81631], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81543], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 93168, "name": "Divine Reach", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81609, 103850], "prev": [103860, 81630], "entries": [{"id": 115447, "definitionId": 120459, "maxRanks": 1, "type": "passive", "name": "Divine Reach", "spellId": 469476, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81609, 93192], "prev": [81605, 81630, 81496], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 81479, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 102443, "definitionId": 107448, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 386738, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115168, "definitionId": 120175, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81617, 93192, 81615], "prev": [93187, 81496, 93009], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Consecrated Ground", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81608], "prev": [93165, 93009], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Consecrated Ground", "spellId": 204054, "icon": "ability_paladin_righteousvengeance", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103850, 103867], "prev": [81630, 93168, 81614], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 1, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103867, 103865, 103866], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 93192, "name": "Sacred Strength / Divine Purpose", "type": "choice", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103866, 103868], "prev": [81614, 81616], "entries": [{"id": 115490, "definitionId": 120502, "maxRanks": 1, "type": "passive", "name": "Sacred Strength", "spellId": 469337, "icon": "spell_holy_righteousnessaura", "index": 100}, {"id": 128244, "definitionId": 133051, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 223817, "icon": "spell_holy_divinepurpose", "index": 200}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103868, 103864], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103864, 81608], "prev": [93009, 81543, 81616], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 103850, "name": "Lightforged Blessing", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495], "prev": [81609, 93168], "entries": [{"id": 128240, "definitionId": 133047, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 406468, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 103867, "name": "Lead the Charge", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495, 103862, 81621], "prev": [81609, 81607], "entries": [{"id": 128263, "definitionId": 133070, "maxRanks": 1, "type": "passive", "name": "Lead the Charge", "spellId": 469780, "icon": "inv_helm_plate_raidpaladin_r_01mythic", "index": 100}]}, {"id": 103865, "name": "Worthy Sacrifice / Righteous Protection", "type": "choice", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621], "prev": [81607], "entries": [{"id": 128261, "definitionId": 133068, "maxRanks": 1, "type": "passive", "name": "Worthy Sacrifice", "spellId": 469279, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 128248, "definitionId": 133055, "maxRanks": 1, "type": "passive", "name": "Righteous Protection", "spellId": 469321, "icon": "spell_holy_blessingofprotection", "index": 200}]}, {"id": 103866, "name": "Holy Ritual", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621, 93683, 81625], "prev": [93192, 81607], "entries": [{"id": 128262, "definitionId": 133069, "maxRanks": 1, "type": "passive", "name": "Holy Ritual", "spellId": 199422, "icon": "inv_relics_libramoftruth", "index": 100}]}, {"id": 103868, "name": "Blessed Calling", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81625], "prev": [81617, 93192], "entries": [{"id": 128264, "definitionId": 133071, "maxRanks": 1, "type": "passive", "name": "Blessed Calling", "spellId": 469770, "icon": "ability_paladin_judgementofthepure", "index": 100}]}, {"id": 103864, "name": "Inspired Guard", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81625, 81628, 103856], "prev": [81617, 81615], "entries": [{"id": 128260, "definitionId": 133067, "maxRanks": 1, "type": "passive", "name": "Inspired Guard", "spellId": 469439, "icon": "spell_holy_divineprotection", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [103856], "prev": [81615, 81543], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93356], "prev": [103850, 103867], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 103862, "name": "Stoicism", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [93356], "prev": [103867], "entries": [{"id": 128258, "definitionId": 133065, "maxRanks": 1, "type": "passive", "name": "Stoicism", "spellId": 469316, "icon": "spell_magic_magearmor", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [93356, 103861], "prev": [103866, 103865, 103867], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 93683, "name": "Seal of the Crusader", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103861], "prev": [103866], "entries": [{"id": 116064, "definitionId": 121076, "maxRanks": 1, "type": "passive", "name": "Seal of the Crusader", "spellId": 416770, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 81625, "name": "Zealot's Paragon", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [103861, 103863], "prev": [103866, 103868, 103864], "entries": [{"id": 102616, "definitionId": 107621, "maxRanks": 2, "type": "passive", "name": "Zealot's Paragon", "spellId": 391142, "icon": "ability_paladin_conviction", "index": 100}]}, {"id": 81628, "name": "Eye for an Eye", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Eye for an Eye", "spellId": 469309, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 103856, "name": "Golden Path / Selfless Healer", "type": "choice", "posX": 6600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864, 81608], "entries": [{"id": 128252, "definitionId": 133059, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}, {"id": 128309, "definitionId": 133116, "maxRanks": 1, "type": "passive", "name": "Selfless Healer", "spellId": 469434, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 93356, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81495, 81621, 103862], "entries": [{"id": 115672, "definitionId": 120684, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 409441, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 103861, "name": "Lightbearer", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81625, 81621, 93683], "entries": [{"id": 128257, "definitionId": 133064, "maxRanks": 1, "type": "passive", "name": "Lightbearer", "spellId": 469416, "icon": "spell_paladin_clarityofpurpose", "index": 100}]}, {"id": 103863, "name": "Light's Revocation", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81625, 103856, 81628], "entries": [{"id": 128259, "definitionId": 133066, "maxRanks": 1, "type": "passive", "name": "Light's Revocation", "spellId": 146956, "icon": "spell_holy_divineshield", "index": 100}]}], "specNodes": [{"id": 81502, "name": "Avenger's Shield", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81489, 81469], "prev": [], "entries": [{"id": 102471, "definitionId": 107476, "maxRanks": 1, "type": "active", "name": "Avenger's Shield", "spellId": 31935, "icon": "spell_holy_avengersshield", "index": 100}]}, {"id": 81489, "name": "Holy Shield", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [81487, 81494], "prev": [81502], "entries": [{"id": 102455, "definitionId": 107460, "maxRanks": 1, "type": "passive", "name": "Holy Shield", "spellId": 152261, "icon": "inv_shield_1h_hyrja_d_01", "index": 100}]}, {"id": 81469, "name": "Hammer of the Righteous / Blessed Hammer", "type": "choice", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [81487, 81498], "prev": [81502], "entries": [{"id": 102431, "definitionId": 107436, "maxRanks": 1, "type": "active", "name": "Hammer of the Righteous", "spellId": 53595, "icon": "ability_paladin_hammeroftherighteous", "index": 100}, {"id": 102430, "definitionId": 107435, "maxRanks": 1, "type": "active", "name": "Blessed Hammer", "spellId": 204019, "icon": "paladin_retribution", "index": 200}]}, {"id": 81494, "name": "Inner Light / Redoubt", "type": "choice", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [81486], "prev": [81489], "entries": [{"id": 102463, "definitionId": 107468, "maxRanks": 1, "type": "passive", "name": "Inner Light", "spellId": 386568, "icon": "ability_paladin_shieldofvengeance", "index": 100}, {"id": 102462, "definitionId": 107467, "maxRanks": 1, "type": "passive", "name": "Redoubt", "spellId": 280373, "icon": "ability_warrior_shieldguard", "index": 200}]}, {"id": 81487, "name": "Grand Crusader", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [81481, 81501, 81476], "prev": [81489, 81469], "entries": [{"id": 102453, "definitionId": 107458, "maxRanks": 1, "type": "passive", "name": "Grand Crusader", "spellId": 85043, "icon": "inv_helmet_74", "index": 100}]}, {"id": 81498, "name": "Shining Light", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [101927], "prev": [81469], "entries": [{"id": 102467, "definitionId": 107472, "maxRanks": 1, "type": "passive", "name": "Shining Light", "spellId": 321136, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81486, "name": "Improved Holy Shield", "type": "single", "posX": 12000, "posY": 3300, "maxRanks": 1, "next": [81499, 81492], "prev": [81494], "entries": [{"id": 102452, "definitionId": 107457, "maxRanks": 1, "type": "passive", "name": "Improved Holy Shield", "spellId": 393030, "icon": "inv_shield_1h_hyrja_d_01", "index": 100}]}, {"id": 81476, "name": "Inspiring Vanguard", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [81499], "prev": [81487], "entries": [{"id": 102439, "definitionId": 107444, "maxRanks": 1, "type": "passive", "name": "Inspiring Vanguard", "spellId": 393022, "icon": "inv_helmet_74", "index": 100}]}, {"id": 81481, "name": "Ardent Defender", "type": "single", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [81499, 81503, 90062], "prev": [81487], "entries": [{"id": 102445, "definitionId": 107450, "maxRanks": 1, "type": "active", "name": "Ardent Defender", "spellId": 31850, "icon": "spell_holy_ardentdefender", "index": 100}]}, {"id": 81501, "name": "Barricade of Faith", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [81503], "prev": [81487], "entries": [{"id": 102470, "definitionId": 107475, "maxRanks": 1, "type": "passive", "name": "Barricade of Faith", "spellId": 385726, "icon": "ability_paladin_barrieroffaith", "index": 100}]}, {"id": 101927, "name": "Sanctuary", "type": "single", "posX": 14400, "posY": 3300, "maxRanks": 1, "next": [81503, 81470], "prev": [81498], "entries": [{"id": 102451, "definitionId": 107456, "maxRanks": 1, "type": "passive", "name": "Sanctuary", "spellId": 379021, "icon": "spell_holy_innerfire", "index": 100}]}, {"id": 81492, "name": "Refining Fire", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81474, 101928], "prev": [81486], "entries": [{"id": 102459, "definitionId": 107464, "maxRanks": 1, "type": "passive", "name": "Refining Fire", "spellId": 469883, "icon": "inv_everburningignition_yellow", "index": 0}]}, {"id": 81499, "name": "Bulwark of Order", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81474, 81506, 81483], "prev": [81476, 81481, 81486], "entries": [{"id": 102468, "definitionId": 107473, "maxRanks": 1, "type": "passive", "name": "Bulwark of Order", "spellId": 209389, "icon": "spell_holy_pureofheart", "index": 100}]}, {"id": 90062, "name": "Improved Ardent Defender / Blessing of Spellwarding", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81483], "prev": [81481], "entries": [{"id": 111887, "definitionId": 116892, "maxRanks": 1, "type": "passive", "name": "Improved Ardent Defender", "spellId": 393114, "icon": "spell_holy_ardentdefender", "index": 100}, {"id": 111886, "definitionId": 116891, "maxRanks": 1, "type": "active", "name": "Blessing of Spellwarding", "spellId": 204018, "icon": "spell_holy_blessingofprotection", "index": 200}]}, {"id": 81503, "name": "Light of the Titans / Tirion's Devotion", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81485, 81483, 81612], "prev": [81501, 81481, 101927], "entries": [{"id": 102472, "definitionId": 107477, "maxRanks": 1, "type": "passive", "name": "Light of the Titans", "spellId": 378405, "icon": "spell_paladin_lightofdawn", "index": 100}, {"id": 125873, "definitionId": 130704, "maxRanks": 1, "type": "passive", "name": "Tirion's Devotion", "spellId": 392928, "icon": "spell_holy_revivechampion", "index": 200}]}, {"id": 81470, "name": "Consecration in Flame", "type": "single", "posX": 15000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81485, 81473], "prev": [101927], "entries": [{"id": 102432, "definitionId": 107437, "maxRanks": 1, "type": "passive", "name": "Consecration in Flame", "spellId": 379022, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 81474, "name": "Tyr's Enforcer", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101928, 81629, 81472], "prev": [81499, 81492], "entries": [{"id": 102437, "definitionId": 107442, "maxRanks": 2, "type": "passive", "name": "Tyr's Enforcer", "spellId": 378285, "icon": "spell_holy_persecution", "index": 0}]}, {"id": 81506, "name": "Relentless Inquisitor", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81629], "prev": [81499], "entries": [{"id": 102475, "definitionId": 107480, "maxRanks": 1, "type": "passive", "name": "Relentless Inquisitor", "spellId": 383388, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81483, "name": "Avenging Wrath / Sentinel", "type": "choice", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81490, 81629, 81475], "prev": [81503, 81499, 90062], "entries": [{"id": 102448, "definitionId": 107453, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 31884, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 100}, {"id": 102447, "definitionId": 107452, "maxRanks": 1, "type": "active", "name": "Sentinel", "spellId": 389539, "visibleSpellId": 389539, "icon": "spell_holy_holynova", "index": 200}]}, {"id": 81612, "name": "Seal of Charity", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81475], "prev": [81503], "entries": [{"id": 102600, "definitionId": 107605, "maxRanks": 1, "type": "passive", "name": "Seal of Charity", "spellId": 384815, "icon": "spell_priest_power_word", "index": 100}]}, {"id": 81485, "name": "Faith in the Light", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [81475, 81473], "prev": [81503, 81470], "entries": [{"id": 102450, "definitionId": 107449, "maxRanks": 2, "type": "passive", "name": "Faith in the Light", "spellId": 379043, "icon": "spell_holy_redemption", "index": 100}]}, {"id": 101928, "name": "Soaring Shield", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81472, 81493], "prev": [81474, 81492], "entries": [{"id": 102434, "definitionId": 107439, "maxRanks": 1, "type": "passive", "name": "Soaring Shield", "spellId": 378457, "icon": "spell_burningbladeshaman_lavaslash", "index": 100}]}, {"id": 81629, "name": "Seal of Reprisal", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81472], "prev": [81474, 81506, 81483], "entries": [{"id": 102621, "definitionId": 107626, "maxRanks": 1, "type": "passive", "name": "Seal of Reprisal", "spellId": 377053, "icon": "spell_holy_sealoffury", "index": 100}]}, {"id": 81490, "name": "Guardian of Ancient Kings", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81484, 103877, 81497], "prev": [81483], "entries": [{"id": 102456, "definitionId": 107461, "maxRanks": 1, "type": "active", "name": "Guardian of Ancient Kings", "spellId": 86659, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 81475, "name": "Hand of the Protector", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81500], "prev": [81485, 81612, 81483], "entries": [{"id": 102438, "definitionId": 107443, "maxRanks": 1, "type": "passive", "name": "Hand of the Protector", "spellId": 315924, "icon": "ability_paladin_blessedhands", "index": 100}]}, {"id": 81473, "name": "Crusader's Judgment", "type": "single", "posX": 15000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81500, 81488], "prev": [81485, 81470], "entries": [{"id": 102436, "definitionId": 107441, "maxRanks": 1, "type": "passive", "name": "Crusader's Judgment", "spellId": 204023, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 81472, "name": "Focused Enmity", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81493, 81482], "prev": [81474, 81629, 101928], "entries": [{"id": 102435, "definitionId": 107440, "maxRanks": 1, "type": "passive", "name": "Focused Enmity", "spellId": 378845, "icon": "ability_priest_flashoflight", "index": 100}]}, {"id": 81484, "name": "Gift of the Golden Val'kyr", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81482, 81497, 81491], "prev": [81490], "entries": [{"id": 102449, "definitionId": 107454, "maxRanks": 1, "type": "passive", "name": "Gift of the Golden Val'kyr", "spellId": 378279, "icon": "inv_valkiergoldpet", "index": 100}]}, {"id": 103877, "name": "Sanctified Wrath", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81471, 81497], "prev": [81490], "entries": [{"id": 128278, "definitionId": 133085, "maxRanks": 1, "type": "passive", "name": "Sanctified Wrath", "spellId": 53376, "icon": "ability_paladin_judgementsofthejust", "index": 100}]}, {"id": 81500, "name": "Uther's Counsel", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81471], "prev": [81473, 81475], "entries": [{"id": 102469, "definitionId": 107474, "maxRanks": 1, "type": "passive", "name": "Uther's Counsel", "spellId": 378425, "icon": "spell_holy_greaterblessingofsalvation", "index": 100}]}, {"id": 81493, "name": "Strength in Adversity / Crusader's Resolve", "type": "choice", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81505], "prev": [81472, 101928], "entries": [{"id": 102461, "definitionId": 107466, "maxRanks": 1, "type": "passive", "name": "Strength in Adversity", "spellId": 393071, "icon": "spell_holy_weaponmastery", "index": 100}, {"id": 102460, "definitionId": 107465, "maxRanks": 1, "type": "passive", "name": "Crusader's Resolve", "spellId": 380188, "icon": "ability_priest_angelicbulwark", "index": 200}]}, {"id": 81482, "name": "Ferren Marcus's Fervor", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81505, 81491], "prev": [81472, 81484], "entries": [{"id": 102446, "definitionId": 107451, "maxRanks": 2, "type": "passive", "name": "Ferren Marcus's Fervor", "spellId": 378762, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 81497, "name": "Eye of Tyr", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81491, 92953, 81504], "prev": [81490, 81484, 103877], "entries": [{"id": 102466, "definitionId": 107471, "maxRanks": 1, "type": "active", "name": "Eye of Tyr", "spellId": 387174, "icon": "inv_shield_1h_artifactnorgannon_d_01", "index": 100}]}, {"id": 81471, "name": "Resolute Defender", "type": "single", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81504, 81477], "prev": [81500, 103877], "entries": [{"id": 102433, "definitionId": 107438, "maxRanks": 2, "type": "passive", "name": "Resolute Defender", "spellId": 385422, "icon": "ability_crown_of_the_heavens_icon", "index": 100}]}, {"id": 81488, "name": "Bastion of Light", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81477], "prev": [81473], "entries": [{"id": 102454, "definitionId": 107459, "maxRanks": 1, "type": "active", "name": "Bastion of Light", "spellId": 378974, "icon": "paladin_protection", "index": 100}]}, {"id": 81505, "name": "Moment of Glory", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81482, 81493], "entries": [{"id": 102474, "definitionId": 107479, "maxRanks": 1, "type": "active", "name": "Moment of Glory", "spellId": 327193, "icon": "spell_holy_aspiration", "index": 100}]}, {"id": 81491, "name": "Bulwark of Righteous Fury", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81482, 81484, 81497], "entries": [{"id": 102457, "definitionId": 107462, "maxRanks": 1, "type": "passive", "name": "Bulwark of Righteous Fury", "spellId": 386653, "icon": "spell_holy_sealofrighteousness", "index": 0}]}, {"id": 92953, "name": "Inmost Light", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81497], "entries": [{"id": 115167, "definitionId": 120174, "maxRanks": 1, "type": "passive", "name": "Inmost Light", "spellId": 405757, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 81504, "name": "Final Stand", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81471, 81497], "entries": [{"id": 102473, "definitionId": 107478, "maxRanks": 1, "type": "passive", "name": "Final Stand", "spellId": 204077, "icon": "spell_holy_crusade", "index": 400}]}, {"id": 81477, "name": "Righteous Protector", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81471, 81488], "entries": [{"id": 102440, "definitionId": 107445, "maxRanks": 1, "type": "passive", "name": "Righteous Protector", "spellId": 204074, "icon": "ability_paladin_shieldofthetemplar", "index": 100}]}], "heroNodes": [{"id": 95180, "name": "Light's Guidance", "type": "single", "posX": 15900, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 48, "requiresNode": 81497, "next": [95187, 95183, 95177], "prev": [], "entries": [{"id": 117813, "definitionId": 122825, "maxRanks": 1, "type": "passive", "name": "Light's Guidance", "spellId": 427445, "icon": "ability_paladin_longarmofthelaw", "index": 100}], "freeNode": true}, {"id": 95183, "name": "Zealous Vindication / For Whom the Bell Tolls", "type": "choice", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95179], "prev": [95180], "entries": [{"id": 117816, "definitionId": 122828, "maxRanks": 1, "type": "passive", "name": "Zealous Vindication", "spellId": 431463, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 117859, "definitionId": 122871, "maxRanks": 1, "type": "passive", "name": "For Whom the Bell Tolls", "spellId": 432929, "icon": "ability_paladin_hammeroftherighteous", "index": 200}]}, {"id": 95187, "name": "Shake the Heavens", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95178], "prev": [95180], "entries": [{"id": 117823, "definitionId": 122835, "maxRanks": 1, "type": "passive", "name": "Shake the Heavens", "spellId": 431533, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 95177, "name": "Wrathful Descent", "type": "single", "posX": 16500, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95181], "prev": [95180], "entries": [{"id": 117810, "definitionId": 122822, "maxRanks": 1, "type": "passive", "name": "Wrathful Descent", "spellId": 431551, "icon": "ability_paladin_intercession", "index": 100}]}, {"id": 95179, "name": "Sacrosanct Crusade", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95185], "prev": [95183], "entries": [{"id": 117812, "definitionId": 122824, "maxRanks": 1, "type": "passive", "name": "Sacrosanct Crusade", "spellId": 431730, "icon": "inv_plate_raidpaladinprimalist_d_01_cape", "index": 100}]}, {"id": 95178, "name": "Higher Calling", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95184], "prev": [95187], "entries": [{"id": 117811, "definitionId": 122823, "maxRanks": 1, "type": "passive", "name": "Higher Calling", "spellId": 431687, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 95181, "name": "Bonds of Fellowship / Unrelenting Charger", "type": "choice", "posX": 16500, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95186], "prev": [95177], "entries": [{"id": 117814, "definitionId": 122826, "maxRanks": 1, "type": "passive", "name": "Bonds of Fellowship", "spellId": 432992, "icon": "spell_holy_crusade", "index": 100}, {"id": 117858, "definitionId": 122870, "maxRanks": 1, "type": "passive", "name": "Unrelenting Charger", "spellId": 432990, "icon": "ability_mount_mawhorsespikes_yellow", "index": 200}]}, {"id": 95185, "name": "Endless Wrath / Sanctification", "type": "choice", "posX": 15290, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95179], "entries": [{"id": 117820, "definitionId": 122832, "maxRanks": 1, "type": "passive", "name": "Endless Wrath", "spellId": 432615, "icon": "spell_holy_divinepurpose", "index": 100}, {"id": 117819, "definitionId": 122831, "maxRanks": 1, "type": "passive", "name": "Sanctification", "spellId": 432977, "icon": "ability_paladin_blessedhands", "index": 200}]}, {"id": 95184, "name": "Hammerfall", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95178], "entries": [{"id": 117818, "definitionId": 122830, "maxRanks": 1, "type": "passive", "name": "Hammerfall", "spellId": 432463, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 95186, "name": "Undisputed Ruling", "type": "single", "posX": 16500, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95182], "prev": [95181], "entries": [{"id": 117822, "definitionId": 122834, "maxRanks": 1, "type": "passive", "name": "Undisputed Ruling", "spellId": 432626, "icon": "spell_holy_righteousfury", "index": 100}]}, {"id": 95182, "name": "Light's Deliverance", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [], "prev": [95184, 95185, 95186], "entries": [{"id": 117815, "definitionId": 122827, "maxRanks": 1, "type": "passive", "name": "Light's Deliverance", "spellId": 425518, "icon": "inv_glove_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 95234, "name": "Holy Armaments", "type": "single", "posX": 8690, "posY": 4190, "maxRanks": 1, "entryNode": true, "subTreeId": 49, "next": [95233, 95228, 95235], "prev": [], "entries": [{"id": 117882, "definitionId": 122894, "maxRanks": 1, "type": "active", "name": "Holy Armaments", "spellId": 432459, "icon": "inv_ability_lightsmithpaladin_holybulwark", "index": 100}], "freeNode": true}, {"id": 95233, "name": "Rite of Sanctification / Rite of Adjuration", "type": "choice", "posX": 8100, "posY": 4790, "maxRanks": 1, "subTreeId": 49, "next": [95236], "prev": [95234], "entries": [{"id": 117881, "definitionId": 122893, "maxRanks": 1, "type": "active", "name": "Rite of Sanctification", "spellId": 433568, "icon": "inv_inscription_weaponscroll01", "index": 100}, {"id": 117880, "definitionId": 122892, "maxRanks": 1, "type": "active", "name": "Rite of Adjuration", "spellId": 433583, "icon": "inv_inscription_armorscroll02", "index": 200}]}, {"id": 95228, "name": "Solidarity", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95231], "prev": [95234], "entries": [{"id": 117873, "definitionId": 122885, "maxRanks": 1, "type": "passive", "name": "Solidarity", "spellId": 432802, "icon": "spell_holy_heroism", "index": 100}]}, {"id": 95235, "name": "Divine Guidance / Blessed Assurance", "type": "choice", "posX": 9300, "posY": 4800, "maxRanks": 1, "subTreeId": 49, "next": [95232], "prev": [95234], "entries": [{"id": 117884, "definitionId": 122896, "maxRanks": 1, "type": "passive", "name": "Divine Guidance", "spellId": 433106, "icon": "spell_holy_lightsgrace", "index": 100}, {"id": 117883, "definitionId": 122895, "maxRanks": 1, "type": "passive", "name": "Blessed Assurance", "spellId": 433015, "icon": "spell_holy_blessedlife", "index": 200}]}, {"id": 95231, "name": "Divine Inspiration / Forewarning", "type": "choice", "posX": 8700, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95229], "prev": [95228], "entries": [{"id": 117877, "definitionId": 122889, "maxRanks": 1, "type": "passive", "name": "Divine Inspiration", "spellId": 432964, "icon": "ability_priest_flashoflight", "index": 100}, {"id": 117876, "definitionId": 122888, "maxRanks": 1, "type": "passive", "name": "Forewarning", "spellId": 432804, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 95232, "name": "Authoritative Rebuke / Tempered in Battle", "type": "choice", "posX": 9290, "posY": 5390, "maxRanks": 1, "subTreeId": 49, "next": [95238], "prev": [95235], "entries": [{"id": 117879, "definitionId": 122891, "maxRanks": 1, "type": "passive", "name": "Authoritative Rebuke", "spellId": 469886, "icon": "inv_misc_symbolofkings_01", "index": 100}, {"id": 117878, "definitionId": 122890, "maxRanks": 1, "type": "passive", "name": "Tempered in Battle", "spellId": 469701, "icon": "inv_everburningforge_yellow", "index": 200}]}, {"id": 95236, "name": "Laying Down Arms", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 49, "next": [95237], "prev": [95233], "entries": [{"id": 117885, "definitionId": 122897, "maxRanks": 1, "type": "passive", "name": "Laying Down Arms", "spellId": 432866, "icon": "ability_paladin_handoflight", "index": 100}]}, {"id": 95229, "name": "Valiance", "type": "single", "posX": 8700, "posY": 5980, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95231], "entries": [{"id": 117874, "definitionId": 122886, "maxRanks": 1, "type": "passive", "name": "Valiance", "spellId": 432919, "icon": "inv_mace_47", "index": 100}]}, {"id": 95237, "name": "Shared Resolve", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95236], "entries": [{"id": 117886, "definitionId": 122898, "maxRanks": 1, "type": "passive", "name": "Shared Resolve", "spellId": 432821, "icon": "spell_holy_devotionaura", "index": 100}]}, {"id": 95238, "name": "Hammer and Anvil", "type": "single", "posX": 9300, "posY": 6000, "maxRanks": 1, "subTreeId": 49, "next": [95230], "prev": [95232], "entries": [{"id": 117887, "definitionId": 122899, "maxRanks": 1, "type": "passive", "name": "Hammer and Anvil", "spellId": 433718, "icon": "inv_10_blacksmithing_consumable_repairhammer_color1", "index": 100}]}, {"id": 95230, "name": "Blessing of the Forge", "type": "single", "posX": 8690, "posY": 6600, "maxRanks": 1, "subTreeId": 49, "next": [], "prev": [95229, 95237, 95238], "entries": [{"id": 117875, "definitionId": 122887, "maxRanks": 1, "type": "passive", "name": "Blessing of the Forge", "spellId": 433011, "icon": "inv_ability_lightsmithpaladin_sacredweapon", "index": 100}]}], "subTreeNodes": [{"id": 99838, "name": "Lightsmith / Templar", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123361, "type": "subtree", "name": "Lightsmith", "traitSubTreeId": 49, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-lightsmith", "nodes": [95234, 95233, 95228, 95235, 95231, 95232, 95236, 95229, 95237, 95238, 95230]}, {"id": 123358, "type": "subtree", "name": "Templar", "traitSubTreeId": 48, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-templar", "nodes": [95180, 95183, 95187, 95177, 95179, 95178, 95181, 95185, 95184, 95186, 95182]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81600, 81602, 81603, 81604, 81605, 81607, 81608, 81609, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81621, 81624, 81625, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831, 103849, 103850, 103851, 103852, 103853, 103854, 103855, 103856, 103857, 103858, 103859, 103860, 103861, 103862, 103863, 103864, 103865, 103866, 103867, 103868, 103877]}, {"traitTreeId": 790, "className": "Paladin", "classId": 2, "specName": "Retribution", "specId": 70, "classNodes": [{"id": 81597, "name": "Lay on Hands", "type": "single", "posX": 3600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [103859, 81602, 81507], "prev": [], "entries": [{"id": 102583, "definitionId": 107588, "maxRanks": 1, "type": "active", "name": "Lay on Hands", "spellId": 633, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 81600, "name": "Auras of the Resolute", "type": "single", "posX": 4800, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81602, 81598, 81632], "prev": [], "entries": [{"id": 102587, "definitionId": 107592, "maxRanks": 1, "type": "active", "name": "Auras of the Resolute", "spellId": 385633, "icon": "spell_holy_devotionaura", "index": 100}], "freeNode": true}, {"id": 81510, "name": "Hammer of Wrath", "type": "single", "posX": 6000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81598, 93010, 81603], "prev": [], "entries": [{"id": 102479, "definitionId": 107484, "maxRanks": 1, "type": "active", "name": "Hammer of Wrath", "spellId": 24275, "icon": "spell_paladin_hammerofwrath", "index": 100}], "freeNode": true}, {"id": 81507, "name": "Cleanse Toxins", "type": "single", "posX": 3000, "posY": 2100, "maxRanks": 1, "next": [103858, 93189], "prev": [81597], "entries": [{"id": 102476, "definitionId": 107481, "maxRanks": 1, "type": "active", "name": "Cleanse Toxins", "spellId": 213644, "icon": "spell_holy_renew", "index": 100}]}, {"id": 103859, "name": "Empyreal Ward", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [93189], "prev": [81597], "entries": [{"id": 128255, "definitionId": 133062, "maxRanks": 1, "type": "passive", "name": "Empyreal Ward", "spellId": 387791, "icon": "spell_holy_layonhands", "index": 100}]}, {"id": 81602, "name": "Fist of Justice", "type": "single", "posX": 4200, "posY": 2100, "maxRanks": 1, "next": [93189, 81632], "prev": [81600, 81597], "entries": [{"id": 102589, "definitionId": 107594, "maxRanks": 1, "type": "passive", "name": "Fist of Justice", "spellId": 234299, "icon": "spell_holy_fistofjustice", "index": 100}]}, {"id": 81598, "name": "Repentance / Blinding Light", "type": "choice", "posX": 5400, "posY": 2100, "maxRanks": 1, "next": [81632, 103854, 81603], "prev": [81510, 81600], "entries": [{"id": 102585, "definitionId": 107590, "maxRanks": 1, "type": "active", "name": "Repentance", "spellId": 20066, "icon": "spell_holy_prayerofhealing", "index": 100}, {"id": 102584, "definitionId": 107589, "maxRanks": 1, "type": "active", "name": "Blinding Light", "spellId": 115750, "icon": "ability_paladin_blindinglight", "index": 200}]}, {"id": 93010, "name": "Turn Evil", "type": "single", "posX": 6600, "posY": 2100, "maxRanks": 1, "next": [103855], "prev": [81510], "entries": [{"id": 102623, "definitionId": 107628, "maxRanks": 1, "type": "active", "name": "Turn Evil", "spellId": 10326, "icon": "ability_paladin_turnevil", "index": 100}]}, {"id": 103858, "name": "A Just Reward", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [103860], "prev": [81507], "entries": [{"id": 128254, "definitionId": 133061, "maxRanks": 1, "type": "passive", "name": "A Just Reward", "spellId": 469411, "icon": "spell_holy_blindingheal", "index": 100}]}, {"id": 93189, "name": "Afterimage / Healing Hands", "type": "choice", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [103860, 81630], "prev": [81507, 103859, 81602], "entries": [{"id": 115482, "definitionId": 120494, "maxRanks": 1, "type": "passive", "name": "Afterimage", "spellId": 385414, "icon": "spell_holy_aspiration", "index": 100}, {"id": 115481, "definitionId": 120493, "maxRanks": 1, "type": "passive", "name": "Healing Hands", "spellId": 326734, "icon": "ability_paladin_infusionoflight", "index": 200}]}, {"id": 81632, "name": "Divine Steed", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [103857, 81605, 81631], "prev": [81602, 81598, 81600], "entries": [{"id": 102625, "definitionId": 107630, "maxRanks": 1, "type": "active", "name": "Divine Steed", "spellId": 190784, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 103854, "name": "Light's Countenance", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [81598], "entries": [{"id": 128247, "definitionId": 133054, "maxRanks": 1, "type": "passive", "name": "Light's Countenance", "spellId": 469325, "icon": "inv_shoulder_raidpaladindragon_d_01", "index": 100}]}, {"id": 81603, "name": "Greater Judgment", "type": "single", "posX": 6000, "posY": 2700, "maxRanks": 1, "next": [81604, 93009], "prev": [81510, 81598], "entries": [{"id": 102590, "definitionId": 107595, "maxRanks": 1, "type": "passive", "name": "Greater Judgment", "spellId": 231663, "icon": "spell_holy_righteousfury", "index": 0}], "freeNode": true}, {"id": 103855, "name": "Wrench Evil / Stand Against Evil", "type": "choice", "posX": 6600, "posY": 2700, "maxRanks": 1, "next": [81604], "prev": [93010], "entries": [{"id": 128250, "definitionId": 133057, "maxRanks": 1, "type": "passive", "name": "Wrench Evil", "spellId": 460720, "icon": "ability_paladin_turnevil", "index": 100}, {"id": 128249, "definitionId": 133056, "maxRanks": 1, "type": "passive", "name": "Stand Against Evil", "spellId": 469317, "icon": "spell_holy_excorcism", "index": 200}]}, {"id": 103860, "name": "Holy Reprieve", "type": "single", "posX": 3000, "posY": 3300, "maxRanks": 1, "next": [81630, 93168], "prev": [93189, 103858], "entries": [{"id": 128256, "definitionId": 133063, "maxRanks": 1, "type": "passive", "name": "Holy Reprieve", "spellId": 469445, "icon": "spell_holy_sealofsalvation", "index": 100}]}, {"id": 81605, "name": "Cavalier", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [81630, 81496, 81614], "prev": [81632], "entries": [{"id": 102592, "definitionId": 107597, "maxRanks": 1, "type": "passive", "name": "Cavalier", "spellId": 230332, "icon": "ability_paladin_divinesteed", "index": 100}]}, {"id": 103857, "name": "Divine Spurs", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [], "prev": [81632], "entries": [{"id": 128253, "definitionId": 133060, "maxRanks": 1, "type": "passive", "name": "Divine Spurs", "spellId": 469409, "icon": "ability_mount_charger", "index": 100}]}, {"id": 81631, "name": "Steed of Liberty / Blessing of Freedom", "type": "choice", "posX": 5400, "posY": 3300, "maxRanks": 1, "next": [81496, 93174, 93009], "prev": [81632], "entries": [{"id": 102624, "definitionId": 107629, "maxRanks": 1, "type": "passive", "name": "Steed of Liberty", "spellId": 469304, "icon": "spell_holy_crusaderaura", "index": 200}, {"id": 128251, "definitionId": 133058, "maxRanks": 1, "type": "active", "name": "Blessing of Freedom", "spellId": 1044, "icon": "spell_holy_sealofvalor", "index": 300}]}, {"id": 81604, "name": "Rebuke", "type": "single", "posX": 6600, "posY": 3300, "maxRanks": 1, "next": [93009, 93165], "prev": [81603, 103855], "entries": [{"id": 102591, "definitionId": 107596, "maxRanks": 1, "type": "active", "name": "Rebuke", "spellId": 96231, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 81630, "name": "Obduracy", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93168, 81614, 81609], "prev": [93189, 103860, 81605], "entries": [{"id": 102622, "definitionId": 107627, "maxRanks": 1, "type": "passive", "name": "Obduracy", "spellId": 385427, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 81496, "name": "Divine Toll", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93181, 81614, 81616], "prev": [81631, 81605], "entries": [{"id": 102465, "definitionId": 107470, "maxRanks": 1, "type": "active", "name": "Divine Toll", "spellId": 375576, "icon": "inv_ability_paladin_divinetoll", "index": 100}]}, {"id": 93174, "name": "Unbound Freedom", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81616], "prev": [81631], "entries": [{"id": 115454, "definitionId": 120466, "maxRanks": 1, "type": "passive", "name": "Unbound Freedom", "spellId": 305394, "icon": "spell_holy_sealofvalor", "index": 100}]}, {"id": 93009, "name": "Sanctified Plates", "type": "single", "posX": 6000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81543, 81616, 81615], "prev": [81603, 81604, 81631], "entries": [{"id": 115034, "definitionId": 120041, "maxRanks": 2, "type": "passive", "name": "Sanctified Plates", "spellId": 402964, "icon": "inv_chest_plate_raidpaladin_s_01", "index": 100}]}, {"id": 93165, "name": "Punishment", "type": "single", "posX": 6600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81543], "prev": [81604], "entries": [{"id": 115444, "definitionId": 120456, "maxRanks": 1, "type": "passive", "name": "Punishment", "spellId": 403530, "icon": "spell_holy_rebuke", "index": 100}]}, {"id": 93168, "name": "Divine Reach", "type": "single", "posX": 3000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81609, 93008], "prev": [103860, 81630], "entries": [{"id": 115447, "definitionId": 120459, "maxRanks": 1, "type": "passive", "name": "Divine Reach", "spellId": 469476, "icon": "spell_holy_mindvision", "index": 100}]}, {"id": 81614, "name": "Blessing of Sacrifice", "type": "single", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81607, 81609, 81618], "prev": [81605, 81630, 81496], "entries": [{"id": 102602, "definitionId": 107607, "maxRanks": 1, "type": "active", "name": "Blessing of Sacrifice", "spellId": 6940, "icon": "spell_holy_sealofsacrifice", "index": 100}]}, {"id": 93181, "name": "Divine Resonance / Quickened Invocation", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [81496], "entries": [{"id": 115468, "definitionId": 120480, "maxRanks": 1, "type": "passive", "name": "Divine Resonance", "spellId": 384027, "icon": "ability_mount_goatmountwhite", "index": 100}, {"id": 115467, "definitionId": 120479, "maxRanks": 1, "type": "passive", "name": "Quickened Invocation", "spellId": 379391, "icon": "spell_holy_pureofheart", "index": 200}]}, {"id": 81616, "name": "Blessing of Protection", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81617, 81618, 81615], "prev": [93174, 81496, 93009], "entries": [{"id": 102604, "definitionId": 107609, "maxRanks": 1, "type": "active", "name": "Blessing of Protection", "spellId": 1022, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81543, "name": "Consecrated Ground", "type": "single", "posX": 6600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81615, 81608], "prev": [93165, 93009], "entries": [{"id": 102518, "definitionId": 107523, "maxRanks": 1, "type": "passive", "name": "Consecrated Ground", "spellId": 204054, "icon": "ability_paladin_righteousvengeance", "index": 100}]}, {"id": 81609, "name": "Holy Aegis", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [93008, 103867], "prev": [81630, 93168, 81614], "entries": [{"id": 102597, "definitionId": 107602, "maxRanks": 1, "type": "passive", "name": "Holy Aegis", "spellId": 385515, "icon": "ability_paladin_touchedbylight", "index": 100}]}, {"id": 81607, "name": "Sacrifice of the Just / Recompense", "type": "choice", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103867, 103865, 103866], "prev": [81614], "entries": [{"id": 102595, "definitionId": 107600, "maxRanks": 1, "type": "passive", "name": "Sacrifice of the Just", "spellId": 384820, "icon": "spell_holy_sealofsacrifice", "index": 100}, {"id": 102594, "definitionId": 107599, "maxRanks": 1, "type": "passive", "name": "Recompense", "spellId": 384914, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 81618, "name": "Sacred Strength / Divine Purpose", "type": "choice", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103866, 103868], "prev": [81616, 81614], "entries": [{"id": 102608, "definitionId": 107613, "maxRanks": 1, "type": "passive", "name": "Sacred Strength", "spellId": 469337, "icon": "spell_holy_righteousnessaura", "index": 100}, {"id": 128243, "definitionId": 133050, "maxRanks": 1, "type": "passive", "name": "Divine Purpose", "spellId": 408459, "icon": "spell_holy_divinepurpose", "index": 200}]}, {"id": 81617, "name": "Improved Blessing of Protection", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103868, 103864], "prev": [81616], "entries": [{"id": 102606, "definitionId": 107611, "maxRanks": 1, "type": "passive", "name": "Improved Blessing of Protection", "spellId": 384909, "icon": "spell_holy_sealofprotection", "index": 100}]}, {"id": 81615, "name": "Unbreakable Spirit", "type": "single", "posX": 6000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [103864, 81608], "prev": [93009, 81543, 81616], "entries": [{"id": 102603, "definitionId": 107608, "maxRanks": 1, "type": "passive", "name": "Unbreakable Spirit", "spellId": 114154, "icon": "spell_holy_holyguidance", "index": 100}]}, {"id": 93008, "name": "Lightforged Blessing", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495], "prev": [93168, 81609], "entries": [{"id": 115239, "definitionId": 120251, "maxRanks": 1, "type": "passive", "name": "Lightforged Blessing", "spellId": 403479, "icon": "spell_holy_circleofrenewal", "index": 100}]}, {"id": 103867, "name": "Lead the Charge", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81495, 103862, 81621], "prev": [81609, 81607], "entries": [{"id": 128263, "definitionId": 133070, "maxRanks": 1, "type": "passive", "name": "Lead the Charge", "spellId": 469780, "icon": "inv_helm_plate_raidpaladin_r_01mythic", "index": 100}]}, {"id": 103865, "name": "Worthy Sacrifice / Righteous Protection", "type": "choice", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621], "prev": [81607], "entries": [{"id": 128261, "definitionId": 133068, "maxRanks": 1, "type": "passive", "name": "Worthy Sacrifice", "spellId": 469279, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 128248, "definitionId": 133055, "maxRanks": 1, "type": "passive", "name": "Righteous Protection", "spellId": 469321, "icon": "spell_holy_blessingofprotection", "index": 200}]}, {"id": 103866, "name": "Holy Ritual", "type": "single", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81621, 93683, 103849], "prev": [81618, 81607], "entries": [{"id": 128262, "definitionId": 133069, "maxRanks": 1, "type": "passive", "name": "Holy Ritual", "spellId": 199422, "icon": "inv_relics_libramoftruth", "index": 100}]}, {"id": 103868, "name": "Blessed Calling", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [103849], "prev": [81617, 81618], "entries": [{"id": 128264, "definitionId": 133071, "maxRanks": 1, "type": "passive", "name": "Blessed Calling", "spellId": 469770, "icon": "ability_paladin_judgementofthepure", "index": 100}]}, {"id": 103864, "name": "Inspired Guard", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [103849, 81628, 103856], "prev": [81617, 81615], "entries": [{"id": 128260, "definitionId": 133067, "maxRanks": 1, "type": "passive", "name": "Inspired Guard", "spellId": 469439, "icon": "spell_holy_divineprotection", "index": 100}]}, {"id": 81608, "name": "Judgment of Light", "type": "single", "posX": 6600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [103856], "prev": [81615, 81543], "entries": [{"id": 102596, "definitionId": 107601, "maxRanks": 1, "type": "passive", "name": "Judgment of Light", "spellId": 183778, "icon": "spell_holy_divineprovidence", "index": 100}]}, {"id": 81495, "name": "Faith's Armor", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81624], "prev": [93008, 103867], "entries": [{"id": 102464, "definitionId": 107469, "maxRanks": 1, "type": "passive", "name": "Faith's Armor", "spellId": 406101, "icon": "inv_shield_1h_newplayer_a_01", "index": 100}]}, {"id": 103862, "name": "Stoicism", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81624], "prev": [103867], "entries": [{"id": 128258, "definitionId": 133065, "maxRanks": 1, "type": "passive", "name": "Stoicism", "spellId": 469316, "icon": "spell_magic_magearmor", "index": 100}]}, {"id": 81621, "name": "Seal of Might", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [81624, 103861], "prev": [103866, 103865, 103867], "entries": [{"id": 102612, "definitionId": 107617, "maxRanks": 2, "type": "passive", "name": "Seal of Might", "spellId": 385450, "icon": "spell_holy_sealofwrath", "index": 100}]}, {"id": 93683, "name": "Seal of the Crusader", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103861], "prev": [103866], "entries": [{"id": 116064, "definitionId": 121076, "maxRanks": 1, "type": "passive", "name": "Seal of the Crusader", "spellId": 416770, "icon": "spell_holy_holysmite", "index": 100}]}, {"id": 103849, "name": "Vengeful Wrath", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [103861, 103863], "prev": [103866, 103868, 103864], "entries": [{"id": 128239, "definitionId": 133046, "maxRanks": 2, "type": "passive", "name": "Vengeful Wrath", "spellId": 406835, "icon": "spell_paladin_hammerofwrath", "index": 100}]}, {"id": 81628, "name": "Eye for an Eye", "type": "single", "posX": 6000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864], "entries": [{"id": 102620, "definitionId": 107625, "maxRanks": 1, "type": "passive", "name": "Eye for an Eye", "spellId": 469309, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 103856, "name": "Golden Path / Selfless Healer", "type": "choice", "posX": 6600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [103863], "prev": [103864, 81608], "entries": [{"id": 128252, "definitionId": 133059, "maxRanks": 1, "type": "passive", "name": "Golden Path", "spellId": 377128, "icon": "ability_priest_cascade", "index": 100}, {"id": 128309, "definitionId": 133116, "maxRanks": 1, "type": "passive", "name": "Selfless Healer", "spellId": 469434, "icon": "ability_paladin_gaurdedbythelight", "index": 200}]}, {"id": 81624, "name": "Of Dusk and Dawn", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81621, 81495, 103862], "entries": [{"id": 102615, "definitionId": 107620, "maxRanks": 1, "type": "passive", "name": "Of Dusk and Dawn", "spellId": 385125, "icon": "spell_paladin_lightofdawn", "index": 100}]}, {"id": 103861, "name": "Lightbearer", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103849, 81621, 93683], "entries": [{"id": 128257, "definitionId": 133064, "maxRanks": 1, "type": "passive", "name": "Lightbearer", "spellId": 469416, "icon": "spell_paladin_clarityofpurpose", "index": 100}]}, {"id": 103863, "name": "Light's Revocation", "type": "single", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103849, 103856, 81628], "entries": [{"id": 128259, "definitionId": 133066, "maxRanks": 1, "type": "passive", "name": "Light's Revocation", "spellId": 146956, "icon": "spell_holy_divineshield", "index": 100}]}], "specNodes": [{"id": 81526, "name": "Blade of Justice", "type": "single", "posX": 13200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [81527], "prev": [], "entries": [{"id": 102498, "definitionId": 107503, "maxRanks": 1, "type": "active", "name": "Blade of Justice", "spellId": 184575, "icon": "ability_paladin_bladeofjustice", "index": 100}]}, {"id": 81527, "name": "Divine Storm", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [81521, 92689, 93161, 92838], "prev": [81526], "entries": [{"id": 102499, "definitionId": 107504, "maxRanks": 1, "type": "active", "name": "Divine Storm", "spellId": 53385, "icon": "ability_paladin_divinestorm", "index": 100}]}, {"id": 81521, "name": "Swift Justice / Light of Justice", "type": "choice", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [81532, 81531], "prev": [81527], "entries": [{"id": 102491, "definitionId": 107496, "maxRanks": 1, "type": "passive", "name": "Swift Justice", "spellId": 383228, "icon": "ability_paladin_judgementofthepure", "index": 100}, {"id": 114828, "definitionId": 119835, "maxRanks": 1, "type": "passive", "name": "Light of Justice", "spellId": 404436, "icon": "inv_offhand_1h_ulduarraid_d_01", "index": 200}]}, {"id": 92689, "name": "Expurgation", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [81531], "prev": [81527], "entries": [{"id": 114830, "definitionId": 119837, "maxRanks": 1, "type": "passive", "name": "Expurgation", "spellId": 383344, "icon": "ability_paladin_bladeofjusticeblue", "index": 100}]}, {"id": 93161, "name": "Judgment of Justice", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [81531], "prev": [81527], "entries": [{"id": 115440, "definitionId": 120452, "maxRanks": 1, "type": "passive", "name": "Judgment of Justice", "spellId": 403495, "icon": "ability_paladin_judgementblue", "index": 100}]}, {"id": 92838, "name": "Improved Blade of Justice / Holy Blade", "type": "choice", "posX": 15000, "posY": 2700, "maxRanks": 1, "next": [81531, 81523], "prev": [81527], "entries": [{"id": 115023, "definitionId": 120030, "maxRanks": 1, "type": "passive", "name": "Improved Blade of Justice", "spellId": 403745, "icon": "ability_paladin_bladeofjustice", "index": 100}, {"id": 115022, "definitionId": 120029, "maxRanks": 1, "type": "passive", "name": "Holy Blade", "spellId": 383342, "icon": "ability_paladin_lightoftheprotector", "index": 200}]}, {"id": 81532, "name": "Final Verdict / Justicar's Vengeance", "type": "choice", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [81542, 92951, 81533], "prev": [81521], "entries": [{"id": 102504, "definitionId": 107509, "maxRanks": 1, "type": "active", "name": "Final Verdict", "spellId": 383328, "icon": "spell_paladin_templarsverdict", "index": 0}, {"id": 114831, "definitionId": 119838, "maxRanks": 1, "type": "active", "name": "Justicar's Vengeance", "spellId": 215661, "icon": "spell_holy_retributionaura", "index": 100}]}, {"id": 81531, "name": "Light's Celerity / Guided Prayer", "type": "choice", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [92688, 92951, 81544], "prev": [81521, 92838, 93161, 92689], "entries": [{"id": 102503, "definitionId": 107508, "maxRanks": 1, "type": "passive", "name": "Light's Celerity", "spellId": 403698, "icon": "spell_holy_flashheal", "index": 100}, {"id": 115020, "definitionId": 120027, "maxRanks": 1, "type": "passive", "name": "Guided Prayer", "spellId": 404357, "icon": "ability_crown_of_the_heavens_icon", "index": 200}]}, {"id": 81523, "name": "Righteous Cause / Art of War", "type": "choice", "posX": 15000, "posY": 3300, "maxRanks": 1, "next": [92688, 81512, 92952], "prev": [92838], "entries": [{"id": 102494, "definitionId": 107499, "maxRanks": 1, "type": "passive", "name": "Righteous Cause", "spellId": 402912, "icon": "inv_sword_133", "index": 100}, {"id": 102493, "definitionId": 107498, "maxRanks": 1, "type": "passive", "name": "Art of War", "spellId": 406064, "icon": "ability_paladin_artofwar", "index": 200}]}, {"id": 81542, "name": "Jurisdiction", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81533, 93173], "prev": [81532], "entries": [{"id": 102516, "definitionId": 107521, "maxRanks": 1, "type": "passive", "name": "Jurisdiction", "spellId": 402971, "icon": "ability_paladin_longarmofthelaw", "index": 100}]}, {"id": 92951, "name": "Inquisitor's Ire / Tempest of the Lightbringer", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81533, 81534], "prev": [81531, 81532], "entries": [{"id": 115164, "definitionId": 120171, "maxRanks": 1, "type": "passive", "name": "Inquisitor's Ire", "spellId": 403975, "icon": "inv_helmet_plate_raidpaladin_j_01", "index": 100}, {"id": 115452, "definitionId": 120464, "maxRanks": 1, "type": "passive", "name": "Tempest of the Lightbringer", "spellId": 383396, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 200}]}, {"id": 81544, "name": "Avenging Wrath / Crusade", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [93186, 93160, 81516], "prev": [81531], "entries": [{"id": 102519, "definitionId": 107524, "maxRanks": 1, "type": "active", "name": "Avenging Wrath", "spellId": 31884, "visibleSpellId": 31884, "icon": "spell_holy_avenginewrath", "index": 0}, {"id": 125129, "definitionId": 129961, "maxRanks": 1, "type": "active", "name": "Crusade", "spellId": 231895, "icon": "ability_paladin_sanctifiedwrath", "index": 100}]}, {"id": 92688, "name": "Vanguard's Momentum / Sanctify", "type": "choice", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81545, 81541], "prev": [81531, 81523], "entries": [{"id": 114826, "definitionId": 119833, "maxRanks": 1, "type": "passive", "name": "Vanguard's Momentum", "spellId": 383314, "icon": "ability_paladin_speedoflight", "index": 100}, {"id": 115488, "definitionId": 120500, "maxRanks": 1, "type": "passive", "name": "Sanctify", "spellId": 382536, "icon": "achievement_zone_firelands", "index": 200}]}, {"id": 92952, "name": "Zealot's Fervor", "type": "single", "posX": 15000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [81545], "prev": [81523], "entries": [{"id": 115165, "definitionId": 120172, "maxRanks": 2, "type": "passive", "name": "Zealot's Fervor", "spellId": 403509, "icon": "spell_holy_weaponmastery", "index": 100}]}, {"id": 81512, "name": "Rush of Light", "type": "single", "posX": 15600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [81545, 92860], "prev": [81523], "entries": [{"id": 115475, "definitionId": 120487, "maxRanks": 1, "type": "passive", "name": "Rush of Light", "spellId": 407067, "icon": "spell_holy_borrowedtime", "index": 200}]}, {"id": 81533, "name": "Improved Judgment / Boundless Judgment", "type": "choice", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [93173, 93190, 81534], "prev": [81542, 92951, 81532], "entries": [{"id": 102505, "definitionId": 107510, "maxRanks": 1, "type": "passive", "name": "Improved Judgment", "spellId": 405461, "icon": "spell_holy_righteousfury", "index": 100}, {"id": 115021, "definitionId": 120028, "maxRanks": 1, "type": "passive", "name": "Boundless Judgment", "spellId": 405278, "icon": "ability_paladin_judgementofthewise", "index": 200}]}, {"id": 93186, "name": "Crusading Strikes / Templar Strikes", "type": "choice", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81534, 81525], "prev": [81544], "entries": [{"id": 115474, "definitionId": 120486, "maxRanks": 1, "type": "passive", "name": "Crusading Strikes", "spellId": 404542, "icon": "inv_sword_08", "index": 100}, {"id": 115473, "definitionId": 120485, "maxRanks": 1, "type": "active", "name": "Templar Strikes", "spellId": 406646, "icon": "inv_sword_2h_artifactashbringer_d_01", "index": 200}]}, {"id": 93160, "name": "Divine Wrath", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81525], "prev": [81544], "entries": [{"id": 115439, "definitionId": 120451, "maxRanks": 1, "type": "passive", "name": "Divine Wrath", "spellId": 406872, "icon": "spell_holy_greaterblessingofkings", "index": 100}]}, {"id": 81516, "name": "Divine Hammer", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81541, 81525], "prev": [81544], "entries": [{"id": 115016, "definitionId": 120023, "maxRanks": 1, "type": "active", "name": "Divine Hammer", "spellId": 198034, "icon": "classicon_paladin", "index": 200}]}, {"id": 81545, "name": "Blade of Vengeance / Holy Flames", "type": "choice", "posX": 15000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [81541, 92860, 92839], "prev": [92952, 81512, 92688], "entries": [{"id": 102521, "definitionId": 107526, "maxRanks": 1, "type": "passive", "name": "Blade of Vengeance", "spellId": 403826, "icon": "ability_paladin_bladeofjustice", "index": 100}, {"id": 115438, "definitionId": 120450, "maxRanks": 1, "type": "passive", "name": "Holy Flames", "spellId": 406545, "icon": "ability_warlock_inferno", "index": 200}]}, {"id": 93173, "name": "Empyrean Legacy", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537], "prev": [81542, 81533], "entries": [{"id": 115453, "definitionId": 120465, "maxRanks": 1, "type": "passive", "name": "Empyrean Legacy", "spellId": 387170, "icon": "item_holyspark", "index": 100}]}, {"id": 93190, "name": "Heart of the Crusader", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [81537], "prev": [81533], "entries": [{"id": 115483, "definitionId": 120495, "maxRanks": 2, "type": "passive", "name": "Heart of the Crusader", "spellId": 406154, "icon": "spell_brokenheart", "index": 100}]}, {"id": 81534, "name": "Highlord's Wrath", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537], "prev": [93186, 92951, 81533], "entries": [{"id": 102506, "definitionId": 107511, "maxRanks": 1, "type": "passive", "name": "Highlord's Wrath", "spellId": 404512, "icon": "ability_paladin_judgementred", "index": 100}]}, {"id": 81525, "name": "Wake of Ashes", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [81537, 81550, 92839], "prev": [93160, 81516, 93186], "entries": [{"id": 102497, "definitionId": 107502, "maxRanks": 1, "type": "active", "name": "Wake of Ashes", "spellId": 255937, "icon": "inv_sword_2h_artifactashbringerfire_d_03", "index": 100}]}, {"id": 81541, "name": "Blessed Champion", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [92839], "prev": [81545, 81516, 92688], "entries": [{"id": 102515, "definitionId": 107520, "maxRanks": 1, "type": "passive", "name": "Blessed Champion", "spellId": 403010, "icon": "achievement_bg_trueavshutout", "index": 0}]}, {"id": 92860, "name": "Empyrean Power / Judge, Jury and Executioner", "type": "choice", "posX": 15600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [92839], "prev": [81512, 81545], "entries": [{"id": 115051, "definitionId": 120058, "maxRanks": 1, "type": "passive", "name": "Empyrean Power", "spellId": 326732, "icon": "ability_paladin_sheathoflight", "index": 100}, {"id": 115477, "definitionId": 120489, "maxRanks": 1, "type": "passive", "name": "Judge, Jury and Executioner", "spellId": 405607, "icon": "spell_paladin_inquisition", "index": 200}]}, {"id": 81537, "name": "Adjudication", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [93164], "prev": [81525, 93173, 93190, 81534], "entries": [{"id": 102511, "definitionId": 107516, "maxRanks": 1, "type": "passive", "name": "Adjudication", "spellId": 406157, "icon": "spell_holy_vindication", "index": 100}]}, {"id": 81550, "name": "Aegis of Protection / Shield of Vengeance", "type": "choice", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81539, 92854], "prev": [81525], "entries": [{"id": 102526, "definitionId": 107531, "maxRanks": 1, "type": "passive", "name": "Aegis of Protection", "spellId": 403654, "icon": "spell_holy_holyprotection", "index": 100}, {"id": 125130, "definitionId": 129962, "maxRanks": 1, "type": "passive", "name": "Shield of Vengeance", "spellId": 184662, "icon": "ability_paladin_shieldofthetemplar", "index": 200}]}, {"id": 92839, "name": "Penitence", "type": "single", "posX": 15000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [81536], "prev": [81545, 92860, 81541, 81525], "entries": [{"id": 115024, "definitionId": 120031, "maxRanks": 1, "type": "passive", "name": "Penitence", "spellId": 403026, "icon": "ability_paladin_lightofthemartyr", "index": 100}]}, {"id": 93164, "name": "Blades of Light", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81540], "prev": [81537], "entries": [{"id": 115443, "definitionId": 120455, "maxRanks": 1, "type": "passive", "name": "Blades of Light", "spellId": 403664, "icon": "achievement_arena_3v3_7", "index": 100}]}, {"id": 81539, "name": "Final Reckoning / Execution Sentence", "type": "choice", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81548, 81538], "prev": [81550], "entries": [{"id": 102513, "definitionId": 107518, "maxRanks": 1, "type": "active", "name": "Final Reckoning", "spellId": 343721, "icon": "spell_holy_blessedresillience", "index": 100}, {"id": 115435, "definitionId": 120447, "maxRanks": 1, "type": "active", "name": "Execution Sentence", "spellId": 343527, "icon": "spell_paladin_executionsentence", "index": 200}]}, {"id": 92854, "name": "Seething Flames", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81549, 92686], "prev": [81550], "entries": [{"id": 115043, "definitionId": 120050, "maxRanks": 1, "type": "passive", "name": "Seething Flames", "spellId": 405355, "icon": "ability_mage_flamecannon", "index": 100}]}, {"id": 81536, "name": "Burning Crusade", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [81552], "prev": [92839], "entries": [{"id": 102510, "definitionId": 107515, "maxRanks": 1, "type": "passive", "name": "Burning Crusade", "spellId": 405289, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 81540, "name": "Divine Arbiter", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [93164], "entries": [{"id": 102514, "definitionId": 107519, "maxRanks": 1, "type": "passive", "name": "Divine Arbiter", "spellId": 404306, "icon": "spell_holy_eyeforaneye", "index": 100}]}, {"id": 81548, "name": "Executioner's Will", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81539], "entries": [{"id": 102524, "definitionId": 107529, "maxRanks": 1, "type": "passive", "name": "Executioner's Will", "spellId": 406940, "icon": "inv_helm_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 81538, "name": "Divine Auxiliary", "type": "single", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81539], "entries": [{"id": 102512, "definitionId": 107517, "maxRanks": 1, "type": "passive", "name": "Divine Auxiliary", "spellId": 406158, "icon": "inv_polearm_2h_odynspear_d_02", "index": 100}]}, {"id": 81549, "name": "Radiant Glory", "type": "single", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92854], "entries": [{"id": 102525, "definitionId": 107530, "maxRanks": 1, "type": "passive", "name": "Radiant Glory", "spellId": 458359, "icon": "achievement_dungeon_gloryoftheraider", "index": 0}]}, {"id": 92686, "name": "Burn to Ash", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92854], "entries": [{"id": 114824, "definitionId": 119831, "maxRanks": 1, "type": "passive", "name": "Burn to Ash", "spellId": 446663, "icon": "spell_burningsoul", "index": 0}]}, {"id": 81552, "name": "Searing Light", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81536], "entries": [{"id": 102530, "definitionId": 107535, "maxRanks": 1, "type": "passive", "name": "Searing Light", "spellId": 404540, "icon": "spell_fire_felflamering_red", "index": 200}]}], "heroNodes": [{"id": 95180, "name": "Light's Guidance", "type": "single", "posX": 15900, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 48, "requiresNode": 81497, "next": [95187, 95183, 95177], "prev": [], "entries": [{"id": 117813, "definitionId": 122825, "maxRanks": 1, "type": "passive", "name": "Light's Guidance", "spellId": 427445, "icon": "ability_paladin_longarmofthelaw", "index": 100}], "freeNode": true}, {"id": 95099, "name": "Dawnlight", "type": "single", "posX": 8700, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 50, "requiresNode": 81577, "next": [95073, 95095, 95080], "prev": [], "entries": [{"id": 117696, "definitionId": 122708, "maxRanks": 1, "type": "passive", "name": "Dawnlight", "spellId": 431377, "icon": "inv_ability_heraldofthesunpaladin_dawnlight", "index": 100}], "freeNode": true}, {"id": 95183, "name": "Zealous Vindication / For Whom the Bell Tolls", "type": "choice", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95179], "prev": [95180], "entries": [{"id": 117816, "definitionId": 122828, "maxRanks": 1, "type": "passive", "name": "Zealous Vindication", "spellId": 431463, "icon": "spell_holy_surgeoflight", "index": 100}, {"id": 117859, "definitionId": 122871, "maxRanks": 1, "type": "passive", "name": "For Whom the Bell Tolls", "spellId": 432929, "icon": "ability_paladin_hammeroftherighteous", "index": 200}]}, {"id": 95187, "name": "Shake the Heavens", "type": "single", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95178], "prev": [95180], "entries": [{"id": 117823, "definitionId": 122835, "maxRanks": 1, "type": "passive", "name": "Shake the Heavens", "spellId": 431533, "icon": "ability_priest_holybolts01", "index": 100}]}, {"id": 95177, "name": "Wrathful Descent", "type": "single", "posX": 16500, "posY": 1500, "maxRanks": 1, "subTreeId": 48, "next": [95181], "prev": [95180], "entries": [{"id": 117810, "definitionId": 122822, "maxRanks": 1, "type": "passive", "name": "Wrathful Descent", "spellId": 431551, "icon": "ability_paladin_intercession", "index": 100}]}, {"id": 95073, "name": "Morning Star / Gleaming Rays", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95098], "prev": [95099], "entries": [{"id": 117670, "definitionId": 122682, "maxRanks": 1, "type": "passive", "name": "Morning Star", "spellId": 431482, "icon": "spell_holy_persecution", "index": 100}, {"id": 117778, "definitionId": 122790, "maxRanks": 1, "type": "passive", "name": "Gleaming Rays", "spellId": 431480, "icon": "spell_priest_power_word", "index": 200}]}, {"id": 95095, "name": "Eternal Flame", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95071], "prev": [95099], "entries": [{"id": 117692, "definitionId": 122704, "maxRanks": 1, "type": "active", "name": "Eternal Flame", "spellId": 156322, "icon": "inv_torch_thrown", "index": 100}]}, {"id": 95080, "name": "Luminosity", "type": "single", "posX": 9300, "posY": 1800, "maxRanks": 1, "subTreeId": 50, "next": [95072], "prev": [95099], "entries": [{"id": 117677, "definitionId": 122689, "maxRanks": 1, "type": "passive", "name": "Luminosity", "spellId": 431402, "icon": "inv_qirajidol_sun", "index": 100}]}, {"id": 95179, "name": "Sacrosanct Crusade", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95185], "prev": [95183], "entries": [{"id": 117812, "definitionId": 122824, "maxRanks": 1, "type": "passive", "name": "Sacrosanct Crusade", "spellId": 431730, "icon": "inv_plate_raidpaladinprimalist_d_01_cape", "index": 100}]}, {"id": 95178, "name": "Higher Calling", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95184], "prev": [95187], "entries": [{"id": 117811, "definitionId": 122823, "maxRanks": 1, "type": "passive", "name": "Higher Calling", "spellId": 431687, "icon": "ability_paladin_toweroflight", "index": 100}]}, {"id": 95181, "name": "Bonds of Fellowship / Unrelenting Charger", "type": "choice", "posX": 16500, "posY": 2100, "maxRanks": 1, "subTreeId": 48, "next": [95186], "prev": [95177], "entries": [{"id": 117814, "definitionId": 122826, "maxRanks": 1, "type": "passive", "name": "Bonds of Fellowship", "spellId": 432992, "icon": "spell_holy_crusade", "index": 100}, {"id": 117858, "definitionId": 122870, "maxRanks": 1, "type": "passive", "name": "Unrelenting Charger", "spellId": 432990, "icon": "ability_mount_mawhorsespikes_yellow", "index": 200}]}, {"id": 95098, "name": "Illumine / Will of the Dawn", "type": "choice", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95069], "prev": [95073], "entries": [{"id": 117695, "definitionId": 122707, "maxRanks": 1, "type": "passive", "name": "Illumine", "spellId": 431423, "icon": "spell_holy_divineillumination", "index": 100}, {"id": 117777, "definitionId": 122789, "maxRanks": 1, "type": "passive", "name": "Will of the Dawn", "spellId": 431406, "icon": "spell_holy_divineprovidence", "index": 200}]}, {"id": 95071, "name": "Blessing of An'she / Lingering Radiance", "type": "choice", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95094], "prev": [95095], "entries": [{"id": 117668, "definitionId": 122680, "maxRanks": 1, "type": "passive", "name": "Blessing of An'she", "spellId": 445200, "icon": "inv_ability_holyfire_orb", "index": 100}, {"id": 117779, "definitionId": 122791, "maxRanks": 1, "type": "passive", "name": "Lingering Radiance", "spellId": 431407, "icon": "spell_holy_mindvision", "index": 200}]}, {"id": 95072, "name": "Sun Sear", "type": "single", "posX": 9300, "posY": 2400, "maxRanks": 1, "subTreeId": 50, "next": [95086], "prev": [95080], "entries": [{"id": 117669, "definitionId": 122681, "maxRanks": 1, "type": "passive", "name": "Sun Sear", "spellId": 431413, "icon": "spell_priest_burningwill", "index": 100}]}, {"id": 95185, "name": "Endless Wrath / Sanctification", "type": "choice", "posX": 15290, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95179], "entries": [{"id": 117820, "definitionId": 122832, "maxRanks": 1, "type": "passive", "name": "Endless Wrath", "spellId": 432615, "icon": "spell_holy_divinepurpose", "index": 100}, {"id": 117819, "definitionId": 122831, "maxRanks": 1, "type": "passive", "name": "Sanctification", "spellId": 432977, "icon": "ability_paladin_blessedhands", "index": 200}]}, {"id": 95184, "name": "Hammerfall", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "next": [95182], "prev": [95178], "entries": [{"id": 117818, "definitionId": 122830, "maxRanks": 1, "type": "passive", "name": "Hammerfall", "spellId": 432463, "icon": "ability_paladin_enlightenedjudgements", "index": 100}]}, {"id": 95186, "name": "Undisputed Ruling", "type": "single", "posX": 16500, "posY": 2700, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [95182], "prev": [95181], "entries": [{"id": 117822, "definitionId": 122834, "maxRanks": 1, "type": "passive", "name": "Undisputed Ruling", "spellId": 432626, "icon": "spell_holy_righteousfury", "index": 100}]}, {"id": 95069, "name": "Aurora", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81577, "next": [95105], "prev": [95098], "entries": [{"id": 117666, "definitionId": 122678, "maxRanks": 1, "type": "passive", "name": "Aurora", "spellId": 439760, "icon": "spell_holy_rune", "index": 100}]}, {"id": 95094, "name": "Solar Grace", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "requiresNode": 81525, "next": [95105], "prev": [95071], "entries": [{"id": 117691, "definitionId": 122703, "maxRanks": 1, "type": "passive", "name": "Solar Grace", "spellId": 431404, "icon": "ability_malkorok_blightofyshaarj_yellow", "index": 100}]}, {"id": 95086, "name": "Second Sunrise", "type": "single", "posX": 9300, "posY": 3000, "maxRanks": 1, "subTreeId": 50, "next": [95105], "prev": [95072], "entries": [{"id": 117683, "definitionId": 122695, "maxRanks": 1, "type": "passive", "name": "Second Sunrise", "spellId": 431474, "icon": "ability_priest_halo", "index": 100}]}, {"id": 95182, "name": "Light's Deliverance", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 48, "requiresNode": 81497, "next": [], "prev": [95184, 95185, 95186], "entries": [{"id": 117815, "definitionId": 122827, "maxRanks": 1, "type": "passive", "name": "Light's Deliverance", "spellId": 425518, "icon": "inv_glove_plate_raidpaladinmythic_q_01", "index": 100}]}, {"id": 95105, "name": "Sun's Avatar", "type": "single", "posX": 8700, "posY": 3600, "maxRanks": 1, "subTreeId": 50, "next": [], "prev": [95094, 95069, 95086], "entries": [{"id": 117702, "definitionId": 122714, "maxRanks": 1, "type": "passive", "name": "Sun's Avatar", "spellId": 431425, "icon": "ability_paladin_holyavenger", "index": 100}]}], "subTreeNodes": [{"id": 99837, "name": "Herald of the Sun / Templar", "type": "subtree", "posX": 9600, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123360, "type": "subtree", "name": "Herald of the Sun", "traitSubTreeId": 50, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-heraldofthesun", "nodes": [95099, 95073, 95095, 95080, 95098, 95071, 95072, 95069, 95094, 95086, 95105]}, {"id": 123357, "type": "subtree", "name": "Templar", "traitSubTreeId": 48, "traitTreeId": 790, "atlasMemberName": "talents-heroclass-paladin-templar", "nodes": [95180, 95183, 95187, 95177, 95179, 95178, 95181, 95185, 95184, 95186, 95182]}]}], "fullNodeOrder": [81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, 81479, 81481, 81482, 81483, 81484, 81485, 81486, 81487, 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, 81508, 81510, 81512, 81516, 81521, 81523, 81525, 81526, 81527, 81531, 81532, 81533, 81534, 81536, 81537, 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81548, 81549, 81550, 81552, 81554, 81555, 81556, 81557, 81558, 81560, 81561, 81562, 81564, 81565, 81566, 81567, 81568, 81569, 81570, 81571, 81573, 81574, 81575, 81576, 81577, 81578, 81579, 81580, 81581, 81583, 81584, 81585, 81586, 81587, 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81597, 81598, 81600, 81602, 81603, 81604, 81605, 81607, 81608, 81609, 81612, 81613, 81614, 81615, 81616, 81617, 81618, 81621, 81624, 81625, 81628, 81629, 81630, 81631, 81632, 90062, 92220, 92686, 92688, 92689, 92838, 92839, 92854, 92860, 92951, 92952, 92953, 93008, 93009, 93010, 93160, 93161, 93164, 93165, 93168, 93173, 93174, 93177, 93180, 93181, 93186, 93187, 93188, 93189, 93190, 93191, 93192, 93356, 93357, 93520, 93521, 93522, 93523, 93683, 93927, 95069, 95071, 95072, 95073, 95080, 95086, 95094, 95095, 95098, 95099, 95105, 95177, 95178, 95179, 95180, 95181, 95182, 95183, 95184, 95185, 95186, 95187, 95228, 95229, 95230, 95231, 95232, 95233, 95234, 95235, 95236, 95237, 95238, 99837, 99838, 99839, 101927, 101928, 102502, 103831, 103849, 103850, 103851, 103852, 103853, 103854, 103855, 103856, 103857, 103858, 103859, 103860, 103861, 103862, 103863, 103864, 103865, 103866, 103867, 103868, 103877]}, {"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Arcane", "specId": 62, "classNodes": [{"id": 62121, "name": "Prismatic Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80180, "definitionId": 85183, "maxRanks": 1, "type": "active", "name": "Prismatic Barrier", "spellId": 235450, "icon": "spell_magearmor", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62121], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62121], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62121], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "inv_ability_mage_shiftingpower", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring_of_frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 102467, "name": "Arcane Missiles", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [102445, 102473, 102461], "prev": [], "entries": [{"id": 126537, "definitionId": 131363, "maxRanks": 1, "type": "active", "name": "Arcane Missiles", "spellId": 5143, "icon": "spell_nature_starfall", "index": 100}]}, {"id": 102445, "name": "Amplification", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [102466, 102436], "prev": [102467], "entries": [{"id": 126515, "definitionId": 131341, "maxRanks": 1, "type": "passive", "name": "Amplification", "spellId": 236628, "icon": "spell_arcane_invocation", "index": 100}]}, {"id": 102473, "name": "Nether Precision", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [102448, 102458], "prev": [102467], "entries": [{"id": 126543, "definitionId": 131369, "maxRanks": 1, "type": "passive", "name": "Nether Precision", "spellId": 383782, "icon": "spell_arcane_blast_nightborne", "index": 100}]}, {"id": 102466, "name": "Charged Orb", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [102439], "prev": [102445], "entries": [{"id": 126536, "definitionId": 131362, "maxRanks": 1, "type": "passive", "name": "Charged Orb", "spellId": 384651, "icon": "spell_mage_arcaneorb", "index": 100}]}, {"id": 102436, "name": "Arcane Tempo", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [102439], "prev": [102445], "entries": [{"id": 126506, "definitionId": 131332, "maxRanks": 1, "type": "passive", "name": "Arcane Tempo", "spellId": 383980, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 102461, "name": "Concentrated Power", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [102449], "prev": [102467], "entries": [{"id": 126531, "definitionId": 131357, "maxRanks": 1, "type": "passive", "name": "Concentrated Power", "spellId": 414379, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 102448, "name": "Aethervision", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [102471], "prev": [102473], "entries": [{"id": 126518, "definitionId": 131344, "maxRanks": 1, "type": "passive", "name": "Aethervision", "spellId": 467633, "icon": "sha_ability_rogue_bloodyeye_nightborne", "index": 100}]}, {"id": 102458, "name": "Arcing Cleave", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [102471], "prev": [102473], "entries": [{"id": 126528, "definitionId": 131354, "maxRanks": 1, "type": "passive", "name": "Arcing Cleave", "spellId": 231564, "icon": "ability_mage_arcanebarrage", "index": 100}]}, {"id": 102439, "name": "Arcane Familiar", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [102446, 102462, 102460], "prev": [102466, 102436], "entries": [{"id": 126509, "definitionId": 131335, "maxRanks": 1, "type": "passive", "name": "Arcane Familiar", "spellId": 205022, "icon": "ability_socererking_arcanemines", "index": 100}]}, {"id": 102449, "name": "Arcane Surge", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [102460, 102440, 102469], "prev": [102461], "entries": [{"id": 126519, "definitionId": 131345, "maxRanks": 1, "type": "active", "name": "Arcane Surge", "spellId": 365350, "icon": "ability_mage_arcanesurge", "index": 100}]}, {"id": 102471, "name": "Improved Clearcasting", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [102469, 102475, 102437], "prev": [102458, 102448], "entries": [{"id": 126541, "definitionId": 131367, "maxRanks": 1, "type": "passive", "name": "Improved Clearcasting", "spellId": 321420, "icon": "spell_shadow_manaburn", "index": 100}]}, {"id": 102446, "name": "Big Brained", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480, 102453], "prev": [102439], "entries": [{"id": 126516, "definitionId": 131342, "maxRanks": 1, "type": "passive", "name": "Big Brained", "spellId": 461261, "icon": "ability_kaztik_dominatemind", "index": 100}]}, {"id": 102462, "name": "Energized Familiar", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480], "prev": [102439], "entries": [{"id": 126532, "definitionId": 131358, "maxRanks": 1, "type": "passive", "name": "Energized Familiar", "spellId": 452997, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 102460, "name": "Presence of Mind", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102480, 102468], "prev": [102439, 102449], "entries": [{"id": 126530, "definitionId": 131356, "maxRanks": 1, "type": "active", "name": "Presence of Mind", "spellId": 205025, "icon": "spell_nature_enchantarmor", "index": 100}]}, {"id": 102440, "name": "Surging Urge", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [102449], "entries": [{"id": 126510, "definitionId": 131336, "maxRanks": 1, "type": "passive", "name": "Surging Urge", "spellId": 457521, "icon": "spell_holy_surgeoflight_shadow", "index": 100}]}, {"id": 102469, "name": "Slipstream", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102468, 102456], "prev": [102449, 102471], "entries": [{"id": 126539, "definitionId": 131365, "maxRanks": 1, "type": "passive", "name": "Slipstream", "spellId": 236457, "icon": "spell_holy_mindsooth", "index": 100}]}, {"id": 102475, "name": "Consortium's Bauble", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102456], "prev": [102471], "entries": [{"id": 126545, "definitionId": 131371, "maxRanks": 1, "type": "passive", "name": "Consortium's Bauble", "spellId": 461260, "icon": "inv_6_2raid_trinket_1b", "index": 100}]}, {"id": 102437, "name": "Resonance", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102456, 102441], "prev": [102471], "entries": [{"id": 126507, "definitionId": 131333, "maxRanks": 1, "type": "passive", "name": "Resonance", "spellId": 205028, "icon": "spell_arcane_arcane01", "index": 100}]}, {"id": 102480, "name": "Impetus", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102453, 102444, 102459], "prev": [102462, 102460, 102446], "entries": [{"id": 126550, "definitionId": 131376, "maxRanks": 1, "type": "passive", "name": "Impetus", "spellId": 383676, "icon": "spell_arcane_arcanetorrent", "index": 100}]}, {"id": 102468, "name": "Touch of the Magi", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102459, 102452, 102455], "prev": [102469, 102460], "entries": [{"id": 126538, "definitionId": 131364, "maxRanks": 1, "type": "active", "name": "Touch of the Magi", "spellId": 321507, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 102456, "name": "Dematerialize", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [102455, 102454, 102441], "prev": [102475, 102437, 102469], "entries": [{"id": 126526, "definitionId": 131352, "maxRanks": 1, "type": "passive", "name": "Dematerialize", "spellId": 461456, "icon": "inv_ore_eternium", "index": 100}]}, {"id": 102453, "name": "Static Cloud", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102446, 102480], "entries": [{"id": 126523, "definitionId": 131349, "maxRanks": 1, "type": "passive", "name": "Static Cloud", "spellId": 461257, "icon": "inv_misc_stormlordsfavor", "index": 100}]}, {"id": 102444, "name": "Illuminated Thoughts", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102480], "entries": [{"id": 126514, "definitionId": 131340, "maxRanks": 1, "type": "passive", "name": "Illuminated Thoughts", "spellId": 384060, "icon": "spell_arcane_focusedpower", "index": 100}]}, {"id": 102459, "name": "Evocation", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102463], "prev": [102468, 102480], "entries": [{"id": 126529, "definitionId": 131355, "maxRanks": 1, "type": "active", "name": "Evocation", "spellId": 12051, "icon": "spell_nature_purge", "index": 100}]}, {"id": 102452, "name": "Improved Touch of the Magi", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102457], "prev": [102468], "entries": [{"id": 126522, "definitionId": 131348, "maxRanks": 1, "type": "passive", "name": "Improved Touch of the Magi", "spellId": 453002, "icon": "ability_mage_netherwindpresence", "index": 100}]}, {"id": 102455, "name": "Eureka", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102468, 102456], "entries": [{"id": 126525, "definitionId": 131351, "maxRanks": 1, "type": "passive", "name": "Eureka", "spellId": 452198, "icon": "spell_mage_presenceofmind", "index": 100}]}, {"id": 102454, "name": "Energy Reconstitution", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102456], "entries": [{"id": 126524, "definitionId": 131350, "maxRanks": 1, "type": "passive", "name": "Energy Reconstitution", "spellId": 461457, "icon": "inv_seed_arcaneenergy", "index": 100}]}, {"id": 102441, "name": "Reverberate", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [102450], "prev": [102437, 102456], "entries": [{"id": 126511, "definitionId": 131337, "maxRanks": 1, "type": "passive", "name": "Reverberate", "spellId": 281482, "icon": "spell_arcane_arcane04", "index": 100}]}, {"id": 102463, "name": "Arcane Debilitation", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102451, 102476, 102470], "prev": [102459, 102453, 102444], "entries": [{"id": 126533, "definitionId": 131359, "maxRanks": 2, "type": "passive", "name": "Arcane Debilitation", "spellId": 453598, "icon": "spell_arcane_studentofmagic", "index": 100}]}, {"id": 102457, "name": "Arcane Echo", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [102470, 102465, 102435], "prev": [102452], "entries": [{"id": 126527, "definitionId": 131353, "maxRanks": 1, "type": "passive", "name": "Arcane Echo", "spellId": 342231, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 102450, "name": "Prodigious Savant", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [102465, 102477, 102438], "prev": [102454, 102441, 102455], "entries": [{"id": 126520, "definitionId": 131346, "maxRanks": 2, "type": "passive", "name": "Prodigious Savant", "spellId": 384612, "icon": "ability_mage_studentofthemind", "index": 100}]}, {"id": 102451, "name": "Time Loop", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102472], "prev": [102463], "entries": [{"id": 126521, "definitionId": 131347, "maxRanks": 1, "type": "passive", "name": "Time Loop", "spellId": 452924, "icon": "spell_mage_altertime_active", "index": 100}]}, {"id": 102476, "name": "Aether Attunement", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102472], "prev": [102463], "entries": [{"id": 126546, "definitionId": 131372, "maxRanks": 1, "type": "passive", "name": "Aether Attunement", "spellId": 453600, "icon": "inv_enchant_essencearcanelarge", "index": 100}]}, {"id": 102470, "name": "Enlightened", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102447], "prev": [102457, 102463], "entries": [{"id": 126540, "definitionId": 131366, "maxRanks": 1, "type": "passive", "name": "Enlightened", "spellId": 321387, "icon": "ability_socererking_arcanefortification", "index": 100}]}, {"id": 102465, "name": "Arcane Bombardment", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102443], "prev": [102450, 102457], "entries": [{"id": 126535, "definitionId": 131361, "maxRanks": 1, "type": "passive", "name": "Arcane Bombardment", "spellId": 384581, "icon": "ability_socererking_arcanereplication", "index": 100}]}, {"id": 102477, "name": "Leysight", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102474], "prev": [102450], "entries": [{"id": 126547, "definitionId": 131373, "maxRanks": 1, "type": "passive", "name": "Leysight", "spellId": 452187, "icon": "inv_enchant_essencecosmiclesser", "index": 100}]}, {"id": 102438, "name": "Concentration", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102474], "prev": [102450], "entries": [{"id": 126508, "definitionId": 131334, "maxRanks": 1, "type": "passive", "name": "Concentration", "spellId": 384374, "icon": "ability_mage_potentspirit", "index": 100}]}, {"id": 102472, "name": "High Voltage", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102476, 102451], "entries": [{"id": 126542, "definitionId": 131368, "maxRanks": 1, "type": "passive", "name": "High Voltage", "spellId": 461248, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 102447, "name": "Arcane Harmony", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102470], "entries": [{"id": 126517, "definitionId": 131343, "maxRanks": 1, "type": "passive", "name": "Arcane Harmony", "spellId": 384452, "icon": "ability_creature_cursed_04", "index": 100}]}, {"id": 102435, "name": "Magi's Spark / Nether Munitions", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102457], "entries": [{"id": 126505, "definitionId": 131331, "maxRanks": 1, "type": "passive", "name": "Magi's Spark", "spellId": 454016, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 126504, "definitionId": 131330, "maxRanks": 1, "type": "passive", "name": "Nether Munitions", "spellId": 450206, "icon": "inv_lightforgedmatrixability_shroudofarchaneechoes", "index": 200}]}, {"id": 102443, "name": "Orb Barrage", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102465], "entries": [{"id": 126513, "definitionId": 131339, "maxRanks": 1, "type": "passive", "name": "Orb Barrage", "spellId": 384858, "icon": "spell_mage_arcaneorb_nightborne", "index": 100}]}, {"id": 102474, "name": "Leydrinker", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102438, 102477], "entries": [{"id": 126544, "definitionId": 131370, "maxRanks": 1, "type": "passive", "name": "Leydrinker", "spellId": 452196, "icon": "spell_shadow_manafeed", "index": 100}]}], "heroNodes": [{"id": 94664, "name": "Splintering Sorcery", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 40, "next": [94662, 94663, 94661], "prev": [], "entries": [{"id": 117267, "definitionId": 122279, "maxRanks": 1, "type": "passive", "name": "Splintering Sorcery", "spellId": 443739, "icon": "achievement_dungeon_arcanevaults", "index": 100}], "freeNode": true}, {"id": 94662, "name": "Augury Abounds", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62171, "next": [94659], "prev": [94664], "entries": [{"id": 117265, "definitionId": 122277, "maxRanks": 1, "type": "passive", "name": "Augury Abounds", "spellId": 443783, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 94663, "name": "Controlled Instincts", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94660], "prev": [94664], "entries": [{"id": 117266, "definitionId": 122278, "maxRanks": 1, "type": "passive", "name": "Controlled Instincts", "spellId": 444483, "icon": "spell_frost_ice_shards", "index": 100}]}, {"id": 94661, "name": "Splintering Orbs", "type": "single", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94658], "prev": [94664], "entries": [{"id": 117264, "definitionId": 122276, "maxRanks": 1, "type": "passive", "name": "Splintering Orbs", "spellId": 444256, "icon": "item_azereansphere", "index": 100}]}, {"id": 94659, "name": "Slippery Slinging / Look Again", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94657], "prev": [94662], "entries": [{"id": 117262, "definitionId": 122274, "maxRanks": 1, "type": "passive", "name": "Slippery Slinging", "spellId": 444752, "icon": "ability_mage_icyfeet", "index": 100}, {"id": 123418, "definitionId": 128256, "maxRanks": 1, "type": "passive", "name": "Look Again", "spellId": 444756, "icon": "achievement_bg_tophealer_av", "index": 200}]}, {"id": 94660, "name": "Reactive Barrier / Phantasmal Image", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94656], "prev": [94663], "entries": [{"id": 117263, "definitionId": 122275, "maxRanks": 1, "type": "passive", "name": "Reactive Barrier", "spellId": 444827, "icon": "ability_racial_forceshield", "index": 100}, {"id": 123417, "definitionId": 128255, "maxRanks": 1, "type": "passive", "name": "Phantasmal Image", "spellId": 444784, "icon": "spell_arcane_prismaticcloak", "index": 200}]}, {"id": 94658, "name": "Volatile Magic / Unerring Proficiency", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94655], "prev": [94661], "entries": [{"id": 117261, "definitionId": 122273, "maxRanks": 1, "type": "passive", "name": "Volatile Magic", "spellId": 444968, "icon": "spell_mage_flameorb_blue", "index": 100}, {"id": 123407, "definitionId": 128245, "maxRanks": 1, "type": "passive", "name": "Unerring Proficiency", "spellId": 444974, "icon": "spell_mage_presenceofmind", "index": 200}]}, {"id": 94657, "name": "Shifting Shards / Signature Spell", "type": "choice", "posX": 7200, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62113, "next": [94654], "prev": [94659], "entries": [{"id": 117260, "definitionId": 122272, "maxRanks": 1, "type": "passive", "name": "Shifting Shards", "spellId": 444675, "icon": "ability_mage_freeze", "index": 100}, {"id": 128267, "definitionId": 133074, "maxRanks": 1, "type": "passive", "name": "Signature Spell", "spellId": 470021, "icon": "inv_enchanting_815_drustwand", "index": 200}]}, {"id": 94656, "name": "Force of Will", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94660], "entries": [{"id": 117259, "definitionId": 122271, "maxRanks": 1, "type": "passive", "name": "Force of Will", "spellId": 444719, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 94655, "name": "Spellfrost Teachings", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94658], "entries": [{"id": 117258, "definitionId": 122270, "maxRanks": 1, "type": "passive", "name": "Spellfrost Teachings", "spellId": 444986, "icon": "70_inscription_vantus_rune_azure", "index": 100}]}, {"id": 94654, "name": "Splinterstorm", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "subTreeId": 40, "next": [], "prev": [94656, 94657, 94655], "entries": [{"id": 117257, "definitionId": 122269, "maxRanks": 1, "type": "passive", "name": "Splinterstorm", "spellId": 443742, "icon": "ability_mage_burstofcold", "index": 100}]}, {"id": 94647, "name": "Spellfire Spheres", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "entryNode": true, "subTreeId": 39, "next": [94653, 94652, 94644], "prev": [], "entries": [{"id": 117250, "definitionId": 122262, "maxRanks": 1, "type": "passive", "name": "Spellfire Spheres", "spellId": 448601, "icon": "inv_ability_sunfurymage_spellfirespheres", "index": 100}], "freeNode": true}, {"id": 94653, "name": "Mana Cascade", "type": "single", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94649], "prev": [94647], "entries": [{"id": 117256, "definitionId": 122268, "maxRanks": 1, "type": "passive", "name": "Mana Cascade", "spellId": 449293, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 94652, "name": "Invocation: Arcane Phoenix", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [94651], "prev": [94647], "entries": [{"id": 117255, "definitionId": 122267, "maxRanks": 1, "type": "passive", "name": "Invocation: Arcane Phoenix", "spellId": 448658, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 94644, "name": "Burden of Power", "type": "single", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94645], "prev": [94647], "entries": [{"id": 117247, "definitionId": 122259, "maxRanks": 1, "type": "passive", "name": "Burden of Power", "spellId": 451035, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 94649, "name": "Merely a Setback", "type": "single", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94650], "prev": [94653], "entries": [{"id": 117252, "definitionId": 122264, "maxRanks": 1, "type": "passive", "name": "Merely a Setback", "spellId": 449330, "icon": "inv_helm_robe_raidmage_i_01", "index": 100}]}, {"id": 94651, "name": "Lessons in Debilitation / Gravity Lapse", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94643], "prev": [94652], "entries": [{"id": 117254, "definitionId": 122266, "maxRanks": 1, "type": "passive", "name": "Lessons in Debilitation", "spellId": 449627, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 123832, "definitionId": 128670, "maxRanks": 1, "type": "passive", "name": "Gravity Lapse", "spellId": 458513, "icon": "inv_cosmicvoid_wave", "index": 200}]}, {"id": 94645, "name": "Glorious Incandescence", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94648], "prev": [94644], "entries": [{"id": 117248, "definitionId": 122260, "maxRanks": 1, "type": "passive", "name": "Glorious Incandescence", "spellId": 449394, "icon": "spell_burningsoul", "index": 100}]}, {"id": 94650, "name": "Savor the Moment / Sunfury Execution", "type": "choice", "posX": 7200, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94649], "entries": [{"id": 117253, "definitionId": 122265, "maxRanks": 1, "type": "passive", "name": "Savor the Moment", "spellId": 449412, "icon": "spell_fire_masterofelements", "index": 100}, {"id": 123867, "definitionId": 128705, "maxRanks": 1, "type": "passive", "name": "Sunfury Execution", "spellId": 449349, "icon": "spell_shadow_shadowandflame", "index": 200}]}, {"id": 94643, "name": "Codex of the Sunstriders", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "requiresNode": 102449, "next": [94646], "prev": [94651], "entries": [{"id": 117246, "definitionId": 122258, "maxRanks": 1, "type": "passive", "name": "Codex of the Sunstriders", "spellId": 449382, "icon": "inv_10_inscription2_book3_color1", "index": 100}]}, {"id": 94648, "name": "Rondurmancy / Ignite the Future", "type": "choice", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94645], "entries": [{"id": 117251, "definitionId": 122263, "maxRanks": 1, "type": "passive", "name": "Rondurmancy", "spellId": 449596, "icon": "spell_arcane_focusedpower", "index": 100}, {"id": 123833, "definitionId": 128671, "maxRanks": 1, "type": "passive", "name": "Ignite the Future", "spellId": 449558, "icon": "inv_misc_matchbook", "index": 200}]}, {"id": 94646, "name": "Memory of Al'ar", "type": "single", "posX": 7800, "posY": 7500, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [], "prev": [94643, 94650, 94648], "entries": [{"id": 117249, "definitionId": 122261, "maxRanks": 1, "type": "passive", "name": "Memory of Al'ar", "spellId": 449619, "icon": "inv_misc_summerfest_brazierorange", "index": 100}]}], "subTreeNodes": [{"id": 99830, "name": "Spellslinger / Sunfury", "type": "subtree", "posX": 6900, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123344, "type": "subtree", "name": "Spellslinger", "traitSubTreeId": 40, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-spellslinger", "nodes": [94664, 94662, 94663, 94661, 94659, 94660, 94658, 94657, 94656, 94655, 94654]}, {"id": 123341, "type": "subtree", "name": "Sunfury", "traitSubTreeId": 39, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-sunfury", "nodes": [94647, 94653, 94652, 94644, 94649, 94651, 94645, 94650, 94643, 94648, 94646]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]}, {"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Fire", "specId": 63, "classNodes": [{"id": 62119, "name": "Blazing Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80178, "definitionId": 85181, "maxRanks": 1, "type": "active", "name": "Blazing Barrier", "spellId": 235313, "icon": "ability_mage_moltenarmor", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62119], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62119], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62119], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "inv_ability_mage_shiftingpower", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring_of_frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 100998, "name": "Pyroblast", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [100989, 102014, 101012], "prev": [], "entries": [{"id": 124759, "definitionId": 129597, "maxRanks": 1, "type": "active", "name": "Pyroblast", "spellId": 11366, "icon": "spell_fire_fireball02", "index": 100}]}, {"id": 100989, "name": "Fire Blast", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [100997, 101027], "prev": [100998], "entries": [{"id": 124750, "definitionId": 129588, "maxRanks": 1, "type": "active", "name": "Fire Blast", "spellId": 108853, "icon": "spell_fire_fireball", "index": 100}]}, {"id": 102014, "name": "Firestarter", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [100998], "entries": [{"id": 126025, "definitionId": 130856, "maxRanks": 1, "type": "passive", "name": "Firestarter", "spellId": 205026, "icon": "spell_fire_fire", "index": 100}]}, {"id": 101012, "name": "Phoenix Flames", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [100991, 101008], "prev": [100998], "entries": [{"id": 124775, "definitionId": 129613, "maxRanks": 1, "type": "active", "name": "Phoenix Flames", "spellId": 257541, "icon": "artifactability_firemage_phoenixbolt", "index": 100}]}, {"id": 100997, "name": "Pyrotechnics", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [100987], "prev": [100989], "entries": [{"id": 124758, "definitionId": 129596, "maxRanks": 1, "type": "passive", "name": "Pyrotechnics", "spellId": 157642, "icon": "spell_fire_flamebolt", "index": 100}]}, {"id": 101027, "name": "Fervent Flickering", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [100987, 101023], "prev": [100989], "entries": [{"id": 124793, "definitionId": 129631, "maxRanks": 1, "type": "passive", "name": "Fervent Flickering", "spellId": 387044, "icon": "ability_warlock_burningembers", "index": 100}]}, {"id": 100991, "name": "Call of the Sun King", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [101023, 100994], "prev": [101012], "entries": [{"id": 124752, "definitionId": 129590, "maxRanks": 1, "type": "passive", "name": "Call of the Sun King", "spellId": 343222, "icon": "artifactability_firemage_phoenixbolt", "index": 100}]}, {"id": 101008, "name": "Majesty of the Phoenix", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [100994], "prev": [101012], "entries": [{"id": 124770, "definitionId": 129608, "maxRanks": 1, "type": "passive", "name": "Majesty of the Phoenix", "spellId": 451440, "icon": "ability_mount_pandarenphoenix_yellow", "index": 100}]}, {"id": 100987, "name": "Scorch", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [101011, 102010, 101009], "prev": [100997, 101027], "entries": [{"id": 124748, "definitionId": 129586, "maxRanks": 1, "type": "active", "name": "Scorch", "spellId": 2948, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 101023, "name": "Surging Blaze", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [101009, 102012, 101029], "prev": [100991, 101027], "entries": [{"id": 126024, "definitionId": 130855, "maxRanks": 1, "type": "passive", "name": "Surging Blaze", "spellId": 343230, "icon": "spell_fire_selfdestruct", "index": 200}]}, {"id": 100994, "name": "Lit Fuse", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [101029, 102011, 101013], "prev": [101008, 100991], "entries": [{"id": 124755, "definitionId": 129593, "maxRanks": 1, "type": "passive", "name": "Lit Fuse", "spellId": 450716, "icon": "ability_mage_livingbomb", "index": 100}]}, {"id": 101011, "name": "Improved Scorch / Scald", "type": "choice", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102013, 101945], "prev": [100987], "entries": [{"id": 124774, "definitionId": 129612, "maxRanks": 1, "type": "passive", "name": "Improved Scorch", "spellId": 383604, "icon": "ability_mage_fierypayback", "index": 100}, {"id": 124773, "definitionId": 129611, "maxRanks": 1, "type": "passive", "name": "Scald", "spellId": 450746, "icon": "ability_racial_foregedinflames", "index": 200}]}, {"id": 102010, "name": "Heat Shimmer", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101945], "prev": [100987], "entries": [{"id": 126019, "definitionId": 130850, "maxRanks": 1, "type": "passive", "name": "Heat Shimmer", "spellId": 457735, "icon": "ability_rhyolith_magmaflow_wave", "index": 200}]}, {"id": 101009, "name": "Flame On", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101945, 101017, 100995], "prev": [100987, 101023], "entries": [{"id": 124771, "definitionId": 129609, "maxRanks": 1, "type": "passive", "name": "Flame On", "spellId": 205029, "icon": "inv_helm_circlet_firelands_d_01", "index": 100}]}, {"id": 102012, "name": "Flame Accelerant", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100995], "prev": [101023], "entries": [{"id": 126021, "definitionId": 130852, "maxRanks": 1, "type": "passive", "name": "Flame Accelerant", "spellId": 453282, "icon": "inv_ember", "index": 100}]}, {"id": 101029, "name": "Critical Mass", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [100995, 101002, 101021], "prev": [100994, 101023], "entries": [{"id": 124795, "definitionId": 129633, "maxRanks": 1, "type": "passive", "name": "Critical Mass", "spellId": 117216, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 102011, "name": "Sparking Cinders", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101021], "prev": [100994], "entries": [{"id": 126020, "definitionId": 130851, "maxRanks": 1, "type": "passive", "name": "Sparking Cinders", "spellId": 457728, "icon": "item_sparkofragnoros", "index": 200}]}, {"id": 101013, "name": "Explosive Ingenuity", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101021, 100992], "prev": [100994], "entries": [{"id": 124776, "definitionId": 129614, "maxRanks": 1, "type": "passive", "name": "Explosive Ingenuity", "spellId": 451760, "icon": "achievement_dungeon_ignitionmagevalyri", "index": 200}]}, {"id": 102013, "name": "Inflame", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101006], "prev": [101011], "entries": [{"id": 126022, "definitionId": 130853, "maxRanks": 1, "type": "passive", "name": "Inflame", "spellId": 417467, "icon": "spell_fire_ragnaros_lavabolt", "index": 200}]}, {"id": 101945, "name": "Ashen Feather / Alexstrasza's Fury", "type": "choice", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101006, 101001, 101019], "prev": [101009, 101011, 102010], "entries": [{"id": 125944, "definitionId": 130775, "maxRanks": 1, "type": "passive", "name": "Ashen Feather", "spellId": 450813, "icon": "inv_icon_feather06a", "index": 100}, {"id": 126023, "definitionId": 130854, "maxRanks": 1, "type": "passive", "name": "Alexstrasza's Fury", "spellId": 235870, "icon": "spell_warrior_dragoncharge", "index": 200}]}, {"id": 101017, "name": "Intensifying Flame", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101001], "prev": [101009], "entries": [{"id": 124780, "definitionId": 129618, "maxRanks": 1, "type": "passive", "name": "Intensifying Flame", "spellId": 416714, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 100995, "name": "Combustion", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101001, 101007, 101014], "prev": [101029, 101009, 102012], "entries": [{"id": 124756, "definitionId": 129594, "maxRanks": 1, "type": "active", "name": "Combustion", "spellId": 190319, "icon": "spell_fire_sealoffire", "index": 100}]}, {"id": 101002, "name": "Controlled Destruction", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101014], "prev": [101029], "entries": [{"id": 124763, "definitionId": 129601, "maxRanks": 1, "type": "passive", "name": "Controlled Destruction", "spellId": 383669, "icon": "spell_fire_playingwithfire", "index": 100}]}, {"id": 101021, "name": "Flame Patch / Quickflame", "type": "choice", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101014, 100988, 101004], "prev": [101013, 101029, 102011], "entries": [{"id": 124786, "definitionId": 129624, "maxRanks": 1, "type": "passive", "name": "Flame Patch", "spellId": 205037, "icon": "spell_mage_flameorb", "index": 100}, {"id": 126018, "definitionId": 130849, "maxRanks": 1, "type": "passive", "name": "Quickflame", "spellId": 450807, "icon": "ability_creature_cursed_01", "index": 200}]}, {"id": 100992, "name": "Convection", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [100988], "prev": [101013], "entries": [{"id": 124753, "definitionId": 129591, "maxRanks": 1, "type": "passive", "name": "Convection", "spellId": 416715, "icon": "spell_fire_lavaspawn", "index": 100}]}, {"id": 101006, "name": "Master of Flame", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101019], "prev": [101945, 102013], "entries": [{"id": 124767, "definitionId": 129605, "maxRanks": 1, "type": "passive", "name": "Master of Flame", "spellId": 384174, "icon": "inv_trinket_firelands_02", "index": 200}]}, {"id": 101001, "name": "Wildfire", "type": "single", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101019], "prev": [100995, 101017, 101945], "entries": [{"id": 125942, "definitionId": 130773, "maxRanks": 1, "type": "passive", "name": "Wildfire", "spellId": 383489, "icon": "ability_warlock_inferno", "index": 200}]}, {"id": 101007, "name": "Improved Combustion / Spontaneous Combustion", "type": "choice", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101024], "prev": [100995], "entries": [{"id": 124769, "definitionId": 129607, "maxRanks": 1, "type": "passive", "name": "Improved Combustion", "spellId": 383967, "icon": "spell_fire_sealoffire", "index": 100}, {"id": 124768, "definitionId": 129606, "maxRanks": 1, "type": "passive", "name": "Spontaneous Combustion", "spellId": 451875, "icon": "ability_mage_worldinflames", "index": 200}]}, {"id": 101014, "name": "Feel the Burn", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101004], "prev": [101021, 100995, 101002], "entries": [{"id": 124777, "definitionId": 129615, "maxRanks": 1, "type": "passive", "name": "Feel the Burn", "spellId": 383391, "icon": "spell_fire_fireball", "index": 100}]}, {"id": 100988, "name": "Mark of the Firelord", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101004], "prev": [101021, 100992], "entries": [{"id": 124749, "definitionId": 129587, "maxRanks": 1, "type": "passive", "name": "Mark of the Firelord", "spellId": 450325, "icon": "achievement_firelands_raid_ragnaros", "index": 200}]}, {"id": 101019, "name": "Fevered Incantation", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101020, 101015, 100999], "prev": [101006, 101001, 101945], "entries": [{"id": 124783, "definitionId": 129621, "maxRanks": 2, "type": "passive", "name": "Fevered Incantation", "spellId": 383810, "icon": "inv_misc_enchantedpearld", "index": 100}]}, {"id": 101024, "name": "Kindling", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [100999, 101003, 101016], "prev": [101007], "entries": [{"id": 124789, "definitionId": 129627, "maxRanks": 1, "type": "passive", "name": "Kindling", "spellId": 155148, "icon": "spell_mage_kindling", "index": 100}]}, {"id": 101004, "name": "Fire's Ire", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101016, 100996, 100993], "prev": [101014, 100988, 101021], "entries": [{"id": 124765, "definitionId": 129603, "maxRanks": 2, "type": "passive", "name": "Fire's Ire", "spellId": 450831, "icon": "achievement_boss_lordanthricyst", "index": 100}]}, {"id": 101020, "name": "Pyromaniac", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101942], "prev": [101019], "entries": [{"id": 124784, "definitionId": 129622, "maxRanks": 1, "type": "passive", "name": "Pyromaniac", "spellId": 451466, "icon": "inv_misc_volatilefire", "index": 200}]}, {"id": 101015, "name": "Molten Fury", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101019], "entries": [{"id": 124778, "definitionId": 129616, "maxRanks": 1, "type": "passive", "name": "Molten Fury", "spellId": 457803, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 100999, "name": "From the Ashes", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101943], "prev": [101019, 101024], "entries": [{"id": 124760, "definitionId": 129598, "maxRanks": 1, "type": "passive", "name": "From the Ashes", "spellId": 342344, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 101003, "name": "Fiery Rush", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101025], "prev": [101024], "entries": [{"id": 124764, "definitionId": 129602, "maxRanks": 1, "type": "passive", "name": "Fiery Rush", "spellId": 383634, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 101016, "name": "Meteor", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101000], "prev": [101004, 101024], "entries": [{"id": 124779, "definitionId": 129617, "maxRanks": 1, "type": "active", "name": "Meteor", "spellId": 153561, "icon": "spell_mage_meteor", "index": 100}]}, {"id": 100996, "name": "Firefall", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101004], "entries": [{"id": 124757, "definitionId": 129595, "maxRanks": 1, "type": "passive", "name": "Firefall", "spellId": 384033, "icon": "ability_ironmaidens_rapidfire", "index": 100}]}, {"id": 100993, "name": "Explosivo", "type": "single", "posX": 14100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101022], "prev": [101004], "entries": [{"id": 124754, "definitionId": 129592, "maxRanks": 1, "type": "passive", "name": "Explosivo", "spellId": 451757, "icon": "spell_sandexplosion", "index": 100}]}, {"id": 101942, "name": "Hyperthermia", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101020], "entries": [{"id": 125940, "definitionId": 130771, "maxRanks": 1, "type": "passive", "name": "Hyperthermia", "spellId": 383860, "icon": "spell_fire_burnout", "index": 200}]}, {"id": 101943, "name": "Phoenix Reborn", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [100999], "entries": [{"id": 125941, "definitionId": 130772, "maxRanks": 1, "type": "passive", "name": "Phoenix Reborn", "spellId": 453123, "icon": "inv_sword_1h_artifactfelomelorn_d_01", "index": 100}]}, {"id": 101025, "name": "Sun King's Blessing / Unleashed Inferno", "type": "choice", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101003], "entries": [{"id": 124791, "definitionId": 129629, "maxRanks": 1, "type": "passive", "name": "Sun King's Blessing", "spellId": 383886, "icon": "ability_mage_firestarter", "index": 100}, {"id": 124790, "definitionId": 129628, "maxRanks": 1, "type": "passive", "name": "Unleashed Inferno", "spellId": 416506, "icon": "spell_fire_felflamering_red", "index": 200}]}, {"id": 101000, "name": "Deep Impact", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101016], "entries": [{"id": 124761, "definitionId": 129599, "maxRanks": 1, "type": "passive", "name": "Deep Impact", "spellId": 416719, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 101022, "name": "Blast Zone", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [100993], "entries": [{"id": 124787, "definitionId": 129625, "maxRanks": 1, "type": "passive", "name": "Blast Zone", "spellId": 451755, "icon": "spell_fire_elementaldevastation", "index": 100}]}], "heroNodes": [{"id": 94636, "name": "Frostfire Mastery", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 41, "next": [94642, 94641, 94633], "prev": [], "entries": [{"id": 117239, "definitionId": 122251, "maxRanks": 1, "type": "passive", "name": "Frostfire Mastery", "spellId": 431038, "icon": "spell_frostresistancetotem_01", "index": 100}], "freeNode": true}, {"id": 94642, "name": "Imbued Warding / Meltdown", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94638], "prev": [94636], "entries": [{"id": 117245, "definitionId": 122257, "maxRanks": 1, "type": "passive", "name": "Imbued Warding", "spellId": 431066, "icon": "inv_10_jewelcrafting_gem3primal_fire_cut_blue", "index": 100}, {"id": 117776, "definitionId": 122788, "maxRanks": 1, "type": "passive", "name": "Meltdown", "spellId": 431131, "icon": "spell_frost_arcticwinds", "index": 200}]}, {"id": 94641, "name": "Frostfire Bolt", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94640], "prev": [94636], "entries": [{"id": 117244, "definitionId": 122256, "maxRanks": 1, "type": "active", "name": "Frostfire Bolt", "spellId": 431044, "icon": "inv_ability_frostfiremage_frostfirebolt", "index": 100}]}, {"id": 94633, "name": "Elemental Affinity / Flame and Frost", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94634], "prev": [94636], "entries": [{"id": 117236, "definitionId": 122248, "maxRanks": 1, "type": "passive", "name": "Elemental Affinity", "spellId": 431067, "icon": "inv_10_dungeonjewelry_dragon_trinket_5_red", "index": 100}, {"id": 117775, "definitionId": 122787, "maxRanks": 1, "type": "passive", "name": "Flame and Frost", "spellId": 431112, "icon": "spell_firefrost_orb", "index": 200}]}, {"id": 94638, "name": "Isothermic Core", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "requiresNode": 101016, "next": [94639], "prev": [94642], "entries": [{"id": 117241, "definitionId": 122253, "maxRanks": 1, "type": "passive", "name": "Isothermic Core", "spellId": 431095, "icon": "inv_10_jewelcrafting_gem2standard_fire_cut_blue", "index": 100}]}, {"id": 94640, "name": "Severe Temperatures / Thermal Conditioning", "type": "choice", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94632], "prev": [94641], "entries": [{"id": 117243, "definitionId": 122255, "maxRanks": 1, "type": "passive", "name": "Severe Temperatures", "spellId": 431189, "icon": "inv_magemount_fire", "index": 100}, {"id": 117774, "definitionId": 122786, "maxRanks": 1, "type": "passive", "name": "Thermal Conditioning", "spellId": 431117, "icon": "spell_fireresistancetotem_01", "index": 200}]}, {"id": 94634, "name": "Frostfire Infusion", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94637], "prev": [94633], "entries": [{"id": 117237, "definitionId": 122249, "maxRanks": 1, "type": "passive", "name": "Frostfire Infusion", "spellId": 431166, "icon": "inv_10_blacksmithing_craftedbar_frostfirealloy", "index": 100}]}, {"id": 94639, "name": "Excess Frost", "type": "single", "posX": 14700, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94638], "entries": [{"id": 117242, "definitionId": 122254, "maxRanks": 1, "type": "passive", "name": "Excess Frost", "spellId": 438600, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 94632, "name": "Frostfire Empowerment", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94640], "entries": [{"id": 117235, "definitionId": 122247, "maxRanks": 1, "type": "passive", "name": "Frostfire Empowerment", "spellId": 431176, "icon": "spell_frostfire_orb", "index": 100}]}, {"id": 94637, "name": "Excess Fire", "type": "single", "posX": 15900, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94634], "entries": [{"id": 117240, "definitionId": 122252, "maxRanks": 1, "type": "passive", "name": "Excess Fire", "spellId": 438595, "icon": "ability_mage_fierypayback", "index": 100}]}, {"id": 94635, "name": "Flash Freezeburn", "type": "single", "posX": 15300, "posY": 4500, "maxRanks": 1, "subTreeId": 41, "next": [], "prev": [94632, 94639, 94637], "entries": [{"id": 117238, "definitionId": 122250, "maxRanks": 1, "type": "passive", "name": "Flash Freezeburn", "spellId": 431178, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 94647, "name": "Spellfire Spheres", "type": "single", "posX": 7800, "posY": 5100, "maxRanks": 1, "entryNode": true, "subTreeId": 39, "next": [94653, 94652, 94644], "prev": [], "entries": [{"id": 117250, "definitionId": 122262, "maxRanks": 1, "type": "passive", "name": "Spellfire Spheres", "spellId": 448601, "icon": "inv_ability_sunfurymage_spellfirespheres", "index": 100}], "freeNode": true}, {"id": 94653, "name": "Mana Cascade", "type": "single", "posX": 7200, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94649], "prev": [94647], "entries": [{"id": 117256, "definitionId": 122268, "maxRanks": 1, "type": "passive", "name": "Mana Cascade", "spellId": 449293, "icon": "spell_frost_manarecharge", "index": 100}]}, {"id": 94652, "name": "Invocation: Arcane Phoenix", "type": "single", "posX": 7800, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [94651], "prev": [94647], "entries": [{"id": 117255, "definitionId": 122267, "maxRanks": 1, "type": "passive", "name": "Invocation: Arcane Phoenix", "spellId": 448658, "icon": "inv_misc_phoenixegg", "index": 100}]}, {"id": 94644, "name": "Burden of Power", "type": "single", "posX": 8400, "posY": 5700, "maxRanks": 1, "subTreeId": 39, "next": [94645], "prev": [94647], "entries": [{"id": 117247, "definitionId": 122259, "maxRanks": 1, "type": "passive", "name": "Burden of Power", "spellId": 451035, "icon": "inv_ragnaros_heart", "index": 100}]}, {"id": 94649, "name": "Merely a Setback", "type": "single", "posX": 7200, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94650], "prev": [94653], "entries": [{"id": 117252, "definitionId": 122264, "maxRanks": 1, "type": "passive", "name": "Merely a Setback", "spellId": 449330, "icon": "inv_helm_robe_raidmage_i_01", "index": 100}]}, {"id": 94651, "name": "Lessons in Debilitation / Gravity Lapse", "type": "choice", "posX": 7800, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94643], "prev": [94652], "entries": [{"id": 117254, "definitionId": 122266, "maxRanks": 1, "type": "passive", "name": "Lessons in Debilitation", "spellId": 449627, "icon": "ability_paladin_handoflight", "index": 100}, {"id": 123832, "definitionId": 128670, "maxRanks": 1, "type": "passive", "name": "Gravity Lapse", "spellId": 458513, "icon": "inv_cosmicvoid_wave", "index": 200}]}, {"id": 94645, "name": "Glorious Incandescence", "type": "single", "posX": 8400, "posY": 6300, "maxRanks": 1, "subTreeId": 39, "next": [94648], "prev": [94644], "entries": [{"id": 117248, "definitionId": 122260, "maxRanks": 1, "type": "passive", "name": "Glorious Incandescence", "spellId": 449394, "icon": "spell_burningsoul", "index": 100}]}, {"id": 94650, "name": "Savor the Moment / Sunfury Execution", "type": "choice", "posX": 7200, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94649], "entries": [{"id": 117253, "definitionId": 122265, "maxRanks": 1, "type": "passive", "name": "Savor the Moment", "spellId": 449412, "icon": "spell_fire_masterofelements", "index": 100}, {"id": 123867, "definitionId": 128705, "maxRanks": 1, "type": "passive", "name": "Sunfury Execution", "spellId": 449349, "icon": "spell_shadow_shadowandflame", "index": 200}]}, {"id": 94643, "name": "Codex of the Sunstriders", "type": "single", "posX": 7800, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "requiresNode": 102449, "next": [94646], "prev": [94651], "entries": [{"id": 117246, "definitionId": 122258, "maxRanks": 1, "type": "passive", "name": "Codex of the Sunstriders", "spellId": 449382, "icon": "inv_10_inscription2_book3_color1", "index": 100}]}, {"id": 94648, "name": "Rondurmancy / Ignite the Future", "type": "choice", "posX": 8400, "posY": 6900, "maxRanks": 1, "subTreeId": 39, "next": [94646], "prev": [94645], "entries": [{"id": 117251, "definitionId": 122263, "maxRanks": 1, "type": "passive", "name": "Rondurmancy", "spellId": 449596, "icon": "spell_arcane_focusedpower", "index": 100}, {"id": 123833, "definitionId": 128671, "maxRanks": 1, "type": "passive", "name": "Ignite the Future", "spellId": 449558, "icon": "inv_misc_matchbook", "index": 200}]}, {"id": 94646, "name": "Memory of Al'ar", "type": "single", "posX": 7800, "posY": 7500, "maxRanks": 1, "subTreeId": 39, "requiresNode": 100995, "next": [], "prev": [94643, 94650, 94648], "entries": [{"id": 117249, "definitionId": 122261, "maxRanks": 1, "type": "passive", "name": "Memory of Al'ar", "spellId": 449619, "icon": "inv_misc_summerfest_brazierorange", "index": 100}]}], "subTreeNodes": [{"id": 99829, "name": "Frostfire / Sunfury", "type": "subtree", "posX": 7800, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123343, "type": "subtree", "name": "Frostfire", "traitSubTreeId": 41, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-frostfire", "nodes": [94636, 94642, 94641, 94633, 94638, 94640, 94634, 94639, 94632, 94637, 94635]}, {"id": 123340, "type": "subtree", "name": "Sunfury", "traitSubTreeId": 39, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-sunfury", "nodes": [94647, 94653, 94652, 94644, 94649, 94651, 94645, 94650, 94643, 94648, 94646]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]}, {"traitTreeId": 658, "className": "Mage", "classId": 8, "specName": "Frost", "specId": 64, "classNodes": [{"id": 62117, "name": "Ice Barrier", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62120, 62118, 62122], "prev": [], "entries": [{"id": 80176, "definitionId": 85179, "maxRanks": 1, "type": "active", "name": "Ice Barrier", "spellId": 11426, "icon": "spell_ice_lament", "index": 100}], "freeNode": true}, {"id": 62122, "name": "Ice Block", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [62123, 62084, 62111], "prev": [62117], "entries": [{"id": 80181, "definitionId": 85184, "maxRanks": 1, "type": "active", "name": "Ice Block", "spellId": 45438, "icon": "spell_frost_frost", "index": 100}]}, {"id": 62120, "name": "Overflowing Energy", "type": "single", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [62113], "prev": [62117], "entries": [{"id": 80179, "definitionId": 85182, "maxRanks": 1, "type": "passive", "name": "Overflowing Energy", "spellId": 390218, "icon": "spell_arcane_manatap", "index": 200}]}, {"id": 62118, "name": "Incanter's Flow", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [62112, 62116, 62114], "prev": [62117], "entries": [{"id": 80177, "definitionId": 85180, "maxRanks": 1, "type": "passive", "name": "Incanter's Flow", "spellId": 1463, "icon": "ability_mage_incantersabsorbtion", "index": 100}]}, {"id": 62123, "name": "Winter's Protection", "type": "single", "posX": 2100, "posY": 2700, "maxRanks": 2, "next": [62124], "prev": [62122], "entries": [{"id": 80182, "definitionId": 85185, "maxRanks": 2, "type": "passive", "name": "Winter's Protection", "spellId": 382424, "icon": "spell_ice_rune", "index": 100}]}, {"id": 62084, "name": "Spellsteal", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [62124], "prev": [62122], "entries": [{"id": 80140, "definitionId": 85143, "maxRanks": 1, "type": "active", "name": "Spellsteal", "spellId": 30449, "icon": "spell_arcane_arcane02", "index": 100}]}, {"id": 62111, "name": "Tempest Barrier", "type": "single", "posX": 3300, "posY": 2700, "maxRanks": 2, "next": [62124, 62113], "prev": [62122], "entries": [{"id": 80169, "definitionId": 85172, "maxRanks": 2, "type": "passive", "name": "Tempest Barrier", "spellId": 382289, "icon": "inv_shield_1h_artifactstormfist_d_04", "index": 100}]}, {"id": 62112, "name": "Incantation of Swiftness", "type": "single", "posX": 4500, "posY": 2700, "maxRanks": 2, "next": [62113, 62115], "prev": [62118], "entries": [{"id": 80170, "definitionId": 85173, "maxRanks": 2, "type": "passive", "name": "Incantation of Swiftness", "spellId": 382293, "icon": "rogue_burstofspeed", "index": 100}]}, {"id": 62116, "name": "Remove Curse", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [62115], "prev": [62118], "entries": [{"id": 80175, "definitionId": 85178, "maxRanks": 1, "type": "active", "name": "Remove Curse", "spellId": 475, "icon": "spell_nature_removecurse", "index": 100}]}, {"id": 62114, "name": "Arcane Warding", "type": "single", "posX": 5700, "posY": 2700, "maxRanks": 2, "next": [62115], "prev": [62118], "entries": [{"id": 80173, "definitionId": 85176, "maxRanks": 2, "type": "passive", "name": "Arcane Warding", "spellId": 383092, "icon": "spell_arcane_arcaneresilience", "index": 100}]}, {"id": 62124, "name": "Mirror Image", "type": "single", "posX": 2700, "posY": 3300, "maxRanks": 1, "next": [62107, 62104, 62125], "prev": [62084, 62111, 62123], "entries": [{"id": 80183, "definitionId": 85186, "maxRanks": 1, "type": "active", "name": "Mirror Image", "spellId": 55342, "icon": "spell_magic_lesserinvisibilty", "index": 100}]}, {"id": 62113, "name": "Shifting Power", "type": "single", "posX": 3900, "posY": 3300, "maxRanks": 1, "next": [62104, 62097, 62106], "prev": [62111, 62112, 62120], "entries": [{"id": 80171, "definitionId": 85174, "maxRanks": 1, "type": "active", "name": "Shifting Power", "spellId": 382440, "icon": "inv_ability_mage_shiftingpower", "index": 200}]}, {"id": 62115, "name": "Alter Time", "type": "single", "posX": 5100, "posY": 3300, "maxRanks": 1, "next": [62097, 62102, 62101], "prev": [62112, 62114, 62116], "entries": [{"id": 80174, "definitionId": 85177, "maxRanks": 1, "type": "active", "name": "Alter Time", "spellId": 342245, "icon": "spell_mage_altertime", "index": 100}]}, {"id": 62107, "name": "Cryo-Freeze", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62088, 62108], "prev": [62124], "entries": [{"id": 80165, "definitionId": 85168, "maxRanks": 2, "type": "passive", "name": "Cryo-Freeze", "spellId": 382292, "icon": "spell_frost_icefloes", "index": 100}]}, {"id": 62125, "name": "Reduplication / Reabsorption", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088], "prev": [62124], "entries": [{"id": 80185, "definitionId": 85188, "maxRanks": 1, "type": "passive", "name": "Reduplication", "spellId": 382569, "icon": "ability_mage_massinvisibility", "index": 100}, {"id": 80184, "definitionId": 85187, "maxRanks": 1, "type": "passive", "name": "Reabsorption", "spellId": 382820, "icon": "spell_arcane_studentofmagic", "index": 200}]}, {"id": 62104, "name": "Quick Witted", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62088, 62105], "prev": [62124, 62113], "entries": [{"id": 80161, "definitionId": 85164, "maxRanks": 1, "type": "passive", "name": "Quick Witted", "spellId": 382297, "icon": "ability_priest_surgeofdarkness", "index": 100}]}, {"id": 62106, "name": "Mass Polymorph", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105], "prev": [62113], "entries": [{"id": 80164, "definitionId": 85167, "maxRanks": 1, "type": "active", "name": "Mass Polymorph", "spellId": 383121, "icon": "spell_nature_doublepolymorph1", "index": 100}]}, {"id": 62097, "name": "Slow", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62105, 62103], "prev": [62115, 62113], "entries": [{"id": 80154, "definitionId": 85157, "maxRanks": 1, "type": "active", "name": "Slow", "spellId": 31589, "icon": "spell_nature_slow", "index": 100}]}, {"id": 62102, "name": "Master of Time", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62103], "prev": [62115], "entries": [{"id": 80159, "definitionId": 85162, "maxRanks": 1, "type": "passive", "name": "Master of Time", "spellId": 342249, "icon": "inv_belt_armor_waistoftime_d_01", "index": 200}]}, {"id": 62101, "name": "Diverted Energy", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [62103, 62100], "prev": [62115], "entries": [{"id": 80158, "definitionId": 85161, "maxRanks": 2, "type": "passive", "name": "Diverted Energy", "spellId": 382270, "icon": "inv_soulbarrier", "index": 100}]}, {"id": 62088, "name": "Ring of Frost / Ice Nova", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62110, 62127, 62108], "prev": [62104, 62107, 62125], "entries": [{"id": 80144, "definitionId": 85147, "maxRanks": 1, "type": "active", "name": "Ring of Frost", "spellId": 113724, "icon": "spell_frost_ring_of_frost", "index": 100}, {"id": 125820, "definitionId": 130652, "maxRanks": 1, "type": "active", "name": "Ice Nova", "spellId": 157997, "icon": "spell_mage_icenova", "index": 200}]}, {"id": 62105, "name": "Shimmer / Ice Floes", "type": "choice", "posX": 3900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62127, 101883], "prev": [62106, 62104, 62097], "entries": [{"id": 80163, "definitionId": 85166, "maxRanks": 1, "type": "active", "name": "Shimmer", "spellId": 212653, "icon": "spell_arcane_massdispel", "index": 100}, {"id": 80162, "definitionId": 85165, "maxRanks": 1, "type": "active", "name": "Ice Floes", "spellId": 108839, "icon": "spell_mage_iceflows", "index": 200}]}, {"id": 62103, "name": "Blast Wave", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62098, 62100, 62089], "prev": [62097, 62101, 62102], "entries": [{"id": 80160, "definitionId": 85163, "maxRanks": 1, "type": "active", "name": "Blast Wave", "spellId": 157981, "icon": "spell_holy_excorcism_02", "index": 200}]}, {"id": 62110, "name": "Rigid Ice", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088], "entries": [{"id": 80168, "definitionId": 85171, "maxRanks": 1, "type": "passive", "name": "Rigid Ice", "spellId": 382481, "icon": "spell_hunter_blackicetrap", "index": 100}]}, {"id": 62127, "name": "Tome of Rhonin", "type": "single", "posX": 3300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62128, 62096], "prev": [62105, 62088], "entries": [{"id": 80187, "definitionId": 85190, "maxRanks": 1, "type": "passive", "name": "Tome of Rhonin", "spellId": 382493, "icon": "inv_misc_book_04", "index": 100}]}, {"id": 101883, "name": "Dragon's Breath / Supernova", "type": "choice", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096], "prev": [62105], "entries": [{"id": 125819, "definitionId": 130651, "maxRanks": 1, "type": "active", "name": "Dragon's Breath", "spellId": 31661, "icon": "inv_misc_head_dragon_01", "index": 100}, {"id": 125818, "definitionId": 130650, "maxRanks": 1, "type": "active", "name": "Supernova", "spellId": 157980, "icon": "spell_mage_supernova", "index": 200}]}, {"id": 62098, "name": "Tome of Antonidas", "type": "single", "posX": 4500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62096, 62099], "prev": [62105, 62103], "entries": [{"id": 80155, "definitionId": 85158, "maxRanks": 1, "type": "passive", "name": "Tome of Antonidas", "spellId": 382490, "icon": "inv_misc_book_18", "index": 100}]}, {"id": 62089, "name": "Volatile Detonation", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103], "entries": [{"id": 80145, "definitionId": 85148, "maxRanks": 1, "type": "passive", "name": "Volatile Detonation", "spellId": 389627, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 62100, "name": "Energized Barriers", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62099], "prev": [62103, 62101], "entries": [{"id": 80157, "definitionId": 85160, "maxRanks": 1, "type": "passive", "name": "Energized Barriers", "spellId": 386828, "icon": "spell_mage_temporalshield", "index": 100}]}, {"id": 62108, "name": "Improved Frost Nova", "type": "single", "posX": 2100, "posY": 5110, "reqPoints": 8, "maxRanks": 1, "next": [62128], "prev": [62088, 62107], "entries": [{"id": 80166, "definitionId": 85169, "maxRanks": 1, "type": "passive", "name": "Improved Frost Nova", "spellId": 343183, "icon": "spell_frost_frostnova", "index": 100}]}, {"id": 62128, "name": "Frigid Winds", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62087, 62086, 62129], "prev": [62110, 62108, 62127], "entries": [{"id": 80188, "definitionId": 85191, "maxRanks": 2, "type": "passive", "name": "Frigid Winds", "spellId": 235224, "icon": "ability_mage_deepfreeze", "index": 100}]}, {"id": 62096, "name": "Flow of Time", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [62129, 62095, 62093], "prev": [62127, 62098, 101883], "entries": [{"id": 80153, "definitionId": 85156, "maxRanks": 2, "type": "passive", "name": "Flow of Time", "spellId": 382268, "icon": "spell_arcane_blink", "index": 100}]}, {"id": 62099, "name": "Temporal Velocity", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [93524, 62091, 62093], "prev": [62089, 62098, 62100], "entries": [{"id": 80156, "definitionId": 85159, "maxRanks": 2, "type": "passive", "name": "Temporal Velocity", "spellId": 382826, "icon": "ability_socererking_arcaneacceleration", "index": 100}]}, {"id": 62086, "name": "Ice Ward", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80142, "definitionId": 85145, "maxRanks": 1, "type": "passive", "name": "Ice Ward", "spellId": 205036, "icon": "spell_frost_frostward", "index": 300}]}, {"id": 62087, "name": "Freezing Cold", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62085], "prev": [62128], "entries": [{"id": 80143, "definitionId": 85146, "maxRanks": 1, "type": "passive", "name": "Freezing Cold", "spellId": 386763, "icon": "spell_frost_glacier", "index": 100}]}, {"id": 62129, "name": "Time Manipulation", "type": "single", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096, 62128], "entries": [{"id": 80189, "definitionId": 85192, "maxRanks": 1, "type": "passive", "name": "Time Manipulation", "spellId": 387807, "icon": "spell_nature_timestop", "index": 100}]}, {"id": 62095, "name": "Displacement", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62096], "entries": [{"id": 80152, "definitionId": 85155, "maxRanks": 1, "type": "active", "name": "Displacement", "spellId": 389713, "icon": "ability_hunter_displacement", "index": 100}]}, {"id": 62093, "name": "Accumulative Shielding", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62094], "prev": [62099, 62096], "entries": [{"id": 80149, "definitionId": 85152, "maxRanks": 1, "type": "passive", "name": "Accumulative Shielding", "spellId": 382800, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 93524, "name": "Greater Invisibility", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 115877, "definitionId": 120889, "maxRanks": 1, "type": "active", "name": "Greater Invisibility", "spellId": 110959, "icon": "ability_mage_greaterinvisibility", "index": 100}]}, {"id": 62091, "name": "Barrier Diffusion", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62092], "prev": [62099], "entries": [{"id": 80147, "definitionId": 85150, "maxRanks": 1, "type": "passive", "name": "Barrier Diffusion", "spellId": 455428, "icon": "spell_mage_evanesce", "index": 100}]}, {"id": 62085, "name": "Ice Cold", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62086, 62087], "entries": [{"id": 80141, "definitionId": 85144, "maxRanks": 1, "type": "passive", "name": "Ice Cold", "spellId": 414659, "icon": "spell_fire_bluefire", "index": 100}]}, {"id": 62094, "name": "Time Anomaly / Inspired Intellect", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62095, 62129, 62093], "entries": [{"id": 80151, "definitionId": 85154, "maxRanks": 1, "type": "passive", "name": "Time Anomaly", "spellId": 383243, "icon": "ability_mage_timewarp", "index": 100}, {"id": 126060, "definitionId": 130892, "maxRanks": 1, "type": "passive", "name": "Inspired Intellect", "spellId": 458437, "icon": "spell_holy_arcaneintellect", "index": 200}]}, {"id": 62092, "name": "Mass Invisibility / Mass Barrier", "type": "choice", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62091, 93524], "entries": [{"id": 115878, "definitionId": 120890, "maxRanks": 1, "type": "active", "name": "Mass Invisibility", "spellId": 414664, "icon": "ability_mage_massinvisibility", "index": 200}, {"id": 125817, "definitionId": 130649, "maxRanks": 1, "type": "active", "name": "Mass Barrier", "spellId": 414660, "icon": "ability_racial_magicalresistance", "index": 300}]}], "specNodes": [{"id": 62176, "name": "Ice Lance", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [62177, 62164], "prev": [], "entries": [{"id": 80241, "definitionId": 85244, "maxRanks": 1, "type": "active", "name": "Ice Lance", "spellId": 30455, "icon": "spell_frost_frostblast", "index": 100}]}, {"id": 62177, "name": "Frozen Orb", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [62178], "prev": [62176], "entries": [{"id": 80242, "definitionId": 85245, "maxRanks": 1, "type": "active", "name": "Frozen Orb", "spellId": 84714, "icon": "spell_frost_frozenorb", "index": 100}]}, {"id": 62164, "name": "Fingers of Frost", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [62165], "prev": [62176], "entries": [{"id": 80227, "definitionId": 85230, "maxRanks": 1, "type": "passive", "name": "Fingers of Frost", "spellId": 112965, "icon": "ability_mage_wintersgrasp", "index": 100}]}, {"id": 62178, "name": "Flurry", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [62179, 81468, 62174], "prev": [62177], "entries": [{"id": 80243, "definitionId": 85246, "maxRanks": 1, "type": "active", "name": "Flurry", "spellId": 44614, "icon": "ability_warlock_burningembersblue", "index": 100}]}, {"id": 62165, "name": "Shatter", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [62174, 81467, 62166], "prev": [62164], "entries": [{"id": 80228, "definitionId": 85231, "maxRanks": 1, "type": "passive", "name": "Shatter", "spellId": 12982, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 62179, "name": "Brain Freeze", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [62181], "prev": [62178], "entries": [{"id": 80244, "definitionId": 85247, "maxRanks": 1, "type": "passive", "name": "Brain Freeze", "spellId": 190447, "icon": "ability_mage_brainfreeze", "index": 100}]}, {"id": 81468, "name": "Everlasting Frost", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [62181], "prev": [62178], "entries": [{"id": 102429, "definitionId": 107434, "maxRanks": 1, "type": "passive", "name": "Everlasting Frost", "spellId": 385167, "icon": "spell_frost_chillingbolt", "index": 100}]}, {"id": 62174, "name": "Winter's Blessing", "type": "single", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [62173, 62169], "prev": [62165, 62178], "entries": [{"id": 80239, "definitionId": 85242, "maxRanks": 1, "type": "passive", "name": "Winter's Blessing", "spellId": 417489, "icon": "spell_frost_wisp", "index": 100}]}, {"id": 81467, "name": "Frostbite", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [62167], "prev": [62165], "entries": [{"id": 102428, "definitionId": 107433, "maxRanks": 1, "type": "passive", "name": "Frostbite", "spellId": 378756, "icon": "spell_frost_frostarmor", "index": 100}]}, {"id": 62166, "name": "Piercing Cold", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [62167], "prev": [62165], "entries": [{"id": 80229, "definitionId": 85232, "maxRanks": 1, "type": "passive", "name": "Piercing Cold", "spellId": 378919, "icon": "spell_frost_frostbolt", "index": 100}]}, {"id": 62181, "name": "Perpetual Winter", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62182, 62180], "prev": [81468, 62179], "entries": [{"id": 80247, "definitionId": 85250, "maxRanks": 1, "type": "passive", "name": "Perpetual Winter", "spellId": 378198, "icon": "spell_frost_arcticwinds", "index": 100}]}, {"id": 62173, "name": "Lonely Winter", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62180, 62172], "prev": [62174], "entries": [{"id": 80237, "definitionId": 85240, "maxRanks": 1, "type": "passive", "name": "Lonely Winter", "spellId": 205024, "icon": "achievement_dungeon_frozenthrone", "index": 200}]}, {"id": 62169, "name": "Permafrost Lances", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62170, 62168], "prev": [62174], "entries": [{"id": 80233, "definitionId": 85236, "maxRanks": 1, "type": "passive", "name": "Permafrost Lances", "spellId": 460590, "icon": "ability_deathknight_icygrip", "index": 100}]}, {"id": 62167, "name": "Bone Chilling", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [62168, 62160], "prev": [62166, 81467], "entries": [{"id": 80230, "definitionId": 85233, "maxRanks": 1, "type": "passive", "name": "Bone Chilling", "spellId": 205027, "icon": "ability_mage_chilledtothebone", "index": 100}]}, {"id": 62182, "name": "Comet Storm", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62183], "prev": [62181], "entries": [{"id": 80248, "definitionId": 85251, "maxRanks": 1, "type": "active", "name": "Comet Storm", "spellId": 153595, "icon": "spell_mage_cometstorm2", "index": 100}]}, {"id": 62180, "name": "Frozen Touch", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62159], "prev": [62181, 62173], "entries": [{"id": 80245, "definitionId": 85248, "maxRanks": 1, "type": "passive", "name": "Frozen Touch", "spellId": 205030, "icon": "ability_mage_burstofcold", "index": 200}]}, {"id": 62172, "name": "Wintertide", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [62171], "prev": [62173], "entries": [{"id": 80236, "definitionId": 85239, "maxRanks": 2, "type": "passive", "name": "Wintertide", "spellId": 378406, "icon": "ability_deathknight_frozencenter", "index": 100}]}, {"id": 62170, "name": "Ice Caller", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62171], "prev": [62169], "entries": [{"id": 80234, "definitionId": 85237, "maxRanks": 1, "type": "passive", "name": "Ice Caller", "spellId": 236662, "icon": "spell_frost_icestorm", "index": 100}]}, {"id": 62168, "name": "Flash Freeze", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [62162], "prev": [62167, 62169], "entries": [{"id": 80231, "definitionId": 85234, "maxRanks": 1, "type": "passive", "name": "Flash Freeze", "spellId": 379993, "icon": "spell_hunter_icetrap", "index": 100}]}, {"id": 62160, "name": "Subzero", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [62161], "prev": [62167], "entries": [{"id": 80223, "definitionId": 85226, "maxRanks": 2, "type": "passive", "name": "Subzero", "spellId": 380154, "icon": "spell_ice_magicdamage", "index": 100}]}, {"id": 62159, "name": "Deep Shatter", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [62183, 62150], "prev": [62180], "entries": [{"id": 80222, "definitionId": 85225, "maxRanks": 2, "type": "passive", "name": "Deep Shatter", "spellId": 378749, "icon": "inv_misc_frostemblem_01", "index": 100}]}, {"id": 62171, "name": "Icy Veins", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [62150, 62154, 62163], "prev": [62170, 62172], "entries": [{"id": 80235, "definitionId": 85238, "maxRanks": 1, "type": "active", "name": "Icy Veins", "spellId": 12472, "icon": "spell_frost_coldhearted", "index": 100}]}, {"id": 62162, "name": "Splintering Cold", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [62163, 62161], "prev": [62168], "entries": [{"id": 80225, "definitionId": 85228, "maxRanks": 2, "type": "passive", "name": "Splintering Cold", "spellId": 379049, "icon": "spell_fire_blueflamestrike", "index": 100}]}, {"id": 62183, "name": "Glacial Assault", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62151], "prev": [62159, 62182], "entries": [{"id": 80249, "definitionId": 85252, "maxRanks": 1, "type": "passive", "name": "Glacial Assault", "spellId": 378947, "icon": "inv_staff_15", "index": 100}]}, {"id": 62150, "name": "Freezing Rain", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62151, 62184], "prev": [62159, 62171], "entries": [{"id": 80212, "definitionId": 85215, "maxRanks": 1, "type": "passive", "name": "Freezing Rain", "spellId": 270233, "icon": "spell_frost_frozenorb", "index": 100}]}, {"id": 62154, "name": "Thermal Void", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62184, 62156, 62158], "prev": [62171], "entries": [{"id": 80217, "definitionId": 85220, "maxRanks": 1, "type": "passive", "name": "Thermal Void", "spellId": 155149, "icon": "spell_mage_thermalvoid", "index": 100}]}, {"id": 62163, "name": "Splitting Ice", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62158, 62153], "prev": [62162, 62171], "entries": [{"id": 80226, "definitionId": 85229, "maxRanks": 1, "type": "passive", "name": "Splitting Ice", "spellId": 56377, "icon": "spell_frost_ice_shards", "index": 200}]}, {"id": 62161, "name": "Chain Reaction", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [62153], "prev": [62160, 62162], "entries": [{"id": 80224, "definitionId": 85227, "maxRanks": 1, "type": "passive", "name": "Chain Reaction", "spellId": 278309, "icon": "spell_frost_frostblast", "index": 200}]}, {"id": 62151, "name": "Fractured Frost", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101302, 62155], "prev": [62150, 62183], "entries": [{"id": 80214, "definitionId": 85217, "maxRanks": 1, "type": "passive", "name": "Fractured Frost", "spellId": 378448, "icon": "spell_fire_frostresistancetotem", "index": 100}]}, {"id": 62184, "name": "Freezing Winds", "type": "single", "posX": 11700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62185], "prev": [62154, 62150], "entries": [{"id": 80250, "definitionId": 85253, "maxRanks": 1, "type": "passive", "name": "Freezing Winds", "spellId": 382103, "icon": "spell_fire_blueflamering", "index": 100}]}, {"id": 62156, "name": "Slick Ice", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62154], "entries": [{"id": 80219, "definitionId": 85222, "maxRanks": 1, "type": "passive", "name": "Slick Ice", "spellId": 382144, "icon": "inv_enchant_shardshadowfrostlarge", "index": 100}]}, {"id": 62158, "name": "Hailstones", "type": "single", "posX": 12900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62157], "prev": [62154, 62163], "entries": [{"id": 80221, "definitionId": 85224, "maxRanks": 1, "type": "passive", "name": "Hailstones", "spellId": 381244, "icon": "artifactability_frostmage_blackicicles", "index": 100}]}, {"id": 62153, "name": "Ray of Frost", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [62152, 103771], "prev": [62161, 62163], "entries": [{"id": 80216, "definitionId": 85219, "maxRanks": 1, "type": "active", "name": "Ray of Frost", "spellId": 205021, "icon": "ability_mage_rayoffrost", "index": 100}]}, {"id": 101302, "name": "Death's Chill", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62151], "entries": [{"id": 125131, "definitionId": 129963, "maxRanks": 1, "type": "passive", "name": "Death's Chill", "spellId": 450331, "icon": "inv_trinket_fragmentoffrostmourne", "index": 100}]}, {"id": 62155, "name": "Cold Front", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62151], "entries": [{"id": 80218, "definitionId": 85221, "maxRanks": 1, "type": "passive", "name": "Cold Front", "spellId": 382110, "icon": "ability_mage_coldasice", "index": 100}]}, {"id": 62185, "name": "Coldest Snap", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62184], "entries": [{"id": 80251, "definitionId": 85254, "maxRanks": 1, "type": "passive", "name": "Coldest Snap", "spellId": 417493, "icon": "spell_frost_wizardmark", "index": 100}]}, {"id": 62157, "name": "Glacial Spike", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62158], "entries": [{"id": 80220, "definitionId": 85223, "maxRanks": 1, "type": "active", "name": "Glacial Spike", "spellId": 199786, "icon": "ability_mage_glacialspike", "index": 100}]}, {"id": 62152, "name": "Cryopathy", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62153], "entries": [{"id": 80215, "definitionId": 85218, "maxRanks": 1, "type": "passive", "name": "Cryopathy", "spellId": 417491, "icon": "ability_hunter_pointofnoescape", "index": 100}]}, {"id": 103771, "name": "Splintering Ray", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [62153], "entries": [{"id": 128077, "definitionId": 132886, "maxRanks": 1, "type": "passive", "name": "Splintering Ray", "spellId": 418733, "icon": "spell_fire_blueflamestrike", "index": 100}]}], "heroNodes": [{"id": 94664, "name": "Splintering Sorcery", "type": "single", "posX": 7800, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 40, "next": [94662, 94663, 94661], "prev": [], "entries": [{"id": 117267, "definitionId": 122279, "maxRanks": 1, "type": "passive", "name": "Splintering Sorcery", "spellId": 443739, "icon": "achievement_dungeon_arcanevaults", "index": 100}], "freeNode": true}, {"id": 94636, "name": "Frostfire Mastery", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "entryNode": true, "subTreeId": 41, "next": [94642, 94641, 94633], "prev": [], "entries": [{"id": 117239, "definitionId": 122251, "maxRanks": 1, "type": "passive", "name": "Frostfire Mastery", "spellId": 431038, "icon": "spell_frostresistancetotem_01", "index": 100}], "freeNode": true}, {"id": 94662, "name": "Augury Abounds", "type": "single", "posX": 7200, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62171, "next": [94659], "prev": [94664], "entries": [{"id": 117265, "definitionId": 122277, "maxRanks": 1, "type": "passive", "name": "Augury Abounds", "spellId": 443783, "icon": "spell_arcane_arcanepotency", "index": 100}]}, {"id": 94663, "name": "Controlled Instincts", "type": "single", "posX": 7800, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94660], "prev": [94664], "entries": [{"id": 117266, "definitionId": 122278, "maxRanks": 1, "type": "passive", "name": "Controlled Instincts", "spellId": 444483, "icon": "spell_frost_ice_shards", "index": 100}]}, {"id": 94661, "name": "Splintering Orbs", "type": "single", "posX": 8400, "posY": 2700, "maxRanks": 1, "subTreeId": 40, "next": [94658], "prev": [94664], "entries": [{"id": 117264, "definitionId": 122276, "maxRanks": 1, "type": "passive", "name": "Splintering Orbs", "spellId": 444256, "icon": "item_azereansphere", "index": 100}]}, {"id": 94642, "name": "Imbued Warding / Meltdown", "type": "choice", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94638], "prev": [94636], "entries": [{"id": 117245, "definitionId": 122257, "maxRanks": 1, "type": "passive", "name": "Imbued Warding", "spellId": 431066, "icon": "inv_10_jewelcrafting_gem3primal_fire_cut_blue", "index": 100}, {"id": 117776, "definitionId": 122788, "maxRanks": 1, "type": "passive", "name": "Meltdown", "spellId": 431131, "icon": "spell_frost_arcticwinds", "index": 200}]}, {"id": 94641, "name": "Frostfire Bolt", "type": "single", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94640], "prev": [94636], "entries": [{"id": 117244, "definitionId": 122256, "maxRanks": 1, "type": "active", "name": "Frostfire Bolt", "spellId": 431044, "icon": "inv_ability_frostfiremage_frostfirebolt", "index": 100}]}, {"id": 94633, "name": "Elemental Affinity / Flame and Frost", "type": "choice", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 41, "next": [94634], "prev": [94636], "entries": [{"id": 117236, "definitionId": 122248, "maxRanks": 1, "type": "passive", "name": "Elemental Affinity", "spellId": 431067, "icon": "inv_10_dungeonjewelry_dragon_trinket_5_red", "index": 100}, {"id": 117775, "definitionId": 122787, "maxRanks": 1, "type": "passive", "name": "Flame and Frost", "spellId": 431112, "icon": "spell_firefrost_orb", "index": 200}]}, {"id": 94659, "name": "Slippery Slinging / Look Again", "type": "choice", "posX": 7200, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94657], "prev": [94662], "entries": [{"id": 117262, "definitionId": 122274, "maxRanks": 1, "type": "passive", "name": "Slippery Slinging", "spellId": 444752, "icon": "ability_mage_icyfeet", "index": 100}, {"id": 123418, "definitionId": 128256, "maxRanks": 1, "type": "passive", "name": "Look Again", "spellId": 444756, "icon": "achievement_bg_tophealer_av", "index": 200}]}, {"id": 94660, "name": "Reactive Barrier / Phantasmal Image", "type": "choice", "posX": 7800, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94656], "prev": [94663], "entries": [{"id": 117263, "definitionId": 122275, "maxRanks": 1, "type": "passive", "name": "Reactive Barrier", "spellId": 444827, "icon": "ability_racial_forceshield", "index": 100}, {"id": 123417, "definitionId": 128255, "maxRanks": 1, "type": "passive", "name": "Phantasmal Image", "spellId": 444784, "icon": "spell_arcane_prismaticcloak", "index": 200}]}, {"id": 94658, "name": "Volatile Magic / Unerring Proficiency", "type": "choice", "posX": 8400, "posY": 3300, "maxRanks": 1, "subTreeId": 40, "next": [94655], "prev": [94661], "entries": [{"id": 117261, "definitionId": 122273, "maxRanks": 1, "type": "passive", "name": "Volatile Magic", "spellId": 444968, "icon": "spell_mage_flameorb_blue", "index": 100}, {"id": 123407, "definitionId": 128245, "maxRanks": 1, "type": "passive", "name": "Unerring Proficiency", "spellId": 444974, "icon": "spell_mage_presenceofmind", "index": 200}]}, {"id": 94638, "name": "Isothermic Core", "type": "single", "posX": 14700, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "requiresNode": 101016, "next": [94639], "prev": [94642], "entries": [{"id": 117241, "definitionId": 122253, "maxRanks": 1, "type": "passive", "name": "Isothermic Core", "spellId": 431095, "icon": "inv_10_jewelcrafting_gem2standard_fire_cut_blue", "index": 100}]}, {"id": 94640, "name": "Severe Temperatures / Thermal Conditioning", "type": "choice", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94632], "prev": [94641], "entries": [{"id": 117243, "definitionId": 122255, "maxRanks": 1, "type": "passive", "name": "Severe Temperatures", "spellId": 431189, "icon": "inv_magemount_fire", "index": 100}, {"id": 117774, "definitionId": 122786, "maxRanks": 1, "type": "passive", "name": "Thermal Conditioning", "spellId": 431117, "icon": "spell_fireresistancetotem_01", "index": 200}]}, {"id": 94634, "name": "Frostfire Infusion", "type": "single", "posX": 15900, "posY": 3300, "maxRanks": 1, "subTreeId": 41, "next": [94637], "prev": [94633], "entries": [{"id": 117237, "definitionId": 122249, "maxRanks": 1, "type": "passive", "name": "Frostfire Infusion", "spellId": 431166, "icon": "inv_10_blacksmithing_craftedbar_frostfirealloy", "index": 100}]}, {"id": 94657, "name": "Shifting Shards / Signature Spell", "type": "choice", "posX": 7200, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "requiresNode": 62113, "next": [94654], "prev": [94659], "entries": [{"id": 117260, "definitionId": 122272, "maxRanks": 1, "type": "passive", "name": "Shifting Shards", "spellId": 444675, "icon": "ability_mage_freeze", "index": 100}, {"id": 128267, "definitionId": 133074, "maxRanks": 1, "type": "passive", "name": "Signature Spell", "spellId": 470021, "icon": "inv_enchanting_815_drustwand", "index": 200}]}, {"id": 94656, "name": "Force of Will", "type": "single", "posX": 7800, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94660], "entries": [{"id": 117259, "definitionId": 122271, "maxRanks": 1, "type": "passive", "name": "Force of Will", "spellId": 444719, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 94655, "name": "Spellfrost Teachings", "type": "single", "posX": 8400, "posY": 3900, "maxRanks": 1, "subTreeId": 40, "next": [94654], "prev": [94658], "entries": [{"id": 117258, "definitionId": 122270, "maxRanks": 1, "type": "passive", "name": "Spellfrost Teachings", "spellId": 444986, "icon": "70_inscription_vantus_rune_azure", "index": 100}]}, {"id": 94639, "name": "Excess Frost", "type": "single", "posX": 14700, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94638], "entries": [{"id": 117242, "definitionId": 122254, "maxRanks": 1, "type": "passive", "name": "Excess Frost", "spellId": 438600, "icon": "spell_deathknight_iceboundfortitude", "index": 100}]}, {"id": 94632, "name": "Frostfire Empowerment", "type": "single", "posX": 15300, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94640], "entries": [{"id": 117235, "definitionId": 122247, "maxRanks": 1, "type": "passive", "name": "Frostfire Empowerment", "spellId": 431176, "icon": "spell_frostfire_orb", "index": 100}]}, {"id": 94637, "name": "Excess Fire", "type": "single", "posX": 15900, "posY": 3900, "maxRanks": 1, "subTreeId": 41, "next": [94635], "prev": [94634], "entries": [{"id": 117240, "definitionId": 122252, "maxRanks": 1, "type": "passive", "name": "Excess Fire", "spellId": 438595, "icon": "ability_mage_fierypayback", "index": 100}]}, {"id": 94654, "name": "Splinterstorm", "type": "single", "posX": 7800, "posY": 4500, "maxRanks": 1, "subTreeId": 40, "next": [], "prev": [94656, 94657, 94655], "entries": [{"id": 117257, "definitionId": 122269, "maxRanks": 1, "type": "passive", "name": "Splinterstorm", "spellId": 443742, "icon": "ability_mage_burstofcold", "index": 100}]}, {"id": 94635, "name": "Flash Freezeburn", "type": "single", "posX": 15300, "posY": 4500, "maxRanks": 1, "subTreeId": 41, "next": [], "prev": [94632, 94639, 94637], "entries": [{"id": 117238, "definitionId": 122250, "maxRanks": 1, "type": "passive", "name": "Flash Freezeburn", "spellId": 431178, "icon": "spell_fire_elementaldevastation", "index": 100}]}], "subTreeNodes": [{"id": 99828, "name": "Frostfire / Spellslinger", "type": "subtree", "posX": 8700, "posY": 1500, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123342, "type": "subtree", "name": "Frostfire", "traitSubTreeId": 41, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-frostfire", "nodes": [94636, 94642, 94641, 94633, 94638, 94640, 94634, 94639, 94632, 94637, 94635]}, {"id": 123339, "type": "subtree", "name": "Spellslinger", "traitSubTreeId": 40, "traitTreeId": 658, "atlasMemberName": "talents-heroclass-mage-spellslinger", "nodes": [94664, 94662, 94663, 94661, 94659, 94660, 94658, 94657, 94656, 94655, 94654]}]}], "fullNodeOrder": [62084, 62085, 62086, 62087, 62088, 62089, 62091, 62092, 62093, 62094, 62095, 62096, 62097, 62098, 62099, 62100, 62101, 62102, 62103, 62104, 62105, 62106, 62107, 62108, 62110, 62111, 62112, 62113, 62114, 62115, 62116, 62117, 62118, 62119, 62120, 62121, 62122, 62123, 62124, 62125, 62127, 62128, 62129, 62150, 62151, 62152, 62153, 62154, 62155, 62156, 62157, 62158, 62159, 62160, 62161, 62162, 62163, 62164, 62165, 62166, 62167, 62168, 62169, 62170, 62171, 62172, 62173, 62174, 62176, 62177, 62178, 62179, 62180, 62181, 62182, 62183, 62184, 62185, 81467, 81468, 93524, 94632, 94633, 94634, 94635, 94636, 94637, 94638, 94639, 94640, 94641, 94642, 94643, 94644, 94645, 94646, 94647, 94648, 94649, 94650, 94651, 94652, 94653, 94654, 94655, 94656, 94657, 94658, 94659, 94660, 94661, 94662, 94663, 94664, 99828, 99829, 99830, 100987, 100988, 100989, 100991, 100992, 100993, 100994, 100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003, 101004, 101006, 101007, 101008, 101009, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101019, 101020, 101021, 101022, 101023, 101024, 101025, 101027, 101029, 101302, 101883, 101942, 101943, 101945, 102010, 102011, 102012, 102013, 102014, 102435, 102436, 102437, 102438, 102439, 102440, 102441, 102443, 102444, 102445, 102446, 102447, 102448, 102449, 102450, 102451, 102452, 102453, 102454, 102455, 102456, 102457, 102458, 102459, 102460, 102461, 102462, 102463, 102465, 102466, 102467, 102468, 102469, 102470, 102471, 102472, 102473, 102474, 102475, 102476, 102477, 102480, 103771]}, {"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Arms", "specId": 71, "classNodes": [{"id": 90327, "name": "Battle Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90328], "prev": [], "entries": [{"id": 112184, "definitionId": 117189, "maxRanks": 1, "type": "active", "name": "Battle Stance", "spellId": 386164, "icon": "ability_warrior_offensivestance", "index": 100}], "freeNode": true}, {"id": 92537, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 114643, "definitionId": 119649, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 200}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90327], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90328, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90327], "entries": [{"id": 112185, "definitionId": 117190, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 262231, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [92537], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [92537], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90352], "prev": [90328, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90352, 90355, 90353], "prev": [90328, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90352, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90346, 90326], "entries": [{"id": 112216, "definitionId": 117221, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 392792, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90347], "prev": [90352, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90347, 90356, 90378], "prev": [90352, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 90340, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90347, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90340, 90382], "prev": [90331, 90385], "entries": [{"id": 112209, "definitionId": 117214, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 382764, "icon": "spell_shadow_unholystrength", "index": 0}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90366], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 90340, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90347, 95956], "entries": [{"id": 112201, "definitionId": 117206, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 383082, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118845, "definitionId": 123745, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90322, 90338], "prev": [90347, 90378], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90338, 90366], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90366], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90340, 90351, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90365], "prev": [90382, 90340], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90322, "name": "Two-Handed Weapon Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112179, "definitionId": 117184, "maxRanks": 1, "type": "passive", "name": "Two-Handed Weapon Specialization", "spellId": 382896, "icon": "inv_axe_09", "index": 0}]}, {"id": 90338, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90365], "prev": [90354, 90382], "entries": [{"id": 112199, "definitionId": 117204, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 382940, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90366, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90368, 90348, 90354], "entries": [{"id": 112233, "definitionId": 117238, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 384124, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 90365, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90363], "prev": [90360, 90338], "entries": [{"id": 112232, "definitionId": 117237, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 107574, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90366], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "inv_ability_warrior_championsspear", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90363, "name": "Blademaster's Torment / Warlord's Torment", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90365], "entries": [{"id": 112229, "definitionId": 117234, "maxRanks": 1, "type": "passive", "name": "Blademaster's Torment", "spellId": 390138, "icon": "ability_warrior_endlessrage", "index": 0}, {"id": 112228, "definitionId": 117233, "maxRanks": 1, "type": "passive", "name": "Warlord's Torment", "spellId": 390140, "icon": "warrior_talent_icon_innerrage", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90270, "name": "Mortal Strike", "type": "single", "posX": 12010, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90271], "prev": [], "entries": [{"id": 112122, "definitionId": 117127, "maxRanks": 1, "type": "active", "name": "Mortal Strike", "spellId": 12294, "icon": "ability_warrior_savageblow", "index": 100}]}, {"id": 90271, "name": "Overpower", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90278, 90276, 90273], "prev": [90270], "entries": [{"id": 112123, "definitionId": 117128, "maxRanks": 1, "type": "active", "name": "Overpower", "spellId": 7384, "icon": "ability_meleedamage", "index": 100}]}, {"id": 90278, "name": "Martial Prowess", "type": "single", "posX": 11110, "posY": 2100, "maxRanks": 1, "next": [90279, 90277], "prev": [90271], "entries": [{"id": 112130, "definitionId": 117135, "maxRanks": 1, "type": "passive", "name": "Martial Prowess", "spellId": 316440, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 90276, "name": "Die by the Sword", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90277, 90275, 90269, 90274], "prev": [90271], "entries": [{"id": 112128, "definitionId": 117133, "maxRanks": 1, "type": "active", "name": "Die by the Sword", "spellId": 118038, "icon": "ability_warrior_challange", "index": 100}]}, {"id": 90273, "name": "Improved Execute", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90274, 90272], "prev": [90271], "entries": [{"id": 112125, "definitionId": 117130, "maxRanks": 1, "type": "passive", "name": "Improved Execute", "spellId": 316405, "icon": "inv_sword_48", "index": 100}]}, {"id": 90279, "name": "Improved Overpower", "type": "single", "posX": 10200, "posY": 2700, "maxRanks": 1, "next": [90282], "prev": [90278], "entries": [{"id": 112131, "definitionId": 117136, "maxRanks": 1, "type": "passive", "name": "Improved Overpower", "spellId": 385571, "icon": "ability_meleedamage", "index": 100}]}, {"id": 90277, "name": "Bloodsurge", "type": "single", "posX": 11110, "posY": 2700, "maxRanks": 1, "next": [90282], "prev": [90276, 90278], "entries": [{"id": 112129, "definitionId": 117134, "maxRanks": 1, "type": "passive", "name": "Bloodsurge", "spellId": 384361, "icon": "ability_warrior_bloodsurge", "index": 0}]}, {"id": 90275, "name": "Fueled by Violence", "type": "single", "posX": 11710, "posY": 2700, "maxRanks": 1, "next": [90290], "prev": [90276], "entries": [{"id": 112127, "definitionId": 117132, "maxRanks": 1, "type": "passive", "name": "Fueled by Violence", "spellId": 383103, "icon": "ability_demonhunter_bloodlet", "index": 100}]}, {"id": 90269, "name": "Storm Wall / Ignore Pain", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90290], "prev": [90276], "entries": [{"id": 112121, "definitionId": 117126, "maxRanks": 1, "type": "passive", "name": "Storm Wall", "spellId": 388807, "icon": "spell_sandstorm", "index": 100}, {"id": 114738, "definitionId": 119745, "maxRanks": 1, "type": "active", "name": "Ignore Pain", "spellId": 190456, "icon": "ability_warrior_renewedvigor", "index": 200}]}, {"id": 90274, "name": "Sudden Death", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90292], "prev": [90273, 90276], "entries": [{"id": 112126, "definitionId": 117131, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 29725, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90272, "name": "Fervor of Battle", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [90292], "prev": [90273], "entries": [{"id": 112124, "definitionId": 117129, "maxRanks": 1, "type": "passive", "name": "Fervor of Battle", "spellId": 202316, "icon": "ability_rogue_waylay", "index": 100}]}, {"id": 90282, "name": "Tactician", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [92614, 90284, 90281], "prev": [90277, 90279], "entries": [{"id": 112134, "definitionId": 117139, "maxRanks": 1, "type": "passive", "name": "Tactician", "spellId": 184783, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 90290, "name": "Colossus Smash", "type": "single", "posX": 12010, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [92614, 90289, 90286], "prev": [90269, 90275], "entries": [{"id": 112144, "definitionId": 117149, "maxRanks": 1, "type": "active", "name": "Colossus Smash", "spellId": 167105, "icon": "ability_warrior_colossussmash", "index": 100}]}, {"id": 90292, "name": "Impale", "type": "single", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90286, 90293, 92536], "prev": [90274, 90272], "entries": [{"id": 112146, "definitionId": 117151, "maxRanks": 1, "type": "passive", "name": "Impale", "spellId": 383430, "icon": "ability_searingarrow", "index": 100}]}, {"id": 90281, "name": "Skullsplitter", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90283], "prev": [90282], "entries": [{"id": 112133, "definitionId": 117138, "maxRanks": 1, "type": "active", "name": "Skullsplitter", "spellId": 260643, "icon": "inv_skullsplitter", "index": 100}]}, {"id": 90284, "name": "Rend", "type": "single", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90283, 90285], "prev": [90282], "entries": [{"id": 112136, "definitionId": 117141, "maxRanks": 1, "type": "active", "name": "Rend", "spellId": 772, "icon": "ability_gouge", "index": 100}]}, {"id": 92614, "name": "Finishing Blows", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90285], "prev": [90290, 90282], "entries": [{"id": 114733, "definitionId": 119740, "maxRanks": 1, "type": "passive", "name": "Finishing Blows", "spellId": 400205, "icon": "ability_warrior_punishingblow", "index": 200}]}, {"id": 90289, "name": "Anger Management / Spiteful Serenity", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90288, 90287, 90285, 90291], "prev": [90290], "entries": [{"id": 112143, "definitionId": 117148, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 0}, {"id": 114642, "definitionId": 119648, "maxRanks": 1, "type": "passive", "name": "Spiteful Serenity", "spellId": 400314, "icon": "inv_helmet_08", "index": 100}]}, {"id": 90286, "name": "Exhilarating Blows", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90291], "prev": [90292, 90290], "entries": [{"id": 112138, "definitionId": 117143, "maxRanks": 1, "type": "passive", "name": "Exhilarating Blows", "spellId": 383219, "icon": "warrior_talent_icon_igniteweapon", "index": 0}]}, {"id": 92536, "name": "Improved Sweeping Strikes / Collateral Damage", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90291, 90267], "prev": [90292], "entries": [{"id": 114641, "definitionId": 119647, "maxRanks": 1, "type": "passive", "name": "Improved Sweeping Strikes", "spellId": 383155, "icon": "ability_rogue_slicedice", "index": 100}, {"id": 114739, "definitionId": 119746, "maxRanks": 1, "type": "passive", "name": "Collateral Damage", "spellId": 334779, "icon": "ability_warrior_incite", "index": 200}]}, {"id": 90293, "name": "Cleave", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90267], "prev": [90292], "entries": [{"id": 112147, "definitionId": 117152, "maxRanks": 1, "type": "active", "name": "Cleave", "spellId": 845, "icon": "ability_warrior_cleave", "index": 100}]}, {"id": 90283, "name": "Bloodborne", "type": "single", "posX": 10200, "posY": 4490, "reqPoints": 8, "maxRanks": 2, "next": [90437], "prev": [90281, 90284], "entries": [{"id": 112135, "definitionId": 117140, "maxRanks": 2, "type": "passive", "name": "Bloodborne", "spellId": 383287, "icon": "inv_artifact_bloodoftheassassinated", "index": 0}]}, {"id": 90288, "name": "In For The Kill / Test of Might", "type": "choice", "posX": 11710, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90442], "prev": [90289], "entries": [{"id": 112142, "definitionId": 117147, "maxRanks": 1, "type": "passive", "name": "In For The Kill", "spellId": 248621, "icon": "ability_blackhand_marked4death", "index": 100}, {"id": 112141, "definitionId": 117146, "maxRanks": 1, "type": "passive", "name": "Test of Might", "spellId": 385008, "icon": "ability_warrior_strengthofarms", "index": 200}]}, {"id": 90287, "name": "Blunt Instruments / Warbreaker", "type": "choice", "posX": 12300, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90442], "prev": [90289], "entries": [{"id": 112140, "definitionId": 117145, "maxRanks": 1, "type": "passive", "name": "Blunt Instruments", "spellId": 383442, "icon": "inv_mace_01", "index": 0}, {"id": 112139, "definitionId": 117144, "maxRanks": 1, "type": "active", "name": "Warbreaker", "spellId": 262161, "icon": "inv_warbreaker", "index": 100}]}, {"id": 90285, "name": "Dreadnaught / Strength of Arms", "type": "choice", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90437], "prev": [92614, 90284, 90289], "entries": [{"id": 112137, "definitionId": 117142, "maxRanks": 1, "type": "passive", "name": "Dreadnaught", "spellId": 262150, "icon": "inv_sword_05", "index": 200}, {"id": 119096, "definitionId": 123996, "maxRanks": 1, "type": "passive", "name": "Strength of Arms", "spellId": 400803, "icon": "inv_gauntlets_26", "index": 300}]}, {"id": 90291, "name": "Massacre", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90444], "prev": [90286, 90289, 92536], "entries": [{"id": 112145, "definitionId": 117150, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 281001, "icon": "inv_sword_48", "index": 0}]}, {"id": 90267, "name": "Storm of Swords", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90444], "prev": [92536, 90293], "entries": [{"id": 112119, "definitionId": 117124, "maxRanks": 1, "type": "passive", "name": "Storm of Swords", "spellId": 385512, "icon": "ability_skyreach_fourblades", "index": 0}]}, {"id": 90437, "name": "Deft Experience", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90438, 92615], "prev": [90283, 90285], "entries": [{"id": 112309, "definitionId": 117314, "maxRanks": 2, "type": "passive", "name": "Deft Experience", "spellId": 389308, "icon": "inv_misc_book_07", "index": 100}]}, {"id": 90442, "name": "Valor in Victory", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90441, 90438, 90447], "prev": [90288, 90287], "entries": [{"id": 112315, "definitionId": 117320, "maxRanks": 1, "type": "passive", "name": "Valor in Victory", "spellId": 383338, "icon": "spell_holy_summonchampion", "index": 100}]}, {"id": 90444, "name": "Critical Thinking", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90447, 90446], "prev": [90291, 90267], "entries": [{"id": 112317, "definitionId": 117322, "maxRanks": 2, "type": "passive", "name": "Critical Thinking", "spellId": 389306, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 92615, "name": "Battlelord", "type": "single", "posX": 9600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90439], "prev": [90437], "entries": [{"id": 114740, "definitionId": 119747, "maxRanks": 1, "type": "passive", "name": "Battlelord", "spellId": 386630, "icon": "ability_pvp_hardiness", "index": 0}]}, {"id": 90438, "name": "Bloodletting", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90439], "prev": [90437, 90442], "entries": [{"id": 112310, "definitionId": 117315, "maxRanks": 1, "type": "passive", "name": "Bloodletting", "spellId": 383154, "icon": "ability_skeer_bloodletting", "index": 0}]}, {"id": 90441, "name": "Bladestorm / Ravager", "type": "choice", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [92535, 90440, 90266], "prev": [90442], "entries": [{"id": 112314, "definitionId": 117319, "maxRanks": 1, "type": "active", "name": "Bladestorm", "spellId": 227847, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 119138, "definitionId": 124038, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 200}]}, {"id": 90447, "name": "Sharpened Blades", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90445], "prev": [90444, 90442], "entries": [{"id": 112320, "definitionId": 117325, "maxRanks": 1, "type": "passive", "name": "Sharpened Blades", "spellId": 383341, "icon": "inv_sword_27", "index": 200}]}, {"id": 90446, "name": "Juggernaut", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90445], "prev": [90444], "entries": [{"id": 112319, "definitionId": 117324, "maxRanks": 1, "type": "passive", "name": "Juggernaut", "spellId": 383292, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90439, "name": "Fatality", "type": "single", "posX": 10200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90438, 92615], "entries": [{"id": 112311, "definitionId": 117316, "maxRanks": 1, "type": "passive", "name": "Fatality", "spellId": 383703, "icon": "achievement_bg_killingblow_berserker", "index": 300}]}, {"id": 92535, "name": "Dance of Death", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 114639, "definitionId": 119645, "maxRanks": 1, "type": "passive", "name": "Dance of Death", "spellId": 390713, "icon": "ability_butcher_whirl", "index": 100}]}, {"id": 90440, "name": "Unhinged", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 112313, "definitionId": 117318, "maxRanks": 1, "type": "passive", "name": "Unhinged", "spellId": 386628, "icon": "spell_shadow_spectralsight", "index": 0}]}, {"id": 90266, "name": "Merciless Bonegrinder", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 112117, "definitionId": 117122, "maxRanks": 1, "type": "passive", "name": "Merciless Bonegrinder", "spellId": 383317, "icon": "ability_ironmaidens_whirlofblood", "index": 0}]}, {"id": 90445, "name": "Executioner's Precision", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90446, 90447], "entries": [{"id": 112318, "definitionId": 117323, "maxRanks": 1, "type": "passive", "name": "Executioner's Precision", "spellId": 386634, "icon": "inv_sword_48", "index": 0}]}], "heroNodes": [{"id": 94814, "name": "Slayer's Dominance", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 60, "next": [94788, 94810, 94795], "prev": [], "entries": [{"id": 117411, "definitionId": 122423, "maxRanks": 1, "type": "passive", "name": "Slayer's Dominance", "spellId": 444767, "icon": "inv_ability_slayerwarrior_slayersdominance", "index": 100}], "freeNode": true}, {"id": 94788, "name": "Imminent Demise", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94813], "prev": [94814], "entries": [{"id": 117385, "definitionId": 122397, "maxRanks": 1, "type": "passive", "name": "Imminent Demise", "spellId": 444769, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 94810, "name": "Overwhelming Blades", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94786], "prev": [94814], "entries": [{"id": 117407, "definitionId": 122419, "maxRanks": 1, "type": "passive", "name": "Overwhelming Blades", "spellId": 444772, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}]}, {"id": 94795, "name": "Relentless Pursuit / Vicious Agility", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94787], "prev": [94814], "entries": [{"id": 117392, "definitionId": 122404, "maxRanks": 1, "type": "passive", "name": "Relentless Pursuit", "spellId": 444776, "icon": "ability_rogue_sprint", "index": 100}, {"id": 123408, "definitionId": 128246, "maxRanks": 1, "type": "passive", "name": "Vicious Agility", "spellId": 444777, "icon": "ability_paladin_speedoflight", "index": 200}]}, {"id": 94813, "name": "Death Drive", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94784], "prev": [94788], "entries": [{"id": 117410, "definitionId": 122422, "maxRanks": 1, "type": "passive", "name": "Death Drive", "spellId": 444770, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 94786, "name": "Culling Cyclone / Brutal Finish", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94809], "prev": [94810], "entries": [{"id": 117383, "definitionId": 122395, "maxRanks": 1, "type": "passive", "name": "Culling Cyclone", "spellId": 444778, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 123409, "definitionId": 128247, "maxRanks": 1, "type": "passive", "name": "Brutal Finish", "spellId": 446085, "icon": "ability_revendreth_warrior", "index": 200}]}, {"id": 94787, "name": "Fierce Followthrough / Opportunist", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94801], "prev": [94795], "entries": [{"id": 117384, "definitionId": 122396, "maxRanks": 1, "type": "passive", "name": "Fierce Followthrough", "spellId": 444773, "icon": "spell_deathknight_butcher2", "index": 100}, {"id": 123770, "definitionId": 128608, "maxRanks": 1, "type": "passive", "name": "Opportunist", "spellId": 444774, "icon": "ability_warrior_weaponmastery", "index": 200}]}, {"id": 94784, "name": "Show No Mercy", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94813], "entries": [{"id": 117381, "definitionId": 122393, "maxRanks": 1, "type": "passive", "name": "Show No Mercy", "spellId": 444771, "icon": "warrior_talent_icon_lambstotheslaughter", "index": 100}]}, {"id": 94809, "name": "Reap the Storm", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94786], "entries": [{"id": 117406, "definitionId": 122418, "maxRanks": 1, "type": "passive", "name": "Reap the Storm", "spellId": 444775, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 94801, "name": "Slayer's Malice", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94787], "entries": [{"id": 117398, "definitionId": 122410, "maxRanks": 1, "type": "passive", "name": "Slayer's Malice", "spellId": 444779, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 94820, "name": "Unrelenting Onslaught", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 60, "next": [], "prev": [94809, 94784, 94801], "entries": [{"id": 117417, "definitionId": 122429, "maxRanks": 1, "type": "passive", "name": "Unrelenting Onslaught", "spellId": 444780, "icon": "ability_warrior_commandingshout", "index": 100}]}, {"id": 94818, "name": "Demolish", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 62, "next": [94812, 94819, 94789], "prev": [], "entries": [{"id": 117415, "definitionId": 122427, "maxRanks": 1, "type": "active", "name": "Demolish", "spellId": 436358, "icon": "inv_ability_colossuswarrior_demolish", "index": 100}], "freeNode": true}, {"id": 94812, "name": "Martial Expert", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94799], "prev": [94818], "entries": [{"id": 117409, "definitionId": 122421, "maxRanks": 1, "type": "passive", "name": "Martial Expert", "spellId": 429638, "icon": "ability_warrior_stalwartprotector", "index": 100}]}, {"id": 94819, "name": "Colossal Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94811], "prev": [94818], "entries": [{"id": 117416, "definitionId": 122428, "maxRanks": 1, "type": "passive", "name": "Colossal Might", "spellId": 429634, "icon": "ability_warrior_strengthofarms", "index": 100}]}, {"id": 94789, "name": "Boneshaker / Earthquaker", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "requiresNode": 90375, "next": [94815], "prev": [94818], "entries": [{"id": 117386, "definitionId": 122398, "maxRanks": 1, "type": "passive", "name": "Boneshaker", "spellId": 429639, "icon": "ability_deathknight_brittlebones", "index": 100}, {"id": 119858, "definitionId": 124758, "maxRanks": 1, "type": "passive", "name": "Earthquaker", "spellId": 440992, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 94799, "name": "One Against Many / Arterial Bleed", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94796], "prev": [94812], "entries": [{"id": 117396, "definitionId": 122408, "maxRanks": 1, "type": "passive", "name": "One Against Many", "spellId": 429637, "icon": "ability_warrior_incite", "index": 100}, {"id": 119856, "definitionId": 124756, "maxRanks": 1, "type": "passive", "name": "Arterial Bleed", "spellId": 440995, "icon": "ability_warrior_deepcuts", "index": 200}]}, {"id": 94811, "name": "Tide of Battle", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94794], "prev": [94819], "entries": [{"id": 117408, "definitionId": 122420, "maxRanks": 1, "type": "passive", "name": "Tide of Battle", "spellId": 429641, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 94815, "name": "No Stranger to Pain / Veteran Vitality", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94806], "prev": [94789], "entries": [{"id": 117412, "definitionId": 122424, "maxRanks": 1, "type": "passive", "name": "No Stranger to Pain", "spellId": 429644, "icon": "ability_warrior_renewedvigor", "index": 100}, {"id": 119857, "definitionId": 124757, "maxRanks": 1, "type": "passive", "name": "Veteran Vitality", "spellId": 440993, "icon": "ability_hunter_harass", "index": 200}]}, {"id": 94796, "name": "Practiced Strikes", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94799], "entries": [{"id": 117393, "definitionId": 122405, "maxRanks": 1, "type": "passive", "name": "Practiced Strikes", "spellId": 429647, "icon": "spell_warrior_sharpenblade", "index": 100}]}, {"id": 94794, "name": "Precise Might", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94811], "entries": [{"id": 117391, "definitionId": 122403, "maxRanks": 1, "type": "passive", "name": "Precise Might", "spellId": 431548, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94806, "name": "Mountain of Muscle and Scars", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94815], "entries": [{"id": 117403, "definitionId": 122415, "maxRanks": 1, "type": "passive", "name": "Mountain of Muscle and Scars", "spellId": 429642, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 94793, "name": "Dominance of the Colossus", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 62, "next": [], "prev": [94794, 94796, 94806], "entries": [{"id": 117390, "definitionId": 122402, "maxRanks": 1, "type": "passive", "name": "Dominance of the Colossus", "spellId": 429636, "icon": "ability_warrior_titansgrip", "index": 100}]}], "subTreeNodes": [{"id": 99853, "name": "Colossus / Slayer", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123393, "type": "subtree", "name": "Colossus", "traitSubTreeId": 62, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-colossus", "nodes": [94818, 94812, 94819, 94789, 94799, 94811, 94815, 94796, 94794, 94806, 94793]}, {"id": 123390, "type": "subtree", "name": "Slayer", "traitSubTreeId": 60, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-slayer", "nodes": [94814, 94788, 94810, 94795, 94813, 94786, 94787, 94784, 94809, 94801, 94820]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]}, {"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Fury", "specId": 72, "classNodes": [{"id": 90325, "name": "Berserker Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90386], "prev": [], "entries": [{"id": 112182, "definitionId": 117187, "maxRanks": 1, "type": "active", "name": "Berserker Stance", "spellId": 386196, "icon": "ability_racial_avatar", "index": 100}], "freeNode": true}, {"id": 92538, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 114644, "definitionId": 119650, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 100}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90325], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90386, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90325], "entries": [{"id": 112254, "definitionId": 117259, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 346002, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [92538], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [92538], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90350], "prev": [90386, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90350, 90355, 90353], "prev": [90386, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90350, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90346, 90326], "entries": [{"id": 112213, "definitionId": 117218, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 215571, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90349], "prev": [90350, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90349, 90356, 90378], "prev": [90350, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 95955, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90349, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [95955, 90382], "prev": [90331, 90385], "entries": [{"id": 112212, "definitionId": 117217, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 382764, "icon": "spell_shadow_unholystrength", "index": 0}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90258], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95955, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90349, 95956], "entries": [{"id": 118849, "definitionId": 123749, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 390674, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118848, "definitionId": 123748, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90373, 90376], "prev": [90349, 90378], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90376, 90258], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90258], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90351, 95955, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92640], "prev": [90382, 95955], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90373, "name": "Dual Wield Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112240, "definitionId": 117245, "maxRanks": 1, "type": "passive", "name": "Dual Wield Specialization", "spellId": 382900, "icon": "ability_dualwield", "index": 100}]}, {"id": 90376, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92640], "prev": [90382, 90354], "entries": [{"id": 112243, "definitionId": 117248, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 391997, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90258, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90368, 90348, 90354], "entries": [{"id": 112108, "definitionId": 117113, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 384124, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 92640, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90362], "prev": [90376, 90360], "entries": [{"id": 114770, "definitionId": 119777, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 107574, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90258], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "inv_ability_warrior_championsspear", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90362, "name": "Berserker's Torment / Titan's Torment", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92640], "entries": [{"id": 112227, "definitionId": 117232, "maxRanks": 1, "type": "passive", "name": "Berserker's Torment", "spellId": 390123, "icon": "ability_warrior_innerrage", "index": 0}, {"id": 112226, "definitionId": 117231, "maxRanks": 1, "type": "passive", "name": "Titan's Torment", "spellId": 390135, "icon": "70_inscription_vantus_rune_odyn", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90392, "name": "Bloodthirst", "type": "single", "posX": 12000, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90396], "prev": [], "entries": [{"id": 112261, "definitionId": 117266, "maxRanks": 1, "type": "active", "name": "Bloodthirst", "spellId": 23881, "icon": "spell_nature_bloodlust", "index": 100}]}, {"id": 90396, "name": "Raging Blow", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90398, 90395, 90430], "prev": [90392], "entries": [{"id": 112265, "definitionId": 117270, "maxRanks": 1, "type": "active", "name": "Raging Blow", "spellId": 85288, "icon": "warrior_wild_strike", "index": 100}]}, {"id": 90398, "name": "Frenzied Enrage / Powerful Enrage", "type": "choice", "posX": 11110, "posY": 2100, "maxRanks": 1, "next": [90397, 90399], "prev": [90396], "entries": [{"id": 112267, "definitionId": 117272, "maxRanks": 1, "type": "passive", "name": "Frenzied Enrage", "spellId": 383848, "icon": "spell_shadow_unholyfrenzy", "index": 100}, {"id": 119112, "definitionId": 124012, "maxRanks": 1, "type": "passive", "name": "Powerful Enrage", "spellId": 440277, "icon": "ability_warrior_strengthofarms", "index": 200}]}, {"id": 90395, "name": "Enraged Regeneration", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90399, 90394, 90393, 90429], "prev": [90396], "entries": [{"id": 112264, "definitionId": 117269, "maxRanks": 1, "type": "active", "name": "Enraged Regeneration", "spellId": 184364, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 90430, "name": "Improved Execute", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90429, 90428], "prev": [90396], "entries": [{"id": 112301, "definitionId": 117306, "maxRanks": 1, "type": "passive", "name": "Improved Execute", "spellId": 316402, "icon": "inv_sword_48", "index": 100}]}, {"id": 90397, "name": "Improved Bloodthirst", "type": "single", "posX": 10200, "posY": 2700, "maxRanks": 1, "next": [90403], "prev": [90398], "entries": [{"id": 112266, "definitionId": 117271, "maxRanks": 1, "type": "passive", "name": "Improved Bloodthirst", "spellId": 383852, "icon": "spell_nature_bloodlust", "index": 100}]}, {"id": 90399, "name": "Fresh Meat", "type": "single", "posX": 11110, "posY": 2700, "maxRanks": 1, "next": [90403], "prev": [90395, 90398], "entries": [{"id": 112268, "definitionId": 117273, "maxRanks": 1, "type": "passive", "name": "Fresh Meat", "spellId": 215568, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 90394, "name": "Warpaint", "type": "single", "posX": 11710, "posY": 2700, "maxRanks": 1, "next": [90408], "prev": [90395], "entries": [{"id": 112263, "definitionId": 117268, "maxRanks": 1, "type": "passive", "name": "Warpaint", "spellId": 208154, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 90393, "name": "Invigorating Fury", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90408], "prev": [90395], "entries": [{"id": 112262, "definitionId": 117267, "maxRanks": 1, "type": "passive", "name": "Invigorating Fury", "spellId": 383468, "icon": "spell_misc_emotionangry", "index": 100}]}, {"id": 90429, "name": "Sudden Death", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90390], "prev": [90430, 90395], "entries": [{"id": 112300, "definitionId": 117305, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 280721, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90428, "name": "Cruelty", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [90390], "prev": [90430], "entries": [{"id": 112299, "definitionId": 117304, "maxRanks": 1, "type": "passive", "name": "Cruelty", "spellId": 392931, "icon": "spell_nature_focusedmind", "index": 100}]}, {"id": 90403, "name": "Focus in Chaos", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90404, 90402, 90400], "prev": [90397, 90399], "entries": [{"id": 112272, "definitionId": 117277, "maxRanks": 1, "type": "passive", "name": "Focus in Chaos", "spellId": 383486, "icon": "ability_hunter_mastermarksman", "index": 100}]}, {"id": 90408, "name": "Rampage", "type": "single", "posX": 12010, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90406, 90407, 90411], "prev": [90393, 90394], "entries": [{"id": 112277, "definitionId": 117282, "maxRanks": 1, "type": "active", "name": "Rampage", "spellId": 184367, "icon": "ability_warrior_rampage", "index": 100}]}, {"id": 90390, "name": "Improved Raging Blow", "type": "single", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90409, 90427], "prev": [90429, 90428], "entries": [{"id": 112259, "definitionId": 117264, "maxRanks": 1, "type": "passive", "name": "Improved Raging Blow", "spellId": 383854, "icon": "warrior_wild_strike", "index": 100}]}, {"id": 90400, "name": "Single-Minded Fury", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90401], "prev": [90403], "entries": [{"id": 112269, "definitionId": 117274, "maxRanks": 1, "type": "passive", "name": "Single-Minded Fury", "spellId": 81099, "icon": "warrior_talent_icon_singlemindedfury", "index": 0}]}, {"id": 90402, "name": "Cold Steel, Hot Blood", "type": "single", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90401, 90405], "prev": [90403], "entries": [{"id": 112271, "definitionId": 117276, "maxRanks": 1, "type": "passive", "name": "Cold Steel, Hot Blood", "spellId": 383959, "icon": "ability_rogue_hungerforblood", "index": 100}]}, {"id": 90404, "name": "Vicious Contempt", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90405], "prev": [90403], "entries": [{"id": 112273, "definitionId": 117278, "maxRanks": 2, "type": "passive", "name": "Vicious Contempt", "spellId": 383885, "icon": "ability_ironmaidens_sorkasprey", "index": 200}]}, {"id": 90406, "name": "Frenzy", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90405, 90412], "prev": [90408], "entries": [{"id": 112275, "definitionId": 117280, "maxRanks": 1, "type": "passive", "name": "Frenzy", "spellId": 335077, "icon": "ability_rogue_bloodyeye", "index": 100}]}, {"id": 90407, "name": "Hack and Slash", "type": "single", "posX": 12010, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90412], "prev": [90408], "entries": [{"id": 112276, "definitionId": 117281, "maxRanks": 1, "type": "passive", "name": "Hack and Slash", "spellId": 383877, "icon": "ability_rogue_rollthebones02", "index": 100}]}, {"id": 90411, "name": "Slaughtering Strikes", "type": "single", "posX": 12610, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90412, 90410], "prev": [90408], "entries": [{"id": 112280, "definitionId": 117285, "maxRanks": 1, "type": "passive", "name": "Slaughtering Strikes", "spellId": 388004, "icon": "inv_axe_2h_orcwarrior_c_01", "index": 100}]}, {"id": 90409, "name": "Ashen Juggernaut", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90410, 90387], "prev": [90390], "entries": [{"id": 112278, "definitionId": 117283, "maxRanks": 1, "type": "passive", "name": "Ashen Juggernaut", "spellId": 392536, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90427, "name": "Improved Whirlwind", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90387, 90391], "prev": [90390], "entries": [{"id": 112298, "definitionId": 117303, "maxRanks": 1, "type": "passive", "name": "Improved Whirlwind", "spellId": 12950, "icon": "ability_whirlwind", "index": 100}]}, {"id": 90401, "name": "Bloodborne", "type": "single", "posX": 10200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90421], "prev": [90402, 90400], "entries": [{"id": 112270, "definitionId": 117275, "maxRanks": 1, "type": "passive", "name": "Bloodborne", "spellId": 385703, "icon": "inv_artifact_bloodoftheassassinated", "index": 0}]}, {"id": 90405, "name": "Bloodcraze", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90421], "prev": [90402, 90404, 90406], "entries": [{"id": 112274, "definitionId": 117279, "maxRanks": 1, "type": "passive", "name": "Bloodcraze", "spellId": 393950, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 90412, "name": "Recklessness", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90416], "prev": [90407, 90406, 90411], "entries": [{"id": 112281, "definitionId": 117286, "maxRanks": 1, "type": "active", "name": "Recklessness", "spellId": 1719, "icon": "warrior_talent_icon_innerrage", "index": 100}]}, {"id": 90410, "name": "Massacre", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90409, 90411], "entries": [{"id": 112279, "definitionId": 117284, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 206315, "icon": "inv_sword_48", "index": 100}]}, {"id": 90387, "name": "Wrath and Fury", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90409, 90427], "entries": [{"id": 112255, "definitionId": 117260, "maxRanks": 1, "type": "passive", "name": "Wrath and Fury", "spellId": 392936, "icon": "inv_sword_2h_artifactarathor_d_03", "index": 100}]}, {"id": 90391, "name": "Meat Cleaver", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90427], "entries": [{"id": 112260, "definitionId": 117265, "maxRanks": 1, "type": "passive", "name": "Meat Cleaver", "spellId": 280392, "icon": "ability_whirlwind", "index": 200}]}, {"id": 90421, "name": "Deft Experience", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90388, 90424], "prev": [90401, 90405], "entries": [{"id": 112292, "definitionId": 117297, "maxRanks": 2, "type": "passive", "name": "Deft Experience", "spellId": 383295, "icon": "inv_misc_book_07", "index": 100}]}, {"id": 90416, "name": "Swift Strikes", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90388, 90415], "prev": [90412], "entries": [{"id": 112286, "definitionId": 117291, "maxRanks": 2, "type": "passive", "name": "Swift Strikes", "spellId": 383459, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90425, "name": "Critical Thinking", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90415, 90418], "prev": [90410, 90387, 90391], "entries": [{"id": 112296, "definitionId": 117301, "maxRanks": 2, "type": "passive", "name": "Critical Thinking", "spellId": 383297, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90424, "name": "Onslaught", "type": "single", "posX": 9600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90423], "prev": [90421], "entries": [{"id": 112295, "definitionId": 117300, "maxRanks": 1, "type": "active", "name": "Onslaught", "spellId": 315720, "icon": "ability_warrior_trauma", "index": 100}]}, {"id": 90388, "name": "Ravager / Bladestorm", "type": "choice", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90389], "prev": [90416, 90421], "entries": [{"id": 112256, "definitionId": 117261, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 0}, {"id": 119139, "definitionId": 124039, "maxRanks": 1, "type": "active", "name": "Bladestorm", "spellId": 227847, "icon": "ability_warrior_bladestorm", "index": 100}]}, {"id": 90415, "name": "Anger Management / Reckless Abandon", "type": "choice", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90414, 90413], "prev": [90425, 90416], "entries": [{"id": 112285, "definitionId": 117290, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 100}, {"id": 112284, "definitionId": 117289, "maxRanks": 1, "type": "passive", "name": "Reckless Abandon", "spellId": 396749, "icon": "spell_fire_incinerate", "index": 200}]}, {"id": 90418, "name": "Odyn's Fury", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90417], "prev": [90425], "entries": [{"id": 112289, "definitionId": 117294, "maxRanks": 1, "type": "active", "name": "Odyn's Fury", "spellId": 385059, "icon": "inv_sword_1h_artifactvigfus_d_01", "index": 100}]}, {"id": 90423, "name": "Tenderize", "type": "single", "posX": 9600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90424], "entries": [{"id": 112294, "definitionId": 117299, "maxRanks": 1, "type": "passive", "name": "Tenderize", "spellId": 388933, "icon": "inv_mace_1h_blacksmithing_b_01_black", "index": 100}]}, {"id": 90389, "name": "Storm of Steel / Unhinged", "type": "choice", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90388], "entries": [{"id": 112258, "definitionId": 117263, "maxRanks": 1, "type": "passive", "name": "Storm of Steel", "spellId": 382953, "icon": "ability_creature_cursed_04", "index": 0}, {"id": 112257, "definitionId": 117262, "maxRanks": 1, "type": "passive", "name": "Unhinged", "spellId": 386628, "icon": "spell_shadow_spectralsight", "index": 100}]}, {"id": 90414, "name": "Unbridled Ferocity", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90415], "entries": [{"id": 112283, "definitionId": 117288, "maxRanks": 1, "type": "passive", "name": "Unbridled Ferocity", "spellId": 389603, "icon": "ability_warrior_endlessrage", "index": 100}]}, {"id": 90413, "name": "Depths of Insanity", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90415], "entries": [{"id": 112282, "definitionId": 117287, "maxRanks": 1, "type": "passive", "name": "Depths of Insanity", "spellId": 383922, "icon": "racial_troll_berserk", "index": 100}]}, {"id": 90417, "name": "Dancing Blades / Titanic Rage", "type": "choice", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90418], "entries": [{"id": 112288, "definitionId": 117293, "maxRanks": 1, "type": "passive", "name": "Dancing Blades", "spellId": 391683, "icon": "inv_sword_1h_artifactvigfus_d_01dual", "index": 100}, {"id": 112287, "definitionId": 117292, "maxRanks": 1, "type": "passive", "name": "Titanic Rage", "spellId": 394329, "icon": "inv_sword_1h_artifactvigfus_d_02", "index": 200}]}], "heroNodes": [{"id": 94803, "name": "Lightning Strikes", "type": "single", "posX": 15000, "posY": 300, "maxRanks": 1, "entryNode": true, "subTreeId": 61, "next": [94808, 94816, 94800], "prev": [], "entries": [{"id": 117400, "definitionId": 122412, "maxRanks": 1, "type": "passive", "name": "Lightning Strikes", "spellId": 434969, "icon": "ability_vehicle_electrocharge", "index": 100}], "freeNode": true}, {"id": 94816, "name": "Crashing Thunder", "type": "single", "posX": 14390, "posY": 900, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94785], "prev": [94803], "entries": [{"id": 117413, "definitionId": 122425, "maxRanks": 1, "type": "passive", "name": "Crashing Thunder", "spellId": 436707, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 94800, "name": "Ground Current", "type": "single", "posX": 15000, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94817], "prev": [94803], "entries": [{"id": 117397, "definitionId": 122409, "maxRanks": 1, "type": "passive", "name": "Ground Current", "spellId": 436148, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 94808, "name": "Strength of the Mountain", "type": "single", "posX": 15600, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94798], "prev": [94803], "entries": [{"id": 117405, "definitionId": 122417, "maxRanks": 1, "type": "passive", "name": "Strength of the Mountain", "spellId": 437068, "icon": "ability_warrior_titansgrip", "index": 100}]}, {"id": 94814, "name": "Slayer's Dominance", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 60, "next": [94788, 94810, 94795], "prev": [], "entries": [{"id": 117411, "definitionId": 122423, "maxRanks": 1, "type": "passive", "name": "Slayer's Dominance", "spellId": 444767, "icon": "inv_ability_slayerwarrior_slayersdominance", "index": 100}], "freeNode": true}, {"id": 94785, "name": "Thunder Blast", "type": "single", "posX": 14410, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94797], "prev": [94816], "entries": [{"id": 117382, "definitionId": 122394, "maxRanks": 1, "type": "passive", "name": "Thunder Blast", "spellId": 435607, "icon": "warrior_talent_icon_bloodandthunder", "index": 100}]}, {"id": 94817, "name": "Storm Bolts / Storm Shield", "type": "choice", "posX": 15010, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94792], "prev": [94800], "entries": [{"id": 117414, "definitionId": 122426, "maxRanks": 1, "type": "passive", "name": "Storm Bolts", "spellId": 436162, "icon": "warrior_talent_icon_stormbolt", "index": 100}, {"id": 118835, "definitionId": 123735, "maxRanks": 1, "type": "passive", "name": "Storm Shield", "spellId": 438597, "icon": "spell_winston_bubble", "index": 200}]}, {"id": 94798, "name": "Keep Your Feet on the Ground / Steadfast as the Peaks", "type": "choice", "posX": 15600, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94807], "prev": [94808], "entries": [{"id": 117395, "definitionId": 122407, "maxRanks": 1, "type": "passive", "name": "Keep Your Feet on the Ground", "spellId": 438590, "icon": "ability_thunderking_overcharge", "index": 100}, {"id": 118836, "definitionId": 123736, "maxRanks": 1, "type": "passive", "name": "Steadfast as the Peaks", "spellId": 434970, "icon": "ability_warrior_devastate", "index": 200}]}, {"id": 94788, "name": "Imminent Demise", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94813], "prev": [94814], "entries": [{"id": 117385, "definitionId": 122397, "maxRanks": 1, "type": "passive", "name": "Imminent Demise", "spellId": 444769, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 94810, "name": "Overwhelming Blades", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94786], "prev": [94814], "entries": [{"id": 117407, "definitionId": 122419, "maxRanks": 1, "type": "passive", "name": "Overwhelming Blades", "spellId": 444772, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}]}, {"id": 94795, "name": "Relentless Pursuit / Vicious Agility", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94787], "prev": [94814], "entries": [{"id": 117392, "definitionId": 122404, "maxRanks": 1, "type": "passive", "name": "Relentless Pursuit", "spellId": 444776, "icon": "ability_rogue_sprint", "index": 100}, {"id": 123408, "definitionId": 128246, "maxRanks": 1, "type": "passive", "name": "Vicious Agility", "spellId": 444777, "icon": "ability_paladin_speedoflight", "index": 200}]}, {"id": 94792, "name": "Gathering Clouds / Thorim's Might", "type": "choice", "posX": 15000, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94817], "entries": [{"id": 117389, "definitionId": 122401, "maxRanks": 1, "type": "passive", "name": "Gathering Clouds", "spellId": 436201, "icon": "spell_nature_stormreach", "index": 100}, {"id": 118834, "definitionId": 123734, "maxRanks": 1, "type": "passive", "name": "Thorim's Might", "spellId": 436152, "icon": "inv_ability_mountainthanewarrior_thorimsmight", "index": 200}]}, {"id": 94807, "name": "Burst of Power", "type": "single", "posX": 15590, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94798], "entries": [{"id": 117404, "definitionId": 122416, "maxRanks": 1, "type": "passive", "name": "Burst of Power", "spellId": 437118, "icon": "shaman_pvp_thundercharge", "index": 100}]}, {"id": 94797, "name": "Flashing Skies / Snap Induction", "type": "choice", "posX": 14410, "posY": 2110, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94805], "prev": [94785], "entries": [{"id": 117394, "definitionId": 122406, "maxRanks": 1, "type": "passive", "name": "Flashing Skies", "spellId": 437079, "icon": "spell_lightning_lightningbolt01", "index": 100}, {"id": 118833, "definitionId": 123733, "maxRanks": 1, "type": "passive", "name": "Snap Induction", "spellId": 456270, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94813, "name": "Death Drive", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94784], "prev": [94788], "entries": [{"id": 117410, "definitionId": 122422, "maxRanks": 1, "type": "passive", "name": "Death Drive", "spellId": 444770, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 94786, "name": "Culling Cyclone / Brutal Finish", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94809], "prev": [94810], "entries": [{"id": 117383, "definitionId": 122395, "maxRanks": 1, "type": "passive", "name": "Culling Cyclone", "spellId": 444778, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 123409, "definitionId": 128247, "maxRanks": 1, "type": "passive", "name": "Brutal Finish", "spellId": 446085, "icon": "ability_revendreth_warrior", "index": 200}]}, {"id": 94787, "name": "Fierce Followthrough / Opportunist", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94801], "prev": [94795], "entries": [{"id": 117384, "definitionId": 122396, "maxRanks": 1, "type": "passive", "name": "Fierce Followthrough", "spellId": 444773, "icon": "spell_deathknight_butcher2", "index": 100}, {"id": 123770, "definitionId": 128608, "maxRanks": 1, "type": "passive", "name": "Opportunist", "spellId": 444774, "icon": "ability_warrior_weaponmastery", "index": 200}]}, {"id": 94805, "name": "Avatar of the Storm", "type": "single", "posX": 15010, "posY": 2710, "maxRanks": 1, "subTreeId": 61, "requiresNode": 92640, "next": [], "prev": [94797, 94792, 94807], "entries": [{"id": 117402, "definitionId": 122414, "maxRanks": 1, "type": "passive", "name": "Avatar of the Storm", "spellId": 437134, "icon": "achievement_dungeon_blackrockcaverns_ascendantlordobsidius", "index": 100}]}, {"id": 94784, "name": "Show No Mercy", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94813], "entries": [{"id": 117381, "definitionId": 122393, "maxRanks": 1, "type": "passive", "name": "Show No Mercy", "spellId": 444771, "icon": "warrior_talent_icon_lambstotheslaughter", "index": 100}]}, {"id": 94809, "name": "Reap the Storm", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94786], "entries": [{"id": 117406, "definitionId": 122418, "maxRanks": 1, "type": "passive", "name": "Reap the Storm", "spellId": 444775, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 94801, "name": "Slayer's Malice", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94787], "entries": [{"id": 117398, "definitionId": 122410, "maxRanks": 1, "type": "passive", "name": "Slayer's Malice", "spellId": 444779, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 94820, "name": "Unrelenting Onslaught", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 60, "next": [], "prev": [94809, 94784, 94801], "entries": [{"id": 117417, "definitionId": 122429, "maxRanks": 1, "type": "passive", "name": "Unrelenting Onslaught", "spellId": 444780, "icon": "ability_warrior_commandingshout", "index": 100}]}], "subTreeNodes": [{"id": 99852, "name": "Mountain Thane / Slayer", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123392, "type": "subtree", "name": "Mountain Thane", "traitSubTreeId": 61, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-mountainthane", "nodes": [94803, 94816, 94800, 94808, 94785, 94817, 94798, 94792, 94807, 94797, 94805]}, {"id": 123389, "type": "subtree", "name": "Slayer", "traitSubTreeId": 60, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-slayer", "nodes": [94814, 94788, 94810, 94795, 94813, 94786, 94787, 94784, 94809, 94801, 94820]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]}, {"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Protection", "specId": 73, "classNodes": [{"id": 90261, "name": "Battle Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90345], "prev": [], "entries": [{"id": 112112, "definitionId": 117117, "maxRanks": 1, "type": "active", "name": "Battle Stance", "spellId": 386164, "icon": "ability_warrior_offensivestance", "index": 200}], "freeNode": true}, {"id": 90330, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 112187, "definitionId": 117192, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 200}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90261], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90345, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90261], "entries": [{"id": 112207, "definitionId": 117212, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 316733, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [90330], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [90330], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90370], "prev": [90345, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90370, 90355, 90353], "prev": [90345, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90370, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90326, 90346], "entries": [{"id": 112237, "definitionId": 117242, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 392790, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90369], "prev": [90370, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90369, 90356, 90378], "prev": [90370, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 95954, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90369, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [95954, 90382], "prev": [90331, 90385], "entries": [{"id": 112236, "definitionId": 117241, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 390642, "icon": "spell_shadow_unholystrength", "index": 100}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90259], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95954, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90369, 95956], "entries": [{"id": 118847, "definitionId": 123747, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 390675, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118846, "definitionId": 123746, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90324, 90339], "prev": [90378, 90369], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90339, 90259], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90259], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90351, 95954, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92639], "prev": [90382, 95954], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90324, "name": "One-Handed Weapon Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112181, "definitionId": 117186, "maxRanks": 1, "type": "passive", "name": "One-Handed Weapon Specialization", "spellId": 382895, "icon": "inv_sword_20", "index": 200}]}, {"id": 90339, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92639], "prev": [90382, 90354], "entries": [{"id": 112200, "definitionId": 117205, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 382940, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90259, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90348, 90368, 90354], "entries": [{"id": 112109, "definitionId": 117114, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 394855, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 92639, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90364], "prev": [90360, 90339], "entries": [{"id": 114769, "definitionId": 119776, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 401150, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90259], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "inv_ability_warrior_championsspear", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90364, "name": "Immovable Object / Unstoppable Force", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92639], "entries": [{"id": 112231, "definitionId": 117236, "maxRanks": 1, "type": "passive", "name": "Immovable Object", "spellId": 394307, "icon": "spell_frost_chillingarmor", "index": 0}, {"id": 112230, "definitionId": 117235, "maxRanks": 1, "type": "passive", "name": "Unstoppable Force", "spellId": 275336, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90295, "name": "Ignore Pain", "type": "single", "posX": 12000, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90298], "prev": [], "entries": [{"id": 112149, "definitionId": 117154, "maxRanks": 1, "type": "active", "name": "Ignore Pain", "spellId": 190456, "icon": "ability_warrior_renewedvigor", "index": 100}]}, {"id": 90298, "name": "Revenge", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90305, 90299, 90297], "prev": [90295], "entries": [{"id": 112152, "definitionId": 117157, "maxRanks": 1, "type": "active", "name": "Revenge", "spellId": 6572, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 90305, "name": "Demoralizing Shout", "type": "single", "posX": 10200, "posY": 2100, "maxRanks": 1, "next": [90304, 90303, 90306], "prev": [90298], "entries": [{"id": 112159, "definitionId": 117164, "maxRanks": 1, "type": "active", "name": "Demoralizing Shout", "spellId": 1160, "icon": "ability_warrior_warcry", "index": 100}]}, {"id": 90299, "name": "Devastator", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90303], "prev": [90298], "entries": [{"id": 112153, "definitionId": 117158, "maxRanks": 1, "type": "active", "name": "Devastator", "spellId": 236279, "icon": "inv_sword_11", "index": 0}]}, {"id": 90297, "name": "Last Stand", "type": "single", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [90303, 90296, 90452], "prev": [90298], "entries": [{"id": 112151, "definitionId": 117156, "maxRanks": 1, "type": "active", "name": "Last Stand", "spellId": 12975, "icon": "spell_holy_ashestoashes", "index": 100}]}, {"id": 90306, "name": "Fight Through the Flames", "type": "single", "posX": 9600, "posY": 2700, "maxRanks": 1, "next": [90309], "prev": [90305], "entries": [{"id": 112160, "definitionId": 117165, "maxRanks": 1, "type": "passive", "name": "Fight Through the Flames", "spellId": 452494, "icon": "ability_racial_foregedinflames", "index": 100}]}, {"id": 90304, "name": "Best Served Cold", "type": "single", "posX": 10800, "posY": 2700, "maxRanks": 1, "next": [90309], "prev": [90305], "entries": [{"id": 112158, "definitionId": 117163, "maxRanks": 1, "type": "passive", "name": "Best Served Cold", "spellId": 202560, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 90303, "name": "Strategist", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [90301, 90302, 90300], "prev": [90297, 90299, 90305], "entries": [{"id": 112157, "definitionId": 117162, "maxRanks": 1, "type": "passive", "name": "Strategist", "spellId": 384041, "icon": "inv_shield_05", "index": 100}]}, {"id": 90296, "name": "Brace For Impact", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [90451], "prev": [90297], "entries": [{"id": 112150, "definitionId": 117155, "maxRanks": 1, "type": "passive", "name": "Brace For Impact", "spellId": 386030, "icon": "ability_warrior_shieldguard", "index": 100}]}, {"id": 90452, "name": "Unnerving Focus", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [90451], "prev": [90297], "entries": [{"id": 112327, "definitionId": 117332, "maxRanks": 1, "type": "passive", "name": "Unnerving Focus", "spellId": 384042, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90309, "name": "Challenging Shout", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90308, 90312, 90320, 90307], "prev": [90306, 90304], "entries": [{"id": 112163, "definitionId": 117168, "maxRanks": 1, "type": "active", "name": "Challenging Shout", "spellId": 1161, "icon": "ability_bullrush", "index": 100}]}, {"id": 90301, "name": "Instigate", "type": "single", "posX": 11400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112155, "definitionId": 117160, "maxRanks": 1, "type": "passive", "name": "Instigate", "spellId": 394311, "icon": "ability_rogue_dismantle", "index": 0}]}, {"id": 90302, "name": "Rend", "type": "single", "posX": 12000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112156, "definitionId": 117161, "maxRanks": 1, "type": "active", "name": "Rend", "spellId": 394062, "icon": "ability_gouge", "index": 0}]}, {"id": 90300, "name": "Bloodsurge", "type": "single", "posX": 12600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112154, "definitionId": 117159, "maxRanks": 1, "type": "passive", "name": "Bloodsurge", "spellId": 384361, "icon": "ability_warrior_bloodsurge", "index": 0}]}, {"id": 90451, "name": "Fueled by Violence / Brutal Vitality", "type": "choice", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312, 90448, 90264, 90450], "prev": [90452, 90296], "entries": [{"id": 112326, "definitionId": 117331, "maxRanks": 1, "type": "passive", "name": "Fueled by Violence", "spellId": 383103, "icon": "ability_demonhunter_bloodlet", "index": 100}, {"id": 112325, "definitionId": 117330, "maxRanks": 1, "type": "passive", "name": "Brutal Vitality", "spellId": 384036, "icon": "ability_warrior_renewedvigor", "index": 200}]}, {"id": 90307, "name": "Disrupting Shout", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112161, "definitionId": 117166, "maxRanks": 1, "type": "active", "name": "Disrupting Shout", "spellId": 386071, "icon": "ability_bullrush", "index": 0}]}, {"id": 90320, "name": "Show of Force / Sudden Death", "type": "choice", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112177, "definitionId": 117182, "maxRanks": 1, "type": "passive", "name": "Show of Force", "spellId": 385843, "icon": "ability_rogue_reinforcedleather", "index": 0}, {"id": 112111, "definitionId": 117116, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 29725, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90308, "name": "Thunderlord", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112162, "definitionId": 117167, "maxRanks": 1, "type": "passive", "name": "Thunderlord", "spellId": 385840, "icon": "ability_vehicle_electrocharge", "index": 0}]}, {"id": 90312, "name": "Shield Wall", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90310, 90313, 90311], "prev": [90300, 90302, 90301, 90451, 90309], "entries": [{"id": 112167, "definitionId": 117172, "maxRanks": 1, "type": "active", "name": "Shield Wall", "spellId": 871, "icon": "ability_warrior_shieldwall", "index": 100}]}, {"id": 90264, "name": "Bolster", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90449], "prev": [90451], "entries": [{"id": 112115, "definitionId": 117120, "maxRanks": 1, "type": "passive", "name": "Bolster", "spellId": 280001, "icon": "shield_draenorcrafted_d_02_c_alliance", "index": 200}]}, {"id": 90450, "name": "Tough as Nails / Spell Block", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90449], "prev": [90451], "entries": [{"id": 112324, "definitionId": 117329, "maxRanks": 1, "type": "passive", "name": "Tough as Nails", "spellId": 385888, "icon": "inv_titanium_shield_spike", "index": 0}, {"id": 112110, "definitionId": 117115, "maxRanks": 1, "type": "active", "name": "Spell Block", "spellId": 392966, "icon": "ability_warrior_shieldbreak", "index": 100}]}, {"id": 90448, "name": "Bloodborne", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90449], "prev": [90451], "entries": [{"id": 112321, "definitionId": 117326, "maxRanks": 2, "type": "passive", "name": "Bloodborne", "spellId": 385704, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90319, "name": "Heavy Repercussions / Into the Fray", "type": "choice", "posX": 10200, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90318], "prev": [90307, 90308, 90320], "entries": [{"id": 112176, "definitionId": 117181, "maxRanks": 1, "type": "passive", "name": "Heavy Repercussions", "spellId": 203177, "icon": "inv_shield_32", "index": 0}, {"id": 112175, "definitionId": 117180, "maxRanks": 1, "type": "passive", "name": "Into the Fray", "spellId": 202603, "icon": "ability_warrior_bloodfrenzy", "index": 100}]}, {"id": 90310, "name": "Defender's Aegis / Impenetrable Wall", "type": "choice", "posX": 12600, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112165, "definitionId": 117170, "maxRanks": 1, "type": "passive", "name": "Defender's Aegis", "spellId": 397103, "icon": "ability_warrior_stalwartprotector", "index": 0}, {"id": 112164, "definitionId": 117169, "maxRanks": 1, "type": "passive", "name": "Impenetrable Wall", "spellId": 384072, "icon": "ability_warrior_shieldguard", "index": 100}]}, {"id": 90449, "name": "Punish / Juggernaut", "type": "choice", "posX": 13800, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90433], "prev": [90450, 90264, 90448], "entries": [{"id": 112323, "definitionId": 117328, "maxRanks": 1, "type": "passive", "name": "Punish", "spellId": 275334, "icon": "ability_deathknight_sanguinfortitude", "index": 0}, {"id": 112322, "definitionId": 117327, "maxRanks": 1, "type": "passive", "name": "Juggernaut", "spellId": 393967, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90313, "name": "Enduring Defenses / Massacre", "type": "choice", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112169, "definitionId": 117174, "maxRanks": 1, "type": "passive", "name": "Enduring Defenses", "spellId": 386027, "icon": "ability_defend", "index": 100}, {"id": 112168, "definitionId": 117173, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 281001, "icon": "inv_sword_48", "index": 200}]}, {"id": 90311, "name": "Anger Management", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112166, "definitionId": 117171, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 0}]}, {"id": 90318, "name": "Focused Vigor", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90317], "prev": [90319], "entries": [{"id": 112174, "definitionId": 117179, "maxRanks": 1, "type": "passive", "name": "Focused Vigor", "spellId": 384067, "icon": "spell_nature_strength", "index": 100}]}, {"id": 90315, "name": "Shield Specialization", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90317, 90314, 90434, 90265, 90432], "prev": [90310, 90313, 90311], "entries": [{"id": 112171, "definitionId": 117176, "maxRanks": 2, "type": "passive", "name": "Shield Specialization", "spellId": 386011, "icon": "inv_shield_76", "index": 0}]}, {"id": 90433, "name": "Enduring Alacrity", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90432], "prev": [90449], "entries": [{"id": 112305, "definitionId": 117310, "maxRanks": 1, "type": "passive", "name": "Enduring Alacrity", "spellId": 384063, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90317, "name": "Shield Charge", "type": "single", "posX": 10200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90316, 90262], "prev": [90315, 90318], "entries": [{"id": 112173, "definitionId": 117178, "maxRanks": 1, "type": "active", "name": "Shield Charge", "spellId": 385952, "icon": "ability_warrior_shieldcharge", "index": 100}]}, {"id": 90314, "name": "Booming Voice", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112170, "definitionId": 117175, "maxRanks": 1, "type": "passive", "name": "Booming Voice", "spellId": 202743, "icon": "ability_warrior_commandingshout", "index": 100}]}, {"id": 90434, "name": "Indomitable", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112306, "definitionId": 117311, "maxRanks": 1, "type": "passive", "name": "Indomitable", "spellId": 202095, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 90265, "name": "Violent Outburst", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112116, "definitionId": 117121, "maxRanks": 1, "type": "passive", "name": "Violent Outburst", "spellId": 386477, "icon": "ability_warrior_furiousresolve", "index": 100}]}, {"id": 90432, "name": "Ravager", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90260], "prev": [90315, 90433], "entries": [{"id": 112304, "definitionId": 117309, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 200}]}, {"id": 90262, "name": "Battering Ram", "type": "single", "posX": 9900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90317], "entries": [{"id": 112113, "definitionId": 117118, "maxRanks": 1, "type": "passive", "name": "Battering Ram", "spellId": 394312, "icon": "ability_warrior_bullrush", "index": 100}]}, {"id": 90316, "name": "Champion's Bulwark", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90317], "entries": [{"id": 112172, "definitionId": 117177, "maxRanks": 1, "type": "passive", "name": "Champion's Bulwark", "spellId": 386328, "icon": "ability_warrior_shieldmastery", "index": 100}]}, {"id": 90435, "name": "Battle-Scarred Veteran", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90265, 90434, 90314], "entries": [{"id": 112307, "definitionId": 117312, "maxRanks": 1, "type": "passive", "name": "Battle-Scarred Veteran", "spellId": 386394, "icon": "ability_warrior_endlessrage", "index": 100}]}, {"id": 90260, "name": "Dance of Death / Storm of Steel", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90432], "entries": [{"id": 112302, "definitionId": 117307, "maxRanks": 1, "type": "passive", "name": "Dance of Death", "spellId": 390713, "icon": "ability_butcher_whirl", "index": 100}, {"id": 126306, "definitionId": 131132, "maxRanks": 1, "type": "passive", "name": "Storm of Steel", "spellId": 382953, "icon": "ability_creature_cursed_04", "index": 200}]}], "heroNodes": [{"id": 94803, "name": "Lightning Strikes", "type": "single", "posX": 15000, "posY": 300, "maxRanks": 1, "entryNode": true, "subTreeId": 61, "next": [94808, 94816, 94800], "prev": [], "entries": [{"id": 117400, "definitionId": 122412, "maxRanks": 1, "type": "passive", "name": "Lightning Strikes", "spellId": 434969, "icon": "ability_vehicle_electrocharge", "index": 100}], "freeNode": true}, {"id": 94816, "name": "Crashing Thunder", "type": "single", "posX": 14390, "posY": 900, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94785], "prev": [94803], "entries": [{"id": 117413, "definitionId": 122425, "maxRanks": 1, "type": "passive", "name": "Crashing Thunder", "spellId": 436707, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 94800, "name": "Ground Current", "type": "single", "posX": 15000, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94817], "prev": [94803], "entries": [{"id": 117397, "definitionId": 122409, "maxRanks": 1, "type": "passive", "name": "Ground Current", "spellId": 436148, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 94808, "name": "Strength of the Mountain", "type": "single", "posX": 15600, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94798], "prev": [94803], "entries": [{"id": 117405, "definitionId": 122417, "maxRanks": 1, "type": "passive", "name": "Strength of the Mountain", "spellId": 437068, "icon": "ability_warrior_titansgrip", "index": 100}]}, {"id": 94785, "name": "Thunder Blast", "type": "single", "posX": 14410, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94797], "prev": [94816], "entries": [{"id": 117382, "definitionId": 122394, "maxRanks": 1, "type": "passive", "name": "Thunder Blast", "spellId": 435607, "icon": "warrior_talent_icon_bloodandthunder", "index": 100}]}, {"id": 94817, "name": "Storm Bolts / Storm Shield", "type": "choice", "posX": 15010, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94792], "prev": [94800], "entries": [{"id": 117414, "definitionId": 122426, "maxRanks": 1, "type": "passive", "name": "Storm Bolts", "spellId": 436162, "icon": "warrior_talent_icon_stormbolt", "index": 100}, {"id": 118835, "definitionId": 123735, "maxRanks": 1, "type": "passive", "name": "Storm Shield", "spellId": 438597, "icon": "spell_winston_bubble", "index": 200}]}, {"id": 94798, "name": "Keep Your Feet on the Ground / Steadfast as the Peaks", "type": "choice", "posX": 15600, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94807], "prev": [94808], "entries": [{"id": 117395, "definitionId": 122407, "maxRanks": 1, "type": "passive", "name": "Keep Your Feet on the Ground", "spellId": 438590, "icon": "ability_thunderking_overcharge", "index": 100}, {"id": 118836, "definitionId": 123736, "maxRanks": 1, "type": "passive", "name": "Steadfast as the Peaks", "spellId": 434970, "icon": "ability_warrior_devastate", "index": 200}]}, {"id": 94792, "name": "Gathering Clouds / Thorim's Might", "type": "choice", "posX": 15000, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94817], "entries": [{"id": 117389, "definitionId": 122401, "maxRanks": 1, "type": "passive", "name": "Gathering Clouds", "spellId": 436201, "icon": "spell_nature_stormreach", "index": 100}, {"id": 118834, "definitionId": 123734, "maxRanks": 1, "type": "passive", "name": "Thorim's Might", "spellId": 436152, "icon": "inv_ability_mountainthanewarrior_thorimsmight", "index": 200}]}, {"id": 94807, "name": "Burst of Power", "type": "single", "posX": 15590, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94798], "entries": [{"id": 117404, "definitionId": 122416, "maxRanks": 1, "type": "passive", "name": "Burst of Power", "spellId": 437118, "icon": "shaman_pvp_thundercharge", "index": 100}]}, {"id": 94797, "name": "Flashing Skies / Snap Induction", "type": "choice", "posX": 14410, "posY": 2110, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94805], "prev": [94785], "entries": [{"id": 117394, "definitionId": 122406, "maxRanks": 1, "type": "passive", "name": "Flashing Skies", "spellId": 437079, "icon": "spell_lightning_lightningbolt01", "index": 100}, {"id": 118833, "definitionId": 123733, "maxRanks": 1, "type": "passive", "name": "Snap Induction", "spellId": 456270, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94805, "name": "Avatar of the Storm", "type": "single", "posX": 15010, "posY": 2710, "maxRanks": 1, "subTreeId": 61, "requiresNode": 92640, "next": [], "prev": [94797, 94792, 94807], "entries": [{"id": 117402, "definitionId": 122414, "maxRanks": 1, "type": "passive", "name": "Avatar of the Storm", "spellId": 437134, "icon": "achievement_dungeon_blackrockcaverns_ascendantlordobsidius", "index": 100}]}, {"id": 94818, "name": "Demolish", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 62, "next": [94812, 94819, 94789], "prev": [], "entries": [{"id": 117415, "definitionId": 122427, "maxRanks": 1, "type": "active", "name": "Demolish", "spellId": 436358, "icon": "inv_ability_colossuswarrior_demolish", "index": 100}], "freeNode": true}, {"id": 94812, "name": "Martial Expert", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94799], "prev": [94818], "entries": [{"id": 117409, "definitionId": 122421, "maxRanks": 1, "type": "passive", "name": "Martial Expert", "spellId": 429638, "icon": "ability_warrior_stalwartprotector", "index": 100}]}, {"id": 94819, "name": "Colossal Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94811], "prev": [94818], "entries": [{"id": 117416, "definitionId": 122428, "maxRanks": 1, "type": "passive", "name": "Colossal Might", "spellId": 429634, "icon": "ability_warrior_strengthofarms", "index": 100}]}, {"id": 94789, "name": "Boneshaker / Earthquaker", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "requiresNode": 90375, "next": [94815], "prev": [94818], "entries": [{"id": 117386, "definitionId": 122398, "maxRanks": 1, "type": "passive", "name": "Boneshaker", "spellId": 429639, "icon": "ability_deathknight_brittlebones", "index": 100}, {"id": 119858, "definitionId": 124758, "maxRanks": 1, "type": "passive", "name": "Earthquaker", "spellId": 440992, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 94799, "name": "One Against Many / Arterial Bleed", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94796], "prev": [94812], "entries": [{"id": 117396, "definitionId": 122408, "maxRanks": 1, "type": "passive", "name": "One Against Many", "spellId": 429637, "icon": "ability_warrior_incite", "index": 100}, {"id": 119856, "definitionId": 124756, "maxRanks": 1, "type": "passive", "name": "Arterial Bleed", "spellId": 440995, "icon": "ability_warrior_deepcuts", "index": 200}]}, {"id": 94811, "name": "Tide of Battle", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94794], "prev": [94819], "entries": [{"id": 117408, "definitionId": 122420, "maxRanks": 1, "type": "passive", "name": "Tide of Battle", "spellId": 429641, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 94815, "name": "No Stranger to Pain / Veteran Vitality", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94806], "prev": [94789], "entries": [{"id": 117412, "definitionId": 122424, "maxRanks": 1, "type": "passive", "name": "No Stranger to Pain", "spellId": 429644, "icon": "ability_warrior_renewedvigor", "index": 100}, {"id": 119857, "definitionId": 124757, "maxRanks": 1, "type": "passive", "name": "Veteran Vitality", "spellId": 440993, "icon": "ability_hunter_harass", "index": 200}]}, {"id": 94796, "name": "Practiced Strikes", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94799], "entries": [{"id": 117393, "definitionId": 122405, "maxRanks": 1, "type": "passive", "name": "Practiced Strikes", "spellId": 429647, "icon": "spell_warrior_sharpenblade", "index": 100}]}, {"id": 94794, "name": "Precise Might", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94811], "entries": [{"id": 117391, "definitionId": 122403, "maxRanks": 1, "type": "passive", "name": "Precise Might", "spellId": 431548, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94806, "name": "Mountain of Muscle and Scars", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94815], "entries": [{"id": 117403, "definitionId": 122415, "maxRanks": 1, "type": "passive", "name": "Mountain of Muscle and Scars", "spellId": 429642, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 94793, "name": "Dominance of the Colossus", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 62, "next": [], "prev": [94794, 94796, 94806], "entries": [{"id": 117390, "definitionId": 122402, "maxRanks": 1, "type": "passive", "name": "Dominance of the Colossus", "spellId": 429636, "icon": "ability_warrior_titansgrip", "index": 100}]}], "subTreeNodes": [{"id": 99851, "name": "Colossus / Mountain Thane", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123391, "type": "subtree", "name": "Colossus", "traitSubTreeId": 62, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-colossus", "nodes": [94818, 94812, 94819, 94789, 94799, 94811, 94815, 94796, 94794, 94806, 94793]}, {"id": 123388, "type": "subtree", "name": "Mountain Thane", "traitSubTreeId": 61, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-mountainthane", "nodes": [94803, 94816, 94800, 94808, 94785, 94817, 94798, 94792, 94807, 94797, 94805]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]}, {"traitTreeId": 720, "className": "Warlock", "classId": 9, "specName": "Affliction", "specId": 265, "classNodes": [{"id": 71931, "name": "Fel Domination", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71932, 71952], "prev": [], "entries": [{"id": 91439, "definitionId": 96441, "maxRanks": 1, "type": "active", "name": "Fel Domination", "spellId": 333889, "icon": "spell_shadow_felmending", "index": 100}]}, {"id": 71933, "name": "Soul Leech", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71952, 71950], "prev": [], "entries": [{"id": 91441, "definitionId": 96443, "maxRanks": 1, "type": "passive", "name": "Soul Leech", "spellId": 108370, "icon": "warlock_siphonlife", "index": 100}], "freeNode": true}, {"id": 71949, "name": "Burning Rush", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71950, 71948], "prev": [], "entries": [{"id": 91460, "definitionId": 96462, "maxRanks": 1, "type": "active", "name": "Burning Rush", "spellId": 111400, "icon": "ability_deathwing_sealarmorbreachtga", "index": 100}]}, {"id": 71932, "name": "Fel Pact", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [71951], "prev": [71931], "entries": [{"id": 91440, "definitionId": 96442, "maxRanks": 1, "type": "passive", "name": "Fel Pact", "spellId": 386113, "icon": "spell_shadow_impphaseshift", "index": 100}]}, {"id": 71952, "name": "Demon Skin", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 2, "next": [71951, 100941], "prev": [71933, 71931], "entries": [{"id": 91463, "definitionId": 96465, "maxRanks": 2, "type": "passive", "name": "Demon Skin", "spellId": 219272, "icon": "spell_shadow_ragingscream", "index": 100}]}, {"id": 71950, "name": "Fel Armor", "type": "single", "posX": 4800, "posY": 1800, "maxRanks": 2, "next": [100941, 71947], "prev": [71933, 71949], "entries": [{"id": 91461, "definitionId": 96463, "maxRanks": 2, "type": "passive", "name": "Fel Armor", "spellId": 386124, "icon": "spell_shadow_felarmour", "index": 0}]}, {"id": 71948, "name": "Fiendish Stride", "type": "single", "posX": 6000, "posY": 1800, "maxRanks": 1, "next": [71947], "prev": [71949], "entries": [{"id": 91459, "definitionId": 96461, "maxRanks": 1, "type": "passive", "name": "Fiendish Stride", "spellId": 386110, "icon": "inv_misc_moosehoof_fel", "index": 100}]}, {"id": 71951, "name": "Curses of Enfeeblement", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [71934, 71930, 71928], "prev": [71932, 71952], "entries": [{"id": 91462, "definitionId": 96464, "maxRanks": 1, "type": "active", "name": "Curses of Enfeeblement", "spellId": 386105, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 100941, "name": "Demonic Circle", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [71928, 71954, 71946], "prev": [71950, 71952], "entries": [{"id": 124694, "definitionId": 129532, "maxRanks": 1, "type": "active", "name": "Demonic Circle", "spellId": 268358, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 71947, "name": "Howl of Terror / Mortal Coil", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [71946, 71922, 71944], "prev": [71950, 71948], "entries": [{"id": 91458, "definitionId": 96460, "maxRanks": 1, "type": "active", "name": "Howl of Terror", "spellId": 5484, "icon": "ability_warlock_howlofterror", "index": 100}, {"id": 91457, "definitionId": 96459, "maxRanks": 1, "type": "active", "name": "Mortal Coil", "spellId": 6789, "icon": "ability_warlock_mortalcoil", "index": 200}]}, {"id": 71934, "name": "Amplify Curse", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [71935, 71953], "prev": [71951], "entries": [{"id": 91442, "definitionId": 96444, "maxRanks": 1, "type": "active", "name": "Amplify Curse", "spellId": 328774, "icon": "spell_shadow_contagion", "index": 100}]}, {"id": 71930, "name": "Demonic Embrace", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [71953], "prev": [71951], "entries": [{"id": 91438, "definitionId": 96440, "maxRanks": 1, "type": "passive", "name": "Demonic Embrace", "spellId": 288843, "icon": "spell_shadow_metamorphosis", "index": 100}]}, {"id": 71928, "name": "Demonic Inspiration", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [71953, 71927, 71916], "prev": [71951, 100941], "entries": [{"id": 91436, "definitionId": 96438, "maxRanks": 1, "type": "passive", "name": "Demonic Inspiration", "spellId": 386858, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 71954, "name": "Abyss Walker", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [71916], "prev": [100941], "entries": [{"id": 91465, "definitionId": 96467, "maxRanks": 1, "type": "passive", "name": "Abyss Walker", "spellId": 389609, "icon": "achievement_explore_argus", "index": 100}]}, {"id": 71946, "name": "Wrathful Minion", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [71916, 71955, 71940], "prev": [71947, 100941], "entries": [{"id": 91456, "definitionId": 96458, "maxRanks": 1, "type": "passive", "name": "Wrathful Minion", "spellId": 386864, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 71922, "name": "Demonic Fortitude", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91430, "definitionId": 96432, "maxRanks": 1, "type": "passive", "name": "Demonic Fortitude", "spellId": 386617, "icon": "spell_warlock_summonimpoutland", "index": 100}]}, {"id": 71944, "name": "Banish", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91454, "definitionId": 96456, "maxRanks": 1, "type": "active", "name": "Banish", "spellId": 710, "icon": "spell_shadow_cripple", "index": 100}]}, {"id": 71935, "name": "Teachings of the Satyr", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936], "prev": [71934], "entries": [{"id": 91443, "definitionId": 96445, "maxRanks": 1, "type": "passive", "name": "Teachings of the Satyr", "spellId": 387972, "icon": "spell_shadow_carrionswarm", "index": 100}]}, {"id": 71953, "name": "Accrued Vitality", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71936], "prev": [71934, 71928, 71930], "entries": [{"id": 91464, "definitionId": 96466, "maxRanks": 2, "type": "passive", "name": "Accrued Vitality", "spellId": 386613, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 71927, "name": "Sweet Souls", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936, 71956], "prev": [71928], "entries": [{"id": 91435, "definitionId": 96437, "maxRanks": 1, "type": "passive", "name": "Sweet Souls", "spellId": 386620, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 71916, "name": "Nightmare / Horrify", "type": "choice", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71956], "prev": [71946, 71928, 71954], "entries": [{"id": 91422, "definitionId": 96424, "maxRanks": 1, "type": "passive", "name": "Nightmare", "spellId": 386648, "icon": "spell_shadow_possession", "index": 100}, {"id": 115459, "definitionId": 120471, "maxRanks": 1, "type": "passive", "name": "Horrify", "spellId": 56244, "icon": "spell_nzinsanity_bloodthirst", "index": 200}]}, {"id": 71955, "name": "Demonic Gateway", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71942, 71956], "prev": [71946], "entries": [{"id": 91466, "definitionId": 96468, "maxRanks": 1, "type": "active", "name": "Demonic Gateway", "spellId": 111771, "icon": "spell_warlock_demonicportal_green", "index": 100}]}, {"id": 71940, "name": "Lifeblood", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71942], "prev": [71922, 71944, 71946], "entries": [{"id": 91449, "definitionId": 96451, "maxRanks": 2, "type": "passive", "name": "Lifeblood", "spellId": 386646, "icon": "warlock__healthstone", "index": 100}]}, {"id": 71936, "name": "Dark Pact", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71937, 93178], "prev": [71927, 71935, 71953], "entries": [{"id": 91444, "definitionId": 96446, "maxRanks": 1, "type": "active", "name": "Dark Pact", "spellId": 108416, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 71956, "name": "Strength of Will / Dark Accord", "type": "choice", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93178, 93179], "prev": [71916, 71955, 71927], "entries": [{"id": 91468, "definitionId": 96470, "maxRanks": 1, "type": "passive", "name": "Strength of Will", "spellId": 317138, "icon": "spell_shadow_demonictactics", "index": 100}, {"id": 91467, "definitionId": 96469, "maxRanks": 1, "type": "passive", "name": "Dark Accord", "spellId": 386659, "icon": "ability_warlock_improveddemonictactics", "index": 200}]}, {"id": 71942, "name": "Shadowfury", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93179, 71941], "prev": [71955, 71940], "entries": [{"id": 91452, "definitionId": 96454, "maxRanks": 1, "type": "active", "name": "Shadowfury", "spellId": 30283, "icon": "ability_warlock_shadowfurytga", "index": 200}]}, {"id": 71937, "name": "Ichor of Devils / Frequent Donor", "type": "choice", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71918], "prev": [71936], "entries": [{"id": 91446, "definitionId": 96448, "maxRanks": 1, "type": "passive", "name": "Ichor of Devils", "spellId": 386664, "icon": "spell_yorsahj_bloodboil_greenoil", "index": 100}, {"id": 91445, "definitionId": 96447, "maxRanks": 1, "type": "passive", "name": "Frequent Donor", "spellId": 386686, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 93178, "name": "Socrethar's Guile", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71918, 71925], "prev": [71936, 71956], "entries": [{"id": 115461, "definitionId": 120473, "maxRanks": 2, "type": "passive", "name": "Socrethar's Guile", "spellId": 405936, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93179, "name": "Sargerei Technique", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71925, 71938], "prev": [71956, 71942], "entries": [{"id": 115462, "definitionId": 120474, "maxRanks": 2, "type": "passive", "name": "Sargerei Technique", "spellId": 405955, "icon": "70_inscription_glyph_demonhunter_major", "index": 100}]}, {"id": 71941, "name": "Darkfury / Shadowflame", "type": "choice", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71938], "prev": [71942], "entries": [{"id": 91451, "definitionId": 96453, "maxRanks": 1, "type": "passive", "name": "Darkfury", "spellId": 264874, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 91450, "definitionId": 96452, "maxRanks": 1, "type": "active", "name": "Shadowflame", "spellId": 384069, "icon": "ability_warlock_shadowflame", "index": 200}]}, {"id": 71918, "name": "Swift Artifice", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71915, 71924], "prev": [71937, 93178], "entries": [{"id": 91425, "definitionId": 96427, "maxRanks": 1, "type": "passive", "name": "Swift Artifice", "spellId": 452902, "icon": "spell_shadow_destructivesoul", "index": 100}]}, {"id": 71925, "name": "Demonic Tactics", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71924, 71923], "prev": [93178, 93179], "entries": [{"id": 91433, "definitionId": 96435, "maxRanks": 1, "type": "passive", "name": "Demonic Tactics", "spellId": 452894, "icon": "inv_helm_laughingskull_01", "index": 100}]}, {"id": 71938, "name": "Teachings of the Black Harvest", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71923, 71917], "prev": [71941, 93179], "entries": [{"id": 91447, "definitionId": 96449, "maxRanks": 1, "type": "passive", "name": "Teachings of the Black Harvest", "spellId": 385881, "icon": "inv_misc_codexofxerrath_nochains", "index": 100}]}, {"id": 71915, "name": "Resolute Barrier", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926], "prev": [71918], "entries": [{"id": 91421, "definitionId": 96423, "maxRanks": 2, "type": "passive", "name": "Resolute Barrier", "spellId": 389359, "icon": "inv_shield_1h_demonweapon_c_01", "index": 100}]}, {"id": 71924, "name": "Fel Synergy", "type": "single", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926, 71939], "prev": [71918, 71925], "entries": [{"id": 91432, "definitionId": 96434, "maxRanks": 2, "type": "passive", "name": "Fel Synergy", "spellId": 389367, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 71923, "name": "Soul Link", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71939, 71957], "prev": [71925, 71938], "entries": [{"id": 91431, "definitionId": 96433, "maxRanks": 2, "type": "passive", "name": "Soul Link", "spellId": 108415, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 71917, "name": "Demonic Resilience", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71957], "prev": [71938], "entries": [{"id": 91424, "definitionId": 96426, "maxRanks": 2, "type": "passive", "name": "Demonic Resilience", "spellId": 389590, "icon": "ability_warlock_avoidance", "index": 100}]}, {"id": 71926, "name": "Pact of Gluttony", "type": "single", "posX": 3000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71915], "entries": [{"id": 91434, "definitionId": 96436, "maxRanks": 1, "type": "passive", "name": "Pact of Gluttony", "spellId": 386689, "icon": "warlock__bloodstone", "index": 100}]}, {"id": 71939, "name": "Soul Conduit", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71923], "entries": [{"id": 91427, "definitionId": 96450, "maxRanks": 1, "type": "passive", "name": "Soul Conduit", "spellId": 215941, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 71957, "name": "Soulburn", "type": "single", "posX": 5400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71917, 71923], "entries": [{"id": 91469, "definitionId": 96471, "maxRanks": 1, "type": "active", "name": "Soulburn", "spellId": 385899, "icon": "spell_warlock_soulburn", "index": 100}]}], "specNodes": [{"id": 72049, "name": "Unstable Affliction", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [72048, 72050], "prev": [], "entries": [{"id": 91570, "definitionId": 96572, "maxRanks": 1, "type": "active", "name": "Unstable Affliction", "spellId": 316099, "icon": "spell_shadow_unstableaffliction_3", "index": 100}]}, {"id": 72048, "name": "Writhe in Agony", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [72043, 72051, 72047], "prev": [72049], "entries": [{"id": 91569, "definitionId": 96571, "maxRanks": 1, "type": "passive", "name": "Writhe in Agony", "spellId": 196102, "icon": "spell_shadow_curseofsargeras", "index": 100}]}, {"id": 72050, "name": "Seed of Corruption", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [72051, 72040, 72039], "prev": [72049], "entries": [{"id": 91571, "definitionId": 96573, "maxRanks": 1, "type": "active", "name": "Seed of Corruption", "spellId": 27243, "icon": "spell_shadow_seedofdestruction", "index": 100}]}, {"id": 72043, "name": "Dark Virtuosity", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 2, "next": [72047, 72045], "prev": [72048], "entries": [{"id": 91564, "definitionId": 96566, "maxRanks": 2, "type": "passive", "name": "Dark Virtuosity", "spellId": 405327, "icon": "inv_elemental_primal_shadow", "index": 100}]}, {"id": 72051, "name": "Absolute Corruption / Siphon Life", "type": "choice", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [72047, 72039, 72037], "prev": [72048, 72050], "entries": [{"id": 91572, "definitionId": 96574, "maxRanks": 1, "type": "passive", "name": "Absolute Corruption", "spellId": 196103, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}, {"id": 124693, "definitionId": 129531, "maxRanks": 1, "type": "passive", "name": "Siphon Life", "spellId": 452999, "icon": "spell_shadow_requiem", "index": 200}]}, {"id": 72040, "name": "Kindled Malice", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 2, "next": [72039, 102033], "prev": [72050], "entries": [{"id": 91561, "definitionId": 96563, "maxRanks": 2, "type": "passive", "name": "Kindled Malice", "spellId": 405330, "icon": "inv_artifact_powerofthedarkside", "index": 100}]}, {"id": 72047, "name": "Nightfall", "type": "single", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [72045, 72037], "prev": [72048, 72043, 72051], "entries": [{"id": 91568, "definitionId": 96570, "maxRanks": 1, "type": "passive", "name": "Nightfall", "spellId": 108558, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 72039, "name": "Volatile Agony", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [72037, 102033], "prev": [72051, 72050, 72040], "entries": [{"id": 91560, "definitionId": 96562, "maxRanks": 1, "type": "passive", "name": "Volatile Agony", "spellId": 453034, "icon": "ability_xavius_corruptingnova", "index": 100}]}, {"id": 72045, "name": "Improved Shadow Bolt / Drain Soul", "type": "choice", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72032, 100940, 72053], "prev": [72047, 72043], "entries": [{"id": 91566, "definitionId": 96568, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Bolt", "spellId": 453080, "icon": "spell_shadow_shadowbolt", "index": 0}, {"id": 124692, "definitionId": 129530, "maxRanks": 1, "type": "active", "name": "Drain Soul", "spellId": 388667, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 72037, "name": "Summoner's Embrace / Grimoire of Sacrifice", "type": "choice", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72053, 72034, 72054], "prev": [72047, 72039, 72051], "entries": [{"id": 91558, "definitionId": 96560, "maxRanks": 1, "type": "passive", "name": "Summoner's Embrace", "spellId": 453105, "icon": "spell_shadow_unsummonbuilding", "index": 100}, {"id": 124691, "definitionId": 129529, "maxRanks": 1, "type": "active", "name": "Grimoire of Sacrifice", "spellId": 108503, "icon": "warlock_grimoireofsacrifice", "index": 200}]}, {"id": 102033, "name": "Vile Taint / Phantom Singularity", "type": "choice", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72054, 102032], "prev": [72040, 72039], "entries": [{"id": 91556, "definitionId": 96558, "maxRanks": 1, "type": "active", "name": "Vile Taint", "spellId": 278350, "icon": "sha_spell_shadow_shadesofdarkness_nightborne", "index": 100}, {"id": 126061, "definitionId": 130893, "maxRanks": 1, "type": "active", "name": "Phantom Singularity", "spellId": 205179, "icon": "inv_enchant_voidsphere", "index": 200}]}, {"id": 72032, "name": "Haunt", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [102031], "prev": [72045], "entries": [{"id": 91552, "definitionId": 96554, "maxRanks": 1, "type": "active", "name": "Haunt", "spellId": 48181, "icon": "ability_warlock_haunt", "index": 100}]}, {"id": 100940, "name": "Shadow Embrace", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046], "prev": [72045], "entries": [{"id": 124690, "definitionId": 129528, "maxRanks": 1, "type": "passive", "name": "Shadow Embrace", "spellId": 32388, "icon": "spell_shadow_shadowembrace", "index": 0}]}, {"id": 72053, "name": "Sacrolash's Dark Strike", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046], "prev": [72037, 72045], "entries": [{"id": 91575, "definitionId": 96577, "maxRanks": 1, "type": "passive", "name": "Sacrolash's Dark Strike", "spellId": 386986, "icon": "spell_nzinsanity_fearofdeath", "index": 100}]}, {"id": 72034, "name": "Summon Darkglare", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046, 71987, 72041], "prev": [72037], "entries": [{"id": 91554, "definitionId": 96556, "maxRanks": 1, "type": "active", "name": "Summon Darkglare", "spellId": 205180, "icon": "inv_beholderwarlock", "index": 100}]}, {"id": 72054, "name": "Cunning Cruelty", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72041, 72038], "prev": [72037, 102033], "entries": [{"id": 91576, "definitionId": 96578, "maxRanks": 1, "type": "passive", "name": "Cunning Cruelty", "spellId": 453172, "icon": "inv_misc_coin_09", "index": 100}]}, {"id": 102032, "name": "Infirmity", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72038], "prev": [102033], "entries": [{"id": 126065, "definitionId": 130897, "maxRanks": 1, "type": "passive", "name": "Infirmity", "spellId": 458036, "icon": "spell_shadow_mindflay", "index": 100}]}, {"id": 102031, "name": "Improved Haunt", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72058], "prev": [72032], "entries": [{"id": 126064, "definitionId": 130896, "maxRanks": 1, "type": "passive", "name": "Improved Haunt", "spellId": 458034, "icon": "ability_warlock_haunt", "index": 100}]}, {"id": 72046, "name": "Malediction", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72058, 72056], "prev": [72053, 100940, 72034], "entries": [{"id": 91567, "definitionId": 96569, "maxRanks": 2, "type": "passive", "name": "Malediction", "spellId": 453087, "icon": "spell_shadow_curseofachimonde", "index": 100}]}, {"id": 71987, "name": "Malevolent Visionary", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72056], "prev": [72034], "entries": [{"id": 91504, "definitionId": 96506, "maxRanks": 1, "type": "passive", "name": "Malevolent Visionary", "spellId": 387273, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 72041, "name": "Contagion", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72056, 72031], "prev": [72054, 72034], "entries": [{"id": 91562, "definitionId": 96564, "maxRanks": 2, "type": "passive", "name": "Contagion", "spellId": 453096, "icon": "spell_shadow_unstableafllictions", "index": 100}]}, {"id": 72038, "name": "Cull the Weak", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72031], "prev": [102032, 72054], "entries": [{"id": 91559, "definitionId": 96561, "maxRanks": 2, "type": "passive", "name": "Cull the Weak", "spellId": 453056, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 72058, "name": "Creeping Death", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71921, 72042, 102246], "prev": [102031, 72046], "entries": [{"id": 91580, "definitionId": 96582, "maxRanks": 1, "type": "passive", "name": "Creeping Death", "spellId": 264000, "icon": "ability_creature_cursed_03", "index": 0}]}, {"id": 72056, "name": "Soul Rot", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [102246, 72057, 72052], "prev": [71987, 72041, 72046], "entries": [{"id": 91578, "definitionId": 96580, "maxRanks": 1, "type": "active", "name": "Soul Rot", "spellId": 386997, "icon": "inv_ability_warlock_soulrot", "index": 100}]}, {"id": 72031, "name": "Tormented Crescendo", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [72052, 72055, 72035], "prev": [72038, 72041], "entries": [{"id": 91551, "definitionId": 96553, "maxRanks": 1, "type": "passive", "name": "Tormented Crescendo", "spellId": 387075, "icon": "spell_warlock_soulburn", "index": 100}]}, {"id": 71921, "name": "Xavius' Gambit", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [71986, 72033], "prev": [72058], "entries": [{"id": 91429, "definitionId": 96431, "maxRanks": 1, "type": "passive", "name": "Xavius' Gambit", "spellId": 416615, "icon": "ability_xavius_blackeningsoul", "index": 0}]}, {"id": 72042, "name": "Focused Malignancy", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [72033], "prev": [72058], "entries": [{"id": 91563, "definitionId": 96565, "maxRanks": 1, "type": "passive", "name": "Focused Malignancy", "spellId": 399668, "icon": "spell_shadow_fingerofdeath", "index": 100}]}, {"id": 102246, "name": "Perpetual Unstability", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [72033], "prev": [72058, 72056], "entries": [{"id": 126302, "definitionId": 131128, "maxRanks": 1, "type": "passive", "name": "Perpetual Unstability", "spellId": 459376, "icon": "spell_shadow_unstableaffliction_3_purple", "index": 100}]}, {"id": 72057, "name": "Malign Omen", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102029], "prev": [72056], "entries": [{"id": 91579, "definitionId": 96581, "maxRanks": 1, "type": "passive", "name": "Malign Omen", "spellId": 458041, "icon": "spell_shadow_coneofsilence", "index": 100}]}, {"id": 72052, "name": "Relinquished", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247], "prev": [72056, 72031], "entries": [{"id": 91573, "definitionId": 96575, "maxRanks": 1, "type": "passive", "name": "Relinquished", "spellId": 453083, "icon": "inv_misc_gem_amethyst_02", "index": 100}]}, {"id": 72055, "name": "Withering Bolt", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247], "prev": [72031], "entries": [{"id": 91577, "definitionId": 96579, "maxRanks": 1, "type": "passive", "name": "Withering Bolt", "spellId": 386976, "icon": "spell_shadow_shadowbolt", "index": 100}]}, {"id": 72035, "name": "Improved Malefic Rapture", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247, 102030], "prev": [72031], "entries": [{"id": 91555, "definitionId": 96557, "maxRanks": 1, "type": "passive", "name": "Improved Malefic Rapture", "spellId": 454378, "icon": "ability_warlock_everlastingaffliction", "index": 100}]}, {"id": 71986, "name": "Oblivion", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71921], "entries": [{"id": 91503, "definitionId": 96505, "maxRanks": 1, "type": "active", "name": "Oblivion", "spellId": 417537, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 72033, "name": "Death's Embrace", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102246, 72042, 71921], "entries": [{"id": 91553, "definitionId": 96555, "maxRanks": 1, "type": "passive", "name": "Death's Embrace", "spellId": 453189, "icon": "spell_shadow_deathsembrace", "index": 100}]}, {"id": 102029, "name": "Dark Harvest", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72057], "entries": [{"id": 126062, "definitionId": 130894, "maxRanks": 1, "type": "passive", "name": "Dark Harvest", "spellId": 387016, "icon": "ability_creature_disease_02", "index": 100}]}, {"id": 102247, "name": "Ravenous Afflictions", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72052, 72035, 72055], "entries": [{"id": 126303, "definitionId": 131129, "maxRanks": 1, "type": "passive", "name": "Ravenous Afflictions", "spellId": 459440, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 102030, "name": "Malefic Touch", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72035], "entries": [{"id": 126063, "definitionId": 130895, "maxRanks": 1, "type": "passive", "name": "Malefic Touch", "spellId": 458029, "icon": "spell_shadow_manaburn", "index": 100}]}], "heroNodes": [{"id": 94840, "name": "Wither", "type": "single", "posX": 15600, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 58, "next": [94853, 94837, 94845], "prev": [], "entries": [{"id": 117437, "definitionId": 122449, "maxRanks": 1, "type": "active", "name": "Wither", "spellId": 445465, "visibleSpellId": 445468, "icon": "inv_ability_hellcallerwarlock_wither", "index": 100}], "freeNode": true}, {"id": 94853, "name": "Xalan's Ferocity", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94822], "prev": [94840], "entries": [{"id": 117450, "definitionId": 122462, "maxRanks": 1, "type": "passive", "name": "Xalan's Ferocity", "spellId": 440044, "icon": "spell_fire_felfire", "index": 100}]}, {"id": 94837, "name": "Blackened Soul", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94854], "prev": [94840], "entries": [{"id": 117434, "definitionId": 122446, "maxRanks": 1, "type": "passive", "name": "Blackened Soul", "spellId": 440043, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 94845, "name": "Xalan's Cruelty", "type": "single", "posX": 16200, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94835], "prev": [94840], "entries": [{"id": 117442, "definitionId": 122454, "maxRanks": 1, "type": "passive", "name": "Xalan's Cruelty", "spellId": 440040, "icon": "spell_shadow_demonicempathy", "index": 100}]}, {"id": 94851, "name": "Demonic Soul", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 57, "next": [94825, 94847, 94832], "prev": [], "entries": [{"id": 117448, "definitionId": 122460, "maxRanks": 1, "type": "passive", "name": "Demonic Soul", "spellId": 449614, "icon": "inv_ability_soulharvesterwarlock_demonicsoul", "index": 100}], "freeNode": true}, {"id": 94822, "name": "Curse of the Satyr / Aura of Enfeeblement", "type": "choice", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94834], "prev": [94853], "entries": [{"id": 117419, "definitionId": 122431, "maxRanks": 1, "type": "passive", "name": "Curse of the Satyr", "spellId": 440057, "icon": "inv_fabric_felrag", "index": 100}, {"id": 123309, "definitionId": 128179, "maxRanks": 1, "type": "passive", "name": "Aura of Enfeeblement", "spellId": 440059, "icon": "warlock_curse_weakness_aura", "index": 200}]}, {"id": 94854, "name": "Hatefury Rituals / Bleakheart Tactics", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94829], "prev": [94837], "entries": [{"id": 117451, "definitionId": 122463, "maxRanks": 1, "type": "passive", "name": "Hatefury Rituals", "spellId": 440048, "icon": "70_inscription_glyph_demonhunter_minor", "index": 100}, {"id": 123310, "definitionId": 128180, "maxRanks": 1, "type": "passive", "name": "Bleakheart Tactics", "spellId": 440051, "icon": "spell_shadow_mindshear", "index": 200}]}, {"id": 94835, "name": "Zevrim's Resilience / Illhoof's Design", "type": "choice", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94844], "prev": [94845], "entries": [{"id": 117432, "definitionId": 122444, "maxRanks": 1, "type": "passive", "name": "Zevrim's Resilience", "spellId": 440065, "icon": "ability_warrior_intensifyrage", "index": 100}, {"id": 123308, "definitionId": 128178, "maxRanks": 1, "type": "passive", "name": "Illhoof's Design", "spellId": 440070, "icon": "sha_spell_fire_felfireward_nightmare", "index": 200}]}, {"id": 94825, "name": "Necrolyte Teachings", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94850], "prev": [94851], "entries": [{"id": 117422, "definitionId": 122434, "maxRanks": 1, "type": "passive", "name": "Necrolyte Teachings", "spellId": 449620, "icon": "spell_necro_deathall", "index": 100}]}, {"id": 94847, "name": "Soul Anathema", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94823], "prev": [94851], "entries": [{"id": 117444, "definitionId": 122456, "maxRanks": 1, "type": "passive", "name": "Soul Anathema", "spellId": 449624, "icon": "spell_necro_inevitableend", "index": 100}]}, {"id": 94832, "name": "Demoniac's Fervor", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94824], "prev": [94851], "entries": [{"id": 117429, "definitionId": 122441, "maxRanks": 1, "type": "passive", "name": "Demoniac's Fervor", "spellId": 449629, "icon": "inv_helm_mask_zulgurub_d_01", "index": 100}]}, {"id": 94834, "name": "Mark of Xavius", "type": "single", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94822], "entries": [{"id": 117431, "definitionId": 122443, "maxRanks": 1, "type": "passive", "name": "Mark of Xavius", "spellId": 440046, "icon": "warlock_curse_shadow_aura", "index": 100}]}, {"id": 94829, "name": "Seeds of Their Demise", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94854], "entries": [{"id": 117426, "definitionId": 122438, "maxRanks": 1, "type": "passive", "name": "Seeds of Their Demise", "spellId": 440055, "icon": "ability_warlock_moltencoregreen", "index": 100}]}, {"id": 94844, "name": "Mark of Peroth'arn", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94835], "entries": [{"id": 117441, "definitionId": 122453, "maxRanks": 1, "type": "passive", "name": "Mark of Peroth'arn", "spellId": 440045, "icon": "70_inscription_vantus_rune_tomb", "index": 100}]}, {"id": 94850, "name": "Gorebound Fortitude / Friends In Dark Places", "type": "choice", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94821], "prev": [94825], "entries": [{"id": 117447, "definitionId": 122459, "maxRanks": 1, "type": "passive", "name": "Gorebound Fortitude", "spellId": 449701, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 123840, "definitionId": 128678, "maxRanks": 1, "type": "passive", "name": "Friends In Dark Places", "spellId": 449703, "icon": "spell_shadow_deathpact", "index": 200}]}, {"id": 94823, "name": "Shared Fate / Feast of Souls", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94846], "prev": [94847], "entries": [{"id": 117420, "definitionId": 122432, "maxRanks": 1, "type": "passive", "name": "Shared Fate", "spellId": 449704, "icon": "ability_warlock_soullink", "index": 100}, {"id": 123839, "definitionId": 128677, "maxRanks": 1, "type": "passive", "name": "Feast of Souls", "spellId": 449706, "icon": "ability_warlock_improvedsoulleech", "index": 200}]}, {"id": 94824, "name": "Eternal Servitude / Gorefiend's Resolve", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94838], "prev": [94832], "entries": [{"id": 117421, "definitionId": 122433, "maxRanks": 1, "type": "passive", "name": "Eternal Servitude", "spellId": 449707, "icon": "ability_demonhunter_infernalchains", "index": 100}, {"id": 123838, "definitionId": 128676, "maxRanks": 1, "type": "passive", "name": "Gorefiend's Resolve", "spellId": 389623, "icon": "ability_rogue_masterofsubtlety", "index": 200}]}, {"id": 94842, "name": "Malevolence", "type": "single", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 58, "next": [], "prev": [94829, 94834, 94844], "entries": [{"id": 117439, "definitionId": 122451, "maxRanks": 1, "type": "active", "name": "Malevolence", "spellId": 430014, "visibleSpellId": 442726, "icon": "inv_ability_hellcallerwarlock_malevolence", "index": 100}]}, {"id": 94821, "name": "Wicked Reaping", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94850], "entries": [{"id": 117418, "definitionId": 122430, "maxRanks": 1, "type": "passive", "name": "Wicked Reaping", "spellId": 449631, "icon": "inv_staff_2h_artifactdeadwind_d_05", "index": 100}]}, {"id": 94846, "name": "Quietus", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94823], "entries": [{"id": 117443, "definitionId": 122455, "maxRanks": 1, "type": "passive", "name": "Quietus", "spellId": 449634, "icon": "spell_necro_conclave", "index": 100}]}, {"id": 94838, "name": "Sataiel's Volition", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "next": [94857], "prev": [94824], "entries": [{"id": 117435, "definitionId": 122447, "maxRanks": 1, "type": "passive", "name": "Sataiel's Volition", "spellId": 449637, "icon": "spell_necro_deathlyecho", "index": 100}]}, {"id": 94857, "name": "Shadow of Death", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 57, "requiresNode": 101905, "next": [], "prev": [94846, 94821, 94838], "entries": [{"id": 117454, "definitionId": 122466, "maxRanks": 1, "type": "passive", "name": "Shadow of Death", "spellId": 449638, "icon": "spell_arcane_prismaticcloak", "index": 100}]}], "subTreeNodes": [{"id": 99850, "name": "Hellcaller / Soul Harvester", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123387, "type": "subtree", "name": "Hellcaller", "traitSubTreeId": 58, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-hellcaller", "nodes": [94840, 94853, 94837, 94845, 94822, 94854, 94835, 94834, 94829, 94844, 94842]}, {"id": 123384, "type": "subtree", "name": "Soul Harvester", "traitSubTreeId": 57, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-soulharvester", "nodes": [94851, 94825, 94847, 94832, 94850, 94823, 94824, 94821, 94846, 94838, 94857]}]}], "fullNodeOrder": [71915, 71916, 71917, 71918, 71921, 71922, 71923, 71924, 71925, 71926, 71927, 71928, 71930, 71931, 71932, 71933, 71934, 71935, 71936, 71937, 71938, 71939, 71940, 71941, 71942, 71944, 71946, 71947, 71948, 71949, 71950, 71951, 71952, 71953, 71954, 71955, 71956, 71957, 71960, 71961, 71962, 71964, 71965, 71966, 71967, 71968, 71969, 71970, 71971, 71972, 71973, 71974, 71975, 71978, 71979, 71980, 71982, 71983, 71984, 71985, 71986, 71987, 72031, 72032, 72033, 72034, 72035, 72037, 72038, 72039, 72040, 72041, 72042, 72043, 72045, 72046, 72047, 72048, 72049, 72050, 72051, 72052, 72053, 72054, 72055, 72056, 72057, 72058, 72059, 72060, 72061, 72062, 72063, 72064, 72065, 72066, 72067, 72068, 72069, 93178, 93179, 94821, 94822, 94823, 94824, 94825, 94826, 94829, 94830, 94831, 94832, 94833, 94834, 94835, 94836, 94837, 94838, 94840, 94842, 94843, 94844, 94845, 94846, 94847, 94848, 94849, 94850, 94851, 94852, 94853, 94854, 94855, 94856, 94857, 99848, 99849, 99850, 100940, 100941, 101884, 101885, 101886, 101887, 101888, 101889, 101890, 101891, 101892, 101893, 101894, 101895, 101896, 101897, 101898, 101899, 101900, 101901, 101902, 101903, 101904, 101905, 101906, 101907, 101908, 101909, 101910, 101911, 101912, 101913, 101914, 101915, 101916, 101917, 101918, 101919, 101920, 101921, 101922, 101923, 101924, 101925, 101926, 101992, 101993, 101994, 101995, 101996, 101997, 101998, 102002, 102003, 102029, 102030, 102031, 102032, 102033, 102246, 102247, 102427]}, {"traitTreeId": 720, "className": "Warlock", "classId": 9, "specName": "Demonology", "specId": 266, "classNodes": [{"id": 71931, "name": "Fel Domination", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71932, 71952], "prev": [], "entries": [{"id": 91439, "definitionId": 96441, "maxRanks": 1, "type": "active", "name": "Fel Domination", "spellId": 333889, "icon": "spell_shadow_felmending", "index": 100}]}, {"id": 71933, "name": "Soul Leech", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71952, 71950], "prev": [], "entries": [{"id": 91441, "definitionId": 96443, "maxRanks": 1, "type": "passive", "name": "Soul Leech", "spellId": 108370, "icon": "warlock_siphonlife", "index": 100}], "freeNode": true}, {"id": 71949, "name": "Burning Rush", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71950, 71948], "prev": [], "entries": [{"id": 91460, "definitionId": 96462, "maxRanks": 1, "type": "active", "name": "Burning Rush", "spellId": 111400, "icon": "ability_deathwing_sealarmorbreachtga", "index": 100}]}, {"id": 71932, "name": "Fel Pact", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [71951], "prev": [71931], "entries": [{"id": 91440, "definitionId": 96442, "maxRanks": 1, "type": "passive", "name": "Fel Pact", "spellId": 386113, "icon": "spell_shadow_impphaseshift", "index": 100}]}, {"id": 71952, "name": "Demon Skin", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 2, "next": [71951, 100941], "prev": [71933, 71931], "entries": [{"id": 91463, "definitionId": 96465, "maxRanks": 2, "type": "passive", "name": "Demon Skin", "spellId": 219272, "icon": "spell_shadow_ragingscream", "index": 100}]}, {"id": 71950, "name": "Fel Armor", "type": "single", "posX": 4800, "posY": 1800, "maxRanks": 2, "next": [100941, 71947], "prev": [71933, 71949], "entries": [{"id": 91461, "definitionId": 96463, "maxRanks": 2, "type": "passive", "name": "Fel Armor", "spellId": 386124, "icon": "spell_shadow_felarmour", "index": 0}]}, {"id": 71948, "name": "Fiendish Stride", "type": "single", "posX": 6000, "posY": 1800, "maxRanks": 1, "next": [71947], "prev": [71949], "entries": [{"id": 91459, "definitionId": 96461, "maxRanks": 1, "type": "passive", "name": "Fiendish Stride", "spellId": 386110, "icon": "inv_misc_moosehoof_fel", "index": 100}]}, {"id": 71951, "name": "Curses of Enfeeblement", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [71934, 71930, 71928], "prev": [71932, 71952], "entries": [{"id": 91462, "definitionId": 96464, "maxRanks": 1, "type": "active", "name": "Curses of Enfeeblement", "spellId": 386105, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 100941, "name": "Demonic Circle", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [71928, 71954, 71946], "prev": [71950, 71952], "entries": [{"id": 124694, "definitionId": 129532, "maxRanks": 1, "type": "active", "name": "Demonic Circle", "spellId": 268358, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 71947, "name": "Howl of Terror / Mortal Coil", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [71946, 71922, 71944], "prev": [71950, 71948], "entries": [{"id": 91458, "definitionId": 96460, "maxRanks": 1, "type": "active", "name": "Howl of Terror", "spellId": 5484, "icon": "ability_warlock_howlofterror", "index": 100}, {"id": 91457, "definitionId": 96459, "maxRanks": 1, "type": "active", "name": "Mortal Coil", "spellId": 6789, "icon": "ability_warlock_mortalcoil", "index": 200}]}, {"id": 71934, "name": "Amplify Curse", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [71935, 71953], "prev": [71951], "entries": [{"id": 91442, "definitionId": 96444, "maxRanks": 1, "type": "active", "name": "Amplify Curse", "spellId": 328774, "icon": "spell_shadow_contagion", "index": 100}]}, {"id": 71930, "name": "Demonic Embrace", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [71953], "prev": [71951], "entries": [{"id": 91438, "definitionId": 96440, "maxRanks": 1, "type": "passive", "name": "Demonic Embrace", "spellId": 288843, "icon": "spell_shadow_metamorphosis", "index": 100}]}, {"id": 71928, "name": "Demonic Inspiration", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [71953, 71927, 71916], "prev": [71951, 100941], "entries": [{"id": 91436, "definitionId": 96438, "maxRanks": 1, "type": "passive", "name": "Demonic Inspiration", "spellId": 386858, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 71954, "name": "Abyss Walker", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [71916], "prev": [100941], "entries": [{"id": 91465, "definitionId": 96467, "maxRanks": 1, "type": "passive", "name": "Abyss Walker", "spellId": 389609, "icon": "achievement_explore_argus", "index": 100}]}, {"id": 71946, "name": "Wrathful Minion", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [71916, 71955, 71940], "prev": [71947, 100941], "entries": [{"id": 91456, "definitionId": 96458, "maxRanks": 1, "type": "passive", "name": "Wrathful Minion", "spellId": 386864, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 71922, "name": "Demonic Fortitude", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91430, "definitionId": 96432, "maxRanks": 1, "type": "passive", "name": "Demonic Fortitude", "spellId": 386617, "icon": "spell_warlock_summonimpoutland", "index": 100}]}, {"id": 71944, "name": "Banish", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91454, "definitionId": 96456, "maxRanks": 1, "type": "active", "name": "Banish", "spellId": 710, "icon": "spell_shadow_cripple", "index": 100}]}, {"id": 71935, "name": "Teachings of the Satyr", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936], "prev": [71934], "entries": [{"id": 91443, "definitionId": 96445, "maxRanks": 1, "type": "passive", "name": "Teachings of the Satyr", "spellId": 387972, "icon": "spell_shadow_carrionswarm", "index": 100}]}, {"id": 71953, "name": "Accrued Vitality", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71936], "prev": [71934, 71928, 71930], "entries": [{"id": 91464, "definitionId": 96466, "maxRanks": 2, "type": "passive", "name": "Accrued Vitality", "spellId": 386613, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 71927, "name": "Sweet Souls", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936, 71956], "prev": [71928], "entries": [{"id": 91435, "definitionId": 96437, "maxRanks": 1, "type": "passive", "name": "Sweet Souls", "spellId": 386620, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 71916, "name": "Nightmare / Horrify", "type": "choice", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71956], "prev": [71946, 71928, 71954], "entries": [{"id": 91422, "definitionId": 96424, "maxRanks": 1, "type": "passive", "name": "Nightmare", "spellId": 386648, "icon": "spell_shadow_possession", "index": 100}, {"id": 115459, "definitionId": 120471, "maxRanks": 1, "type": "passive", "name": "Horrify", "spellId": 56244, "icon": "spell_nzinsanity_bloodthirst", "index": 200}]}, {"id": 71955, "name": "Demonic Gateway", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71942, 71956], "prev": [71946], "entries": [{"id": 91466, "definitionId": 96468, "maxRanks": 1, "type": "active", "name": "Demonic Gateway", "spellId": 111771, "icon": "spell_warlock_demonicportal_green", "index": 100}]}, {"id": 71940, "name": "Lifeblood", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71942], "prev": [71922, 71944, 71946], "entries": [{"id": 91449, "definitionId": 96451, "maxRanks": 2, "type": "passive", "name": "Lifeblood", "spellId": 386646, "icon": "warlock__healthstone", "index": 100}]}, {"id": 71936, "name": "Dark Pact", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71937, 93178], "prev": [71927, 71935, 71953], "entries": [{"id": 91444, "definitionId": 96446, "maxRanks": 1, "type": "active", "name": "Dark Pact", "spellId": 108416, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 71956, "name": "Strength of Will / Dark Accord", "type": "choice", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93178, 93179], "prev": [71916, 71955, 71927], "entries": [{"id": 91468, "definitionId": 96470, "maxRanks": 1, "type": "passive", "name": "Strength of Will", "spellId": 317138, "icon": "spell_shadow_demonictactics", "index": 100}, {"id": 91467, "definitionId": 96469, "maxRanks": 1, "type": "passive", "name": "Dark Accord", "spellId": 386659, "icon": "ability_warlock_improveddemonictactics", "index": 200}]}, {"id": 71942, "name": "Shadowfury", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93179, 71941], "prev": [71955, 71940], "entries": [{"id": 91452, "definitionId": 96454, "maxRanks": 1, "type": "active", "name": "Shadowfury", "spellId": 30283, "icon": "ability_warlock_shadowfurytga", "index": 200}]}, {"id": 71937, "name": "Ichor of Devils / Frequent Donor", "type": "choice", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71918], "prev": [71936], "entries": [{"id": 91446, "definitionId": 96448, "maxRanks": 1, "type": "passive", "name": "Ichor of Devils", "spellId": 386664, "icon": "spell_yorsahj_bloodboil_greenoil", "index": 100}, {"id": 91445, "definitionId": 96447, "maxRanks": 1, "type": "passive", "name": "Frequent Donor", "spellId": 386686, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 93178, "name": "Socrethar's Guile", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71918, 71925], "prev": [71936, 71956], "entries": [{"id": 115461, "definitionId": 120473, "maxRanks": 2, "type": "passive", "name": "Socrethar's Guile", "spellId": 405936, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93179, "name": "Sargerei Technique", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71925, 71938], "prev": [71956, 71942], "entries": [{"id": 115462, "definitionId": 120474, "maxRanks": 2, "type": "passive", "name": "Sargerei Technique", "spellId": 405955, "icon": "70_inscription_glyph_demonhunter_major", "index": 100}]}, {"id": 71941, "name": "Darkfury / Shadowflame", "type": "choice", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71938], "prev": [71942], "entries": [{"id": 91451, "definitionId": 96453, "maxRanks": 1, "type": "passive", "name": "Darkfury", "spellId": 264874, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 91450, "definitionId": 96452, "maxRanks": 1, "type": "active", "name": "Shadowflame", "spellId": 384069, "icon": "ability_warlock_shadowflame", "index": 200}]}, {"id": 71918, "name": "Swift Artifice", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71915, 71924], "prev": [71937, 93178], "entries": [{"id": 91425, "definitionId": 96427, "maxRanks": 1, "type": "passive", "name": "Swift Artifice", "spellId": 452902, "icon": "spell_shadow_destructivesoul", "index": 100}]}, {"id": 71925, "name": "Demonic Tactics", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71924, 71923], "prev": [93178, 93179], "entries": [{"id": 91433, "definitionId": 96435, "maxRanks": 1, "type": "passive", "name": "Demonic Tactics", "spellId": 452894, "icon": "inv_helm_laughingskull_01", "index": 100}]}, {"id": 71938, "name": "Teachings of the Black Harvest", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71923, 71917], "prev": [71941, 93179], "entries": [{"id": 91447, "definitionId": 96449, "maxRanks": 1, "type": "passive", "name": "Teachings of the Black Harvest", "spellId": 385881, "icon": "inv_misc_codexofxerrath_nochains", "index": 100}]}, {"id": 71915, "name": "Resolute Barrier", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926], "prev": [71918], "entries": [{"id": 91421, "definitionId": 96423, "maxRanks": 2, "type": "passive", "name": "Resolute Barrier", "spellId": 389359, "icon": "inv_shield_1h_demonweapon_c_01", "index": 100}]}, {"id": 71924, "name": "Fel Synergy", "type": "single", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926, 71939], "prev": [71918, 71925], "entries": [{"id": 91432, "definitionId": 96434, "maxRanks": 2, "type": "passive", "name": "Fel Synergy", "spellId": 389367, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 71923, "name": "Soul Link", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71939, 71957], "prev": [71925, 71938], "entries": [{"id": 91431, "definitionId": 96433, "maxRanks": 2, "type": "passive", "name": "Soul Link", "spellId": 108415, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 71917, "name": "Demonic Resilience", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71957], "prev": [71938], "entries": [{"id": 91424, "definitionId": 96426, "maxRanks": 2, "type": "passive", "name": "Demonic Resilience", "spellId": 389590, "icon": "ability_warlock_avoidance", "index": 100}]}, {"id": 71926, "name": "Pact of Gluttony", "type": "single", "posX": 3000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71915], "entries": [{"id": 91434, "definitionId": 96436, "maxRanks": 1, "type": "passive", "name": "Pact of Gluttony", "spellId": 386689, "icon": "warlock__bloodstone", "index": 100}]}, {"id": 71939, "name": "Soul Conduit", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71923], "entries": [{"id": 91427, "definitionId": 96450, "maxRanks": 1, "type": "passive", "name": "Soul Conduit", "spellId": 215941, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 71957, "name": "Soulburn", "type": "single", "posX": 5400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71917, 71923], "entries": [{"id": 91469, "definitionId": 96471, "maxRanks": 1, "type": "active", "name": "Soulburn", "spellId": 385899, "icon": "spell_warlock_soulburn", "index": 100}]}], "specNodes": [{"id": 101891, "name": "Demoniac", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [101893, 101894], "prev": [], "entries": [{"id": 125834, "definitionId": 130665, "maxRanks": 1, "type": "active", "name": "Demoniac", "spellId": 426115, "icon": "inv_demonbolt", "index": 100}]}, {"id": 101893, "name": "Implosion", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [101922, 101901], "prev": [101891], "entries": [{"id": 125836, "definitionId": 130667, "maxRanks": 1, "type": "active", "name": "Implosion", "spellId": 196277, "icon": "inv_implosion", "index": 100}]}, {"id": 101894, "name": "Call Dreadstalkers", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [101888, 101887], "prev": [101891], "entries": [{"id": 125837, "definitionId": 130668, "maxRanks": 1, "type": "active", "name": "Call Dreadstalkers", "spellId": 104316, "icon": "spell_warlock_calldreadstalkers", "index": 100}]}, {"id": 101922, "name": "Imp Gang Boss", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [101925], "prev": [101893], "entries": [{"id": 125868, "definitionId": 130699, "maxRanks": 1, "type": "passive", "name": "Imp Gang Boss", "spellId": 387445, "icon": "ability_warlock_empoweredimp", "index": 100}]}, {"id": 101901, "name": "Spiteful Reconstitution", "type": "single", "posX": 12000, "posY": 2400, "maxRanks": 1, "next": [101925, 101899], "prev": [101893], "entries": [{"id": 125846, "definitionId": 130677, "maxRanks": 1, "type": "passive", "name": "Spiteful Reconstitution", "spellId": 428394, "icon": "spell_shadow_impphaseshift", "index": 100}]}, {"id": 101888, "name": "Dreadlash", "type": "single", "posX": 13200, "posY": 2400, "maxRanks": 1, "next": [101899, 101890], "prev": [101894], "entries": [{"id": 125830, "definitionId": 130661, "maxRanks": 1, "type": "passive", "name": "Dreadlash", "spellId": 264078, "icon": "spell_shadow_summonvoidwalker", "index": 100}]}, {"id": 101887, "name": "Carnivorous Stalkers", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [101890], "prev": [101894], "entries": [{"id": 125829, "definitionId": 130660, "maxRanks": 1, "type": "passive", "name": "Carnivorous Stalkers", "spellId": 386194, "icon": "warlock_pvp_callfelhunter", "index": 100}]}, {"id": 101925, "name": "Inner Demons", "type": "single", "posX": 11400, "posY": 3000, "maxRanks": 1, "next": [101886, 101914, 101923], "prev": [101922, 101901], "entries": [{"id": 125871, "definitionId": 130702, "maxRanks": 1, "type": "passive", "name": "Inner Demons", "spellId": 267216, "icon": "ability_warlock_eradication", "index": 100}]}, {"id": 101899, "name": "Soul Strike", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [101923, 101897, 101884], "prev": [101901, 101888], "entries": [{"id": 125844, "definitionId": 130675, "maxRanks": 1, "type": "passive", "name": "Soul Strike", "spellId": 428344, "icon": "inv_polearm_2h_fellord_04", "index": 100}]}, {"id": 101890, "name": "Bilescourge Bombers / Demonic Strength", "type": "choice", "posX": 13800, "posY": 3000, "maxRanks": 1, "next": [101884, 101921, 101926], "prev": [101888, 101887], "entries": [{"id": 125833, "definitionId": 130664, "maxRanks": 1, "type": "active", "name": "Bilescourge Bombers", "spellId": 267211, "icon": "ability_hunter_pet_bat", "index": 100}, {"id": 125832, "definitionId": 130663, "maxRanks": 1, "type": "active", "name": "Demonic Strength", "spellId": 267171, "icon": "ability_warlock_demonicempowerment", "index": 200}]}, {"id": 101886, "name": "Sacrificed Souls", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101916], "prev": [101925], "entries": [{"id": 125828, "definitionId": 130659, "maxRanks": 1, "type": "passive", "name": "Sacrificed Souls", "spellId": 267214, "icon": "ability_creature_disease_05", "index": 100}]}, {"id": 101914, "name": "Rune of Shadows", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101916], "prev": [101925], "entries": [{"id": 125860, "definitionId": 130691, "maxRanks": 1, "type": "passive", "name": "Rune of Shadows", "spellId": 453744, "icon": "spell_shadow_rune", "index": 100}]}, {"id": 101923, "name": "Imp-erator", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101916, 101905], "prev": [101925, 101899], "entries": [{"id": 125869, "definitionId": 130700, "maxRanks": 1, "type": "passive", "name": "Imp-erator", "spellId": 416230, "icon": "spell_warlock_summonimpoutland", "index": 100}]}, {"id": 101897, "name": "Fel Invocation", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101905], "prev": [101899], "entries": [{"id": 125842, "definitionId": 130673, "maxRanks": 1, "type": "passive", "name": "Fel Invocation", "spellId": 428351, "icon": "ability_bossfelorcs_necromancer_orange", "index": 100}]}, {"id": 101884, "name": "Annihilan Training", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101905, 101907], "prev": [101890, 101899], "entries": [{"id": 125826, "definitionId": 130657, "maxRanks": 1, "type": "passive", "name": "Annihilan Training", "spellId": 386174, "icon": "ability_bossmannoroth_glaivethrust", "index": 100}]}, {"id": 101921, "name": "Shadow Invocation", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101907], "prev": [101890], "entries": [{"id": 125867, "definitionId": 130698, "maxRanks": 1, "type": "passive", "name": "Shadow Invocation", "spellId": 422054, "icon": "ability_bossfelorcs_necromancer_purple", "index": 100}]}, {"id": 101926, "name": "Wicked Maw", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101907], "prev": [101890], "entries": [{"id": 125872, "definitionId": 130703, "maxRanks": 1, "type": "passive", "name": "Wicked Maw", "spellId": 267170, "icon": "ability_creature_poison_01_purple", "index": 100}]}, {"id": 101916, "name": "Power Siphon", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101902, 101904, 101915], "prev": [101914, 101923, 101886], "entries": [{"id": 125862, "definitionId": 130693, "maxRanks": 1, "type": "active", "name": "Power Siphon", "spellId": 264130, "icon": "ability_warlock_backdraft", "index": 100}]}, {"id": 101905, "name": "Summon Demonic Tyrant", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101915, 101908, 101903], "prev": [101884, 101923, 101897], "entries": [{"id": 125850, "definitionId": 130681, "maxRanks": 1, "type": "active", "name": "Summon Demonic Tyrant", "spellId": 265187, "icon": "inv_summondemonictyrant", "index": 100}]}, {"id": 101907, "name": "Grimoire: Felguard", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101903, 101912, 101911], "prev": [101884, 101921, 101926], "entries": [{"id": 125852, "definitionId": 130683, "maxRanks": 1, "type": "active", "name": "Grimoire: Felguard", "spellId": 111898, "icon": "spell_shadow_demonicpact", "index": 100}]}, {"id": 101902, "name": "The Expendables", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101919], "prev": [101916], "entries": [{"id": 125847, "definitionId": 130678, "maxRanks": 1, "type": "passive", "name": "The Expendables", "spellId": 387600, "icon": "ability_warlock_impoweredimp", "index": 100}]}, {"id": 101904, "name": "Blood Invocation", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101919], "prev": [101916], "entries": [{"id": 125849, "definitionId": 130680, "maxRanks": 1, "type": "passive", "name": "Blood Invocation", "spellId": 455576, "icon": "ability_bossfelorcs_necromancer_red", "index": 100}]}, {"id": 101915, "name": "Umbral Blaze", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101919, 101924, 101900], "prev": [101916, 101905], "entries": [{"id": 125861, "definitionId": 130692, "maxRanks": 1, "type": "passive", "name": "Umbral Blaze", "spellId": 405798, "icon": "ability_warlock_everlastingaffliction", "index": 100}]}, {"id": 101908, "name": "Reign of Tyranny", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101900], "prev": [101905], "entries": [{"id": 125854, "definitionId": 130685, "maxRanks": 1, "type": "passive", "name": "Reign of Tyranny", "spellId": 427684, "icon": "ability_bossdarkvindicator_auraofoppression", "index": 100}]}, {"id": 101903, "name": "Demonic Calling", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101900, 101889, 101913], "prev": [101907, 101905], "entries": [{"id": 125848, "definitionId": 130679, "maxRanks": 1, "type": "passive", "name": "Demonic Calling", "spellId": 205145, "icon": "ability_warlock_impoweredimp", "index": 100}]}, {"id": 101912, "name": "Fiendish Oblation", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101913], "prev": [101907], "entries": [{"id": 125858, "definitionId": 130689, "maxRanks": 1, "type": "passive", "name": "Fiendish Oblation", "spellId": 455569, "icon": "inv_ember_fel", "index": 100}]}, {"id": 101911, "name": "Fel Sunder", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [101913], "prev": [101907], "entries": [{"id": 125857, "definitionId": 130688, "maxRanks": 1, "type": "passive", "name": "Fel Sunder", "spellId": 387399, "icon": "ability_creature_felsunder", "index": 100}]}, {"id": 101919, "name": "Doom", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [101906, 101885], "prev": [101904, 101915, 101902], "entries": [{"id": 125865, "definitionId": 130696, "maxRanks": 1, "type": "passive", "name": "Doom", "spellId": 460551, "icon": "spell_shadow_auraofdarkness", "index": 100}]}, {"id": 101924, "name": "Pact of the Imp Mother", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101915], "entries": [{"id": 125870, "definitionId": 130701, "maxRanks": 1, "type": "passive", "name": "Pact of the Imp Mother", "spellId": 387541, "icon": "inv_archaeology_70_impgenerator", "index": 100}]}, {"id": 101900, "name": "Summon Vilefiend", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [101918, 101898], "prev": [101915, 101903, 101908], "entries": [{"id": 125845, "definitionId": 130676, "maxRanks": 1, "type": "active", "name": "Summon Vilefiend", "spellId": 264119, "icon": "inv_argusfelstalkermount", "index": 100}]}, {"id": 101889, "name": "Dread Calling", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101903], "entries": [{"id": 125831, "definitionId": 130662, "maxRanks": 1, "type": "passive", "name": "Dread Calling", "spellId": 387391, "icon": "achievement_boss_argus_hound", "index": 100}]}, {"id": 101913, "name": "Antoran Armaments", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [101892, 101920], "prev": [101911, 101912, 101903], "entries": [{"id": 125859, "definitionId": 130690, "maxRanks": 1, "type": "passive", "name": "Antoran Armaments", "spellId": 387494, "icon": "inv_axe_1h_felfireraid_d_01", "index": 100}]}, {"id": 101906, "name": "Doom Eternal", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101917], "prev": [101919], "entries": [{"id": 125851, "definitionId": 130682, "maxRanks": 1, "type": "passive", "name": "Doom Eternal", "spellId": 455585, "icon": "inv_offhand_1h_artifactdoomhammer_d_06", "index": 100}]}, {"id": 101885, "name": "Impending Doom", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101917], "prev": [101919], "entries": [{"id": 125827, "definitionId": 130658, "maxRanks": 1, "type": "passive", "name": "Impending Doom", "spellId": 455587, "icon": "spell_shadow_unstableafllictions", "index": 100}]}, {"id": 101918, "name": "Foul Mouth", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101910, 101895], "prev": [101900], "entries": [{"id": 125864, "definitionId": 130695, "maxRanks": 1, "type": "passive", "name": "Foul Mouth", "spellId": 455502, "icon": "spell_deathvortex", "index": 100}]}, {"id": 101898, "name": "The Houndmaster's Gambit", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101895, 101909], "prev": [101900], "entries": [{"id": 125843, "definitionId": 130674, "maxRanks": 1, "type": "passive", "name": "The Houndmaster's Gambit", "spellId": 455572, "icon": "achievement_boss_hellfire_fellord", "index": 100}]}, {"id": 101892, "name": "Improved Demonic Tactics", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101896], "prev": [101913], "entries": [{"id": 125835, "definitionId": 130666, "maxRanks": 1, "type": "passive", "name": "Improved Demonic Tactics", "spellId": 453800, "icon": "ability_warlock_ancientgrimoire", "index": 0}]}, {"id": 101920, "name": "Demonic Brutality", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101896], "prev": [101913], "entries": [{"id": 125866, "definitionId": 130697, "maxRanks": 1, "type": "passive", "name": "Demonic Brutality", "spellId": 453908, "icon": "ability_demonhunter_bladedance", "index": 0}]}, {"id": 101917, "name": "Pact of the Ered'ruin", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101906, 101885], "entries": [{"id": 125863, "definitionId": 130694, "maxRanks": 1, "type": "passive", "name": "Pact of the Ered'ruin", "spellId": 453568, "icon": "warlock_summon_doomguard", "index": 100}]}, {"id": 101910, "name": "Shadowtouched", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101918], "entries": [{"id": 125856, "definitionId": 130687, "maxRanks": 1, "type": "passive", "name": "Shadowtouched", "spellId": 453619, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 101895, "name": "Mark of Shatug / Mark of F'harg", "type": "choice", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101898, 101918], "entries": [{"id": 125839, "definitionId": 130670, "maxRanks": 1, "type": "passive", "name": "Mark of Shatug", "spellId": 455449, "icon": "inv_felhound3_shadow_mount", "index": 100}, {"id": 125838, "definitionId": 130669, "maxRanks": 1, "type": "passive", "name": "Mark of F'harg", "spellId": 455450, "icon": "inv_felhound3_shadow_fire", "index": 200}]}, {"id": 101909, "name": "Flametouched", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101898], "entries": [{"id": 125855, "definitionId": 130686, "maxRanks": 1, "type": "passive", "name": "Flametouched", "spellId": 453699, "icon": "spell_shaman_firenova", "index": 100}]}, {"id": 101896, "name": "Immutable Hatred / Guillotine", "type": "choice", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101920, 101892], "entries": [{"id": 125841, "definitionId": 130672, "maxRanks": 1, "type": "passive", "name": "Immutable Hatred", "spellId": 405670, "icon": "ability_creature_felfrenzy", "index": 100}, {"id": 125840, "definitionId": 130671, "maxRanks": 1, "type": "active", "name": "Guillotine", "spellId": 386833, "icon": "inv_axe_2h_felfireraid_d_01", "index": 200}]}], "heroNodes": [{"id": 94851, "name": "Demonic Soul", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 57, "next": [94825, 94847, 94832], "prev": [], "entries": [{"id": 117448, "definitionId": 122460, "maxRanks": 1, "type": "passive", "name": "Demonic Soul", "spellId": 449614, "icon": "inv_ability_soulharvesterwarlock_demonicsoul", "index": 100}], "freeNode": true}, {"id": 94825, "name": "Necrolyte Teachings", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94850], "prev": [94851], "entries": [{"id": 117422, "definitionId": 122434, "maxRanks": 1, "type": "passive", "name": "Necrolyte Teachings", "spellId": 449620, "icon": "spell_necro_deathall", "index": 100}]}, {"id": 94847, "name": "Soul Anathema", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94823], "prev": [94851], "entries": [{"id": 117444, "definitionId": 122456, "maxRanks": 1, "type": "passive", "name": "Soul Anathema", "spellId": 449624, "icon": "spell_necro_inevitableend", "index": 100}]}, {"id": 94832, "name": "Demoniac's Fervor", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94824], "prev": [94851], "entries": [{"id": 117429, "definitionId": 122441, "maxRanks": 1, "type": "passive", "name": "Demoniac's Fervor", "spellId": 449629, "icon": "inv_helm_mask_zulgurub_d_01", "index": 100}]}, {"id": 94850, "name": "Gorebound Fortitude / Friends In Dark Places", "type": "choice", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94821], "prev": [94825], "entries": [{"id": 117447, "definitionId": 122459, "maxRanks": 1, "type": "passive", "name": "Gorebound Fortitude", "spellId": 449701, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 123840, "definitionId": 128678, "maxRanks": 1, "type": "passive", "name": "Friends In Dark Places", "spellId": 449703, "icon": "spell_shadow_deathpact", "index": 200}]}, {"id": 94823, "name": "Shared Fate / Feast of Souls", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94846], "prev": [94847], "entries": [{"id": 117420, "definitionId": 122432, "maxRanks": 1, "type": "passive", "name": "Shared Fate", "spellId": 449704, "icon": "ability_warlock_soullink", "index": 100}, {"id": 123839, "definitionId": 128677, "maxRanks": 1, "type": "passive", "name": "Feast of Souls", "spellId": 449706, "icon": "ability_warlock_improvedsoulleech", "index": 200}]}, {"id": 94824, "name": "Eternal Servitude / Gorefiend's Resolve", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94838], "prev": [94832], "entries": [{"id": 117421, "definitionId": 122433, "maxRanks": 1, "type": "passive", "name": "Eternal Servitude", "spellId": 449707, "icon": "ability_demonhunter_infernalchains", "index": 100}, {"id": 123838, "definitionId": 128676, "maxRanks": 1, "type": "passive", "name": "Gorefiend's Resolve", "spellId": 389623, "icon": "ability_rogue_masterofsubtlety", "index": 200}]}, {"id": 94821, "name": "Wicked Reaping", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94850], "entries": [{"id": 117418, "definitionId": 122430, "maxRanks": 1, "type": "passive", "name": "Wicked Reaping", "spellId": 449631, "icon": "inv_staff_2h_artifactdeadwind_d_05", "index": 100}]}, {"id": 94846, "name": "Quietus", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94823], "entries": [{"id": 117443, "definitionId": 122455, "maxRanks": 1, "type": "passive", "name": "Quietus", "spellId": 449634, "icon": "spell_necro_conclave", "index": 100}]}, {"id": 94838, "name": "Sataiel's Volition", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "next": [94857], "prev": [94824], "entries": [{"id": 117435, "definitionId": 122447, "maxRanks": 1, "type": "passive", "name": "Sataiel's Volition", "spellId": 449637, "icon": "spell_necro_deathlyecho", "index": 100}]}, {"id": 94857, "name": "Shadow of Death", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 57, "requiresNode": 101905, "next": [], "prev": [94846, 94821, 94838], "entries": [{"id": 117454, "definitionId": 122466, "maxRanks": 1, "type": "passive", "name": "Shadow of Death", "spellId": 449638, "icon": "spell_arcane_prismaticcloak", "index": 100}]}, {"id": 94855, "name": "Diabolic Ritual", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 59, "next": [94849, 94856, 94826], "prev": [], "entries": [{"id": 117452, "definitionId": 122464, "maxRanks": 1, "type": "passive", "name": "Diabolic Ritual", "spellId": 428514, "icon": "ability_bossfelorcs_necromancer_purple", "index": 100}], "freeNode": true}, {"id": 94849, "name": "Cloven Souls", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94836], "prev": [94855], "entries": [{"id": 117446, "definitionId": 122458, "maxRanks": 1, "type": "passive", "name": "Cloven Souls", "spellId": 428517, "icon": "ability_creature_felfrenzy", "index": 100}]}, {"id": 94856, "name": "Touch of Rancora", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94848], "prev": [94855], "entries": [{"id": 117453, "definitionId": 122465, "maxRanks": 1, "type": "passive", "name": "Touch of Rancora", "spellId": 429893, "icon": "ability_bossfellord_felspike", "index": 100}]}, {"id": 94826, "name": "Secrets of the Coven", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94852], "prev": [94855], "entries": [{"id": 117423, "definitionId": 122435, "maxRanks": 1, "type": "passive", "name": "Secrets of the Coven", "spellId": 428518, "icon": "achievement_boss_argus_shivan", "index": 100}]}, {"id": 94836, "name": "Soul-Etched Circles / Annihilan's Bellow", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "next": [94833], "prev": [94849], "entries": [{"id": 117433, "definitionId": 122445, "maxRanks": 1, "type": "passive", "name": "Soul-Etched Circles", "spellId": 428911, "icon": "spell_shadow_demoniccircleteleport", "index": 100}, {"id": 118837, "definitionId": 123737, "maxRanks": 1, "type": "passive", "name": "Annihilan's Bellow", "spellId": 429072, "icon": "ability_physical_taunt", "index": 200}]}, {"id": 94848, "name": "Cruelty of Kerxan / Infernal Machine", "type": "choice", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "requiresNode": 101905, "next": [94831], "prev": [94856], "entries": [{"id": 117445, "definitionId": 122457, "maxRanks": 1, "type": "passive", "name": "Cruelty of Kerxan", "spellId": 429902, "icon": "creatureportrait_fomorhand", "index": 100}, {"id": 118838, "definitionId": 123738, "maxRanks": 1, "type": "passive", "name": "Infernal Machine", "spellId": 429917, "icon": "inv_misc_supersoulash", "index": 200}]}, {"id": 94852, "name": "Infernal Vitality / Infernal Bulwark", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "next": [94843], "prev": [94826], "entries": [{"id": 117449, "definitionId": 122461, "maxRanks": 1, "type": "passive", "name": "Infernal Vitality", "spellId": 429115, "icon": "inv_fabric_felcloth_ebon", "index": 100}, {"id": 118839, "definitionId": 123739, "maxRanks": 1, "type": "passive", "name": "Infernal Bulwark", "spellId": 429130, "icon": "spell_fire_felfireward", "index": 200}]}, {"id": 94833, "name": "Flames of Xoroth", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "next": [94830], "prev": [94836], "entries": [{"id": 117430, "definitionId": 122442, "maxRanks": 1, "type": "passive", "name": "Flames of Xoroth", "spellId": 429657, "icon": "ability_warlock_burningembers", "index": 100}]}, {"id": 94831, "name": "Abyssal Dominion", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "requiresNode": 71985, "next": [94830], "prev": [94848], "entries": [{"id": 117428, "definitionId": 122440, "maxRanks": 1, "type": "passive", "name": "Abyssal Dominion", "spellId": 429581, "icon": "70_inscription_vantus_rune_tomb", "index": 100}]}, {"id": 94843, "name": "Gloom of Nathreza", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "next": [94830], "prev": [94852], "entries": [{"id": 117440, "definitionId": 122452, "maxRanks": 1, "type": "passive", "name": "Gloom of Nathreza", "spellId": 429899, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 94830, "name": "Ruination", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 59, "next": [], "prev": [94831, 94833, 94843], "entries": [{"id": 117427, "definitionId": 122439, "maxRanks": 1, "type": "passive", "name": "Ruination", "spellId": 428522, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}]}], "subTreeNodes": [{"id": 99849, "name": "Diabolist / Soul Harvester", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123386, "type": "subtree", "name": "Diabolist", "traitSubTreeId": 59, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-diabolist", "nodes": [94855, 94849, 94856, 94826, 94836, 94848, 94852, 94833, 94831, 94843, 94830]}, {"id": 123383, "type": "subtree", "name": "Soul Harvester", "traitSubTreeId": 57, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-soulharvester", "nodes": [94851, 94825, 94847, 94832, 94850, 94823, 94824, 94821, 94846, 94838, 94857]}]}], "fullNodeOrder": [71915, 71916, 71917, 71918, 71921, 71922, 71923, 71924, 71925, 71926, 71927, 71928, 71930, 71931, 71932, 71933, 71934, 71935, 71936, 71937, 71938, 71939, 71940, 71941, 71942, 71944, 71946, 71947, 71948, 71949, 71950, 71951, 71952, 71953, 71954, 71955, 71956, 71957, 71960, 71961, 71962, 71964, 71965, 71966, 71967, 71968, 71969, 71970, 71971, 71972, 71973, 71974, 71975, 71978, 71979, 71980, 71982, 71983, 71984, 71985, 71986, 71987, 72031, 72032, 72033, 72034, 72035, 72037, 72038, 72039, 72040, 72041, 72042, 72043, 72045, 72046, 72047, 72048, 72049, 72050, 72051, 72052, 72053, 72054, 72055, 72056, 72057, 72058, 72059, 72060, 72061, 72062, 72063, 72064, 72065, 72066, 72067, 72068, 72069, 93178, 93179, 94821, 94822, 94823, 94824, 94825, 94826, 94829, 94830, 94831, 94832, 94833, 94834, 94835, 94836, 94837, 94838, 94840, 94842, 94843, 94844, 94845, 94846, 94847, 94848, 94849, 94850, 94851, 94852, 94853, 94854, 94855, 94856, 94857, 99848, 99849, 99850, 100940, 100941, 101884, 101885, 101886, 101887, 101888, 101889, 101890, 101891, 101892, 101893, 101894, 101895, 101896, 101897, 101898, 101899, 101900, 101901, 101902, 101903, 101904, 101905, 101906, 101907, 101908, 101909, 101910, 101911, 101912, 101913, 101914, 101915, 101916, 101917, 101918, 101919, 101920, 101921, 101922, 101923, 101924, 101925, 101926, 101992, 101993, 101994, 101995, 101996, 101997, 101998, 102002, 102003, 102029, 102030, 102031, 102032, 102033, 102246, 102247, 102427]}, {"traitTreeId": 720, "className": "Warlock", "classId": 9, "specName": "Destruction", "specId": 267, "classNodes": [{"id": 71931, "name": "Fel Domination", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71932, 71952], "prev": [], "entries": [{"id": 91439, "definitionId": 96441, "maxRanks": 1, "type": "active", "name": "Fel Domination", "spellId": 333889, "icon": "spell_shadow_felmending", "index": 100}]}, {"id": 71933, "name": "Soul Leech", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71952, 71950], "prev": [], "entries": [{"id": 91441, "definitionId": 96443, "maxRanks": 1, "type": "passive", "name": "Soul Leech", "spellId": 108370, "icon": "warlock_siphonlife", "index": 100}], "freeNode": true}, {"id": 71949, "name": "Burning Rush", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71950, 71948], "prev": [], "entries": [{"id": 91460, "definitionId": 96462, "maxRanks": 1, "type": "active", "name": "Burning Rush", "spellId": 111400, "icon": "ability_deathwing_sealarmorbreachtga", "index": 100}]}, {"id": 71932, "name": "Fel Pact", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [71951], "prev": [71931], "entries": [{"id": 91440, "definitionId": 96442, "maxRanks": 1, "type": "passive", "name": "Fel Pact", "spellId": 386113, "icon": "spell_shadow_impphaseshift", "index": 100}]}, {"id": 71952, "name": "Demon Skin", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 2, "next": [71951, 100941], "prev": [71933, 71931], "entries": [{"id": 91463, "definitionId": 96465, "maxRanks": 2, "type": "passive", "name": "Demon Skin", "spellId": 219272, "icon": "spell_shadow_ragingscream", "index": 100}]}, {"id": 71950, "name": "Fel Armor", "type": "single", "posX": 4800, "posY": 1800, "maxRanks": 2, "next": [100941, 71947], "prev": [71933, 71949], "entries": [{"id": 91461, "definitionId": 96463, "maxRanks": 2, "type": "passive", "name": "Fel Armor", "spellId": 386124, "icon": "spell_shadow_felarmour", "index": 0}]}, {"id": 71948, "name": "Fiendish Stride", "type": "single", "posX": 6000, "posY": 1800, "maxRanks": 1, "next": [71947], "prev": [71949], "entries": [{"id": 91459, "definitionId": 96461, "maxRanks": 1, "type": "passive", "name": "Fiendish Stride", "spellId": 386110, "icon": "inv_misc_moosehoof_fel", "index": 100}]}, {"id": 71951, "name": "Curses of Enfeeblement", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [71934, 71930, 71928], "prev": [71932, 71952], "entries": [{"id": 91462, "definitionId": 96464, "maxRanks": 1, "type": "active", "name": "Curses of Enfeeblement", "spellId": 386105, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 100941, "name": "Demonic Circle", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [71928, 71954, 71946], "prev": [71950, 71952], "entries": [{"id": 124694, "definitionId": 129532, "maxRanks": 1, "type": "active", "name": "Demonic Circle", "spellId": 268358, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 71947, "name": "Howl of Terror / Mortal Coil", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [71946, 71922, 71944], "prev": [71950, 71948], "entries": [{"id": 91458, "definitionId": 96460, "maxRanks": 1, "type": "active", "name": "Howl of Terror", "spellId": 5484, "icon": "ability_warlock_howlofterror", "index": 100}, {"id": 91457, "definitionId": 96459, "maxRanks": 1, "type": "active", "name": "Mortal Coil", "spellId": 6789, "icon": "ability_warlock_mortalcoil", "index": 200}]}, {"id": 71934, "name": "Amplify Curse", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [71935, 71953], "prev": [71951], "entries": [{"id": 91442, "definitionId": 96444, "maxRanks": 1, "type": "active", "name": "Amplify Curse", "spellId": 328774, "icon": "spell_shadow_contagion", "index": 100}]}, {"id": 71930, "name": "Demonic Embrace", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [71953], "prev": [71951], "entries": [{"id": 91438, "definitionId": 96440, "maxRanks": 1, "type": "passive", "name": "Demonic Embrace", "spellId": 288843, "icon": "spell_shadow_metamorphosis", "index": 100}]}, {"id": 71928, "name": "Demonic Inspiration", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [71953, 71927, 71916], "prev": [71951, 100941], "entries": [{"id": 91436, "definitionId": 96438, "maxRanks": 1, "type": "passive", "name": "Demonic Inspiration", "spellId": 386858, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 71954, "name": "Abyss Walker", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [71916], "prev": [100941], "entries": [{"id": 91465, "definitionId": 96467, "maxRanks": 1, "type": "passive", "name": "Abyss Walker", "spellId": 389609, "icon": "achievement_explore_argus", "index": 100}]}, {"id": 71946, "name": "Wrathful Minion", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [71916, 71955, 71940], "prev": [71947, 100941], "entries": [{"id": 91456, "definitionId": 96458, "maxRanks": 1, "type": "passive", "name": "Wrathful Minion", "spellId": 386864, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 71922, "name": "Demonic Fortitude", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91430, "definitionId": 96432, "maxRanks": 1, "type": "passive", "name": "Demonic Fortitude", "spellId": 386617, "icon": "spell_warlock_summonimpoutland", "index": 100}]}, {"id": 71944, "name": "Banish", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91454, "definitionId": 96456, "maxRanks": 1, "type": "active", "name": "Banish", "spellId": 710, "icon": "spell_shadow_cripple", "index": 100}]}, {"id": 71935, "name": "Teachings of the Satyr", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936], "prev": [71934], "entries": [{"id": 91443, "definitionId": 96445, "maxRanks": 1, "type": "passive", "name": "Teachings of the Satyr", "spellId": 387972, "icon": "spell_shadow_carrionswarm", "index": 100}]}, {"id": 71953, "name": "Accrued Vitality", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71936], "prev": [71934, 71928, 71930], "entries": [{"id": 91464, "definitionId": 96466, "maxRanks": 2, "type": "passive", "name": "Accrued Vitality", "spellId": 386613, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 71927, "name": "Sweet Souls", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936, 71956], "prev": [71928], "entries": [{"id": 91435, "definitionId": 96437, "maxRanks": 1, "type": "passive", "name": "Sweet Souls", "spellId": 386620, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 71916, "name": "Nightmare / Horrify", "type": "choice", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71956], "prev": [71946, 71928, 71954], "entries": [{"id": 91422, "definitionId": 96424, "maxRanks": 1, "type": "passive", "name": "Nightmare", "spellId": 386648, "icon": "spell_shadow_possession", "index": 100}, {"id": 115459, "definitionId": 120471, "maxRanks": 1, "type": "passive", "name": "Horrify", "spellId": 56244, "icon": "spell_nzinsanity_bloodthirst", "index": 200}]}, {"id": 71955, "name": "Demonic Gateway", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71942, 71956], "prev": [71946], "entries": [{"id": 91466, "definitionId": 96468, "maxRanks": 1, "type": "active", "name": "Demonic Gateway", "spellId": 111771, "icon": "spell_warlock_demonicportal_green", "index": 100}]}, {"id": 71940, "name": "Lifeblood", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71942], "prev": [71922, 71944, 71946], "entries": [{"id": 91449, "definitionId": 96451, "maxRanks": 2, "type": "passive", "name": "Lifeblood", "spellId": 386646, "icon": "warlock__healthstone", "index": 100}]}, {"id": 71936, "name": "Dark Pact", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71937, 93178], "prev": [71927, 71935, 71953], "entries": [{"id": 91444, "definitionId": 96446, "maxRanks": 1, "type": "active", "name": "Dark Pact", "spellId": 108416, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 71956, "name": "Strength of Will / Dark Accord", "type": "choice", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93178, 93179], "prev": [71916, 71955, 71927], "entries": [{"id": 91468, "definitionId": 96470, "maxRanks": 1, "type": "passive", "name": "Strength of Will", "spellId": 317138, "icon": "spell_shadow_demonictactics", "index": 100}, {"id": 91467, "definitionId": 96469, "maxRanks": 1, "type": "passive", "name": "Dark Accord", "spellId": 386659, "icon": "ability_warlock_improveddemonictactics", "index": 200}]}, {"id": 71942, "name": "Shadowfury", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93179, 71941], "prev": [71955, 71940], "entries": [{"id": 91452, "definitionId": 96454, "maxRanks": 1, "type": "active", "name": "Shadowfury", "spellId": 30283, "icon": "ability_warlock_shadowfurytga", "index": 200}]}, {"id": 71937, "name": "Ichor of Devils / Frequent Donor", "type": "choice", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71918], "prev": [71936], "entries": [{"id": 91446, "definitionId": 96448, "maxRanks": 1, "type": "passive", "name": "Ichor of Devils", "spellId": 386664, "icon": "spell_yorsahj_bloodboil_greenoil", "index": 100}, {"id": 91445, "definitionId": 96447, "maxRanks": 1, "type": "passive", "name": "Frequent Donor", "spellId": 386686, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 93178, "name": "Socrethar's Guile", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71918, 71925], "prev": [71936, 71956], "entries": [{"id": 115461, "definitionId": 120473, "maxRanks": 2, "type": "passive", "name": "Socrethar's Guile", "spellId": 405936, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93179, "name": "Sargerei Technique", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71925, 71938], "prev": [71956, 71942], "entries": [{"id": 115462, "definitionId": 120474, "maxRanks": 2, "type": "passive", "name": "Sargerei Technique", "spellId": 405955, "icon": "70_inscription_glyph_demonhunter_major", "index": 100}]}, {"id": 71941, "name": "Darkfury / Shadowflame", "type": "choice", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71938], "prev": [71942], "entries": [{"id": 91451, "definitionId": 96453, "maxRanks": 1, "type": "passive", "name": "Darkfury", "spellId": 264874, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 91450, "definitionId": 96452, "maxRanks": 1, "type": "active", "name": "Shadowflame", "spellId": 384069, "icon": "ability_warlock_shadowflame", "index": 200}]}, {"id": 71918, "name": "Swift Artifice", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71915, 71924], "prev": [71937, 93178], "entries": [{"id": 91425, "definitionId": 96427, "maxRanks": 1, "type": "passive", "name": "Swift Artifice", "spellId": 452902, "icon": "spell_shadow_destructivesoul", "index": 100}]}, {"id": 71925, "name": "Demonic Tactics", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71924, 71923], "prev": [93178, 93179], "entries": [{"id": 91433, "definitionId": 96435, "maxRanks": 1, "type": "passive", "name": "Demonic Tactics", "spellId": 452894, "icon": "inv_helm_laughingskull_01", "index": 100}]}, {"id": 71938, "name": "Teachings of the Black Harvest", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71923, 71917], "prev": [71941, 93179], "entries": [{"id": 91447, "definitionId": 96449, "maxRanks": 1, "type": "passive", "name": "Teachings of the Black Harvest", "spellId": 385881, "icon": "inv_misc_codexofxerrath_nochains", "index": 100}]}, {"id": 71915, "name": "Resolute Barrier", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926], "prev": [71918], "entries": [{"id": 91421, "definitionId": 96423, "maxRanks": 2, "type": "passive", "name": "Resolute Barrier", "spellId": 389359, "icon": "inv_shield_1h_demonweapon_c_01", "index": 100}]}, {"id": 71924, "name": "Fel Synergy", "type": "single", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926, 71939], "prev": [71918, 71925], "entries": [{"id": 91432, "definitionId": 96434, "maxRanks": 2, "type": "passive", "name": "Fel Synergy", "spellId": 389367, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 71923, "name": "Soul Link", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71939, 71957], "prev": [71925, 71938], "entries": [{"id": 91431, "definitionId": 96433, "maxRanks": 2, "type": "passive", "name": "Soul Link", "spellId": 108415, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 71917, "name": "Demonic Resilience", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71957], "prev": [71938], "entries": [{"id": 91424, "definitionId": 96426, "maxRanks": 2, "type": "passive", "name": "Demonic Resilience", "spellId": 389590, "icon": "ability_warlock_avoidance", "index": 100}]}, {"id": 71926, "name": "Pact of Gluttony", "type": "single", "posX": 3000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71915], "entries": [{"id": 91434, "definitionId": 96436, "maxRanks": 1, "type": "passive", "name": "Pact of Gluttony", "spellId": 386689, "icon": "warlock__bloodstone", "index": 100}]}, {"id": 71939, "name": "Soul Conduit", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71923], "entries": [{"id": 91427, "definitionId": 96450, "maxRanks": 1, "type": "passive", "name": "Soul Conduit", "spellId": 215941, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 71957, "name": "Soulburn", "type": "single", "posX": 5400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71917, 71923], "entries": [{"id": 91469, "definitionId": 96471, "maxRanks": 1, "type": "active", "name": "Soulburn", "spellId": 385899, "icon": "spell_warlock_soulburn", "index": 100}]}], "specNodes": [{"id": 72068, "name": "Conflagrate", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [72067, 72069], "prev": [], "entries": [{"id": 91591, "definitionId": 96593, "maxRanks": 1, "type": "active", "name": "Conflagrate", "spellId": 17962, "icon": "spell_fire_fireball", "index": 100}]}, {"id": 72067, "name": "Backdraft", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [72065, 71983, 71979], "prev": [72068], "entries": [{"id": 91590, "definitionId": 96592, "maxRanks": 1, "type": "passive", "name": "Backdraft", "spellId": 196406, "icon": "ability_warlock_backdraft", "index": 100}]}, {"id": 72069, "name": "Rain of Fire", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [71979, 71975, 71974], "prev": [72068], "entries": [{"id": 91592, "definitionId": 96594, "maxRanks": 1, "type": "active", "name": "Rain of Fire", "spellId": 5740, "icon": "spell_shadow_rainoffire", "index": 100}]}, {"id": 72065, "name": "Roaring Blaze / Improved Conflagrate", "type": "choice", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [101995], "prev": [72067], "entries": [{"id": 91588, "definitionId": 96590, "maxRanks": 1, "type": "passive", "name": "Roaring Blaze", "spellId": 205184, "icon": "ability_warlock_inferno", "index": 100}, {"id": 91587, "definitionId": 96589, "maxRanks": 1, "type": "passive", "name": "Improved Conflagrate", "spellId": 231793, "icon": "spell_fire_fireball", "index": 200}]}, {"id": 71983, "name": "Backlash", "type": "single", "posX": 12000, "posY": 2400, "maxRanks": 1, "next": [101995], "prev": [72067], "entries": [{"id": 91500, "definitionId": 96502, "maxRanks": 1, "type": "passive", "name": "Backlash", "spellId": 387384, "icon": "spell_fire_playingwithfire", "index": 100}]}, {"id": 71979, "name": "Mayhem / Havoc", "type": "choice", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [71961], "prev": [72069, 72067], "entries": [{"id": 91494, "definitionId": 96496, "maxRanks": 1, "type": "passive", "name": "Mayhem", "spellId": 387506, "icon": "spell_warlock_demonbolt", "index": 200}, {"id": 91493, "definitionId": 96495, "maxRanks": 1, "type": "active", "name": "Havoc", "spellId": 80240, "icon": "ability_warlock_baneofhavoc", "index": 300}]}, {"id": 71975, "name": "Pyrogenics", "type": "single", "posX": 13200, "posY": 2400, "maxRanks": 1, "next": [71973], "prev": [72069], "entries": [{"id": 91489, "definitionId": 96491, "maxRanks": 1, "type": "passive", "name": "Pyrogenics", "spellId": 387095, "icon": "inv_jewelry_ring_65", "index": 100}]}, {"id": 71974, "name": "Inferno / Cataclysm", "type": "choice", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [71973], "prev": [72069], "entries": [{"id": 91488, "definitionId": 96490, "maxRanks": 1, "type": "passive", "name": "Inferno", "spellId": 270545, "icon": "spell_shadow_rainoffire", "index": 100}, {"id": 91487, "definitionId": 96489, "maxRanks": 1, "type": "active", "name": "Cataclysm", "spellId": 152108, "icon": "achievement_zone_cataclysm", "index": 200}]}, {"id": 101995, "name": "Indiscriminate Flames", "type": "single", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [72060, 72059, 71971], "prev": [72065, 71983], "entries": [{"id": 126005, "definitionId": 130836, "maxRanks": 1, "type": "passive", "name": "Indiscriminate Flames", "spellId": 457114, "icon": "inv_summerfest_firespirit", "index": 100}]}, {"id": 71961, "name": "Rolling Havoc", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [71971], "prev": [71979], "entries": [{"id": 91474, "definitionId": 96476, "maxRanks": 1, "type": "passive", "name": "Rolling Havoc", "spellId": 387569, "icon": "warlock_pvp_banehavoc", "index": 100}]}, {"id": 71973, "name": "Scalding Flames", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [71971, 71969, 72064], "prev": [71975, 71974], "entries": [{"id": 91486, "definitionId": 96488, "maxRanks": 1, "type": "passive", "name": "Scalding Flames", "spellId": 388832, "icon": "spell_burningsoul", "index": 100}]}, {"id": 72060, "name": "Shadowburn", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [101996, 72061], "prev": [101995], "entries": [{"id": 91582, "definitionId": 96584, "maxRanks": 1, "type": "active", "name": "Shadowburn", "spellId": 17877, "icon": "spell_shadow_scourgebuild", "index": 100}]}, {"id": 72059, "name": "Explosive Potential", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72061, 72062], "prev": [101995], "entries": [{"id": 91581, "definitionId": 96583, "maxRanks": 1, "type": "passive", "name": "Explosive Potential", "spellId": 388827, "icon": "spell_fire_felflamering_red", "index": 100}]}, {"id": 71971, "name": "Summoner's Embrace / Grimoire of Sacrifice", "type": "choice", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72062, 71985, 71982], "prev": [101995, 71973, 71961], "entries": [{"id": 91484, "definitionId": 96486, "maxRanks": 1, "type": "passive", "name": "Summoner's Embrace", "spellId": 453105, "icon": "spell_shadow_unsummonbuilding", "index": 0}, {"id": 125618, "definitionId": 130450, "maxRanks": 1, "type": "active", "name": "Grimoire of Sacrifice", "spellId": 108503, "icon": "warlock_grimoireofsacrifice", "index": 100}]}, {"id": 71969, "name": "Ashen Remains", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71982, 71972], "prev": [71973], "entries": [{"id": 91482, "definitionId": 96484, "maxRanks": 1, "type": "passive", "name": "Ashen Remains", "spellId": 387252, "icon": "inv_enchanting_dust", "index": 100}]}, {"id": 72064, "name": "Channel Demonfire", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72063], "prev": [71973], "entries": [{"id": 91586, "definitionId": 96588, "maxRanks": 1, "type": "active", "name": "Channel Demonfire", "spellId": 196447, "icon": "spell_fire_ragnaros_lavaboltgreen", "index": 0}]}, {"id": 101996, "name": "Blistering Atrophy", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101994], "prev": [72060], "entries": [{"id": 126006, "definitionId": 130837, "maxRanks": 1, "type": "passive", "name": "Blistering Atrophy", "spellId": 456939, "icon": "inv_misc_volatilefire", "index": 100}]}, {"id": 72061, "name": "Conflagration of Chaos", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71984], "prev": [72059, 72060], "entries": [{"id": 91583, "definitionId": 96585, "maxRanks": 1, "type": "passive", "name": "Conflagration of Chaos", "spellId": 387108, "icon": "spell_shadow_scourgebuild", "index": 100}]}, {"id": 72062, "name": "Emberstorm", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71984], "prev": [71971, 72059], "entries": [{"id": 91584, "definitionId": 96586, "maxRanks": 1, "type": "passive", "name": "Emberstorm", "spellId": 454744, "icon": "spell_fire_selfdestruct", "index": 100}]}, {"id": 71985, "name": "Summon Infernal", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71984, 71960, 71980], "prev": [71971], "entries": [{"id": 91502, "definitionId": 96504, "maxRanks": 1, "type": "active", "name": "Summon Infernal", "spellId": 1122, "icon": "spell_shadow_summoninfernal", "index": 100}]}, {"id": 71982, "name": "Fire and Brimstone", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71980], "prev": [71971, 71969], "entries": [{"id": 91499, "definitionId": 96501, "maxRanks": 1, "type": "passive", "name": "Fire and Brimstone", "spellId": 196408, "icon": "ability_warlock_fireandbrimstone", "index": 0}]}, {"id": 71972, "name": "Flashpoint", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71980], "prev": [71969], "entries": [{"id": 91485, "definitionId": 96487, "maxRanks": 1, "type": "passive", "name": "Flashpoint", "spellId": 387259, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 72063, "name": "Raging Demonfire", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [101993], "prev": [72064], "entries": [{"id": 91585, "definitionId": 96587, "maxRanks": 1, "type": "passive", "name": "Raging Demonfire", "spellId": 387166, "icon": "spell_fire_ragnaros_lavaboltgreen", "index": 100}]}, {"id": 101994, "name": "Fiendish Cruelty", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72066, 71978], "prev": [101996], "entries": [{"id": 126004, "definitionId": 130835, "maxRanks": 1, "type": "passive", "name": "Fiendish Cruelty", "spellId": 456943, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 71984, "name": "Eradication", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72066, 71970], "prev": [72062, 72061, 71985], "entries": [{"id": 91501, "definitionId": 96503, "maxRanks": 1, "type": "passive", "name": "Eradication", "spellId": 196412, "icon": "ability_warlock_eradication", "index": 100}]}, {"id": 71960, "name": "Crashing Chaos / Rain of Chaos", "type": "choice", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71970], "prev": [71985], "entries": [{"id": 91473, "definitionId": 96475, "maxRanks": 1, "type": "passive", "name": "Crashing Chaos", "spellId": 417234, "icon": "inv_infernalmount", "index": 100}, {"id": 126494, "definitionId": 131320, "maxRanks": 1, "type": "passive", "name": "Rain of Chaos", "spellId": 266086, "icon": "spell_fire_felrainoffire", "index": 200}]}, {"id": 71980, "name": "Reverse Entropy / Internal Combustion", "type": "choice", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71970, 71967], "prev": [71982, 71972, 71985], "entries": [{"id": 91496, "definitionId": 96498, "maxRanks": 1, "type": "passive", "name": "Reverse Entropy", "spellId": 205148, "icon": "spell_fire_playingwithfiregreen", "index": 100}, {"id": 91495, "definitionId": 96497, "maxRanks": 1, "type": "passive", "name": "Internal Combustion", "spellId": 266134, "icon": "ability_mage_livingbomb", "index": 200}]}, {"id": 101993, "name": "Demonfire Mastery", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71967, 102003], "prev": [72063], "entries": [{"id": 126003, "definitionId": 130834, "maxRanks": 1, "type": "passive", "name": "Demonfire Mastery", "spellId": 456946, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 72066, "name": "Devastation", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71978, 101992, 71964], "prev": [71984, 101994], "entries": [{"id": 91589, "definitionId": 96591, "maxRanks": 1, "type": "passive", "name": "Devastation", "spellId": 454735, "icon": "spell_fire_flameshock", "index": 100}]}, {"id": 71970, "name": "Ritual of Ruin", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71964, 71962, 71965], "prev": [71984, 71980, 71960], "entries": [{"id": 91483, "definitionId": 96485, "maxRanks": 1, "type": "passive", "name": "Ritual of Ruin", "spellId": 387156, "icon": "ability_mage_worldinflamesgreen", "index": 100}]}, {"id": 71967, "name": "Ruin", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71965, 71968, 102003], "prev": [101993, 71980], "entries": [{"id": 91480, "definitionId": 96482, "maxRanks": 1, "type": "passive", "name": "Ruin", "spellId": 387103, "icon": "spell_fire_fire", "index": 100}]}, {"id": 71978, "name": "Soul Fire", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101997, 71966], "prev": [72066, 101994], "entries": [{"id": 91492, "definitionId": 96494, "maxRanks": 1, "type": "active", "name": "Soul Fire", "spellId": 6353, "icon": "spell_fire_firebolt", "index": 100}]}, {"id": 101992, "name": "Improved Chaos Bolt", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [71966], "prev": [72066], "entries": [{"id": 126002, "definitionId": 130833, "maxRanks": 1, "type": "passive", "name": "Improved Chaos Bolt", "spellId": 456951, "icon": "ability_warlock_chaosbolt", "index": 100}]}, {"id": 71964, "name": "Burn to Ashes", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [71966], "prev": [72066, 71970], "entries": [{"id": 91477, "definitionId": 96479, "maxRanks": 1, "type": "passive", "name": "Burn to Ashes", "spellId": 387153, "icon": "ability_racial_foregedinflames", "index": 100}]}, {"id": 71962, "name": "Master Ritualist", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [101998], "prev": [71970], "entries": [{"id": 91475, "definitionId": 96477, "maxRanks": 1, "type": "passive", "name": "Master Ritualist", "spellId": 387165, "icon": "spell_warlock_focusshadow", "index": 100}]}, {"id": 71965, "name": "Power Overwhelming", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102002], "prev": [71970, 71967], "entries": [{"id": 91478, "definitionId": 96480, "maxRanks": 1, "type": "passive", "name": "Power Overwhelming", "spellId": 387279, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 71968, "name": "Diabolic Embers", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102002], "prev": [71967], "entries": [{"id": 91481, "definitionId": 96483, "maxRanks": 1, "type": "passive", "name": "Diabolic Embers", "spellId": 387173, "icon": "inv_shoulder_robe_raidmage_j_01", "index": 100}]}, {"id": 102003, "name": "Dimensional Rift", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102002, 102427], "prev": [71967, 101993], "entries": [{"id": 91423, "definitionId": 96425, "maxRanks": 1, "type": "active", "name": "Dimensional Rift", "spellId": 387976, "icon": "spell_warlock_demonicportal_purple", "index": 100}]}, {"id": 101997, "name": "Decimation", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71978], "entries": [{"id": 126007, "definitionId": 130838, "maxRanks": 1, "type": "passive", "name": "Decimation", "spellId": 456985, "icon": "spell_fire_fireball02", "index": 100}]}, {"id": 71966, "name": "Chaos Incarnate", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101992, 71964, 71978], "entries": [{"id": 91479, "definitionId": 96481, "maxRanks": 1, "type": "passive", "name": "Chaos Incarnate", "spellId": 387275, "icon": "spell_fire_felflamering", "index": 100}]}, {"id": 101998, "name": "Avatar of Destruction", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71962], "entries": [{"id": 126008, "definitionId": 130839, "maxRanks": 1, "type": "passive", "name": "Avatar of Destruction", "spellId": 456975, "icon": "spell_fire_felcano", "index": 100}]}, {"id": 102002, "name": "Dimension Ripper", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71968, 71965, 102003], "entries": [{"id": 126012, "definitionId": 130843, "maxRanks": 1, "type": "passive", "name": "Dimension Ripper", "spellId": 457025, "icon": "spell_fire_burnout", "index": 100}]}, {"id": 102427, "name": "Unstable Rifts", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102003], "entries": [{"id": 126493, "definitionId": 131319, "maxRanks": 1, "type": "passive", "name": "Unstable Rifts", "spellId": 457064, "icon": "inv_shadowflame_groundstate", "index": 100}]}], "heroNodes": [{"id": 94840, "name": "Wither", "type": "single", "posX": 15600, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 58, "next": [94853, 94837, 94845], "prev": [], "entries": [{"id": 117437, "definitionId": 122449, "maxRanks": 1, "type": "active", "name": "Wither", "spellId": 445465, "visibleSpellId": 445468, "icon": "inv_ability_hellcallerwarlock_wither", "index": 100}], "freeNode": true}, {"id": 94853, "name": "Xalan's Ferocity", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94822], "prev": [94840], "entries": [{"id": 117450, "definitionId": 122462, "maxRanks": 1, "type": "passive", "name": "Xalan's Ferocity", "spellId": 440044, "icon": "spell_fire_felfire", "index": 100}]}, {"id": 94837, "name": "Blackened Soul", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94854], "prev": [94840], "entries": [{"id": 117434, "definitionId": 122446, "maxRanks": 1, "type": "passive", "name": "Blackened Soul", "spellId": 440043, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 94845, "name": "Xalan's Cruelty", "type": "single", "posX": 16200, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94835], "prev": [94840], "entries": [{"id": 117442, "definitionId": 122454, "maxRanks": 1, "type": "passive", "name": "Xalan's Cruelty", "spellId": 440040, "icon": "spell_shadow_demonicempathy", "index": 100}]}, {"id": 94822, "name": "Curse of the Satyr / Aura of Enfeeblement", "type": "choice", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94834], "prev": [94853], "entries": [{"id": 117419, "definitionId": 122431, "maxRanks": 1, "type": "passive", "name": "Curse of the Satyr", "spellId": 440057, "icon": "inv_fabric_felrag", "index": 100}, {"id": 123309, "definitionId": 128179, "maxRanks": 1, "type": "passive", "name": "Aura of Enfeeblement", "spellId": 440059, "icon": "warlock_curse_weakness_aura", "index": 200}]}, {"id": 94854, "name": "Hatefury Rituals / Bleakheart Tactics", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94829], "prev": [94837], "entries": [{"id": 117451, "definitionId": 122463, "maxRanks": 1, "type": "passive", "name": "Hatefury Rituals", "spellId": 440048, "icon": "70_inscription_glyph_demonhunter_minor", "index": 100}, {"id": 123310, "definitionId": 128180, "maxRanks": 1, "type": "passive", "name": "Bleakheart Tactics", "spellId": 440051, "icon": "spell_shadow_mindshear", "index": 200}]}, {"id": 94835, "name": "Zevrim's Resilience / Illhoof's Design", "type": "choice", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94844], "prev": [94845], "entries": [{"id": 117432, "definitionId": 122444, "maxRanks": 1, "type": "passive", "name": "Zevrim's Resilience", "spellId": 440065, "icon": "ability_warrior_intensifyrage", "index": 100}, {"id": 123308, "definitionId": 128178, "maxRanks": 1, "type": "passive", "name": "Illhoof's Design", "spellId": 440070, "icon": "sha_spell_fire_felfireward_nightmare", "index": 200}]}, {"id": 94834, "name": "Mark of Xavius", "type": "single", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94822], "entries": [{"id": 117431, "definitionId": 122443, "maxRanks": 1, "type": "passive", "name": "Mark of Xavius", "spellId": 440046, "icon": "warlock_curse_shadow_aura", "index": 100}]}, {"id": 94829, "name": "Seeds of Their Demise", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94854], "entries": [{"id": 117426, "definitionId": 122438, "maxRanks": 1, "type": "passive", "name": "Seeds of Their Demise", "spellId": 440055, "icon": "ability_warlock_moltencoregreen", "index": 100}]}, {"id": 94844, "name": "Mark of Peroth'arn", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94835], "entries": [{"id": 117441, "definitionId": 122453, "maxRanks": 1, "type": "passive", "name": "Mark of Peroth'arn", "spellId": 440045, "icon": "70_inscription_vantus_rune_tomb", "index": 100}]}, {"id": 94842, "name": "Malevolence", "type": "single", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 58, "next": [], "prev": [94829, 94834, 94844], "entries": [{"id": 117439, "definitionId": 122451, "maxRanks": 1, "type": "active", "name": "Malevolence", "spellId": 430014, "visibleSpellId": 442726, "icon": "inv_ability_hellcallerwarlock_malevolence", "index": 100}]}, {"id": 94855, "name": "Diabolic Ritual", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 59, "next": [94849, 94856, 94826], "prev": [], "entries": [{"id": 117452, "definitionId": 122464, "maxRanks": 1, "type": "passive", "name": "Diabolic Ritual", "spellId": 428514, "icon": "ability_bossfelorcs_necromancer_purple", "index": 100}], "freeNode": true}, {"id": 94849, "name": "Cloven Souls", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94836], "prev": [94855], "entries": [{"id": 117446, "definitionId": 122458, "maxRanks": 1, "type": "passive", "name": "Cloven Souls", "spellId": 428517, "icon": "ability_creature_felfrenzy", "index": 100}]}, {"id": 94856, "name": "Touch of Rancora", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94848], "prev": [94855], "entries": [{"id": 117453, "definitionId": 122465, "maxRanks": 1, "type": "passive", "name": "Touch of Rancora", "spellId": 429893, "icon": "ability_bossfellord_felspike", "index": 100}]}, {"id": 94826, "name": "Secrets of the Coven", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 59, "next": [94852], "prev": [94855], "entries": [{"id": 117423, "definitionId": 122435, "maxRanks": 1, "type": "passive", "name": "Secrets of the Coven", "spellId": 428518, "icon": "achievement_boss_argus_shivan", "index": 100}]}, {"id": 94836, "name": "Soul-Etched Circles / Annihilan's Bellow", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "next": [94833], "prev": [94849], "entries": [{"id": 117433, "definitionId": 122445, "maxRanks": 1, "type": "passive", "name": "Soul-Etched Circles", "spellId": 428911, "icon": "spell_shadow_demoniccircleteleport", "index": 100}, {"id": 118837, "definitionId": 123737, "maxRanks": 1, "type": "passive", "name": "Annihilan's Bellow", "spellId": 429072, "icon": "ability_physical_taunt", "index": 200}]}, {"id": 94848, "name": "Cruelty of Kerxan / Infernal Machine", "type": "choice", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "requiresNode": 101905, "next": [94831], "prev": [94856], "entries": [{"id": 117445, "definitionId": 122457, "maxRanks": 1, "type": "passive", "name": "Cruelty of Kerxan", "spellId": 429902, "icon": "creatureportrait_fomorhand", "index": 100}, {"id": 118838, "definitionId": 123738, "maxRanks": 1, "type": "passive", "name": "Infernal Machine", "spellId": 429917, "icon": "inv_misc_supersoulash", "index": 200}]}, {"id": 94852, "name": "Infernal Vitality / Infernal Bulwark", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 59, "next": [94843], "prev": [94826], "entries": [{"id": 117449, "definitionId": 122461, "maxRanks": 1, "type": "passive", "name": "Infernal Vitality", "spellId": 429115, "icon": "inv_fabric_felcloth_ebon", "index": 100}, {"id": 118839, "definitionId": 123739, "maxRanks": 1, "type": "passive", "name": "Infernal Bulwark", "spellId": 429130, "icon": "spell_fire_felfireward", "index": 200}]}, {"id": 94833, "name": "Flames of Xoroth", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "next": [94830], "prev": [94836], "entries": [{"id": 117430, "definitionId": 122442, "maxRanks": 1, "type": "passive", "name": "Flames of Xoroth", "spellId": 429657, "icon": "ability_warlock_burningembers", "index": 100}]}, {"id": 94831, "name": "Abyssal Dominion", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "requiresNode": 71985, "next": [94830], "prev": [94848], "entries": [{"id": 117428, "definitionId": 122440, "maxRanks": 1, "type": "passive", "name": "Abyssal Dominion", "spellId": 429581, "icon": "70_inscription_vantus_rune_tomb", "index": 100}]}, {"id": 94843, "name": "Gloom of Nathreza", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 59, "next": [94830], "prev": [94852], "entries": [{"id": 117440, "definitionId": 122452, "maxRanks": 1, "type": "passive", "name": "Gloom of Nathreza", "spellId": 429899, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 94830, "name": "Ruination", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 59, "next": [], "prev": [94831, 94833, 94843], "entries": [{"id": 117427, "definitionId": 122439, "maxRanks": 1, "type": "passive", "name": "Ruination", "spellId": 428522, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}]}], "subTreeNodes": [{"id": 99848, "name": "Diabolist / Hellcaller", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123385, "type": "subtree", "name": "Diabolist", "traitSubTreeId": 59, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-diabolist", "nodes": [94855, 94849, 94856, 94826, 94836, 94848, 94852, 94833, 94831, 94843, 94830]}, {"id": 123382, "type": "subtree", "name": "Hellcaller", "traitSubTreeId": 58, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-hellcaller", "nodes": [94840, 94853, 94837, 94845, 94822, 94854, 94835, 94834, 94829, 94844, 94842]}]}], "fullNodeOrder": [71915, 71916, 71917, 71918, 71921, 71922, 71923, 71924, 71925, 71926, 71927, 71928, 71930, 71931, 71932, 71933, 71934, 71935, 71936, 71937, 71938, 71939, 71940, 71941, 71942, 71944, 71946, 71947, 71948, 71949, 71950, 71951, 71952, 71953, 71954, 71955, 71956, 71957, 71960, 71961, 71962, 71964, 71965, 71966, 71967, 71968, 71969, 71970, 71971, 71972, 71973, 71974, 71975, 71978, 71979, 71980, 71982, 71983, 71984, 71985, 71986, 71987, 72031, 72032, 72033, 72034, 72035, 72037, 72038, 72039, 72040, 72041, 72042, 72043, 72045, 72046, 72047, 72048, 72049, 72050, 72051, 72052, 72053, 72054, 72055, 72056, 72057, 72058, 72059, 72060, 72061, 72062, 72063, 72064, 72065, 72066, 72067, 72068, 72069, 93178, 93179, 94821, 94822, 94823, 94824, 94825, 94826, 94829, 94830, 94831, 94832, 94833, 94834, 94835, 94836, 94837, 94838, 94840, 94842, 94843, 94844, 94845, 94846, 94847, 94848, 94849, 94850, 94851, 94852, 94853, 94854, 94855, 94856, 94857, 99848, 99849, 99850, 100940, 100941, 101884, 101885, 101886, 101887, 101888, 101889, 101890, 101891, 101892, 101893, 101894, 101895, 101896, 101897, 101898, 101899, 101900, 101901, 101902, 101903, 101904, 101905, 101906, 101907, 101908, 101909, 101910, 101911, 101912, 101913, 101914, 101915, 101916, 101917, 101918, 101919, 101920, 101921, 101922, 101923, 101924, 101925, 101926, 101992, 101993, 101994, 101995, 101996, 101997, 101998, 102002, 102003, 102029, 102030, 102031, 102032, 102033, 102246, 102247, 102427]}, {"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Brewmaster", "specId": 268, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101090], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101090, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 102433], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101090, "name": "Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184], "prev": [101185, 101149], "entries": [{"id": 124867, "definitionId": 129705, "maxRanks": 1, "type": "active", "name": "Detox", "spellId": 218164, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [102433, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102433, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101090, 101153, 101148], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101090, 101185], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 102433, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101146, 101160, 101145], "entries": [{"id": 126502, "definitionId": 131328, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 126501, "definitionId": 131327, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 123986, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101145, 102433], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101181], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101181], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101181, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101158, 101166, 102433], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101172], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101172], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101172, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101181, "name": "Dance of the Wind / Dampen Harm", "type": "choice", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124979, "definitionId": 129817, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 414132, "icon": "ability_monk_dematerialize", "index": 100}, {"id": 124978, "definitionId": 129816, "maxRanks": 1, "type": "active", "name": "Dampen Harm", "spellId": 122278, "icon": "ability_monk_dampenharm", "index": 200}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101172, "name": "Summon Black Ox Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101163, 101173, 101165], "entries": [{"id": 124967, "definitionId": 129805, "maxRanks": 1, "type": "active", "name": "Summon Black Ox Statue", "spellId": 115315, "icon": "monk_ability_summonoxstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101181, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101135, 101174, 101172], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101088, "name": "Keg Smash", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101064, 101087], "prev": [], "entries": [{"id": 124865, "definitionId": 129703, "maxRanks": 1, "type": "active", "name": "Keg Smash", "spellId": 121253, "icon": "achievement_brewery_2", "index": 100}]}, {"id": 101064, "name": "Purifying Brew", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101065, 101072], "prev": [101088], "entries": [{"id": 124838, "definitionId": 129676, "maxRanks": 1, "type": "active", "name": "Purifying Brew", "spellId": 119582, "icon": "inv_misc_beer_06", "index": 100}]}, {"id": 101087, "name": "Shuffle", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101086, 101063], "prev": [101088], "entries": [{"id": 124864, "definitionId": 129702, "maxRanks": 1, "type": "passive", "name": "Shuffle", "spellId": 322120, "icon": "ability_monk_shuffle", "index": 100}]}, {"id": 101065, "name": "Staggering Strikes", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101071], "prev": [101064], "entries": [{"id": 124839, "definitionId": 129677, "maxRanks": 1, "type": "passive", "name": "Staggering Strikes", "spellId": 387625, "icon": "ability_monk_blackoutstrike", "index": 100}]}, {"id": 101072, "name": "Gift of the Ox", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [101071, 101085], "prev": [101064], "entries": [{"id": 124846, "definitionId": 129684, "maxRanks": 1, "type": "passive", "name": "Gift of the Ox", "spellId": 124502, "icon": "ability_druid_giftoftheearthmother", "index": 100}]}, {"id": 101086, "name": "Spirit of the Ox", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [101085, 101202], "prev": [101087], "entries": [{"id": 124863, "definitionId": 129701, "maxRanks": 1, "type": "passive", "name": "Spirit of the Ox", "spellId": 400629, "icon": "ability_titankeeper_cleansingorb", "index": 100}]}, {"id": 101063, "name": "Quick Sip", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101202], "prev": [101087], "entries": [{"id": 124837, "definitionId": 129675, "maxRanks": 1, "type": "passive", "name": "Quick Sip", "spellId": 388505, "icon": "achievement_faction_brewmaster", "index": 100}]}, {"id": 101071, "name": "Hit Scheme", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [101070, 101067, 101084], "prev": [101065, 101072], "entries": [{"id": 124845, "definitionId": 129683, "maxRanks": 1, "type": "passive", "name": "Hit Scheme", "spellId": 383695, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101085, "name": "Elixir of Determination", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101084, 101710], "prev": [101086, 101072], "entries": [{"id": 124862, "definitionId": 129700, "maxRanks": 1, "type": "passive", "name": "Elixir of Determination", "spellId": 455139, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101202, "name": "Special Delivery / Rushing Jade Wind", "type": "choice", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [101710, 101201, 101076], "prev": [101086, 101063], "entries": [{"id": 125008, "definitionId": 129846, "maxRanks": 1, "type": "passive", "name": "Special Delivery", "spellId": 196730, "icon": "achievement_brewery_2", "index": 100}, {"id": 125007, "definitionId": 129845, "maxRanks": 1, "type": "active", "name": "Rushing Jade Wind", "spellId": 116847, "icon": "ability_monk_rushingjadewind", "index": 200}]}, {"id": 101070, "name": "Celestial Flames", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101069], "prev": [101071], "entries": [{"id": 124844, "definitionId": 129682, "maxRanks": 1, "type": "passive", "name": "Celestial Flames", "spellId": 325177, "icon": "inv_misc_volatilefire", "index": 100}]}, {"id": 101067, "name": "Celestial Brew", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101069, 102004, 101068], "prev": [101071], "entries": [{"id": 124841, "definitionId": 129679, "maxRanks": 1, "type": "active", "name": "Celestial Brew", "spellId": 322507, "icon": "ability_monk_ironskinbrew", "index": 100}]}, {"id": 101084, "name": "August Blessing", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [102004, 101075], "prev": [101085, 101071], "entries": [{"id": 124861, "definitionId": 129699, "maxRanks": 1, "type": "passive", "name": "August Blessing", "spellId": 454483, "icon": "inv_celestialserpentmount", "index": 100}]}, {"id": 101710, "name": "One With the Wind", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101075, 101083], "prev": [101202, 101085], "entries": [{"id": 125611, "definitionId": 130443, "maxRanks": 1, "type": "passive", "name": "One With the Wind", "spellId": 454484, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 101201, "name": "Zen Meditation", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101083, 101078, 101077], "prev": [101202], "entries": [{"id": 125006, "definitionId": 129844, "maxRanks": 1, "type": "active", "name": "Zen Meditation", "spellId": 115176, "icon": "ability_monk_zenmeditation", "index": 100}]}, {"id": 101076, "name": "Strike At Dawn", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101078], "prev": [101202], "entries": [{"id": 124850, "definitionId": 129688, "maxRanks": 1, "type": "passive", "name": "Strike At Dawn", "spellId": 455043, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101069, "name": "Breath of Fire", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101188, 101068], "prev": [101067, 101070], "entries": [{"id": 124843, "definitionId": 129681, "maxRanks": 1, "type": "active", "name": "Breath of Fire", "spellId": 115181, "icon": "ability_monk_breathoffire", "index": 100}]}, {"id": 102004, "name": "Gai Plin's Imperial Brew", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101068, 101190], "prev": [101084, 101067], "entries": [{"id": 124859, "definitionId": 129697, "maxRanks": 1, "type": "passive", "name": "Gai Plin's Imperial Brew", "spellId": 383700, "icon": "inv_misc_beer_06", "index": 100}]}, {"id": 101075, "name": "Invoke Niuzao, the Black Ox", "type": "single", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101190, 101074, 101082], "prev": [101710, 101084], "entries": [{"id": 124849, "definitionId": 129687, "maxRanks": 1, "type": "active", "name": "Invoke Niuzao, the Black Ox", "spellId": 132578, "icon": "spell_monk_brewmaster_spec", "index": 100}]}, {"id": 101083, "name": "Tranquil Spirit", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101082, 101077], "prev": [101201, 101710], "entries": [{"id": 124860, "definitionId": 129698, "maxRanks": 1, "type": "passive", "name": "Tranquil Spirit", "spellId": 393357, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101078, "name": "Shadowboxing Treads / Fluidity of Motion", "type": "choice", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101077, 101080], "prev": [101201, 101076], "entries": [{"id": 124853, "definitionId": 129691, "maxRanks": 1, "type": "passive", "name": "Shadowboxing Treads", "spellId": 387638, "icon": "ability_monk_roundhousekick", "index": 100}, {"id": 124852, "definitionId": 129690, "maxRanks": 1, "type": "passive", "name": "Fluidity of Motion", "spellId": 387230, "icon": "ability_monk_standingkick", "index": 200}]}, {"id": 101188, "name": "Scalding Brew / Sal'salabim's Strength", "type": "choice", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101187, 101189], "prev": [101069], "entries": [{"id": 124989, "definitionId": 129827, "maxRanks": 1, "type": "passive", "name": "Scalding Brew", "spellId": 383698, "icon": "spell_brew_bolt_dark", "index": 100}, {"id": 124988, "definitionId": 129826, "maxRanks": 1, "type": "passive", "name": "Sal'salabim's Strength", "spellId": 383697, "icon": "ability_warrior_unrelentingassault", "index": 200}]}, {"id": 101068, "name": "Fortifying Brew: Determination", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101189], "prev": [101069, 101067, 102004], "entries": [{"id": 124842, "definitionId": 129680, "maxRanks": 1, "type": "active", "name": "Fortifying Brew: Determination", "spellId": 322960, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101190, "name": "Bob and Weave / Black Ox Brew", "type": "choice", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101189, 101197], "prev": [101075, 102004], "entries": [{"id": 124992, "definitionId": 129830, "maxRanks": 1, "type": "passive", "name": "Bob and Weave", "spellId": 280515, "icon": "ability_creature_cursed_04", "index": 100}, {"id": 124991, "definitionId": 129829, "maxRanks": 1, "type": "active", "name": "Black Ox Brew", "spellId": 115399, "icon": "ability_monk_chibrew", "index": 200}]}, {"id": 101074, "name": "Walk with the Ox", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [101197, 101073, 101194], "prev": [101075], "entries": [{"id": 124848, "definitionId": 129686, "maxRanks": 2, "type": "passive", "name": "Walk with the Ox", "spellId": 387219, "icon": "monk_stance_drunkenox", "index": 100}]}, {"id": 101082, "name": "Light Brewing / Training of Niuzao", "type": "choice", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101194, 101081], "prev": [101083, 101075], "entries": [{"id": 124858, "definitionId": 129696, "maxRanks": 1, "type": "passive", "name": "Light Brewing", "spellId": 325093, "icon": "spell_brew_wheat", "index": 100}, {"id": 124857, "definitionId": 129695, "maxRanks": 1, "type": "passive", "name": "Training of Niuzao", "spellId": 383714, "icon": "monk_stance_drunkenox", "index": 200}]}, {"id": 101077, "name": "Pretense of Instability", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101081], "prev": [101083, 101078, 101201], "entries": [{"id": 124851, "definitionId": 129689, "maxRanks": 1, "type": "passive", "name": "Pretense of Instability", "spellId": 393516, "icon": "inv_misc_archaeology_vrykuldrinkinghorn", "index": 100}]}, {"id": 101080, "name": "Counterstrike", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101081, 101079], "prev": [101078], "entries": [{"id": 124855, "definitionId": 129693, "maxRanks": 1, "type": "passive", "name": "Counterstrike", "spellId": 383785, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101187, "name": "Dragonfire Brew / Charred Passions", "type": "choice", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101199], "prev": [101188], "entries": [{"id": 124987, "definitionId": 129825, "maxRanks": 1, "type": "passive", "name": "Dragonfire Brew", "spellId": 383994, "icon": "spell_fire_burnout", "index": 100}, {"id": 124986, "definitionId": 129824, "maxRanks": 1, "type": "passive", "name": "Charred Passions", "spellId": 386965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101189, "name": "High Tolerance", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101199], "prev": [101068, 101188, 101190], "entries": [{"id": 124990, "definitionId": 129828, "maxRanks": 2, "type": "passive", "name": "High Tolerance", "spellId": 196737, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101197, "name": "Exploding Keg", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101199, 101196], "prev": [101074, 101190], "entries": [{"id": 125001, "definitionId": 129839, "maxRanks": 1, "type": "active", "name": "Exploding Keg", "spellId": 325153, "icon": "archaeology_5_0_emptykegofbrewfatherxinwoyin", "index": 100}]}, {"id": 101073, "name": "Improved Invoke Niuzao, the Black Ox", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101196, 101195], "prev": [101074], "entries": [{"id": 124847, "definitionId": 129685, "maxRanks": 1, "type": "passive", "name": "Improved Invoke Niuzao, the Black Ox", "spellId": 322740, "icon": "spell_monk_brewmaster_spec", "index": 100}]}, {"id": 101194, "name": "Elusive Footwork", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101195, 101193], "prev": [101074, 101082], "entries": [{"id": 124998, "definitionId": 129836, "maxRanks": 1, "type": "passive", "name": "Elusive Footwork", "spellId": 387046, "icon": "ability_monk_shuffle", "index": 100}]}, {"id": 101081, "name": "Anvil & Stave", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [101193], "prev": [101082, 101077, 101080], "entries": [{"id": 124856, "definitionId": 129694, "maxRanks": 2, "type": "passive", "name": "Anvil & Stave", "spellId": 386937, "icon": "ability_monk_elusiveale", "index": 100}]}, {"id": 101079, "name": "Face Palm", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101193], "prev": [101080], "entries": [{"id": 124854, "definitionId": 129692, "maxRanks": 1, "type": "passive", "name": "Face Palm", "spellId": 389942, "icon": "ability_monk_tigerpalm", "index": 100}]}, {"id": 101199, "name": "Ox Stance", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101198, 101711], "prev": [101189, 101187, 101197], "entries": [{"id": 125004, "definitionId": 129842, "maxRanks": 1, "type": "passive", "name": "Ox Stance", "spellId": 455068, "icon": "ability_monk_leeroftheox", "index": 100}]}, {"id": 101196, "name": "Stormstout's Last Keg", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101073, 101197], "entries": [{"id": 125000, "definitionId": 129838, "maxRanks": 1, "type": "passive", "name": "Stormstout's Last Keg", "spellId": 383707, "icon": "achievement_brewery_2", "index": 100}]}, {"id": 101195, "name": "Blackout Combo", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101194, 101073], "entries": [{"id": 124999, "definitionId": 129837, "maxRanks": 1, "type": "passive", "name": "Blackout Combo", "spellId": 196736, "icon": "ability_monk_blackoutkick", "index": 100}]}, {"id": 101193, "name": "Press the Advantage / Weapons of Order", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101192, 101712], "prev": [101081, 101079, 101194], "entries": [{"id": 124997, "definitionId": 129835, "maxRanks": 1, "type": "passive", "name": "Press the Advantage", "spellId": 418359, "icon": "inv__fistofthewhitetiger", "index": 100}, {"id": 124996, "definitionId": 129834, "maxRanks": 1, "type": "active", "name": "Weapons of Order", "spellId": 387184, "icon": "inv_ability_monk_weaponsoforder", "index": 200}]}, {"id": 101198, "name": "Black Ox Adept", "type": "single", "posX": 10800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101199], "entries": [{"id": 125003, "definitionId": 129841, "maxRanks": 1, "type": "passive", "name": "Black Ox Adept", "spellId": 455079, "icon": "spell_monk_brewmastertraining", "index": 100}]}, {"id": 101711, "name": "Heightened Guard", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101199], "entries": [{"id": 125002, "definitionId": 129840, "maxRanks": 1, "type": "passive", "name": "Heightened Guard", "spellId": 455081, "icon": "ability_monk_guard", "index": 100}]}, {"id": 101192, "name": "Call to Arms", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101193], "entries": [{"id": 124995, "definitionId": 129833, "maxRanks": 1, "type": "passive", "name": "Call to Arms", "spellId": 397251, "icon": "inv_ability_monk_jadefirestomp", "index": 100}]}, {"id": 101712, "name": "Chi Surge", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101193], "entries": [{"id": 124994, "definitionId": 129832, "maxRanks": 1, "type": "passive", "name": "Chi Surge", "spellId": 393400, "icon": "ability_monk_chiexplosion", "index": 100}]}], "heroNodes": [{"id": 101248, "name": "Flurry Strikes", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 65, "next": [101247, 101249, 101246], "prev": [], "entries": [{"id": 125069, "definitionId": 129901, "maxRanks": 1, "type": "passive", "name": "Flurry Strikes", "spellId": 450615, "icon": "inv_ability_shadopanmonk_flurrystrikes", "index": 100}], "freeNode": true}, {"id": 101247, "name": "Pride of Pandaria / High Impact", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101254], "prev": [101248], "entries": [{"id": 125068, "definitionId": 129900, "maxRanks": 1, "type": "passive", "name": "Pride of Pandaria", "spellId": 450979, "icon": "inv_staff_2h_pandarenmonk_c_01", "index": 100}, {"id": 125067, "definitionId": 129899, "maxRanks": 1, "type": "passive", "name": "High Impact", "spellId": 450982, "icon": "ability_monk_powerstrikes", "index": 200}]}, {"id": 101249, "name": "Veteran's Eye", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101250], "prev": [101248], "entries": [{"id": 125070, "definitionId": 129902, "maxRanks": 1, "type": "passive", "name": "Veteran's Eye", "spellId": 450987, "icon": "ability_monk_provoke", "index": 100}]}, {"id": 101246, "name": "Martial Precision", "type": "single", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101245], "prev": [101248], "entries": [{"id": 125066, "definitionId": 129898, "maxRanks": 1, "type": "passive", "name": "Martial Precision", "spellId": 450990, "icon": "ability_monk_jab", "index": 100}]}, {"id": 101254, "name": "Protect and Serve / Lead from the Front", "type": "choice", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101253], "prev": [101247], "entries": [{"id": 125076, "definitionId": 129908, "maxRanks": 1, "type": "passive", "name": "Protect and Serve", "spellId": 450984, "icon": "ability_monk_vivify", "index": 100}, {"id": 125075, "definitionId": 129907, "maxRanks": 1, "type": "passive", "name": "Lead from the Front", "spellId": 450985, "icon": "ability_monk_quipunch", "index": 200}]}, {"id": 101250, "name": "One Versus Many", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101251], "prev": [101249], "entries": [{"id": 125071, "definitionId": 129903, "maxRanks": 1, "type": "passive", "name": "One Versus Many", "spellId": 450988, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101245, "name": "Whirling Steel / Predictive Training", "type": "choice", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101244], "prev": [101246], "entries": [{"id": 125065, "definitionId": 129897, "maxRanks": 1, "type": "passive", "name": "Whirling Steel", "spellId": 450991, "icon": "ability_whirlwind", "index": 100}, {"id": 125064, "definitionId": 129896, "maxRanks": 1, "type": "passive", "name": "Predictive Training", "spellId": 450992, "icon": "ability_monk_domeofmist", "index": 200}]}, {"id": 101253, "name": "Against All Odds", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101254], "entries": [{"id": 125074, "definitionId": 129906, "maxRanks": 1, "type": "passive", "name": "Against All Odds", "spellId": 450986, "icon": "achievement_legionpvp6tier1", "index": 100}]}, {"id": 101251, "name": "Efficient Training", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101250], "entries": [{"id": 125072, "definitionId": 129904, "maxRanks": 1, "type": "passive", "name": "Efficient Training", "spellId": 450989, "icon": "inv_fistofthewhitetiger", "index": 100}]}, {"id": 101244, "name": "Vigilant Watch", "type": "single", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101245], "entries": [{"id": 125063, "definitionId": 129895, "maxRanks": 1, "type": "passive", "name": "Vigilant Watch", "spellId": 450993, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 101252, "name": "Wisdom of the Wall", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 65, "next": [], "prev": [101244, 101253, 101251], "entries": [{"id": 125073, "definitionId": 129905, "maxRanks": 1, "type": "passive", "name": "Wisdom of the Wall", "spellId": 450994, "icon": "inv_legendary_sigilofwisdom", "index": 100}]}, {"id": 101223, "name": "Aspect of Harmony", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 66, "requiresNode": 101067, "next": [101222, 101224, 101230], "prev": [], "entries": [{"id": 125033, "definitionId": 129869, "maxRanks": 1, "type": "passive", "name": "Aspect of Harmony", "spellId": 450508, "icon": "inv_ability_masterofharmonymonk_aspectofharmony", "index": 100}], "freeNode": true}, {"id": 101222, "name": "Manifestation", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "requiresNode": 102433, "next": [101221], "prev": [101223], "entries": [{"id": 125032, "definitionId": 129868, "maxRanks": 1, "type": "passive", "name": "Manifestation", "spellId": 450875, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 100}]}, {"id": 101224, "name": "Purified Spirit / Harmonic Gambit", "type": "choice", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101225], "prev": [101223], "entries": [{"id": 125035, "definitionId": 129871, "maxRanks": 1, "type": "passive", "name": "Purified Spirit", "spellId": 450867, "icon": "ability_monk_explodingjadeblossom", "index": 100}, {"id": 125034, "definitionId": 129870, "maxRanks": 1, "type": "passive", "name": "Harmonic Gambit", "spellId": 450870, "icon": "passive_monk_teachingsofmonastery", "index": 200}]}, {"id": 101230, "name": "Balanced Stratagem", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101229], "prev": [101223], "entries": [{"id": 125043, "definitionId": 129879, "maxRanks": 1, "type": "passive", "name": "Balanced Stratagem", "spellId": 450889, "icon": "ability_monk_sphereharmonydiscord", "index": 100}]}, {"id": 101221, "name": "Tiger's Vigor / Roar from the Heavens", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101220], "prev": [101222], "entries": [{"id": 125031, "definitionId": 129867, "maxRanks": 1, "type": "passive", "name": "Tiger's Vigor", "spellId": 451041, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125030, "definitionId": 129866, "maxRanks": 1, "type": "passive", "name": "Roar from the Heavens", "spellId": 451043, "icon": "inv_celestialserpentmount", "index": 200}]}, {"id": 101225, "name": "Endless Draught", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101226], "prev": [101224], "entries": [{"id": 125036, "definitionId": 129872, "maxRanks": 1, "type": "passive", "name": "Endless Draught", "spellId": 450892, "icon": "inv_drink_25_honeytea", "index": 100}]}, {"id": 101229, "name": "Mantra of Purity / Mantra of Tenacity", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101228], "prev": [101230], "entries": [{"id": 125042, "definitionId": 129878, "maxRanks": 1, "type": "passive", "name": "Mantra of Purity", "spellId": 451036, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 125041, "definitionId": 129877, "maxRanks": 1, "type": "passive", "name": "Mantra of Tenacity", "spellId": 451029, "icon": "spell_monk_brewmastertraining", "index": 200}]}, {"id": 101220, "name": "Overwhelming Force", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101221], "entries": [{"id": 125029, "definitionId": 129865, "maxRanks": 1, "type": "passive", "name": "Overwhelming Force", "spellId": 451024, "icon": "ability_titankeeper_piercingcorruption", "index": 100}]}, {"id": 101226, "name": "Path of Resurgence / Way of a Thousand Strikes", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101225], "entries": [{"id": 125038, "definitionId": 129874, "maxRanks": 1, "type": "passive", "name": "Path of Resurgence", "spellId": 450912, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 125037, "definitionId": 129873, "maxRanks": 1, "type": "passive", "name": "Way of a Thousand Strikes", "spellId": 450965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101228, "name": "Clarity of Purpose", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101229], "entries": [{"id": 125040, "definitionId": 129876, "maxRanks": 1, "type": "passive", "name": "Clarity of Purpose", "spellId": 451017, "icon": "ability_titankeeper_cleanse", "index": 100}]}, {"id": 101227, "name": "Coalescence", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 66, "next": [], "prev": [101228, 101220, 101226], "entries": [{"id": 125039, "definitionId": 129875, "maxRanks": 1, "type": "passive", "name": "Coalescence", "spellId": 450529, "icon": "ability_monk_effuse", "index": 100}]}], "subTreeNodes": [{"id": 101219, "name": "Master of Harmony / Shado-Pan", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125028, "type": "subtree", "name": "Master of Harmony", "traitSubTreeId": 66, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-masterofharmony", "nodes": [101223, 101222, 101224, 101230, 101221, 101225, 101229, 101220, 101226, 101228, 101227]}, {"id": 125027, "type": "subtree", "name": "Shado-Pan", "traitSubTreeId": 65, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-shadopan", "nodes": [101248, 101247, 101249, 101246, 101254, 101250, 101245, 101253, 101251, 101244, 101252]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]}, {"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Windwalker", "specId": 269, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101150], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101150, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 101159], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101150, "name": "Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184, 101183], "prev": [101185, 101149], "entries": [{"id": 124941, "definitionId": 129779, "maxRanks": 1, "type": "active", "name": "Detox", "spellId": 218164, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [101159, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [101159, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101153, 101148, 101150], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101185, 101150], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 101159, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101160, 101146, 101145], "entries": [{"id": 124953, "definitionId": 129791, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 124952, "definitionId": 129790, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 460485, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152, 101150], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101159, 101145], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101137], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101137], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101137, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101159, 101158, 101166], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101162], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101162], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101162, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101137, "name": "Dance of the Wind", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124927, "definitionId": 129765, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 432181, "icon": "ability_monk_dematerialize", "index": 100}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101162, "name": "Summon White Tiger Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101163, 101165, 101173], "entries": [{"id": 124956, "definitionId": 129794, "maxRanks": 1, "type": "passive", "name": "Summon White Tiger Statue", "spellId": 450639, "icon": "ability_monk_summonwhitetigerstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101137, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101162, 101135, 101174], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101218, "name": "Fists of Fury", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101048, 101217, 101036], "prev": [], "entries": [{"id": 125026, "definitionId": 129864, "maxRanks": 1, "type": "active", "name": "Fists of Fury", "spellId": 113656, "icon": "monk_ability_fistoffury", "index": 100}]}, {"id": 101048, "name": "Momentum Boost", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101049, 101047], "prev": [101218], "entries": [{"id": 124820, "definitionId": 129658, "maxRanks": 1, "type": "passive", "name": "Momentum Boost", "spellId": 451294, "icon": "inv_belt_leather_raidmonk_n_01", "index": 100}]}, {"id": 101217, "name": "Combat Wisdom", "type": "single", "posX": 12600, "posY": 2100, "maxRanks": 1, "next": [101054], "prev": [101218], "entries": [{"id": 125025, "definitionId": 129863, "maxRanks": 1, "type": "passive", "name": "Combat Wisdom", "spellId": 121817, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101036, "name": "Acclamation", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101037, 101035], "prev": [101218], "entries": [{"id": 124806, "definitionId": 129644, "maxRanks": 1, "type": "passive", "name": "Acclamation", "spellId": 451432, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101049, "name": "Touch of the Tiger", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101055], "prev": [101048], "entries": [{"id": 124821, "definitionId": 129659, "maxRanks": 1, "type": "passive", "name": "Touch of the Tiger", "spellId": 388856, "icon": "ability_monk_tigerpalm", "index": 100}]}, {"id": 101047, "name": "Hardened Soles", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [101055], "prev": [101048], "entries": [{"id": 124819, "definitionId": 129657, "maxRanks": 1, "type": "passive", "name": "Hardened Soles", "spellId": 391383, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101037, "name": "Ascension", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [101039], "prev": [101036], "entries": [{"id": 124807, "definitionId": 129645, "maxRanks": 1, "type": "passive", "name": "Ascension", "spellId": 115396, "icon": "ability_monk_ascension", "index": 100}]}, {"id": 101035, "name": "Ferociousness", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101039], "prev": [101036], "entries": [{"id": 124805, "definitionId": 129643, "maxRanks": 1, "type": "passive", "name": "Ferociousness", "spellId": 458623, "icon": "ability_mount_whitetiger", "index": 100}]}, {"id": 101055, "name": "Crane Vortex", "type": "single", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [101050, 101061, 101060], "prev": [101049, 101047], "entries": [{"id": 124828, "definitionId": 129666, "maxRanks": 1, "type": "passive", "name": "Crane Vortex", "spellId": 388848, "icon": "ability_monk_cranekick_new", "index": 100}]}, {"id": 101054, "name": "Teachings of the Monastery", "type": "single", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101061, 101053, 101216], "prev": [101217], "entries": [{"id": 124827, "definitionId": 129665, "maxRanks": 1, "type": "passive", "name": "Teachings of the Monastery", "spellId": 116645, "icon": "passive_monk_teachingsofmonastery", "index": 100}]}, {"id": 101039, "name": "Glory of the Dawn", "type": "single", "posX": 13800, "posY": 3300, "maxRanks": 1, "next": [101216, 101038, 101215], "prev": [101037, 101035], "entries": [{"id": 124810, "definitionId": 129648, "maxRanks": 1, "type": "passive", "name": "Glory of the Dawn", "spellId": 392958, "icon": "ability_monk_mightyoxkick", "index": 100}]}, {"id": 101050, "name": "Jade Ignition", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101060], "prev": [101055], "entries": [{"id": 124822, "definitionId": 129660, "maxRanks": 1, "type": "passive", "name": "Jade Ignition", "spellId": 392979, "icon": "ability_monk_chiexplosion", "index": 100}]}, {"id": 101061, "name": "Courageous Impulse", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101060], "prev": [101055, 101054], "entries": [{"id": 124835, "definitionId": 129673, "maxRanks": 1, "type": "passive", "name": "Courageous Impulse", "spellId": 451495, "icon": "inv_glove_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101053, "name": "Storm, Earth, and Fire", "type": "single", "posX": 12600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101052, 101051, 101206], "prev": [101054], "entries": [{"id": 124826, "definitionId": 129664, "maxRanks": 1, "type": "active", "name": "Storm, Earth, and Fire", "spellId": 137639, "icon": "spell_nature_giftofthewild", "index": 100}]}, {"id": 101216, "name": "Flurry of Xuen / Hit Combo", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101215], "prev": [101039, 101054], "entries": [{"id": 125024, "definitionId": 129862, "maxRanks": 1, "type": "passive", "name": "Flurry of Xuen", "spellId": 452137, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125023, "definitionId": 129861, "maxRanks": 1, "type": "passive", "name": "Hit Combo", "spellId": 196740, "icon": "ability_monk_palmstrike", "index": 200}]}, {"id": 101038, "name": "Brawler's Intensity / Meridian Strikes", "type": "choice", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101215], "prev": [101039], "entries": [{"id": 124809, "definitionId": 129647, "maxRanks": 1, "type": "passive", "name": "Brawler's Intensity", "spellId": 451485, "icon": "inv_staff_2h_artifactmonkeyking_d_03", "index": 100}, {"id": 124808, "definitionId": 129646, "maxRanks": 1, "type": "passive", "name": "Meridian Strikes", "spellId": 391330, "icon": "ability_monk_touchofdeath", "index": 200}]}, {"id": 101060, "name": "Dance of Chi-Ji", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101057, 101056, 101062], "prev": [101061, 101055, 101050], "entries": [{"id": 124834, "definitionId": 129672, "maxRanks": 1, "type": "passive", "name": "Dance of Chi-Ji", "spellId": 325201, "icon": "ability_monk_cranekick_new", "index": 100}]}, {"id": 101052, "name": "Drinking Horn Cover / Spiritual Focus", "type": "choice", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101062, 101206], "prev": [101053], "entries": [{"id": 124825, "definitionId": 129663, "maxRanks": 1, "type": "passive", "name": "Drinking Horn Cover", "spellId": 391370, "icon": "ability_warrior_unrelentingassault", "index": 100}, {"id": 124824, "definitionId": 129662, "maxRanks": 1, "type": "passive", "name": "Spiritual Focus", "spellId": 280197, "icon": "spell_nature_giftofthewild", "index": 200}]}, {"id": 101051, "name": "Ordered Elements", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101206, 101214], "prev": [101053], "entries": [{"id": 124823, "definitionId": 129661, "maxRanks": 1, "type": "passive", "name": "Ordered Elements", "spellId": 451463, "icon": "ability_revendreth_monk", "index": 100}]}, {"id": 101215, "name": "Strike of the Windlord", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101214, 101046, 101040], "prev": [101038, 101039, 101216], "entries": [{"id": 125022, "definitionId": 129860, "maxRanks": 1, "type": "active", "name": "Strike of the Windlord", "spellId": 392983, "icon": "inv_hand_1h_artifactskywall_d_01", "index": 100}]}, {"id": 101057, "name": "Martial Mixture", "type": "single", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101059], "prev": [101060], "entries": [{"id": 124830, "definitionId": 129668, "maxRanks": 1, "type": "passive", "name": "Martial Mixture", "spellId": 451454, "icon": "ability_monk_powerstrikes", "index": 100}]}, {"id": 101056, "name": "Energy Burst", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101059, 101205], "prev": [101060], "entries": [{"id": 124829, "definitionId": 129667, "maxRanks": 1, "type": "passive", "name": "Energy Burst", "spellId": 451498, "icon": "ability_monk_blackoutstrike", "index": 100}]}, {"id": 101062, "name": "Shadowboxing Treads", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101205], "prev": [101052, 101060], "entries": [{"id": 124836, "definitionId": 129674, "maxRanks": 1, "type": "passive", "name": "Shadowboxing Treads", "spellId": 392982, "icon": "ability_monk_roundhousekick", "index": 100}]}, {"id": 101206, "name": "Invoke Xuen, the White Tiger", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101205, 101207, 101213], "prev": [101053, 101052, 101051], "entries": [{"id": 125013, "definitionId": 129851, "maxRanks": 1, "type": "active", "name": "Invoke Xuen, the White Tiger", "spellId": 123904, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101214, "name": "Inner Peace", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101213], "prev": [101215, 101051], "entries": [{"id": 125021, "definitionId": 129859, "maxRanks": 1, "type": "passive", "name": "Inner Peace", "spellId": 397768, "icon": "ability_monk_jasmineforcetea", "index": 100}]}, {"id": 101046, "name": "Rushing Jade Wind", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101213, 101045], "prev": [101215], "entries": [{"id": 124818, "definitionId": 129656, "maxRanks": 1, "type": "passive", "name": "Rushing Jade Wind", "spellId": 451505, "icon": "ability_monk_rushingjadewind", "index": 100}]}, {"id": 101040, "name": "Thunderfist", "type": "single", "posX": 14400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101045], "prev": [101215], "entries": [{"id": 124811, "definitionId": 129649, "maxRanks": 1, "type": "passive", "name": "Thunderfist", "spellId": 392985, "icon": "inv_hand_1h_artifactskywall_d_01", "index": 100}]}, {"id": 101059, "name": "Sequenced Strikes", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101058, 101204], "prev": [101056, 101057], "entries": [{"id": 124833, "definitionId": 129671, "maxRanks": 1, "type": "passive", "name": "Sequenced Strikes", "spellId": 451515, "icon": "ability_monk_sparring", "index": 100}]}, {"id": 101205, "name": "Rising Star", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101204], "prev": [101062, 101206, 101056], "entries": [{"id": 125012, "definitionId": 129850, "maxRanks": 1, "type": "passive", "name": "Rising Star", "spellId": 388849, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101207, "name": "Invoker's Delight", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101208, 101210, 101212], "prev": [101206], "entries": [{"id": 125014, "definitionId": 129852, "maxRanks": 1, "type": "passive", "name": "Invoker's Delight", "spellId": 388661, "icon": "inv_inscription_80_warscroll_battleshout", "index": 100}]}, {"id": 101213, "name": "Dual Threat", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101212, 101044], "prev": [101214, 101046, 101206], "entries": [{"id": 125020, "definitionId": 129858, "maxRanks": 1, "type": "passive", "name": "Dual Threat", "spellId": 451823, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101045, "name": "Gale Force", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101044, 101041], "prev": [101040, 101046], "entries": [{"id": 124817, "definitionId": 129655, "maxRanks": 1, "type": "passive", "name": "Gale Force", "spellId": 451580, "icon": "ability_skyreach_wind", "index": 100}]}, {"id": 101058, "name": "Last Emperor's Capacitor / ", "type": "single", "posX": 10200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102251], "prev": [101059], "entries": [{"id": 124832, "definitionId": 129670, "maxRanks": 1, "type": "passive", "name": "Last Emperor's Capacitor", "spellId": 392989, "icon": "ability_warrior_unrelentingassault", "index": 100}, {}]}, {"id": 101204, "name": "Whirling Dragon Punch", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101203, 101209], "prev": [101059, 101205], "entries": [{"id": 125011, "definitionId": 129849, "maxRanks": 1, "type": "active", "name": "Whirling Dragon Punch", "spellId": 152175, "icon": "ability_monk_hurricanestrike", "index": 100}]}, {"id": 101208, "name": "Xuen's Bond", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101209], "prev": [101207], "entries": [{"id": 125015, "definitionId": 129853, "maxRanks": 1, "type": "passive", "name": "Xuen's Bond", "spellId": 392986, "icon": "ability_demonhunter_netherbond", "index": 100}]}, {"id": 101210, "name": "Xuen's Battlegear", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101209, 101211], "prev": [101207], "entries": [{"id": 125017, "definitionId": 129855, "maxRanks": 1, "type": "passive", "name": "Xuen's Battlegear", "spellId": 392993, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101212, "name": "Transfer the Power", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101211], "prev": [101207, 101213], "entries": [{"id": 125019, "definitionId": 129857, "maxRanks": 1, "type": "passive", "name": "Transfer the Power", "spellId": 195300, "icon": "ability_thunderking_kickshell", "index": 100}]}, {"id": 101044, "name": "Jadefire Fists / Jadefire Stomp", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101043, 101042], "prev": [101045, 101213], "entries": [{"id": 124816, "definitionId": 129654, "maxRanks": 1, "type": "passive", "name": "Jadefire Fists", "spellId": 457974, "icon": "spell_animaardenweald_missile", "index": 100}, {"id": 126026, "definitionId": 130858, "maxRanks": 1, "type": "active", "name": "Jadefire Stomp", "spellId": 388193, "icon": "inv_ability_monk_jadefirestomp", "index": 200}]}, {"id": 101041, "name": "Communion With Wind", "type": "single", "posX": 15000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [102250], "prev": [101045], "entries": [{"id": 124812, "definitionId": 129650, "maxRanks": 1, "type": "passive", "name": "Communion With Wind", "spellId": 451576, "icon": "ability_skyreach_wind_wall", "index": 100}]}, {"id": 102251, "name": "Power of the Thunder King / ", "type": "single", "posX": 10200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101058], "entries": [{"id": 126309, "definitionId": 131135, "maxRanks": 1, "type": "passive", "name": "Power of the Thunder King", "spellId": 459809, "icon": "ability_thunderking_thunderstruck", "index": 100}, {}]}, {"id": 101203, "name": "Revolving Whirl / Knowledge of the Broken Temple", "type": "choice", "posX": 10800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101204], "entries": [{"id": 125010, "definitionId": 129848, "maxRanks": 1, "type": "passive", "name": "Revolving Whirl", "spellId": 451524, "icon": "ability_monk_chiswirl", "index": 100}, {"id": 125009, "definitionId": 129847, "maxRanks": 1, "type": "passive", "name": "Knowledge of the Broken Temple", "spellId": 451529, "icon": "inv_glove_leather_pvpmonk_f_01", "index": 200}]}, {"id": 101209, "name": "Memory of the Monastery", "type": "single", "posX": 12000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101204, 101210, 101208], "entries": [{"id": 125016, "definitionId": 129854, "maxRanks": 1, "type": "passive", "name": "Memory of the Monastery", "spellId": 454969, "icon": "ability_mount_goatmountwhite", "index": 100}]}, {"id": 101211, "name": "Fury of Xuen", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101212, 101210], "entries": [{"id": 125018, "definitionId": 129856, "maxRanks": 1, "type": "passive", "name": "Fury of Xuen", "spellId": 396166, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101043, "name": "Path of Jade / Singularly Focused Jade", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101044], "entries": [{"id": 124815, "definitionId": 129653, "maxRanks": 1, "type": "passive", "name": "Path of Jade", "spellId": 392994, "icon": "spell_animaardenweald_beam", "index": 100}, {"id": 124814, "definitionId": 129652, "maxRanks": 1, "type": "passive", "name": "Singularly Focused Jade", "spellId": 451573, "icon": "ability_monk_fortuneturned", "index": 200}]}, {"id": 101042, "name": "Jadefire Harmony", "type": "single", "posX": 14400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101044], "entries": [{"id": 124813, "definitionId": 129651, "maxRanks": 1, "type": "passive", "name": "Jadefire Harmony", "spellId": 391412, "icon": "ability_ardenweald_monk", "index": 100}]}, {"id": 102250, "name": "Darting Hurricane", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101041], "entries": [{"id": 126307, "definitionId": 131133, "maxRanks": 1, "type": "passive", "name": "Darting Hurricane", "spellId": 459839, "icon": "ability_skyreach_four_wind", "index": 100}]}], "heroNodes": [{"id": 101243, "name": "Celestial Conduit", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 64, "next": [101236, 101242, 101233], "prev": [], "entries": [{"id": 125062, "definitionId": 129894, "maxRanks": 1, "type": "active", "name": "Celestial Conduit", "spellId": 443028, "icon": "inv_ability_conduitofthecelestialsmonk_celestialconduit", "index": 100}], "freeNode": true}, {"id": 101248, "name": "Flurry Strikes", "type": "single", "posX": 15350, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 65, "next": [101247, 101249, 101246], "prev": [], "entries": [{"id": 125069, "definitionId": 129901, "maxRanks": 1, "type": "passive", "name": "Flurry Strikes", "spellId": 450615, "icon": "inv_ability_shadopanmonk_flurrystrikes", "index": 100}], "freeNode": true}, {"id": 101236, "name": "Temple Training / Xuen's Guidance", "type": "choice", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101237], "prev": [101243], "entries": [{"id": 125054, "definitionId": 129886, "maxRanks": 1, "type": "passive", "name": "Temple Training", "spellId": 442743, "icon": "ability_monk_provoke", "index": 100}, {"id": 125053, "definitionId": 129885, "maxRanks": 1, "type": "passive", "name": "Xuen's Guidance", "spellId": 442687, "icon": "ability_monk_dpsstance", "index": 200}]}, {"id": 101242, "name": "Courage of the White Tiger", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101241], "prev": [101243], "entries": [{"id": 125061, "definitionId": 129893, "maxRanks": 1, "type": "passive", "name": "Courage of the White Tiger", "spellId": 443087, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101233, "name": "Restore Balance / Yu'lon's Knowledge", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101234], "prev": [101243], "entries": [{"id": 125049, "definitionId": 129881, "maxRanks": 1, "type": "passive", "name": "Restore Balance", "spellId": 442719, "icon": "ability_monk_chiexplosion", "index": 100}, {"id": 125048, "definitionId": 129880, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Knowledge", "spellId": 443625, "icon": "inv_jewelcrafting_jadeserpent", "index": 200}]}, {"id": 101247, "name": "Pride of Pandaria / High Impact", "type": "choice", "posX": 14750, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101254], "prev": [101248], "entries": [{"id": 125068, "definitionId": 129900, "maxRanks": 1, "type": "passive", "name": "Pride of Pandaria", "spellId": 450979, "icon": "inv_staff_2h_pandarenmonk_c_01", "index": 100}, {"id": 125067, "definitionId": 129899, "maxRanks": 1, "type": "passive", "name": "High Impact", "spellId": 450982, "icon": "ability_monk_powerstrikes", "index": 200}]}, {"id": 101249, "name": "Veteran's Eye", "type": "single", "posX": 15350, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101250], "prev": [101248], "entries": [{"id": 125070, "definitionId": 129902, "maxRanks": 1, "type": "passive", "name": "Veteran's Eye", "spellId": 450987, "icon": "ability_monk_provoke", "index": 100}]}, {"id": 101246, "name": "Martial Precision", "type": "single", "posX": 15950, "posY": 1850, "maxRanks": 1, "subTreeId": 65, "next": [101245], "prev": [101248], "entries": [{"id": 125066, "definitionId": 129898, "maxRanks": 1, "type": "passive", "name": "Martial Precision", "spellId": 450990, "icon": "ability_monk_jab", "index": 100}]}, {"id": 101237, "name": "Heart of the Jade Serpent", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "requiresNode": 101120, "next": [101238], "prev": [101236], "entries": [{"id": 125055, "definitionId": 129887, "maxRanks": 1, "type": "passive", "name": "Heart of the Jade Serpent", "spellId": 443294, "icon": "ability_monk_dragonkick", "index": 100}]}, {"id": 101241, "name": "Strength of the Black Ox", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101240], "prev": [101242], "entries": [{"id": 125060, "definitionId": 129892, "maxRanks": 1, "type": "passive", "name": "Strength of the Black Ox", "spellId": 443110, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101234, "name": "Flight of the Red Crane", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101235], "prev": [101233], "entries": [{"id": 125050, "definitionId": 129882, "maxRanks": 1, "type": "passive", "name": "Flight of the Red Crane", "spellId": 443255, "icon": "inv_pet_cranegod", "index": 100}]}, {"id": 101254, "name": "Protect and Serve / Lead from the Front", "type": "choice", "posX": 14750, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101253], "prev": [101247], "entries": [{"id": 125076, "definitionId": 129908, "maxRanks": 1, "type": "passive", "name": "Protect and Serve", "spellId": 450984, "icon": "ability_monk_vivify", "index": 100}, {"id": 125075, "definitionId": 129907, "maxRanks": 1, "type": "passive", "name": "Lead from the Front", "spellId": 450985, "icon": "ability_monk_quipunch", "index": 200}]}, {"id": 101250, "name": "One Versus Many", "type": "single", "posX": 15350, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101251], "prev": [101249], "entries": [{"id": 125071, "definitionId": 129903, "maxRanks": 1, "type": "passive", "name": "One Versus Many", "spellId": 450988, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101245, "name": "Whirling Steel / Predictive Training", "type": "choice", "posX": 15950, "posY": 2450, "maxRanks": 1, "subTreeId": 65, "next": [101244], "prev": [101246], "entries": [{"id": 125065, "definitionId": 129897, "maxRanks": 1, "type": "passive", "name": "Whirling Steel", "spellId": 450991, "icon": "ability_whirlwind", "index": 100}, {"id": 125064, "definitionId": 129896, "maxRanks": 1, "type": "passive", "name": "Predictive Training", "spellId": 450992, "icon": "ability_monk_domeofmist", "index": 200}]}, {"id": 101238, "name": "Niuzao's Protection / Jade Sanctuary", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101237], "entries": [{"id": 125057, "definitionId": 129889, "maxRanks": 1, "type": "passive", "name": "Niuzao's Protection", "spellId": 442747, "icon": "ability_monk_chargingoxwave", "index": 100}, {"id": 125056, "definitionId": 129888, "maxRanks": 1, "type": "passive", "name": "Jade Sanctuary", "spellId": 443059, "icon": "ability_monk_jadeserpentbreath", "index": 200}]}, {"id": 101240, "name": "Chi-Ji's Swiftness", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101241], "entries": [{"id": 125059, "definitionId": 129891, "maxRanks": 1, "type": "passive", "name": "Chi-Ji's Swiftness", "spellId": 443566, "icon": "inv_shoulder_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101235, "name": "Inner Compass / August Dynasty", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101234], "entries": [{"id": 125052, "definitionId": 129884, "maxRanks": 1, "type": "passive", "name": "Inner Compass", "spellId": 443571, "icon": "inv_10_dungeonjewelry_explorer_trinket_1compass_color2", "index": 100}, {"id": 125051, "definitionId": 129883, "maxRanks": 1, "type": "passive", "name": "August Dynasty", "spellId": 442818, "icon": "ability_monk_legacyoftheemperor", "index": 200}]}, {"id": 101253, "name": "Against All Odds", "type": "single", "posX": 14750, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101254], "entries": [{"id": 125074, "definitionId": 129906, "maxRanks": 1, "type": "passive", "name": "Against All Odds", "spellId": 450986, "icon": "achievement_legionpvp6tier1", "index": 100}]}, {"id": 101251, "name": "Efficient Training", "type": "single", "posX": 15350, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101250], "entries": [{"id": 125072, "definitionId": 129904, "maxRanks": 1, "type": "passive", "name": "Efficient Training", "spellId": 450989, "icon": "inv_fistofthewhitetiger", "index": 100}]}, {"id": 101244, "name": "Vigilant Watch", "type": "single", "posX": 15950, "posY": 3050, "maxRanks": 1, "subTreeId": 65, "next": [101252], "prev": [101245], "entries": [{"id": 125063, "definitionId": 129895, "maxRanks": 1, "type": "passive", "name": "Vigilant Watch", "spellId": 450993, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 101239, "name": "Unity Within", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 64, "next": [], "prev": [101240, 101235, 101238], "entries": [{"id": 125058, "definitionId": 129890, "maxRanks": 1, "type": "passive", "name": "Unity Within", "spellId": 443589, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101252, "name": "Wisdom of the Wall", "type": "single", "posX": 15350, "posY": 3650, "maxRanks": 1, "subTreeId": 65, "next": [], "prev": [101244, 101253, 101251], "entries": [{"id": 125073, "definitionId": 129905, "maxRanks": 1, "type": "passive", "name": "Wisdom of the Wall", "spellId": 450994, "icon": "inv_legendary_sigilofwisdom", "index": 100}]}], "subTreeNodes": [{"id": 101232, "name": "Conduit of the Celestials / Shado-Pan", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125047, "type": "subtree", "name": "Conduit of the Celestials", "traitSubTreeId": 64, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-conduitofthecelestials", "nodes": [101243, 101236, 101242, 101233, 101237, 101241, 101234, 101238, 101240, 101235, 101239]}, {"id": 125046, "type": "subtree", "name": "Shado-Pan", "traitSubTreeId": 65, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-shadopan", "nodes": [101248, 101247, 101249, 101246, 101254, 101250, 101245, 101253, 101251, 101244, 101252]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]}, {"traitTreeId": 1000, "className": "Monk", "classId": 10, "specName": "Mistweaver", "specId": 270, "classNodes": [{"id": 101143, "name": "Soothing Mist", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101144, 101147], "prev": [], "entries": [{"id": 124933, "definitionId": 129771, "maxRanks": 1, "type": "active", "name": "Soothing Mist", "spellId": 115175, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101142, "name": "Paralysis", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101147, 101149], "prev": [], "entries": [{"id": 124932, "definitionId": 129770, "maxRanks": 1, "type": "active", "name": "Paralysis", "spellId": 115078, "icon": "ability_monk_paralysis", "index": 100}], "freeNode": true}, {"id": 101186, "name": "Rising Sun Kick", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101149, 101185], "prev": [], "entries": [{"id": 124985, "definitionId": 129823, "maxRanks": 1, "type": "active", "name": "Rising Sun Kick", "spellId": 107428, "icon": "ability_monk_risingsunkick", "index": 100}], "freeNode": true}, {"id": 101144, "name": "Elusive Mists", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [101146, 101145], "prev": [101143], "entries": [{"id": 124934, "definitionId": 129772, "maxRanks": 1, "type": "passive", "name": "Elusive Mists", "spellId": 388681, "icon": "ability_monk_soothingmists", "index": 100}]}, {"id": 101147, "name": "Tiger's Lust", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [101146, 101161, 101153], "prev": [101143, 101142], "entries": [{"id": 124937, "definitionId": 129775, "maxRanks": 1, "type": "active", "name": "Tiger's Lust", "spellId": 116841, "icon": "ability_monk_tigerslust", "index": 100}]}, {"id": 101149, "name": "Crashing Momentum / Disable", "type": "choice", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [101153, 101148, 101089], "prev": [101186, 101142], "entries": [{"id": 124940, "definitionId": 129778, "maxRanks": 1, "type": "passive", "name": "Crashing Momentum", "spellId": 450335, "icon": "ability_monk_blackoutkick", "index": 100}, {"id": 124939, "definitionId": 129777, "maxRanks": 1, "type": "active", "name": "Disable", "spellId": 116095, "icon": "ability_shockwave", "index": 200}]}, {"id": 101185, "name": "Fast Feet", "type": "single", "posX": 6000, "posY": 2100, "maxRanks": 1, "next": [101089, 101184], "prev": [101186], "entries": [{"id": 124984, "definitionId": 129822, "maxRanks": 1, "type": "passive", "name": "Fast Feet", "spellId": 388809, "icon": "ability_monk_risingsunkick", "index": 100}]}, {"id": 101146, "name": "Grace of the Crane", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [101145, 101160, 102432], "prev": [101147, 101144], "entries": [{"id": 124936, "definitionId": 129774, "maxRanks": 1, "type": "passive", "name": "Grace of the Crane", "spellId": 388811, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101161, "name": "Bounding Agility", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [101160], "prev": [101147], "entries": [{"id": 124955, "definitionId": 129793, "maxRanks": 1, "type": "passive", "name": "Bounding Agility", "spellId": 450520, "icon": "ability_monk_roll", "index": 100}]}, {"id": 101153, "name": "Calming Presence", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [101160, 101141, 101152], "prev": [101147, 101149], "entries": [{"id": 124944, "definitionId": 129782, "maxRanks": 1, "type": "passive", "name": "Calming Presence", "spellId": 388664, "icon": "inv_misc_orb_01", "index": 100}]}, {"id": 101148, "name": "Wind's Reach", "type": "single", "posX": 4800, "posY": 2700, "maxRanks": 1, "next": [101152], "prev": [101149], "entries": [{"id": 124938, "definitionId": 129776, "maxRanks": 1, "type": "passive", "name": "Wind's Reach", "spellId": 450514, "icon": "ability_monk_zenflight", "index": 100}]}, {"id": 101089, "name": "Improved Detox", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [101152, 101184], "prev": [101185, 101149], "entries": [{"id": 124866, "definitionId": 129704, "maxRanks": 1, "type": "passive", "name": "Improved Detox", "spellId": 388874, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 101145, "name": "Vivacious Vivification", "type": "single", "posX": 2400, "posY": 3300, "maxRanks": 1, "next": [102432, 101158], "prev": [101146, 101144], "entries": [{"id": 124935, "definitionId": 129773, "maxRanks": 1, "type": "passive", "name": "Vivacious Vivification", "spellId": 388812, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101160, "name": "Jade Walk", "type": "single", "posX": 3600, "posY": 3300, "maxRanks": 1, "next": [102432, 101167], "prev": [101161, 101146, 101153], "entries": [{"id": 124954, "definitionId": 129792, "maxRanks": 1, "type": "passive", "name": "Jade Walk", "spellId": 450553, "icon": "spell_lifegivingspeed", "index": 100}]}, {"id": 101141, "name": "Pressure Points", "type": "single", "posX": 4200, "posY": 3300, "maxRanks": 1, "next": [101167], "prev": [101153], "entries": [{"id": 124931, "definitionId": 129769, "maxRanks": 1, "type": "passive", "name": "Pressure Points", "spellId": 450432, "icon": "ability_monk_deadlyreach", "index": 100}]}, {"id": 101152, "name": "Spear Hand Strike", "type": "single", "posX": 4800, "posY": 3300, "maxRanks": 1, "next": [101167, 101151, 101183], "prev": [101089, 101153, 101148], "entries": [{"id": 124943, "definitionId": 129781, "maxRanks": 1, "type": "active", "name": "Spear Hand Strike", "spellId": 116705, "icon": "ability_monk_spearhand", "index": 100}]}, {"id": 101184, "name": "Ancient Arts", "type": "single", "posX": 6000, "posY": 3300, "maxRanks": 2, "next": [101183, 101140], "prev": [101089, 101185], "entries": [{"id": 124983, "definitionId": 129821, "maxRanks": 2, "type": "passive", "name": "Ancient Arts", "spellId": 344359, "icon": "ability_monk_dpsstance", "index": 100}]}, {"id": 102432, "name": "Chi Wave / Chi Burst", "type": "choice", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101158, 101156], "prev": [101146, 101160, 101145], "entries": [{"id": 126500, "definitionId": 131326, "maxRanks": 1, "type": "passive", "name": "Chi Wave", "spellId": 450391, "icon": "ability_monk_chiwave", "index": 100}, {"id": 126499, "definitionId": 131325, "maxRanks": 1, "type": "active", "name": "Chi Burst", "spellId": 123986, "icon": "spell_arcane_arcanetorrent", "index": 200}]}, {"id": 101167, "name": "Transcendence", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101166, 101136, 101138], "prev": [101160, 101141, 101152], "entries": [{"id": 124962, "definitionId": 129800, "maxRanks": 1, "type": "active", "name": "Transcendence", "spellId": 101643, "icon": "monk_ability_transcendence", "index": 100}]}, {"id": 101151, "name": "Energy Transfer", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182], "prev": [101152], "entries": [{"id": 124942, "definitionId": 129780, "maxRanks": 1, "type": "passive", "name": "Energy Transfer", "spellId": 450631, "icon": "monk_ability_avertharm", "index": 100}]}, {"id": 101183, "name": "Celerity / Chi Torpedo", "type": "choice", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101182, 101140], "prev": [101184, 101152], "entries": [{"id": 124982, "definitionId": 129820, "maxRanks": 1, "type": "passive", "name": "Celerity", "spellId": 115173, "icon": "ability_monk_quipunch", "index": 100}, {"id": 124981, "definitionId": 129819, "maxRanks": 1, "type": "active", "name": "Chi Torpedo", "spellId": 115008, "icon": "ability_monk_quitornado", "index": 200}]}, {"id": 101158, "name": "Quick Footed / Hasty Provocation", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101157], "prev": [101145, 102432], "entries": [{"id": 124951, "definitionId": 129789, "maxRanks": 1, "type": "passive", "name": "Quick Footed", "spellId": 450503, "icon": "ability_monk_hurricanestrike", "index": 100}, {"id": 124950, "definitionId": 129788, "maxRanks": 1, "type": "passive", "name": "Hasty Provocation", "spellId": 328670, "icon": "ability_monk_provoke", "index": 200}]}, {"id": 101166, "name": "Ferocity of Xuen", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101156, 101165], "prev": [101167], "entries": [{"id": 124961, "definitionId": 129799, "maxRanks": 1, "type": "passive", "name": "Ferocity of Xuen", "spellId": 388674, "icon": "ability_mount_pinktiger", "index": 100}]}, {"id": 101136, "name": "Ring of Peace / Song of Chi-Ji", "type": "choice", "posX": 4200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101163, 101173, 101165], "prev": [101167], "entries": [{"id": 124926, "definitionId": 129764, "maxRanks": 1, "type": "active", "name": "Ring of Peace", "spellId": 116844, "icon": "spell_monk_ringofpeace", "index": 100}, {"id": 124925, "definitionId": 129763, "maxRanks": 1, "type": "active", "name": "Song of Chi-Ji", "spellId": 198898, "icon": "inv_chaos_orb", "index": 200}]}, {"id": 101138, "name": "Spirit's Essence", "type": "single", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101173, 101139], "prev": [101167], "entries": [{"id": 124928, "definitionId": 129766, "maxRanks": 1, "type": "passive", "name": "Spirit's Essence", "spellId": 450595, "icon": "spell_shaman_spectraltransformation", "index": 100}]}, {"id": 101182, "name": "Tiger Tail Sweep", "type": "single", "posX": 5400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101139], "prev": [101151, 101183], "entries": [{"id": 124980, "definitionId": 129818, "maxRanks": 1, "type": "passive", "name": "Tiger Tail Sweep", "spellId": 264348, "icon": "ability_monk_legsweep", "index": 100}]}, {"id": 101140, "name": "Improved Touch of Death", "type": "single", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101139, 101180], "prev": [101184, 101183], "entries": [{"id": 124930, "definitionId": 129768, "maxRanks": 1, "type": "passive", "name": "Improved Touch of Death", "spellId": 322113, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101156, "name": "Vigorous Expulsion", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101157, 101155], "prev": [101158, 101166, 102432], "entries": [{"id": 124948, "definitionId": 129786, "maxRanks": 1, "type": "passive", "name": "Vigorous Expulsion", "spellId": 392900, "icon": "ability_monk_expelharm", "index": 100}]}, {"id": 101165, "name": "Yu'lon's Grace / Diffuse Magic", "type": "choice", "posX": 3600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101155, 101135, 101164], "prev": [101136, 101166], "entries": [{"id": 124960, "definitionId": 129798, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Grace", "spellId": 414131, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124959, "definitionId": 129797, "maxRanks": 1, "type": "active", "name": "Diffuse Magic", "spellId": 122783, "icon": "spell_monk_diffusemagic", "index": 200}]}, {"id": 101163, "name": "Peace and Prosperity", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101164], "prev": [101136], "entries": [{"id": 124957, "definitionId": 129795, "maxRanks": 1, "type": "passive", "name": "Peace and Prosperity", "spellId": 450448, "icon": "inv_inscription_deck_redcrane", "index": 100}]}, {"id": 101173, "name": "Fortifying Brew", "type": "single", "posX": 4800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101164, 101174], "prev": [101138, 101136], "entries": [{"id": 124968, "definitionId": 129806, "maxRanks": 1, "type": "active", "name": "Fortifying Brew", "spellId": 388917, "visibleSpellId": 115203, "icon": "ability_monk_fortifyingale_new", "index": 100}]}, {"id": 101139, "name": "Dance of the Wind", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101180], "prev": [101138, 101140, 101182], "entries": [{"id": 124929, "definitionId": 129767, "maxRanks": 1, "type": "passive", "name": "Dance of the Wind", "spellId": 432181, "icon": "ability_monk_dematerialize", "index": 100}]}, {"id": 101157, "name": "Save Them All", "type": "single", "posX": 2400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101158], "entries": [{"id": 124949, "definitionId": 129787, "maxRanks": 1, "type": "passive", "name": "Save Them All", "spellId": 389579, "icon": "inv_weapon_hand_22", "index": 100}]}, {"id": 101155, "name": "Swift Art", "type": "single", "posX": 3000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169], "prev": [101156, 101165], "entries": [{"id": 124947, "definitionId": 129785, "maxRanks": 1, "type": "passive", "name": "Swift Art", "spellId": 450622, "icon": "ability_monk_standingkick", "index": 100}]}, {"id": 101135, "name": "Strength of Spirit / Profound Rebuttal", "type": "choice", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101169, 101171, 101175], "prev": [101165], "entries": [{"id": 124924, "definitionId": 129762, "maxRanks": 1, "type": "passive", "name": "Strength of Spirit", "spellId": 387276, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124923, "definitionId": 129761, "maxRanks": 1, "type": "passive", "name": "Profound Rebuttal", "spellId": 392910, "icon": "ability_monk_expelharm", "index": 200}]}, {"id": 101164, "name": "Summon Jade Serpent Statue", "type": "single", "posX": 4200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175], "prev": [101173, 101163, 101165], "entries": [{"id": 124958, "definitionId": 129796, "maxRanks": 1, "type": "active", "name": "Summon Jade Serpent Statue", "spellId": 115313, "icon": "ability_monk_summonserpentstatue", "index": 100}]}, {"id": 101174, "name": "Ironshell Brew / Expeditious Fortification", "type": "choice", "posX": 4800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101175, 101177, 101179], "prev": [101173], "entries": [{"id": 124970, "definitionId": 129808, "maxRanks": 1, "type": "passive", "name": "Ironshell Brew", "spellId": 388814, "icon": "ability_monk_fortifyingale_new", "index": 100}, {"id": 124969, "definitionId": 129807, "maxRanks": 1, "type": "passive", "name": "Expeditious Fortification", "spellId": 388813, "icon": "ability_monk_fortifyingale_new", "index": 200}]}, {"id": 101180, "name": "Celestial Determination", "type": "single", "posX": 6000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101179], "prev": [101139, 101140], "entries": [{"id": 124977, "definitionId": 129815, "maxRanks": 1, "type": "passive", "name": "Celestial Determination", "spellId": 450638, "icon": "ability_monk_essencefont", "index": 100}]}, {"id": 101169, "name": "Chi Proficiency", "type": "single", "posX": 3000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101168, 101170], "prev": [101155, 101157, 101135], "entries": [{"id": 124964, "definitionId": 129802, "maxRanks": 2, "type": "passive", "name": "Chi Proficiency", "spellId": 450426, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101171, "name": "Healing Winds", "type": "single", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101170, 101176], "prev": [101135], "entries": [{"id": 124966, "definitionId": 129804, "maxRanks": 1, "type": "passive", "name": "Healing Winds", "spellId": 450560, "icon": "ability_monk_pathofmists", "index": 100}]}, {"id": 101175, "name": "Windwalking", "type": "single", "posX": 4200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176], "prev": [101135, 101174, 101164], "entries": [{"id": 124971, "definitionId": 129809, "maxRanks": 1, "type": "passive", "name": "Windwalking", "spellId": 157411, "icon": "monk_stance_whitetiger", "index": 100}]}, {"id": 101177, "name": "Bounce Back", "type": "single", "posX": 4800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101176, 101178], "prev": [101174], "entries": [{"id": 124974, "definitionId": 129812, "maxRanks": 1, "type": "passive", "name": "Bounce Back", "spellId": 389577, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 101179, "name": "Martial Instincts", "type": "single", "posX": 5400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101178, 101154], "prev": [101180, 101174], "entries": [{"id": 124976, "definitionId": 129814, "maxRanks": 2, "type": "passive", "name": "Martial Instincts", "spellId": 450427, "icon": "ability_monk_palmstrike", "index": 100}]}, {"id": 101168, "name": "Lighter Than Air", "type": "single", "posX": 2400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169], "entries": [{"id": 124963, "definitionId": 129801, "maxRanks": 1, "type": "passive", "name": "Lighter Than Air", "spellId": 449582, "icon": "ability_monk_ridethewind", "index": 100}]}, {"id": 101170, "name": "Flow of Chi", "type": "single", "posX": 3600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101169, 101171], "entries": [{"id": 124965, "definitionId": 129803, "maxRanks": 1, "type": "passive", "name": "Flow of Chi", "spellId": 450569, "icon": "ability_monk_healthsphere", "index": 100}]}, {"id": 101176, "name": "Escape from Reality / Transcendence: Linked Spirits", "type": "choice", "posX": 4200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101171, 101175], "entries": [{"id": 124973, "definitionId": 129811, "maxRanks": 1, "type": "passive", "name": "Escape from Reality", "spellId": 394110, "icon": "monk_ability_transcendence", "index": 100}, {"id": 124972, "definitionId": 129810, "maxRanks": 1, "type": "passive", "name": "Transcendence: Linked Spirits", "spellId": 434774, "icon": "monk_ability_transcendence", "index": 200}]}, {"id": 101178, "name": "Fatal Touch", "type": "single", "posX": 4800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101177, 101179], "entries": [{"id": 124975, "definitionId": 129813, "maxRanks": 1, "type": "passive", "name": "Fatal Touch", "spellId": 394123, "icon": "ability_monk_touchofdeath", "index": 100}]}, {"id": 101154, "name": "Rushing Reflexes / Clash", "type": "choice", "posX": 6000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101179], "entries": [{"id": 124946, "definitionId": 129784, "maxRanks": 1, "type": "passive", "name": "Rushing Reflexes", "spellId": 450154, "icon": "ability_monk_yulonsgift", "index": 100}, {"id": 124945, "definitionId": 129783, "maxRanks": 1, "type": "active", "name": "Clash", "spellId": 324312, "icon": "ability_monk_clashingoxcharge", "index": 200}]}], "specNodes": [{"id": 101134, "name": "Enveloping Mist", "type": "single", "posX": 12600, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [101133, 101107], "prev": [], "entries": [{"id": 124922, "definitionId": 129760, "maxRanks": 1, "type": "active", "name": "Enveloping Mist", "spellId": 124682, "icon": "spell_monk_envelopingmist", "index": 100}]}, {"id": 101133, "name": "Thunder Focus Tea", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [101096, 101132], "prev": [101134], "entries": [{"id": 124921, "definitionId": 129759, "maxRanks": 1, "type": "active", "name": "Thunder Focus Tea", "spellId": 116680, "icon": "ability_monk_thunderfocustea", "index": 100}]}, {"id": 101107, "name": "Renewing Mist", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [101132, 101110], "prev": [101134], "entries": [{"id": 124888, "definitionId": 129726, "maxRanks": 1, "type": "active", "name": "Renewing Mist", "spellId": 115151, "icon": "ability_monk_renewingmists", "index": 100}]}, {"id": 101096, "name": "Life Cocoon", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [101097, 101095], "prev": [101133], "entries": [{"id": 124875, "definitionId": 129713, "maxRanks": 1, "type": "active", "name": "Life Cocoon", "spellId": 116849, "icon": "ability_monk_chicocoon", "index": 100}]}, {"id": 101132, "name": "Mana Tea", "type": "single", "posX": 12600, "posY": 2700, "maxRanks": 1, "next": [101131], "prev": [101133, 101107], "entries": [{"id": 124920, "definitionId": 129758, "maxRanks": 1, "type": "active", "name": "Mana Tea", "spellId": 115869, "icon": "monk_ability_cherrymanatea", "index": 100}]}, {"id": 101110, "name": "Invigorating Mists", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [101109, 101108], "prev": [101107], "entries": [{"id": 124891, "definitionId": 129729, "maxRanks": 1, "type": "passive", "name": "Invigorating Mists", "spellId": 274586, "icon": "ability_monk_vivify", "index": 100}]}, {"id": 101097, "name": "Crane Style", "type": "single", "posX": 10800, "posY": 3300, "maxRanks": 1, "next": [101099], "prev": [101096], "entries": [{"id": 124876, "definitionId": 129714, "maxRanks": 1, "type": "passive", "name": "Crane Style", "spellId": 446260, "icon": "ability_monk_mightyoxkick", "index": 100}]}, {"id": 101131, "name": "Revival / Restoral", "type": "choice", "posX": 12600, "posY": 3300, "maxRanks": 1, "next": [101092, 101130, 101129], "prev": [101132], "entries": [{"id": 124919, "definitionId": 129757, "maxRanks": 1, "type": "active", "name": "Revival", "spellId": 115310, "icon": "spell_monk_revival", "index": 100}, {"id": 124918, "definitionId": 129756, "maxRanks": 1, "type": "active", "name": "Restoral", "spellId": 388615, "icon": "ability_monk_tigerstyle", "index": 200}]}, {"id": 101109, "name": "Healing Elixir", "type": "single", "posX": 14400, "posY": 3300, "maxRanks": 1, "next": [101111], "prev": [101110], "entries": [{"id": 124890, "definitionId": 129728, "maxRanks": 1, "type": "passive", "name": "Healing Elixir", "spellId": 122280, "icon": "ability_monk_jasmineforcetea", "index": 100}]}, {"id": 101095, "name": "Calming Coalescence / Refreshment", "type": "choice", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101099, 101094, 101100], "prev": [101096], "entries": [{"id": 124874, "definitionId": 129712, "maxRanks": 1, "type": "passive", "name": "Calming Coalescence", "spellId": 388218, "icon": "ability_monk_healthsphere", "index": 100}, {"id": 124873, "definitionId": 129711, "maxRanks": 1, "type": "passive", "name": "Refreshment", "spellId": 467270, "icon": "inv_misc_gem_pearl_06", "index": 200}]}, {"id": 101092, "name": "Uplifted Spirits", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101094, 101129], "prev": [101131], "entries": [{"id": 124869, "definitionId": 129707, "maxRanks": 1, "type": "passive", "name": "Uplifted Spirits", "spellId": 388551, "icon": "monk_stance_wiseserpent", "index": 100}]}, {"id": 101130, "name": "Energizing Brew / Lifecycles", "type": "choice", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101129], "prev": [101131], "entries": [{"id": 124917, "definitionId": 129755, "maxRanks": 1, "type": "passive", "name": "Energizing Brew", "spellId": 422031, "icon": "ui_profession_herbalism", "index": 100}, {"id": 124916, "definitionId": 129754, "maxRanks": 1, "type": "passive", "name": "Lifecycles", "spellId": 197915, "icon": "ability_monk_souldance", "index": 200}]}, {"id": 101108, "name": "Zen Pulse", "type": "single", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101122, 101111], "prev": [101110], "entries": [{"id": 124889, "definitionId": 129727, "maxRanks": 1, "type": "passive", "name": "Zen Pulse", "spellId": 446326, "icon": "ability_monk_forcesphere", "index": 100}]}, {"id": 101099, "name": "Mists of Life", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101098, 101100], "prev": [101095, 101097], "entries": [{"id": 124879, "definitionId": 129717, "maxRanks": 1, "type": "passive", "name": "Mists of Life", "spellId": 388548, "icon": "inv_shoulder__inv_leather_raidmonkmythic_s_01", "index": 100}]}, {"id": 101094, "name": "Overflowing Mists", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101100, 101093], "prev": [101095, 101092], "entries": [{"id": 124872, "definitionId": 129710, "maxRanks": 2, "type": "passive", "name": "Overflowing Mists", "spellId": 388511, "icon": "inv_legion_faction_dreamweavers", "index": 100}]}, {"id": 101129, "name": "Invoke Yu'lon, the Jade Serpent / Invoke Chi-Ji, the Red Crane", "type": "choice", "posX": 12600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101093, 101128, 101112], "prev": [101092, 101130, 101131], "entries": [{"id": 124915, "definitionId": 129753, "maxRanks": 1, "type": "active", "name": "Invoke Yu'lon, the Jade Serpent", "spellId": 322118, "icon": "ability_monk_dragonkick", "index": 100}, {"id": 124914, "definitionId": 129752, "maxRanks": 1, "type": "active", "name": "Invoke Chi-Ji, the Red Crane", "spellId": 325197, "icon": "inv_pet_cranegod", "index": 200}]}, {"id": 101122, "name": "Deep Clarity", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [101112, 101121], "prev": [101108], "entries": [{"id": 124906, "definitionId": 129744, "maxRanks": 1, "type": "passive", "name": "Deep Clarity", "spellId": 446345, "icon": "ability_monk_zenmeditation", "index": 200}]}, {"id": 101111, "name": "Rapid Diffusion", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [101121, 101120], "prev": [101108, 101109], "entries": [{"id": 124892, "definitionId": 129730, "maxRanks": 2, "type": "passive", "name": "Rapid Diffusion", "spellId": 388847, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 101098, "name": "Chrysalis / Burst of Life", "type": "choice", "posX": 10800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101101], "prev": [101099], "entries": [{"id": 124878, "definitionId": 129716, "maxRanks": 1, "type": "passive", "name": "Chrysalis", "spellId": 202424, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 124877, "definitionId": 129715, "maxRanks": 1, "type": "passive", "name": "Burst of Life", "spellId": 399226, "icon": "ability_rogue_imrovedrecuperate", "index": 200}]}, {"id": 101100, "name": "Yu'lon's Whisper", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101101, 101127], "prev": [101095, 101094, 101099], "entries": [{"id": 124880, "definitionId": 129718, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Whisper", "spellId": 388038, "icon": "ability_monk_chiexplosion", "index": 200}]}, {"id": 101093, "name": "Mist Wrap / Refreshing Jade Wind", "type": "choice", "posX": 12000, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101127], "prev": [101129, 101094], "entries": [{"id": 124871, "definitionId": 129709, "maxRanks": 1, "type": "passive", "name": "Mist Wrap", "spellId": 197900, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 124870, "definitionId": 129708, "maxRanks": 1, "type": "passive", "name": "Refreshing Jade Wind", "spellId": 457397, "icon": "ability_monk_rushingjadewind", "index": 200}]}, {"id": 101128, "name": "Celestial Harmony", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101127, 101113, 101106], "prev": [101129], "entries": [{"id": 124913, "definitionId": 129751, "maxRanks": 1, "type": "passive", "name": "Celestial Harmony", "spellId": 343655, "icon": "ability_monk_jadeserpentbreath", "index": 100}]}, {"id": 101112, "name": "Dancing Mists", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101106, 101115], "prev": [101129, 101122], "entries": [{"id": 124893, "definitionId": 129731, "maxRanks": 1, "type": "passive", "name": "Dancing Mists", "spellId": 388701, "icon": "ability_monk_serenity", "index": 100}]}, {"id": 101121, "name": "Lotus Infusion / Chi Harmony", "type": "choice", "posX": 13800, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [101115, 101120], "prev": [101111, 101122], "entries": [{"id": 124905, "definitionId": 129743, "maxRanks": 1, "type": "passive", "name": "Lotus Infusion", "spellId": 458431, "icon": "inv_misc_herb_chamlotus", "index": 100}, {"id": 126059, "definitionId": 130891, "maxRanks": 1, "type": "passive", "name": "Chi Harmony", "spellId": 448392, "icon": "inv_ability_monk_renewingmists_active", "index": 200}]}, {"id": 101101, "name": "Jadefire Stomp", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101104, 101102], "prev": [101098, 101100], "entries": [{"id": 124881, "definitionId": 129719, "maxRanks": 1, "type": "active", "name": "Jadefire Stomp", "spellId": 388193, "icon": "inv_ability_monk_jadefirestomp", "index": 100}]}, {"id": 101127, "name": "Peer Into Peace / Pool of Mists", "type": "choice", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101102, 101126], "prev": [101128, 101100, 101093], "entries": [{"id": 124912, "definitionId": 129750, "maxRanks": 1, "type": "passive", "name": "Peer Into Peace", "spellId": 440008, "icon": "inv_staff_2h_monk_c_01", "index": 100}, {"id": 125932, "definitionId": 130763, "maxRanks": 1, "type": "passive", "name": "Pool of Mists", "spellId": 173841, "icon": "achievement_zone_sholazar_10", "index": 200}]}, {"id": 101113, "name": "Jade Bond / Gift of the Celestials", "type": "choice", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101126, 101124, 101114], "prev": [101128], "entries": [{"id": 124895, "definitionId": 129733, "maxRanks": 1, "type": "passive", "name": "Jade Bond", "spellId": 388031, "icon": "inv_inscription_deck_jadeserpent", "index": 100}, {"id": 124894, "definitionId": 129732, "maxRanks": 1, "type": "passive", "name": "Gift of the Celestials", "spellId": 388212, "icon": "inv_pet_jadeserpentpet", "index": 200}]}, {"id": 101106, "name": "Dance of Chi-Ji / Jade Empowerment", "type": "choice", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101114, 101116], "prev": [101112, 101128], "entries": [{"id": 124887, "definitionId": 129725, "maxRanks": 1, "type": "passive", "name": "Dance of Chi-Ji", "spellId": 438439, "icon": "ability_monk_cranekick_new", "index": 100}, {"id": 128220, "definitionId": 133027, "maxRanks": 1, "type": "passive", "name": "Jade Empowerment", "spellId": 467316, "icon": "ability_monk_cracklingjadelightning", "index": 200}]}, {"id": 101115, "name": "Focused Thunder", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101116], "prev": [101121, 101112], "entries": [{"id": 124897, "definitionId": 129735, "maxRanks": 1, "type": "passive", "name": "Focused Thunder", "spellId": 197895, "icon": "spell_monk_nimblebrew", "index": 100}]}, {"id": 101120, "name": "Sheilun's Gift", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [101116, 101119], "prev": [101111, 101121], "entries": [{"id": 124904, "definitionId": 129742, "maxRanks": 1, "type": "active", "name": "Sheilun's Gift", "spellId": 399491, "icon": "inv_staff_2h_artifactshaohao_d_01", "index": 100}]}, {"id": 101104, "name": "Awakened Jadefire", "type": "single", "posX": 10800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101103], "prev": [101101], "entries": [{"id": 124885, "definitionId": 129723, "maxRanks": 1, "type": "passive", "name": "Awakened Jadefire", "spellId": 388779, "icon": "spell_animaardenweald_buff", "index": 100}]}, {"id": 101102, "name": "Jadefire Teachings / Rushing Wind Kick", "type": "choice", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101103], "prev": [101101, 101127], "entries": [{"id": 124882, "definitionId": 129720, "maxRanks": 1, "type": "passive", "name": "Jadefire Teachings", "spellId": 467293, "icon": "inv_misc_book_07", "index": 100}, {"id": 128221, "definitionId": 133028, "maxRanks": 1, "type": "active", "name": "Rushing Wind Kick", "spellId": 467307, "icon": "ability_monk_ridethewind", "index": 200}]}, {"id": 101126, "name": "Resplendent Mist", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101103, 101125], "prev": [101127, 101113], "entries": [{"id": 124911, "definitionId": 129749, "maxRanks": 2, "type": "passive", "name": "Resplendent Mist", "spellId": 388020, "icon": "spell_nature_abolishmagic", "index": 100}]}, {"id": 101124, "name": "Secret Infusion", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101125, 101123], "prev": [101113], "entries": [{"id": 124908, "definitionId": 129746, "maxRanks": 2, "type": "passive", "name": "Secret Infusion", "spellId": 388491, "icon": "ability_monk_chibrew", "index": 100}]}, {"id": 101114, "name": "Misty Peaks", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101117], "prev": [101113, 101106], "entries": [{"id": 124896, "definitionId": 129734, "maxRanks": 2, "type": "passive", "name": "Misty Peaks", "spellId": 388682, "icon": "achievement_zone_stormpeaks_10", "index": 100}]}, {"id": 101116, "name": "Peaceful Mending", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101117], "prev": [101120, 101115, 101106], "entries": [{"id": 124898, "definitionId": 129736, "maxRanks": 1, "type": "passive", "name": "Peaceful Mending", "spellId": 388593, "icon": "pandarenracial_innerpeace", "index": 100}]}, {"id": 101119, "name": "Veil of Pride / Shaohao's Lessons", "type": "choice", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [101117, 101118], "prev": [101120], "entries": [{"id": 124903, "definitionId": 129741, "maxRanks": 1, "type": "passive", "name": "Veil of Pride", "spellId": 400053, "icon": "ability_monk_vivify", "index": 100}, {"id": 124902, "definitionId": 129740, "maxRanks": 1, "type": "passive", "name": "Shaohao's Lessons", "spellId": 400089, "icon": "ability_monk_dematerialize", "index": 200}]}, {"id": 101103, "name": "Tea of Serenity / Tea of Plenty", "type": "choice", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101102, 101126, 101104], "entries": [{"id": 124884, "definitionId": 129722, "maxRanks": 1, "type": "passive", "name": "Tea of Serenity", "spellId": 393460, "icon": "inv_misc_food_vendor_roastedbarlytea", "index": 200}, {"id": 124883, "definitionId": 129721, "maxRanks": 1, "type": "passive", "name": "Tea of Plenty", "spellId": 388517, "icon": "inv_misc_pearlmilktea", "index": 300}]}, {"id": 101125, "name": "Unison / Mending Proliferation", "type": "choice", "posX": 12600, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101126, 101124], "entries": [{"id": 124910, "definitionId": 129748, "maxRanks": 1, "type": "passive", "name": "Unison", "spellId": 388477, "icon": "ability_creature_cursed_04", "index": 100}, {"id": 124909, "definitionId": 129747, "maxRanks": 1, "type": "passive", "name": "Mending Proliferation", "spellId": 388509, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 200}]}, {"id": 101123, "name": "Invoker's Delight", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101124], "entries": [{"id": 124907, "definitionId": 129745, "maxRanks": 1, "type": "passive", "name": "Invoker's Delight", "spellId": 388661, "icon": "inv_inscription_80_warscroll_battleshout", "index": 200}]}, {"id": 101117, "name": "Tear of Morning / Rising Mist", "type": "choice", "posX": 13800, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101119, 101114, 101116], "entries": [{"id": 124900, "definitionId": 129738, "maxRanks": 1, "type": "passive", "name": "Tear of Morning", "spellId": 387991, "icon": "ability_monk_uplift", "index": 100}, {"id": 124899, "definitionId": 129737, "maxRanks": 1, "type": "passive", "name": "Rising Mist", "spellId": 274909, "icon": "ability_monk_effuse", "index": 200}]}, {"id": 101118, "name": "Legacy of Wisdom", "type": "single", "posX": 15000, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [101119], "entries": [{"id": 124901, "definitionId": 129739, "maxRanks": 1, "type": "passive", "name": "Legacy of Wisdom", "spellId": 404408, "icon": "misc_legionfall_monk", "index": 100}]}], "heroNodes": [{"id": 101243, "name": "Celestial Conduit", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 64, "next": [101236, 101242, 101233], "prev": [], "entries": [{"id": 125062, "definitionId": 129894, "maxRanks": 1, "type": "active", "name": "Celestial Conduit", "spellId": 443028, "icon": "inv_ability_conduitofthecelestialsmonk_celestialconduit", "index": 100}], "freeNode": true}, {"id": 101236, "name": "Temple Training / Xuen's Guidance", "type": "choice", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101237], "prev": [101243], "entries": [{"id": 125054, "definitionId": 129886, "maxRanks": 1, "type": "passive", "name": "Temple Training", "spellId": 442743, "icon": "ability_monk_provoke", "index": 100}, {"id": 125053, "definitionId": 129885, "maxRanks": 1, "type": "passive", "name": "Xuen's Guidance", "spellId": 442687, "icon": "ability_monk_dpsstance", "index": 200}]}, {"id": 101242, "name": "Courage of the White Tiger", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101241], "prev": [101243], "entries": [{"id": 125061, "definitionId": 129893, "maxRanks": 1, "type": "passive", "name": "Courage of the White Tiger", "spellId": 443087, "icon": "ability_monk_summontigerstatue", "index": 100}]}, {"id": 101233, "name": "Restore Balance / Yu'lon's Knowledge", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 64, "next": [101234], "prev": [101243], "entries": [{"id": 125049, "definitionId": 129881, "maxRanks": 1, "type": "passive", "name": "Restore Balance", "spellId": 442719, "icon": "ability_monk_chiexplosion", "index": 100}, {"id": 125048, "definitionId": 129880, "maxRanks": 1, "type": "passive", "name": "Yu'lon's Knowledge", "spellId": 443625, "icon": "inv_jewelcrafting_jadeserpent", "index": 200}]}, {"id": 101237, "name": "Heart of the Jade Serpent", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "requiresNode": 101120, "next": [101238], "prev": [101236], "entries": [{"id": 125055, "definitionId": 129887, "maxRanks": 1, "type": "passive", "name": "Heart of the Jade Serpent", "spellId": 443294, "icon": "ability_monk_dragonkick", "index": 100}]}, {"id": 101241, "name": "Strength of the Black Ox", "type": "single", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101240], "prev": [101242], "entries": [{"id": 125060, "definitionId": 129892, "maxRanks": 1, "type": "passive", "name": "Strength of the Black Ox", "spellId": 443110, "icon": "ability_monk_chargingoxwave", "index": 100}]}, {"id": 101234, "name": "Flight of the Red Crane", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 64, "next": [101235], "prev": [101233], "entries": [{"id": 125050, "definitionId": 129882, "maxRanks": 1, "type": "passive", "name": "Flight of the Red Crane", "spellId": 443255, "icon": "inv_pet_cranegod", "index": 100}]}, {"id": 101238, "name": "Niuzao's Protection / Jade Sanctuary", "type": "choice", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101237], "entries": [{"id": 125057, "definitionId": 129889, "maxRanks": 1, "type": "passive", "name": "Niuzao's Protection", "spellId": 442747, "icon": "ability_monk_chargingoxwave", "index": 100}, {"id": 125056, "definitionId": 129888, "maxRanks": 1, "type": "passive", "name": "Jade Sanctuary", "spellId": 443059, "icon": "ability_monk_jadeserpentbreath", "index": 200}]}, {"id": 101240, "name": "Chi-Ji's Swiftness", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101241], "entries": [{"id": 125059, "definitionId": 129891, "maxRanks": 1, "type": "passive", "name": "Chi-Ji's Swiftness", "spellId": 443566, "icon": "inv_shoulder_leather_raidmonkemerald_d_01", "index": 100}]}, {"id": 101235, "name": "Inner Compass / August Dynasty", "type": "choice", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 64, "next": [101239], "prev": [101234], "entries": [{"id": 125052, "definitionId": 129884, "maxRanks": 1, "type": "passive", "name": "Inner Compass", "spellId": 443571, "icon": "inv_10_dungeonjewelry_explorer_trinket_1compass_color2", "index": 100}, {"id": 125051, "definitionId": 129883, "maxRanks": 1, "type": "passive", "name": "August Dynasty", "spellId": 442818, "icon": "ability_monk_legacyoftheemperor", "index": 200}]}, {"id": 101239, "name": "Unity Within", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 64, "next": [], "prev": [101240, 101235, 101238], "entries": [{"id": 125058, "definitionId": 129890, "maxRanks": 1, "type": "passive", "name": "Unity Within", "spellId": 443589, "icon": "ability_monk_prideofthetiger", "index": 100}]}, {"id": 101223, "name": "Aspect of Harmony", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 66, "requiresNode": 101067, "next": [101222, 101224, 101230], "prev": [], "entries": [{"id": 125033, "definitionId": 129869, "maxRanks": 1, "type": "passive", "name": "Aspect of Harmony", "spellId": 450508, "icon": "inv_ability_masterofharmonymonk_aspectofharmony", "index": 100}], "freeNode": true}, {"id": 101222, "name": "Manifestation", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "requiresNode": 102433, "next": [101221], "prev": [101223], "entries": [{"id": 125032, "definitionId": 129868, "maxRanks": 1, "type": "passive", "name": "Manifestation", "spellId": 450875, "icon": "inv_shoulder_inv_leather_raidmonk_s_01", "index": 100}]}, {"id": 101224, "name": "Purified Spirit / Harmonic Gambit", "type": "choice", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101225], "prev": [101223], "entries": [{"id": 125035, "definitionId": 129871, "maxRanks": 1, "type": "passive", "name": "Purified Spirit", "spellId": 450867, "icon": "ability_monk_explodingjadeblossom", "index": 100}, {"id": 125034, "definitionId": 129870, "maxRanks": 1, "type": "passive", "name": "Harmonic Gambit", "spellId": 450870, "icon": "passive_monk_teachingsofmonastery", "index": 200}]}, {"id": 101230, "name": "Balanced Stratagem", "type": "single", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 66, "next": [101229], "prev": [101223], "entries": [{"id": 125043, "definitionId": 129879, "maxRanks": 1, "type": "passive", "name": "Balanced Stratagem", "spellId": 450889, "icon": "ability_monk_sphereharmonydiscord", "index": 100}]}, {"id": 101221, "name": "Tiger's Vigor / Roar from the Heavens", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101220], "prev": [101222], "entries": [{"id": 125031, "definitionId": 129867, "maxRanks": 1, "type": "passive", "name": "Tiger's Vigor", "spellId": 451041, "icon": "monk_stance_whitetiger", "index": 100}, {"id": 125030, "definitionId": 129866, "maxRanks": 1, "type": "passive", "name": "Roar from the Heavens", "spellId": 451043, "icon": "inv_celestialserpentmount", "index": 200}]}, {"id": 101225, "name": "Endless Draught", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101226], "prev": [101224], "entries": [{"id": 125036, "definitionId": 129872, "maxRanks": 1, "type": "passive", "name": "Endless Draught", "spellId": 450892, "icon": "inv_drink_25_honeytea", "index": 100}]}, {"id": 101229, "name": "Mantra of Purity / Mantra of Tenacity", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 66, "next": [101228], "prev": [101230], "entries": [{"id": 125042, "definitionId": 129878, "maxRanks": 1, "type": "passive", "name": "Mantra of Purity", "spellId": 451036, "icon": "ability_monk_domeofmist", "index": 100}, {"id": 125041, "definitionId": 129877, "maxRanks": 1, "type": "passive", "name": "Mantra of Tenacity", "spellId": 451029, "icon": "spell_monk_brewmastertraining", "index": 200}]}, {"id": 101220, "name": "Overwhelming Force", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101221], "entries": [{"id": 125029, "definitionId": 129865, "maxRanks": 1, "type": "passive", "name": "Overwhelming Force", "spellId": 451024, "icon": "ability_titankeeper_piercingcorruption", "index": 100}]}, {"id": 101226, "name": "Path of Resurgence / Way of a Thousand Strikes", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101225], "entries": [{"id": 125038, "definitionId": 129874, "maxRanks": 1, "type": "passive", "name": "Path of Resurgence", "spellId": 450912, "icon": "ability_monk_pathofmists", "index": 100}, {"id": 125037, "definitionId": 129873, "maxRanks": 1, "type": "passive", "name": "Way of a Thousand Strikes", "spellId": 450965, "icon": "ability_monk_mightyoxkick", "index": 200}]}, {"id": 101228, "name": "Clarity of Purpose", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 66, "next": [101227], "prev": [101229], "entries": [{"id": 125040, "definitionId": 129876, "maxRanks": 1, "type": "passive", "name": "Clarity of Purpose", "spellId": 451017, "icon": "ability_titankeeper_cleanse", "index": 100}]}, {"id": 101227, "name": "Coalescence", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 66, "next": [], "prev": [101228, 101220, 101226], "entries": [{"id": 125039, "definitionId": 129875, "maxRanks": 1, "type": "passive", "name": "Coalescence", "spellId": 450529, "icon": "ability_monk_effuse", "index": 100}]}], "subTreeNodes": [{"id": 101231, "name": "Conduit of the Celestials / Master of Harmony", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 125045, "type": "subtree", "name": "Conduit of the Celestials", "traitSubTreeId": 64, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-conduitofthecelestials", "nodes": [101243, 101236, 101242, 101233, 101237, 101241, 101234, 101238, 101240, 101235, 101239]}, {"id": 125044, "type": "subtree", "name": "Master of Harmony", "traitSubTreeId": 66, "traitTreeId": 1000, "atlasMemberName": "talents-heroclass-monk-masterofharmony", "nodes": [101223, 101222, 101224, 101230, 101221, 101225, 101229, 101220, 101226, 101228, 101227]}]}], "fullNodeOrder": [101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057, 101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075, 101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084, 101085, 101086, 101087, 101088, 101089, 101090, 101092, 101093, 101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102, 101103, 101104, 101106, 101107, 101108, 101109, 101110, 101111, 101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101120, 101121, 101122, 101123, 101124, 101125, 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, 101189, 101190, 101192, 101193, 101194, 101195, 101196, 101197, 101198, 101199, 101201, 101202, 101203, 101204, 101205, 101206, 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, 101252, 101253, 101254, 101710, 101711, 101712, 102004, 102250, 102251, 102432, 102433]}, {"traitTreeId": 854, "className": "Demon Hunter", "classId": 12, "specName": "Havoc", "specId": 577, "classNodes": [{"id": 90942, "name": "Vengeful Retreat", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90930, 90941], "prev": [], "entries": [{"id": 112853, "definitionId": 117858, "maxRanks": 1, "type": "active", "name": "Vengeful Retreat", "spellId": 198793, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}], "freeNode": true}, {"id": 91008, "name": "Blazing Path", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90941, 90950], "prev": [], "entries": [{"id": 112928, "definitionId": 117933, "maxRanks": 1, "type": "passive", "name": "Blazing Path", "spellId": 320416, "icon": "ability_demonhunter_felrush", "index": 100}]}, {"id": 90946, "name": "Sigil of Misery", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90950, 90945], "prev": [], "entries": [{"id": 112859, "definitionId": 117864, "maxRanks": 1, "type": "active", "name": "Sigil of Misery", "spellId": 207684, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90930, "name": "Vengeful Bonds", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [90931], "prev": [90942], "entries": [{"id": 112840, "definitionId": 117845, "maxRanks": 1, "type": "passive", "name": "Vengeful Bonds", "spellId": 320635, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 90941, "name": "Unrestrained Fury", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90931, 91007], "prev": [90942, 91008], "entries": [{"id": 112852, "definitionId": 117857, "maxRanks": 1, "type": "passive", "name": "Unrestrained Fury", "spellId": 320770, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90950, "name": "Shattered Restoration", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [91007, 90948], "prev": [90946, 91008], "entries": [{"id": 112863, "definitionId": 117868, "maxRanks": 1, "type": "passive", "name": "Shattered Restoration", "spellId": 389824, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 90945, "name": "Improved Sigil of Misery", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [90948], "prev": [90946], "entries": [{"id": 112858, "definitionId": 117863, "maxRanks": 1, "type": "passive", "name": "Improved Sigil of Misery", "spellId": 320418, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90931, "name": "Bouncing Glaives", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90993, 90938], "prev": [90941, 90930], "entries": [{"id": 112841, "definitionId": 117846, "maxRanks": 1, "type": "passive", "name": "Bouncing Glaives", "spellId": 320386, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91007, "name": "Imprison", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90938, 91006], "prev": [90950, 90941], "entries": [{"id": 112927, "definitionId": 117932, "maxRanks": 1, "type": "active", "name": "Imprison", "spellId": 217832, "icon": "ability_demonhunter_imprison", "index": 100}]}, {"id": 90948, "name": "Charred Warblades", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [91006, 90999], "prev": [90950, 90945], "entries": [{"id": 112861, "definitionId": 117866, "maxRanks": 1, "type": "passive", "name": "Charred Warblades", "spellId": 213010, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 90993, "name": "Chaos Nova", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [95154, 90994], "prev": [90931], "entries": [{"id": 112911, "definitionId": 117916, "maxRanks": 1, "type": "active", "name": "Chaos Nova", "spellId": 179057, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90938, "name": "Improved Disrupt", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90994, 90937, 95150], "prev": [90931, 91007], "entries": [{"id": 112849, "definitionId": 117854, "maxRanks": 1, "type": "passive", "name": "Improved Disrupt", "spellId": 320361, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 91006, "name": "Consume Magic", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [95150, 91005, 90933], "prev": [90948, 91007], "entries": [{"id": 112926, "definitionId": 117931, "maxRanks": 1, "type": "active", "name": "Consume Magic", "spellId": 278326, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90999, "name": "Aldrachi Design", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90933, 95151], "prev": [90948], "entries": [{"id": 112917, "definitionId": 117922, "maxRanks": 1, "type": "passive", "name": "Aldrachi Design", "spellId": 391409, "icon": "inv_glaive_1h_artifactaldrochi_d_01dual", "index": 100}]}, {"id": 95154, "name": "Chaos Fragments", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940], "prev": [90993], "entries": [{"id": 117767, "definitionId": 122779, "maxRanks": 1, "type": "passive", "name": "Chaos Fragments", "spellId": 320412, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90994, "name": "Master of the Glaive / Champion of the Glaive", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940, 90936], "prev": [90993, 90938], "entries": [{"id": 112912, "definitionId": 117917, "maxRanks": 1, "type": "passive", "name": "Master of the Glaive", "spellId": 389763, "icon": "inv_glaive_1h_demonhunter_a_01", "index": 100}, {"id": 117768, "definitionId": 122780, "maxRanks": 1, "type": "passive", "name": "Champion of the Glaive", "spellId": 429211, "icon": "inv_glaive_1h_battledungeon_c_01", "index": 200}]}, {"id": 90937, "name": "Disrupting Fury", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936], "prev": [90938], "entries": [{"id": 112848, "definitionId": 117853, "maxRanks": 1, "type": "passive", "name": "Disrupting Fury", "spellId": 183782, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 95150, "name": "Felblade", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936, 91004], "prev": [91006, 90938], "entries": [{"id": 117759, "definitionId": 122771, "maxRanks": 1, "type": "active", "name": "Felblade", "spellId": 232893, "icon": "ability_demonhunter_felblade", "index": 100}]}, {"id": 91005, "name": "Swallowed Anger", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004], "prev": [91006], "entries": [{"id": 112925, "definitionId": 117930, "maxRanks": 1, "type": "passive", "name": "Swallowed Anger", "spellId": 320313, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90933, "name": "Aura of Pain", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004, 90947], "prev": [91006, 90999], "entries": [{"id": 112844, "definitionId": 117849, "maxRanks": 1, "type": "passive", "name": "Aura of Pain", "spellId": 207347, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 95151, "name": "Live by the Glaive", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90947], "prev": [90999], "entries": [{"id": 117761, "definitionId": 122773, "maxRanks": 1, "type": "passive", "name": "Live by the Glaive", "spellId": 428607, "icon": "inv_sword_108", "index": 100}]}, {"id": 90940, "name": "Pursuit", "type": "single", "posX": 2100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90939, 90935], "prev": [90994, 95154], "entries": [{"id": 112851, "definitionId": 117856, "maxRanks": 1, "type": "passive", "name": "Pursuit", "spellId": 320654, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 90936, "name": "Soul Rending", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90935, 91003], "prev": [90994, 90937, 95150], "entries": [{"id": 112847, "definitionId": 117852, "maxRanks": 2, "type": "passive", "name": "Soul Rending", "spellId": 204909, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 91004, "name": "Infernal Armor", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91003, 91000], "prev": [91005, 95150, 90933], "entries": [{"id": 112924, "definitionId": 117929, "maxRanks": 2, "type": "passive", "name": "Infernal Armor", "spellId": 320331, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90947, "name": "Lost in Darkness", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91000, 95155], "prev": [95151, 90933], "entries": [{"id": 112860, "definitionId": 117865, "maxRanks": 1, "type": "passive", "name": "Lost in Darkness", "spellId": 389849, "icon": "inv_pet_inquisitoreye", "index": 100}]}, {"id": 90939, "name": "Felfire Haste", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934], "prev": [90940], "entries": [{"id": 112850, "definitionId": 117855, "maxRanks": 1, "type": "passive", "name": "Felfire Haste", "spellId": 389846, "icon": "inv_boots_cloth_35v4", "index": 100}]}, {"id": 90935, "name": "Illidari Knowledge", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934, 91002], "prev": [90936, 90940], "entries": [{"id": 112846, "definitionId": 117851, "maxRanks": 1, "type": "passive", "name": "Illidari Knowledge", "spellId": 389696, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 91003, "name": "Demonic", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91002, 90929], "prev": [90936, 91004], "entries": [{"id": 112923, "definitionId": 117928, "maxRanks": 1, "type": "passive", "name": "Demonic", "spellId": 213410, "icon": "spell_shadow_demonform", "index": 100}]}, {"id": 91000, "name": "Will of the Illidari", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90929, 95149], "prev": [91004, 90947], "entries": [{"id": 112918, "definitionId": 117923, "maxRanks": 1, "type": "passive", "name": "Will of the Illidari", "spellId": 389695, "icon": "ability_demonhunter_spectank", "index": 100}]}, {"id": 95155, "name": "Precise Sigils", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [95149], "prev": [90947], "entries": [{"id": 117771, "definitionId": 122783, "maxRanks": 1, "type": "passive", "name": "Precise Sigils", "spellId": 389799, "icon": "ability_bossfelorcs_necromancer_orange", "index": 100}]}, {"id": 90934, "name": "Internal Struggle", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90996], "prev": [90935, 90939], "entries": [{"id": 112845, "definitionId": 117850, "maxRanks": 1, "type": "passive", "name": "Internal Struggle", "spellId": 393822, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 91002, "name": "Darkness", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91001, 95148], "prev": [90935, 91003], "entries": [{"id": 112921, "definitionId": 117926, "maxRanks": 1, "type": "active", "name": "Darkness", "spellId": 196718, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 90929, "name": "Soul Sigils", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95148, 90928], "prev": [91003, 91000], "entries": [{"id": 112839, "definitionId": 117844, "maxRanks": 1, "type": "passive", "name": "Soul Sigils", "spellId": 395446, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95149, "name": "Quickened Sigils", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90949], "prev": [91000, 95155], "entries": [{"id": 117758, "definitionId": 122770, "maxRanks": 1, "type": "passive", "name": "Quickened Sigils", "spellId": 209281, "icon": "ability_demonhunter_concentratedsigils", "index": 100}]}, {"id": 90996, "name": "Erratic Felheart", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95152], "prev": [90934], "entries": [{"id": 112914, "definitionId": 117919, "maxRanks": 2, "type": "passive", "name": "Erratic Felheart", "spellId": 391397, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 91001, "name": "Long Night / Pitch Black", "type": "choice", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91002], "entries": [{"id": 112920, "definitionId": 117925, "maxRanks": 1, "type": "passive", "name": "Long Night", "spellId": 389781, "icon": "spell_fire_twilightimmolation", "index": 100}, {"id": 112919, "definitionId": 117924, "maxRanks": 1, "type": "passive", "name": "Pitch Black", "spellId": 389783, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95148, "name": "Rush of Chaos", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90927], "prev": [90929, 91002], "entries": [{"id": 117757, "definitionId": 122769, "maxRanks": 2, "type": "passive", "name": "Rush of Chaos", "spellId": 320421, "icon": "ability_demonhunter_metamorphasisdps", "index": 100}]}, {"id": 90928, "name": "Demon Muzzle", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90929], "entries": [{"id": 112838, "definitionId": 117843, "maxRanks": 1, "type": "passive", "name": "Demon Muzzle", "spellId": 388111, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 90949, "name": "Flames of Fury", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90997], "prev": [95149], "entries": [{"id": 112862, "definitionId": 117867, "maxRanks": 2, "type": "passive", "name": "Flames of Fury", "spellId": 389694, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95152, "name": "Collective Anguish", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90996], "entries": [{"id": 117762, "definitionId": 122774, "maxRanks": 1, "type": "passive", "name": "Collective Anguish", "spellId": 390152, "icon": "artifactability_havocdemonhunter_anguishofthedeceiver", "index": 200}]}, {"id": 90927, "name": "The Hunt", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95148], "entries": [{"id": 112837, "definitionId": 117842, "maxRanks": 1, "type": "active", "name": "The Hunt", "spellId": 370965, "icon": "inv_ability_demonhunter_thehunt", "index": 100}]}, {"id": 90997, "name": "Sigil of Spite", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90949], "entries": [{"id": 117755, "definitionId": 122767, "maxRanks": 1, "type": "active", "name": "Sigil of Spite", "spellId": 390163, "icon": "inv_ability_demonhunter_elysiandecree", "index": 200}]}], "specNodes": [{"id": 90912, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 91018, "name": "Eye Beam", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [91028, 91019, 90923], "prev": [], "entries": [{"id": 112939, "definitionId": 117944, "maxRanks": 1, "type": "active", "name": "Eye Beam", "spellId": 198013, "icon": "ability_demonhunter_eyebeam", "index": 100}]}, {"id": 91028, "name": "Critical Chaos", "type": "single", "posX": 11400, "posY": 2100, "maxRanks": 1, "next": [93014, 91030, 90925], "prev": [91018], "entries": [{"id": 112951, "definitionId": 117956, "maxRanks": 1, "type": "passive", "name": "Critical Chaos", "spellId": 320413, "icon": "inv_glaive_1h_battledungeon_c_02", "index": 100}]}, {"id": 91019, "name": "Insatiable Hunger / Demon Blades", "type": "choice", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [], "prev": [91018], "entries": [{"id": 112941, "definitionId": 117946, "maxRanks": 1, "type": "passive", "name": "Insatiable Hunger", "spellId": 258876, "icon": "ability_rogue_hungerforblood", "index": 100}, {"id": 112940, "definitionId": 117945, "maxRanks": 1, "type": "passive", "name": "Demon Blades", "spellId": 203555, "icon": "inv_weapon_shortblade_92", "index": 200}]}, {"id": 90923, "name": "Burning Hatred", "type": "single", "posX": 13200, "posY": 2100, "maxRanks": 1, "next": [90925, 91011, 91017], "prev": [91018], "entries": [{"id": 112832, "definitionId": 117837, "maxRanks": 1, "type": "passive", "name": "Burning Hatred", "spellId": 320374, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 93014, "name": "Improved Fel Rush / Dash of Chaos", "type": "choice", "posX": 10500, "posY": 2700, "maxRanks": 1, "next": [93016], "prev": [91028], "entries": [{"id": 115245, "definitionId": 120257, "maxRanks": 1, "type": "passive", "name": "Improved Fel Rush", "spellId": 343017, "icon": "ability_demonhunter_felrush", "index": 100}, {"id": 117748, "definitionId": 122760, "maxRanks": 1, "type": "passive", "name": "Dash of Chaos", "spellId": 427794, "icon": "inv_boots_cloth_35v3", "index": 200}]}, {"id": 91030, "name": "Improved Chaos Strike", "type": "single", "posX": 11400, "posY": 2700, "maxRanks": 1, "next": [93016], "prev": [91028], "entries": [{"id": 112953, "definitionId": 117958, "maxRanks": 1, "type": "passive", "name": "Improved Chaos Strike", "spellId": 343206, "icon": "ability_demonhunter_chaosstrike", "index": 100}]}, {"id": 90925, "name": "First Blood", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [93016, 93015], "prev": [90923, 91028], "entries": [{"id": 112834, "definitionId": 117839, "maxRanks": 1, "type": "passive", "name": "First Blood", "spellId": 206416, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 91011, "name": "Accelerated Blade", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [93015], "prev": [90923], "entries": [{"id": 112932, "definitionId": 117937, "maxRanks": 1, "type": "passive", "name": "Accelerated Blade", "spellId": 391275, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91017, "name": "Demon Hide", "type": "single", "posX": 14100, "posY": 2700, "maxRanks": 1, "next": [93015], "prev": [90923], "entries": [{"id": 112938, "definitionId": 117943, "maxRanks": 1, "type": "passive", "name": "Demon Hide", "spellId": 428241, "icon": "misc_legionfall_demonhunter", "index": 100}]}, {"id": 93016, "name": "Desperate Instincts / Netherwalk", "type": "choice", "posX": 11400, "posY": 3300, "maxRanks": 1, "next": [91027, 90914, 90922], "prev": [91030, 90925, 93014], "entries": [{"id": 115248, "definitionId": 120260, "maxRanks": 1, "type": "passive", "name": "Desperate Instincts", "spellId": 205411, "icon": "spell_shadow_manafeed", "index": 100}, {"id": 115247, "definitionId": 120259, "maxRanks": 1, "type": "active", "name": "Netherwalk", "spellId": 196555, "icon": "spell_warlock_demonsoul", "index": 200}]}, {"id": 93015, "name": "Deflecting Dance / Mortal Dance", "type": "choice", "posX": 13200, "posY": 3300, "maxRanks": 1, "next": [90922, 93013, 90915], "prev": [91017, 90925, 91011], "entries": [{"id": 115246, "definitionId": 120258, "maxRanks": 1, "type": "passive", "name": "Deflecting Dance", "spellId": 427776, "icon": "ability_ironmaidens_bladerush", "index": 100}, {"id": 117743, "definitionId": 122755, "maxRanks": 1, "type": "passive", "name": "Mortal Dance", "spellId": 328725, "icon": "ability_demonhunter_vengefulretreat", "index": 200}]}, {"id": 91027, "name": "Initiative", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91022, 91026], "prev": [93016], "entries": [{"id": 112950, "definitionId": 117955, "maxRanks": 1, "type": "passive", "name": "Initiative", "spellId": 388108, "icon": "ability_rogue_surpriseattack", "index": 100}]}, {"id": 90914, "name": "Scars of Suffering", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91026], "prev": [93016], "entries": [{"id": 112823, "definitionId": 117828, "maxRanks": 1, "type": "passive", "name": "Scars of Suffering", "spellId": 428232, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 90922, "name": "Chaotic Transformation", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91026, 90921, 91015], "prev": [93015, 93016], "entries": [{"id": 112831, "definitionId": 117836, "maxRanks": 1, "type": "passive", "name": "Chaotic Transformation", "spellId": 388112, "icon": "ability_demonhunter_glide", "index": 100}]}, {"id": 93013, "name": "Furious Throws", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91015], "prev": [93015], "entries": [{"id": 115244, "definitionId": 120256, "maxRanks": 1, "type": "passive", "name": "Furious Throws", "spellId": 393029, "icon": "inv_glaive_1h_npc_d_01", "index": 100}]}, {"id": 90915, "name": "Trail of Ruin", "type": "single", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91015, 90916], "prev": [93015], "entries": [{"id": 112824, "definitionId": 117829, "maxRanks": 1, "type": "passive", "name": "Trail of Ruin", "spellId": 258881, "icon": "ability_demonhunter_bladedance", "index": 100}]}, {"id": 91022, "name": "Tactical Retreat", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91020, 91036], "prev": [91027], "entries": [{"id": 112944, "definitionId": 117949, "maxRanks": 1, "type": "passive", "name": "Tactical Retreat", "spellId": 389688, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 91026, "name": "Blind Fury", "type": "single", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91036, 91025], "prev": [90922, 91027, 90914], "entries": [{"id": 112949, "definitionId": 117954, "maxRanks": 2, "type": "passive", "name": "Blind Fury", "spellId": 203550, "icon": "ability_bosskilrogg_deadeye", "index": 100}]}, {"id": 90921, "name": "Looks Can Kill", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90922], "entries": [{"id": 112830, "definitionId": 117835, "maxRanks": 1, "type": "passive", "name": "Looks Can Kill", "spellId": 320415, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}]}, {"id": 91015, "name": "Dancing with Fate", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91025, 91013], "prev": [90922, 90915, 93013], "entries": [{"id": 112936, "definitionId": 117941, "maxRanks": 2, "type": "passive", "name": "Dancing with Fate", "spellId": 389978, "icon": "inv_polearm_1h_felfireraid_d_02", "index": 100}]}, {"id": 90916, "name": "Growing Inferno", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91013, 90917], "prev": [90915], "entries": [{"id": 112825, "definitionId": 117830, "maxRanks": 1, "type": "passive", "name": "Growing Inferno", "spellId": 390158, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 91020, "name": "Unbound Chaos", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91021, 91035], "prev": [91022], "entries": [{"id": 112942, "definitionId": 117947, "maxRanks": 1, "type": "passive", "name": "Unbound Chaos", "spellId": 347461, "icon": "artifactability_vengeancedemonhunter_painbringer", "index": 100}]}, {"id": 91036, "name": "Isolated Prey", "type": "single", "posX": 11400, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91035], "prev": [91026, 91022], "entries": [{"id": 112959, "definitionId": 117964, "maxRanks": 1, "type": "passive", "name": "Isolated Prey", "spellId": 388113, "icon": "spell_shadow_shadesofdarkness", "index": 100}]}, {"id": 91025, "name": "Furious Gaze", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91035, 91024, 91012], "prev": [91026, 91015], "entries": [{"id": 112948, "definitionId": 117953, "maxRanks": 1, "type": "passive", "name": "Furious Gaze", "spellId": 343311, "icon": "ability_demonhunter_eyebeam", "index": 100}]}, {"id": 91013, "name": "Serrated Glaive", "type": "single", "posX": 13200, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91012], "prev": [90916, 91015], "entries": [{"id": 112934, "definitionId": 117939, "maxRanks": 1, "type": "passive", "name": "Serrated Glaive", "spellId": 390154, "icon": "inv_glaive_1h_artifactaldrochi_d_03dual", "index": 100}]}, {"id": 90917, "name": "Burning Wound", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91012, 90918], "prev": [90916], "entries": [{"id": 112826, "definitionId": 117831, "maxRanks": 1, "type": "passive", "name": "Burning Wound", "spellId": 391189, "icon": "spell_fire_felhellfire", "index": 100}]}, {"id": 91021, "name": "Momentum / Inertia", "type": "choice", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034], "prev": [91020], "entries": [{"id": 112943, "definitionId": 117948, "maxRanks": 1, "type": "passive", "name": "Momentum", "spellId": 206476, "icon": "ability_foundryraid_demolition", "index": 100}, {"id": 117744, "definitionId": 122756, "maxRanks": 1, "type": "passive", "name": "Inertia", "spellId": 427640, "icon": "inv_10_inscription3_pigments_black", "index": 200}]}, {"id": 91035, "name": "Chaos Theory / Glaive Tempest", "type": "choice", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034], "prev": [91025, 91036, 91020], "entries": [{"id": 112958, "definitionId": 117963, "maxRanks": 1, "type": "passive", "name": "Chaos Theory", "spellId": 389687, "icon": "inv_glaive_1h_artifactaldrochi_d_03dual", "index": 100}, {"id": 117763, "definitionId": 122775, "maxRanks": 1, "type": "active", "name": "Glaive Tempest", "spellId": 342817, "icon": "inv_glaive_1h_artifactazgalor_d_06dual", "index": 200}]}, {"id": 91024, "name": "Inner Demon / Restless Hunter", "type": "choice", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91034, 91032, 95147], "prev": [91025], "entries": [{"id": 112947, "definitionId": 117952, "maxRanks": 1, "type": "passive", "name": "Inner Demon", "spellId": 389693, "icon": "ability_demonhunter_glide", "index": 100}, {"id": 117765, "definitionId": 122777, "maxRanks": 1, "type": "passive", "name": "Restless Hunter", "spellId": 390142, "icon": "ability_demonhunter_doublejump", "index": 200}]}, {"id": 91012, "name": "Relentless Onslaught / Soulscar", "type": "choice", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95147], "prev": [91025, 90917, 91013], "entries": [{"id": 112933, "definitionId": 117938, "maxRanks": 1, "type": "passive", "name": "Relentless Onslaught", "spellId": 389977, "icon": "ability_demonhunter_soulcleave2", "index": 100}, {"id": 117764, "definitionId": 122776, "maxRanks": 1, "type": "passive", "name": "Soulscar", "spellId": 388106, "icon": "ability_demonhunter_bloodlet", "index": 200}]}, {"id": 90918, "name": "Ragefire", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95147], "prev": [90917], "entries": [{"id": 112827, "definitionId": 117832, "maxRanks": 1, "type": "passive", "name": "Ragefire", "spellId": 388107, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 91034, "name": "Know Your Enemy", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95143, 91033], "prev": [91035, 91021, 91024], "entries": [{"id": 112957, "definitionId": 117962, "maxRanks": 2, "type": "passive", "name": "Know Your Enemy", "spellId": 388118, "icon": "ability_demonhunter_eyeofleotheras", "index": 100}]}, {"id": 91032, "name": "Cycle of Hatred", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [91033, 91031, 90919], "prev": [91024], "entries": [{"id": 112955, "definitionId": 117960, "maxRanks": 2, "type": "passive", "name": "Cycle of Hatred", "spellId": 258887, "icon": "ability_ironmaidens_whirlofblood", "index": 100}]}, {"id": 95147, "name": "Chaotic Disposition", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90919, 95144], "prev": [90918, 91012, 91024], "entries": [{"id": 117754, "definitionId": 122766, "maxRanks": 2, "type": "passive", "name": "Chaotic Disposition", "spellId": 428492, "icon": "inv_inscription_tarotchaos", "index": 100}]}, {"id": 95143, "name": "A Fire Inside", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91034], "entries": [{"id": 117741, "definitionId": 122753, "maxRanks": 1, "type": "passive", "name": "A Fire Inside", "spellId": 427775, "icon": "ability_demonhunter_chaoticimprint_fire", "index": 100}]}, {"id": 91033, "name": "Essence Break", "type": "single", "posX": 11400, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032, 91034], "entries": [{"id": 112956, "definitionId": 117961, "maxRanks": 1, "type": "active", "name": "Essence Break", "spellId": 258860, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 91031, "name": "Shattered Destiny", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032], "entries": [{"id": 112954, "definitionId": 117959, "maxRanks": 1, "type": "passive", "name": "Shattered Destiny", "spellId": 388116, "icon": "achievement_boss_triumvirate_darknaaru", "index": 100}]}, {"id": 90919, "name": "Any Means Necessary", "type": "single", "posX": 13200, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91032, 95147], "entries": [{"id": 112828, "definitionId": 117833, "maxRanks": 1, "type": "passive", "name": "Any Means Necessary", "spellId": 388114, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 95144, "name": "Fel Barrage", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95147], "entries": [{"id": 117742, "definitionId": 122754, "maxRanks": 1, "type": "active", "name": "Fel Barrage", "spellId": 258925, "icon": "inv_felbarrage", "index": 100}]}], "heroNodes": [{"id": 94915, "name": "Art of the Glaive", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 35, "next": [94898, 94911, 94903], "prev": [], "entries": [{"id": 117512, "definitionId": 122524, "maxRanks": 1, "type": "passive", "name": "Art of the Glaive", "spellId": 442290, "icon": "inv_ability_aldrachireaverdemonhunter_reaversglaive", "index": 100}], "freeNode": true}, {"id": 94898, "name": "Fury of the Aldrachi", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94914], "prev": [94915], "entries": [{"id": 117495, "definitionId": 122519, "maxRanks": 1, "type": "passive", "name": "Fury of the Aldrachi", "spellId": 442718, "icon": "spell_fire_felflamestrike", "index": 100}]}, {"id": 94911, "name": "Evasive Action / Unhindered Assault", "type": "choice", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94896], "prev": [94915], "entries": [{"id": 117508, "definitionId": 122520, "maxRanks": 1, "type": "passive", "name": "Evasive Action", "spellId": 444926, "icon": "ability_demonhunter_vengefulretreat", "index": 100}, {"id": 123047, "definitionId": 127928, "maxRanks": 1, "type": "passive", "name": "Unhindered Assault", "spellId": 444931, "icon": "ability_ironmaidens_bladerush", "index": 200}]}, {"id": 94903, "name": "Reaver's Mark", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94897], "prev": [94915], "entries": [{"id": 117500, "definitionId": 122512, "maxRanks": 1, "type": "passive", "name": "Reaver's Mark", "spellId": 442679, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 94914, "name": "Aldrachi Tactics", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94895], "prev": [94898], "entries": [{"id": 117511, "definitionId": 122523, "maxRanks": 1, "type": "passive", "name": "Aldrachi Tactics", "spellId": 442683, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 94896, "name": "Army Unto Oneself / Incorruptible Spirit", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94910], "prev": [94911], "entries": [{"id": 117493, "definitionId": 122505, "maxRanks": 1, "type": "passive", "name": "Army Unto Oneself", "spellId": 442714, "icon": "ability_warlock_avoidance", "index": 100}, {"id": 123046, "definitionId": 127927, "maxRanks": 1, "type": "passive", "name": "Incorruptible Spirit", "spellId": 442736, "icon": "spell_nzinsanity_chasedbyshadows", "index": 200}]}, {"id": 94897, "name": "Wounded Quarry", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94906], "prev": [94903], "entries": [{"id": 117494, "definitionId": 122506, "maxRanks": 1, "type": "passive", "name": "Wounded Quarry", "spellId": 442806, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94895, "name": "Incisive Blade", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94914], "entries": [{"id": 117492, "definitionId": 122504, "maxRanks": 1, "type": "passive", "name": "Incisive Blade", "spellId": 442492, "icon": "ability_dualwieldspecialization", "index": 100}]}, {"id": 94910, "name": "Keen Engagement / Preemptive Strike", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94896], "entries": [{"id": 117507, "definitionId": 122507, "maxRanks": 1, "type": "passive", "name": "Keen Engagement", "spellId": 442497, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 122422, "definitionId": 127322, "maxRanks": 1, "type": "passive", "name": "Preemptive Strike", "spellId": 444997, "icon": "ability_rogue_focusedattacks", "index": 200}]}, {"id": 94906, "name": "Warblade's Hunger", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94897], "entries": [{"id": 117503, "definitionId": 122515, "maxRanks": 1, "type": "passive", "name": "Warblade's Hunger", "spellId": 442502, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 94919, "name": "Thrill of the Fight", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 35, "next": [], "prev": [94910, 94895, 94906], "entries": [{"id": 117516, "definitionId": 122528, "maxRanks": 1, "type": "passive", "name": "Thrill of the Fight", "spellId": 442686, "icon": "spell_arcane_arcanetactics", "index": 100}]}, {"id": 94917, "name": "Demonsurge", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 34, "next": [94913, 94918, 94899], "prev": [], "entries": [{"id": 117514, "definitionId": 122526, "maxRanks": 1, "type": "passive", "name": "Demonsurge", "spellId": 452402, "icon": "inv_ability_felscarreddemonhunter_demonsurge", "index": 100}], "freeNode": true}, {"id": 94913, "name": "Wave of Debilitation / Pursuit of Angriness", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94905], "prev": [94917], "entries": [{"id": 117510, "definitionId": 122522, "maxRanks": 1, "type": "passive", "name": "Wave of Debilitation", "spellId": 452403, "icon": "spell_fire_felfirenova", "index": 100}, {"id": 124011, "definitionId": 128849, "maxRanks": 1, "type": "passive", "name": "Pursuit of Angriness", "spellId": 452404, "icon": "ability_felarakkoa_focusedblast", "index": 200}]}, {"id": 94918, "name": "Focused Hatred", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94912], "prev": [94917], "entries": [{"id": 117515, "definitionId": 122527, "maxRanks": 1, "type": "passive", "name": "Focused Hatred", "spellId": 452405, "icon": "ability_demonhunter_illidansgrasp", "index": 100}]}, {"id": 94899, "name": "Set Fire to the Pain / Improved Soul Rending", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94916], "prev": [94917], "entries": [{"id": 117496, "definitionId": 122508, "maxRanks": 1, "type": "passive", "name": "Set Fire to the Pain", "spellId": 452406, "icon": "ability_demonhunter_empowerwards", "index": 100}, {"id": 124010, "definitionId": 128848, "maxRanks": 1, "type": "passive", "name": "Improved Soul Rending", "spellId": 452407, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 94905, "name": "Burning Blades", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94904], "prev": [94913], "entries": [{"id": 117502, "definitionId": 122514, "maxRanks": 1, "type": "passive", "name": "Burning Blades", "spellId": 452408, "icon": "inv_glaive_1h_artifactazgalor_d_02dual", "index": 100}]}, {"id": 94912, "name": "Violent Transformation", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94902], "prev": [94918], "entries": [{"id": 117509, "definitionId": 122521, "maxRanks": 1, "type": "passive", "name": "Violent Transformation", "spellId": 452409, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 94916, "name": "Enduring Torment", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94909], "prev": [94899], "entries": [{"id": 117513, "definitionId": 122525, "maxRanks": 1, "type": "passive", "name": "Enduring Torment", "spellId": 452410, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 94904, "name": "Untethered Fury", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94905], "entries": [{"id": 117501, "definitionId": 122513, "maxRanks": 1, "type": "passive", "name": "Untethered Fury", "spellId": 452411, "icon": "inv__felbarrage", "index": 100}]}, {"id": 94902, "name": "Student of Suffering / Flamebound", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94912], "entries": [{"id": 117499, "definitionId": 122511, "maxRanks": 1, "type": "passive", "name": "Student of Suffering", "spellId": 452412, "icon": "achievement_dungeon_theatreofpain_kultharok", "index": 100}, {"id": 124009, "definitionId": 128847, "maxRanks": 1, "type": "passive", "name": "Flamebound", "spellId": 452413, "icon": "spell_fire_felflamering", "index": 200}]}, {"id": 94909, "name": "Monster Rising", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94916], "entries": [{"id": 117506, "definitionId": 122518, "maxRanks": 1, "type": "passive", "name": "Monster Rising", "spellId": 452414, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 94901, "name": "Demonic Intensity", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 34, "next": [], "prev": [94902, 94904, 94909], "entries": [{"id": 117498, "definitionId": 122510, "maxRanks": 1, "type": "passive", "name": "Demonic Intensity", "spellId": 452415, "icon": "spell_warlock_demonicempowerment", "index": 100}]}], "subTreeNodes": [{"id": 99824, "name": "Aldrachi Reaver / Fel-Scarred", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123330, "type": "subtree", "name": "Aldrachi Reaver", "traitSubTreeId": 35, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-aldrachireaver", "nodes": [94915, 94898, 94911, 94903, 94914, 94896, 94897, 94895, 94910, 94906, 94919]}, {"id": 123329, "type": "subtree", "name": "Fel-Scarred", "traitSubTreeId": 34, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-felscarred", "nodes": [94917, 94913, 94918, 94899, 94905, 94912, 94916, 94904, 94902, 94909, 94901]}]}], "fullNodeOrder": [90912, 90914, 90915, 90916, 90917, 90918, 90919, 90921, 90922, 90923, 90925, 90927, 90928, 90929, 90930, 90931, 90933, 90934, 90935, 90936, 90937, 90938, 90939, 90940, 90941, 90942, 90945, 90946, 90947, 90948, 90949, 90950, 90951, 90952, 90953, 90954, 90955, 90956, 90957, 90958, 90959, 90960, 90961, 90962, 90963, 90964, 90965, 90966, 90967, 90968, 90969, 90970, 90971, 90972, 90973, 90974, 90975, 90976, 90977, 90978, 90979, 90980, 90981, 90982, 90983, 90984, 90985, 90986, 90987, 90988, 90989, 90990, 90991, 90993, 90994, 90996, 90997, 90999, 91000, 91001, 91002, 91003, 91004, 91005, 91006, 91007, 91008, 91011, 91012, 91013, 91015, 91017, 91018, 91019, 91020, 91021, 91022, 91024, 91025, 91026, 91027, 91028, 91030, 91031, 91032, 91033, 91034, 91035, 91036, 93013, 93014, 93015, 93016, 94895, 94896, 94897, 94898, 94899, 94901, 94902, 94903, 94904, 94905, 94906, 94909, 94910, 94911, 94912, 94913, 94914, 94915, 94916, 94917, 94918, 94919, 95143, 95144, 95147, 95148, 95149, 95150, 95151, 95152, 95154, 95155, 99823, 99824]}, {"traitTreeId": 854, "className": "Demon Hunter", "classId": 12, "specName": "Vengeance", "specId": 581, "classNodes": [{"id": 90942, "name": "Vengeful Retreat", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90930, 90941], "prev": [], "entries": [{"id": 112853, "definitionId": 117858, "maxRanks": 1, "type": "active", "name": "Vengeful Retreat", "spellId": 198793, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 91008, "name": "Blazing Path", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90941, 90950], "prev": [], "entries": [{"id": 112928, "definitionId": 117933, "maxRanks": 1, "type": "passive", "name": "Blazing Path", "spellId": 320416, "icon": "ability_demonhunter_felrush", "index": 100}]}, {"id": 90946, "name": "Sigil of Misery", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90950, 90945], "prev": [], "entries": [{"id": 112859, "definitionId": 117864, "maxRanks": 1, "type": "active", "name": "Sigil of Misery", "spellId": 207684, "icon": "ability_demonhunter_sigilofmisery", "index": 100}], "freeNode": true}, {"id": 90930, "name": "Vengeful Bonds", "type": "single", "posX": 2700, "posY": 2100, "maxRanks": 1, "next": [90931], "prev": [90942], "entries": [{"id": 112840, "definitionId": 117845, "maxRanks": 1, "type": "passive", "name": "Vengeful Bonds", "spellId": 320635, "icon": "ability_demonhunter_vengefulretreat2", "index": 100}]}, {"id": 90941, "name": "Unrestrained Fury", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90931, 91007], "prev": [90942, 91008], "entries": [{"id": 112852, "definitionId": 117857, "maxRanks": 1, "type": "passive", "name": "Unrestrained Fury", "spellId": 320770, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90950, "name": "Shattered Restoration", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [91007, 90948], "prev": [90946, 91008], "entries": [{"id": 112863, "definitionId": 117868, "maxRanks": 1, "type": "passive", "name": "Shattered Restoration", "spellId": 389824, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 90945, "name": "Improved Sigil of Misery", "type": "single", "posX": 5100, "posY": 2100, "maxRanks": 1, "next": [90948], "prev": [90946], "entries": [{"id": 112858, "definitionId": 117863, "maxRanks": 1, "type": "passive", "name": "Improved Sigil of Misery", "spellId": 320418, "icon": "ability_demonhunter_sigilofmisery", "index": 100}]}, {"id": 90931, "name": "Bouncing Glaives", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90993, 90938], "prev": [90941, 90930], "entries": [{"id": 112841, "definitionId": 117846, "maxRanks": 1, "type": "passive", "name": "Bouncing Glaives", "spellId": 320386, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 91007, "name": "Imprison", "type": "single", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90938, 91006], "prev": [90950, 90941], "entries": [{"id": 112927, "definitionId": 117932, "maxRanks": 1, "type": "active", "name": "Imprison", "spellId": 217832, "icon": "ability_demonhunter_imprison", "index": 100}]}, {"id": 90948, "name": "Charred Warblades", "type": "single", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [91006, 90999], "prev": [90950, 90945], "entries": [{"id": 112861, "definitionId": 117866, "maxRanks": 1, "type": "passive", "name": "Charred Warblades", "spellId": 213010, "icon": "spell_fire_incinerate", "index": 100}]}, {"id": 90993, "name": "Chaos Nova", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [95154, 90994], "prev": [90931], "entries": [{"id": 112911, "definitionId": 117916, "maxRanks": 1, "type": "active", "name": "Chaos Nova", "spellId": 179057, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90938, "name": "Improved Disrupt", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90994, 90937, 95150], "prev": [90931, 91007], "entries": [{"id": 112849, "definitionId": 117854, "maxRanks": 1, "type": "passive", "name": "Improved Disrupt", "spellId": 320361, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 91006, "name": "Consume Magic", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [95150, 91005, 90933], "prev": [90948, 91007], "entries": [{"id": 112926, "definitionId": 117931, "maxRanks": 1, "type": "active", "name": "Consume Magic", "spellId": 278326, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90999, "name": "Aldrachi Design", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90933, 95151], "prev": [90948], "entries": [{"id": 112917, "definitionId": 117922, "maxRanks": 1, "type": "passive", "name": "Aldrachi Design", "spellId": 391409, "icon": "inv_glaive_1h_artifactaldrochi_d_01dual", "index": 100}]}, {"id": 95154, "name": "Chaos Fragments", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940], "prev": [90993], "entries": [{"id": 117767, "definitionId": 122779, "maxRanks": 1, "type": "passive", "name": "Chaos Fragments", "spellId": 320412, "icon": "spell_fire_felfirenova", "index": 100}]}, {"id": 90994, "name": "Master of the Glaive / Champion of the Glaive", "type": "choice", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90940, 90936], "prev": [90993, 90938], "entries": [{"id": 112912, "definitionId": 117917, "maxRanks": 1, "type": "passive", "name": "Master of the Glaive", "spellId": 389763, "icon": "inv_glaive_1h_demonhunter_a_01", "index": 100}, {"id": 117768, "definitionId": 122780, "maxRanks": 1, "type": "passive", "name": "Champion of the Glaive", "spellId": 429211, "icon": "inv_glaive_1h_battledungeon_c_01", "index": 200}]}, {"id": 90937, "name": "Disrupting Fury", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936], "prev": [90938], "entries": [{"id": 112848, "definitionId": 117853, "maxRanks": 1, "type": "passive", "name": "Disrupting Fury", "spellId": 183782, "icon": "ability_demonhunter_consumemagic", "index": 100}]}, {"id": 95150, "name": "Felblade", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90936, 91004], "prev": [91006, 90938], "entries": [{"id": 117759, "definitionId": 122771, "maxRanks": 1, "type": "active", "name": "Felblade", "spellId": 232893, "icon": "ability_demonhunter_felblade", "index": 100}]}, {"id": 91005, "name": "Swallowed Anger", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004], "prev": [91006], "entries": [{"id": 112925, "definitionId": 117930, "maxRanks": 1, "type": "passive", "name": "Swallowed Anger", "spellId": 320313, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 90933, "name": "Aura of Pain", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [91004, 90947], "prev": [91006, 90999], "entries": [{"id": 112844, "definitionId": 117849, "maxRanks": 1, "type": "passive", "name": "Aura of Pain", "spellId": 207347, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 95151, "name": "Live by the Glaive", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90947], "prev": [90999], "entries": [{"id": 117761, "definitionId": 122773, "maxRanks": 1, "type": "passive", "name": "Live by the Glaive", "spellId": 428607, "icon": "inv_sword_108", "index": 100}]}, {"id": 90940, "name": "Pursuit", "type": "single", "posX": 2100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90939, 90935], "prev": [90994, 95154], "entries": [{"id": 112851, "definitionId": 117856, "maxRanks": 1, "type": "passive", "name": "Pursuit", "spellId": 320654, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 90936, "name": "Soul Rending", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90935, 91003], "prev": [90994, 90937, 95150], "entries": [{"id": 112847, "definitionId": 117852, "maxRanks": 2, "type": "passive", "name": "Soul Rending", "spellId": 204909, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 91004, "name": "Infernal Armor", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [91003, 91000], "prev": [91005, 95150, 90933], "entries": [{"id": 112924, "definitionId": 117929, "maxRanks": 2, "type": "passive", "name": "Infernal Armor", "spellId": 320331, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90947, "name": "Lost in Darkness", "type": "single", "posX": 5700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [91000, 95155], "prev": [95151, 90933], "entries": [{"id": 112860, "definitionId": 117865, "maxRanks": 1, "type": "passive", "name": "Lost in Darkness", "spellId": 389849, "icon": "inv_pet_inquisitoreye", "index": 100}]}, {"id": 90939, "name": "Felfire Haste", "type": "single", "posX": 2100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934], "prev": [90940], "entries": [{"id": 112850, "definitionId": 117855, "maxRanks": 1, "type": "passive", "name": "Felfire Haste", "spellId": 389846, "icon": "inv_boots_cloth_35v4", "index": 100}]}, {"id": 90935, "name": "Illidari Knowledge", "type": "single", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90934, 91002], "prev": [90936, 90940], "entries": [{"id": 112846, "definitionId": 117851, "maxRanks": 1, "type": "passive", "name": "Illidari Knowledge", "spellId": 389696, "icon": "spell_mage_overpowered", "index": 100}]}, {"id": 91003, "name": "Demonic", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [91002, 90929], "prev": [90936, 91004], "entries": [{"id": 112923, "definitionId": 117928, "maxRanks": 1, "type": "passive", "name": "Demonic", "spellId": 213410, "icon": "spell_shadow_demonform", "index": 100}]}, {"id": 91000, "name": "Will of the Illidari", "type": "single", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90929, 95149], "prev": [91004, 90947], "entries": [{"id": 112918, "definitionId": 117923, "maxRanks": 1, "type": "passive", "name": "Will of the Illidari", "spellId": 389695, "icon": "ability_demonhunter_spectank", "index": 100}]}, {"id": 95155, "name": "Precise Sigils", "type": "single", "posX": 5700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [95149], "prev": [90947], "entries": [{"id": 117771, "definitionId": 122783, "maxRanks": 1, "type": "passive", "name": "Precise Sigils", "spellId": 389799, "icon": "ability_bossfelorcs_necromancer_orange", "index": 100}]}, {"id": 90934, "name": "Internal Struggle", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90996], "prev": [90935, 90939], "entries": [{"id": 112845, "definitionId": 117850, "maxRanks": 1, "type": "passive", "name": "Internal Struggle", "spellId": 393822, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 91002, "name": "Darkness", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [91001, 95148], "prev": [90935, 91003], "entries": [{"id": 112921, "definitionId": 117926, "maxRanks": 1, "type": "active", "name": "Darkness", "spellId": 196718, "icon": "ability_demonhunter_darkness", "index": 100}]}, {"id": 90929, "name": "Soul Sigils", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [95148, 90928], "prev": [91003, 91000], "entries": [{"id": 112839, "definitionId": 117844, "maxRanks": 1, "type": "passive", "name": "Soul Sigils", "spellId": 395446, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95149, "name": "Quickened Sigils", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90949], "prev": [91000, 95155], "entries": [{"id": 117758, "definitionId": 122770, "maxRanks": 1, "type": "passive", "name": "Quickened Sigils", "spellId": 209281, "icon": "ability_demonhunter_concentratedsigils", "index": 100}]}, {"id": 90996, "name": "Erratic Felheart", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [95152], "prev": [90934], "entries": [{"id": 112914, "definitionId": 117919, "maxRanks": 2, "type": "passive", "name": "Erratic Felheart", "spellId": 391397, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 91001, "name": "Long Night / Pitch Black", "type": "choice", "posX": 3300, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [91002], "entries": [{"id": 112920, "definitionId": 117925, "maxRanks": 1, "type": "passive", "name": "Long Night", "spellId": 389781, "icon": "spell_fire_twilightimmolation", "index": 100}, {"id": 112919, "definitionId": 117924, "maxRanks": 1, "type": "passive", "name": "Pitch Black", "spellId": 389783, "icon": "sha_spell_warlock_demonsoul", "index": 200}]}, {"id": 95148, "name": "Rush of Chaos", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90927], "prev": [90929, 91002], "entries": [{"id": 117757, "definitionId": 122769, "maxRanks": 2, "type": "passive", "name": "Rush of Chaos", "spellId": 320421, "icon": "ability_demonhunter_metamorphasisdps", "index": 100}]}, {"id": 90928, "name": "Demon Muzzle", "type": "single", "posX": 4500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90929], "entries": [{"id": 112838, "definitionId": 117843, "maxRanks": 1, "type": "passive", "name": "Demon Muzzle", "spellId": 388111, "icon": "spell_fire_fireballgreen", "index": 100}]}, {"id": 90949, "name": "Flames of Fury", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90997], "prev": [95149], "entries": [{"id": 112862, "definitionId": 117867, "maxRanks": 2, "type": "passive", "name": "Flames of Fury", "spellId": 389694, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 95152, "name": "Collective Anguish", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90996], "entries": [{"id": 117762, "definitionId": 122774, "maxRanks": 1, "type": "passive", "name": "Collective Anguish", "spellId": 390152, "icon": "artifactability_havocdemonhunter_anguishofthedeceiver", "index": 200}]}, {"id": 90927, "name": "The Hunt", "type": "single", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [95148], "entries": [{"id": 112837, "definitionId": 117842, "maxRanks": 1, "type": "active", "name": "The Hunt", "spellId": 370965, "icon": "inv_ability_demonhunter_thehunt", "index": 100}]}, {"id": 90997, "name": "Sigil of Spite", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90949], "entries": [{"id": 117755, "definitionId": 122767, "maxRanks": 1, "type": "active", "name": "Sigil of Spite", "spellId": 390163, "icon": "inv_ability_demonhunter_elysiandecree", "index": 200}]}], "specNodes": [{"id": 90912, "name": "", "type": "single", "posX": 16640, "posY": -320, "entryNode": true, "next": [], "prev": [], "entries": [{}]}, {"id": 90991, "name": "Fel Devastation", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90990, 90951], "prev": [], "entries": [{"id": 112908, "definitionId": 117913, "maxRanks": 1, "type": "active", "name": "Fel Devastation", "spellId": 212084, "icon": "ability_demonhunter_feldevastation", "index": 100}]}, {"id": 90990, "name": "Frailty", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [90970, 90989], "prev": [90991], "entries": [{"id": 112907, "definitionId": 117912, "maxRanks": 1, "type": "passive", "name": "Frailty", "spellId": 389958, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90951, "name": "Fiery Brand", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90989, 90960], "prev": [90991], "entries": [{"id": 112864, "definitionId": 117869, "maxRanks": 1, "type": "active", "name": "Fiery Brand", "spellId": 204021, "icon": "ability_demonhunter_fierybrand", "index": 100}]}, {"id": 90970, "name": "Shear Fury / Fracture", "type": "choice", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90968, 90967], "prev": [90990], "entries": [{"id": 112886, "definitionId": 117891, "maxRanks": 1, "type": "passive", "name": "Shear Fury", "spellId": 389997, "icon": "ability_demonhunter_hatefulstrike", "index": 100}, {"id": 112885, "definitionId": 117890, "maxRanks": 1, "type": "active", "name": "Fracture", "spellId": 263642, "icon": "ability_creature_felsunder", "index": 200}]}, {"id": 90989, "name": "Deflecting Spikes", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90988], "prev": [90951, 90990], "entries": [{"id": 112906, "definitionId": 117911, "maxRanks": 1, "type": "passive", "name": "Deflecting Spikes", "spellId": 321028, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90960, "name": "Ascending Flame", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90952, 90953], "prev": [90951], "entries": [{"id": 112875, "definitionId": 117880, "maxRanks": 1, "type": "passive", "name": "Ascending Flame", "spellId": 428603, "icon": "inv_helm_suncrown_d_01", "index": 100}]}, {"id": 90968, "name": "Perfectly Balanced Glaive", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90969, 90971, 90978], "prev": [90970], "entries": [{"id": 112883, "definitionId": 117888, "maxRanks": 1, "type": "passive", "name": "Perfectly Balanced Glaive", "spellId": 320387, "icon": "ability_demonhunter_throwglaive", "index": 100}]}, {"id": 90967, "name": "Calcified Spikes", "type": "single", "posX": 11100, "posY": 3300, "maxRanks": 1, "next": [90971], "prev": [90970], "entries": [{"id": 112882, "definitionId": 117887, "maxRanks": 1, "type": "passive", "name": "Calcified Spikes", "spellId": 389720, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90988, "name": "Roaring Fire / Sigil of Silence", "type": "choice", "posX": 12300, "posY": 3300, "maxRanks": 1, "next": [90971, 90966, 90987], "prev": [90989], "entries": [{"id": 112905, "definitionId": 117910, "maxRanks": 1, "type": "passive", "name": "Roaring Fire", "spellId": 391178, "icon": "spell_fire_felflamering", "index": 100}, {"id": 112904, "definitionId": 117909, "maxRanks": 1, "type": "active", "name": "Sigil of Silence", "spellId": 202137, "icon": "ability_demonhunter_sigilofsilence", "index": 200}]}, {"id": 90952, "name": "Retaliation", "type": "single", "posX": 13500, "posY": 3300, "maxRanks": 1, "next": [90987], "prev": [90960], "entries": [{"id": 112865, "definitionId": 117870, "maxRanks": 1, "type": "passive", "name": "Retaliation", "spellId": 389729, "icon": "ability_demonhunter_demonspikes2", "index": 100}]}, {"id": 90953, "name": "Meteoric Strikes", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90987, 90956, 90957], "prev": [90960], "entries": [{"id": 112866, "definitionId": 117871, "maxRanks": 1, "type": "passive", "name": "Meteoric Strikes", "spellId": 389724, "icon": "spell_warlock_summonabyssal", "index": 100}]}, {"id": 90978, "name": "Spirit Bomb", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977], "prev": [90968], "entries": [{"id": 112894, "definitionId": 117899, "maxRanks": 1, "type": "active", "name": "Spirit Bomb", "spellId": 247454, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90969, "name": "Feast of Souls", "type": "single", "posX": 10500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977], "prev": [90968], "entries": [{"id": 112884, "definitionId": 117889, "maxRanks": 1, "type": "passive", "name": "Feast of Souls", "spellId": 207697, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 90971, "name": "Agonizing Flames", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90977, 90972], "prev": [90988, 90968, 90967], "entries": [{"id": 112887, "definitionId": 117892, "maxRanks": 1, "type": "passive", "name": "Agonizing Flames", "spellId": 207548, "icon": "achievment_raid_houroftwilight", "index": 100}]}, {"id": 90966, "name": "Extended Spikes", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90972, 90965, 90986], "prev": [90988], "entries": [{"id": 112881, "definitionId": 117886, "maxRanks": 1, "type": "passive", "name": "Extended Spikes", "spellId": 389721, "icon": "ability_demonhunter_demonspikes", "index": 100}]}, {"id": 90987, "name": "Burning Blood", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90986, 90955], "prev": [90988, 90953, 90952], "entries": [{"id": 112903, "definitionId": 117908, "maxRanks": 1, "type": "passive", "name": "Burning Blood", "spellId": 390213, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90956, "name": "Soul Barrier / Bulk Extraction", "type": "choice", "posX": 14100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90955], "prev": [90953], "entries": [{"id": 112870, "definitionId": 117875, "maxRanks": 1, "type": "active", "name": "Soul Barrier", "spellId": 263648, "icon": "inv_soulbarrier", "index": 100}, {"id": 112869, "definitionId": 117874, "maxRanks": 1, "type": "active", "name": "Bulk Extraction", "spellId": 320341, "icon": "spell_shadow_shadesofdarkness", "index": 300}]}, {"id": 90957, "name": "Revel in Pain", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90955], "prev": [90953], "entries": [{"id": 112871, "definitionId": 117876, "maxRanks": 1, "type": "passive", "name": "Revel in Pain", "spellId": 343014, "icon": "ability_bossfelmagnaron_handempowered", "index": 100}]}, {"id": 90977, "name": "Void Reaver", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90976, 90974], "prev": [90969, 90978, 90971], "entries": [{"id": 112893, "definitionId": 117898, "maxRanks": 1, "type": "passive", "name": "Void Reaver", "spellId": 268175, "icon": "spell_shadow_demonicempathy", "index": 100}]}, {"id": 90972, "name": "Fallout", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90976, 90954], "prev": [90966, 90971], "entries": [{"id": 112888, "definitionId": 117893, "maxRanks": 1, "type": "passive", "name": "Fallout", "spellId": 227174, "icon": "spell_volatilefiregreen", "index": 100}]}, {"id": 90965, "name": "Ruinous Bulwark", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90954], "prev": [90966], "entries": [{"id": 112880, "definitionId": 117885, "maxRanks": 1, "type": "passive", "name": "Ruinous Bulwark", "spellId": 326853, "icon": "ability_demonhunter_feldevastation", "index": 100}]}, {"id": 90986, "name": "Volatile Flameblood", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90954, 90958], "prev": [90987, 90966], "entries": [{"id": 112902, "definitionId": 117907, "maxRanks": 1, "type": "passive", "name": "Volatile Flameblood", "spellId": 390808, "icon": "ability_demonhunter_immolation", "index": 100}]}, {"id": 90955, "name": "Fel Flame Fortification", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90958, 90964], "prev": [90956, 90987, 90957], "entries": [{"id": 112868, "definitionId": 117873, "maxRanks": 1, "type": "passive", "name": "Fel Flame Fortification", "spellId": 389705, "icon": "spell_fire_felfire", "index": 100}]}, {"id": 90974, "name": "Soul Furnace", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90975], "prev": [90977], "entries": [{"id": 112890, "definitionId": 117895, "maxRanks": 1, "type": "passive", "name": "Soul Furnace", "spellId": 391165, "icon": "ability_demonhunter_soulcleave4", "index": 100}]}, {"id": 90976, "name": "Painbringer", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [90975, 90973, 90984], "prev": [90972, 90977], "entries": [{"id": 112892, "definitionId": 117897, "maxRanks": 2, "type": "passive", "name": "Painbringer", "spellId": 207387, "icon": "artifactability_vengeancedemonhunter_painbringer", "index": 100}]}, {"id": 90954, "name": "Sigil of Chains", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90984], "prev": [90965, 90986, 90972], "entries": [{"id": 112867, "definitionId": 117872, "maxRanks": 1, "type": "active", "name": "Sigil of Chains", "spellId": 202138, "icon": "ability_demonhunter_sigilofchains", "index": 100}]}, {"id": 90958, "name": "Fiery Demise", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 2, "next": [90984, 90959, 90963], "prev": [90986, 90955], "entries": [{"id": 112872, "definitionId": 117877, "maxRanks": 2, "type": "passive", "name": "Fiery Demise", "spellId": 389220, "icon": "ability_demonhunter_fierybrand", "index": 300}]}, {"id": 90964, "name": "Chains of Anger", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90963], "prev": [90955], "entries": [{"id": 112879, "definitionId": 117884, "maxRanks": 1, "type": "passive", "name": "Chains of Anger", "spellId": 389715, "icon": "ability_demonhunter_sigilofchains", "index": 100}]}, {"id": 90975, "name": "Focused Cleave", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90981], "prev": [90976, 90974], "entries": [{"id": 112891, "definitionId": 117896, "maxRanks": 1, "type": "passive", "name": "Focused Cleave", "spellId": 343207, "icon": "ability_demonhunter_soulcleave", "index": 100}]}, {"id": 90973, "name": "Soulmonger", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90981, 90983], "prev": [90976], "entries": [{"id": 112889, "definitionId": 117894, "maxRanks": 1, "type": "passive", "name": "Soulmonger", "spellId": 389711, "icon": "ability_demonhunter_shatteredsouls", "index": 100}]}, {"id": 90984, "name": "Stoke the Flames", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90983], "prev": [90958, 90976, 90954], "entries": [{"id": 112900, "definitionId": 117905, "maxRanks": 1, "type": "passive", "name": "Stoke the Flames", "spellId": 393827, "icon": "ability_demonhunter_feldevastation", "index": 200}]}, {"id": 90959, "name": "Burning Alive", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90983, 90962], "prev": [90958], "entries": [{"id": 112873, "definitionId": 117878, "maxRanks": 1, "type": "passive", "name": "Burning Alive", "spellId": 207739, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 90963, "name": "Cycle of Binding", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90962], "prev": [90958, 90964], "entries": [{"id": 112878, "definitionId": 117883, "maxRanks": 1, "type": "passive", "name": "Cycle of Binding", "spellId": 389718, "icon": "ability_demonhunter_sigilofinquisition", "index": 100}]}, {"id": 90981, "name": "Vulnerability", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90980, 90982], "prev": [90973, 90975], "entries": [{"id": 112897, "definitionId": 117902, "maxRanks": 2, "type": "passive", "name": "Vulnerability", "spellId": 389976, "icon": "inv_icon_shadowcouncilorb_purple", "index": 100}]}, {"id": 90983, "name": "Feed the Demon", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90982, 90979, 90985], "prev": [90984, 90959, 90973], "entries": [{"id": 112899, "definitionId": 117904, "maxRanks": 2, "type": "passive", "name": "Feed the Demon", "spellId": 218612, "icon": "spell_warlock_demonicempowerment", "index": 100}]}, {"id": 90962, "name": "Charred Flesh", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90985, 90961], "prev": [90963, 90959], "entries": [{"id": 112877, "definitionId": 117882, "maxRanks": 2, "type": "passive", "name": "Charred Flesh", "spellId": 336639, "icon": "ability_warlock_backdraft", "index": 100}]}, {"id": 90980, "name": "Soulcrush", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90981], "entries": [{"id": 112896, "definitionId": 117901, "maxRanks": 1, "type": "passive", "name": "Soulcrush", "spellId": 389985, "icon": "inv_icon_shadowcouncilorb_purple", "index": 200}]}, {"id": 90982, "name": "Soul Carver", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90981, 90983], "entries": [{"id": 112898, "definitionId": 117903, "maxRanks": 1, "type": "active", "name": "Soul Carver", "spellId": 207407, "icon": "inv_glaive_1h_artifactaldrochi_d_01", "index": 100}]}, {"id": 90979, "name": "Last Resort", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90983], "entries": [{"id": 112895, "definitionId": 117900, "maxRanks": 1, "type": "passive", "name": "Last Resort", "spellId": 209258, "icon": "inv_glaive_1h_artifactaldorchi_d_06", "index": 100}]}, {"id": 90985, "name": "Darkglare Boon", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90983, 90962], "entries": [{"id": 112901, "definitionId": 117906, "maxRanks": 1, "type": "passive", "name": "Darkglare Boon", "spellId": 389708, "icon": "inv_jewelry_necklace_53", "index": 200}]}, {"id": 90961, "name": "Down in Flames / Illuminated Sigils", "type": "choice", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90962], "entries": [{"id": 112876, "definitionId": 117881, "maxRanks": 1, "type": "passive", "name": "Down in Flames", "spellId": 389732, "icon": "ability_demonhunter_fierybrand", "index": 200}, {"id": 117760, "definitionId": 122772, "maxRanks": 1, "type": "passive", "name": "Illuminated Sigils", "spellId": 428557, "icon": "ability_essence_reapingflames", "index": 300}]}], "heroNodes": [{"id": 94915, "name": "Art of the Glaive", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 35, "next": [94898, 94911, 94903], "prev": [], "entries": [{"id": 117512, "definitionId": 122524, "maxRanks": 1, "type": "passive", "name": "Art of the Glaive", "spellId": 442290, "icon": "inv_ability_aldrachireaverdemonhunter_reaversglaive", "index": 100}], "freeNode": true}, {"id": 94898, "name": "Fury of the Aldrachi", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94914], "prev": [94915], "entries": [{"id": 117495, "definitionId": 122519, "maxRanks": 1, "type": "passive", "name": "Fury of the Aldrachi", "spellId": 442718, "icon": "spell_fire_felflamestrike", "index": 100}]}, {"id": 94911, "name": "Evasive Action / Unhindered Assault", "type": "choice", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94896], "prev": [94915], "entries": [{"id": 117508, "definitionId": 122520, "maxRanks": 1, "type": "passive", "name": "Evasive Action", "spellId": 444926, "icon": "ability_demonhunter_vengefulretreat", "index": 100}, {"id": 123047, "definitionId": 127928, "maxRanks": 1, "type": "passive", "name": "Unhindered Assault", "spellId": 444931, "icon": "ability_ironmaidens_bladerush", "index": 200}]}, {"id": 94903, "name": "Reaver's Mark", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 35, "next": [94897], "prev": [94915], "entries": [{"id": 117500, "definitionId": 122512, "maxRanks": 1, "type": "passive", "name": "Reaver's Mark", "spellId": 442679, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 94914, "name": "Aldrachi Tactics", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94895], "prev": [94898], "entries": [{"id": 117511, "definitionId": 122523, "maxRanks": 1, "type": "passive", "name": "Aldrachi Tactics", "spellId": 442683, "icon": "ability_demonhunter_soulcleave2", "index": 100}]}, {"id": 94896, "name": "Army Unto Oneself / Incorruptible Spirit", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94910], "prev": [94911], "entries": [{"id": 117493, "definitionId": 122505, "maxRanks": 1, "type": "passive", "name": "Army Unto Oneself", "spellId": 442714, "icon": "ability_warlock_avoidance", "index": 100}, {"id": 123046, "definitionId": 127927, "maxRanks": 1, "type": "passive", "name": "Incorruptible Spirit", "spellId": 442736, "icon": "spell_nzinsanity_chasedbyshadows", "index": 200}]}, {"id": 94897, "name": "Wounded Quarry", "type": "single", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 35, "next": [94906], "prev": [94903], "entries": [{"id": 117494, "definitionId": 122506, "maxRanks": 1, "type": "passive", "name": "Wounded Quarry", "spellId": 442806, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94895, "name": "Incisive Blade", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94914], "entries": [{"id": 117492, "definitionId": 122504, "maxRanks": 1, "type": "passive", "name": "Incisive Blade", "spellId": 442492, "icon": "ability_dualwieldspecialization", "index": 100}]}, {"id": 94910, "name": "Keen Engagement / Preemptive Strike", "type": "choice", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94896], "entries": [{"id": 117507, "definitionId": 122507, "maxRanks": 1, "type": "passive", "name": "Keen Engagement", "spellId": 442497, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 122422, "definitionId": 127322, "maxRanks": 1, "type": "passive", "name": "Preemptive Strike", "spellId": 444997, "icon": "ability_rogue_focusedattacks", "index": 200}]}, {"id": 94906, "name": "Warblade's Hunger", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 35, "next": [94919], "prev": [94897], "entries": [{"id": 117503, "definitionId": 122515, "maxRanks": 1, "type": "passive", "name": "Warblade's Hunger", "spellId": 442502, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 94919, "name": "Thrill of the Fight", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 35, "next": [], "prev": [94910, 94895, 94906], "entries": [{"id": 117516, "definitionId": 122528, "maxRanks": 1, "type": "passive", "name": "Thrill of the Fight", "spellId": 442686, "icon": "spell_arcane_arcanetactics", "index": 100}]}, {"id": 94917, "name": "Demonsurge", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 34, "next": [94913, 94918, 94899], "prev": [], "entries": [{"id": 117514, "definitionId": 122526, "maxRanks": 1, "type": "passive", "name": "Demonsurge", "spellId": 452402, "icon": "inv_ability_felscarreddemonhunter_demonsurge", "index": 100}], "freeNode": true}, {"id": 94913, "name": "Wave of Debilitation / Pursuit of Angriness", "type": "choice", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94905], "prev": [94917], "entries": [{"id": 117510, "definitionId": 122522, "maxRanks": 1, "type": "passive", "name": "Wave of Debilitation", "spellId": 452403, "icon": "spell_fire_felfirenova", "index": 100}, {"id": 124011, "definitionId": 128849, "maxRanks": 1, "type": "passive", "name": "Pursuit of Angriness", "spellId": 452404, "icon": "ability_felarakkoa_focusedblast", "index": 200}]}, {"id": 94918, "name": "Focused Hatred", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94912], "prev": [94917], "entries": [{"id": 117515, "definitionId": 122527, "maxRanks": 1, "type": "passive", "name": "Focused Hatred", "spellId": 452405, "icon": "ability_demonhunter_illidansgrasp", "index": 100}]}, {"id": 94899, "name": "Set Fire to the Pain / Improved Soul Rending", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 34, "next": [94916], "prev": [94917], "entries": [{"id": 117496, "definitionId": 122508, "maxRanks": 1, "type": "passive", "name": "Set Fire to the Pain", "spellId": 452406, "icon": "ability_demonhunter_empowerwards", "index": 100}, {"id": 124010, "definitionId": 128848, "maxRanks": 1, "type": "passive", "name": "Improved Soul Rending", "spellId": 452407, "icon": "ability_demonhunter_soulcleave2", "index": 200}]}, {"id": 94905, "name": "Burning Blades", "type": "single", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94904], "prev": [94913], "entries": [{"id": 117502, "definitionId": 122514, "maxRanks": 1, "type": "passive", "name": "Burning Blades", "spellId": 452408, "icon": "inv_glaive_1h_artifactazgalor_d_02dual", "index": 100}]}, {"id": 94912, "name": "Violent Transformation", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94902], "prev": [94918], "entries": [{"id": 117509, "definitionId": 122521, "maxRanks": 1, "type": "passive", "name": "Violent Transformation", "spellId": 452409, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 94916, "name": "Enduring Torment", "type": "single", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 34, "next": [94909], "prev": [94899], "entries": [{"id": 117513, "definitionId": 122525, "maxRanks": 1, "type": "passive", "name": "Enduring Torment", "spellId": 452410, "icon": "spell_fire_felimmolation", "index": 100}]}, {"id": 94904, "name": "Untethered Fury", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94905], "entries": [{"id": 117501, "definitionId": 122513, "maxRanks": 1, "type": "passive", "name": "Untethered Fury", "spellId": 452411, "icon": "inv__felbarrage", "index": 100}]}, {"id": 94902, "name": "Student of Suffering / Flamebound", "type": "choice", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94912], "entries": [{"id": 117499, "definitionId": 122511, "maxRanks": 1, "type": "passive", "name": "Student of Suffering", "spellId": 452412, "icon": "achievement_dungeon_theatreofpain_kultharok", "index": 100}, {"id": 124009, "definitionId": 128847, "maxRanks": 1, "type": "passive", "name": "Flamebound", "spellId": 452413, "icon": "spell_fire_felflamering", "index": 200}]}, {"id": 94909, "name": "Monster Rising", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 34, "next": [94901], "prev": [94916], "entries": [{"id": 117506, "definitionId": 122518, "maxRanks": 1, "type": "passive", "name": "Monster Rising", "spellId": 452414, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 94901, "name": "Demonic Intensity", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 34, "next": [], "prev": [94902, 94904, 94909], "entries": [{"id": 117498, "definitionId": 122510, "maxRanks": 1, "type": "passive", "name": "Demonic Intensity", "spellId": 452415, "icon": "spell_warlock_demonicempowerment", "index": 100}]}], "subTreeNodes": [{"id": 99823, "name": "Aldrachi Reaver / Fel-Scarred", "type": "subtree", "posX": 8400, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123328, "type": "subtree", "name": "Aldrachi Reaver", "traitSubTreeId": 35, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-aldrachireaver", "nodes": [94915, 94898, 94911, 94903, 94914, 94896, 94897, 94895, 94910, 94906, 94919]}, {"id": 123327, "type": "subtree", "name": "Fel-Scarred", "traitSubTreeId": 34, "traitTreeId": 854, "atlasMemberName": "talents-heroclass-demonhunter-felscarred", "nodes": [94917, 94913, 94918, 94899, 94905, 94912, 94916, 94904, 94902, 94909, 94901]}]}], "fullNodeOrder": [90912, 90914, 90915, 90916, 90917, 90918, 90919, 90921, 90922, 90923, 90925, 90927, 90928, 90929, 90930, 90931, 90933, 90934, 90935, 90936, 90937, 90938, 90939, 90940, 90941, 90942, 90945, 90946, 90947, 90948, 90949, 90950, 90951, 90952, 90953, 90954, 90955, 90956, 90957, 90958, 90959, 90960, 90961, 90962, 90963, 90964, 90965, 90966, 90967, 90968, 90969, 90970, 90971, 90972, 90973, 90974, 90975, 90976, 90977, 90978, 90979, 90980, 90981, 90982, 90983, 90984, 90985, 90986, 90987, 90988, 90989, 90990, 90991, 90993, 90994, 90996, 90997, 90999, 91000, 91001, 91002, 91003, 91004, 91005, 91006, 91007, 91008, 91011, 91012, 91013, 91015, 91017, 91018, 91019, 91020, 91021, 91022, 91024, 91025, 91026, 91027, 91028, 91030, 91031, 91032, 91033, 91034, 91035, 91036, 93013, 93014, 93015, 93016, 94895, 94896, 94897, 94898, 94899, 94901, 94902, 94903, 94904, 94905, 94906, 94909, 94910, 94911, 94912, 94913, 94914, 94915, 94916, 94917, 94918, 94919, 95143, 95144, 95147, 95148, 95149, 95150, 95151, 95152, 95154, 95155, 99823, 99824]}] \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/rogue_assassination.json b/simc_support/game_data/data_files/trees/rogue_assassination.json index e2abbee..0c4f79c 100644 --- a/simc_support/game_data/data_files/trees/rogue_assassination.json +++ b/simc_support/game_data/data_files/trees/rogue_assassination.json @@ -1 +1 @@ -{"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Assassination", "specId": 259, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}], "freeNode": true}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}]}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Shadowstep", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "active", "name": "Shadowstep", "spellId": 394931, "visibleSpellId": 36554, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Echoing Reprimand", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 1, "type": "active", "name": "Echoing Reprimand", "spellId": 385616, "icon": "ability_bastion_rogue", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Resounding Clarity / Reverberation", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Resounding Clarity", "spellId": 381622, "icon": "ability_bastion_rogue", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Reverberation", "spellId": 394332, "icon": "spell_animabastion_buff", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90783, "name": "Deadly Poison", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90628, 90635, 94536], "prev": [], "entries": [{"id": 112676, "definitionId": 117681, "maxRanks": 1, "type": "active", "name": "Deadly Poison", "spellId": 2823, "icon": "ability_rogue_dualweild", "index": 100}]}, {"id": 90628, "name": "Improved Shiv", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [94557], "prev": [90783], "entries": [{"id": 112513, "definitionId": 117518, "maxRanks": 1, "type": "passive", "name": "Improved Shiv", "spellId": 319032, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90635, "name": "Venomous Wounds", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90634], "prev": [90783], "entries": [{"id": 112520, "definitionId": 117525, "maxRanks": 1, "type": "passive", "name": "Venomous Wounds", "spellId": 79134, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94536, "name": "Path of Blood", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90625], "prev": [90783], "entries": [{"id": 117106, "definitionId": 122118, "maxRanks": 1, "type": "passive", "name": "Path of Blood", "spellId": 423054, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 94557, "name": "Rapid Injection", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90630, 90757], "prev": [90628], "entries": [{"id": 117139, "definitionId": 122151, "maxRanks": 1, "type": "passive", "name": "Rapid Injection", "spellId": 455072, "icon": "inv_ammo_arrow_04", "index": 100}]}, {"id": 90634, "name": "Improved Poisons", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90757, 94556], "prev": [90635], "entries": [{"id": 112519, "definitionId": 117524, "maxRanks": 1, "type": "passive", "name": "Improved Poisons", "spellId": 381624, "icon": "ability_poisons", "index": 100}]}, {"id": 90625, "name": "Bloody Mess", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [94556, 90780], "prev": [94536], "entries": [{"id": 112510, "definitionId": 117515, "maxRanks": 1, "type": "passive", "name": "Bloody Mess", "spellId": 381626, "icon": "ability_rogue_rupture", "index": 100}]}, {"id": 90630, "name": "Thrown Precision", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90633, 90632], "prev": [94557], "entries": [{"id": 112515, "definitionId": 117520, "maxRanks": 1, "type": "passive", "name": "Thrown Precision", "spellId": 381629, "icon": "ability_hunter_cobrashot", "index": 100}]}, {"id": 90757, "name": "Seal Fate", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90633, 90769], "prev": [90634, 94557], "entries": [{"id": 112649, "definitionId": 117654, "maxRanks": 1, "type": "passive", "name": "Seal Fate", "spellId": 14190, "icon": "ability_rogue_stayofexecution", "index": 100}]}, {"id": 94556, "name": "Caustic Spatter / Internal Bleeding", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90769, 90779], "prev": [90634, 90625], "entries": [{"id": 117137, "definitionId": 122149, "maxRanks": 1, "type": "passive", "name": "Caustic Spatter", "spellId": 421975, "icon": "ability_creature_poison_02", "index": 100}, {"id": 117136, "definitionId": 122148, "maxRanks": 1, "type": "passive", "name": "Internal Bleeding", "spellId": 381627, "icon": "ability_rogue_bloodsplatter", "index": 200}]}, {"id": 90780, "name": "Improved Garrote", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90779, 90623], "prev": [90625], "entries": [{"id": 112673, "definitionId": 117678, "maxRanks": 1, "type": "passive", "name": "Improved Garrote", "spellId": 381632, "icon": "ability_rogue_garrote", "index": 100}]}, {"id": 90632, "name": "Crimson Tempest", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94554], "prev": [90630], "entries": [{"id": 112517, "definitionId": 117522, "maxRanks": 1, "type": "active", "name": "Crimson Tempest", "spellId": 121411, "icon": "inv_knife_1h_cataclysm_c_05", "index": 100}]}, {"id": 90633, "name": "Lightweight Shiv", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94554, 90772], "prev": [90757, 90630], "entries": [{"id": 112518, "definitionId": 117523, "maxRanks": 1, "type": "passive", "name": "Lightweight Shiv", "spellId": 394983, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90769, "name": "Deathmark", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90772, 90626, 90624], "prev": [90757, 94556], "entries": [{"id": 112662, "definitionId": 117667, "maxRanks": 1, "type": "active", "name": "Deathmark", "spellId": 360194, "icon": "ability_rogue_deathmark", "index": 100}]}, {"id": 90779, "name": "Sanguine Blades", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90624, 94555], "prev": [94556, 90780], "entries": [{"id": 112672, "definitionId": 117677, "maxRanks": 1, "type": "passive", "name": "Sanguine Blades", "spellId": 200806, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 90623, "name": "Master Assassin", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94555], "prev": [90780], "entries": [{"id": 112508, "definitionId": 117513, "maxRanks": 1, "type": "passive", "name": "Master Assassin", "spellId": 255989, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 94554, "name": "Flying Daggers / Sanguine Stratagem", "type": "choice", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90771], "prev": [90633, 90632], "entries": [{"id": 117133, "definitionId": 122145, "maxRanks": 1, "type": "passive", "name": "Flying Daggers", "spellId": 381631, "icon": "ability_rogue_fanofknives", "index": 100}, {"id": 117132, "definitionId": 122144, "maxRanks": 1, "type": "passive", "name": "Sanguine Stratagem", "spellId": 457512, "icon": "archaeology_5_0_changkiboard", "index": 200}]}, {"id": 90772, "name": "Vicious Venoms", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90771, 90770], "prev": [90633, 90769], "entries": [{"id": 112665, "definitionId": 117670, "maxRanks": 2, "type": "passive", "name": "Vicious Venoms", "spellId": 381634, "icon": "ability_rogue_deadlybrew", "index": 100}]}, {"id": 90626, "name": "Fatal Concoction", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90621, 90768], "prev": [90769], "entries": [{"id": 112511, "definitionId": 117516, "maxRanks": 1, "type": "passive", "name": "Fatal Concoction", "spellId": 392384, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90624, "name": "Lethal Dose", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90777, 90776], "prev": [90769, 90779], "entries": [{"id": 112509, "definitionId": 117514, "maxRanks": 2, "type": "passive", "name": "Lethal Dose", "spellId": 381640, "icon": "ability_rogue_deviouspoisons", "index": 100}]}, {"id": 94555, "name": "Intent to Kill / Iron Wire", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90777], "prev": [90779, 90623], "entries": [{"id": 117135, "definitionId": 122147, "maxRanks": 1, "type": "passive", "name": "Intent to Kill", "spellId": 381630, "icon": "ability_rogue_bloodyeye", "index": 100}, {"id": 117134, "definitionId": 122146, "maxRanks": 1, "type": "passive", "name": "Iron Wire", "spellId": 196861, "icon": "inv_jewelcrafting_delicatecopperwire", "index": 200}]}, {"id": 90771, "name": "Systemic Failure", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90786, 90770], "prev": [94554, 90772], "entries": [{"id": 112664, "definitionId": 117669, "maxRanks": 1, "type": "passive", "name": "Systemic Failure", "spellId": 381652, "icon": "ability_skeer_bloodletting", "index": 100}]}, {"id": 90621, "name": "Amplifying Poison", "type": "single", "posX": 12010, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90766], "prev": [90626], "entries": [{"id": 112505, "definitionId": 117510, "maxRanks": 1, "type": "active", "name": "Amplifying Poison", "spellId": 381664, "icon": "inv_misc_herb_fellotus", "index": 100}]}, {"id": 90768, "name": "Twist the Knife", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90766], "prev": [90626], "entries": [{"id": 112661, "definitionId": 117666, "maxRanks": 1, "type": "passive", "name": "Twist the Knife", "spellId": 381669, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 90777, "name": "Doomblade", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90776, 90622], "prev": [94555, 90624], "entries": [{"id": 112670, "definitionId": 117675, "maxRanks": 1, "type": "passive", "name": "Doomblade", "spellId": 381673, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 90786, "name": "Blindside", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90785], "prev": [90771], "entries": [{"id": 112679, "definitionId": 117684, "maxRanks": 1, "type": "passive", "name": "Blindside", "spellId": 328085, "icon": "ability_rogue_focusedattacks", "index": 100}]}, {"id": 90770, "name": "Tiny Toxic Blade", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90785, 90767], "prev": [90771, 90772], "entries": [{"id": 112663, "definitionId": 117668, "maxRanks": 1, "type": "passive", "name": "Tiny Toxic Blade", "spellId": 381800, "icon": "ability_rogue_poisonedknife", "index": 100}]}, {"id": 90766, "name": "Dashing Scoundrel", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90767], "prev": [90768, 90621], "entries": [{"id": 112659, "definitionId": 117664, "maxRanks": 1, "type": "passive", "name": "Dashing Scoundrel", "spellId": 381797, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 90776, "name": "Shrouded Suffocation", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90767, 90775], "prev": [90777, 90624], "entries": [{"id": 112669, "definitionId": 117674, "maxRanks": 1, "type": "passive", "name": "Shrouded Suffocation", "spellId": 385478, "icon": "ability_rogue_garrote", "index": 100}]}, {"id": 90622, "name": "Serrated Bone Spikes", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90775], "prev": [90777], "entries": [{"id": 112507, "definitionId": 117512, "maxRanks": 1, "type": "passive", "name": "Serrated Bone Spikes", "spellId": 455352, "icon": "ability_maldraxxus_rogue", "index": 100}]}, {"id": 90785, "name": "Zoldyck Recipe", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90784, 94552], "prev": [90770, 90786], "entries": [{"id": 112678, "definitionId": 117683, "maxRanks": 2, "type": "passive", "name": "Zoldyck Recipe", "spellId": 381798, "icon": "archaeology_5_0_thunderkinginsignia", "index": 100}]}, {"id": 90767, "name": "Poison Bomb", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94552, 94553, 90774], "prev": [90776, 90770, 90766], "entries": [{"id": 112660, "definitionId": 117665, "maxRanks": 2, "type": "passive", "name": "Poison Bomb", "spellId": 255544, "icon": "rogue_paralytic_poison", "index": 100}]}, {"id": 90775, "name": "Scent of Blood", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90774, 94551], "prev": [90776, 90622], "entries": [{"id": 112668, "definitionId": 117673, "maxRanks": 2, "type": "passive", "name": "Scent of Blood", "spellId": 381799, "icon": "ability_rogue_rupture", "index": 100}]}, {"id": 90784, "name": "Arterial Precision", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90785], "entries": [{"id": 112677, "definitionId": 117682, "maxRanks": 1, "type": "passive", "name": "Arterial Precision", "spellId": 400783, "icon": "ability_rogue_surpriseattack", "index": 100}]}, {"id": 94552, "name": "Kingsbane", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767, 90785], "entries": [{"id": 117130, "definitionId": 122142, "maxRanks": 1, "type": "active", "name": "Kingsbane", "spellId": 385627, "icon": "inv_knife_1h_artifactgarona_d_01", "index": 100}]}, {"id": 94553, "name": "Dragon-Tempered Blades", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767], "entries": [{"id": 117131, "definitionId": 122143, "maxRanks": 1, "type": "passive", "name": "Dragon-Tempered Blades", "spellId": 381801, "icon": "spell_fire_flameblades", "index": 100}]}, {"id": 90774, "name": "Indiscriminate Carnage", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767, 90775], "entries": [{"id": 112667, "definitionId": 117672, "maxRanks": 1, "type": "passive", "name": "Indiscriminate Carnage", "spellId": 381802, "icon": "ability_rogue_indiscriminatecarnage", "index": 100}]}, {"id": 94551, "name": "Sudden Demise", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90775], "entries": [{"id": 117129, "definitionId": 122141, "maxRanks": 1, "type": "passive", "name": "Sudden Demise", "spellId": 423136, "icon": "ability_deathknight_hemorrhagicfever", "index": 100}]}], "heroNodes": [{"id": 95125, "name": "Hand of Fate", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 52, "next": [95138, 95122, 95130], "prev": [], "entries": [{"id": 117722, "definitionId": 122734, "maxRanks": 1, "type": "passive", "name": "Hand of Fate", "spellId": 452536, "icon": "inv_ability_fateboundrogue_handoffateheads", "index": 100}], "freeNode": true}, {"id": 95136, "name": "Deathstalker's Mark", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 53, "next": [95110, 95132, 95117], "prev": [], "entries": [{"id": 117733, "definitionId": 122745, "maxRanks": 1, "type": "passive", "name": "Deathstalker's Mark", "spellId": 457052, "icon": "inv_ability_deathstalkerrogue_deathstalkersmark", "index": 100}], "freeNode": true}, {"id": 95138, "name": "Chosen's Revelry / Tempted Fate", "type": "choice", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95107], "prev": [95125], "entries": [{"id": 117735, "definitionId": 122747, "maxRanks": 1, "type": "passive", "name": "Chosen's Revelry", "spellId": 454300, "icon": "ability_priest_heavanlyvoice", "index": 100}, {"id": 125132, "definitionId": 129964, "maxRanks": 1, "type": "passive", "name": "Tempted Fate", "spellId": 454286, "icon": "ability_rogue_sabreslash", "index": 200}]}, {"id": 95122, "name": "Mean Streak", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95139], "prev": [95125], "entries": [{"id": 117719, "definitionId": 122731, "maxRanks": 1, "type": "passive", "name": "Mean Streak", "spellId": 453428, "icon": "inv_sigil_thorim", "index": 100}]}, {"id": 95130, "name": "Inexorable March / Death's Arrival", "type": "choice", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95120], "prev": [95125], "entries": [{"id": 117727, "definitionId": 122739, "maxRanks": 1, "type": "passive", "name": "Inexorable March", "spellId": 454432, "icon": "ability_monk_ridethewind", "index": 100}, {"id": 125140, "definitionId": 129972, "maxRanks": 1, "type": "passive", "name": "Death's Arrival", "spellId": 454433, "icon": "achievement_guildperk_havegroup_willtravel", "index": 200}]}, {"id": 95110, "name": "Clear the Witnesses", "type": "single", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95135], "prev": [95136], "entries": [{"id": 117707, "definitionId": 122719, "maxRanks": 1, "type": "passive", "name": "Clear the Witnesses", "spellId": 457053, "icon": "ability_rogue_fanofknives", "index": 100}]}, {"id": 95132, "name": "Hunt Them Down", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95108], "prev": [95136], "entries": [{"id": 117729, "definitionId": 122741, "maxRanks": 1, "type": "passive", "name": "Hunt Them Down", "spellId": 457054, "icon": "ability_rogue_creepingvenom", "index": 100}]}, {"id": 95117, "name": "Singular Focus", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95109], "prev": [95136], "entries": [{"id": 117714, "definitionId": 122726, "maxRanks": 1, "type": "passive", "name": "Singular Focus", "spellId": 457055, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 95107, "name": "Deal Fate", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95119], "prev": [95138], "entries": [{"id": 117704, "definitionId": 122716, "maxRanks": 1, "type": "passive", "name": "Deal Fate", "spellId": 454419, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 95139, "name": "Edge Case", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "requiresNode": 90769, "next": [95114], "prev": [95122], "entries": [{"id": 117736, "definitionId": 122748, "maxRanks": 1, "type": "passive", "name": "Edge Case", "spellId": 453457, "icon": "item_icecrownnecklacea", "index": 100}]}, {"id": 95120, "name": "Fate Intertwined", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95129], "prev": [95130], "entries": [{"id": 117717, "definitionId": 122729, "maxRanks": 1, "type": "passive", "name": "Fate Intertwined", "spellId": 454429, "icon": "inv_cosmicvoid_beam", "index": 100}]}, {"id": 95135, "name": "Fatal Intent", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95106], "prev": [95110], "entries": [{"id": 117732, "definitionId": 122744, "maxRanks": 1, "type": "passive", "name": "Fatal Intent", "spellId": 461980, "icon": "ability_warrior_deepcuts", "index": 100}]}, {"id": 95108, "name": "Corrupt the Blood", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95131], "prev": [95132], "entries": [{"id": 117705, "definitionId": 122717, "maxRanks": 1, "type": "passive", "name": "Corrupt the Blood", "spellId": 457066, "icon": "ability_ironmaidens_bloodritual", "index": 100}]}, {"id": 95109, "name": "Lingering Darkness / Symbolic Victory", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95123], "prev": [95117], "entries": [{"id": 117706, "definitionId": 122718, "maxRanks": 1, "type": "passive", "name": "Lingering Darkness", "spellId": 457056, "icon": "ability_rogue_envelopingshadows", "index": 100}, {"id": 126030, "definitionId": 130862, "maxRanks": 1, "type": "passive", "name": "Symbolic Victory", "spellId": 457062, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 95119, "name": "Delivered Doom", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95107], "entries": [{"id": 117716, "definitionId": 122728, "maxRanks": 1, "type": "passive", "name": "Delivered Doom", "spellId": 454426, "icon": "ability_bossgorefiend_touchofdoom", "index": 100}]}, {"id": 95114, "name": "Inevitability / Destiny Defined", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95139], "entries": [{"id": 117711, "definitionId": 122723, "maxRanks": 1, "type": "passive", "name": "Inevitability", "spellId": 454434, "icon": "spell_ice_lament", "index": 100}, {"id": 125139, "definitionId": 129971, "maxRanks": 1, "type": "passive", "name": "Destiny Defined", "spellId": 454435, "icon": "ability_boss_fatescribe_rune6", "index": 200}]}, {"id": 95129, "name": "Double Jeopardy", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95120], "entries": [{"id": 117726, "definitionId": 122738, "maxRanks": 1, "type": "passive", "name": "Double Jeopardy", "spellId": 454430, "icon": "spell_nature_mirrorimage", "index": 100}]}, {"id": 95106, "name": "Ethereal Cloak / Bait and Switch", "type": "choice", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95135], "entries": [{"id": 117703, "definitionId": 122715, "maxRanks": 1, "type": "passive", "name": "Ethereal Cloak", "spellId": 457022, "icon": "spell_arcane_prismaticcloak", "index": 100}, {"id": 126029, "definitionId": 130861, "maxRanks": 1, "type": "passive", "name": "Bait and Switch", "spellId": 457034, "icon": "ability_druid_earthandsky", "index": 200}]}, {"id": 95131, "name": "Momentum of Despair / Follow the Blood", "type": "choice", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95108], "entries": [{"id": 117728, "definitionId": 122740, "maxRanks": 1, "type": "passive", "name": "Momentum of Despair", "spellId": 457067, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 126028, "definitionId": 130860, "maxRanks": 1, "type": "passive", "name": "Follow the Blood", "spellId": 457068, "icon": "sha_ability_rogue_bloodyeye_nightmare", "index": 200}]}, {"id": 95123, "name": "Shadewalker / Shroud of Night", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95109], "entries": [{"id": 117720, "definitionId": 122732, "maxRanks": 1, "type": "passive", "name": "Shadewalker", "spellId": 457057, "icon": "rogue_shadow_reflection", "index": 100}, {"id": 126027, "definitionId": 130859, "maxRanks": 1, "type": "passive", "name": "Shroud of Night", "spellId": 457063, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 95127, "name": "Fateful Ending", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 52, "next": [], "prev": [95114, 95119, 95129], "entries": [{"id": 117724, "definitionId": 122736, "maxRanks": 1, "type": "passive", "name": "Fateful Ending", "spellId": 454428, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 95142, "name": "Darkest Night", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 53, "next": [], "prev": [95131, 95106, 95123], "entries": [{"id": 117739, "definitionId": 122751, "maxRanks": 1, "type": "passive", "name": "Darkest Night", "spellId": 457058, "icon": "spell_shadow_twilight", "index": 100}]}], "subTreeNodes": [{"id": 99844, "name": "Deathstalker / Fatebound", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123375, "type": "subtree", "name": "Deathstalker", "traitSubTreeId": 53, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-deathstalker", "nodes": [95136, 95110, 95132, 95117, 95135, 95108, 95109, 95106, 95131, 95123, 95142]}, {"id": 123371, "type": "subtree", "name": "Fatebound", "traitSubTreeId": 52, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-fatebound", "nodes": [95125, 95138, 95122, 95130, 95107, 95139, 95120, 95119, 95114, 95129, 95127]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]} \ No newline at end of file +{"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Assassination", "specId": 259, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}], "freeNode": true}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}]}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Thrill Seeking", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "passive", "name": "Thrill Seeking", "spellId": 394931, "icon": "inv_ragnaros_heart_shadowflame", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Supercharger", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 2, "type": "passive", "name": "Supercharger", "spellId": 470347, "icon": "inv_engineering_90_electrifiedether", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 469779, "visibleSpellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Echoing Reprimand / Forced Induction", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Echoing Reprimand", "spellId": 470669, "icon": "inv_ability_rogue_echoingreprimand", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Forced Induction", "spellId": 470668, "icon": "inv_misc_enggizmos_06", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90783, "name": "Deadly Poison", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90628, 90635, 94536], "prev": [], "entries": [{"id": 112676, "definitionId": 117681, "maxRanks": 1, "type": "active", "name": "Deadly Poison", "spellId": 2823, "icon": "ability_rogue_dualweild", "index": 100}]}, {"id": 90628, "name": "Improved Shiv", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [94557], "prev": [90783], "entries": [{"id": 112513, "definitionId": 117518, "maxRanks": 1, "type": "passive", "name": "Improved Shiv", "spellId": 319032, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90635, "name": "Venomous Wounds", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90634], "prev": [90783], "entries": [{"id": 112520, "definitionId": 117525, "maxRanks": 1, "type": "passive", "name": "Venomous Wounds", "spellId": 79134, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 94536, "name": "Path of Blood", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90625], "prev": [90783], "entries": [{"id": 117106, "definitionId": 122118, "maxRanks": 1, "type": "passive", "name": "Path of Blood", "spellId": 423054, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 94557, "name": "Rapid Injection", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90630, 90757], "prev": [90628], "entries": [{"id": 117139, "definitionId": 122151, "maxRanks": 1, "type": "passive", "name": "Rapid Injection", "spellId": 455072, "icon": "inv_ammo_arrow_04", "index": 100}]}, {"id": 90634, "name": "Improved Poisons", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90757, 94556], "prev": [90635], "entries": [{"id": 112519, "definitionId": 117524, "maxRanks": 1, "type": "passive", "name": "Improved Poisons", "spellId": 381624, "icon": "ability_poisons", "index": 100}]}, {"id": 90625, "name": "Bloody Mess", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [94556, 90780], "prev": [94536], "entries": [{"id": 112510, "definitionId": 117515, "maxRanks": 1, "type": "passive", "name": "Bloody Mess", "spellId": 381626, "icon": "ability_rogue_rupture", "index": 100}]}, {"id": 90630, "name": "Thrown Precision", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90633, 90632], "prev": [94557], "entries": [{"id": 112515, "definitionId": 117520, "maxRanks": 1, "type": "passive", "name": "Thrown Precision", "spellId": 381629, "icon": "ability_hunter_cobrashot", "index": 100}]}, {"id": 90757, "name": "Seal Fate", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90633, 90769], "prev": [90634, 94557], "entries": [{"id": 112649, "definitionId": 117654, "maxRanks": 1, "type": "passive", "name": "Seal Fate", "spellId": 14190, "icon": "ability_rogue_stayofexecution", "index": 100}]}, {"id": 94556, "name": "Caustic Spatter / Internal Bleeding", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90769, 90779], "prev": [90634, 90625], "entries": [{"id": 117137, "definitionId": 122149, "maxRanks": 1, "type": "passive", "name": "Caustic Spatter", "spellId": 421975, "icon": "ability_creature_poison_02", "index": 100}, {"id": 117136, "definitionId": 122148, "maxRanks": 1, "type": "passive", "name": "Internal Bleeding", "spellId": 381627, "icon": "ability_rogue_bloodsplatter", "index": 200}]}, {"id": 90780, "name": "Improved Garrote", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90779, 90623], "prev": [90625], "entries": [{"id": 112673, "definitionId": 117678, "maxRanks": 1, "type": "passive", "name": "Improved Garrote", "spellId": 381632, "icon": "ability_rogue_garrote", "index": 100}]}, {"id": 90632, "name": "Crimson Tempest", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94554], "prev": [90630], "entries": [{"id": 112517, "definitionId": 117522, "maxRanks": 1, "type": "active", "name": "Crimson Tempest", "spellId": 121411, "icon": "inv_knife_1h_cataclysm_c_05", "index": 100}]}, {"id": 90633, "name": "Lightweight Shiv", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94554, 90772], "prev": [90757, 90630], "entries": [{"id": 112518, "definitionId": 117523, "maxRanks": 1, "type": "passive", "name": "Lightweight Shiv", "spellId": 394983, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90769, "name": "Deathmark", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90772, 90626, 90624], "prev": [90757, 94556], "entries": [{"id": 112662, "definitionId": 117667, "maxRanks": 1, "type": "active", "name": "Deathmark", "spellId": 360194, "icon": "ability_rogue_deathmark", "index": 100}]}, {"id": 90779, "name": "Sanguine Blades", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90624, 94555], "prev": [94556, 90780], "entries": [{"id": 112672, "definitionId": 117677, "maxRanks": 1, "type": "passive", "name": "Sanguine Blades", "spellId": 200806, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 90623, "name": "Master Assassin", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94555], "prev": [90780], "entries": [{"id": 112508, "definitionId": 117513, "maxRanks": 1, "type": "passive", "name": "Master Assassin", "spellId": 255989, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 94554, "name": "Flying Daggers / Sanguine Stratagem", "type": "choice", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90771], "prev": [90633, 90632], "entries": [{"id": 117133, "definitionId": 122145, "maxRanks": 1, "type": "passive", "name": "Flying Daggers", "spellId": 381631, "icon": "ability_rogue_fanofknives", "index": 100}, {"id": 117132, "definitionId": 122144, "maxRanks": 1, "type": "passive", "name": "Sanguine Stratagem", "spellId": 457512, "icon": "archaeology_5_0_changkiboard", "index": 200}]}, {"id": 90772, "name": "Vicious Venoms", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90771, 90770], "prev": [90633, 90769], "entries": [{"id": 112665, "definitionId": 117670, "maxRanks": 2, "type": "passive", "name": "Vicious Venoms", "spellId": 381634, "icon": "ability_rogue_deadlybrew", "index": 100}]}, {"id": 90626, "name": "Fatal Concoction", "type": "single", "posX": 12300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90621, 90768], "prev": [90769], "entries": [{"id": 112511, "definitionId": 117516, "maxRanks": 1, "type": "passive", "name": "Fatal Concoction", "spellId": 392384, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90624, "name": "Lethal Dose", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 2, "next": [90777, 90776], "prev": [90769, 90779], "entries": [{"id": 112509, "definitionId": 117514, "maxRanks": 2, "type": "passive", "name": "Lethal Dose", "spellId": 381640, "icon": "ability_rogue_deviouspoisons", "index": 100}]}, {"id": 94555, "name": "Intent to Kill / Iron Wire", "type": "choice", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90777], "prev": [90779, 90623], "entries": [{"id": 117135, "definitionId": 122147, "maxRanks": 1, "type": "passive", "name": "Intent to Kill", "spellId": 381630, "icon": "ability_rogue_bloodyeye", "index": 100}, {"id": 117134, "definitionId": 122146, "maxRanks": 1, "type": "passive", "name": "Iron Wire", "spellId": 196861, "icon": "inv_jewelcrafting_delicatecopperwire", "index": 200}]}, {"id": 90771, "name": "Systemic Failure", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90786, 90770], "prev": [94554, 90772], "entries": [{"id": 112664, "definitionId": 117669, "maxRanks": 1, "type": "passive", "name": "Systemic Failure", "spellId": 381652, "icon": "ability_skeer_bloodletting", "index": 100}]}, {"id": 90621, "name": "Amplifying Poison", "type": "single", "posX": 12010, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90766], "prev": [90626], "entries": [{"id": 112505, "definitionId": 117510, "maxRanks": 1, "type": "active", "name": "Amplifying Poison", "spellId": 381664, "icon": "inv_misc_herb_fellotus", "index": 100}]}, {"id": 90768, "name": "Twist the Knife", "type": "single", "posX": 12600, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90766], "prev": [90626], "entries": [{"id": 112661, "definitionId": 117666, "maxRanks": 1, "type": "passive", "name": "Twist the Knife", "spellId": 381669, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 90777, "name": "Doomblade", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90776, 90622], "prev": [94555, 90624], "entries": [{"id": 112670, "definitionId": 117675, "maxRanks": 1, "type": "passive", "name": "Doomblade", "spellId": 381673, "icon": "ability_deathwing_bloodcorruption_earth", "index": 100}]}, {"id": 90786, "name": "Blindside", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90785], "prev": [90771], "entries": [{"id": 112679, "definitionId": 117684, "maxRanks": 1, "type": "passive", "name": "Blindside", "spellId": 328085, "icon": "ability_rogue_focusedattacks", "index": 100}]}, {"id": 90770, "name": "Tiny Toxic Blade", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90785, 90767], "prev": [90771, 90772], "entries": [{"id": 112663, "definitionId": 117668, "maxRanks": 1, "type": "passive", "name": "Tiny Toxic Blade", "spellId": 381800, "icon": "ability_rogue_poisonedknife", "index": 100}]}, {"id": 90766, "name": "Dashing Scoundrel", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90767], "prev": [90768, 90621], "entries": [{"id": 112659, "definitionId": 117664, "maxRanks": 1, "type": "passive", "name": "Dashing Scoundrel", "spellId": 381797, "icon": "ability_rogue_venomouswounds", "index": 100}]}, {"id": 90776, "name": "Shrouded Suffocation", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90767, 90775], "prev": [90777, 90624], "entries": [{"id": 112669, "definitionId": 117674, "maxRanks": 1, "type": "passive", "name": "Shrouded Suffocation", "spellId": 385478, "icon": "ability_rogue_garrote", "index": 100}]}, {"id": 90622, "name": "Serrated Bone Spikes", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90775], "prev": [90777], "entries": [{"id": 112507, "definitionId": 117512, "maxRanks": 1, "type": "passive", "name": "Serrated Bone Spikes", "spellId": 455352, "icon": "ability_maldraxxus_rogue", "index": 100}]}, {"id": 90785, "name": "Zoldyck Recipe", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90784, 94552], "prev": [90770, 90786], "entries": [{"id": 112678, "definitionId": 117683, "maxRanks": 2, "type": "passive", "name": "Zoldyck Recipe", "spellId": 381798, "icon": "archaeology_5_0_thunderkinginsignia", "index": 100}]}, {"id": 90767, "name": "Poison Bomb", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94552, 94553, 90774], "prev": [90776, 90770, 90766], "entries": [{"id": 112660, "definitionId": 117665, "maxRanks": 2, "type": "passive", "name": "Poison Bomb", "spellId": 255544, "icon": "rogue_paralytic_poison", "index": 100}]}, {"id": 90775, "name": "Scent of Blood", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90774, 94551], "prev": [90776, 90622], "entries": [{"id": 112668, "definitionId": 117673, "maxRanks": 2, "type": "passive", "name": "Scent of Blood", "spellId": 381799, "icon": "ability_rogue_rupture", "index": 100}]}, {"id": 90784, "name": "Arterial Precision", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90785], "entries": [{"id": 112677, "definitionId": 117682, "maxRanks": 1, "type": "passive", "name": "Arterial Precision", "spellId": 400783, "icon": "ability_rogue_surpriseattack", "index": 100}]}, {"id": 94552, "name": "Kingsbane", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767, 90785], "entries": [{"id": 117130, "definitionId": 122142, "maxRanks": 1, "type": "active", "name": "Kingsbane", "spellId": 385627, "icon": "inv_knife_1h_artifactgarona_d_01", "index": 100}]}, {"id": 94553, "name": "Dragon-Tempered Blades", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767], "entries": [{"id": 117131, "definitionId": 122143, "maxRanks": 1, "type": "passive", "name": "Dragon-Tempered Blades", "spellId": 381801, "icon": "spell_fire_flameblades", "index": 100}]}, {"id": 90774, "name": "Indiscriminate Carnage", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90767, 90775], "entries": [{"id": 112667, "definitionId": 117672, "maxRanks": 1, "type": "passive", "name": "Indiscriminate Carnage", "spellId": 381802, "icon": "ability_rogue_indiscriminatecarnage", "index": 100}]}, {"id": 94551, "name": "Sudden Demise", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90775], "entries": [{"id": 117129, "definitionId": 122141, "maxRanks": 1, "type": "passive", "name": "Sudden Demise", "spellId": 423136, "icon": "ability_deathknight_hemorrhagicfever", "index": 100}]}], "heroNodes": [{"id": 95125, "name": "Hand of Fate", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 52, "next": [95138, 95122, 95130], "prev": [], "entries": [{"id": 117722, "definitionId": 122734, "maxRanks": 1, "type": "passive", "name": "Hand of Fate", "spellId": 452536, "icon": "inv_ability_fateboundrogue_handoffateheads", "index": 100}], "freeNode": true}, {"id": 95136, "name": "Deathstalker's Mark", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 53, "next": [95110, 95132, 95117], "prev": [], "entries": [{"id": 117733, "definitionId": 122745, "maxRanks": 1, "type": "passive", "name": "Deathstalker's Mark", "spellId": 457052, "icon": "inv_ability_deathstalkerrogue_deathstalkersmark", "index": 100}], "freeNode": true}, {"id": 95138, "name": "Chosen's Revelry / Tempted Fate", "type": "choice", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95107], "prev": [95125], "entries": [{"id": 117735, "definitionId": 122747, "maxRanks": 1, "type": "passive", "name": "Chosen's Revelry", "spellId": 454300, "icon": "ability_priest_heavanlyvoice", "index": 100}, {"id": 125132, "definitionId": 129964, "maxRanks": 1, "type": "passive", "name": "Tempted Fate", "spellId": 454286, "icon": "ability_rogue_sabreslash", "index": 200}]}, {"id": 95122, "name": "Mean Streak", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95139], "prev": [95125], "entries": [{"id": 117719, "definitionId": 122731, "maxRanks": 1, "type": "passive", "name": "Mean Streak", "spellId": 453428, "icon": "inv_sigil_thorim", "index": 100}]}, {"id": 95130, "name": "Inexorable March / Death's Arrival", "type": "choice", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95120], "prev": [95125], "entries": [{"id": 117727, "definitionId": 122739, "maxRanks": 1, "type": "passive", "name": "Inexorable March", "spellId": 454432, "icon": "ability_monk_ridethewind", "index": 100}, {"id": 125140, "definitionId": 129972, "maxRanks": 1, "type": "passive", "name": "Death's Arrival", "spellId": 454433, "icon": "achievement_guildperk_havegroup_willtravel", "index": 200}]}, {"id": 95110, "name": "Clear the Witnesses", "type": "single", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95135], "prev": [95136], "entries": [{"id": 117707, "definitionId": 122719, "maxRanks": 1, "type": "passive", "name": "Clear the Witnesses", "spellId": 457053, "icon": "ability_rogue_fanofknives", "index": 100}]}, {"id": 95132, "name": "Hunt Them Down", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95108], "prev": [95136], "entries": [{"id": 117729, "definitionId": 122741, "maxRanks": 1, "type": "passive", "name": "Hunt Them Down", "spellId": 457054, "icon": "ability_rogue_creepingvenom", "index": 100}]}, {"id": 95117, "name": "Singular Focus", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95109], "prev": [95136], "entries": [{"id": 117714, "definitionId": 122726, "maxRanks": 1, "type": "passive", "name": "Singular Focus", "spellId": 457055, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 95107, "name": "Deal Fate", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95119], "prev": [95138], "entries": [{"id": 117704, "definitionId": 122716, "maxRanks": 1, "type": "passive", "name": "Deal Fate", "spellId": 454419, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 95139, "name": "Edge Case", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "requiresNode": 90769, "next": [95114], "prev": [95122], "entries": [{"id": 117736, "definitionId": 122748, "maxRanks": 1, "type": "passive", "name": "Edge Case", "spellId": 453457, "icon": "item_icecrownnecklacea", "index": 100}]}, {"id": 95120, "name": "Fate Intertwined", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95129], "prev": [95130], "entries": [{"id": 117717, "definitionId": 122729, "maxRanks": 1, "type": "passive", "name": "Fate Intertwined", "spellId": 454429, "icon": "inv_cosmicvoid_beam", "index": 100}]}, {"id": 95135, "name": "Fatal Intent", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95106], "prev": [95110], "entries": [{"id": 117732, "definitionId": 122744, "maxRanks": 1, "type": "passive", "name": "Fatal Intent", "spellId": 461980, "icon": "ability_warrior_deepcuts", "index": 100}]}, {"id": 95108, "name": "Corrupt the Blood", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95131], "prev": [95132], "entries": [{"id": 117705, "definitionId": 122717, "maxRanks": 1, "type": "passive", "name": "Corrupt the Blood", "spellId": 457066, "icon": "ability_ironmaidens_bloodritual", "index": 100}]}, {"id": 95109, "name": "Lingering Darkness / Symbolic Victory", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95123], "prev": [95117], "entries": [{"id": 117706, "definitionId": 122718, "maxRanks": 1, "type": "passive", "name": "Lingering Darkness", "spellId": 457056, "icon": "ability_rogue_envelopingshadows", "index": 100}, {"id": 126030, "definitionId": 130862, "maxRanks": 1, "type": "passive", "name": "Symbolic Victory", "spellId": 457062, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 95119, "name": "Delivered Doom", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95107], "entries": [{"id": 117716, "definitionId": 122728, "maxRanks": 1, "type": "passive", "name": "Delivered Doom", "spellId": 454426, "icon": "ability_bossgorefiend_touchofdoom", "index": 100}]}, {"id": 95114, "name": "Inevitabile End / Destiny Defined", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95139], "entries": [{"id": 117711, "definitionId": 122723, "maxRanks": 1, "type": "passive", "name": "Inevitabile End", "spellId": 454434, "icon": "spell_ice_lament", "index": 100}, {"id": 125139, "definitionId": 129971, "maxRanks": 1, "type": "passive", "name": "Destiny Defined", "spellId": 454435, "icon": "ability_boss_fatescribe_rune6", "index": 200}]}, {"id": 95129, "name": "Double Jeopardy", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95120], "entries": [{"id": 117726, "definitionId": 122738, "maxRanks": 1, "type": "passive", "name": "Double Jeopardy", "spellId": 454430, "icon": "spell_nature_mirrorimage", "index": 100}]}, {"id": 95106, "name": "Ethereal Cloak / Bait and Switch", "type": "choice", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95135], "entries": [{"id": 117703, "definitionId": 122715, "maxRanks": 1, "type": "passive", "name": "Ethereal Cloak", "spellId": 457022, "icon": "spell_arcane_prismaticcloak", "index": 100}, {"id": 126029, "definitionId": 130861, "maxRanks": 1, "type": "passive", "name": "Bait and Switch", "spellId": 457034, "icon": "ability_druid_earthandsky", "index": 200}]}, {"id": 95131, "name": "Momentum of Despair / Follow the Blood", "type": "choice", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95108], "entries": [{"id": 117728, "definitionId": 122740, "maxRanks": 1, "type": "passive", "name": "Momentum of Despair", "spellId": 457067, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 126028, "definitionId": 130860, "maxRanks": 1, "type": "passive", "name": "Follow the Blood", "spellId": 457068, "icon": "sha_ability_rogue_bloodyeye_nightmare", "index": 200}]}, {"id": 95123, "name": "Shadewalker / Shroud of Night", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95109], "entries": [{"id": 117720, "definitionId": 122732, "maxRanks": 1, "type": "passive", "name": "Shadewalker", "spellId": 457057, "icon": "rogue_shadow_reflection", "index": 100}, {"id": 126027, "definitionId": 130859, "maxRanks": 1, "type": "passive", "name": "Shroud of Night", "spellId": 457063, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 95127, "name": "Fateful Ending", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 52, "next": [], "prev": [95114, 95119, 95129], "entries": [{"id": 117724, "definitionId": 122736, "maxRanks": 1, "type": "passive", "name": "Fateful Ending", "spellId": 454428, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 95142, "name": "Darkest Night", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 53, "next": [], "prev": [95131, 95106, 95123], "entries": [{"id": 117739, "definitionId": 122751, "maxRanks": 1, "type": "passive", "name": "Darkest Night", "spellId": 457058, "icon": "spell_shadow_twilight", "index": 100}]}], "subTreeNodes": [{"id": 99844, "name": "Deathstalker / Fatebound", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123375, "type": "subtree", "name": "Deathstalker", "traitSubTreeId": 53, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-deathstalker", "nodes": [95136, 95110, 95132, 95117, 95135, 95108, 95109, 95106, 95131, 95123, 95142]}, {"id": 123371, "type": "subtree", "name": "Fatebound", "traitSubTreeId": 52, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-fatebound", "nodes": [95125, 95138, 95122, 95130, 95107, 95139, 95120, 95119, 95114, 95129, 95127]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/rogue_outlaw.json b/simc_support/game_data/data_files/trees/rogue_outlaw.json index 6883f27..131accf 100644 --- a/simc_support/game_data/data_files/trees/rogue_outlaw.json +++ b/simc_support/game_data/data_files/trees/rogue_outlaw.json @@ -1 +1 @@ -{"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Outlaw", "specId": 260, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}], "freeNode": true}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Shadowstep", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "active", "name": "Shadowstep", "spellId": 394931, "visibleSpellId": 36554, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Echoing Reprimand", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 1, "type": "active", "name": "Echoing Reprimand", "spellId": 385616, "icon": "ability_bastion_rogue", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Resounding Clarity / Reverberation", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Resounding Clarity", "spellId": 381622, "icon": "ability_bastion_rogue", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Reverberation", "spellId": 394332, "icon": "spell_animabastion_buff", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90683, "name": "Opportunity", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90659, 90681, 90673], "prev": [], "entries": [{"id": 112571, "definitionId": 117576, "maxRanks": 1, "type": "passive", "name": "Opportunity", "spellId": 279876, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 90659, "name": "Adrenaline Rush", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90645, 90646, 90648], "prev": [90683], "entries": [{"id": 112545, "definitionId": 117550, "maxRanks": 1, "type": "active", "name": "Adrenaline Rush", "spellId": 13750, "icon": "spell_shadow_shadowworddominate", "index": 100}]}, {"id": 90681, "name": "Retractable Hook", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90643, 90755], "prev": [90683], "entries": [{"id": 112569, "definitionId": 117574, "maxRanks": 1, "type": "passive", "name": "Retractable Hook", "spellId": 256188, "icon": "ability_rogue_grapplinghook", "index": 100}]}, {"id": 90645, "name": "Dirty Tricks", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [90755], "prev": [90659], "entries": [{"id": 112531, "definitionId": 117536, "maxRanks": 1, "type": "passive", "name": "Dirty Tricks", "spellId": 108216, "icon": "ability_rogue_dirtydeeds", "index": 100}]}, {"id": 90646, "name": "Combat Potency", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90755, 90661], "prev": [90659], "entries": [{"id": 112532, "definitionId": 117537, "maxRanks": 1, "type": "passive", "name": "Combat Potency", "spellId": 61329, "icon": "inv_weapon_shortblade_38", "index": 100}]}, {"id": 90648, "name": "Combat Stamina", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90661], "prev": [90659], "entries": [{"id": 112534, "definitionId": 117539, "maxRanks": 1, "type": "passive", "name": "Combat Stamina", "spellId": 381877, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 90673, "name": "Hit and Run", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90661, 90647], "prev": [90683], "entries": [{"id": 112560, "definitionId": 117565, "maxRanks": 1, "type": "passive", "name": "Hit and Run", "spellId": 196922, "icon": "ability_rogue_fleetfooted", "index": 100}]}, {"id": 90643, "name": "Blinding Powder", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90679, 90642], "prev": [90681], "entries": [{"id": 112529, "definitionId": 117534, "maxRanks": 1, "type": "passive", "name": "Blinding Powder", "spellId": 256165, "icon": "inv_misc_ammo_gunpowder_06", "index": 100}]}, {"id": 90755, "name": "Float Like a Butterfly / Sting Like a Bee", "type": "choice", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90679, 94566, 90662], "prev": [90646, 90681, 90645], "entries": [{"id": 112647, "definitionId": 117652, "maxRanks": 1, "type": "passive", "name": "Float Like a Butterfly", "spellId": 354897, "icon": "inv_pet_butterfly_orange", "index": 100}, {"id": 117173, "definitionId": 122185, "maxRanks": 1, "type": "passive", "name": "Sting Like a Bee", "spellId": 131511, "icon": "inv_giantwasp_orange", "index": 200}]}, {"id": 90661, "name": "Riposte", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90662, 90660, 90663], "prev": [90673, 90648, 90646], "entries": [{"id": 112547, "definitionId": 117552, "maxRanks": 1, "type": "passive", "name": "Riposte", "spellId": 344363, "icon": "ability_warrior_challange", "index": 100}]}, {"id": 90647, "name": "Precision Shot", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90663, 90672], "prev": [90673], "entries": [{"id": 112533, "definitionId": 117538, "maxRanks": 1, "type": "passive", "name": "Precision Shot", "spellId": 428377, "icon": "inv_legendary_gun", "index": 100}]}, {"id": 90642, "name": "Heavy Hitter", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90680], "prev": [90643], "entries": [{"id": 112528, "definitionId": 117533, "maxRanks": 1, "type": "passive", "name": "Heavy Hitter", "spellId": 381885, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 90679, "name": "Devious Stratagem", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90680, 90649, 90656], "prev": [90755, 90643], "entries": [{"id": 112567, "definitionId": 117572, "maxRanks": 1, "type": "passive", "name": "Devious Stratagem", "spellId": 394321, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 94566, "name": "Killing Spree", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90656], "prev": [90755], "entries": [{"id": 117149, "definitionId": 122161, "maxRanks": 1, "type": "active", "name": "Killing Spree", "spellId": 51690, "icon": "ability_rogue_murderspree", "index": 100}]}, {"id": 90662, "name": "Fatal Flourish", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90656, 90651], "prev": [90755, 90661], "entries": [{"id": 112548, "definitionId": 117553, "maxRanks": 1, "type": "passive", "name": "Fatal Flourish", "spellId": 35551, "icon": "ability_rogue_unfairadvantage", "index": 100}]}, {"id": 90660, "name": "Ambidexterity", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90651], "prev": [90661], "entries": [{"id": 112546, "definitionId": 117551, "maxRanks": 1, "type": "passive", "name": "Ambidexterity", "spellId": 381822, "icon": "inv_glove_cloth_oribosdungeon_c_01", "index": 100}]}, {"id": 90663, "name": "Quick Draw", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90651, 90753, 90671], "prev": [90661, 90647], "entries": [{"id": 112549, "definitionId": 117554, "maxRanks": 1, "type": "passive", "name": "Quick Draw", "spellId": 196938, "icon": "inv_weapon_rifle_40", "index": 100}]}, {"id": 90672, "name": "Deft Maneuvers", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90671], "prev": [90647], "entries": [{"id": 112559, "definitionId": 117564, "maxRanks": 1, "type": "passive", "name": "Deft Maneuvers", "spellId": 381878, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90680, "name": "Ruthlessness", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678, 90641], "prev": [90679, 90642], "entries": [{"id": 112568, "definitionId": 117573, "maxRanks": 1, "type": "passive", "name": "Ruthlessness", "spellId": 14161, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 90649, "name": "Swift Slasher", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678], "prev": [90679], "entries": [{"id": 112535, "definitionId": 117540, "maxRanks": 1, "type": "passive", "name": "Swift Slasher", "spellId": 381988, "icon": "ability_rogue_slicedice", "index": 100}]}, {"id": 90656, "name": "Loaded Dice", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678, 90654], "prev": [90679, 90662, 94566], "entries": [{"id": 112542, "definitionId": 117547, "maxRanks": 1, "type": "passive", "name": "Loaded Dice", "spellId": 256170, "icon": "ability_rogue_rollthebones", "index": 100}]}, {"id": 90651, "name": "Sleight of Hand", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90654, 90668], "prev": [90663, 90660, 90662], "entries": [{"id": 112537, "definitionId": 117542, "maxRanks": 1, "type": "passive", "name": "Sleight of Hand", "spellId": 381839, "icon": "inv_misc_dice_02", "index": 100}]}, {"id": 90753, "name": "Thief's Versatility", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90668], "prev": [90663], "entries": [{"id": 112645, "definitionId": 117650, "maxRanks": 1, "type": "passive", "name": "Thief's Versatility", "spellId": 381619, "icon": "ability_rogue_versatility", "index": 100}]}, {"id": 90671, "name": "Improved Between the Eyes", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90668, 90669], "prev": [90672, 90663], "entries": [{"id": 112558, "definitionId": 117563, "maxRanks": 1, "type": "passive", "name": "Improved Between the Eyes", "spellId": 235484, "icon": "inv_weapon_rifle_01", "index": 100}]}, {"id": 90641, "name": "Audacity", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90677], "prev": [90680], "entries": [{"id": 112527, "definitionId": 117532, "maxRanks": 1, "type": "passive", "name": "Audacity", "spellId": 381845, "icon": "ability_rogue_ambush", "index": 100}]}, {"id": 90678, "name": "Triple Threat", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90677, 90664], "prev": [90656, 90680, 90649], "entries": [{"id": 112566, "definitionId": 117571, "maxRanks": 1, "type": "passive", "name": "Triple Threat", "spellId": 381894, "icon": "ability_dualwield", "index": 100}]}, {"id": 90654, "name": "Improved Adrenaline Rush", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90664, 90655, 90670], "prev": [90651, 90656], "entries": [{"id": 112540, "definitionId": 117545, "maxRanks": 1, "type": "passive", "name": "Improved Adrenaline Rush", "spellId": 395422, "icon": "spell_shadow_shadowworddominate", "index": 100}]}, {"id": 90668, "name": "Improved Main Gauche", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90670, 90667], "prev": [90651, 90671, 90753], "entries": [{"id": 112555, "definitionId": 117560, "maxRanks": 1, "type": "passive", "name": "Improved Main Gauche", "spellId": 382746, "icon": "inv_weapon_shortblade_15", "index": 100}]}, {"id": 90669, "name": "Dancing Steel", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90667], "prev": [90671], "entries": [{"id": 112556, "definitionId": 117561, "maxRanks": 1, "type": "passive", "name": "Dancing Steel", "spellId": 272026, "icon": "ability_warrior_punishingblow", "index": 100}]}, {"id": 90677, "name": "Underhanded Upper Hand", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90676], "prev": [90641, 90678], "entries": [{"id": 112565, "definitionId": 117570, "maxRanks": 1, "type": "passive", "name": "Underhanded Upper Hand", "spellId": 424044, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 90664, "name": "Blade Rush", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90676], "prev": [90678, 90654], "entries": [{"id": 112551, "definitionId": 117556, "maxRanks": 1, "type": "active", "name": "Blade Rush", "spellId": 271877, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 90655, "name": "Count the Odds", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90653], "prev": [90654], "entries": [{"id": 112541, "definitionId": 117546, "maxRanks": 1, "type": "passive", "name": "Count the Odds", "spellId": 381982, "icon": "inv_misc_dice_01", "index": 100}]}, {"id": 90670, "name": "Ace Up Your Sleeve", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90666], "prev": [90654, 90668], "entries": [{"id": 112557, "definitionId": 117562, "maxRanks": 1, "type": "passive", "name": "Ace Up Your Sleeve", "spellId": 381828, "icon": "inv_inscription_darkmooncard_putrescence", "index": 100}]}, {"id": 90667, "name": "Precise Cuts", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90666], "prev": [90669, 90668], "entries": [{"id": 112554, "definitionId": 117559, "maxRanks": 1, "type": "passive", "name": "Precise Cuts", "spellId": 381985, "icon": "ability_warrior_punishingblow", "index": 100}]}, {"id": 90676, "name": "Take 'em by Surprise", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90675, 94565], "prev": [90677, 90664], "entries": [{"id": 112563, "definitionId": 117568, "maxRanks": 2, "type": "passive", "name": "Take 'em by Surprise", "spellId": 382742, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 90653, "name": "Summarily Dispatched", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94565, 90652, 90644], "prev": [90655], "entries": [{"id": 112539, "definitionId": 117544, "maxRanks": 2, "type": "passive", "name": "Summarily Dispatched", "spellId": 381990, "icon": "ability_rogue_waylay", "index": 100}]}, {"id": 90666, "name": "Fan the Hammer", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90644, 90665], "prev": [90667, 90670], "entries": [{"id": 112553, "definitionId": 117558, "maxRanks": 2, "type": "passive", "name": "Fan the Hammer", "spellId": 381846, "icon": "ability_rogue_pistolshot", "index": 100}]}, {"id": 90675, "name": "Hidden Opportunity", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90676], "entries": [{"id": 112562, "definitionId": 117567, "maxRanks": 1, "type": "passive", "name": "Hidden Opportunity", "spellId": 383281, "icon": "ability_rogue_ambush", "index": 100}]}, {"id": 94565, "name": "Crackshot", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90676, 90653], "entries": [{"id": 117148, "definitionId": 122160, "maxRanks": 1, "type": "passive", "name": "Crackshot", "spellId": 423703, "icon": "ability_hisek_aim", "index": 100}]}, {"id": 90652, "name": "Keep It Rolling", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90653], "entries": [{"id": 112538, "definitionId": 117543, "maxRanks": 1, "type": "active", "name": "Keep It Rolling", "spellId": 381989, "icon": "ability_rogue_keepitrolling", "index": 100}]}, {"id": 90644, "name": "Ghostly Strike / Ghostly Strike", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90653, 90666], "entries": [{"id": 112530, "definitionId": 117535, "maxRanks": 1, "type": "active", "name": "Ghostly Strike", "spellId": 196937, "icon": "ability_creature_cursed_02", "index": 100}, {"id": 117162, "definitionId": 122174, "maxRanks": 1, "type": "active", "name": "Ghostly Strike", "spellId": 196937, "icon": "ability_creature_cursed_02", "index": 200}]}, {"id": 90665, "name": "Greenskin's Wickers", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90666], "entries": [{"id": 112552, "definitionId": 117557, "maxRanks": 1, "type": "passive", "name": "Greenskin's Wickers", "spellId": 386823, "icon": "ability_creature_cursed_04", "index": 100}]}], "heroNodes": [{"id": 95125, "name": "Hand of Fate", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 52, "next": [95138, 95122, 95130], "prev": [], "entries": [{"id": 117722, "definitionId": 122734, "maxRanks": 1, "type": "passive", "name": "Hand of Fate", "spellId": 452536, "icon": "inv_ability_fateboundrogue_handoffateheads", "index": 100}], "freeNode": true}, {"id": 95138, "name": "Chosen's Revelry / Tempted Fate", "type": "choice", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95107], "prev": [95125], "entries": [{"id": 117735, "definitionId": 122747, "maxRanks": 1, "type": "passive", "name": "Chosen's Revelry", "spellId": 454300, "icon": "ability_priest_heavanlyvoice", "index": 100}, {"id": 125132, "definitionId": 129964, "maxRanks": 1, "type": "passive", "name": "Tempted Fate", "spellId": 454286, "icon": "ability_rogue_sabreslash", "index": 200}]}, {"id": 95122, "name": "Mean Streak", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95139], "prev": [95125], "entries": [{"id": 117719, "definitionId": 122731, "maxRanks": 1, "type": "passive", "name": "Mean Streak", "spellId": 453428, "icon": "inv_sigil_thorim", "index": 100}]}, {"id": 95130, "name": "Inexorable March / Death's Arrival", "type": "choice", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95120], "prev": [95125], "entries": [{"id": 117727, "definitionId": 122739, "maxRanks": 1, "type": "passive", "name": "Inexorable March", "spellId": 454432, "icon": "ability_monk_ridethewind", "index": 100}, {"id": 125140, "definitionId": 129972, "maxRanks": 1, "type": "passive", "name": "Death's Arrival", "spellId": 454433, "icon": "achievement_guildperk_havegroup_willtravel", "index": 200}]}, {"id": 95107, "name": "Deal Fate", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95119], "prev": [95138], "entries": [{"id": 117704, "definitionId": 122716, "maxRanks": 1, "type": "passive", "name": "Deal Fate", "spellId": 454419, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 95139, "name": "Edge Case", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "requiresNode": 90769, "next": [95114], "prev": [95122], "entries": [{"id": 117736, "definitionId": 122748, "maxRanks": 1, "type": "passive", "name": "Edge Case", "spellId": 453457, "icon": "item_icecrownnecklacea", "index": 100}]}, {"id": 95120, "name": "Fate Intertwined", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95129], "prev": [95130], "entries": [{"id": 117717, "definitionId": 122729, "maxRanks": 1, "type": "passive", "name": "Fate Intertwined", "spellId": 454429, "icon": "inv_cosmicvoid_beam", "index": 100}]}, {"id": 95119, "name": "Delivered Doom", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95107], "entries": [{"id": 117716, "definitionId": 122728, "maxRanks": 1, "type": "passive", "name": "Delivered Doom", "spellId": 454426, "icon": "ability_bossgorefiend_touchofdoom", "index": 100}]}, {"id": 95114, "name": "Inevitability / Destiny Defined", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95139], "entries": [{"id": 117711, "definitionId": 122723, "maxRanks": 1, "type": "passive", "name": "Inevitability", "spellId": 454434, "icon": "spell_ice_lament", "index": 100}, {"id": 125139, "definitionId": 129971, "maxRanks": 1, "type": "passive", "name": "Destiny Defined", "spellId": 454435, "icon": "ability_boss_fatescribe_rune6", "index": 200}]}, {"id": 95129, "name": "Double Jeopardy", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95120], "entries": [{"id": 117726, "definitionId": 122738, "maxRanks": 1, "type": "passive", "name": "Double Jeopardy", "spellId": 454430, "icon": "spell_nature_mirrorimage", "index": 100}]}, {"id": 95127, "name": "Fateful Ending", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 52, "next": [], "prev": [95114, 95119, 95129], "entries": [{"id": 117724, "definitionId": 122736, "maxRanks": 1, "type": "passive", "name": "Fateful Ending", "spellId": 454428, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 95140, "name": "Unseen Blade", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 51, "next": [95141, 95111, 95121], "prev": [], "entries": [{"id": 117737, "definitionId": 122749, "maxRanks": 1, "type": "passive", "name": "Unseen Blade", "spellId": 441146, "icon": "inv_weapon_shortblade_55", "index": 100}], "freeNode": true}, {"id": 95121, "name": "Surprising Strikes", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95134], "prev": [95140], "entries": [{"id": 117718, "definitionId": 122730, "maxRanks": 1, "type": "passive", "name": "Surprising Strikes", "spellId": 441273, "icon": "ability_rogue_surpriseattack2", "index": 100}]}, {"id": 95141, "name": "Smoke / Mirrors", "type": "choice", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95133], "prev": [95140], "entries": [{"id": 117738, "definitionId": 122750, "maxRanks": 1, "type": "passive", "name": "Smoke", "spellId": 441247, "icon": "rogue_dirtytricks", "index": 100}, {"id": 120130, "definitionId": 125030, "maxRanks": 1, "type": "passive", "name": "Mirrors", "spellId": 441250, "icon": "trade_archaeology_highbornesoulmirror", "index": 200}]}, {"id": 95111, "name": "Flawless Form", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95137], "prev": [95140], "entries": [{"id": 117708, "definitionId": 122720, "maxRanks": 1, "type": "passive", "name": "Flawless Form", "spellId": 441321, "icon": "inv_qiraj_jewelblessed", "index": 100}]}, {"id": 95134, "name": "So Tricky / Don't Be Suspicious", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95118], "prev": [95121], "entries": [{"id": 117731, "definitionId": 122743, "maxRanks": 1, "type": "passive", "name": "So Tricky", "spellId": 441403, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 120133, "definitionId": 125033, "maxRanks": 1, "type": "passive", "name": "Don't Be Suspicious", "spellId": 441415, "icon": "ability_rogue_disguise", "index": 200}]}, {"id": 95133, "name": "Devious Distractions", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95116], "prev": [95141], "entries": [{"id": 117730, "definitionId": 122742, "maxRanks": 1, "type": "passive", "name": "Devious Distractions", "spellId": 441263, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 95137, "name": "Thousand Cuts / Flickerstrike", "type": "choice", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95128], "prev": [95111], "entries": [{"id": 117734, "definitionId": 122746, "maxRanks": 1, "type": "passive", "name": "Thousand Cuts", "spellId": 441346, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}, {"id": 120131, "definitionId": 125031, "maxRanks": 1, "type": "passive", "name": "Flickerstrike", "spellId": 441359, "icon": "spell_nature_invisibilty", "index": 200}]}, {"id": 95118, "name": "Disorienting Strikes", "type": "single", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95115], "prev": [95134], "entries": [{"id": 117715, "definitionId": 122727, "maxRanks": 1, "type": "passive", "name": "Disorienting Strikes", "spellId": 441274, "icon": "petbattle_speed", "index": 100}]}, {"id": 95116, "name": "Cloud Cover / No Scruples", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95133], "entries": [{"id": 117713, "definitionId": 122725, "maxRanks": 1, "type": "passive", "name": "Cloud Cover", "spellId": 441429, "icon": "ability_rogue_smoke", "index": 100}, {"id": 120132, "definitionId": 125032, "maxRanks": 1, "type": "passive", "name": "No Scruples", "spellId": 441398, "icon": "ability_rogue_surpriseattack", "index": 200}]}, {"id": 95128, "name": "Nimble Flurry", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95137], "entries": [{"id": 117725, "definitionId": 122737, "maxRanks": 1, "type": "passive", "name": "Nimble Flurry", "spellId": 441367, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 95115, "name": "Coup de Grace", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 51, "next": [], "prev": [95116, 95118, 95128], "entries": [{"id": 117712, "definitionId": 122724, "maxRanks": 1, "type": "passive", "name": "Coup de Grace", "spellId": 441423, "icon": "inv_ability_tricksterrogue_coupdegrace", "index": 100}]}], "subTreeNodes": [{"id": 99843, "name": "Fatebound / Trickster", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123374, "type": "subtree", "name": "Fatebound", "traitSubTreeId": 52, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-fatebound", "nodes": [95125, 95138, 95122, 95130, 95107, 95139, 95120, 95119, 95114, 95129, 95127]}, {"id": 123372, "type": "subtree", "name": "Trickster", "traitSubTreeId": 51, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-trickster", "nodes": [95140, 95121, 95141, 95111, 95134, 95133, 95137, 95118, 95116, 95128, 95115]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]} \ No newline at end of file +{"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Outlaw", "specId": 260, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}], "freeNode": true}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}]}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Thrill Seeking", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "passive", "name": "Thrill Seeking", "spellId": 394931, "icon": "inv_ragnaros_heart_shadowflame", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Supercharger", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 2, "type": "passive", "name": "Supercharger", "spellId": 470347, "icon": "inv_engineering_90_electrifiedether", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 469779, "visibleSpellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Echoing Reprimand / Forced Induction", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Echoing Reprimand", "spellId": 470669, "icon": "inv_ability_rogue_echoingreprimand", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Forced Induction", "spellId": 470668, "icon": "inv_misc_enggizmos_06", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90683, "name": "Opportunity", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90659, 90681, 90673], "prev": [], "entries": [{"id": 112571, "definitionId": 117576, "maxRanks": 1, "type": "passive", "name": "Opportunity", "spellId": 279876, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 90659, "name": "Adrenaline Rush", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90645, 90646, 90648], "prev": [90683], "entries": [{"id": 112545, "definitionId": 117550, "maxRanks": 1, "type": "active", "name": "Adrenaline Rush", "spellId": 13750, "icon": "spell_shadow_shadowworddominate", "index": 100}]}, {"id": 90681, "name": "Retractable Hook", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90643, 90755], "prev": [90683], "entries": [{"id": 112569, "definitionId": 117574, "maxRanks": 1, "type": "passive", "name": "Retractable Hook", "spellId": 256188, "icon": "ability_rogue_grapplinghook", "index": 100}]}, {"id": 90645, "name": "Dirty Tricks", "type": "single", "posX": 11700, "posY": 2700, "maxRanks": 1, "next": [90755], "prev": [90659], "entries": [{"id": 112531, "definitionId": 117536, "maxRanks": 1, "type": "passive", "name": "Dirty Tricks", "spellId": 108216, "icon": "ability_rogue_dirtydeeds", "index": 100}]}, {"id": 90646, "name": "Combat Potency", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90755, 90661], "prev": [90659], "entries": [{"id": 112532, "definitionId": 117537, "maxRanks": 1, "type": "passive", "name": "Combat Potency", "spellId": 61329, "icon": "inv_weapon_shortblade_38", "index": 100}]}, {"id": 90648, "name": "Combat Stamina", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90661], "prev": [90659], "entries": [{"id": 112534, "definitionId": 117539, "maxRanks": 1, "type": "passive", "name": "Combat Stamina", "spellId": 381877, "icon": "ability_rogue_imrovedrecuperate", "index": 100}]}, {"id": 90673, "name": "Hit and Run", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90661, 90647], "prev": [90683], "entries": [{"id": 112560, "definitionId": 117565, "maxRanks": 1, "type": "passive", "name": "Hit and Run", "spellId": 196922, "icon": "ability_rogue_fleetfooted", "index": 100}]}, {"id": 90643, "name": "Blinding Powder", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90679, 90642], "prev": [90681], "entries": [{"id": 112529, "definitionId": 117534, "maxRanks": 1, "type": "passive", "name": "Blinding Powder", "spellId": 256165, "icon": "inv_misc_ammo_gunpowder_06", "index": 100}]}, {"id": 90755, "name": "Float Like a Butterfly / Sting Like a Bee", "type": "choice", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90679, 94566, 90662], "prev": [90646, 90681, 90645], "entries": [{"id": 112647, "definitionId": 117652, "maxRanks": 1, "type": "passive", "name": "Float Like a Butterfly", "spellId": 354897, "icon": "inv_pet_butterfly_orange", "index": 100}, {"id": 117173, "definitionId": 122185, "maxRanks": 1, "type": "passive", "name": "Sting Like a Bee", "spellId": 131511, "icon": "inv_giantwasp_orange", "index": 200}]}, {"id": 90661, "name": "Riposte", "type": "single", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90662, 90660, 90663], "prev": [90673, 90648, 90646], "entries": [{"id": 112547, "definitionId": 117552, "maxRanks": 1, "type": "passive", "name": "Riposte", "spellId": 344363, "icon": "ability_warrior_challange", "index": 100}]}, {"id": 90647, "name": "Precision Shot", "type": "single", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90663, 90672], "prev": [90673], "entries": [{"id": 112533, "definitionId": 117538, "maxRanks": 1, "type": "passive", "name": "Precision Shot", "spellId": 428377, "icon": "inv_legendary_gun", "index": 100}]}, {"id": 90642, "name": "Heavy Hitter", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90680], "prev": [90643], "entries": [{"id": 112528, "definitionId": 117533, "maxRanks": 1, "type": "passive", "name": "Heavy Hitter", "spellId": 381885, "icon": "spell_shadow_ritualofsacrifice", "index": 100}]}, {"id": 90679, "name": "Devious Stratagem", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90680, 90649, 90656], "prev": [90755, 90643], "entries": [{"id": 112567, "definitionId": 117572, "maxRanks": 1, "type": "passive", "name": "Devious Stratagem", "spellId": 394321, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 94566, "name": "Killing Spree", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90656], "prev": [90755], "entries": [{"id": 117149, "definitionId": 122161, "maxRanks": 1, "type": "active", "name": "Killing Spree", "spellId": 51690, "icon": "ability_rogue_murderspree", "index": 100}]}, {"id": 90662, "name": "Fatal Flourish", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90656, 90651], "prev": [90755, 90661], "entries": [{"id": 112548, "definitionId": 117553, "maxRanks": 1, "type": "passive", "name": "Fatal Flourish", "spellId": 35551, "icon": "ability_rogue_unfairadvantage", "index": 100}]}, {"id": 90660, "name": "Ambidexterity", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90651], "prev": [90661], "entries": [{"id": 112546, "definitionId": 117551, "maxRanks": 1, "type": "passive", "name": "Ambidexterity", "spellId": 381822, "icon": "inv_glove_cloth_oribosdungeon_c_01", "index": 100}]}, {"id": 90663, "name": "Quick Draw", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90651, 90753, 90671], "prev": [90661, 90647], "entries": [{"id": 112549, "definitionId": 117554, "maxRanks": 1, "type": "passive", "name": "Quick Draw", "spellId": 196938, "icon": "inv_weapon_rifle_40", "index": 100}]}, {"id": 90672, "name": "Deft Maneuvers", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90671], "prev": [90647], "entries": [{"id": 112559, "definitionId": 117564, "maxRanks": 1, "type": "passive", "name": "Deft Maneuvers", "spellId": 381878, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90680, "name": "Ruthlessness", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678, 90641], "prev": [90679, 90642], "entries": [{"id": 112568, "definitionId": 117573, "maxRanks": 1, "type": "passive", "name": "Ruthlessness", "spellId": 14161, "icon": "ability_druid_disembowel", "index": 100}]}, {"id": 90649, "name": "Swift Slasher", "type": "single", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678], "prev": [90679], "entries": [{"id": 112535, "definitionId": 117540, "maxRanks": 1, "type": "passive", "name": "Swift Slasher", "spellId": 381988, "icon": "ability_rogue_slicedice", "index": 100}]}, {"id": 90656, "name": "Loaded Dice", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90678, 90654], "prev": [90679, 90662, 94566], "entries": [{"id": 112542, "definitionId": 117547, "maxRanks": 1, "type": "passive", "name": "Loaded Dice", "spellId": 256170, "icon": "ability_rogue_rollthebones", "index": 100}]}, {"id": 90651, "name": "Sleight of Hand", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90654, 90668], "prev": [90663, 90660, 90662], "entries": [{"id": 112537, "definitionId": 117542, "maxRanks": 1, "type": "passive", "name": "Sleight of Hand", "spellId": 381839, "icon": "inv_misc_dice_02", "index": 100}]}, {"id": 90753, "name": "Thief's Versatility", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90668], "prev": [90663], "entries": [{"id": 112645, "definitionId": 117650, "maxRanks": 1, "type": "passive", "name": "Thief's Versatility", "spellId": 381619, "icon": "ability_rogue_versatility", "index": 100}]}, {"id": 90671, "name": "Improved Between the Eyes", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90668, 90669], "prev": [90672, 90663], "entries": [{"id": 112558, "definitionId": 117563, "maxRanks": 1, "type": "passive", "name": "Improved Between the Eyes", "spellId": 235484, "icon": "inv_weapon_rifle_01", "index": 100}]}, {"id": 90641, "name": "Audacity", "type": "single", "posX": 9900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90677], "prev": [90680], "entries": [{"id": 112527, "definitionId": 117532, "maxRanks": 1, "type": "passive", "name": "Audacity", "spellId": 381845, "icon": "ability_rogue_ambush", "index": 100}]}, {"id": 90678, "name": "Triple Threat", "type": "single", "posX": 11100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90677, 90664], "prev": [90656, 90680, 90649], "entries": [{"id": 112566, "definitionId": 117571, "maxRanks": 1, "type": "passive", "name": "Triple Threat", "spellId": 381894, "icon": "ability_dualwield", "index": 100}]}, {"id": 90654, "name": "Improved Adrenaline Rush", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90664, 90655, 90670], "prev": [90651, 90656], "entries": [{"id": 112540, "definitionId": 117545, "maxRanks": 1, "type": "passive", "name": "Improved Adrenaline Rush", "spellId": 395422, "icon": "spell_shadow_shadowworddominate", "index": 100}]}, {"id": 90668, "name": "Improved Main Gauche", "type": "single", "posX": 13500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90670, 90667], "prev": [90651, 90671, 90753], "entries": [{"id": 112555, "definitionId": 117560, "maxRanks": 1, "type": "passive", "name": "Improved Main Gauche", "spellId": 382746, "icon": "inv_weapon_shortblade_15", "index": 100}]}, {"id": 90669, "name": "Dancing Steel", "type": "single", "posX": 14700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90667], "prev": [90671], "entries": [{"id": 112556, "definitionId": 117561, "maxRanks": 1, "type": "passive", "name": "Dancing Steel", "spellId": 272026, "icon": "ability_warrior_punishingblow", "index": 100}]}, {"id": 90677, "name": "Underhanded Upper Hand", "type": "single", "posX": 10500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90676], "prev": [90641, 90678], "entries": [{"id": 112565, "definitionId": 117570, "maxRanks": 1, "type": "passive", "name": "Underhanded Upper Hand", "spellId": 424044, "icon": "ability_butcher_heavyhanded", "index": 100}]}, {"id": 90664, "name": "Blade Rush", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90676], "prev": [90678, 90654], "entries": [{"id": 112551, "definitionId": 117556, "maxRanks": 1, "type": "active", "name": "Blade Rush", "spellId": 271877, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 90655, "name": "Count the Odds", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90653], "prev": [90654], "entries": [{"id": 112541, "definitionId": 117546, "maxRanks": 1, "type": "passive", "name": "Count the Odds", "spellId": 381982, "icon": "inv_misc_dice_01", "index": 100}]}, {"id": 90670, "name": "Ace Up Your Sleeve", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90666], "prev": [90654, 90668], "entries": [{"id": 112557, "definitionId": 117562, "maxRanks": 1, "type": "passive", "name": "Ace Up Your Sleeve", "spellId": 381828, "icon": "inv_inscription_darkmooncard_putrescence", "index": 100}]}, {"id": 90667, "name": "Precise Cuts", "type": "single", "posX": 14100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90666], "prev": [90669, 90668], "entries": [{"id": 112554, "definitionId": 117559, "maxRanks": 1, "type": "passive", "name": "Precise Cuts", "spellId": 381985, "icon": "ability_warrior_punishingblow", "index": 100}]}, {"id": 90676, "name": "Take 'em by Surprise", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90675, 94565], "prev": [90677, 90664], "entries": [{"id": 112563, "definitionId": 117568, "maxRanks": 2, "type": "passive", "name": "Take 'em by Surprise", "spellId": 382742, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 90653, "name": "Summarily Dispatched", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94565, 90652, 90644], "prev": [90655], "entries": [{"id": 112539, "definitionId": 117544, "maxRanks": 2, "type": "passive", "name": "Summarily Dispatched", "spellId": 381990, "icon": "ability_rogue_waylay", "index": 100}]}, {"id": 90666, "name": "Fan the Hammer", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90644, 90665], "prev": [90667, 90670], "entries": [{"id": 112553, "definitionId": 117558, "maxRanks": 2, "type": "passive", "name": "Fan the Hammer", "spellId": 381846, "icon": "ability_rogue_pistolshot", "index": 100}]}, {"id": 90675, "name": "Hidden Opportunity", "type": "single", "posX": 10500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90676], "entries": [{"id": 112562, "definitionId": 117567, "maxRanks": 1, "type": "passive", "name": "Hidden Opportunity", "spellId": 383281, "icon": "ability_rogue_ambush", "index": 100}]}, {"id": 94565, "name": "Crackshot", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90676, 90653], "entries": [{"id": 117148, "definitionId": 122160, "maxRanks": 1, "type": "passive", "name": "Crackshot", "spellId": 423703, "icon": "ability_hisek_aim", "index": 100}]}, {"id": 90652, "name": "Keep It Rolling", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90653], "entries": [{"id": 112538, "definitionId": 117543, "maxRanks": 1, "type": "active", "name": "Keep It Rolling", "spellId": 381989, "icon": "ability_rogue_keepitrolling", "index": 100}]}, {"id": 90644, "name": "Ghostly Strike / Ghostly Strike", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90653, 90666], "entries": [{"id": 112530, "definitionId": 117535, "maxRanks": 1, "type": "active", "name": "Ghostly Strike", "spellId": 196937, "icon": "ability_creature_cursed_02", "index": 100}, {"id": 117162, "definitionId": 122174, "maxRanks": 1, "type": "active", "name": "Ghostly Strike", "spellId": 196937, "icon": "ability_creature_cursed_02", "index": 200}]}, {"id": 90665, "name": "Greenskin's Wickers", "type": "single", "posX": 14100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90666], "entries": [{"id": 112552, "definitionId": 117557, "maxRanks": 1, "type": "passive", "name": "Greenskin's Wickers", "spellId": 386823, "icon": "ability_creature_cursed_04", "index": 100}]}], "heroNodes": [{"id": 95125, "name": "Hand of Fate", "type": "single", "posX": 15300, "posY": 900, "maxRanks": 1, "entryNode": true, "subTreeId": 52, "next": [95138, 95122, 95130], "prev": [], "entries": [{"id": 117722, "definitionId": 122734, "maxRanks": 1, "type": "passive", "name": "Hand of Fate", "spellId": 452536, "icon": "inv_ability_fateboundrogue_handoffateheads", "index": 100}], "freeNode": true}, {"id": 95138, "name": "Chosen's Revelry / Tempted Fate", "type": "choice", "posX": 14700, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95107], "prev": [95125], "entries": [{"id": 117735, "definitionId": 122747, "maxRanks": 1, "type": "passive", "name": "Chosen's Revelry", "spellId": 454300, "icon": "ability_priest_heavanlyvoice", "index": 100}, {"id": 125132, "definitionId": 129964, "maxRanks": 1, "type": "passive", "name": "Tempted Fate", "spellId": 454286, "icon": "ability_rogue_sabreslash", "index": 200}]}, {"id": 95122, "name": "Mean Streak", "type": "single", "posX": 15300, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95139], "prev": [95125], "entries": [{"id": 117719, "definitionId": 122731, "maxRanks": 1, "type": "passive", "name": "Mean Streak", "spellId": 453428, "icon": "inv_sigil_thorim", "index": 100}]}, {"id": 95130, "name": "Inexorable March / Death's Arrival", "type": "choice", "posX": 15900, "posY": 1500, "maxRanks": 1, "subTreeId": 52, "next": [95120], "prev": [95125], "entries": [{"id": 117727, "definitionId": 122739, "maxRanks": 1, "type": "passive", "name": "Inexorable March", "spellId": 454432, "icon": "ability_monk_ridethewind", "index": 100}, {"id": 125140, "definitionId": 129972, "maxRanks": 1, "type": "passive", "name": "Death's Arrival", "spellId": 454433, "icon": "achievement_guildperk_havegroup_willtravel", "index": 200}]}, {"id": 95107, "name": "Deal Fate", "type": "single", "posX": 14700, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95119], "prev": [95138], "entries": [{"id": 117704, "definitionId": 122716, "maxRanks": 1, "type": "passive", "name": "Deal Fate", "spellId": 454419, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 95139, "name": "Edge Case", "type": "single", "posX": 15300, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "requiresNode": 90769, "next": [95114], "prev": [95122], "entries": [{"id": 117736, "definitionId": 122748, "maxRanks": 1, "type": "passive", "name": "Edge Case", "spellId": 453457, "icon": "item_icecrownnecklacea", "index": 100}]}, {"id": 95120, "name": "Fate Intertwined", "type": "single", "posX": 15900, "posY": 2100, "maxRanks": 1, "subTreeId": 52, "next": [95129], "prev": [95130], "entries": [{"id": 117717, "definitionId": 122729, "maxRanks": 1, "type": "passive", "name": "Fate Intertwined", "spellId": 454429, "icon": "inv_cosmicvoid_beam", "index": 100}]}, {"id": 95119, "name": "Delivered Doom", "type": "single", "posX": 14700, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95107], "entries": [{"id": 117716, "definitionId": 122728, "maxRanks": 1, "type": "passive", "name": "Delivered Doom", "spellId": 454426, "icon": "ability_bossgorefiend_touchofdoom", "index": 100}]}, {"id": 95114, "name": "Inevitabile End / Destiny Defined", "type": "choice", "posX": 15300, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95139], "entries": [{"id": 117711, "definitionId": 122723, "maxRanks": 1, "type": "passive", "name": "Inevitabile End", "spellId": 454434, "icon": "spell_ice_lament", "index": 100}, {"id": 125139, "definitionId": 129971, "maxRanks": 1, "type": "passive", "name": "Destiny Defined", "spellId": 454435, "icon": "ability_boss_fatescribe_rune6", "index": 200}]}, {"id": 95129, "name": "Double Jeopardy", "type": "single", "posX": 15900, "posY": 2700, "maxRanks": 1, "subTreeId": 52, "next": [95127], "prev": [95120], "entries": [{"id": 117726, "definitionId": 122738, "maxRanks": 1, "type": "passive", "name": "Double Jeopardy", "spellId": 454430, "icon": "spell_nature_mirrorimage", "index": 100}]}, {"id": 95127, "name": "Fateful Ending", "type": "single", "posX": 15300, "posY": 3300, "maxRanks": 1, "subTreeId": 52, "next": [], "prev": [95114, 95119, 95129], "entries": [{"id": 117724, "definitionId": 122736, "maxRanks": 1, "type": "passive", "name": "Fateful Ending", "spellId": 454428, "icon": "ability_socererking_arcanewrath", "index": 100}]}, {"id": 95140, "name": "Unseen Blade", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 51, "next": [95141, 95111, 95121], "prev": [], "entries": [{"id": 117737, "definitionId": 122749, "maxRanks": 1, "type": "passive", "name": "Unseen Blade", "spellId": 441146, "icon": "inv_weapon_shortblade_55", "index": 100}], "freeNode": true}, {"id": 95121, "name": "Surprising Strikes", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95134], "prev": [95140], "entries": [{"id": 117718, "definitionId": 122730, "maxRanks": 1, "type": "passive", "name": "Surprising Strikes", "spellId": 441273, "icon": "ability_rogue_surpriseattack2", "index": 100}]}, {"id": 95141, "name": "Smoke / Mirrors", "type": "choice", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95133], "prev": [95140], "entries": [{"id": 117738, "definitionId": 122750, "maxRanks": 1, "type": "passive", "name": "Smoke", "spellId": 441247, "icon": "rogue_dirtytricks", "index": 100}, {"id": 120130, "definitionId": 125030, "maxRanks": 1, "type": "passive", "name": "Mirrors", "spellId": 441250, "icon": "trade_archaeology_highbornesoulmirror", "index": 200}]}, {"id": 95111, "name": "Flawless Form", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95137], "prev": [95140], "entries": [{"id": 117708, "definitionId": 122720, "maxRanks": 1, "type": "passive", "name": "Flawless Form", "spellId": 441321, "icon": "inv_qiraj_jewelblessed", "index": 100}]}, {"id": 95134, "name": "So Tricky / Don't Be Suspicious", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95118], "prev": [95121], "entries": [{"id": 117731, "definitionId": 122743, "maxRanks": 1, "type": "passive", "name": "So Tricky", "spellId": 441403, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 120133, "definitionId": 125033, "maxRanks": 1, "type": "passive", "name": "Don't Be Suspicious", "spellId": 441415, "icon": "ability_rogue_disguise", "index": 200}]}, {"id": 95133, "name": "Devious Distractions", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95116], "prev": [95141], "entries": [{"id": 117730, "definitionId": 122742, "maxRanks": 1, "type": "passive", "name": "Devious Distractions", "spellId": 441263, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 95137, "name": "Thousand Cuts / Flickerstrike", "type": "choice", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95128], "prev": [95111], "entries": [{"id": 117734, "definitionId": 122746, "maxRanks": 1, "type": "passive", "name": "Thousand Cuts", "spellId": 441346, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}, {"id": 120131, "definitionId": 125031, "maxRanks": 1, "type": "passive", "name": "Flickerstrike", "spellId": 441359, "icon": "spell_nature_invisibilty", "index": 200}]}, {"id": 95118, "name": "Disorienting Strikes", "type": "single", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95115], "prev": [95134], "entries": [{"id": 117715, "definitionId": 122727, "maxRanks": 1, "type": "passive", "name": "Disorienting Strikes", "spellId": 441274, "icon": "petbattle_speed", "index": 100}]}, {"id": 95116, "name": "Cloud Cover / No Scruples", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95133], "entries": [{"id": 117713, "definitionId": 122725, "maxRanks": 1, "type": "passive", "name": "Cloud Cover", "spellId": 441429, "icon": "ability_rogue_smoke", "index": 100}, {"id": 120132, "definitionId": 125032, "maxRanks": 1, "type": "passive", "name": "No Scruples", "spellId": 441398, "icon": "ability_rogue_surpriseattack", "index": 200}]}, {"id": 95128, "name": "Nimble Flurry", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95137], "entries": [{"id": 117725, "definitionId": 122737, "maxRanks": 1, "type": "passive", "name": "Nimble Flurry", "spellId": 441367, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 95115, "name": "Coup de Grace", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 51, "next": [], "prev": [95116, 95118, 95128], "entries": [{"id": 117712, "definitionId": 122724, "maxRanks": 1, "type": "passive", "name": "Coup de Grace", "spellId": 441423, "icon": "inv_ability_tricksterrogue_coupdegrace", "index": 100}]}], "subTreeNodes": [{"id": 99843, "name": "Fatebound / Trickster", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123374, "type": "subtree", "name": "Fatebound", "traitSubTreeId": 52, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-fatebound", "nodes": [95125, 95138, 95122, 95130, 95107, 95139, 95120, 95119, 95114, 95129, 95127]}, {"id": 123372, "type": "subtree", "name": "Trickster", "traitSubTreeId": 51, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-trickster", "nodes": [95140, 95121, 95141, 95111, 95134, 95133, 95137, 95118, 95116, 95128, 95115]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/rogue_subtlety.json b/simc_support/game_data/data_files/trees/rogue_subtlety.json index a12da21..268567a 100644 --- a/simc_support/game_data/data_files/trees/rogue_subtlety.json +++ b/simc_support/game_data/data_files/trees/rogue_subtlety.json @@ -1 +1 @@ -{"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Subtlety", "specId": 261, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}]}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}], "freeNode": true}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Shadowstep", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "active", "name": "Shadowstep", "spellId": 394931, "visibleSpellId": 36554, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Echoing Reprimand", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 1, "type": "active", "name": "Echoing Reprimand", "spellId": 385616, "icon": "ability_bastion_rogue", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Resounding Clarity / Reverberation", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Resounding Clarity", "spellId": 381622, "icon": "ability_bastion_rogue", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Reverberation", "spellId": 394332, "icon": "spell_animabastion_buff", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90690, "name": "Find Weakness", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90739, 90726, 90710], "prev": [], "entries": [{"id": 112578, "definitionId": 117583, "maxRanks": 1, "type": "passive", "name": "Find Weakness", "spellId": 91023, "icon": "ability_rogue_findweakness", "index": 100}]}, {"id": 90739, "name": "Improved Backstab", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [90698], "prev": [90690], "entries": [{"id": 112629, "definitionId": 117634, "maxRanks": 1, "type": "passive", "name": "Improved Backstab", "spellId": 319949, "icon": "ability_backstab", "index": 100}]}, {"id": 90726, "name": "Shadow Blades", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90728, 90725], "prev": [90690], "entries": [{"id": 112614, "definitionId": 117619, "maxRanks": 1, "type": "active", "name": "Shadow Blades", "spellId": 121471, "icon": "inv_knife_1h_grimbatolraid_d_03", "index": 100}]}, {"id": 90710, "name": "Improved Shuriken Storm", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90711], "prev": [90690], "entries": [{"id": 112598, "definitionId": 117603, "maxRanks": 1, "type": "passive", "name": "Improved Shuriken Storm", "spellId": 319951, "icon": "ability_rogue_shuriken-storm", "index": 100}]}, {"id": 90698, "name": "Shot in the Dark", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90700, 90727], "prev": [90739], "entries": [{"id": 112586, "definitionId": 117591, "maxRanks": 1, "type": "passive", "name": "Shot in the Dark", "spellId": 257505, "icon": "ability_cheapshot", "index": 100}]}, {"id": 90728, "name": "Quick Decisions", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [90727], "prev": [90726], "entries": [{"id": 112616, "definitionId": 117621, "maxRanks": 1, "type": "passive", "name": "Quick Decisions", "spellId": 382503, "icon": "inv_misc_hook_01", "index": 100}]}, {"id": 90725, "name": "Ephemeral Bond", "type": "single", "posX": 12600, "posY": 2700, "maxRanks": 1, "next": [90733], "prev": [90726], "entries": [{"id": 112613, "definitionId": 117618, "maxRanks": 1, "type": "passive", "name": "Ephemeral Bond", "spellId": 426563, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 90711, "name": "Exhilarating Execution", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90733, 94582], "prev": [90710], "entries": [{"id": 112599, "definitionId": 117604, "maxRanks": 1, "type": "passive", "name": "Exhilarating Execution", "spellId": 428486, "icon": "inv_weapon_hand_04", "index": 100}]}, {"id": 90700, "name": "Shrouded in Darkness", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90736, 90701], "prev": [90698], "entries": [{"id": 112588, "definitionId": 117593, "maxRanks": 1, "type": "passive", "name": "Shrouded in Darkness", "spellId": 382507, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 90727, "name": "Shadow Focus", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90736, 90699, 90734], "prev": [90698, 90728], "entries": [{"id": 112615, "definitionId": 117620, "maxRanks": 1, "type": "passive", "name": "Shadow Focus", "spellId": 108209, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90733, "name": "Cloaked in Shadows / Fade to Nothing", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90734, 90715, 90709], "prev": [90725, 90711], "entries": [{"id": 112622, "definitionId": 117627, "maxRanks": 1, "type": "passive", "name": "Cloaked in Shadows", "spellId": 382515, "icon": "inv_helm_cloth_shadowmoonclan_b_01", "index": 100}, {"id": 112621, "definitionId": 117626, "maxRanks": 1, "type": "passive", "name": "Fade to Nothing", "spellId": 382514, "icon": "ability_warlock_everlastingaffliction", "index": 200}]}, {"id": 94582, "name": "Night Terrors / Terrifying Pace", "type": "choice", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90709, 90714], "prev": [90711], "entries": [{"id": 117170, "definitionId": 122182, "maxRanks": 1, "type": "passive", "name": "Night Terrors", "spellId": 277953, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 117753, "definitionId": 122765, "maxRanks": 1, "type": "passive", "name": "Terrifying Pace", "spellId": 428387, "icon": "ability_druid_typhoon", "index": 200}]}, {"id": 90701, "name": "Swift Death", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90737], "prev": [90700], "entries": [{"id": 112589, "definitionId": 117594, "maxRanks": 1, "type": "passive", "name": "Swift Death", "spellId": 394309, "icon": "spell_shadow_rune", "index": 100}]}, {"id": 90736, "name": "Improved Shadow Techniques", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90737, 90703, 101715], "prev": [90700, 90727], "entries": [{"id": 112626, "definitionId": 117631, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Techniques", "spellId": 394023, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 90699, "name": "Gloomblade", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101715], "prev": [90727], "entries": [{"id": 112587, "definitionId": 117592, "maxRanks": 1, "type": "active", "name": "Gloomblade", "spellId": 200758, "icon": "ability_ironmaidens_convulsiveshadows", "index": 100}]}, {"id": 90734, "name": "Improved Shadow Dance", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101715, 90723], "prev": [90733, 90727], "entries": [{"id": 112623, "definitionId": 117628, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Dance", "spellId": 393972, "icon": "ability_rogue_shadowdance", "index": 100}]}, {"id": 90715, "name": "Secret Technique", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90723], "prev": [90733], "entries": [{"id": 112603, "definitionId": 117608, "maxRanks": 1, "type": "active", "name": "Secret Technique", "spellId": 280719, "icon": "ability_rogue_sinistercalling", "index": 100}]}, {"id": 90709, "name": "Relentless Strikes", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90723, 90722, 90717], "prev": [94582, 90733], "entries": [{"id": 112597, "definitionId": 117602, "maxRanks": 1, "type": "passive", "name": "Relentless Strikes", "spellId": 58423, "icon": "ability_warrior_decisivestrike", "index": 100}]}, {"id": 90714, "name": "Silent Storm", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90717], "prev": [94582], "entries": [{"id": 112602, "definitionId": 117607, "maxRanks": 1, "type": "passive", "name": "Silent Storm", "spellId": 385722, "icon": "ability_rogue_shuriken-storm", "index": 100}]}, {"id": 90737, "name": "Premeditation", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90738], "prev": [90701, 90736], "entries": [{"id": 112627, "definitionId": 117632, "maxRanks": 1, "type": "passive", "name": "Premeditation", "spellId": 343160, "icon": "spell_shadow_possession", "index": 100}]}, {"id": 90703, "name": "Planned Execution / Warning Signs", "type": "choice", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90738, 90735], "prev": [90736], "entries": [{"id": 112591, "definitionId": 117596, "maxRanks": 1, "type": "passive", "name": "Planned Execution", "spellId": 382508, "icon": "ability_creature_cursed_02", "index": 100}, {"id": 117172, "definitionId": 122184, "maxRanks": 1, "type": "passive", "name": "Warning Signs", "spellId": 426555, "icon": "achievement_bg_kill_flag_carrier", "index": 200}]}, {"id": 101715, "name": "Double Dance", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90735, 90724], "prev": [90736, 90699, 90734], "entries": [{"id": 125619, "definitionId": 130451, "maxRanks": 1, "type": "passive", "name": "Double Dance", "spellId": 394930, "icon": "warrior_doubletime", "index": 100}]}, {"id": 90723, "name": "Shadowed Finishers", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90724, 90713], "prev": [90715, 90709, 90734], "entries": [{"id": 112611, "definitionId": 117616, "maxRanks": 1, "type": "passive", "name": "Shadowed Finishers", "spellId": 382511, "icon": "ability_rogue_eviscerate", "index": 100}]}, {"id": 90722, "name": "Secret Stratagem", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90713, 90716], "prev": [90709], "entries": [{"id": 112610, "definitionId": 117615, "maxRanks": 1, "type": "passive", "name": "Secret Stratagem", "spellId": 394320, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 90717, "name": "Replicating Shadows", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90716], "prev": [90714, 90709], "entries": [{"id": 112605, "definitionId": 117610, "maxRanks": 1, "type": "passive", "name": "Replicating Shadows", "spellId": 382506, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 90738, "name": "Weaponmaster", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90704], "prev": [90703, 90737], "entries": [{"id": 112628, "definitionId": 117633, "maxRanks": 1, "type": "passive", "name": "Weaponmaster", "spellId": 193537, "icon": "ability_ironmaidens_bladerush", "index": 100}]}, {"id": 90735, "name": "The First Dance / Master of Shadows", "type": "choice", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90704, 90707], "prev": [90703, 101715], "entries": [{"id": 112625, "definitionId": 117630, "maxRanks": 1, "type": "passive", "name": "The First Dance", "spellId": 382505, "icon": "ability_rogue_shadowdance", "index": 100}, {"id": 112624, "definitionId": 117629, "maxRanks": 1, "type": "passive", "name": "Master of Shadows", "spellId": 196976, "icon": "spell_shadow_charm", "index": 200}]}, {"id": 90724, "name": "Deepening Shadows", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90707, 90731, 90721], "prev": [90723, 101715], "entries": [{"id": 112612, "definitionId": 117617, "maxRanks": 1, "type": "passive", "name": "Deepening Shadows", "spellId": 185314, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90713, "name": "Veiltouched", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90721, 90718], "prev": [90722, 90723], "entries": [{"id": 112601, "definitionId": 117606, "maxRanks": 1, "type": "passive", "name": "Veiltouched", "spellId": 382017, "icon": "spell_arcane_prismaticcloak", "index": 100}]}, {"id": 90716, "name": "Shuriken Tornado", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90718], "prev": [90717, 90722], "entries": [{"id": 112604, "definitionId": 117609, "maxRanks": 1, "type": "active", "name": "Shuriken Tornado", "spellId": 277925, "icon": "ability_rogue_throwingspecialization", "index": 100}]}, {"id": 90704, "name": "Inevitability / Sepsis", "type": "choice", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90706], "prev": [90738, 90735], "entries": [{"id": 112592, "definitionId": 117597, "maxRanks": 1, "type": "passive", "name": "Inevitability", "spellId": 382512, "icon": "spell_shadow_rune", "index": 100}, {"id": 117171, "definitionId": 122183, "maxRanks": 1, "type": "active", "name": "Sepsis", "spellId": 385408, "icon": "ability_ardenweald_rogue", "index": 200}]}, {"id": 90707, "name": "Perforated Veins", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90706, 90732], "prev": [90724, 90735], "entries": [{"id": 112595, "definitionId": 117600, "maxRanks": 1, "type": "passive", "name": "Perforated Veins", "spellId": 382518, "icon": "ability_warrior_bloodfrenzy", "index": 100}]}, {"id": 90731, "name": "Lingering Shadow", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90732], "prev": [90724], "entries": [{"id": 112619, "definitionId": 117624, "maxRanks": 1, "type": "passive", "name": "Lingering Shadow", "spellId": 382524, "icon": "spell_fire_twilightnova", "index": 100}]}, {"id": 90721, "name": "Deeper Daggers", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90732, 90720], "prev": [90724, 90713], "entries": [{"id": 112609, "definitionId": 117614, "maxRanks": 1, "type": "passive", "name": "Deeper Daggers", "spellId": 382517, "icon": "inv_weapon_shortblade_15", "index": 100}]}, {"id": 90718, "name": "Flagellation", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90720], "prev": [90716, 90713], "entries": [{"id": 112606, "definitionId": 117611, "maxRanks": 1, "type": "active", "name": "Flagellation", "spellId": 384631, "icon": "ability_revendreth_rogue", "index": 100}]}, {"id": 90706, "name": "Invigorating Shadowdust", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90705, 94580], "prev": [90707, 90704], "entries": [{"id": 112594, "definitionId": 117599, "maxRanks": 2, "type": "passive", "name": "Invigorating Shadowdust", "spellId": 382523, "icon": "ability_vanish", "index": 100}]}, {"id": 90732, "name": "Dark Shadow", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94580, 90730, 94581], "prev": [90731, 90707, 90721], "entries": [{"id": 112620, "definitionId": 117625, "maxRanks": 2, "type": "passive", "name": "Dark Shadow", "spellId": 245687, "icon": "spell_warlock_demonsoul", "index": 100}]}, {"id": 90720, "name": "Finality", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94581, 90719], "prev": [90718, 90721], "entries": [{"id": 112608, "definitionId": 117613, "maxRanks": 2, "type": "passive", "name": "Finality", "spellId": 382525, "icon": "ability_rogue_eviscerate", "index": 100}]}, {"id": 90705, "name": "The Rotten", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90706], "entries": [{"id": 112593, "definitionId": 117598, "maxRanks": 1, "type": "passive", "name": "The Rotten", "spellId": 382015, "icon": "spell_shadow_nightofthedead", "index": 100}]}, {"id": 94580, "name": "Shadowcraft", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90732, 90706], "entries": [{"id": 117168, "definitionId": 122180, "maxRanks": 1, "type": "passive", "name": "Shadowcraft", "spellId": 426594, "icon": "spell_shadow_sealofkings", "index": 100}]}, {"id": 90730, "name": "Danse Macabre", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90732], "entries": [{"id": 112618, "definitionId": 117623, "maxRanks": 1, "type": "passive", "name": "Danse Macabre", "spellId": 382528, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 94581, "name": "Goremaw's Bite", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90720, 90732], "entries": [{"id": 117169, "definitionId": 122181, "maxRanks": 1, "type": "active", "name": "Goremaw's Bite", "spellId": 426591, "icon": "inv_knife_1h_artifactfangs_d_01", "index": 100}]}, {"id": 90719, "name": "Dark Brew", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90720], "entries": [{"id": 112607, "definitionId": 117612, "maxRanks": 1, "type": "passive", "name": "Dark Brew", "spellId": 382504, "icon": "spell_nature_slowpoison", "index": 100}]}], "heroNodes": [{"id": 95136, "name": "Deathstalker's Mark", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 53, "next": [95110, 95132, 95117], "prev": [], "entries": [{"id": 117733, "definitionId": 122745, "maxRanks": 1, "type": "passive", "name": "Deathstalker's Mark", "spellId": 457052, "icon": "inv_ability_deathstalkerrogue_deathstalkersmark", "index": 100}], "freeNode": true}, {"id": 95110, "name": "Clear the Witnesses", "type": "single", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95135], "prev": [95136], "entries": [{"id": 117707, "definitionId": 122719, "maxRanks": 1, "type": "passive", "name": "Clear the Witnesses", "spellId": 457053, "icon": "ability_rogue_fanofknives", "index": 100}]}, {"id": 95132, "name": "Hunt Them Down", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95108], "prev": [95136], "entries": [{"id": 117729, "definitionId": 122741, "maxRanks": 1, "type": "passive", "name": "Hunt Them Down", "spellId": 457054, "icon": "ability_rogue_creepingvenom", "index": 100}]}, {"id": 95117, "name": "Singular Focus", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95109], "prev": [95136], "entries": [{"id": 117714, "definitionId": 122726, "maxRanks": 1, "type": "passive", "name": "Singular Focus", "spellId": 457055, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 95135, "name": "Fatal Intent", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95106], "prev": [95110], "entries": [{"id": 117732, "definitionId": 122744, "maxRanks": 1, "type": "passive", "name": "Fatal Intent", "spellId": 461980, "icon": "ability_warrior_deepcuts", "index": 100}]}, {"id": 95108, "name": "Corrupt the Blood", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95131], "prev": [95132], "entries": [{"id": 117705, "definitionId": 122717, "maxRanks": 1, "type": "passive", "name": "Corrupt the Blood", "spellId": 457066, "icon": "ability_ironmaidens_bloodritual", "index": 100}]}, {"id": 95109, "name": "Lingering Darkness / Symbolic Victory", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95123], "prev": [95117], "entries": [{"id": 117706, "definitionId": 122718, "maxRanks": 1, "type": "passive", "name": "Lingering Darkness", "spellId": 457056, "icon": "ability_rogue_envelopingshadows", "index": 100}, {"id": 126030, "definitionId": 130862, "maxRanks": 1, "type": "passive", "name": "Symbolic Victory", "spellId": 457062, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 95106, "name": "Ethereal Cloak / Bait and Switch", "type": "choice", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95135], "entries": [{"id": 117703, "definitionId": 122715, "maxRanks": 1, "type": "passive", "name": "Ethereal Cloak", "spellId": 457022, "icon": "spell_arcane_prismaticcloak", "index": 100}, {"id": 126029, "definitionId": 130861, "maxRanks": 1, "type": "passive", "name": "Bait and Switch", "spellId": 457034, "icon": "ability_druid_earthandsky", "index": 200}]}, {"id": 95131, "name": "Momentum of Despair / Follow the Blood", "type": "choice", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95108], "entries": [{"id": 117728, "definitionId": 122740, "maxRanks": 1, "type": "passive", "name": "Momentum of Despair", "spellId": 457067, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 126028, "definitionId": 130860, "maxRanks": 1, "type": "passive", "name": "Follow the Blood", "spellId": 457068, "icon": "sha_ability_rogue_bloodyeye_nightmare", "index": 200}]}, {"id": 95123, "name": "Shadewalker / Shroud of Night", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95109], "entries": [{"id": 117720, "definitionId": 122732, "maxRanks": 1, "type": "passive", "name": "Shadewalker", "spellId": 457057, "icon": "rogue_shadow_reflection", "index": 100}, {"id": 126027, "definitionId": 130859, "maxRanks": 1, "type": "passive", "name": "Shroud of Night", "spellId": 457063, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 95142, "name": "Darkest Night", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 53, "next": [], "prev": [95131, 95106, 95123], "entries": [{"id": 117739, "definitionId": 122751, "maxRanks": 1, "type": "passive", "name": "Darkest Night", "spellId": 457058, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 95140, "name": "Unseen Blade", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 51, "next": [95141, 95111, 95121], "prev": [], "entries": [{"id": 117737, "definitionId": 122749, "maxRanks": 1, "type": "passive", "name": "Unseen Blade", "spellId": 441146, "icon": "inv_weapon_shortblade_55", "index": 100}], "freeNode": true}, {"id": 95121, "name": "Surprising Strikes", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95134], "prev": [95140], "entries": [{"id": 117718, "definitionId": 122730, "maxRanks": 1, "type": "passive", "name": "Surprising Strikes", "spellId": 441273, "icon": "ability_rogue_surpriseattack2", "index": 100}]}, {"id": 95141, "name": "Smoke / Mirrors", "type": "choice", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95133], "prev": [95140], "entries": [{"id": 117738, "definitionId": 122750, "maxRanks": 1, "type": "passive", "name": "Smoke", "spellId": 441247, "icon": "rogue_dirtytricks", "index": 100}, {"id": 120130, "definitionId": 125030, "maxRanks": 1, "type": "passive", "name": "Mirrors", "spellId": 441250, "icon": "trade_archaeology_highbornesoulmirror", "index": 200}]}, {"id": 95111, "name": "Flawless Form", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95137], "prev": [95140], "entries": [{"id": 117708, "definitionId": 122720, "maxRanks": 1, "type": "passive", "name": "Flawless Form", "spellId": 441321, "icon": "inv_qiraj_jewelblessed", "index": 100}]}, {"id": 95134, "name": "So Tricky / Don't Be Suspicious", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95118], "prev": [95121], "entries": [{"id": 117731, "definitionId": 122743, "maxRanks": 1, "type": "passive", "name": "So Tricky", "spellId": 441403, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 120133, "definitionId": 125033, "maxRanks": 1, "type": "passive", "name": "Don't Be Suspicious", "spellId": 441415, "icon": "ability_rogue_disguise", "index": 200}]}, {"id": 95133, "name": "Devious Distractions", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95116], "prev": [95141], "entries": [{"id": 117730, "definitionId": 122742, "maxRanks": 1, "type": "passive", "name": "Devious Distractions", "spellId": 441263, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 95137, "name": "Thousand Cuts / Flickerstrike", "type": "choice", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95128], "prev": [95111], "entries": [{"id": 117734, "definitionId": 122746, "maxRanks": 1, "type": "passive", "name": "Thousand Cuts", "spellId": 441346, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}, {"id": 120131, "definitionId": 125031, "maxRanks": 1, "type": "passive", "name": "Flickerstrike", "spellId": 441359, "icon": "spell_nature_invisibilty", "index": 200}]}, {"id": 95118, "name": "Disorienting Strikes", "type": "single", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95115], "prev": [95134], "entries": [{"id": 117715, "definitionId": 122727, "maxRanks": 1, "type": "passive", "name": "Disorienting Strikes", "spellId": 441274, "icon": "petbattle_speed", "index": 100}]}, {"id": 95116, "name": "Cloud Cover / No Scruples", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95133], "entries": [{"id": 117713, "definitionId": 122725, "maxRanks": 1, "type": "passive", "name": "Cloud Cover", "spellId": 441429, "icon": "ability_rogue_smoke", "index": 100}, {"id": 120132, "definitionId": 125032, "maxRanks": 1, "type": "passive", "name": "No Scruples", "spellId": 441398, "icon": "ability_rogue_surpriseattack", "index": 200}]}, {"id": 95128, "name": "Nimble Flurry", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95137], "entries": [{"id": 117725, "definitionId": 122737, "maxRanks": 1, "type": "passive", "name": "Nimble Flurry", "spellId": 441367, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 95115, "name": "Coup de Grace", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 51, "next": [], "prev": [95116, 95118, 95128], "entries": [{"id": 117712, "definitionId": 122724, "maxRanks": 1, "type": "passive", "name": "Coup de Grace", "spellId": 441423, "icon": "inv_ability_tricksterrogue_coupdegrace", "index": 100}]}], "subTreeNodes": [{"id": 99842, "name": "Deathstalker / Trickster", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123373, "type": "subtree", "name": "Deathstalker", "traitSubTreeId": 53, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-deathstalker", "nodes": [95136, 95110, 95132, 95117, 95135, 95108, 95109, 95106, 95131, 95123, 95142]}, {"id": 123370, "type": "subtree", "name": "Trickster", "traitSubTreeId": 51, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-trickster", "nodes": [95140, 95121, 95141, 95111, 95134, 95133, 95137, 95118, 95116, 95128, 95115]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]} \ No newline at end of file +{"traitTreeId": 852, "className": "Rogue", "classId": 4, "specName": "Subtlety", "specId": 261, "classNodes": [{"id": 90740, "name": "Shiv", "type": "single", "posX": 2700, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764], "prev": [], "entries": [{"id": 112630, "definitionId": 117635, "maxRanks": 1, "type": "active", "name": "Shiv", "spellId": 5938, "icon": "inv_throwingknife_04", "index": 100}]}, {"id": 90684, "name": "Blind", "type": "single", "posX": 3900, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90764, 90741, 90695], "prev": [], "entries": [{"id": 112572, "definitionId": 117577, "maxRanks": 1, "type": "active", "name": "Blind", "spellId": 2094, "icon": "spell_shadow_mindsteal", "index": 100}]}, {"id": 90697, "name": "Cloak of Shadows", "type": "single", "posX": 5100, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90695], "prev": [], "entries": [{"id": 112585, "definitionId": 117590, "maxRanks": 1, "type": "active", "name": "Cloak of Shadows", "spellId": 31224, "icon": "spell_shadow_nethercloak", "index": 100}], "freeNode": true}, {"id": 90764, "name": "Evasion", "type": "single", "posX": 3300, "posY": 2100, "maxRanks": 1, "next": [90636, 90742], "prev": [90740, 90684], "entries": [{"id": 112657, "definitionId": 117662, "maxRanks": 1, "type": "active", "name": "Evasion", "spellId": 5277, "icon": "spell_shadow_shadowward", "index": 100}]}, {"id": 90741, "name": "Gouge / Airborne Irritant", "type": "choice", "posX": 3900, "posY": 2100, "maxRanks": 1, "next": [90742], "prev": [90684], "entries": [{"id": 112631, "definitionId": 117636, "maxRanks": 1, "type": "active", "name": "Gouge", "spellId": 1776, "icon": "ability_gouge", "index": 100}, {"id": 117740, "definitionId": 122752, "maxRanks": 1, "type": "passive", "name": "Airborne Irritant", "spellId": 200733, "icon": "ability_rogue_bloodyeye", "index": 200}]}, {"id": 90695, "name": "Thrill Seeking", "type": "single", "posX": 4500, "posY": 2100, "maxRanks": 1, "next": [90742, 90686], "prev": [90684, 90697], "entries": [{"id": 112583, "definitionId": 117588, "maxRanks": 1, "type": "passive", "name": "Thrill Seeking", "spellId": 394931, "icon": "inv_ragnaros_heart_shadowflame", "index": 100}]}, {"id": 90636, "name": "Master Poisoner", "type": "single", "posX": 2700, "posY": 2700, "maxRanks": 1, "next": [90637, 90745], "prev": [90764], "entries": [{"id": 112521, "definitionId": 117526, "maxRanks": 1, "type": "passive", "name": "Master Poisoner", "spellId": 378436, "icon": "ability_creature_poison_06", "index": 100}]}, {"id": 90742, "name": "Elusiveness / Cheat Death", "type": "choice", "posX": 3900, "posY": 2700, "maxRanks": 1, "next": [90745, 90746], "prev": [90741, 90764, 90695], "entries": [{"id": 112632, "definitionId": 117637, "maxRanks": 1, "type": "passive", "name": "Elusiveness", "spellId": 79008, "icon": "ability_rogue_turnthetables", "index": 100}, {"id": 114737, "definitionId": 119744, "maxRanks": 1, "type": "passive", "name": "Cheat Death", "spellId": 31230, "icon": "ability_rogue_cheatdeath", "index": 200}]}, {"id": 90686, "name": "Tricks of the Trade / Blackjack", "type": "choice", "posX": 5100, "posY": 2700, "maxRanks": 1, "next": [90746, 90687], "prev": [90695], "entries": [{"id": 112574, "definitionId": 117579, "maxRanks": 1, "type": "active", "name": "Tricks of the Trade", "spellId": 57934, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 117143, "definitionId": 122155, "maxRanks": 1, "type": "passive", "name": "Blackjack", "spellId": 379005, "icon": "ability_rogue_blackjack", "index": 200}]}, {"id": 90637, "name": "Improved Wound Poison", "type": "single", "posX": 2100, "posY": 3300, "maxRanks": 1, "next": [94567, 90762], "prev": [90636], "entries": [{"id": 112522, "definitionId": 117527, "maxRanks": 1, "type": "passive", "name": "Improved Wound Poison", "spellId": 319066, "icon": "inv_misc_herb_16", "index": 100}]}, {"id": 90745, "name": "Nimble Fingers", "type": "single", "posX": 3300, "posY": 3300, "maxRanks": 1, "next": [90762, 90744, 90747], "prev": [90742, 90636], "entries": [{"id": 112635, "definitionId": 117640, "maxRanks": 1, "type": "passive", "name": "Nimble Fingers", "spellId": 378427, "icon": "ability_rogue_crimsonvial", "index": 100}]}, {"id": 90746, "name": "Improved Sprint", "type": "single", "posX": 4500, "posY": 3300, "maxRanks": 1, "next": [90747, 94563, 90754], "prev": [90686, 90742], "entries": [{"id": 112636, "definitionId": 117641, "maxRanks": 1, "type": "passive", "name": "Improved Sprint", "spellId": 231691, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90687, "name": "Shadowrunner", "type": "single", "posX": 5700, "posY": 3300, "maxRanks": 1, "next": [90754, 101714], "prev": [90686], "entries": [{"id": 112575, "definitionId": 117580, "maxRanks": 1, "type": "passive", "name": "Shadowrunner", "spellId": 378807, "icon": "ability_stealth", "index": 100}]}, {"id": 94567, "name": "Superior Mixture", "type": "single", "posX": 2100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763], "prev": [90637], "entries": [{"id": 117151, "definitionId": 122163, "maxRanks": 1, "type": "passive", "name": "Superior Mixture", "spellId": 423701, "icon": "inv_misc_potionsete", "index": 100}]}, {"id": 90762, "name": "Fleet Footed", "type": "single", "posX": 2700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90763, 90743], "prev": [90745, 90637], "entries": [{"id": 112654, "definitionId": 117659, "maxRanks": 1, "type": "passive", "name": "Fleet Footed", "spellId": 378813, "icon": "ability_rogue_quickrecovery", "index": 100}]}, {"id": 90744, "name": "Iron Stomach", "type": "single", "posX": 3300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743], "prev": [90745], "entries": [{"id": 112634, "definitionId": 117639, "maxRanks": 1, "type": "passive", "name": "Iron Stomach", "spellId": 193546, "icon": "inv_misc_organ_11", "index": 100}]}, {"id": 90747, "name": "Unbreakable Stride", "type": "single", "posX": 3900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90743, 94562], "prev": [90745, 90746], "entries": [{"id": 112638, "definitionId": 117643, "maxRanks": 1, "type": "passive", "name": "Unbreakable Stride", "spellId": 400804, "icon": "ability_rogue_trip", "index": 100}]}, {"id": 94563, "name": "Featherfoot", "type": "single", "posX": 4500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562], "prev": [90746], "entries": [{"id": 117146, "definitionId": 122158, "maxRanks": 1, "type": "passive", "name": "Featherfoot", "spellId": 423683, "icon": "spell_magic_featherfall", "index": 100}]}, {"id": 90754, "name": "Rushed Setup", "type": "single", "posX": 5100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94562, 94561], "prev": [90746, 90687], "entries": [{"id": 112646, "definitionId": 117651, "maxRanks": 1, "type": "passive", "name": "Rushed Setup", "spellId": 378803, "icon": "ability_skyreach_piercing_rush", "index": 0}]}, {"id": 101714, "name": "Shadowheart", "type": "single", "posX": 5700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [94561], "prev": [90687], "entries": [{"id": 125615, "definitionId": 130447, "maxRanks": 1, "type": "passive", "name": "Shadowheart", "spellId": 455131, "icon": "inv_heart_of_the_thunder_king_icon", "index": 100}]}, {"id": 90763, "name": "Numbing Poison / Atrophic Poison", "type": "choice", "posX": 2700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760], "prev": [90762, 94567], "entries": [{"id": 112656, "definitionId": 117661, "maxRanks": 1, "type": "active", "name": "Numbing Poison", "spellId": 5761, "icon": "spell_nature_nullifydisease", "index": 100}, {"id": 112655, "definitionId": 117660, "maxRanks": 1, "type": "active", "name": "Atrophic Poison", "spellId": 381637, "icon": "ability_rogue_nervesofsteel", "index": 200}]}, {"id": 90743, "name": "Deadened Nerves", "type": "single", "posX": 3300, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90760, 90752], "prev": [90747, 90762, 90744], "entries": [{"id": 112633, "definitionId": 117638, "maxRanks": 1, "type": "passive", "name": "Deadened Nerves", "spellId": 231719, "icon": "ability_rogue_nervesofsteel", "index": 100}]}, {"id": 94562, "name": "Graceful Guile", "type": "single", "posX": 4500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90752, 90692], "prev": [90754, 90747, 94563], "entries": [{"id": 117145, "definitionId": 122157, "maxRanks": 1, "type": "passive", "name": "Graceful Guile", "spellId": 423647, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 94561, "name": "Stillshroud", "type": "single", "posX": 5100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90692], "prev": [90754, 101714], "entries": [{"id": 117144, "definitionId": 122156, "maxRanks": 1, "type": "passive", "name": "Stillshroud", "spellId": 423662, "icon": "ability_rogue_shroudofconcealment", "index": 100}]}, {"id": 90760, "name": "Deadly Precision / Virulent Poisons", "type": "choice", "posX": 2700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90758, 90749], "prev": [90743, 90763], "entries": [{"id": 112652, "definitionId": 117657, "maxRanks": 1, "type": "passive", "name": "Deadly Precision", "spellId": 381542, "icon": "ability_rogue_deadenednerves", "index": 100}, {"id": 117150, "definitionId": 122162, "maxRanks": 1, "type": "passive", "name": "Virulent Poisons", "spellId": 381543, "icon": "ability_creature_poison_06", "index": 200}]}, {"id": 90752, "name": "Acrobatic Strikes", "type": "single", "posX": 3900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90749, 90640, 90751], "prev": [90743, 94562], "entries": [{"id": 112644, "definitionId": 117649, "maxRanks": 1, "type": "passive", "name": "Acrobatic Strikes", "spellId": 455143, "icon": "spell_warrior_wildstrike", "index": 100}]}, {"id": 90692, "name": "Improved Ambush / Tight Spender", "type": "choice", "posX": 5100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90751, 90691], "prev": [94561, 94562], "entries": [{"id": 112580, "definitionId": 117585, "maxRanks": 1, "type": "passive", "name": "Improved Ambush", "spellId": 381620, "icon": "ability_rogue_ambush", "index": 100}, {"id": 117152, "definitionId": 122164, "maxRanks": 1, "type": "passive", "name": "Tight Spender", "spellId": 381621, "icon": "inv_misc_coin_03", "index": 200}]}, {"id": 90758, "name": "Leeching Poison", "type": "single", "posX": 2700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90759], "prev": [90760], "entries": [{"id": 112650, "definitionId": 117655, "maxRanks": 1, "type": "passive", "name": "Leeching Poison", "spellId": 280716, "icon": "rogue_leeching_poison", "index": 100}]}, {"id": 90749, "name": "Lethality", "type": "single", "posX": 3300, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90748], "prev": [90760, 90752], "entries": [{"id": 112640, "definitionId": 117645, "maxRanks": 2, "type": "passive", "name": "Lethality", "spellId": 382238, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90640, "name": "Recuperator", "type": "single", "posX": 3900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90639], "prev": [90752], "entries": [{"id": 112526, "definitionId": 117531, "maxRanks": 1, "type": "passive", "name": "Recuperator", "spellId": 378996, "icon": "inv_gizmo_runichealthinjector", "index": 100}]}, {"id": 90751, "name": "Alacrity", "type": "single", "posX": 4500, "posY": 5700, "reqPoints": 20, "maxRanks": 2, "next": [90750], "prev": [90692, 90752], "entries": [{"id": 112643, "definitionId": 117648, "maxRanks": 2, "type": "passive", "name": "Alacrity", "spellId": 193539, "icon": "ability_paladin_speedoflight", "index": 100}]}, {"id": 90691, "name": "Soothing Darkness", "type": "single", "posX": 5100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90688], "prev": [90692], "entries": [{"id": 112579, "definitionId": 117584, "maxRanks": 1, "type": "passive", "name": "Soothing Darkness", "spellId": 393970, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90759, "name": "Vigor", "type": "single", "posX": 2700, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90756], "prev": [90758], "entries": [{"id": 112651, "definitionId": 117656, "maxRanks": 2, "type": "passive", "name": "Vigor", "spellId": 14983, "icon": "ability_rogue_vigor", "index": 100}]}, {"id": 90639, "name": "Supercharger", "type": "single", "posX": 3900, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90638], "prev": [90640], "entries": [{"id": 112525, "definitionId": 117530, "maxRanks": 2, "type": "passive", "name": "Supercharger", "spellId": 470347, "icon": "inv_engineering_90_electrifiedether", "index": 100}]}, {"id": 90688, "name": "Subterfuge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [101713], "prev": [90691], "entries": [{"id": 112576, "definitionId": 117581, "maxRanks": 2, "type": "passive", "name": "Subterfuge", "spellId": 108208, "icon": "rogue_subterfuge", "index": 100}]}, {"id": 90756, "name": "Thistle Tea", "type": "single", "posX": 2700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90759], "entries": [{"id": 112648, "definitionId": 117653, "maxRanks": 1, "type": "active", "name": "Thistle Tea", "spellId": 469779, "visibleSpellId": 381623, "icon": "inv_drink_milk_05", "index": 100}]}, {"id": 90748, "name": "Cold Blood", "type": "single", "posX": 3300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90749], "entries": [{"id": 112639, "definitionId": 117644, "maxRanks": 1, "type": "active", "name": "Cold Blood", "spellId": 382245, "icon": "spell_ice_lament", "index": 100}]}, {"id": 90638, "name": "Echoing Reprimand / Forced Induction", "type": "choice", "posX": 3900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90639], "entries": [{"id": 112524, "definitionId": 117529, "maxRanks": 1, "type": "passive", "name": "Echoing Reprimand", "spellId": 470669, "icon": "inv_ability_rogue_echoingreprimand", "index": 100}, {"id": 112523, "definitionId": 117528, "maxRanks": 1, "type": "passive", "name": "Forced Induction", "spellId": 470668, "icon": "inv_misc_enggizmos_06", "index": 200}]}, {"id": 90750, "name": "Deeper Stratagem", "type": "single", "posX": 4500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90751], "entries": [{"id": 112642, "definitionId": 117647, "maxRanks": 1, "type": "passive", "name": "Deeper Stratagem", "spellId": 193531, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 101713, "name": "Without a Trace", "type": "single", "posX": 5100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90688], "entries": [{"id": 125614, "definitionId": 130446, "maxRanks": 1, "type": "passive", "name": "Without a Trace", "spellId": 382513, "icon": "ability_vanish", "index": 100}]}], "specNodes": [{"id": 90690, "name": "Find Weakness", "type": "single", "posX": 12300, "posY": 1500, "maxRanks": 1, "entryNode": true, "next": [90739, 90726, 90710], "prev": [], "entries": [{"id": 112578, "definitionId": 117583, "maxRanks": 1, "type": "passive", "name": "Find Weakness", "spellId": 91023, "icon": "ability_rogue_findweakness", "index": 100}]}, {"id": 90739, "name": "Improved Backstab", "type": "single", "posX": 11700, "posY": 2100, "maxRanks": 1, "next": [90698], "prev": [90690], "entries": [{"id": 112629, "definitionId": 117634, "maxRanks": 1, "type": "passive", "name": "Improved Backstab", "spellId": 319949, "icon": "ability_backstab", "index": 100}]}, {"id": 90726, "name": "Shadow Blades", "type": "single", "posX": 12300, "posY": 2100, "maxRanks": 1, "next": [90728, 90725], "prev": [90690], "entries": [{"id": 112614, "definitionId": 117619, "maxRanks": 1, "type": "active", "name": "Shadow Blades", "spellId": 121471, "icon": "inv_knife_1h_grimbatolraid_d_03", "index": 100}]}, {"id": 90710, "name": "Improved Shuriken Storm", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90711], "prev": [90690], "entries": [{"id": 112598, "definitionId": 117603, "maxRanks": 1, "type": "passive", "name": "Improved Shuriken Storm", "spellId": 319951, "icon": "ability_rogue_shuriken-storm", "index": 100}]}, {"id": 90698, "name": "Shot in the Dark", "type": "single", "posX": 11100, "posY": 2700, "maxRanks": 1, "next": [90700, 90727], "prev": [90739], "entries": [{"id": 112586, "definitionId": 117591, "maxRanks": 1, "type": "passive", "name": "Shot in the Dark", "spellId": 257505, "icon": "ability_cheapshot", "index": 100}]}, {"id": 90728, "name": "Quick Decisions", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [90727], "prev": [90726], "entries": [{"id": 112616, "definitionId": 117621, "maxRanks": 1, "type": "passive", "name": "Quick Decisions", "spellId": 382503, "icon": "inv_misc_hook_01", "index": 100}]}, {"id": 90725, "name": "Ephemeral Bond", "type": "single", "posX": 12600, "posY": 2700, "maxRanks": 1, "next": [90733], "prev": [90726], "entries": [{"id": 112613, "definitionId": 117618, "maxRanks": 1, "type": "passive", "name": "Ephemeral Bond", "spellId": 426563, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 90711, "name": "Exhilarating Execution", "type": "single", "posX": 13500, "posY": 2700, "maxRanks": 1, "next": [90733, 94582], "prev": [90710], "entries": [{"id": 112599, "definitionId": 117604, "maxRanks": 1, "type": "passive", "name": "Exhilarating Execution", "spellId": 428486, "icon": "inv_weapon_hand_04", "index": 100}]}, {"id": 90700, "name": "Shrouded in Darkness", "type": "single", "posX": 10500, "posY": 3300, "maxRanks": 1, "next": [90736, 90701], "prev": [90698], "entries": [{"id": 112588, "definitionId": 117593, "maxRanks": 1, "type": "passive", "name": "Shrouded in Darkness", "spellId": 382507, "icon": "ability_rogue_envelopingshadows", "index": 100}]}, {"id": 90727, "name": "Shadow Focus", "type": "single", "posX": 11700, "posY": 3300, "maxRanks": 1, "next": [90736, 90699, 90734], "prev": [90698, 90728], "entries": [{"id": 112615, "definitionId": 117620, "maxRanks": 1, "type": "passive", "name": "Shadow Focus", "spellId": 108209, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90733, "name": "Cloaked in Shadows / Fade to Nothing", "type": "choice", "posX": 12900, "posY": 3300, "maxRanks": 1, "next": [90734, 90715, 90709], "prev": [90725, 90711], "entries": [{"id": 112622, "definitionId": 117627, "maxRanks": 1, "type": "passive", "name": "Cloaked in Shadows", "spellId": 382515, "icon": "inv_helm_cloth_shadowmoonclan_b_01", "index": 100}, {"id": 112621, "definitionId": 117626, "maxRanks": 1, "type": "passive", "name": "Fade to Nothing", "spellId": 382514, "icon": "ability_warlock_everlastingaffliction", "index": 200}]}, {"id": 94582, "name": "Night Terrors / Terrifying Pace", "type": "choice", "posX": 14100, "posY": 3300, "maxRanks": 1, "next": [90709, 90714], "prev": [90711], "entries": [{"id": 117170, "definitionId": 122182, "maxRanks": 1, "type": "passive", "name": "Night Terrors", "spellId": 277953, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 117753, "definitionId": 122765, "maxRanks": 1, "type": "passive", "name": "Terrifying Pace", "spellId": 428387, "icon": "ability_druid_typhoon", "index": 200}]}, {"id": 90701, "name": "Swift Death", "type": "single", "posX": 9900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90737], "prev": [90700], "entries": [{"id": 112589, "definitionId": 117594, "maxRanks": 1, "type": "passive", "name": "Swift Death", "spellId": 394309, "icon": "spell_shadow_rune", "index": 100}]}, {"id": 90736, "name": "Improved Shadow Techniques", "type": "single", "posX": 11100, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90737, 90703, 101715], "prev": [90700, 90727], "entries": [{"id": 112626, "definitionId": 117631, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Techniques", "spellId": 394023, "icon": "ability_rogue_masterofsubtlety", "index": 100}]}, {"id": 90699, "name": "Gloomblade", "type": "single", "posX": 11700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101715], "prev": [90727], "entries": [{"id": 112587, "definitionId": 117592, "maxRanks": 1, "type": "active", "name": "Gloomblade", "spellId": 200758, "icon": "ability_ironmaidens_convulsiveshadows", "index": 100}]}, {"id": 90734, "name": "Improved Shadow Dance", "type": "single", "posX": 12300, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [101715, 90723], "prev": [90733, 90727], "entries": [{"id": 112623, "definitionId": 117628, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Dance", "spellId": 393972, "icon": "ability_rogue_shadowdance", "index": 100}]}, {"id": 90715, "name": "Secret Technique", "type": "single", "posX": 12900, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90723], "prev": [90733], "entries": [{"id": 112603, "definitionId": 117608, "maxRanks": 1, "type": "active", "name": "Secret Technique", "spellId": 280719, "icon": "ability_rogue_sinistercalling", "index": 100}]}, {"id": 90709, "name": "Relentless Strikes", "type": "single", "posX": 13500, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90723, 90722, 90717], "prev": [94582, 90733], "entries": [{"id": 112597, "definitionId": 117602, "maxRanks": 1, "type": "passive", "name": "Relentless Strikes", "spellId": 58423, "icon": "ability_warrior_decisivestrike", "index": 100}]}, {"id": 90714, "name": "Silent Storm", "type": "single", "posX": 14700, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90717], "prev": [94582], "entries": [{"id": 112602, "definitionId": 117607, "maxRanks": 1, "type": "passive", "name": "Silent Storm", "spellId": 385722, "icon": "ability_rogue_shuriken-storm", "index": 100}]}, {"id": 90737, "name": "Premeditation", "type": "single", "posX": 10500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90738], "prev": [90701, 90736], "entries": [{"id": 112627, "definitionId": 117632, "maxRanks": 1, "type": "passive", "name": "Premeditation", "spellId": 343160, "icon": "spell_shadow_possession", "index": 100}]}, {"id": 90703, "name": "Planned Execution / Warning Signs", "type": "choice", "posX": 11100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90738, 90735], "prev": [90736], "entries": [{"id": 112591, "definitionId": 117596, "maxRanks": 1, "type": "passive", "name": "Planned Execution", "spellId": 382508, "icon": "ability_creature_cursed_02", "index": 100}, {"id": 117172, "definitionId": 122184, "maxRanks": 1, "type": "passive", "name": "Warning Signs", "spellId": 426555, "icon": "achievement_bg_kill_flag_carrier", "index": 200}]}, {"id": 101715, "name": "Double Dance", "type": "single", "posX": 11700, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90735, 90724], "prev": [90736, 90699, 90734], "entries": [{"id": 125619, "definitionId": 130451, "maxRanks": 1, "type": "passive", "name": "Double Dance", "spellId": 394930, "icon": "warrior_doubletime", "index": 100}]}, {"id": 90723, "name": "Shadowed Finishers", "type": "single", "posX": 12900, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90724, 90713], "prev": [90715, 90709, 90734], "entries": [{"id": 112611, "definitionId": 117616, "maxRanks": 1, "type": "passive", "name": "Shadowed Finishers", "spellId": 382511, "icon": "ability_rogue_eviscerate", "index": 100}]}, {"id": 90722, "name": "Secret Stratagem", "type": "single", "posX": 13500, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90713, 90716], "prev": [90709], "entries": [{"id": 112610, "definitionId": 117615, "maxRanks": 1, "type": "passive", "name": "Secret Stratagem", "spellId": 394320, "icon": "archaeology_5_0_changkiboard", "index": 100}]}, {"id": 90717, "name": "Replicating Shadows", "type": "single", "posX": 14100, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90716], "prev": [90714, 90709], "entries": [{"id": 112605, "definitionId": 117610, "maxRanks": 1, "type": "passive", "name": "Replicating Shadows", "spellId": 382506, "icon": "spell_deathknight_strangulate", "index": 100}]}, {"id": 90738, "name": "Weaponmaster", "type": "single", "posX": 10500, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90704], "prev": [90703, 90737], "entries": [{"id": 112628, "definitionId": 117633, "maxRanks": 1, "type": "passive", "name": "Weaponmaster", "spellId": 193537, "icon": "ability_ironmaidens_bladerush", "index": 100}]}, {"id": 90735, "name": "The First Dance / Master of Shadows", "type": "choice", "posX": 11700, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90704, 90707], "prev": [90703, 101715], "entries": [{"id": 112625, "definitionId": 117630, "maxRanks": 1, "type": "passive", "name": "The First Dance", "spellId": 382505, "icon": "ability_rogue_shadowdance", "index": 100}, {"id": 112624, "definitionId": 117629, "maxRanks": 1, "type": "passive", "name": "Master of Shadows", "spellId": 196976, "icon": "spell_shadow_charm", "index": 200}]}, {"id": 90724, "name": "Deepening Shadows", "type": "single", "posX": 12300, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90707, 90731, 90721], "prev": [90723, 101715], "entries": [{"id": 112612, "definitionId": 117617, "maxRanks": 1, "type": "passive", "name": "Deepening Shadows", "spellId": 185314, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 90713, "name": "Veiltouched", "type": "single", "posX": 12900, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90721, 90718], "prev": [90722, 90723], "entries": [{"id": 112601, "definitionId": 117606, "maxRanks": 1, "type": "passive", "name": "Veiltouched", "spellId": 382017, "icon": "spell_arcane_prismaticcloak", "index": 100}]}, {"id": 90716, "name": "Shuriken Tornado", "type": "single", "posX": 14100, "posY": 5100, "reqPoints": 8, "maxRanks": 1, "next": [90718], "prev": [90717, 90722], "entries": [{"id": 112604, "definitionId": 117609, "maxRanks": 1, "type": "active", "name": "Shuriken Tornado", "spellId": 277925, "icon": "ability_rogue_throwingspecialization", "index": 100}]}, {"id": 90704, "name": "Inevitability", "type": "single", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90706], "prev": [90738, 90735], "entries": [{"id": 112592, "definitionId": 117597, "maxRanks": 1, "type": "passive", "name": "Inevitability", "spellId": 382512, "icon": "spell_shadow_rune", "index": 100}]}, {"id": 90707, "name": "Perforated Veins", "type": "single", "posX": 11700, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90706, 90732], "prev": [90724, 90735], "entries": [{"id": 112595, "definitionId": 117600, "maxRanks": 1, "type": "passive", "name": "Perforated Veins", "spellId": 382518, "icon": "ability_warrior_bloodfrenzy", "index": 100}]}, {"id": 90731, "name": "Lingering Shadow", "type": "single", "posX": 12300, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90732], "prev": [90724], "entries": [{"id": 112619, "definitionId": 117624, "maxRanks": 1, "type": "passive", "name": "Lingering Shadow", "spellId": 382524, "icon": "spell_fire_twilightnova", "index": 100}]}, {"id": 90721, "name": "Deeper Daggers", "type": "single", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90732, 90720], "prev": [90724, 90713], "entries": [{"id": 112609, "definitionId": 117614, "maxRanks": 1, "type": "passive", "name": "Deeper Daggers", "spellId": 382517, "icon": "inv_weapon_shortblade_15", "index": 100}]}, {"id": 90718, "name": "Flagellation", "type": "single", "posX": 13500, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90720], "prev": [90716, 90713], "entries": [{"id": 112606, "definitionId": 117611, "maxRanks": 1, "type": "active", "name": "Flagellation", "spellId": 384631, "icon": "inv_ability_rogue_flagellation", "index": 100}]}, {"id": 90706, "name": "Death Perception", "type": "single", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [90705, 94580], "prev": [90707, 90704], "entries": [{"id": 112594, "definitionId": 117599, "maxRanks": 2, "type": "passive", "name": "Death Perception", "spellId": 469642, "icon": "spell_nzinsanity_shortsighted", "index": 100}]}, {"id": 90732, "name": "Dark Shadow", "type": "single", "posX": 12300, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94580, 90730, 94581], "prev": [90731, 90707, 90721], "entries": [{"id": 112620, "definitionId": 117625, "maxRanks": 2, "type": "passive", "name": "Dark Shadow", "spellId": 245687, "icon": "spell_warlock_demonsoul", "index": 100}]}, {"id": 90720, "name": "Finality", "type": "single", "posX": 13500, "posY": 6300, "reqPoints": 20, "maxRanks": 2, "next": [94581, 90719], "prev": [90718, 90721], "entries": [{"id": 112608, "definitionId": 117613, "maxRanks": 2, "type": "passive", "name": "Finality", "spellId": 382525, "icon": "ability_rogue_eviscerate", "index": 100}]}, {"id": 90705, "name": "The Rotten", "type": "single", "posX": 11100, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90706], "entries": [{"id": 112593, "definitionId": 117598, "maxRanks": 1, "type": "passive", "name": "The Rotten", "spellId": 382015, "icon": "spell_shadow_nightofthedead", "index": 100}]}, {"id": 94580, "name": "Shadowcraft", "type": "single", "posX": 11700, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90732, 90706], "entries": [{"id": 117168, "definitionId": 122180, "maxRanks": 1, "type": "passive", "name": "Shadowcraft", "spellId": 426594, "icon": "spell_shadow_sealofkings", "index": 100}]}, {"id": 90730, "name": "Danse Macabre", "type": "single", "posX": 12300, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90732], "entries": [{"id": 112618, "definitionId": 117623, "maxRanks": 1, "type": "passive", "name": "Danse Macabre", "spellId": 382528, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 94581, "name": "Goremaw's Bite", "type": "single", "posX": 12900, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90720, 90732], "entries": [{"id": 117169, "definitionId": 122181, "maxRanks": 1, "type": "active", "name": "Goremaw's Bite", "spellId": 426591, "icon": "inv_knife_1h_artifactfangs_d_01", "index": 100}]}, {"id": 90719, "name": "Dark Brew", "type": "single", "posX": 13500, "posY": 6900, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90720], "entries": [{"id": 112607, "definitionId": 117612, "maxRanks": 1, "type": "passive", "name": "Dark Brew", "spellId": 382504, "icon": "spell_nature_slowpoison", "index": 100}]}], "heroNodes": [{"id": 95136, "name": "Deathstalker's Mark", "type": "single", "posX": 7800, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 53, "next": [95110, 95132, 95117], "prev": [], "entries": [{"id": 117733, "definitionId": 122745, "maxRanks": 1, "type": "passive", "name": "Deathstalker's Mark", "spellId": 457052, "icon": "inv_ability_deathstalkerrogue_deathstalkersmark", "index": 100}], "freeNode": true}, {"id": 95110, "name": "Clear the Witnesses", "type": "single", "posX": 7200, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95135], "prev": [95136], "entries": [{"id": 117707, "definitionId": 122719, "maxRanks": 1, "type": "passive", "name": "Clear the Witnesses", "spellId": 457053, "icon": "ability_rogue_fanofknives", "index": 100}]}, {"id": 95132, "name": "Hunt Them Down", "type": "single", "posX": 7800, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95108], "prev": [95136], "entries": [{"id": 117729, "definitionId": 122741, "maxRanks": 1, "type": "passive", "name": "Hunt Them Down", "spellId": 457054, "icon": "ability_rogue_creepingvenom", "index": 100}]}, {"id": 95117, "name": "Singular Focus", "type": "single", "posX": 8400, "posY": 1800, "maxRanks": 1, "subTreeId": 53, "next": [95109], "prev": [95136], "entries": [{"id": 117714, "definitionId": 122726, "maxRanks": 1, "type": "passive", "name": "Singular Focus", "spellId": 457055, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 95135, "name": "Fatal Intent", "type": "single", "posX": 7200, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95106], "prev": [95110], "entries": [{"id": 117732, "definitionId": 122744, "maxRanks": 1, "type": "passive", "name": "Fatal Intent", "spellId": 461980, "icon": "ability_warrior_deepcuts", "index": 100}]}, {"id": 95108, "name": "Corrupt the Blood", "type": "single", "posX": 7800, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95131], "prev": [95132], "entries": [{"id": 117705, "definitionId": 122717, "maxRanks": 1, "type": "passive", "name": "Corrupt the Blood", "spellId": 457066, "icon": "ability_ironmaidens_bloodritual", "index": 100}]}, {"id": 95109, "name": "Lingering Darkness / Symbolic Victory", "type": "choice", "posX": 8400, "posY": 2400, "maxRanks": 1, "subTreeId": 53, "next": [95123], "prev": [95117], "entries": [{"id": 117706, "definitionId": 122718, "maxRanks": 1, "type": "passive", "name": "Lingering Darkness", "spellId": 457056, "icon": "ability_rogue_envelopingshadows", "index": 100}, {"id": 126030, "definitionId": 130862, "maxRanks": 1, "type": "passive", "name": "Symbolic Victory", "spellId": 457062, "icon": "ability_priest_surgeofdarkness", "index": 200}]}, {"id": 95106, "name": "Ethereal Cloak / Bait and Switch", "type": "choice", "posX": 7200, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95135], "entries": [{"id": 117703, "definitionId": 122715, "maxRanks": 1, "type": "passive", "name": "Ethereal Cloak", "spellId": 457022, "icon": "spell_arcane_prismaticcloak", "index": 100}, {"id": 126029, "definitionId": 130861, "maxRanks": 1, "type": "passive", "name": "Bait and Switch", "spellId": 457034, "icon": "ability_druid_earthandsky", "index": 200}]}, {"id": 95131, "name": "Momentum of Despair / Follow the Blood", "type": "choice", "posX": 7800, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95108], "entries": [{"id": 117728, "definitionId": 122740, "maxRanks": 1, "type": "passive", "name": "Momentum of Despair", "spellId": 457067, "icon": "spell_shadow_shadesofdarkness", "index": 100}, {"id": 126028, "definitionId": 130860, "maxRanks": 1, "type": "passive", "name": "Follow the Blood", "spellId": 457068, "icon": "sha_ability_rogue_bloodyeye_nightmare", "index": 200}]}, {"id": 95123, "name": "Shadewalker / Shroud of Night", "type": "choice", "posX": 8400, "posY": 3000, "maxRanks": 1, "subTreeId": 53, "next": [95142], "prev": [95109], "entries": [{"id": 117720, "definitionId": 122732, "maxRanks": 1, "type": "passive", "name": "Shadewalker", "spellId": 457057, "icon": "rogue_shadow_reflection", "index": 100}, {"id": 126027, "definitionId": 130859, "maxRanks": 1, "type": "passive", "name": "Shroud of Night", "spellId": 457063, "icon": "spell_holy_elunesgrace", "index": 200}]}, {"id": 95142, "name": "Darkest Night", "type": "single", "posX": 7800, "posY": 3600, "maxRanks": 1, "subTreeId": 53, "next": [], "prev": [95131, 95106, 95123], "entries": [{"id": 117739, "definitionId": 122751, "maxRanks": 1, "type": "passive", "name": "Darkest Night", "spellId": 457058, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 95140, "name": "Unseen Blade", "type": "single", "posX": 7800, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 51, "next": [95141, 95111, 95121], "prev": [], "entries": [{"id": 117737, "definitionId": 122749, "maxRanks": 1, "type": "passive", "name": "Unseen Blade", "spellId": 441146, "icon": "inv_weapon_shortblade_55", "index": 100}], "freeNode": true}, {"id": 95121, "name": "Surprising Strikes", "type": "single", "posX": 7200, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95134], "prev": [95140], "entries": [{"id": 117718, "definitionId": 122730, "maxRanks": 1, "type": "passive", "name": "Surprising Strikes", "spellId": 441273, "icon": "ability_rogue_surpriseattack2", "index": 100}]}, {"id": 95141, "name": "Smoke / Mirrors", "type": "choice", "posX": 7800, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95133], "prev": [95140], "entries": [{"id": 117738, "definitionId": 122750, "maxRanks": 1, "type": "passive", "name": "Smoke", "spellId": 441247, "icon": "rogue_dirtytricks", "index": 100}, {"id": 120130, "definitionId": 125030, "maxRanks": 1, "type": "passive", "name": "Mirrors", "spellId": 441250, "icon": "trade_archaeology_highbornesoulmirror", "index": 200}]}, {"id": 95111, "name": "Flawless Form", "type": "single", "posX": 8400, "posY": 4800, "maxRanks": 1, "subTreeId": 51, "next": [95137], "prev": [95140], "entries": [{"id": 117708, "definitionId": 122720, "maxRanks": 1, "type": "passive", "name": "Flawless Form", "spellId": 441321, "icon": "inv_qiraj_jewelblessed", "index": 100}]}, {"id": 95134, "name": "So Tricky / Don't Be Suspicious", "type": "choice", "posX": 7200, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95118], "prev": [95121], "entries": [{"id": 117731, "definitionId": 122743, "maxRanks": 1, "type": "passive", "name": "So Tricky", "spellId": 441403, "icon": "ability_rogue_tricksofthetrade", "index": 100}, {"id": 120133, "definitionId": 125033, "maxRanks": 1, "type": "passive", "name": "Don't Be Suspicious", "spellId": 441415, "icon": "ability_rogue_disguise", "index": 200}]}, {"id": 95133, "name": "Devious Distractions", "type": "single", "posX": 7800, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95116], "prev": [95141], "entries": [{"id": 117730, "definitionId": 122742, "maxRanks": 1, "type": "passive", "name": "Devious Distractions", "spellId": 441263, "icon": "ability_rogue_ghostpirate", "index": 100}]}, {"id": 95137, "name": "Thousand Cuts / Flickerstrike", "type": "choice", "posX": 8400, "posY": 5400, "maxRanks": 1, "subTreeId": 51, "next": [95128], "prev": [95111], "entries": [{"id": 117734, "definitionId": 122746, "maxRanks": 1, "type": "passive", "name": "Thousand Cuts", "spellId": 441346, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}, {"id": 120131, "definitionId": 125031, "maxRanks": 1, "type": "passive", "name": "Flickerstrike", "spellId": 441359, "icon": "spell_nature_invisibilty", "index": 200}]}, {"id": 95118, "name": "Disorienting Strikes", "type": "single", "posX": 7200, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "requiresNode": 90715, "next": [95115], "prev": [95134], "entries": [{"id": 117715, "definitionId": 122727, "maxRanks": 1, "type": "passive", "name": "Disorienting Strikes", "spellId": 441274, "icon": "petbattle_speed", "index": 100}]}, {"id": 95116, "name": "Cloud Cover / No Scruples", "type": "choice", "posX": 7800, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95133], "entries": [{"id": 117713, "definitionId": 122725, "maxRanks": 1, "type": "passive", "name": "Cloud Cover", "spellId": 441429, "icon": "ability_rogue_smoke", "index": 100}, {"id": 120132, "definitionId": 125032, "maxRanks": 1, "type": "passive", "name": "No Scruples", "spellId": 441398, "icon": "ability_rogue_surpriseattack", "index": 200}]}, {"id": 95128, "name": "Nimble Flurry", "type": "single", "posX": 8400, "posY": 6000, "maxRanks": 1, "subTreeId": 51, "next": [95115], "prev": [95137], "entries": [{"id": 117725, "definitionId": 122737, "maxRanks": 1, "type": "passive", "name": "Nimble Flurry", "spellId": 441367, "icon": "ability_rogue_bladetwisting", "index": 100}]}, {"id": 95115, "name": "Coup de Grace", "type": "single", "posX": 7800, "posY": 6600, "maxRanks": 1, "subTreeId": 51, "next": [], "prev": [95116, 95118, 95128], "entries": [{"id": 117712, "definitionId": 122724, "maxRanks": 1, "type": "passive", "name": "Coup de Grace", "spellId": 441423, "icon": "inv_ability_tricksterrogue_coupdegrace", "index": 100}]}], "subTreeNodes": [{"id": 99842, "name": "Deathstalker / Trickster", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123373, "type": "subtree", "name": "Deathstalker", "traitSubTreeId": 53, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-deathstalker", "nodes": [95136, 95110, 95132, 95117, 95135, 95108, 95109, 95106, 95131, 95123, 95142]}, {"id": 123370, "type": "subtree", "name": "Trickster", "traitSubTreeId": 51, "traitTreeId": 852, "atlasMemberName": "talents-heroclass-rogue-trickster", "nodes": [95140, 95121, 95141, 95111, 95134, 95133, 95137, 95118, 95116, 95128, 95115]}]}], "fullNodeOrder": [90621, 90622, 90623, 90624, 90625, 90626, 90628, 90630, 90632, 90633, 90634, 90635, 90636, 90637, 90638, 90639, 90640, 90641, 90642, 90643, 90644, 90645, 90646, 90647, 90648, 90649, 90651, 90652, 90653, 90654, 90655, 90656, 90659, 90660, 90661, 90662, 90663, 90664, 90665, 90666, 90667, 90668, 90669, 90670, 90671, 90672, 90673, 90675, 90676, 90677, 90678, 90679, 90680, 90681, 90683, 90684, 90686, 90687, 90688, 90690, 90691, 90692, 90695, 90697, 90698, 90699, 90700, 90701, 90703, 90704, 90705, 90706, 90707, 90709, 90710, 90711, 90713, 90714, 90715, 90716, 90717, 90718, 90719, 90720, 90721, 90722, 90723, 90724, 90725, 90726, 90727, 90728, 90730, 90731, 90732, 90733, 90734, 90735, 90736, 90737, 90738, 90739, 90740, 90741, 90742, 90743, 90744, 90745, 90746, 90747, 90748, 90749, 90750, 90751, 90752, 90753, 90754, 90755, 90756, 90757, 90758, 90759, 90760, 90762, 90763, 90764, 90766, 90767, 90768, 90769, 90770, 90771, 90772, 90774, 90775, 90776, 90777, 90779, 90780, 90783, 90784, 90785, 90786, 94536, 94551, 94552, 94553, 94554, 94555, 94556, 94557, 94561, 94562, 94563, 94565, 94566, 94567, 94580, 94581, 94582, 95106, 95107, 95108, 95109, 95110, 95111, 95114, 95115, 95116, 95117, 95118, 95119, 95120, 95121, 95122, 95123, 95125, 95127, 95128, 95129, 95130, 95131, 95132, 95133, 95134, 95135, 95136, 95137, 95138, 95139, 95140, 95141, 95142, 99842, 99843, 99844, 101713, 101714, 101715]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/shaman_elemental.json b/simc_support/game_data/data_files/trees/shaman_elemental.json index b1944e4..1ac61e8 100644 --- a/simc_support/game_data/data_files/trees/shaman_elemental.json +++ b/simc_support/game_data/data_files/trees/shaman_elemental.json @@ -1 +1 @@ -{"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Elemental", "specId": 262, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}]}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}], "freeNode": true}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}]}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}], "freeNode": true}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 103608], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost-orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 103608], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [103608, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 103608, "name": "Cleanse Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103590, 103617, 103605], "entries": [{"id": 127884, "definitionId": 132693, "maxRanks": 1, "type": "active", "name": "Cleanse Spirit", "spellId": 51886, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103608, 103593, 103601], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 80984, "name": "Earth Shock / Elemental Blast", "type": "choice", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [80985, 80983, 80981], "prev": [], "entries": [{"id": 101854, "definitionId": 106811, "maxRanks": 1, "type": "active", "name": "Earth Shock", "spellId": 8042, "icon": "spell_nature_earthshock", "index": 100}, {"id": 127924, "definitionId": 132733, "maxRanks": 1, "type": "active", "name": "Elemental Blast", "spellId": 117014, "icon": "shaman_talent_elementalblast", "index": 200}]}, {"id": 80985, "name": "Earthquake / Earthquake", "type": "choice", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [80990], "prev": [80984], "entries": [{"id": 101855, "definitionId": 106814, "maxRanks": 1, "type": "active", "name": "Earthquake", "spellId": 462620, "icon": "spell_shaman_earthquake", "index": 100}, {"id": 127925, "definitionId": 132734, "maxRanks": 1, "type": "active", "name": "Earthquake", "spellId": 61882, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 80983, "name": "Elemental Fury", "type": "single", "posX": 12600, "posY": 1800, "maxRanks": 1, "next": [81000], "prev": [80984], "entries": [{"id": 101853, "definitionId": 106810, "maxRanks": 1, "type": "passive", "name": "Elemental Fury", "spellId": 60188, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 80981, "name": "Fire Elemental / Storm Elemental", "type": "choice", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [80999], "prev": [80984], "entries": [{"id": 101850, "definitionId": 106837, "maxRanks": 1, "type": "active", "name": "Fire Elemental", "spellId": 198067, "icon": "spell_fire_elemental_totem", "index": 100}, {"id": 101849, "definitionId": 106836, "maxRanks": 1, "type": "active", "name": "Storm Elemental", "spellId": 192249, "icon": "inv_stormelemental", "index": 200}]}, {"id": 80990, "name": "Flash of Lightning", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [80997, 103635], "prev": [80985], "entries": [{"id": 101861, "definitionId": 106843, "maxRanks": 1, "type": "passive", "name": "Flash of Lightning", "spellId": 381936, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 81000, "name": "Aftershock / Surge of Power", "type": "choice", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [80988], "prev": [80983], "entries": [{"id": 101874, "definitionId": 106831, "maxRanks": 1, "type": "passive", "name": "Aftershock", "spellId": 273221, "icon": "spell_nature_stormreach", "index": 100}, {"id": 101873, "definitionId": 106830, "maxRanks": 1, "type": "passive", "name": "Surge of Power", "spellId": 262303, "icon": "spell_nature_shamanrage", "index": 200}]}, {"id": 80999, "name": "Echo of the Elements", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [81004], "prev": [80981], "entries": [{"id": 101872, "definitionId": 106832, "maxRanks": 1, "type": "passive", "name": "Echo of the Elements", "spellId": 333919, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 80997, "name": "Icefury", "type": "single", "posX": 10800, "posY": 3000, "maxRanks": 1, "next": [103638], "prev": [80990], "entries": [{"id": 101870, "definitionId": 106817, "maxRanks": 1, "type": "passive", "name": "Icefury", "spellId": 462816, "icon": "spell_frost_iceshard", "index": 100}]}, {"id": 80988, "name": "Unrelenting Calamity", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [81016, 103639, 80998], "prev": [81000], "entries": [{"id": 101859, "definitionId": 106819, "maxRanks": 1, "type": "passive", "name": "Unrelenting Calamity", "spellId": 382685, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 81004, "name": "Master of the Elements", "type": "single", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [103630], "prev": [80999], "entries": [{"id": 101879, "definitionId": 106829, "maxRanks": 1, "type": "passive", "name": "Master of the Elements", "spellId": 16166, "icon": "spell_nature_elementalabsorption", "index": 100}]}, {"id": 103638, "name": "Fusion of Elements", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80996], "prev": [80997], "entries": [{"id": 127919, "definitionId": 132728, "maxRanks": 1, "type": "passive", "name": "Fusion of Elements", "spellId": 462840, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}, {"id": 103635, "name": "Storm Frenzy", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80996, 103631], "prev": [80990], "entries": [{"id": 127917, "definitionId": 132726, "maxRanks": 1, "type": "passive", "name": "Storm Frenzy", "spellId": 462695, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 81016, "name": "Swelling Maelstrom", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103631, 81015], "prev": [80988], "entries": [{"id": 101893, "definitionId": 106815, "maxRanks": 1, "type": "passive", "name": "Swelling Maelstrom", "spellId": 381707, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 103639, "name": "Primordial Fury", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81015, 81009], "prev": [80988], "entries": [{"id": 127920, "definitionId": 132729, "maxRanks": 1, "type": "passive", "name": "Primordial Fury", "spellId": 378193, "icon": "inv_10_elementalshardfoozles_primordial", "index": 100}]}, {"id": 80998, "name": "Flow of Power", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81009, 103633], "prev": [80988], "entries": [{"id": 101871, "definitionId": 106816, "maxRanks": 1, "type": "passive", "name": "Flow of Power", "spellId": 385923, "icon": "spell_shaman_shockinglava", "index": 100}]}, {"id": 103630, "name": "Elemental Unity", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103633, 81010], "prev": [81004], "entries": [{"id": 127912, "definitionId": 132721, "maxRanks": 1, "type": "passive", "name": "Elemental Unity", "spellId": 462866, "icon": "inv_10_elementalspiritfoozles_air", "index": 100}]}, {"id": 80996, "name": "Flux Melting", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80995, 80993], "prev": [103635, 103638], "entries": [{"id": 101869, "definitionId": 106823, "maxRanks": 1, "type": "passive", "name": "Flux Melting", "spellId": 381776, "icon": "spell_frostfire-orb", "index": 100}]}, {"id": 103631, "name": "Lightning Conduit", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80995, 103636], "prev": [103635, 81016], "entries": [{"id": 127913, "definitionId": 132722, "maxRanks": 1, "type": "passive", "name": "Lightning Conduit", "spellId": 462862, "icon": "spell_nature_lightningshield", "index": 100}]}, {"id": 81015, "name": "Power of the Maelstrom", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103636, 81013, 81005], "prev": [103639, 81016], "entries": [{"id": 101892, "definitionId": 106824, "maxRanks": 1, "type": "passive", "name": "Power of the Maelstrom", "spellId": 191861, "icon": "spell_fire_masterofelements", "index": 100}]}, {"id": 81009, "name": "Improved Flametongue Weapon", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81005, 103634], "prev": [80998, 103639], "entries": [{"id": 101886, "definitionId": 106853, "maxRanks": 1, "type": "passive", "name": "Improved Flametongue Weapon", "spellId": 382027, "icon": "spell_fire_flametounge", "index": 100}]}, {"id": 103633, "name": "Everlasting Elements", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103634], "prev": [80998, 103630], "entries": [{"id": 127915, "definitionId": 132724, "maxRanks": 1, "type": "passive", "name": "Everlasting Elements", "spellId": 462867, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 81010, "name": "Flames of the Cauldron", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103634, 81014], "prev": [103630], "entries": [{"id": 101887, "definitionId": 106854, "maxRanks": 1, "type": "passive", "name": "Flames of the Cauldron", "spellId": 378266, "icon": "inv_misc_cauldron_fire", "index": 100}]}, {"id": 80995, "name": "Eye of the Storm", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80993, 81003], "prev": [103631, 80996], "entries": [{"id": 101867, "definitionId": 106821, "maxRanks": 1, "type": "passive", "name": "Eye of the Storm", "spellId": 381708, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 103636, "name": "Thunderstrike Ward", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81003], "prev": [81015, 103631], "entries": [{"id": 127918, "definitionId": 132727, "maxRanks": 1, "type": "active", "name": "Thunderstrike Ward", "spellId": 462757, "icon": "inv_armorkit_lightning_imbued", "index": 100}]}, {"id": 81013, "name": "Echo Chamber", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81003, 80989, 81008], "prev": [81015], "entries": [{"id": 101890, "definitionId": 106839, "maxRanks": 1, "type": "passive", "name": "Echo Chamber", "spellId": 382032, "icon": "spell_nature_lightningoverload", "index": 100}]}, {"id": 81005, "name": "Searing Flames", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81008], "prev": [81009, 81015], "entries": [{"id": 101880, "definitionId": 106847, "maxRanks": 1, "type": "passive", "name": "Searing Flames", "spellId": 381782, "icon": "inv_offhand_1h_artifactdoomhammer_d_01", "index": 100}]}, {"id": 103634, "name": "Earthen Rage", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81008, 81014], "prev": [81009, 103633, 81010], "entries": [{"id": 127916, "definitionId": 132725, "maxRanks": 1, "type": "passive", "name": "Earthen Rage", "spellId": 170374, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 80993, "name": "Elemental Equilibrium", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81012], "prev": [80995, 80996], "entries": [{"id": 101865, "definitionId": 106841, "maxRanks": 1, "type": "passive", "name": "Elemental Equilibrium", "spellId": 378271, "icon": "ability_shaman_ascendance", "index": 100}]}, {"id": 81003, "name": "Ascendance", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81012, 81002], "prev": [103636, 81013, 80995], "entries": [{"id": 101877, "definitionId": 106827, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114050, "icon": "spell_fire_elementaldevastation", "index": 300}]}, {"id": 80989, "name": "Stormkeeper", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103640, 81006], "prev": [81013], "entries": [{"id": 101860, "definitionId": 106820, "maxRanks": 1, "type": "active", "name": "Stormkeeper", "spellId": 392714, "visibleSpellId": 191634, "icon": "ability_thunderking_lightningwhip", "index": 100}]}, {"id": 81008, "name": "Echo of the Elementals", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81006, 81007], "prev": [81013, 103634, 81005], "entries": [{"id": 101885, "definitionId": 106852, "maxRanks": 1, "type": "passive", "name": "Echo of the Elementals", "spellId": 462864, "icon": "inv_10_elementalspiritfoozles_fire", "index": 200}]}, {"id": 81014, "name": "Primordial Wave", "type": "single", "posX": 14400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81007, 80978], "prev": [81010, 103634], "entries": [{"id": 101891, "definitionId": 106840, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 375982, "icon": "ability_maldraxxus_shaman", "index": 100}]}, {"id": 81012, "name": "Mountains Will Fall", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80991, 103641], "prev": [81003, 80993], "entries": [{"id": 101889, "definitionId": 106838, "maxRanks": 1, "type": "passive", "name": "Mountains Will Fall", "spellId": 381726, "icon": "inv_elementalearth2", "index": 100}]}, {"id": 81002, "name": "First Ascendant / Preeminence", "type": "choice", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103641], "prev": [81003], "entries": [{"id": 101876, "definitionId": 106826, "maxRanks": 1, "type": "passive", "name": "First Ascendant", "spellId": 462440, "icon": "spell_shaman_astralshift", "index": 100}, {"id": 127923, "definitionId": 132732, "maxRanks": 1, "type": "passive", "name": "Preeminence", "spellId": 462443, "icon": "spell_shaman_improvedreincarnation", "index": 200}]}, {"id": 103640, "name": "Fury of the Storms", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103641, 80992, 103632], "prev": [80989], "entries": [{"id": 127921, "definitionId": 132730, "maxRanks": 1, "type": "passive", "name": "Fury of the Storms", "spellId": 191717, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 81006, "name": "Skybreaker's Fiery Demise", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103632], "prev": [81008, 80989], "entries": [{"id": 101881, "definitionId": 106848, "maxRanks": 1, "type": "passive", "name": "Skybreaker's Fiery Demise", "spellId": 378310, "icon": "spell_fire_elemental_totem", "index": 300}]}, {"id": 81007, "name": "Magma Chamber", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103632, 103637], "prev": [81008, 81014], "entries": [{"id": 101883, "definitionId": 106850, "maxRanks": 1, "type": "passive", "name": "Magma Chamber", "spellId": 381932, "icon": "ability_rhyolith_magmaflow_whole", "index": 100}]}, {"id": 80978, "name": "Splintered Elements", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103637], "prev": [81014], "entries": [{"id": 101844, "definitionId": 106856, "maxRanks": 1, "type": "passive", "name": "Splintered Elements", "spellId": 382042, "icon": "spell_nature_elementalprecision_1", "index": 300}]}, {"id": 80991, "name": "Echoes of Great Sundering", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81012], "entries": [{"id": 101862, "definitionId": 106844, "maxRanks": 1, "type": "passive", "name": "Echoes of Great Sundering", "spellId": 384087, "icon": "spell_shaman_earthquake", "index": 100}]}, {"id": 103641, "name": "Deeply Rooted Elements", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81002, 103640, 81012], "entries": [{"id": 127922, "definitionId": 132731, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 300}]}, {"id": 80992, "name": "Lightning Rod", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103640], "entries": [{"id": 101864, "definitionId": 106846, "maxRanks": 1, "type": "passive", "name": "Lightning Rod", "spellId": 210689, "icon": "inv_rod_enchantedcobalt", "index": 100}]}, {"id": 103632, "name": "Primal Elementalist", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81007, 81006, 103640], "entries": [{"id": 127914, "definitionId": 132723, "maxRanks": 1, "type": "passive", "name": "Primal Elementalist", "spellId": 117013, "icon": "shaman_talent_primalelementalist", "index": 100}]}, {"id": 103637, "name": "Liquid Magma Totem", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81007, 80978], "entries": [{"id": 101884, "definitionId": 106851, "maxRanks": 1, "type": "active", "name": "Liquid Magma Totem", "spellId": 192222, "icon": "spell_shaman_spewlava", "index": 100}]}], "heroNodes": [{"id": 94888, "name": "Call of the Ancestors", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 56, "requiresNode": 81037, "next": [94862, 94869, 94884], "prev": [], "entries": [{"id": 117485, "definitionId": 122497, "maxRanks": 1, "type": "passive", "name": "Call of the Ancestors", "spellId": 443450, "icon": "ability_racial_ancestralcall", "index": 100}], "freeNode": true}, {"id": 94862, "name": "Latent Wisdom / Ancient Fellowship", "type": "choice", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94887], "prev": [94888], "entries": [{"id": 117459, "definitionId": 122471, "maxRanks": 1, "type": "passive", "name": "Latent Wisdom", "spellId": 443449, "icon": "spell_holy_spiritualguidence", "index": 100}, {"id": 123632, "definitionId": 128470, "maxRanks": 1, "type": "passive", "name": "Ancient Fellowship", "spellId": 443423, "icon": "spell_shaman_astralshift", "index": 200}]}, {"id": 94884, "name": "Heed My Call / Routine Communication", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94860], "prev": [94888], "entries": [{"id": 117481, "definitionId": 122493, "maxRanks": 1, "type": "passive", "name": "Heed My Call", "spellId": 443444, "icon": "spell_unused2", "index": 100}, {"id": 123630, "definitionId": 128468, "maxRanks": 1, "type": "passive", "name": "Routine Communication", "spellId": 443445, "icon": "spell_nature_undyingstrength", "index": 200}]}, {"id": 94869, "name": "Elemental Reverb", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94861], "prev": [94888], "entries": [{"id": 117466, "definitionId": 122478, "maxRanks": 1, "type": "passive", "name": "Elemental Reverb", "spellId": 443418, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 94887, "name": "Offering from Beyond", "type": "single", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94858], "prev": [94862], "entries": [{"id": 117484, "definitionId": 122496, "maxRanks": 1, "type": "passive", "name": "Offering from Beyond", "spellId": 443451, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 94860, "name": "Primordial Capacity", "type": "single", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94883], "prev": [94884], "entries": [{"id": 117457, "definitionId": 122469, "maxRanks": 1, "type": "passive", "name": "Primordial Capacity", "spellId": 443448, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 94861, "name": "Spiritwalker's Momentum", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94875], "prev": [94869], "entries": [{"id": 117458, "definitionId": 122470, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Momentum", "spellId": 443425, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 94858, "name": "Natural Harmony / Earthen Communion", "type": "choice", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94887], "entries": [{"id": 117455, "definitionId": 122467, "maxRanks": 1, "type": "passive", "name": "Natural Harmony", "spellId": 443442, "icon": "spell_nature_natureguardian", "index": 100}, {"id": 123631, "definitionId": 128469, "maxRanks": 1, "type": "passive", "name": "Earthen Communion", "spellId": 443441, "icon": "spell_nature_skinofearth", "index": 200}]}, {"id": 94883, "name": "Maelstrom Supremacy", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94860], "entries": [{"id": 117480, "definitionId": 122492, "maxRanks": 1, "type": "passive", "name": "Maelstrom Supremacy", "spellId": 443447, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 94875, "name": "Final Calling", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94861], "entries": [{"id": 117472, "definitionId": 122484, "maxRanks": 1, "type": "passive", "name": "Final Calling", "spellId": 443446, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 94894, "name": "Ancestral Swiftness", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 56, "next": [], "prev": [94883, 94858, 94875], "entries": [{"id": 117491, "definitionId": 122503, "maxRanks": 1, "type": "active", "name": "Ancestral Swiftness", "spellId": 448861, "visibleSpellId": 443454, "icon": "inv_ability_farseershaman_ancestralswiftness", "index": 100}]}, {"id": 94892, "name": "Tempest", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 55, "next": [94886, 94893, 94863], "prev": [], "entries": [{"id": 117489, "definitionId": 122501, "maxRanks": 1, "type": "passive", "name": "Tempest", "spellId": 454009, "icon": "inv_ability_stormcallershaman_tempest", "index": 100}], "freeNode": true}, {"id": 94886, "name": "Unlimited Power", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94873], "prev": [94892], "entries": [{"id": 117483, "definitionId": 122495, "maxRanks": 1, "type": "passive", "name": "Unlimited Power", "spellId": 454391, "icon": "spell_nature_purge", "index": 100}]}, {"id": 94893, "name": "Stormcaller", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94885], "prev": [94892], "entries": [{"id": 117490, "definitionId": 122502, "maxRanks": 1, "type": "passive", "name": "Stormcaller", "spellId": 454021, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94863, "name": "Shocking Grasp", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94889], "prev": [94892], "entries": [{"id": 117460, "definitionId": 122472, "maxRanks": 1, "type": "passive", "name": "Shocking Grasp", "spellId": 454022, "icon": "spell_shaman_crashlightning", "index": 100}]}, {"id": 94873, "name": "Supercharge", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94870], "prev": [94886], "entries": [{"id": 117470, "definitionId": 122482, "maxRanks": 1, "type": "passive", "name": "Supercharge", "spellId": 455110, "icon": "inv_misc_stormlordsfavor", "index": 100}]}, {"id": 94885, "name": "Storm Swell / Arc Discharge", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94868], "prev": [94893], "entries": [{"id": 117482, "definitionId": 122494, "maxRanks": 1, "type": "passive", "name": "Storm Swell", "spellId": 455088, "icon": "spell_nature_unrelentingstorm", "index": 100}, {"id": 125616, "definitionId": 130448, "maxRanks": 1, "type": "passive", "name": "Arc Discharge", "spellId": 455096, "icon": "ability_thunderking_balllightning", "index": 200}]}, {"id": 94889, "name": "Rolling Thunder", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94880], "prev": [94863], "entries": [{"id": 117486, "definitionId": 122498, "maxRanks": 1, "type": "passive", "name": "Rolling Thunder", "spellId": 454026, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 94870, "name": "Voltaic Surge", "type": "single", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94873], "entries": [{"id": 117467, "definitionId": 122479, "maxRanks": 1, "type": "passive", "name": "Voltaic Surge", "spellId": 454919, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 94868, "name": "Conductive Energy", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94885], "entries": [{"id": 117465, "definitionId": 122477, "maxRanks": 1, "type": "passive", "name": "Conductive Energy", "spellId": 455123, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 94880, "name": "Nature's Protection / Surging Currents", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94889], "entries": [{"id": 117477, "definitionId": 122489, "maxRanks": 1, "type": "passive", "name": "Nature's Protection", "spellId": 454027, "icon": "spell_nature_lightningshield", "index": 100}, {"id": 125617, "definitionId": 130449, "maxRanks": 1, "type": "passive", "name": "Surging Currents", "spellId": 454372, "icon": "spell_nature_stormreach", "index": 200}]}, {"id": 94867, "name": "Awakening Storms", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 55, "next": [], "prev": [94868, 94870, 94880], "entries": [{"id": 117464, "definitionId": 122476, "maxRanks": 1, "type": "passive", "name": "Awakening Storms", "spellId": 455129, "icon": "spell_nature_stormreach", "index": 100}]}], "subTreeNodes": [{"id": 99845, "name": "Farseer / Stormbringer", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123377, "type": "subtree", "name": "Farseer", "traitSubTreeId": 56, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-farseer", "nodes": [94888, 94862, 94884, 94869, 94887, 94860, 94861, 94858, 94883, 94875, 94894]}, {"id": 123376, "type": "subtree", "name": "Stormbringer", "traitSubTreeId": 55, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-stormbringer", "nodes": [94892, 94886, 94893, 94863, 94873, 94885, 94889, 94870, 94868, 94880, 94867]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810]} \ No newline at end of file +{"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Elemental", "specId": 262, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}]}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}], "freeNode": true}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}]}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}], "freeNode": true}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 103608], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost-orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 103608], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [103608, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 103608, "name": "Cleanse Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103590, 103617, 103605], "entries": [{"id": 127884, "definitionId": 132693, "maxRanks": 1, "type": "active", "name": "Cleanse Spirit", "spellId": 51886, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103608, 103593, 103601], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 80984, "name": "Earth Shock / Elemental Blast", "type": "choice", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [80985, 80983, 80981], "prev": [], "entries": [{"id": 101854, "definitionId": 106811, "maxRanks": 1, "type": "active", "name": "Earth Shock", "spellId": 8042, "icon": "spell_nature_earthshock", "index": 100}, {"id": 127924, "definitionId": 132733, "maxRanks": 1, "type": "active", "name": "Elemental Blast", "spellId": 117014, "icon": "shaman_talent_elementalblast", "index": 200}]}, {"id": 80985, "name": "Earthquake / Earthquake", "type": "choice", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [80990], "prev": [80984], "entries": [{"id": 101855, "definitionId": 106814, "maxRanks": 1, "type": "active", "name": "Earthquake", "spellId": 462620, "icon": "spell_shaman_earthquake", "index": 100}, {"id": 127925, "definitionId": 132734, "maxRanks": 1, "type": "active", "name": "Earthquake", "spellId": 61882, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 80983, "name": "Elemental Fury", "type": "single", "posX": 12600, "posY": 1800, "maxRanks": 1, "next": [81000], "prev": [80984], "entries": [{"id": 101853, "definitionId": 106810, "maxRanks": 1, "type": "passive", "name": "Elemental Fury", "spellId": 60188, "icon": "spell_fire_volcano", "index": 100}]}, {"id": 80981, "name": "Fire Elemental / Storm Elemental", "type": "choice", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [80999], "prev": [80984], "entries": [{"id": 101850, "definitionId": 106837, "maxRanks": 1, "type": "active", "name": "Fire Elemental", "spellId": 198067, "icon": "spell_fire_elemental_totem", "index": 100}, {"id": 101849, "definitionId": 106836, "maxRanks": 1, "type": "active", "name": "Storm Elemental", "spellId": 192249, "icon": "inv_stormelemental", "index": 200}]}, {"id": 80990, "name": "Flash of Lightning", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [80997, 103635], "prev": [80985], "entries": [{"id": 101861, "definitionId": 106843, "maxRanks": 1, "type": "passive", "name": "Flash of Lightning", "spellId": 381936, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 81000, "name": "Aftershock / Surge of Power", "type": "choice", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [80988], "prev": [80983], "entries": [{"id": 101874, "definitionId": 106831, "maxRanks": 1, "type": "passive", "name": "Aftershock", "spellId": 273221, "icon": "spell_nature_stormreach", "index": 100}, {"id": 101873, "definitionId": 106830, "maxRanks": 1, "type": "passive", "name": "Surge of Power", "spellId": 262303, "icon": "spell_nature_shamanrage", "index": 200}]}, {"id": 80999, "name": "Echo of the Elements", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [81004], "prev": [80981], "entries": [{"id": 101872, "definitionId": 106832, "maxRanks": 1, "type": "passive", "name": "Echo of the Elements", "spellId": 333919, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 80997, "name": "Icefury", "type": "single", "posX": 10800, "posY": 3000, "maxRanks": 1, "next": [103638], "prev": [80990], "entries": [{"id": 101870, "definitionId": 106817, "maxRanks": 1, "type": "passive", "name": "Icefury", "spellId": 462816, "icon": "spell_frost_iceshard", "index": 100}]}, {"id": 80988, "name": "Stormkeeper", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [81016, 103639, 80998], "prev": [81000], "entries": [{"id": 101859, "definitionId": 106819, "maxRanks": 1, "type": "active", "name": "Stormkeeper", "spellId": 191634, "icon": "ability_thunderking_lightningwhip", "index": 100}]}, {"id": 81004, "name": "Master of the Elements", "type": "single", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [103630], "prev": [80999], "entries": [{"id": 101879, "definitionId": 106829, "maxRanks": 1, "type": "passive", "name": "Master of the Elements", "spellId": 16166, "icon": "spell_nature_elementalabsorption", "index": 100}]}, {"id": 103638, "name": "Fusion of Elements", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80996], "prev": [80997], "entries": [{"id": 127919, "definitionId": 132728, "maxRanks": 1, "type": "passive", "name": "Fusion of Elements", "spellId": 462840, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}, {"id": 103635, "name": "Storm Frenzy", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80996, 103631, 80995], "prev": [80990], "entries": [{"id": 127917, "definitionId": 132726, "maxRanks": 1, "type": "passive", "name": "Storm Frenzy", "spellId": 462695, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 81016, "name": "Swelling Maelstrom", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103631], "prev": [80988], "entries": [{"id": 101893, "definitionId": 106815, "maxRanks": 1, "type": "passive", "name": "Swelling Maelstrom", "spellId": 381707, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 103639, "name": "Primordial Fury", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103631, 81015, 81009], "prev": [80988], "entries": [{"id": 127920, "definitionId": 132729, "maxRanks": 1, "type": "passive", "name": "Primordial Fury", "spellId": 378193, "icon": "inv_10_elementalshardfoozles_primordial", "index": 100}]}, {"id": 80998, "name": "Fury of the Storms / Herald of the Storms", "type": "choice", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81009, 103633], "prev": [80988], "entries": [{"id": 101871, "definitionId": 106816, "maxRanks": 1, "type": "passive", "name": "Fury of the Storms", "spellId": 191717, "icon": "ability_thunderking_overcharge", "index": 100}, {"id": 128223, "definitionId": 133030, "maxRanks": 1, "type": "passive", "name": "Herald of the Storms", "spellId": 468571, "icon": "achievement_raidprimalist_windelemental", "index": 200}]}, {"id": 103630, "name": "Elemental Unity", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103633, 81010], "prev": [81004], "entries": [{"id": 127912, "definitionId": 132721, "maxRanks": 1, "type": "passive", "name": "Elemental Unity", "spellId": 462866, "icon": "inv_10_elementalspiritfoozles_air", "index": 100}]}, {"id": 80996, "name": "Flux Melting", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80995, 80993], "prev": [103635, 103638], "entries": [{"id": 101869, "definitionId": 106823, "maxRanks": 1, "type": "passive", "name": "Flux Melting", "spellId": 381776, "icon": "spell_frostfire-orb", "index": 100}]}, {"id": 103631, "name": "Lightning Capacitor", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80995, 103636, 81013], "prev": [103635, 81016, 103639], "entries": [{"id": 127913, "definitionId": 132722, "maxRanks": 1, "type": "passive", "name": "Lightning Capacitor", "spellId": 462862, "icon": "spell_nature_lightningshield", "index": 100}]}, {"id": 81015, "name": "Power of the Maelstrom", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81013, 81005], "prev": [103639], "entries": [{"id": 101892, "definitionId": 106824, "maxRanks": 1, "type": "passive", "name": "Power of the Maelstrom", "spellId": 191861, "icon": "spell_fire_masterofelements", "index": 100}]}, {"id": 81009, "name": "Improved Flametongue Weapon", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81005], "prev": [103639, 80998], "entries": [{"id": 101886, "definitionId": 106853, "maxRanks": 1, "type": "passive", "name": "Improved Flametongue Weapon", "spellId": 382027, "icon": "spell_fire_flametounge", "index": 100}]}, {"id": 103633, "name": "Everlasting Elements", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81005, 103634, 81010], "prev": [103630, 80998], "entries": [{"id": 127915, "definitionId": 132724, "maxRanks": 1, "type": "passive", "name": "Everlasting Elements", "spellId": 462867, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 80995, "name": "Earthshatter", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80993, 81003], "prev": [103635, 103631, 80996], "entries": [{"id": 101867, "definitionId": 106821, "maxRanks": 1, "type": "passive", "name": "Earthshatter", "spellId": 468626, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 103636, "name": "Thunderstrike Ward", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81003], "prev": [103631], "entries": [{"id": 127918, "definitionId": 132727, "maxRanks": 1, "type": "active", "name": "Thunderstrike Ward", "spellId": 462757, "icon": "inv_armorkit_lightning_imbued", "index": 100}]}, {"id": 81013, "name": "Echo Chamber", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81003, 80989, 81008], "prev": [103631, 81015], "entries": [{"id": 101890, "definitionId": 106839, "maxRanks": 1, "type": "passive", "name": "Echo Chamber", "spellId": 382032, "icon": "spell_nature_lightningoverload", "index": 100}]}, {"id": 81005, "name": "Searing Flames", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81008, 81014], "prev": [81015, 81009, 103633], "entries": [{"id": 101880, "definitionId": 106847, "maxRanks": 1, "type": "passive", "name": "Searing Flames", "spellId": 381782, "icon": "inv_offhand_1h_artifactdoomhammer_d_01", "index": 100}]}, {"id": 103634, "name": "Earthen Rage", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81014], "prev": [103633], "entries": [{"id": 127916, "definitionId": 132725, "maxRanks": 1, "type": "passive", "name": "Earthen Rage", "spellId": 170374, "icon": "ability_earthen_pillar", "index": 100}]}, {"id": 81010, "name": "Flames of the Cauldron", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81014], "prev": [103630, 103633], "entries": [{"id": 101887, "definitionId": 106854, "maxRanks": 1, "type": "passive", "name": "Flames of the Cauldron", "spellId": 378266, "icon": "inv_misc_cauldron_fire", "index": 100}]}, {"id": 80993, "name": "Elemental Equilibrium", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81012], "prev": [80995, 80996], "entries": [{"id": 101865, "definitionId": 106841, "maxRanks": 1, "type": "passive", "name": "Elemental Equilibrium", "spellId": 378271, "icon": "ability_shaman_ascendance", "index": 100}]}, {"id": 81003, "name": "Eye of the Storm", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81012, 81002], "prev": [103636, 81013, 80995], "entries": [{"id": 101877, "definitionId": 106827, "maxRanks": 1, "type": "passive", "name": "Eye of the Storm", "spellId": 381708, "icon": "spell_shadow_soulleech_2", "index": 300}]}, {"id": 80989, "name": "Ascendance", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81002, 103640, 81006], "prev": [81013], "entries": [{"id": 101860, "definitionId": 106820, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114050, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 81008, "name": "Echo of the Elementals", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81006, 81007], "prev": [81013, 81005], "entries": [{"id": 101885, "definitionId": 106852, "maxRanks": 1, "type": "passive", "name": "Echo of the Elementals", "spellId": 462864, "icon": "inv_10_elementalspiritfoozles_fire", "index": 200}]}, {"id": 81014, "name": "Primordial Wave", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81007, 80978], "prev": [81005, 81010, 103634], "entries": [{"id": 101891, "definitionId": 106840, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 375982, "icon": "inv_ability_shaman_primordialwave", "index": 100}]}, {"id": 81012, "name": "Lightning Rod", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80991, 103641], "prev": [81003, 80993], "entries": [{"id": 101889, "definitionId": 106838, "maxRanks": 1, "type": "passive", "name": "Lightning Rod", "spellId": 210689, "icon": "inv_rod_enchantedcobalt", "index": 100}]}, {"id": 81002, "name": "Mountains Will Fall", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103641, 80992], "prev": [81003, 80989], "entries": [{"id": 101876, "definitionId": 106826, "maxRanks": 1, "type": "passive", "name": "Mountains Will Fall", "spellId": 381726, "icon": "inv_elementalearth2", "index": 100}]}, {"id": 103640, "name": "First Ascendant / Preeminence", "type": "choice", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80992, 103632], "prev": [80989], "entries": [{"id": 127921, "definitionId": 132730, "maxRanks": 1, "type": "passive", "name": "First Ascendant", "spellId": 462440, "icon": "spell_shaman_astralshift", "index": 100}, {"id": 128224, "definitionId": 133031, "maxRanks": 1, "type": "passive", "name": "Preeminence", "spellId": 462443, "icon": "spell_shaman_improvedreincarnation", "index": 200}]}, {"id": 81006, "name": "Erupting Lava", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103632], "prev": [81008, 80989], "entries": [{"id": 101881, "definitionId": 106848, "maxRanks": 1, "type": "passive", "name": "Erupting Lava", "spellId": 468574, "icon": "ability_rhyolith_lavapool", "index": 300}]}, {"id": 81007, "name": "Magma Chamber", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103632, 103637], "prev": [81008, 81014], "entries": [{"id": 101883, "definitionId": 106850, "maxRanks": 1, "type": "passive", "name": "Magma Chamber", "spellId": 381932, "icon": "ability_rhyolith_magmaflow_whole", "index": 100}]}, {"id": 80978, "name": "Splintered Elements", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103637], "prev": [81014], "entries": [{"id": 101844, "definitionId": 106856, "maxRanks": 1, "type": "passive", "name": "Splintered Elements", "spellId": 382042, "icon": "spell_nature_elementalprecision_1", "index": 300}]}, {"id": 80991, "name": "Charged Conduit", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81012], "entries": [{"id": 101862, "definitionId": 106844, "maxRanks": 1, "type": "passive", "name": "Charged Conduit", "spellId": 468625, "icon": "ability_thunderking_thunderstruck", "index": 100}]}, {"id": 103641, "name": "Echoes of Great Sundering", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81012, 81002], "entries": [{"id": 127922, "definitionId": 132731, "maxRanks": 1, "type": "passive", "name": "Echoes of Great Sundering", "spellId": 384087, "icon": "spell_shaman_earthquake", "index": 300}]}, {"id": 80992, "name": "Deeply Rooted Elements", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81002, 103640], "entries": [{"id": 101864, "definitionId": 106846, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 100}]}, {"id": 103632, "name": "Primal Elementalist", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103640, 81007, 81006], "entries": [{"id": 127914, "definitionId": 132723, "maxRanks": 1, "type": "passive", "name": "Primal Elementalist", "spellId": 117013, "icon": "shaman_talent_primalelementalist", "index": 100}]}, {"id": 103637, "name": "Liquid Magma Totem", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81007, 80978], "entries": [{"id": 101884, "definitionId": 106851, "maxRanks": 1, "type": "active", "name": "Liquid Magma Totem", "spellId": 192222, "icon": "spell_shaman_spewlava", "index": 100}]}], "heroNodes": [{"id": 94888, "name": "Call of the Ancestors", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 56, "requiresNode": 81037, "next": [94862, 94869, 94884], "prev": [], "entries": [{"id": 117485, "definitionId": 122497, "maxRanks": 1, "type": "passive", "name": "Call of the Ancestors", "spellId": 443450, "icon": "ability_racial_ancestralcall", "index": 100}], "freeNode": true}, {"id": 94862, "name": "Latent Wisdom / Ancient Fellowship", "type": "choice", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94887], "prev": [94888], "entries": [{"id": 117459, "definitionId": 122471, "maxRanks": 1, "type": "passive", "name": "Latent Wisdom", "spellId": 443449, "icon": "spell_holy_spiritualguidence", "index": 100}, {"id": 123632, "definitionId": 128470, "maxRanks": 1, "type": "passive", "name": "Ancient Fellowship", "spellId": 443423, "icon": "spell_shaman_astralshift", "index": 200}]}, {"id": 94884, "name": "Heed My Call / Routine Communication", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94860], "prev": [94888], "entries": [{"id": 117481, "definitionId": 122493, "maxRanks": 1, "type": "passive", "name": "Heed My Call", "spellId": 443444, "icon": "spell_unused2", "index": 100}, {"id": 123630, "definitionId": 128468, "maxRanks": 1, "type": "passive", "name": "Routine Communication", "spellId": 443445, "icon": "spell_nature_undyingstrength", "index": 200}]}, {"id": 94869, "name": "Elemental Reverb", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94861], "prev": [94888], "entries": [{"id": 117466, "definitionId": 122478, "maxRanks": 1, "type": "passive", "name": "Elemental Reverb", "spellId": 443418, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 94887, "name": "Offering from Beyond", "type": "single", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94858], "prev": [94862], "entries": [{"id": 117484, "definitionId": 122496, "maxRanks": 1, "type": "passive", "name": "Offering from Beyond", "spellId": 443451, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 94860, "name": "Primordial Capacity", "type": "single", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94883], "prev": [94884], "entries": [{"id": 117457, "definitionId": 122469, "maxRanks": 1, "type": "passive", "name": "Primordial Capacity", "spellId": 443448, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 94861, "name": "Spiritwalker's Momentum", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94875], "prev": [94869], "entries": [{"id": 117458, "definitionId": 122470, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Momentum", "spellId": 443425, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 94858, "name": "Natural Harmony / Earthen Communion", "type": "choice", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94887], "entries": [{"id": 117455, "definitionId": 122467, "maxRanks": 1, "type": "passive", "name": "Natural Harmony", "spellId": 443442, "icon": "spell_nature_natureguardian", "index": 100}, {"id": 123631, "definitionId": 128469, "maxRanks": 1, "type": "passive", "name": "Earthen Communion", "spellId": 443441, "icon": "spell_nature_skinofearth", "index": 200}]}, {"id": 94883, "name": "Maelstrom Supremacy", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94860], "entries": [{"id": 117480, "definitionId": 122492, "maxRanks": 1, "type": "passive", "name": "Maelstrom Supremacy", "spellId": 443447, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 94875, "name": "Final Calling", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94861], "entries": [{"id": 117472, "definitionId": 122484, "maxRanks": 1, "type": "passive", "name": "Final Calling", "spellId": 443446, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 94894, "name": "Ancestral Swiftness", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 56, "next": [], "prev": [94883, 94858, 94875], "entries": [{"id": 117491, "definitionId": 122503, "maxRanks": 1, "type": "active", "name": "Ancestral Swiftness", "spellId": 448861, "visibleSpellId": 443454, "icon": "inv_ability_farseershaman_ancestralswiftness", "index": 100}]}, {"id": 94892, "name": "Tempest", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 55, "next": [94886, 94893, 94863], "prev": [], "entries": [{"id": 117489, "definitionId": 122501, "maxRanks": 1, "type": "passive", "name": "Tempest", "spellId": 454009, "icon": "inv_ability_stormcallershaman_tempest", "index": 100}], "freeNode": true}, {"id": 94886, "name": "Unlimited Power", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94873], "prev": [94892], "entries": [{"id": 117483, "definitionId": 122495, "maxRanks": 1, "type": "passive", "name": "Unlimited Power", "spellId": 454391, "icon": "spell_nature_purge", "index": 100}]}, {"id": 94893, "name": "Stormcaller", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94885], "prev": [94892], "entries": [{"id": 117490, "definitionId": 122502, "maxRanks": 1, "type": "passive", "name": "Stormcaller", "spellId": 454021, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94863, "name": "Lightning Conduit / Electroshock", "type": "choice", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94889], "prev": [94892], "entries": [{"id": 117460, "definitionId": 122472, "maxRanks": 1, "type": "passive", "name": "Lightning Conduit", "spellId": 467778, "icon": "spell_shaman_staticshock", "index": 100}, {"id": 128226, "definitionId": 133033, "maxRanks": 1, "type": "passive", "name": "Electroshock", "spellId": 454022, "icon": "ability_thunderking_overcharge", "index": 200}]}, {"id": 94873, "name": "Storm Swell / Supercharge", "type": "choice", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94870], "prev": [94886], "entries": [{"id": 117470, "definitionId": 122482, "maxRanks": 1, "type": "passive", "name": "Storm Swell", "spellId": 455088, "icon": "spell_nature_unrelentingstorm", "index": 100}, {"id": 128225, "definitionId": 133032, "maxRanks": 1, "type": "passive", "name": "Supercharge", "spellId": 455110, "icon": "inv_misc_stormlordsfavor", "index": 200}]}, {"id": 94885, "name": "Arc Discharge", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94868], "prev": [94893], "entries": [{"id": 117482, "definitionId": 122494, "maxRanks": 1, "type": "passive", "name": "Arc Discharge", "spellId": 455096, "icon": "ability_thunderking_balllightning", "index": 100}]}, {"id": 94889, "name": "Rolling Thunder", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94880], "prev": [94863], "entries": [{"id": 117486, "definitionId": 122498, "maxRanks": 1, "type": "passive", "name": "Rolling Thunder", "spellId": 454026, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 94870, "name": "Voltaic Surge", "type": "single", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94873], "entries": [{"id": 117467, "definitionId": 122479, "maxRanks": 1, "type": "passive", "name": "Voltaic Surge", "spellId": 454919, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 94868, "name": "Conductive Energy", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94885], "entries": [{"id": 117465, "definitionId": 122477, "maxRanks": 1, "type": "passive", "name": "Conductive Energy", "spellId": 455123, "icon": "inv_rod_enchantedcobalt", "index": 100}]}, {"id": 94880, "name": "Nature's Protection / Surging Currents", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94889], "entries": [{"id": 117477, "definitionId": 122489, "maxRanks": 1, "type": "passive", "name": "Nature's Protection", "spellId": 454027, "icon": "spell_nature_lightningshield", "index": 100}, {"id": 125617, "definitionId": 130449, "maxRanks": 1, "type": "passive", "name": "Surging Currents", "spellId": 454372, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94867, "name": "Awakening Storms", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 55, "next": [], "prev": [94868, 94870, 94880], "entries": [{"id": 117464, "definitionId": 122476, "maxRanks": 1, "type": "passive", "name": "Awakening Storms", "spellId": 455129, "icon": "spell_nature_stormreach", "index": 100}]}], "subTreeNodes": [{"id": 99845, "name": "Farseer / Stormbringer", "type": "subtree", "posX": 7200, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123377, "type": "subtree", "name": "Farseer", "traitSubTreeId": 56, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-farseer", "nodes": [94888, 94862, 94884, 94869, 94887, 94860, 94861, 94858, 94883, 94875, 94894]}, {"id": 123376, "type": "subtree", "name": "Stormbringer", "traitSubTreeId": 55, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-stormbringer", "nodes": [94892, 94886, 94893, 94863, 94873, 94885, 94889, 94870, 94868, 94880, 94867]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810, 103848, 103871, 103915]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/shaman_enhancement.json b/simc_support/game_data/data_files/trees/shaman_enhancement.json index ad72edd..f1a6af9 100644 --- a/simc_support/game_data/data_files/trees/shaman_enhancement.json +++ b/simc_support/game_data/data_files/trees/shaman_enhancement.json @@ -1 +1 @@ -{"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Enhancement", "specId": 263, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}]}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}]}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}], "freeNode": true}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}], "freeNode": true}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 103608], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost-orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 103608], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [103608, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 103608, "name": "Cleanse Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103590, 103617, 103605], "entries": [{"id": 127884, "definitionId": 132693, "maxRanks": 1, "type": "active", "name": "Cleanse Spirit", "spellId": 51886, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103608, 103593, 103601], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 80941, "name": "Stormstrike", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [80958, 80942], "prev": [], "entries": [{"id": 101804, "definitionId": 106862, "maxRanks": 1, "type": "active", "name": "Stormstrike", "spellId": 17364, "icon": "ability_shaman_stormstrike", "index": 100}]}, {"id": 80958, "name": "Windfury Weapon", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [80969, 80957], "prev": [80941], "entries": [{"id": 101823, "definitionId": 106876, "maxRanks": 1, "type": "active", "name": "Windfury Weapon", "spellId": 33757, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 80942, "name": "Lava Lash", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [80957, 80943, 80956], "prev": [80941], "entries": [{"id": 101805, "definitionId": 106864, "maxRanks": 1, "type": "active", "name": "Lava Lash", "spellId": 60103, "icon": "ability_shaman_lavalash", "index": 100}]}, {"id": 80969, "name": "Forceful Winds", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [80968, 80966], "prev": [80958], "entries": [{"id": 101834, "definitionId": 106888, "maxRanks": 1, "type": "passive", "name": "Forceful Winds", "spellId": 262647, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 80957, "name": "Improved Maelstrom Weapon", "type": "single", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [80966, 80939, 80956], "prev": [80958, 80942], "entries": [{"id": 101822, "definitionId": 106865, "maxRanks": 1, "type": "passive", "name": "Improved Maelstrom Weapon", "spellId": 383303, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 80943, "name": "Molten Assault", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [80956, 80944], "prev": [80942], "entries": [{"id": 101806, "definitionId": 106863, "maxRanks": 1, "type": "passive", "name": "Molten Assault", "spellId": 334033, "icon": "spell_shaman_improvelavalash", "index": 100}]}, {"id": 80968, "name": "Unruly Winds", "type": "single", "posX": 11400, "posY": 3000, "maxRanks": 1, "next": [80959, 103642, 80967], "prev": [80969], "entries": [{"id": 101833, "definitionId": 106887, "maxRanks": 1, "type": "passive", "name": "Unruly Winds", "spellId": 390288, "icon": "ability_skyreach_wind_wall", "index": 100}]}, {"id": 80966, "name": "Tempest Strikes / Elemental Blast", "type": "choice", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [103642], "prev": [80957, 80969], "entries": [{"id": 101831, "definitionId": 106886, "maxRanks": 1, "type": "passive", "name": "Tempest Strikes", "spellId": 428071, "icon": "spell_nature_thunderclap", "index": 100}, {"id": 117750, "definitionId": 122762, "maxRanks": 1, "type": "active", "name": "Elemental Blast", "spellId": 394150, "visibleSpellId": 117014, "icon": "shaman_talent_elementalblast", "index": 200}]}, {"id": 80939, "name": "Raging Maelstrom", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [80938, 80975], "prev": [80957], "entries": [{"id": 101802, "definitionId": 106871, "maxRanks": 1, "type": "passive", "name": "Raging Maelstrom", "spellId": 384143, "icon": "spell_shaman_stormearthfire", "index": 0}]}, {"id": 80956, "name": "Ice Strike", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [80975, 80955], "prev": [80943, 80942, 80957], "entries": [{"id": 101821, "definitionId": 106866, "maxRanks": 1, "type": "active", "name": "Ice Strike", "spellId": 342240, "icon": "spell_frost_frostbolt", "index": 100}]}, {"id": 80944, "name": "Hailstorm / Fire Nova", "type": "choice", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [80955, 80945], "prev": [80943], "entries": [{"id": 101808, "definitionId": 106900, "maxRanks": 1, "type": "passive", "name": "Hailstorm", "spellId": 334195, "icon": "spell_frost_icestorm", "index": 100}, {"id": 101807, "definitionId": 106899, "maxRanks": 1, "type": "active", "name": "Fire Nova", "spellId": 333974, "icon": "spell_shaman_improvedfirenova", "index": 200}]}, {"id": 80959, "name": "Doom Winds", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80967], "prev": [80968], "entries": [{"id": 101824, "definitionId": 106859, "maxRanks": 1, "type": "active", "name": "Doom Winds", "spellId": 384352, "icon": "ability_ironmaidens_swirlingvortex", "index": 100}]}, {"id": 103642, "name": "Flurry", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80967, 80974, 80961], "prev": [80966, 80968], "entries": [{"id": 101799, "definitionId": 106872, "maxRanks": 1, "type": "passive", "name": "Flurry", "spellId": 382888, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 80938, "name": "Overflowing Maelstrom", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80974], "prev": [80939], "entries": [{"id": 101801, "definitionId": 106880, "maxRanks": 1, "type": "passive", "name": "Overflowing Maelstrom", "spellId": 384149, "icon": "spell_shaman_maelstromweapon", "index": 0}]}, {"id": 80975, "name": "Sundering", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80974, 80954], "prev": [80956, 80939], "entries": [{"id": 101841, "definitionId": 106874, "maxRanks": 1, "type": "active", "name": "Sundering", "spellId": 197214, "icon": "ability_rhyolith_lavapool", "index": 100}]}, {"id": 80955, "name": "Swirling Maelstrom", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80954], "prev": [80956, 80944], "entries": [{"id": 101820, "definitionId": 106867, "maxRanks": 1, "type": "passive", "name": "Swirling Maelstrom", "spellId": 384359, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 80945, "name": "Hot Hand", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [80954, 80947], "prev": [80944], "entries": [{"id": 101809, "definitionId": 106898, "maxRanks": 2, "type": "passive", "name": "Hot Hand", "spellId": 201900, "icon": "spell_fire_playingwithfire", "index": 100}]}, {"id": 80967, "name": "Storm's Wrath", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80960, 80961], "prev": [80968, 80959, 103642], "entries": [{"id": 101832, "definitionId": 107009, "maxRanks": 1, "type": "passive", "name": "Storm's Wrath", "spellId": 392352, "icon": "spell_nature_stormreach", "index": 100}]}, {"id": 80974, "name": "Crash Lightning", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80961, 80973, 80953], "prev": [80938, 80975, 103642], "entries": [{"id": 101840, "definitionId": 106879, "maxRanks": 1, "type": "active", "name": "Crash Lightning", "spellId": 187874, "icon": "spell_shaman_crashlightning", "index": 100}]}, {"id": 80954, "name": "Stormflurry", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80953, 92219], "prev": [80955, 80945, 80975], "entries": [{"id": 101819, "definitionId": 106869, "maxRanks": 1, "type": "passive", "name": "Stormflurry", "spellId": 344357, "icon": "ability_shaman_stormstrike", "index": 100}]}, {"id": 80947, "name": "Ashen Catalyst", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80948], "prev": [80945], "entries": [{"id": 101811, "definitionId": 106897, "maxRanks": 1, "type": "passive", "name": "Ashen Catalyst", "spellId": 390370, "icon": "spell_shaman_stormearthfire", "index": 0}]}, {"id": 80960, "name": "Stormblast", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80965], "prev": [80967], "entries": [{"id": 101825, "definitionId": 106877, "maxRanks": 1, "type": "passive", "name": "Stormblast", "spellId": 319930, "icon": "spell_shaman_focusedstrikes", "index": 100}]}, {"id": 80961, "name": "Elemental Weapons", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [80965, 80972], "prev": [80974, 80967, 103642], "entries": [{"id": 101826, "definitionId": 106861, "maxRanks": 2, "type": "passive", "name": "Elemental Weapons", "spellId": 384355, "icon": "inv_mace_2h_draenorraid_d_03", "index": 100}]}, {"id": 80973, "name": "Converging Storms", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80972], "prev": [80974], "entries": [{"id": 101839, "definitionId": 106878, "maxRanks": 1, "type": "passive", "name": "Converging Storms", "spellId": 384363, "icon": "warrior_talent_icon_stormbolt", "index": 100}]}, {"id": 80953, "name": "Crashing Storms", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80972, 92219], "prev": [80954, 80974], "entries": [{"id": 101818, "definitionId": 106868, "maxRanks": 1, "type": "passive", "name": "Crashing Storms", "spellId": 334308, "icon": "spell_nature_chainlightning", "index": 100}]}, {"id": 80948, "name": "Lashing Flames", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [92219], "prev": [80947], "entries": [{"id": 101812, "definitionId": 106896, "maxRanks": 1, "type": "passive", "name": "Lashing Flames", "spellId": 334046, "icon": "spell_shaman_improvelavalash", "index": 100}]}, {"id": 80965, "name": "Primordial Wave", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80964, 80962], "prev": [80961, 80960], "entries": [{"id": 101830, "definitionId": 106885, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 375982, "icon": "ability_maldraxxus_shaman", "index": 100}]}, {"id": 80972, "name": "Feral Spirit", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80962, 80971, 80951], "prev": [80961, 80953, 80973], "entries": [{"id": 101838, "definitionId": 106892, "maxRanks": 1, "type": "active", "name": "Feral Spirit", "spellId": 51533, "icon": "spell_shaman_feralspirit", "index": 100}]}, {"id": 92219, "name": "Deeply Rooted Elements / Ascendance", "type": "choice", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80951, 80950], "prev": [80954, 80953, 80948], "entries": [{"id": 101816, "definitionId": 106894, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 100}, {"id": 114291, "definitionId": 119296, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114051, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 80964, "name": "Primal Maelstrom", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80963], "prev": [80965], "entries": [{"id": 101829, "definitionId": 106884, "maxRanks": 2, "type": "passive", "name": "Primal Maelstrom", "spellId": 384405, "icon": "shaman_talent_unleashedfury", "index": 100}]}, {"id": 80962, "name": "Elemental Assault", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [], "prev": [80972, 80965], "entries": [{"id": 101827, "definitionId": 106860, "maxRanks": 2, "type": "passive", "name": "Elemental Assault", "spellId": 210853, "icon": "spell_shaman_improvedstormstrike", "index": 100}]}, {"id": 80971, "name": "Witch Doctor's Ancestry", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80970], "prev": [80972], "entries": [{"id": 101837, "definitionId": 106891, "maxRanks": 1, "type": "passive", "name": "Witch Doctor's Ancestry", "spellId": 384447, "icon": "inv_misc_bone_09", "index": 100}]}, {"id": 80951, "name": "Legacy of the Frost Witch", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [], "prev": [80972, 92219], "entries": [{"id": 101815, "definitionId": 106893, "maxRanks": 2, "type": "passive", "name": "Legacy of the Frost Witch", "spellId": 384450, "icon": "ability_thunderking_thunderstruck", "index": 100}]}, {"id": 80950, "name": "Static Accumulation", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80949], "prev": [92219], "entries": [{"id": 101814, "definitionId": 106881, "maxRanks": 2, "type": "passive", "name": "Static Accumulation", "spellId": 384411, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 80963, "name": "Splintered Elements", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80964], "entries": [{"id": 101828, "definitionId": 106883, "maxRanks": 1, "type": "passive", "name": "Splintered Elements", "spellId": 382042, "icon": "spell_nature_elementalprecision_1", "index": 100}]}, {"id": 80970, "name": "Elemental Spirits / Alpha Wolf", "type": "choice", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80971], "entries": [{"id": 101836, "definitionId": 106890, "maxRanks": 1, "type": "passive", "name": "Elemental Spirits", "spellId": 262624, "icon": "spell_shaman_feralspirit", "index": 100}, {"id": 101835, "definitionId": 106889, "maxRanks": 1, "type": "passive", "name": "Alpha Wolf", "spellId": 198434, "icon": "spell_beastmaster_wolf", "index": 200}]}, {"id": 80949, "name": "Thorim's Invocation", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80950], "entries": [{"id": 101813, "definitionId": 106882, "maxRanks": 1, "type": "passive", "name": "Thorim's Invocation", "spellId": 384444, "icon": "spell_shaman_ancestralawakening", "index": 100}]}], "heroNodes": [{"id": 94877, "name": "Surging Totem", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 54, "next": [94890, 94874, 94882], "prev": [], "entries": [{"id": 117474, "definitionId": 122486, "maxRanks": 1, "type": "active", "name": "Surging Totem", "spellId": 455630, "visibleSpellId": 444995, "icon": "inv_ability_totemicshaman_surgingtotem", "index": 100}], "freeNode": true}, {"id": 94890, "name": "Totemic Rebound", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94859], "prev": [94877], "entries": [{"id": 117487, "definitionId": 122499, "maxRanks": 1, "type": "passive", "name": "Totemic Rebound", "spellId": 445025, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94874, "name": "Amplification Core / Oversurge", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94891], "prev": [94877], "entries": [{"id": 117471, "definitionId": 122483, "maxRanks": 1, "type": "passive", "name": "Amplification Core", "spellId": 445029, "icon": "ability_evoker_essenceburststacks", "index": 100}, {"id": 125823, "definitionId": 130654, "maxRanks": 1, "type": "passive", "name": "Oversurge", "spellId": 445030, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 94882, "name": "Lively Totems", "type": "single", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "requiresNode": 80942, "next": [94872], "prev": [94877], "entries": [{"id": 117479, "definitionId": 122491, "maxRanks": 1, "type": "passive", "name": "Lively Totems", "spellId": 445034, "icon": "spell_fire_searingtotem", "index": 100}]}, {"id": 94859, "name": "Oversized Totems / Swift Recall", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94871], "prev": [94890], "entries": [{"id": 117456, "definitionId": 122468, "maxRanks": 1, "type": "passive", "name": "Oversized Totems", "spellId": 445026, "icon": "ability_shaman_totemrelocation", "index": 100}, {"id": 125825, "definitionId": 130656, "maxRanks": 1, "type": "passive", "name": "Swift Recall", "spellId": 445027, "icon": "spell_nature_brilliance", "index": 200}]}, {"id": 94891, "name": "Wind Barrier", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94866], "prev": [94874], "entries": [{"id": 117488, "definitionId": 122500, "maxRanks": 1, "type": "passive", "name": "Wind Barrier", "spellId": 445031, "icon": "spell_nature_eyeofthestorm", "index": 100}]}, {"id": 94872, "name": "Reactivity", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "requiresNode": 103590, "next": [94881], "prev": [94882], "entries": [{"id": 117469, "definitionId": 122481, "maxRanks": 1, "type": "passive", "name": "Reactivity", "spellId": 445035, "icon": "spell_fire_totemofwrath", "index": 100}]}, {"id": 94871, "name": "Imbuement Mastery", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "requiresNode": 81049, "next": [94879], "prev": [94859], "entries": [{"id": 117468, "definitionId": 122480, "maxRanks": 1, "type": "passive", "name": "Imbuement Mastery", "spellId": 445028, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 94866, "name": "Pulse Capacitor / Supportive Imbuements", "type": "choice", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94891], "entries": [{"id": 117463, "definitionId": 122475, "maxRanks": 1, "type": "passive", "name": "Pulse Capacitor", "spellId": 445032, "icon": "spell_nature_elementalprecision_1", "index": 100}, {"id": 125824, "definitionId": 130655, "maxRanks": 1, "type": "passive", "name": "Supportive Imbuements", "spellId": 445033, "icon": "ability_shaman_fortifyingwaters", "index": 200}]}, {"id": 94881, "name": "Totemic Coordination / Earthsurge", "type": "choice", "posX": 16200, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94872], "entries": [{"id": 117478, "definitionId": 122490, "maxRanks": 1, "type": "passive", "name": "Totemic Coordination", "spellId": 445036, "icon": "ability_shaman_echooftheelements", "index": 100}, {"id": 125822, "definitionId": 130653, "maxRanks": 1, "type": "passive", "name": "Earthsurge", "spellId": 455590, "icon": "inv_elementalearth2", "index": 200}]}, {"id": 94879, "name": "Whirling Elements", "type": "single", "posX": 15600, "posY": 3600, "maxRanks": 1, "subTreeId": 54, "next": [], "prev": [94866, 94871, 94881], "entries": [{"id": 117476, "definitionId": 122488, "maxRanks": 1, "type": "passive", "name": "Whirling Elements", "spellId": 445024, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}, {"id": 94892, "name": "Tempest", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 55, "next": [94886, 94893, 94863], "prev": [], "entries": [{"id": 117489, "definitionId": 122501, "maxRanks": 1, "type": "passive", "name": "Tempest", "spellId": 454009, "icon": "inv_ability_stormcallershaman_tempest", "index": 100}], "freeNode": true}, {"id": 94886, "name": "Unlimited Power", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94873], "prev": [94892], "entries": [{"id": 117483, "definitionId": 122495, "maxRanks": 1, "type": "passive", "name": "Unlimited Power", "spellId": 454391, "icon": "spell_nature_purge", "index": 100}]}, {"id": 94893, "name": "Stormcaller", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94885], "prev": [94892], "entries": [{"id": 117490, "definitionId": 122502, "maxRanks": 1, "type": "passive", "name": "Stormcaller", "spellId": 454021, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94863, "name": "Shocking Grasp", "type": "single", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94889], "prev": [94892], "entries": [{"id": 117460, "definitionId": 122472, "maxRanks": 1, "type": "passive", "name": "Shocking Grasp", "spellId": 454022, "icon": "spell_shaman_crashlightning", "index": 100}]}, {"id": 94873, "name": "Supercharge", "type": "single", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94870], "prev": [94886], "entries": [{"id": 117470, "definitionId": 122482, "maxRanks": 1, "type": "passive", "name": "Supercharge", "spellId": 455110, "icon": "inv_misc_stormlordsfavor", "index": 100}]}, {"id": 94885, "name": "Storm Swell / Arc Discharge", "type": "choice", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94868], "prev": [94893], "entries": [{"id": 117482, "definitionId": 122494, "maxRanks": 1, "type": "passive", "name": "Storm Swell", "spellId": 455088, "icon": "spell_nature_unrelentingstorm", "index": 100}, {"id": 125616, "definitionId": 130448, "maxRanks": 1, "type": "passive", "name": "Arc Discharge", "spellId": 455096, "icon": "ability_thunderking_balllightning", "index": 200}]}, {"id": 94889, "name": "Rolling Thunder", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94880], "prev": [94863], "entries": [{"id": 117486, "definitionId": 122498, "maxRanks": 1, "type": "passive", "name": "Rolling Thunder", "spellId": 454026, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 94870, "name": "Voltaic Surge", "type": "single", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94873], "entries": [{"id": 117467, "definitionId": 122479, "maxRanks": 1, "type": "passive", "name": "Voltaic Surge", "spellId": 454919, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 94868, "name": "Conductive Energy", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94885], "entries": [{"id": 117465, "definitionId": 122477, "maxRanks": 1, "type": "passive", "name": "Conductive Energy", "spellId": 455123, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 94880, "name": "Nature's Protection / Surging Currents", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94889], "entries": [{"id": 117477, "definitionId": 122489, "maxRanks": 1, "type": "passive", "name": "Nature's Protection", "spellId": 454027, "icon": "spell_nature_lightningshield", "index": 100}, {"id": 125617, "definitionId": 130449, "maxRanks": 1, "type": "passive", "name": "Surging Currents", "spellId": 454372, "icon": "spell_nature_stormreach", "index": 200}]}, {"id": 94867, "name": "Awakening Storms", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 55, "next": [], "prev": [94868, 94870, 94880], "entries": [{"id": 117464, "definitionId": 122476, "maxRanks": 1, "type": "passive", "name": "Awakening Storms", "spellId": 455129, "icon": "spell_nature_stormreach", "index": 100}]}], "subTreeNodes": [{"id": 99847, "name": "Stormbringer / Totemic", "type": "subtree", "posX": 8100, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123381, "type": "subtree", "name": "Stormbringer", "traitSubTreeId": 55, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-stormbringer", "nodes": [94892, 94886, 94893, 94863, 94873, 94885, 94889, 94870, 94868, 94880, 94867]}, {"id": 123379, "type": "subtree", "name": "Totemic", "traitSubTreeId": 54, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-totemic", "nodes": [94877, 94890, 94874, 94882, 94859, 94891, 94872, 94871, 94866, 94881, 94879]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810]} \ No newline at end of file +{"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Enhancement", "specId": 263, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}]}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}]}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}], "freeNode": true}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}], "freeNode": true}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 103608], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost-orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 103608], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [103608, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 103608, "name": "Cleanse Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103590, 103617, 103605], "entries": [{"id": 127884, "definitionId": 132693, "maxRanks": 1, "type": "active", "name": "Cleanse Spirit", "spellId": 51886, "icon": "ability_shaman_cleansespirit", "index": 100}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103608, 103593, 103601], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 80941, "name": "Stormstrike", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [80958, 80942], "prev": [], "entries": [{"id": 101804, "definitionId": 106862, "maxRanks": 1, "type": "active", "name": "Stormstrike", "spellId": 17364, "icon": "ability_shaman_stormstrike", "index": 100}]}, {"id": 80958, "name": "Windfury Weapon", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [80969, 80957], "prev": [80941], "entries": [{"id": 101823, "definitionId": 106876, "maxRanks": 1, "type": "active", "name": "Windfury Weapon", "spellId": 33757, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 80942, "name": "Lava Lash", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [80957, 80943, 80956], "prev": [80941], "entries": [{"id": 101805, "definitionId": 106864, "maxRanks": 1, "type": "active", "name": "Lava Lash", "spellId": 60103, "icon": "ability_shaman_lavalash", "index": 100}]}, {"id": 80969, "name": "Forceful Winds", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [80968, 80966], "prev": [80958], "entries": [{"id": 101834, "definitionId": 106888, "maxRanks": 1, "type": "passive", "name": "Forceful Winds", "spellId": 262647, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 80957, "name": "Improved Maelstrom Weapon", "type": "single", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [80966, 80939, 80956], "prev": [80958, 80942], "entries": [{"id": 101822, "definitionId": 106865, "maxRanks": 1, "type": "passive", "name": "Improved Maelstrom Weapon", "spellId": 383303, "icon": "spell_shaman_maelstromweapon", "index": 100}]}, {"id": 80943, "name": "Molten Assault", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [80956, 80944], "prev": [80942], "entries": [{"id": 101806, "definitionId": 106863, "maxRanks": 1, "type": "passive", "name": "Molten Assault", "spellId": 334033, "icon": "spell_shaman_improvelavalash", "index": 100}]}, {"id": 80968, "name": "Unruly Winds", "type": "single", "posX": 11400, "posY": 3000, "maxRanks": 1, "next": [80959, 103642, 80967], "prev": [80969], "entries": [{"id": 101833, "definitionId": 106887, "maxRanks": 1, "type": "passive", "name": "Unruly Winds", "spellId": 390288, "icon": "ability_skyreach_wind_wall", "index": 100}]}, {"id": 80966, "name": "Tempest Strikes / Elemental Blast", "type": "choice", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [103642], "prev": [80957, 80969], "entries": [{"id": 101831, "definitionId": 106886, "maxRanks": 1, "type": "passive", "name": "Tempest Strikes", "spellId": 428071, "icon": "spell_nature_thunderclap", "index": 100}, {"id": 117750, "definitionId": 122762, "maxRanks": 1, "type": "active", "name": "Elemental Blast", "spellId": 394150, "visibleSpellId": 117014, "icon": "shaman_talent_elementalblast", "index": 200}]}, {"id": 80939, "name": "Raging Maelstrom", "type": "single", "posX": 12600, "posY": 3000, "maxRanks": 1, "next": [80938, 80975], "prev": [80957], "entries": [{"id": 101802, "definitionId": 106871, "maxRanks": 1, "type": "passive", "name": "Raging Maelstrom", "spellId": 384143, "icon": "spell_shaman_stormearthfire", "index": 0}]}, {"id": 80956, "name": "Ice Strike / Ice Strike", "type": "choice", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [80975, 80955], "prev": [80943, 80942, 80957], "entries": [{"id": 101821, "definitionId": 106866, "maxRanks": 1, "type": "passive", "name": "Ice Strike", "spellId": 466467, "icon": "spell_frost_frostbolt", "index": 100}, {"id": 128271, "definitionId": 133078, "maxRanks": 1, "type": "active", "name": "Ice Strike", "spellId": 470194, "icon": "spell_frost_frostbolt", "index": 200}]}, {"id": 80944, "name": "Hailstorm / Fire Nova", "type": "choice", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [80955, 80945], "prev": [80943], "entries": [{"id": 101808, "definitionId": 106900, "maxRanks": 1, "type": "passive", "name": "Hailstorm", "spellId": 334195, "icon": "spell_frost_icestorm", "index": 100}, {"id": 101807, "definitionId": 106899, "maxRanks": 1, "type": "active", "name": "Fire Nova", "spellId": 333974, "icon": "spell_shaman_improvedfirenova", "index": 200}]}, {"id": 80959, "name": "Doom Winds", "type": "single", "posX": 10800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80967], "prev": [80968], "entries": [{"id": 101824, "definitionId": 106859, "maxRanks": 1, "type": "active", "name": "Doom Winds", "spellId": 384352, "icon": "ability_ironmaidens_swirlingvortex", "index": 100}]}, {"id": 103642, "name": "Flurry", "type": "single", "posX": 12000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80967, 80974, 80961], "prev": [80966, 80968], "entries": [{"id": 101799, "definitionId": 106872, "maxRanks": 1, "type": "passive", "name": "Flurry", "spellId": 382888, "icon": "ability_ghoulfrenzy", "index": 100}]}, {"id": 80938, "name": "Overflowing Maelstrom", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80974], "prev": [80939], "entries": [{"id": 101801, "definitionId": 106880, "maxRanks": 1, "type": "passive", "name": "Overflowing Maelstrom", "spellId": 384149, "icon": "spell_shaman_maelstromweapon", "index": 0}]}, {"id": 80975, "name": "Sundering", "type": "single", "posX": 13200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80974, 103848, 80954], "prev": [80956, 80939], "entries": [{"id": 101841, "definitionId": 106874, "maxRanks": 1, "type": "active", "name": "Sundering", "spellId": 197214, "icon": "ability_rhyolith_lavapool", "index": 100}]}, {"id": 80955, "name": "Swirling Maelstrom", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [80954], "prev": [80956, 80944], "entries": [{"id": 101820, "definitionId": 106867, "maxRanks": 1, "type": "passive", "name": "Swirling Maelstrom", "spellId": 384359, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 80945, "name": "Hot Hand", "type": "single", "posX": 14400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [80954, 80947], "prev": [80944], "entries": [{"id": 101809, "definitionId": 106898, "maxRanks": 2, "type": "passive", "name": "Hot Hand", "spellId": 201900, "icon": "spell_fire_playingwithfire", "index": 100}]}, {"id": 80967, "name": "Storm's Wrath", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80960, 103871, 80961], "prev": [80968, 80959, 103642], "entries": [{"id": 101832, "definitionId": 107009, "maxRanks": 1, "type": "passive", "name": "Storm's Wrath", "spellId": 392352, "icon": "spell_nature_stormreach", "index": 100}]}, {"id": 80974, "name": "Crash Lightning", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80961, 80973, 80953], "prev": [80938, 80975, 103642], "entries": [{"id": 101840, "definitionId": 106879, "maxRanks": 1, "type": "active", "name": "Crash Lightning", "spellId": 187874, "icon": "spell_shaman_crashlightning", "index": 100}]}, {"id": 103848, "name": "Molten Thunder", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80953], "prev": [80975], "entries": [{"id": 128237, "definitionId": 133044, "maxRanks": 1, "type": "passive", "name": "Molten Thunder", "spellId": 469344, "icon": "spell_fire_moltenblood", "index": 100}]}, {"id": 80954, "name": "Stormflurry", "type": "single", "posX": 13800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80953, 92219], "prev": [80955, 80945, 80975], "entries": [{"id": 101819, "definitionId": 106869, "maxRanks": 1, "type": "passive", "name": "Stormflurry", "spellId": 344357, "icon": "ability_shaman_stormstrike", "index": 100}]}, {"id": 80947, "name": "Ashen Catalyst", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [80948], "prev": [80945], "entries": [{"id": 101811, "definitionId": 106897, "maxRanks": 1, "type": "passive", "name": "Ashen Catalyst", "spellId": 390370, "icon": "spell_shaman_stormearthfire", "index": 0}]}, {"id": 80960, "name": "Stormblast", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80965], "prev": [80967], "entries": [{"id": 101825, "definitionId": 106877, "maxRanks": 1, "type": "passive", "name": "Stormblast", "spellId": 319930, "icon": "spell_shaman_focusedstrikes", "index": 100}]}, {"id": 103871, "name": "Voltaic Blaze", "type": "single", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80965], "prev": [80967], "entries": [{"id": 128270, "definitionId": 133077, "maxRanks": 1, "type": "passive", "name": "Voltaic Blaze", "spellId": 470053, "icon": "inv_10_dungeonjewelry_primalist_trinket_1ragingelement_fire", "index": 100}]}, {"id": 80961, "name": "Elemental Weapons", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80965, 80972], "prev": [80974, 80967, 103642], "entries": [{"id": 101826, "definitionId": 106861, "maxRanks": 1, "type": "passive", "name": "Elemental Weapons", "spellId": 384355, "icon": "inv_mace_2h_draenorraid_d_03", "index": 100}]}, {"id": 80973, "name": "Converging Storms / Unrelenting Storms", "type": "choice", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80972], "prev": [80974], "entries": [{"id": 101839, "definitionId": 106878, "maxRanks": 1, "type": "passive", "name": "Converging Storms", "spellId": 384363, "icon": "warrior_talent_icon_stormbolt", "index": 100}, {"id": 128272, "definitionId": 133079, "maxRanks": 1, "type": "passive", "name": "Unrelenting Storms", "spellId": 470490, "icon": "spell_nature_lightningoverload", "index": 200}]}, {"id": 80953, "name": "Crashing Storms", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [80972, 92219], "prev": [80954, 80974, 103848], "entries": [{"id": 101818, "definitionId": 106868, "maxRanks": 1, "type": "passive", "name": "Crashing Storms", "spellId": 334308, "icon": "spell_nature_chainlightning", "index": 100}]}, {"id": 80948, "name": "Lashing Flames", "type": "single", "posX": 14400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [92219], "prev": [80947], "entries": [{"id": 101812, "definitionId": 106896, "maxRanks": 1, "type": "passive", "name": "Lashing Flames", "spellId": 334046, "icon": "spell_shaman_improvelavalash", "index": 100}]}, {"id": 80965, "name": "Primordial Wave", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80964, 80962], "prev": [80961, 80960, 103871], "entries": [{"id": 101830, "definitionId": 106885, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 375982, "icon": "inv_ability_shaman_primordialwave", "index": 100}]}, {"id": 80972, "name": "Feral Spirit", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80962, 80971, 80951], "prev": [80961, 80953, 80973], "entries": [{"id": 101838, "definitionId": 106892, "maxRanks": 1, "type": "active", "name": "Feral Spirit", "spellId": 51533, "icon": "spell_shaman_feralspirit", "index": 100}]}, {"id": 92219, "name": "Deeply Rooted Elements / Ascendance", "type": "choice", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [80951, 80950], "prev": [80954, 80953, 80948], "entries": [{"id": 101816, "definitionId": 106894, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 100}, {"id": 114291, "definitionId": 119296, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114051, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 80964, "name": "Primal Maelstrom", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80963], "prev": [80965], "entries": [{"id": 101829, "definitionId": 106884, "maxRanks": 2, "type": "passive", "name": "Primal Maelstrom", "spellId": 384405, "icon": "shaman_talent_unleashedfury", "index": 100}]}, {"id": 80962, "name": "Elemental Assault", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [], "prev": [80972, 80965], "entries": [{"id": 101827, "definitionId": 106860, "maxRanks": 2, "type": "passive", "name": "Elemental Assault", "spellId": 210853, "icon": "spell_shaman_improvedstormstrike", "index": 100}]}, {"id": 80971, "name": "Witch Doctor's Ancestry / Flowing Spirits", "type": "choice", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80970], "prev": [80972], "entries": [{"id": 101837, "definitionId": 106891, "maxRanks": 1, "type": "passive", "name": "Witch Doctor's Ancestry", "spellId": 384447, "icon": "inv_misc_bone_09", "index": 100}, {"id": 128236, "definitionId": 133043, "maxRanks": 1, "type": "passive", "name": "Flowing Spirits", "spellId": 469314, "icon": "inv_jewelry_frostwolftrinket_02", "index": 200}]}, {"id": 80951, "name": "Legacy of the Frost Witch", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [], "prev": [80972, 92219], "entries": [{"id": 101815, "definitionId": 106893, "maxRanks": 2, "type": "passive", "name": "Legacy of the Frost Witch", "spellId": 384450, "icon": "ability_thunderking_thunderstruck", "index": 100}]}, {"id": 80950, "name": "Static Accumulation", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80949], "prev": [92219], "entries": [{"id": 101814, "definitionId": 106881, "maxRanks": 2, "type": "passive", "name": "Static Accumulation", "spellId": 384411, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 80963, "name": "Splintered Elements", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80964], "entries": [{"id": 101828, "definitionId": 106883, "maxRanks": 1, "type": "passive", "name": "Splintered Elements", "spellId": 382042, "icon": "spell_nature_elementalprecision_1", "index": 100}]}, {"id": 80970, "name": "Elemental Spirits / Alpha Wolf", "type": "choice", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80971], "entries": [{"id": 101836, "definitionId": 106890, "maxRanks": 1, "type": "passive", "name": "Elemental Spirits", "spellId": 262624, "icon": "spell_shaman_feralspirit", "index": 100}, {"id": 101835, "definitionId": 106889, "maxRanks": 1, "type": "passive", "name": "Alpha Wolf", "spellId": 198434, "icon": "spell_beastmaster_wolf", "index": 200}]}, {"id": 80949, "name": "Thorim's Invocation", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [80950], "entries": [{"id": 101813, "definitionId": 106882, "maxRanks": 1, "type": "passive", "name": "Thorim's Invocation", "spellId": 384444, "icon": "spell_shaman_ancestralawakening", "index": 100}]}], "heroNodes": [{"id": 94877, "name": "Surging Totem", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 54, "next": [94890, 94874, 94882], "prev": [], "entries": [{"id": 117474, "definitionId": 122486, "maxRanks": 1, "type": "active", "name": "Surging Totem", "spellId": 455630, "visibleSpellId": 444995, "icon": "inv_ability_totemicshaman_surgingtotem", "index": 100}], "freeNode": true}, {"id": 94890, "name": "Totemic Rebound", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94859], "prev": [94877], "entries": [{"id": 117487, "definitionId": 122499, "maxRanks": 1, "type": "passive", "name": "Totemic Rebound", "spellId": 445025, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94874, "name": "Amplification Core / Oversurge", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94891], "prev": [94877], "entries": [{"id": 117471, "definitionId": 122483, "maxRanks": 1, "type": "passive", "name": "Amplification Core", "spellId": 445029, "icon": "ability_evoker_essenceburststacks", "index": 100}, {"id": 125823, "definitionId": 130654, "maxRanks": 1, "type": "passive", "name": "Oversurge", "spellId": 445030, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 94882, "name": "Lively Totems", "type": "single", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "requiresNode": 80942, "next": [94872], "prev": [94877], "entries": [{"id": 117479, "definitionId": 122491, "maxRanks": 1, "type": "passive", "name": "Lively Totems", "spellId": 445034, "icon": "spell_fire_searingtotem", "index": 100}]}, {"id": 94859, "name": "Oversized Totems / Swift Recall", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94871], "prev": [94890], "entries": [{"id": 117456, "definitionId": 122468, "maxRanks": 1, "type": "passive", "name": "Oversized Totems", "spellId": 445026, "icon": "ability_shaman_totemrelocation", "index": 100}, {"id": 125825, "definitionId": 130656, "maxRanks": 1, "type": "passive", "name": "Swift Recall", "spellId": 445027, "icon": "spell_nature_brilliance", "index": 200}]}, {"id": 94891, "name": "Wind Barrier", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94866], "prev": [94874], "entries": [{"id": 117488, "definitionId": 122500, "maxRanks": 1, "type": "passive", "name": "Wind Barrier", "spellId": 445031, "icon": "spell_nature_eyeofthestorm", "index": 100}]}, {"id": 94872, "name": "Reactivity", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "requiresNode": 103590, "next": [94881], "prev": [94882], "entries": [{"id": 117469, "definitionId": 122481, "maxRanks": 1, "type": "passive", "name": "Reactivity", "spellId": 445035, "icon": "spell_fire_totemofwrath", "index": 100}]}, {"id": 94871, "name": "Imbuement Mastery", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "requiresNode": 81049, "next": [94879], "prev": [94859], "entries": [{"id": 117468, "definitionId": 122480, "maxRanks": 1, "type": "passive", "name": "Imbuement Mastery", "spellId": 445028, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 94866, "name": "Pulse Capacitor / Supportive Imbuements", "type": "choice", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94891], "entries": [{"id": 117463, "definitionId": 122475, "maxRanks": 1, "type": "passive", "name": "Pulse Capacitor", "spellId": 445032, "icon": "spell_nature_elementalprecision_1", "index": 100}, {"id": 125824, "definitionId": 130655, "maxRanks": 1, "type": "passive", "name": "Supportive Imbuements", "spellId": 445033, "icon": "ability_shaman_fortifyingwaters", "index": 200}]}, {"id": 94881, "name": "Totemic Coordination / Earthsurge", "type": "choice", "posX": 16200, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94872], "entries": [{"id": 117478, "definitionId": 122490, "maxRanks": 1, "type": "passive", "name": "Totemic Coordination", "spellId": 445036, "icon": "ability_shaman_echooftheelements", "index": 100}, {"id": 125822, "definitionId": 130653, "maxRanks": 1, "type": "passive", "name": "Earthsurge", "spellId": 455590, "icon": "inv_elementalearth2", "index": 200}]}, {"id": 94879, "name": "Whirling Elements", "type": "single", "posX": 15600, "posY": 3600, "maxRanks": 1, "subTreeId": 54, "next": [], "prev": [94866, 94871, 94881], "entries": [{"id": 117476, "definitionId": 122488, "maxRanks": 1, "type": "passive", "name": "Whirling Elements", "spellId": 445024, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}, {"id": 94892, "name": "Tempest", "type": "single", "posX": 8100, "posY": 4200, "maxRanks": 1, "entryNode": true, "subTreeId": 55, "next": [94886, 94893, 94863], "prev": [], "entries": [{"id": 117489, "definitionId": 122501, "maxRanks": 1, "type": "passive", "name": "Tempest", "spellId": 454009, "icon": "inv_ability_stormcallershaman_tempest", "index": 100}], "freeNode": true}, {"id": 94886, "name": "Unlimited Power", "type": "single", "posX": 7500, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94873], "prev": [94892], "entries": [{"id": 117483, "definitionId": 122495, "maxRanks": 1, "type": "passive", "name": "Unlimited Power", "spellId": 454391, "icon": "spell_nature_purge", "index": 100}]}, {"id": 94893, "name": "Stormcaller", "type": "single", "posX": 8100, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94885], "prev": [94892], "entries": [{"id": 117490, "definitionId": 122502, "maxRanks": 1, "type": "passive", "name": "Stormcaller", "spellId": 454021, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94863, "name": "Lightning Conduit / Electroshock", "type": "choice", "posX": 8700, "posY": 4800, "maxRanks": 1, "subTreeId": 55, "next": [94889], "prev": [94892], "entries": [{"id": 117460, "definitionId": 122472, "maxRanks": 1, "type": "passive", "name": "Lightning Conduit", "spellId": 467778, "icon": "spell_shaman_staticshock", "index": 100}, {"id": 128226, "definitionId": 133033, "maxRanks": 1, "type": "passive", "name": "Electroshock", "spellId": 454022, "icon": "ability_thunderking_overcharge", "index": 200}]}, {"id": 94873, "name": "Storm Swell / Supercharge", "type": "choice", "posX": 7500, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94870], "prev": [94886], "entries": [{"id": 117470, "definitionId": 122482, "maxRanks": 1, "type": "passive", "name": "Storm Swell", "spellId": 455088, "icon": "spell_nature_unrelentingstorm", "index": 100}, {"id": 128225, "definitionId": 133032, "maxRanks": 1, "type": "passive", "name": "Supercharge", "spellId": 455110, "icon": "inv_misc_stormlordsfavor", "index": 200}]}, {"id": 94885, "name": "Arc Discharge", "type": "single", "posX": 8100, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94868], "prev": [94893], "entries": [{"id": 117482, "definitionId": 122494, "maxRanks": 1, "type": "passive", "name": "Arc Discharge", "spellId": 455096, "icon": "ability_thunderking_balllightning", "index": 100}]}, {"id": 94889, "name": "Rolling Thunder", "type": "single", "posX": 8700, "posY": 5400, "maxRanks": 1, "subTreeId": 55, "next": [94880], "prev": [94863], "entries": [{"id": 117486, "definitionId": 122498, "maxRanks": 1, "type": "passive", "name": "Rolling Thunder", "spellId": 454026, "icon": "spell_lightning_lightningbolt01", "index": 100}]}, {"id": 94870, "name": "Voltaic Surge", "type": "single", "posX": 7500, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94873], "entries": [{"id": 117467, "definitionId": 122479, "maxRanks": 1, "type": "passive", "name": "Voltaic Surge", "spellId": 454919, "icon": "spell_nature_callstorm", "index": 100}]}, {"id": 94868, "name": "Conductive Energy", "type": "single", "posX": 8100, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94885], "entries": [{"id": 117465, "definitionId": 122477, "maxRanks": 1, "type": "passive", "name": "Conductive Energy", "spellId": 455123, "icon": "inv_rod_enchantedcobalt", "index": 100}]}, {"id": 94880, "name": "Nature's Protection / Surging Currents", "type": "choice", "posX": 8700, "posY": 6000, "maxRanks": 1, "subTreeId": 55, "next": [94867], "prev": [94889], "entries": [{"id": 117477, "definitionId": 122489, "maxRanks": 1, "type": "passive", "name": "Nature's Protection", "spellId": 454027, "icon": "spell_nature_lightningshield", "index": 100}, {"id": 125617, "definitionId": 130449, "maxRanks": 1, "type": "passive", "name": "Surging Currents", "spellId": 454372, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94867, "name": "Awakening Storms", "type": "single", "posX": 8100, "posY": 6600, "maxRanks": 1, "subTreeId": 55, "next": [], "prev": [94868, 94870, 94880], "entries": [{"id": 117464, "definitionId": 122476, "maxRanks": 1, "type": "passive", "name": "Awakening Storms", "spellId": 455129, "icon": "spell_nature_stormreach", "index": 100}]}], "subTreeNodes": [{"id": 99847, "name": "Stormbringer / Totemic", "type": "subtree", "posX": 8100, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123381, "type": "subtree", "name": "Stormbringer", "traitSubTreeId": 55, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-stormbringer", "nodes": [94892, 94886, 94893, 94863, 94873, 94885, 94889, 94870, 94868, 94880, 94867]}, {"id": 123379, "type": "subtree", "name": "Totemic", "traitSubTreeId": 54, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-totemic", "nodes": [94877, 94890, 94874, 94882, 94859, 94891, 94872, 94871, 94866, 94881, 94879]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810, 103848, 103871, 103915]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/shaman_restoration.json b/simc_support/game_data/data_files/trees/shaman_restoration.json index 7e3956d..8c476fc 100644 --- a/simc_support/game_data/data_files/trees/shaman_restoration.json +++ b/simc_support/game_data/data_files/trees/shaman_restoration.json @@ -1 +1 @@ -{"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Restoration", "specId": 264, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}], "freeNode": true}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}], "freeNode": true}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}]}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}]}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 81073], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost-orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 81073], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [81073, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 81073, "name": "Improved Purify Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103617, 103590, 103605], "entries": [{"id": 101964, "definitionId": 106962, "maxRanks": 1, "type": "passive", "name": "Improved Purify Spirit", "spellId": 383016, "icon": "ability_shaman_cleansespirit", "index": 0}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103593, 103601, 81073], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 81027, "name": "Riptide", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [81040, 81022, 81026], "prev": [], "entries": [{"id": 101905, "definitionId": 106805, "maxRanks": 1, "type": "active", "name": "Riptide", "spellId": 61295, "icon": "spell_nature_riptide", "index": 100}]}, {"id": 81040, "name": "Healing Rain", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [103428, 81039], "prev": [81027], "entries": [{"id": 101923, "definitionId": 106911, "maxRanks": 1, "type": "active", "name": "Healing Rain", "spellId": 73920, "icon": "spell_nature_giftofthewaterspirit", "index": 100}]}, {"id": 81022, "name": "Healing Stream Totem", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [81021], "prev": [81027], "entries": [{"id": 101900, "definitionId": 106920, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392916, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103428, "name": "Deluge", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [92677, 103429, 81038], "prev": [81040], "entries": [{"id": 127672, "definitionId": 132481, "maxRanks": 1, "type": "passive", "name": "Deluge", "spellId": 200076, "icon": "ability_shawaterelemental_reform", "index": 100}]}, {"id": 81039, "name": "Acid Rain", "type": "single", "posX": 12000, "posY": 2400, "maxRanks": 1, "next": [103429], "prev": [81040], "entries": [{"id": 101922, "definitionId": 106910, "maxRanks": 1, "type": "passive", "name": "Acid Rain", "spellId": 378443, "icon": "spell_nature_acid_01", "index": 200}]}, {"id": 81026, "name": "Healing Wave", "type": "single", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [103429, 81024, 81033], "prev": [81027], "entries": [{"id": 101904, "definitionId": 106918, "maxRanks": 1, "type": "active", "name": "Healing Wave", "spellId": 77472, "icon": "spell_nature_healingwavelesser", "index": 100}]}, {"id": 81021, "name": "Tidal Waves", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [81024, 81018], "prev": [81022], "entries": [{"id": 101899, "definitionId": 106921, "maxRanks": 1, "type": "passive", "name": "Tidal Waves", "spellId": 51564, "icon": "spell_shaman_tidalwaves", "index": 100}]}, {"id": 92677, "name": "Overflowing Shores", "type": "single", "posX": 10800, "posY": 3000, "maxRanks": 1, "next": [81047], "prev": [103428], "entries": [{"id": 114813, "definitionId": 119820, "maxRanks": 1, "type": "passive", "name": "Overflowing Shores", "spellId": 383222, "icon": "spell_nature_giftofthewaterspirit", "index": 100}]}, {"id": 103429, "name": "Ancestral Vigor", "type": "single", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [81038], "prev": [103428, 81026, 81039], "entries": [{"id": 127673, "definitionId": 132482, "maxRanks": 1, "type": "passive", "name": "Ancestral Vigor", "spellId": 207401, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 81024, "name": "Resurgence", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [81019], "prev": [81026, 81021], "entries": [{"id": 101902, "definitionId": 106916, "maxRanks": 1, "type": "passive", "name": "Resurgence", "spellId": 16196, "icon": "ability_shaman_watershield", "index": 100}]}, {"id": 81018, "name": "Water Totem Mastery", "type": "single", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [81019, 81048], "prev": [81021], "entries": [{"id": 101895, "definitionId": 106925, "maxRanks": 1, "type": "passive", "name": "Water Totem Mastery", "spellId": 382030, "icon": "ability_shaman_totemcooldownrefund", "index": 100}]}, {"id": 81038, "name": "White Water", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81047, 81032, 81037], "prev": [103428, 103429], "entries": [{"id": 101920, "definitionId": 106908, "maxRanks": 1, "type": "passive", "name": "White Water", "spellId": 462587, "icon": "ability_shawaterelemental_swirl", "index": 100}]}, {"id": 81033, "name": "Spirit Link Totem", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81032, 103432, 81045], "prev": [81026], "entries": [{"id": 101913, "definitionId": 106933, "maxRanks": 1, "type": "active", "name": "Spirit Link Totem", "spellId": 98008, "icon": "spell_shaman_spiritlink", "index": 100}]}, {"id": 81019, "name": "Master of the Elements", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81045, 81031, 81046], "prev": [81018, 81024], "entries": [{"id": 101896, "definitionId": 106923, "maxRanks": 1, "type": "passive", "name": "Master of the Elements", "spellId": 462375, "icon": "spell_nature_elementalabsorption", "index": 300}]}, {"id": 81048, "name": "Living Stream / Cloudburst Totem", "type": "choice", "posX": 15000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81031, 81049], "prev": [81018], "entries": [{"id": 101934, "definitionId": 106927, "maxRanks": 1, "type": "passive", "name": "Living Stream", "spellId": 382482, "icon": "spell_nature_natureresistancetotem", "index": 100}, {"id": 101933, "definitionId": 106926, "maxRanks": 1, "type": "active", "name": "Cloudburst Totem", "spellId": 157153, "icon": "ability_shaman_condensationtotem", "index": 200}]}, {"id": 81047, "name": "Torrent", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81037, 103436], "prev": [81038, 92677], "entries": [{"id": 101932, "definitionId": 106929, "maxRanks": 1, "type": "passive", "name": "Torrent", "spellId": 200072, "icon": "spell_nature_riptide", "index": 100}]}, {"id": 81032, "name": "Healing Tide Totem", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81037, 92675, 81044], "prev": [81038, 81033], "entries": [{"id": 101912, "definitionId": 106942, "maxRanks": 1, "type": "active", "name": "Healing Tide Totem", "spellId": 108280, "icon": "ability_shaman_healingtide", "index": 100}]}, {"id": 103432, "name": "Spouting Spirits", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81044], "prev": [81033], "entries": [{"id": 127678, "definitionId": 132487, "maxRanks": 1, "type": "passive", "name": "Spouting Spirits", "spellId": 462383, "icon": "spell_shaman_spiritlink", "index": 100}]}, {"id": 81045, "name": "Mana Tide Totem", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81044, 92681, 81046], "prev": [81019, 81033], "entries": [{"id": 101929, "definitionId": 106932, "maxRanks": 1, "type": "active", "name": "Mana Tide Totem", "spellId": 16191, "icon": "ability_shaman_manatidetotem", "index": 100}]}, {"id": 81031, "name": "Ancestral Reach / Flow of the Tides", "type": "choice", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81046, 81049], "prev": [81048, 81019], "entries": [{"id": 101911, "definitionId": 106944, "maxRanks": 1, "type": "passive", "name": "Ancestral Reach", "spellId": 382732, "icon": "spell_nature_healingwavegreater", "index": 100}, {"id": 101910, "definitionId": 106943, "maxRanks": 1, "type": "passive", "name": "Flow of the Tides", "spellId": 382039, "icon": "spell_frost_manarecharge", "index": 200}]}, {"id": 81037, "name": "Undulation / Unleash Life", "type": "choice", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103436, 81055], "prev": [81032, 81047, 81038], "entries": [{"id": 101919, "definitionId": 106907, "maxRanks": 1, "type": "passive", "name": "Undulation", "spellId": 200071, "icon": "spell_nature_healingway", "index": 100}, {"id": 101918, "definitionId": 106906, "maxRanks": 1, "type": "active", "name": "Unleash Life", "spellId": 73685, "icon": "spell_shaman_unleashweapon_life", "index": 200}]}, {"id": 92675, "name": "Current Control / Tide Turner", "type": "choice", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81055], "prev": [81032], "entries": [{"id": 114811, "definitionId": 119818, "maxRanks": 1, "type": "passive", "name": "Current Control", "spellId": 404015, "icon": "ability_shaman_healingtide", "index": 100}, {"id": 114810, "definitionId": 119817, "maxRanks": 1, "type": "passive", "name": "Tide Turner", "spellId": 404019, "icon": "ability_deathknight_frozencenter", "index": 200}]}, {"id": 81044, "name": "Echo of the Elements", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81055, 81041], "prev": [81045, 81032, 103432], "entries": [{"id": 101928, "definitionId": 106941, "maxRanks": 1, "type": "passive", "name": "Echo of the Elements", "spellId": 333919, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 92681, "name": "Spiritwalker's Tidal Totem", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81041], "prev": [81045], "entries": [{"id": 114817, "definitionId": 119824, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Tidal Totem", "spellId": 404522, "icon": "spell_nature_regeneration_02", "index": 200}]}, {"id": 81046, "name": "Earthen Wall Totem / Ancestral Protection Totem", "type": "choice", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81041, 103430], "prev": [81045, 81031, 81019], "entries": [{"id": 101931, "definitionId": 106931, "maxRanks": 1, "type": "active", "name": "Earthen Wall Totem", "spellId": 198838, "icon": "spell_nature_stoneskintotem", "index": 100}, {"id": 101930, "definitionId": 106930, "maxRanks": 1, "type": "active", "name": "Ancestral Protection Totem", "spellId": 207399, "icon": "spell_nature_reincarnation", "index": 200}]}, {"id": 81049, "name": "Earthliving Weapon", "type": "single", "posX": 15000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103430, 81050], "prev": [81048, 81031], "entries": [{"id": 101935, "definitionId": 106928, "maxRanks": 1, "type": "active", "name": "Earthliving Weapon", "spellId": 382021, "icon": "spell_shaman_giftearthmother", "index": 100}]}, {"id": 103436, "name": "Primal Tide Core", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103434, 81052], "prev": [81047, 81037], "entries": [{"id": 127682, "definitionId": 132491, "maxRanks": 1, "type": "passive", "name": "Primal Tide Core", "spellId": 382045, "icon": "ability_shaman_repulsiontotem", "index": 100}]}, {"id": 81055, "name": "Ascendance", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81052, 103433, 103427], "prev": [92675, 81037, 81044], "entries": [{"id": 101942, "definitionId": 106939, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114052, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 81041, "name": "Tidebringer", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103427, 81043], "prev": [92681, 81046, 81044], "entries": [{"id": 101924, "definitionId": 106915, "maxRanks": 1, "type": "passive", "name": "Tidebringer", "spellId": 236501, "icon": "spell_shaman_blessingofeternals", "index": 100}]}, {"id": 103430, "name": "Earthen Harmony", "type": "single", "posX": 14400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81043, 103435], "prev": [81049, 81046], "entries": [{"id": 127674, "definitionId": 132483, "maxRanks": 1, "type": "passive", "name": "Earthen Harmony", "spellId": 382020, "icon": "spell_shaman_improvedearthshield", "index": 100}]}, {"id": 103434, "name": "Tidewaters", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81036], "prev": [103436], "entries": [{"id": 127680, "definitionId": 132489, "maxRanks": 1, "type": "passive", "name": "Tidewaters", "spellId": 462424, "icon": "ability_shawaterelemental_split", "index": 100}]}, {"id": 81052, "name": "Undercurrent", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [81036, 80976], "prev": [103436, 81055], "entries": [{"id": 101939, "definitionId": 106935, "maxRanks": 2, "type": "passive", "name": "Undercurrent", "spellId": 382194, "icon": "spell_fire_bluehellfire", "index": 100}]}, {"id": 103433, "name": "First Ascendant / Preeminence", "type": "choice", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80976], "prev": [81055], "entries": [{"id": 127679, "definitionId": 132488, "maxRanks": 1, "type": "passive", "name": "First Ascendant", "spellId": 462440, "icon": "spell_shaman_astralshift", "index": 100}, {"id": 127675, "definitionId": 132484, "maxRanks": 1, "type": "passive", "name": "Preeminence", "spellId": 462443, "icon": "spell_shaman_improvedreincarnation", "index": 200}]}, {"id": 103427, "name": "Wavespeaker's Blessing", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80976, 81042], "prev": [81041, 81055], "entries": [{"id": 127671, "definitionId": 132480, "maxRanks": 2, "type": "passive", "name": "Wavespeaker's Blessing", "spellId": 381946, "icon": "inv_alchemist_81_spiritedalchemiststone", "index": 100}]}, {"id": 81043, "name": "Ancestral Awakening", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [81042, 81051], "prev": [81041, 103430], "entries": [{"id": 101927, "definitionId": 106914, "maxRanks": 2, "type": "passive", "name": "Ancestral Awakening", "spellId": 382309, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 103435, "name": "Reactive Warding", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81051], "prev": [103430], "entries": [{"id": 127681, "definitionId": 132490, "maxRanks": 1, "type": "passive", "name": "Reactive Warding", "spellId": 462454, "icon": "inv_10_elementalcombinedfoozles_water", "index": 100}]}, {"id": 81050, "name": "Improved Earthliving Weapon", "type": "single", "posX": 15000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81051], "prev": [81049], "entries": [{"id": 101936, "definitionId": 106938, "maxRanks": 1, "type": "passive", "name": "Improved Earthliving Weapon", "spellId": 382315, "icon": "spell_shaman_giftearthmother", "index": 100}]}, {"id": 81036, "name": "Primordial Wave", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103434, 81052], "entries": [{"id": 101917, "definitionId": 106905, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 428332, "icon": "ability_maldraxxus_shaman", "index": 100}]}, {"id": 80976, "name": "Downpour", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103427, 103433, 81052], "entries": [{"id": 101842, "definitionId": 106901, "maxRanks": 1, "type": "passive", "name": "Downpour", "spellId": 462486, "icon": "ability_mage_waterjet", "index": 100}]}, {"id": 81042, "name": "High Tide", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103427, 81043], "entries": [{"id": 101925, "definitionId": 106912, "maxRanks": 1, "type": "passive", "name": "High Tide", "spellId": 157154, "icon": "spell_shaman_hightide", "index": 400}]}, {"id": 81051, "name": "Deeply Rooted Elements / Wellspring", "type": "choice", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81050, 81043, 103435], "entries": [{"id": 101937, "definitionId": 106936, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 300}, {"id": 127676, "definitionId": 132485, "maxRanks": 1, "type": "active", "name": "Wellspring", "spellId": 197995, "icon": "ability_shawaterelemental_split", "index": 400}]}], "heroNodes": [{"id": 94888, "name": "Call of the Ancestors", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 56, "requiresNode": 81037, "next": [94862, 94869, 94884], "prev": [], "entries": [{"id": 117485, "definitionId": 122497, "maxRanks": 1, "type": "passive", "name": "Call of the Ancestors", "spellId": 443450, "icon": "ability_racial_ancestralcall", "index": 100}], "freeNode": true}, {"id": 94877, "name": "Surging Totem", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 54, "next": [94890, 94874, 94882], "prev": [], "entries": [{"id": 117474, "definitionId": 122486, "maxRanks": 1, "type": "active", "name": "Surging Totem", "spellId": 455630, "visibleSpellId": 444995, "icon": "inv_ability_totemicshaman_surgingtotem", "index": 100}], "freeNode": true}, {"id": 94862, "name": "Latent Wisdom / Ancient Fellowship", "type": "choice", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94887], "prev": [94888], "entries": [{"id": 117459, "definitionId": 122471, "maxRanks": 1, "type": "passive", "name": "Latent Wisdom", "spellId": 443449, "icon": "spell_holy_spiritualguidence", "index": 100}, {"id": 123632, "definitionId": 128470, "maxRanks": 1, "type": "passive", "name": "Ancient Fellowship", "spellId": 443423, "icon": "spell_shaman_astralshift", "index": 200}]}, {"id": 94884, "name": "Heed My Call / Routine Communication", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94860], "prev": [94888], "entries": [{"id": 117481, "definitionId": 122493, "maxRanks": 1, "type": "passive", "name": "Heed My Call", "spellId": 443444, "icon": "spell_unused2", "index": 100}, {"id": 123630, "definitionId": 128468, "maxRanks": 1, "type": "passive", "name": "Routine Communication", "spellId": 443445, "icon": "spell_nature_undyingstrength", "index": 200}]}, {"id": 94869, "name": "Elemental Reverb", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94861], "prev": [94888], "entries": [{"id": 117466, "definitionId": 122478, "maxRanks": 1, "type": "passive", "name": "Elemental Reverb", "spellId": 443418, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 94890, "name": "Totemic Rebound", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94859], "prev": [94877], "entries": [{"id": 117487, "definitionId": 122499, "maxRanks": 1, "type": "passive", "name": "Totemic Rebound", "spellId": 445025, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94874, "name": "Amplification Core / Oversurge", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94891], "prev": [94877], "entries": [{"id": 117471, "definitionId": 122483, "maxRanks": 1, "type": "passive", "name": "Amplification Core", "spellId": 445029, "icon": "ability_evoker_essenceburststacks", "index": 100}, {"id": 125823, "definitionId": 130654, "maxRanks": 1, "type": "passive", "name": "Oversurge", "spellId": 445030, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 94882, "name": "Lively Totems", "type": "single", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "requiresNode": 80942, "next": [94872], "prev": [94877], "entries": [{"id": 117479, "definitionId": 122491, "maxRanks": 1, "type": "passive", "name": "Lively Totems", "spellId": 445034, "icon": "spell_fire_searingtotem", "index": 100}]}, {"id": 94887, "name": "Offering from Beyond", "type": "single", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94858], "prev": [94862], "entries": [{"id": 117484, "definitionId": 122496, "maxRanks": 1, "type": "passive", "name": "Offering from Beyond", "spellId": 443451, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 94860, "name": "Primordial Capacity", "type": "single", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94883], "prev": [94884], "entries": [{"id": 117457, "definitionId": 122469, "maxRanks": 1, "type": "passive", "name": "Primordial Capacity", "spellId": 443448, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 94861, "name": "Spiritwalker's Momentum", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94875], "prev": [94869], "entries": [{"id": 117458, "definitionId": 122470, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Momentum", "spellId": 443425, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 94859, "name": "Oversized Totems / Swift Recall", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94871], "prev": [94890], "entries": [{"id": 117456, "definitionId": 122468, "maxRanks": 1, "type": "passive", "name": "Oversized Totems", "spellId": 445026, "icon": "ability_shaman_totemrelocation", "index": 100}, {"id": 125825, "definitionId": 130656, "maxRanks": 1, "type": "passive", "name": "Swift Recall", "spellId": 445027, "icon": "spell_nature_brilliance", "index": 200}]}, {"id": 94891, "name": "Wind Barrier", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94866], "prev": [94874], "entries": [{"id": 117488, "definitionId": 122500, "maxRanks": 1, "type": "passive", "name": "Wind Barrier", "spellId": 445031, "icon": "spell_nature_eyeofthestorm", "index": 100}]}, {"id": 94872, "name": "Reactivity", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "requiresNode": 103590, "next": [94881], "prev": [94882], "entries": [{"id": 117469, "definitionId": 122481, "maxRanks": 1, "type": "passive", "name": "Reactivity", "spellId": 445035, "icon": "spell_fire_totemofwrath", "index": 100}]}, {"id": 94858, "name": "Natural Harmony / Earthen Communion", "type": "choice", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94887], "entries": [{"id": 117455, "definitionId": 122467, "maxRanks": 1, "type": "passive", "name": "Natural Harmony", "spellId": 443442, "icon": "spell_nature_natureguardian", "index": 100}, {"id": 123631, "definitionId": 128469, "maxRanks": 1, "type": "passive", "name": "Earthen Communion", "spellId": 443441, "icon": "spell_nature_skinofearth", "index": 200}]}, {"id": 94883, "name": "Maelstrom Supremacy", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94860], "entries": [{"id": 117480, "definitionId": 122492, "maxRanks": 1, "type": "passive", "name": "Maelstrom Supremacy", "spellId": 443447, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 94875, "name": "Final Calling", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94861], "entries": [{"id": 117472, "definitionId": 122484, "maxRanks": 1, "type": "passive", "name": "Final Calling", "spellId": 443446, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 94871, "name": "Imbuement Mastery", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "requiresNode": 81049, "next": [94879], "prev": [94859], "entries": [{"id": 117468, "definitionId": 122480, "maxRanks": 1, "type": "passive", "name": "Imbuement Mastery", "spellId": 445028, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 94866, "name": "Pulse Capacitor / Supportive Imbuements", "type": "choice", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94891], "entries": [{"id": 117463, "definitionId": 122475, "maxRanks": 1, "type": "passive", "name": "Pulse Capacitor", "spellId": 445032, "icon": "spell_nature_elementalprecision_1", "index": 100}, {"id": 125824, "definitionId": 130655, "maxRanks": 1, "type": "passive", "name": "Supportive Imbuements", "spellId": 445033, "icon": "ability_shaman_fortifyingwaters", "index": 200}]}, {"id": 94881, "name": "Totemic Coordination / Earthsurge", "type": "choice", "posX": 16200, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94872], "entries": [{"id": 117478, "definitionId": 122490, "maxRanks": 1, "type": "passive", "name": "Totemic Coordination", "spellId": 445036, "icon": "ability_shaman_echooftheelements", "index": 100}, {"id": 125822, "definitionId": 130653, "maxRanks": 1, "type": "passive", "name": "Earthsurge", "spellId": 455590, "icon": "inv_elementalearth2", "index": 200}]}, {"id": 94894, "name": "Ancestral Swiftness", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 56, "next": [], "prev": [94883, 94858, 94875], "entries": [{"id": 117491, "definitionId": 122503, "maxRanks": 1, "type": "active", "name": "Ancestral Swiftness", "spellId": 448861, "visibleSpellId": 443454, "icon": "inv_ability_farseershaman_ancestralswiftness", "index": 100}]}, {"id": 94879, "name": "Whirling Elements", "type": "single", "posX": 15600, "posY": 3600, "maxRanks": 1, "subTreeId": 54, "next": [], "prev": [94866, 94871, 94881], "entries": [{"id": 117476, "definitionId": 122488, "maxRanks": 1, "type": "passive", "name": "Whirling Elements", "spellId": 445024, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}], "subTreeNodes": [{"id": 99846, "name": "Farseer / Totemic", "type": "subtree", "posX": 9000, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123380, "type": "subtree", "name": "Farseer", "traitSubTreeId": 56, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-farseer", "nodes": [94888, 94862, 94884, 94869, 94887, 94860, 94861, 94858, 94883, 94875, 94894]}, {"id": 123378, "type": "subtree", "name": "Totemic", "traitSubTreeId": 54, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-totemic", "nodes": [94877, 94890, 94874, 94882, 94859, 94891, 94872, 94871, 94866, 94881, 94879]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810]} \ No newline at end of file +{"traitTreeId": 786, "className": "Shaman", "classId": 7, "specName": "Restoration", "specId": 264, "classNodes": [{"id": 103588, "name": "Chain Heal", "type": "single", "posX": 1800, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596], "prev": [], "entries": [{"id": 127861, "definitionId": 132670, "maxRanks": 1, "type": "active", "name": "Chain Heal", "spellId": 1064, "icon": "spell_nature_healingwavegreater", "index": 100}], "freeNode": true}, {"id": 103598, "name": "Lava Burst", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103596, 103615, 103605], "prev": [], "entries": [{"id": 127873, "definitionId": 132682, "maxRanks": 1, "type": "active", "name": "Lava Burst", "spellId": 51505, "icon": "spell_shaman_lavaburst", "index": 100}], "freeNode": true}, {"id": 103616, "name": "Astral Shift", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103615, 103611, 103581], "prev": [], "entries": [{"id": 127893, "definitionId": 132702, "maxRanks": 1, "type": "active", "name": "Astral Shift", "spellId": 108271, "icon": "ability_shaman_astralshift", "index": 100}]}, {"id": 103583, "name": "Chain Lightning", "type": "single", "posX": 6000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [103604, 103614, 103582], "prev": [], "entries": [{"id": 127856, "definitionId": 132665, "maxRanks": 1, "type": "active", "name": "Chain Lightning", "spellId": 188443, "icon": "spell_nature_chainlightning", "index": 100}]}, {"id": 103596, "name": "Earth Shield", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [103602, 103590], "prev": [103588, 103598], "entries": [{"id": 127871, "definitionId": 132680, "maxRanks": 1, "type": "active", "name": "Earth Shield", "spellId": 974, "icon": "spell_nature_skinofearth", "index": 100}]}, {"id": 103615, "name": "Wind Shear", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 1, "next": [103605, 103610, 103579], "prev": [103598, 103616], "entries": [{"id": 127892, "definitionId": 132701, "maxRanks": 1, "type": "active", "name": "Wind Shear", "spellId": 57994, "icon": "spell_nature_cyclone", "index": 100}]}, {"id": 103611, "name": "Planes Traveler / Astral Bulwark", "type": "choice", "posX": 4200, "posY": 1800, "maxRanks": 1, "next": [103579], "prev": [103616], "entries": [{"id": 127888, "definitionId": 132697, "maxRanks": 1, "type": "passive", "name": "Planes Traveler", "spellId": 381647, "icon": "spell_shaman_astralshift", "index": 200}, {"id": 127887, "definitionId": 132696, "maxRanks": 1, "type": "passive", "name": "Astral Bulwark", "spellId": 377933, "icon": "spell_shaman_ancestralawakening", "index": 300}]}, {"id": 103581, "name": "Spirit Wolf / Thunderous Paws", "type": "choice", "posX": 4800, "posY": 1800, "maxRanks": 1, "next": [103579, 103591], "prev": [103616], "entries": [{"id": 127854, "definitionId": 132663, "maxRanks": 1, "type": "passive", "name": "Spirit Wolf", "spellId": 260878, "icon": "spell_hunter_lonewolf", "index": 100}, {"id": 127853, "definitionId": 132662, "maxRanks": 1, "type": "passive", "name": "Thunderous Paws", "spellId": 378075, "icon": "ability_hunter_longevity", "index": 200}]}, {"id": 103604, "name": "Frost Shock", "type": "single", "posX": 5400, "posY": 1800, "maxRanks": 1, "next": [103591, 103619], "prev": [103583], "entries": [{"id": 127879, "definitionId": 132688, "maxRanks": 1, "type": "active", "name": "Frost Shock", "spellId": 196840, "icon": "spell_frost_frostshock", "index": 100}]}, {"id": 103614, "name": "Winds of Al'Akir", "type": "single", "posX": 6600, "posY": 1800, "maxRanks": 1, "next": [103585], "prev": [103583], "entries": [{"id": 127891, "definitionId": 132700, "maxRanks": 1, "type": "passive", "name": "Winds of Al'Akir", "spellId": 382215, "icon": "ability_druid_galewinds", "index": 100}]}, {"id": 103602, "name": "Elemental Orbit", "type": "single", "posX": 1800, "posY": 2400, "maxRanks": 1, "next": [103594], "prev": [103596], "entries": [{"id": 127877, "definitionId": 132686, "maxRanks": 1, "type": "passive", "name": "Elemental Orbit", "spellId": 383010, "icon": "ability_mage_shattershield", "index": 100}]}, {"id": 103605, "name": "Fire and Ice", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [103590, 103617, 81073], "prev": [103598, 103615], "entries": [{"id": 127880, "definitionId": 132689, "maxRanks": 1, "type": "passive", "name": "Fire and Ice", "spellId": 382886, "icon": "spell_firefrost-orb", "index": 100}]}, {"id": 103610, "name": "Ancestral Wolf Affinity", "type": "single", "posX": 3600, "posY": 2400, "maxRanks": 1, "next": [103617], "prev": [103615], "entries": [{"id": 127886, "definitionId": 132695, "maxRanks": 1, "type": "passive", "name": "Ancestral Wolf Affinity", "spellId": 382197, "icon": "spell_beastmaster_wolf", "index": 100}]}, {"id": 103579, "name": "Capacitor Totem", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [103617, 103618], "prev": [103581, 103611, 103615], "entries": [{"id": 127851, "definitionId": 132660, "maxRanks": 1, "type": "active", "name": "Capacitor Totem", "spellId": 192058, "icon": "spell_nature_brilliance", "index": 100}]}, {"id": 103591, "name": "Spirit Walk / Gust of Wind", "type": "choice", "posX": 4800, "posY": 2400, "maxRanks": 1, "next": [103624, 103613], "prev": [103581, 103604], "entries": [{"id": 127865, "definitionId": 132674, "maxRanks": 1, "type": "active", "name": "Spirit Walk", "spellId": 58875, "icon": "ability_tracking", "index": 100}, {"id": 127864, "definitionId": 132673, "maxRanks": 1, "type": "active", "name": "Gust of Wind", "spellId": 192063, "icon": "inv_misc_volatileair", "index": 200}]}, {"id": 103619, "name": "Encasing Cold / Arctic Snowstorm", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [103624], "prev": [103604], "entries": [{"id": 127898, "definitionId": 132707, "maxRanks": 1, "type": "passive", "name": "Encasing Cold", "spellId": 462762, "icon": "ability_mage_coldasice", "index": 100}, {"id": 127897, "definitionId": 132706, "maxRanks": 1, "type": "passive", "name": "Arctic Snowstorm", "spellId": 462764, "icon": "spell_frost_glacier", "index": 200}]}, {"id": 103582, "name": "Brimming with Life", "type": "single", "posX": 6000, "posY": 2400, "maxRanks": 1, "next": [103624, 103585, 103622], "prev": [103583], "entries": [{"id": 127855, "definitionId": 132664, "maxRanks": 1, "type": "passive", "name": "Brimming with Life", "spellId": 381689, "icon": "inv_jewelry_talisman_06", "index": 100}]}, {"id": 103590, "name": "Healing Stream Totem", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [103601, 81073], "prev": [103596, 103605], "entries": [{"id": 127863, "definitionId": 132672, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392915, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103617, "name": "Earthgrab Totem", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [81073, 103593], "prev": [103579, 103605, 103610], "entries": [{"id": 127894, "definitionId": 132703, "maxRanks": 1, "type": "active", "name": "Earthgrab Totem", "spellId": 51485, "icon": "spell_nature_stranglevines", "index": 100}]}, {"id": 103618, "name": "Static Charge / Guardian's Cudgel", "type": "choice", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [103593, 103613, 103623], "prev": [103579], "entries": [{"id": 127896, "definitionId": 132705, "maxRanks": 1, "type": "passive", "name": "Static Charge", "spellId": 265046, "icon": "spell_nature_brilliance", "index": 100}, {"id": 127895, "definitionId": 132704, "maxRanks": 1, "type": "passive", "name": "Guardian's Cudgel", "spellId": 381819, "icon": "inv_mace_2h_draenorcrafted_d_01_b_alliance", "index": 200}]}, {"id": 103624, "name": "Purge / Greater Purge", "type": "choice", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [103613, 103622], "prev": [103619, 103591, 103582], "entries": [{"id": 127905, "definitionId": 132714, "maxRanks": 1, "type": "active", "name": "Purge", "spellId": 370, "icon": "spell_nature_purge", "index": 100}, {"id": 127904, "definitionId": 132713, "maxRanks": 1, "type": "active", "name": "Greater Purge", "spellId": 378773, "icon": "spell_shaman_focusedstrikes", "index": 200}]}, {"id": 103585, "name": "Earth Elemental", "type": "single", "posX": 6600, "posY": 3000, "maxRanks": 1, "next": [103622, 103612], "prev": [103614, 103582], "entries": [{"id": 127858, "definitionId": 132667, "maxRanks": 1, "type": "active", "name": "Earth Elemental", "spellId": 198103, "icon": "spell_nature_earthelemental_totem", "index": 100}]}, {"id": 103601, "name": "Elemental Resistance", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103594, 103597], "prev": [103590], "entries": [{"id": 127876, "definitionId": 132685, "maxRanks": 1, "type": "passive", "name": "Elemental Resistance", "spellId": 462368, "icon": "spell_fireresistancetotem_01", "index": 100}]}, {"id": 81073, "name": "Improved Purify Spirit", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597], "prev": [103617, 103590, 103605], "entries": [{"id": 101964, "definitionId": 106962, "maxRanks": 1, "type": "passive", "name": "Improved Purify Spirit", "spellId": 383016, "icon": "ability_shaman_cleansespirit", "index": 0}]}, {"id": 103593, "name": "Tremor Totem", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103597, 103623], "prev": [103618, 103617], "entries": [{"id": 127868, "definitionId": 132677, "maxRanks": 1, "type": "active", "name": "Tremor Totem", "spellId": 8143, "icon": "spell_nature_tremortotem", "index": 100}]}, {"id": 103613, "name": "Nature's Guardian", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103623, 103627, 103625], "prev": [103624, 103618, 103591], "entries": [{"id": 127890, "definitionId": 132699, "maxRanks": 1, "type": "passive", "name": "Nature's Guardian", "spellId": 30884, "icon": "spell_nature_natureguardian", "index": 100}]}, {"id": 103622, "name": "Nature's Fury", "type": "single", "posX": 6000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [103627, 103606], "prev": [103585, 103624, 103582], "entries": [{"id": 127902, "definitionId": 132711, "maxRanks": 1, "type": "passive", "name": "Nature's Fury", "spellId": 381655, "icon": "spell_nature_spiritarmor", "index": 100}]}, {"id": 103594, "name": "Refreshing Waters", "type": "single", "posX": 1800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584], "prev": [103601, 103602], "entries": [{"id": 127869, "definitionId": 132678, "maxRanks": 1, "type": "passive", "name": "Refreshing Waters", "spellId": 378211, "icon": "ability_shaman_fortifyingwaters", "index": 100}]}, {"id": 103597, "name": "Elemental Warding", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103584, 103810, 103603], "prev": [103593, 103601, 81073], "entries": [{"id": 127872, "definitionId": 132681, "maxRanks": 1, "type": "passive", "name": "Elemental Warding", "spellId": 381650, "icon": "inv_10_elementalcombinedfoozles_primordial", "index": 100}]}, {"id": 103623, "name": "Hex", "type": "single", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103603, 103600, 103625], "prev": [103593, 103613, 103618], "entries": [{"id": 127903, "definitionId": 132712, "maxRanks": 1, "type": "active", "name": "Hex", "spellId": 51514, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103627, "name": "Wind Rush Totem", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103625, 103607, 103606], "prev": [103622, 103613], "entries": [{"id": 127909, "definitionId": 132718, "maxRanks": 1, "type": "active", "name": "Wind Rush Totem", "spellId": 192077, "icon": "ability_shaman_windwalktotem", "index": 200}]}, {"id": 103612, "name": "Primordial Bond", "type": "single", "posX": 6600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [103606], "prev": [103585], "entries": [{"id": 127889, "definitionId": 132698, "maxRanks": 1, "type": "passive", "name": "Primordial Bond", "spellId": 381764, "icon": "inv_elemental_primal_earth", "index": 100}]}, {"id": 103584, "name": "Spiritwalker's Grace", "type": "single", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103626, 103589], "prev": [103597, 103594], "entries": [{"id": 127857, "definitionId": 132666, "maxRanks": 1, "type": "active", "name": "Spiritwalker's Grace", "spellId": 79206, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 103810, "name": "Ancestral Guidance", "type": "single", "posX": 3000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589], "prev": [103597], "entries": [{"id": 128116, "definitionId": 132925, "maxRanks": 1, "type": "active", "name": "Ancestral Guidance", "spellId": 108281, "icon": "ability_shaman_ancestralguidance", "index": 100}]}, {"id": 103603, "name": "Thunderstorm", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103589, 103586, 103621], "prev": [103597, 103623], "entries": [{"id": 127878, "definitionId": 132687, "maxRanks": 1, "type": "active", "name": "Thunderstorm", "spellId": 51490, "icon": "spell_shaman_thunderstorm", "index": 100}]}, {"id": 103600, "name": "Voodoo Mastery", "type": "single", "posX": 4200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586], "prev": [103623], "entries": [{"id": 127875, "definitionId": 132684, "maxRanks": 1, "type": "passive", "name": "Voodoo Mastery", "spellId": 204268, "icon": "spell_shaman_hex", "index": 100}]}, {"id": 103625, "name": "Totemic Focus", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103586, 103599, 103609], "prev": [103627, 103623, 103613], "entries": [{"id": 127906, "definitionId": 132715, "maxRanks": 1, "type": "passive", "name": "Totemic Focus", "spellId": 382201, "icon": "inv_relics_totemofrebirth", "index": 100}]}, {"id": 103607, "name": "Ascending Air / Jet Stream", "type": "choice", "posX": 5400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599], "prev": [103627], "entries": [{"id": 127883, "definitionId": 132692, "maxRanks": 1, "type": "passive", "name": "Ascending Air", "spellId": 462791, "icon": "achievement_raidprimalist_windelemental", "index": 100}, {"id": 127882, "definitionId": 132691, "maxRanks": 1, "type": "passive", "name": "Jet Stream", "spellId": 462817, "icon": "inv_elemental_primal_air", "index": 200}]}, {"id": 103606, "name": "Enhanced Imbues", "type": "single", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103599, 103628], "prev": [103622, 103612, 103627], "entries": [{"id": 127881, "definitionId": 132690, "maxRanks": 1, "type": "passive", "name": "Enhanced Imbues", "spellId": 462796, "icon": "spell_nature_rockbiter", "index": 100}]}, {"id": 103626, "name": "Graceful Spirit / Spiritwalker's Aegis", "type": "choice", "posX": 1800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587, 103620], "prev": [103584], "entries": [{"id": 127908, "definitionId": 132717, "maxRanks": 1, "type": "passive", "name": "Graceful Spirit", "spellId": 192088, "icon": "spell_shaman_spectraltransformation", "index": 100}, {"id": 127907, "definitionId": 132716, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Aegis", "spellId": 378077, "icon": "ability_racial_forceshield", "index": 200}]}, {"id": 103589, "name": "Lightning Lasso", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103587], "prev": [103603, 103584, 103810], "entries": [{"id": 127862, "definitionId": 132671, "maxRanks": 1, "type": "active", "name": "Lightning Lasso", "spellId": 305483, "icon": "shaman_pvp_lightninglasso", "index": 300}]}, {"id": 103586, "name": "Totemic Projection", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103629], "prev": [103603, 103625, 103600], "entries": [{"id": 127859, "definitionId": 132668, "maxRanks": 1, "type": "active", "name": "Totemic Projection", "spellId": 108287, "icon": "ability_shaman_totemrelocation", "index": 100}]}, {"id": 103599, "name": "Totemic Surge", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103609, 103595], "prev": [103625, 103606, 103607], "entries": [{"id": 127874, "definitionId": 132683, "maxRanks": 1, "type": "passive", "name": "Totemic Surge", "spellId": 381867, "icon": "spell_nature_agitatingtotem", "index": 100}]}, {"id": 103628, "name": "Seasoned Winds", "type": "single", "posX": 6600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103595], "prev": [103606], "entries": [{"id": 127910, "definitionId": 132719, "maxRanks": 1, "type": "passive", "name": "Seasoned Winds", "spellId": 355630, "icon": "spell_nature_cyclone", "index": 200}]}, {"id": 103587, "name": "Mana Spring", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103620], "prev": [103589, 103626], "entries": [{"id": 127860, "definitionId": 132669, "maxRanks": 1, "type": "passive", "name": "Mana Spring", "spellId": 381930, "icon": "spell_nature_manaregentotem", "index": 200}]}, {"id": 103621, "name": "Thundershock / Traveling Storms", "type": "choice", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103603], "entries": [{"id": 127901, "definitionId": 132710, "maxRanks": 1, "type": "passive", "name": "Thundershock", "spellId": 378779, "icon": "ability_thunderking_thunderstruck", "index": 200}, {"id": 127900, "definitionId": 132709, "maxRanks": 1, "type": "passive", "name": "Traveling Storms", "spellId": 204403, "icon": "spell_shaman_thunderstorm", "index": 300}]}, {"id": 103609, "name": "Poison Cleansing Totem", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103629], "prev": [103625, 103586, 103599], "entries": [{"id": 127885, "definitionId": 132694, "maxRanks": 1, "type": "active", "name": "Poison Cleansing Totem", "spellId": 383013, "icon": "spell_nature_poisoncleansingtotem", "index": 100}]}, {"id": 103595, "name": "Totemic Recall", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [103592], "prev": [103628, 103599], "entries": [{"id": 127870, "definitionId": 132679, "maxRanks": 1, "type": "active", "name": "Totemic Recall", "spellId": 108285, "icon": "ability_shaman_multitotemactivation", "index": 100}]}, {"id": 103620, "name": "Nature's Swiftness", "type": "single", "posX": 1800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103626, 103587], "entries": [{"id": 127899, "definitionId": 132708, "maxRanks": 1, "type": "active", "name": "Nature's Swiftness", "spellId": 378081, "icon": "spell_nature_ravenform", "index": 100}]}, {"id": 103629, "name": "Stone Bulwark Totem", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103586, 103621, 103609], "entries": [{"id": 127911, "definitionId": 132720, "maxRanks": 1, "type": "active", "name": "Stone Bulwark Totem", "spellId": 108270, "icon": "ability_shaman_stonebulwark", "index": 100}]}, {"id": 103592, "name": "Call of the Elements / Creation Core", "type": "choice", "posX": 6000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103595], "entries": [{"id": 127867, "definitionId": 132676, "maxRanks": 1, "type": "passive", "name": "Call of the Elements", "spellId": 383011, "icon": "ability_shaman_multitotemactivation", "index": 200}, {"id": 127866, "definitionId": 132675, "maxRanks": 1, "type": "passive", "name": "Creation Core", "spellId": 383012, "icon": "inv_artifact_xp03", "index": 300}]}], "specNodes": [{"id": 81027, "name": "Riptide", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [81040, 81022, 81026], "prev": [], "entries": [{"id": 101905, "definitionId": 106805, "maxRanks": 1, "type": "active", "name": "Riptide", "spellId": 61295, "icon": "spell_nature_riptide", "index": 100}]}, {"id": 81040, "name": "Healing Rain", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [103428, 81039], "prev": [81027], "entries": [{"id": 101923, "definitionId": 106911, "maxRanks": 1, "type": "active", "name": "Healing Rain", "spellId": 73920, "icon": "spell_nature_giftofthewaterspirit", "index": 100}]}, {"id": 81022, "name": "Healing Stream Totem", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [81021], "prev": [81027], "entries": [{"id": 101900, "definitionId": 106920, "maxRanks": 1, "type": "active", "name": "Healing Stream Totem", "spellId": 392916, "visibleSpellId": 5394, "icon": "inv_spear_04", "index": 100}]}, {"id": 103428, "name": "Deluge", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 1, "next": [92677, 103429, 81038], "prev": [81040], "entries": [{"id": 127672, "definitionId": 132481, "maxRanks": 1, "type": "passive", "name": "Deluge", "spellId": 200076, "icon": "ability_shawaterelemental_reform", "index": 100}]}, {"id": 81039, "name": "Acid Rain", "type": "single", "posX": 12000, "posY": 2400, "maxRanks": 1, "next": [103429], "prev": [81040], "entries": [{"id": 101922, "definitionId": 106910, "maxRanks": 1, "type": "passive", "name": "Acid Rain", "spellId": 378443, "icon": "spell_nature_acid_01", "index": 200}]}, {"id": 81026, "name": "Healing Wave", "type": "single", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [103429, 81024, 81033], "prev": [81027], "entries": [{"id": 101904, "definitionId": 106918, "maxRanks": 1, "type": "active", "name": "Healing Wave", "spellId": 77472, "icon": "spell_nature_healingwavelesser", "index": 100}]}, {"id": 81021, "name": "Tidal Waves", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 1, "next": [81024, 81018], "prev": [81022], "entries": [{"id": 101899, "definitionId": 106921, "maxRanks": 1, "type": "passive", "name": "Tidal Waves", "spellId": 51564, "icon": "spell_shaman_tidalwaves", "index": 100}]}, {"id": 92677, "name": "Overflowing Shores", "type": "single", "posX": 10800, "posY": 3000, "maxRanks": 1, "next": [81047], "prev": [103428], "entries": [{"id": 114813, "definitionId": 119820, "maxRanks": 1, "type": "passive", "name": "Overflowing Shores", "spellId": 383222, "icon": "spell_nature_giftofthewaterspirit", "index": 100}]}, {"id": 103429, "name": "Ancestral Vigor", "type": "single", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [81038], "prev": [103428, 81026, 81039], "entries": [{"id": 127673, "definitionId": 132482, "maxRanks": 1, "type": "passive", "name": "Ancestral Vigor", "spellId": 207401, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 81024, "name": "Resurgence", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [81019], "prev": [81026, 81021], "entries": [{"id": 101902, "definitionId": 106916, "maxRanks": 1, "type": "passive", "name": "Resurgence", "spellId": 16196, "icon": "ability_shaman_watershield", "index": 100}]}, {"id": 81018, "name": "Water Totem Mastery", "type": "single", "posX": 14400, "posY": 3000, "maxRanks": 1, "next": [81019, 81048], "prev": [81021], "entries": [{"id": 101895, "definitionId": 106925, "maxRanks": 1, "type": "passive", "name": "Water Totem Mastery", "spellId": 382030, "icon": "ability_shaman_totemcooldownrefund", "index": 100}]}, {"id": 81038, "name": "White Water", "type": "single", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81047, 81032, 81037], "prev": [103428, 103429], "entries": [{"id": 101920, "definitionId": 106908, "maxRanks": 1, "type": "passive", "name": "White Water", "spellId": 462587, "icon": "ability_shawaterelemental_swirl", "index": 100}]}, {"id": 81033, "name": "Spirit Link Totem", "type": "single", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81032, 103432, 81045], "prev": [81026], "entries": [{"id": 101913, "definitionId": 106933, "maxRanks": 1, "type": "active", "name": "Spirit Link Totem", "spellId": 98008, "icon": "spell_shaman_spiritlink", "index": 100}]}, {"id": 81019, "name": "Master of the Elements", "type": "single", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81045, 81031, 81046], "prev": [81018, 81024], "entries": [{"id": 101896, "definitionId": 106923, "maxRanks": 1, "type": "passive", "name": "Master of the Elements", "spellId": 462375, "icon": "spell_nature_elementalabsorption", "index": 300}]}, {"id": 81048, "name": "Living Stream / Cloudburst Totem", "type": "choice", "posX": 15000, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [81031, 81049], "prev": [81018], "entries": [{"id": 101934, "definitionId": 106927, "maxRanks": 1, "type": "passive", "name": "Living Stream", "spellId": 382482, "icon": "spell_nature_natureresistancetotem", "index": 100}, {"id": 101933, "definitionId": 106926, "maxRanks": 1, "type": "active", "name": "Cloudburst Totem", "spellId": 157153, "icon": "ability_shaman_condensationtotem", "index": 200}]}, {"id": 81047, "name": "Torrent", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81037, 103436], "prev": [81038, 92677], "entries": [{"id": 101932, "definitionId": 106929, "maxRanks": 1, "type": "passive", "name": "Torrent", "spellId": 200072, "icon": "spell_nature_riptide", "index": 100}]}, {"id": 81032, "name": "Healing Tide Totem", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81037, 92675, 81044], "prev": [81038, 81033], "entries": [{"id": 101912, "definitionId": 106942, "maxRanks": 1, "type": "active", "name": "Healing Tide Totem", "spellId": 108280, "icon": "ability_shaman_healingtide", "index": 100}]}, {"id": 103432, "name": "Spouting Spirits", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81044], "prev": [81033], "entries": [{"id": 127678, "definitionId": 132487, "maxRanks": 1, "type": "passive", "name": "Spouting Spirits", "spellId": 462383, "icon": "spell_shaman_spiritlink", "index": 100}]}, {"id": 81045, "name": "Mana Tide Totem", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81044, 92681, 81046], "prev": [81019, 81033], "entries": [{"id": 101929, "definitionId": 106932, "maxRanks": 1, "type": "active", "name": "Mana Tide Totem", "spellId": 16191, "icon": "ability_shaman_manatidetotem", "index": 100}]}, {"id": 81031, "name": "Ancestral Reach / Flow of the Tides", "type": "choice", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [81046, 81049], "prev": [81048, 81019], "entries": [{"id": 101911, "definitionId": 106944, "maxRanks": 1, "type": "passive", "name": "Ancestral Reach", "spellId": 382732, "icon": "spell_nature_healingwavegreater", "index": 100}, {"id": 101910, "definitionId": 106943, "maxRanks": 1, "type": "passive", "name": "Flow of the Tides", "spellId": 382039, "icon": "spell_frost_manarecharge", "index": 200}]}, {"id": 81037, "name": "Undulation / Unleash Life", "type": "choice", "posX": 11400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103436, 81055], "prev": [81032, 81047, 81038], "entries": [{"id": 101919, "definitionId": 106907, "maxRanks": 1, "type": "passive", "name": "Undulation", "spellId": 200071, "icon": "spell_nature_healingway", "index": 100}, {"id": 101918, "definitionId": 106906, "maxRanks": 1, "type": "active", "name": "Unleash Life", "spellId": 73685, "icon": "spell_shaman_unleashweapon_life", "index": 200}]}, {"id": 92675, "name": "Current Control / Tide Turner", "type": "choice", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81055], "prev": [81032], "entries": [{"id": 114811, "definitionId": 119818, "maxRanks": 1, "type": "passive", "name": "Current Control", "spellId": 404015, "icon": "ability_shaman_healingtide", "index": 100}, {"id": 114810, "definitionId": 119817, "maxRanks": 1, "type": "passive", "name": "Tide Turner", "spellId": 404019, "icon": "ability_deathknight_frozencenter", "index": 200}]}, {"id": 81044, "name": "Echo of the Elements", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81055, 81041], "prev": [81045, 81032, 103432], "entries": [{"id": 101928, "definitionId": 106941, "maxRanks": 1, "type": "passive", "name": "Echo of the Elements", "spellId": 333919, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 92681, "name": "Spiritwalker's Tidal Totem", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81041], "prev": [81045], "entries": [{"id": 114817, "definitionId": 119824, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Tidal Totem", "spellId": 404522, "icon": "spell_nature_regeneration_02", "index": 200}]}, {"id": 81046, "name": "Earthen Wall Totem / Ancestral Protection Totem", "type": "choice", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [81041, 103430], "prev": [81045, 81031, 81019], "entries": [{"id": 101931, "definitionId": 106931, "maxRanks": 1, "type": "active", "name": "Earthen Wall Totem", "spellId": 198838, "icon": "spell_nature_stoneskintotem", "index": 100}, {"id": 101930, "definitionId": 106930, "maxRanks": 1, "type": "active", "name": "Ancestral Protection Totem", "spellId": 207399, "icon": "spell_nature_reincarnation", "index": 200}]}, {"id": 81049, "name": "Earthliving Weapon", "type": "single", "posX": 15000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [103430, 81050], "prev": [81048, 81031], "entries": [{"id": 101935, "definitionId": 106928, "maxRanks": 1, "type": "active", "name": "Earthliving Weapon", "spellId": 382021, "icon": "spell_shaman_giftearthmother", "index": 100}]}, {"id": 103436, "name": "Primal Tide Core", "type": "single", "posX": 10800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103434, 81052], "prev": [81047, 81037], "entries": [{"id": 127682, "definitionId": 132491, "maxRanks": 1, "type": "passive", "name": "Primal Tide Core", "spellId": 382045, "icon": "ability_shaman_repulsiontotem", "index": 100}]}, {"id": 81055, "name": "Ascendance", "type": "single", "posX": 12000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81052, 103433, 103427], "prev": [92675, 81037, 81044], "entries": [{"id": 101942, "definitionId": 106939, "maxRanks": 1, "type": "active", "name": "Ascendance", "spellId": 114052, "icon": "spell_fire_elementaldevastation", "index": 100}]}, {"id": 81041, "name": "Tidebringer", "type": "single", "posX": 13200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [103427, 103915, 81043], "prev": [92681, 81046, 81044], "entries": [{"id": 101924, "definitionId": 106915, "maxRanks": 1, "type": "passive", "name": "Tidebringer", "spellId": 236501, "icon": "spell_shaman_blessingofeternals", "index": 100}]}, {"id": 103430, "name": "Earthen Harmony", "type": "single", "posX": 14400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [81043, 103435], "prev": [81049, 81046], "entries": [{"id": 127674, "definitionId": 132483, "maxRanks": 1, "type": "passive", "name": "Earthen Harmony", "spellId": 382020, "icon": "spell_shaman_improvedearthshield", "index": 100}]}, {"id": 103434, "name": "Tidewaters", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81036], "prev": [103436], "entries": [{"id": 127680, "definitionId": 132489, "maxRanks": 1, "type": "passive", "name": "Tidewaters", "spellId": 462424, "icon": "ability_shawaterelemental_split", "index": 100}]}, {"id": 81052, "name": "Undercurrent", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [81036, 80976], "prev": [103436, 81055], "entries": [{"id": 101939, "definitionId": 106935, "maxRanks": 2, "type": "passive", "name": "Undercurrent", "spellId": 382194, "icon": "spell_fire_bluehellfire", "index": 100}]}, {"id": 103433, "name": "First Ascendant / Preeminence", "type": "choice", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [80976], "prev": [81055], "entries": [{"id": 127679, "definitionId": 132488, "maxRanks": 1, "type": "passive", "name": "First Ascendant", "spellId": 462440, "icon": "spell_shaman_astralshift", "index": 100}, {"id": 127675, "definitionId": 132484, "maxRanks": 1, "type": "passive", "name": "Preeminence", "spellId": 462443, "icon": "spell_shaman_improvedreincarnation", "index": 200}]}, {"id": 103427, "name": "Wavespeaker's Blessing", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [80976, 81042], "prev": [81041, 81055], "entries": [{"id": 127671, "definitionId": 132480, "maxRanks": 2, "type": "passive", "name": "Wavespeaker's Blessing", "spellId": 381946, "icon": "inv_alchemist_81_spiritedalchemiststone", "index": 100}]}, {"id": 103915, "name": "Coalescing Water", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81042], "prev": [81041], "entries": [{"id": 128332, "definitionId": 133139, "maxRanks": 1, "type": "passive", "name": "Coalescing Water", "spellId": 470076, "icon": "inv_helm_mail_raidshamanmythic_s_01", "index": 100}]}, {"id": 81043, "name": "Ancestral Awakening", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [81042, 81051], "prev": [81041, 103430], "entries": [{"id": 101927, "definitionId": 106914, "maxRanks": 2, "type": "passive", "name": "Ancestral Awakening", "spellId": 382309, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 103435, "name": "Reactive Warding", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81051], "prev": [103430], "entries": [{"id": 127681, "definitionId": 132490, "maxRanks": 1, "type": "passive", "name": "Reactive Warding", "spellId": 462454, "icon": "inv_10_elementalcombinedfoozles_water", "index": 100}]}, {"id": 81050, "name": "Improved Earthliving Weapon", "type": "single", "posX": 15000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [81051], "prev": [81049], "entries": [{"id": 101936, "definitionId": 106938, "maxRanks": 1, "type": "passive", "name": "Improved Earthliving Weapon", "spellId": 382315, "icon": "spell_shaman_giftearthmother", "index": 100}]}, {"id": 81036, "name": "Primordial Wave", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103434, 81052], "entries": [{"id": 101917, "definitionId": 106905, "maxRanks": 1, "type": "active", "name": "Primordial Wave", "spellId": 428332, "icon": "ability_maldraxxus_shaman", "index": 100}]}, {"id": 80976, "name": "Downpour", "type": "single", "posX": 12000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103427, 103433, 81052], "entries": [{"id": 101842, "definitionId": 106901, "maxRanks": 1, "type": "passive", "name": "Downpour", "spellId": 462486, "icon": "ability_mage_waterjet", "index": 100}]}, {"id": 81042, "name": "High Tide", "type": "single", "posX": 13200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [103427, 81043, 103915], "entries": [{"id": 101925, "definitionId": 106912, "maxRanks": 1, "type": "passive", "name": "High Tide", "spellId": 157154, "icon": "spell_shaman_hightide", "index": 400}]}, {"id": 81051, "name": "Deeply Rooted Elements / Wellspring", "type": "choice", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [81050, 81043, 103435], "entries": [{"id": 101937, "definitionId": 106936, "maxRanks": 1, "type": "passive", "name": "Deeply Rooted Elements", "spellId": 378270, "icon": "inv_misc_herb_liferoot_stem", "index": 300}, {"id": 127676, "definitionId": 132485, "maxRanks": 1, "type": "active", "name": "Wellspring", "spellId": 197995, "icon": "ability_shawaterelemental_split", "index": 400}]}], "heroNodes": [{"id": 94888, "name": "Call of the Ancestors", "type": "single", "posX": 8100, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 56, "requiresNode": 81037, "next": [94862, 94869, 94884], "prev": [], "entries": [{"id": 117485, "definitionId": 122497, "maxRanks": 1, "type": "passive", "name": "Call of the Ancestors", "spellId": 443450, "icon": "ability_racial_ancestralcall", "index": 100}], "freeNode": true}, {"id": 94877, "name": "Surging Totem", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "entryNode": true, "subTreeId": 54, "next": [94890, 94874, 94882], "prev": [], "entries": [{"id": 117474, "definitionId": 122486, "maxRanks": 1, "type": "active", "name": "Surging Totem", "spellId": 455630, "visibleSpellId": 444995, "icon": "inv_ability_totemicshaman_surgingtotem", "index": 100}], "freeNode": true}, {"id": 94862, "name": "Latent Wisdom / Ancient Fellowship", "type": "choice", "posX": 7500, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94887], "prev": [94888], "entries": [{"id": 117459, "definitionId": 122471, "maxRanks": 1, "type": "passive", "name": "Latent Wisdom", "spellId": 443449, "icon": "spell_holy_spiritualguidence", "index": 100}, {"id": 123632, "definitionId": 128470, "maxRanks": 1, "type": "passive", "name": "Ancient Fellowship", "spellId": 443423, "icon": "spell_shaman_astralshift", "index": 200}]}, {"id": 94884, "name": "Heed My Call / Routine Communication", "type": "choice", "posX": 8100, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94860], "prev": [94888], "entries": [{"id": 117481, "definitionId": 122493, "maxRanks": 1, "type": "passive", "name": "Heed My Call", "spellId": 443444, "icon": "spell_unused2", "index": 100}, {"id": 123630, "definitionId": 128468, "maxRanks": 1, "type": "passive", "name": "Routine Communication", "spellId": 443445, "icon": "spell_nature_undyingstrength", "index": 200}]}, {"id": 94869, "name": "Elemental Reverb", "type": "single", "posX": 8700, "posY": 1800, "maxRanks": 1, "subTreeId": 56, "next": [94861], "prev": [94888], "entries": [{"id": 117466, "definitionId": 122478, "maxRanks": 1, "type": "passive", "name": "Elemental Reverb", "spellId": 443418, "icon": "ability_shaman_echooftheelements", "index": 100}]}, {"id": 94890, "name": "Totemic Rebound", "type": "single", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94859], "prev": [94877], "entries": [{"id": 117487, "definitionId": 122499, "maxRanks": 1, "type": "passive", "name": "Totemic Rebound", "spellId": 445025, "icon": "ability_vehicle_electrocharge", "index": 100}]}, {"id": 94874, "name": "Amplification Core / Oversurge", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "next": [94891], "prev": [94877], "entries": [{"id": 117471, "definitionId": 122483, "maxRanks": 1, "type": "passive", "name": "Amplification Core", "spellId": 445029, "icon": "ability_evoker_essenceburststacks", "index": 100}, {"id": 125823, "definitionId": 130654, "maxRanks": 1, "type": "passive", "name": "Oversurge", "spellId": 445030, "icon": "spell_fire_elementaldevastation", "index": 200}]}, {"id": 94882, "name": "Lively Totems", "type": "single", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 54, "requiresNode": 80942, "next": [94872], "prev": [94877], "entries": [{"id": 117479, "definitionId": 122491, "maxRanks": 1, "type": "passive", "name": "Lively Totems", "spellId": 445034, "icon": "spell_fire_searingtotem", "index": 100}]}, {"id": 94887, "name": "Offering from Beyond", "type": "single", "posX": 7500, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "requiresNode": 81014, "next": [94858], "prev": [94862], "entries": [{"id": 117484, "definitionId": 122496, "maxRanks": 1, "type": "passive", "name": "Offering from Beyond", "spellId": 443451, "icon": "spell_shaman_blessingoftheeternals", "index": 100}]}, {"id": 94860, "name": "Primordial Capacity", "type": "single", "posX": 8100, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94883], "prev": [94884], "entries": [{"id": 117457, "definitionId": 122469, "maxRanks": 1, "type": "passive", "name": "Primordial Capacity", "spellId": 443448, "icon": "ability_monk_chiswirl", "index": 100}]}, {"id": 94861, "name": "Spiritwalker's Momentum", "type": "single", "posX": 8700, "posY": 2400, "maxRanks": 1, "subTreeId": 56, "next": [94875], "prev": [94869], "entries": [{"id": 117458, "definitionId": 122470, "maxRanks": 1, "type": "passive", "name": "Spiritwalker's Momentum", "spellId": 443425, "icon": "spell_shaman_spiritwalkersgrace", "index": 100}]}, {"id": 94859, "name": "Oversized Totems / Swift Recall", "type": "choice", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94871], "prev": [94890], "entries": [{"id": 117456, "definitionId": 122468, "maxRanks": 1, "type": "passive", "name": "Oversized Totems", "spellId": 445026, "icon": "ability_shaman_totemrelocation", "index": 100}, {"id": 125825, "definitionId": 130656, "maxRanks": 1, "type": "passive", "name": "Swift Recall", "spellId": 445027, "icon": "spell_nature_brilliance", "index": 200}]}, {"id": 94891, "name": "Wind Barrier", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "next": [94866], "prev": [94874], "entries": [{"id": 117488, "definitionId": 122500, "maxRanks": 1, "type": "passive", "name": "Wind Barrier", "spellId": 445031, "icon": "spell_nature_eyeofthestorm", "index": 100}]}, {"id": 94872, "name": "Reactivity", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 54, "requiresNode": 103590, "next": [94881], "prev": [94882], "entries": [{"id": 117469, "definitionId": 122481, "maxRanks": 1, "type": "passive", "name": "Reactivity", "spellId": 445035, "icon": "spell_fire_totemofwrath", "index": 100}]}, {"id": 94858, "name": "Natural Harmony / Earthen Communion", "type": "choice", "posX": 7500, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94887], "entries": [{"id": 117455, "definitionId": 122467, "maxRanks": 1, "type": "passive", "name": "Natural Harmony", "spellId": 443442, "icon": "spell_nature_natureguardian", "index": 100}, {"id": 123631, "definitionId": 128469, "maxRanks": 1, "type": "passive", "name": "Earthen Communion", "spellId": 443441, "icon": "spell_nature_skinofearth", "index": 200}]}, {"id": 94883, "name": "Maelstrom Supremacy", "type": "single", "posX": 8100, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94860], "entries": [{"id": 117480, "definitionId": 122492, "maxRanks": 1, "type": "passive", "name": "Maelstrom Supremacy", "spellId": 443447, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 94875, "name": "Final Calling", "type": "single", "posX": 8700, "posY": 3000, "maxRanks": 1, "subTreeId": 56, "next": [94894], "prev": [94861], "entries": [{"id": 117472, "definitionId": 122484, "maxRanks": 1, "type": "passive", "name": "Final Calling", "spellId": 443446, "icon": "spell_shaman_ancestralawakening", "index": 100}]}, {"id": 94871, "name": "Imbuement Mastery", "type": "single", "posX": 15000, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "requiresNode": 81049, "next": [94879], "prev": [94859], "entries": [{"id": 117468, "definitionId": 122480, "maxRanks": 1, "type": "passive", "name": "Imbuement Mastery", "spellId": 445028, "icon": "spell_shaman_unleashweapon_wind", "index": 100}]}, {"id": 94866, "name": "Pulse Capacitor / Supportive Imbuements", "type": "choice", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94891], "entries": [{"id": 117463, "definitionId": 122475, "maxRanks": 1, "type": "passive", "name": "Pulse Capacitor", "spellId": 445032, "icon": "spell_nature_elementalprecision_1", "index": 100}, {"id": 125824, "definitionId": 130655, "maxRanks": 1, "type": "passive", "name": "Supportive Imbuements", "spellId": 445033, "icon": "ability_shaman_fortifyingwaters", "index": 200}]}, {"id": 94881, "name": "Totemic Coordination / Earthsurge", "type": "choice", "posX": 16200, "posY": 3000, "maxRanks": 1, "subTreeId": 54, "next": [94879], "prev": [94872], "entries": [{"id": 117478, "definitionId": 122490, "maxRanks": 1, "type": "passive", "name": "Totemic Coordination", "spellId": 445036, "icon": "ability_shaman_echooftheelements", "index": 100}, {"id": 125822, "definitionId": 130653, "maxRanks": 1, "type": "passive", "name": "Earthsurge", "spellId": 455590, "icon": "inv_elementalearth2", "index": 200}]}, {"id": 94894, "name": "Ancestral Swiftness", "type": "single", "posX": 8100, "posY": 3600, "maxRanks": 1, "subTreeId": 56, "next": [], "prev": [94883, 94858, 94875], "entries": [{"id": 117491, "definitionId": 122503, "maxRanks": 1, "type": "active", "name": "Ancestral Swiftness", "spellId": 448861, "visibleSpellId": 443454, "icon": "inv_ability_farseershaman_ancestralswiftness", "index": 100}]}, {"id": 94879, "name": "Whirling Elements", "type": "single", "posX": 15600, "posY": 3600, "maxRanks": 1, "subTreeId": 54, "next": [], "prev": [94866, 94871, 94881], "entries": [{"id": 117476, "definitionId": 122488, "maxRanks": 1, "type": "passive", "name": "Whirling Elements", "spellId": 445024, "icon": "inv_10_enchanting2_elementalswirl_color1", "index": 100}]}], "subTreeNodes": [{"id": 99846, "name": "Farseer / Totemic", "type": "subtree", "posX": 9000, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123380, "type": "subtree", "name": "Farseer", "traitSubTreeId": 56, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-farseer", "nodes": [94888, 94862, 94884, 94869, 94887, 94860, 94861, 94858, 94883, 94875, 94894]}, {"id": 123378, "type": "subtree", "name": "Totemic", "traitSubTreeId": 54, "traitTreeId": 786, "atlasMemberName": "talents-heroclass-shaman-totemic", "nodes": [94877, 94890, 94874, 94882, 94859, 94891, 94872, 94871, 94866, 94881, 94879]}]}], "fullNodeOrder": [80938, 80939, 80941, 80942, 80943, 80944, 80945, 80947, 80948, 80949, 80950, 80951, 80953, 80954, 80955, 80956, 80957, 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80978, 80981, 80983, 80984, 80985, 80988, 80989, 80990, 80991, 80992, 80993, 80995, 80996, 80997, 80998, 80999, 81000, 81002, 81003, 81004, 81005, 81006, 81007, 81008, 81009, 81010, 81012, 81013, 81014, 81015, 81016, 81018, 81019, 81021, 81022, 81024, 81026, 81027, 81031, 81032, 81033, 81036, 81037, 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, 81048, 81049, 81050, 81051, 81052, 81055, 81073, 92219, 92675, 92677, 92681, 94858, 94859, 94860, 94861, 94862, 94863, 94866, 94867, 94868, 94869, 94870, 94871, 94872, 94873, 94874, 94875, 94877, 94879, 94880, 94881, 94882, 94883, 94884, 94885, 94886, 94887, 94888, 94889, 94890, 94891, 94892, 94893, 94894, 99845, 99846, 99847, 103427, 103428, 103429, 103430, 103432, 103433, 103434, 103435, 103436, 103579, 103581, 103582, 103583, 103584, 103585, 103586, 103587, 103588, 103589, 103590, 103591, 103592, 103593, 103594, 103595, 103596, 103597, 103598, 103599, 103600, 103601, 103602, 103603, 103604, 103605, 103606, 103607, 103608, 103609, 103610, 103611, 103612, 103613, 103614, 103615, 103616, 103617, 103618, 103619, 103620, 103621, 103622, 103623, 103624, 103625, 103626, 103627, 103628, 103629, 103630, 103631, 103632, 103633, 103634, 103635, 103636, 103637, 103638, 103639, 103640, 103641, 103642, 103810, 103848, 103871, 103915]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/warlock_affliction.json b/simc_support/game_data/data_files/trees/warlock_affliction.json index 067cd41..248e85f 100644 --- a/simc_support/game_data/data_files/trees/warlock_affliction.json +++ b/simc_support/game_data/data_files/trees/warlock_affliction.json @@ -1 +1 @@ -{"traitTreeId": 720, "className": "Warlock", "classId": 9, "specName": "Affliction", "specId": 265, "classNodes": [{"id": 71931, "name": "Fel Domination", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71932, 71952], "prev": [], "entries": [{"id": 91439, "definitionId": 96441, "maxRanks": 1, "type": "active", "name": "Fel Domination", "spellId": 333889, "icon": "spell_shadow_felmending", "index": 100}]}, {"id": 71933, "name": "Soul Leech", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71952, 71950], "prev": [], "entries": [{"id": 91441, "definitionId": 96443, "maxRanks": 1, "type": "passive", "name": "Soul Leech", "spellId": 108370, "icon": "warlock_siphonlife", "index": 100}], "freeNode": true}, {"id": 71949, "name": "Burning Rush", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71950, 71948], "prev": [], "entries": [{"id": 91460, "definitionId": 96462, "maxRanks": 1, "type": "active", "name": "Burning Rush", "spellId": 111400, "icon": "ability_deathwing_sealarmorbreachtga", "index": 100}]}, {"id": 71932, "name": "Fel Pact", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [71951], "prev": [71931], "entries": [{"id": 91440, "definitionId": 96442, "maxRanks": 1, "type": "passive", "name": "Fel Pact", "spellId": 386113, "icon": "spell_shadow_impphaseshift", "index": 100}]}, {"id": 71952, "name": "Demon Skin", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 2, "next": [71951, 100941], "prev": [71933, 71931], "entries": [{"id": 91463, "definitionId": 96465, "maxRanks": 2, "type": "passive", "name": "Demon Skin", "spellId": 219272, "icon": "spell_shadow_ragingscream", "index": 100}]}, {"id": 71950, "name": "Fel Armor", "type": "single", "posX": 4800, "posY": 1800, "maxRanks": 2, "next": [100941, 71947], "prev": [71933, 71949], "entries": [{"id": 91461, "definitionId": 96463, "maxRanks": 2, "type": "passive", "name": "Fel Armor", "spellId": 386124, "icon": "spell_shadow_felarmour", "index": 0}]}, {"id": 71948, "name": "Fiendish Stride", "type": "single", "posX": 6000, "posY": 1800, "maxRanks": 1, "next": [71947], "prev": [71949], "entries": [{"id": 91459, "definitionId": 96461, "maxRanks": 1, "type": "passive", "name": "Fiendish Stride", "spellId": 386110, "icon": "inv_misc_moosehoof_fel", "index": 100}]}, {"id": 71951, "name": "Curses of Enfeeblement", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [71934, 71930, 71928], "prev": [71932, 71952], "entries": [{"id": 91462, "definitionId": 96464, "maxRanks": 1, "type": "active", "name": "Curses of Enfeeblement", "spellId": 386105, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 100941, "name": "Demonic Circle", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [71928, 71954, 71946], "prev": [71950, 71952], "entries": [{"id": 124694, "definitionId": 129532, "maxRanks": 1, "type": "active", "name": "Demonic Circle", "spellId": 268358, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 71947, "name": "Howl of Terror / Mortal Coil", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [71946, 71922, 71944], "prev": [71950, 71948], "entries": [{"id": 91458, "definitionId": 96460, "maxRanks": 1, "type": "active", "name": "Howl of Terror", "spellId": 5484, "icon": "ability_warlock_howlofterror", "index": 100}, {"id": 91457, "definitionId": 96459, "maxRanks": 1, "type": "active", "name": "Mortal Coil", "spellId": 6789, "icon": "ability_warlock_mortalcoil", "index": 200}]}, {"id": 71934, "name": "Amplify Curse", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [71935, 71953], "prev": [71951], "entries": [{"id": 91442, "definitionId": 96444, "maxRanks": 1, "type": "active", "name": "Amplify Curse", "spellId": 328774, "icon": "spell_shadow_contagion", "index": 100}]}, {"id": 71930, "name": "Demonic Embrace", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [71953], "prev": [71951], "entries": [{"id": 91438, "definitionId": 96440, "maxRanks": 1, "type": "passive", "name": "Demonic Embrace", "spellId": 288843, "icon": "spell_shadow_metamorphosis", "index": 100}]}, {"id": 71928, "name": "Demonic Inspiration", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [71953, 71927, 71916], "prev": [71951, 100941], "entries": [{"id": 91436, "definitionId": 96438, "maxRanks": 1, "type": "passive", "name": "Demonic Inspiration", "spellId": 386858, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 71954, "name": "Abyss Walker", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [71916], "prev": [100941], "entries": [{"id": 91465, "definitionId": 96467, "maxRanks": 1, "type": "passive", "name": "Abyss Walker", "spellId": 389609, "icon": "achievement_explore_argus", "index": 100}]}, {"id": 71946, "name": "Wrathful Minion", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [71916, 71955, 71940], "prev": [71947, 100941], "entries": [{"id": 91456, "definitionId": 96458, "maxRanks": 1, "type": "passive", "name": "Wrathful Minion", "spellId": 386864, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 71922, "name": "Demonic Fortitude", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91430, "definitionId": 96432, "maxRanks": 1, "type": "passive", "name": "Demonic Fortitude", "spellId": 386617, "icon": "spell_warlock_summonimpoutland", "index": 100}]}, {"id": 71944, "name": "Banish", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91454, "definitionId": 96456, "maxRanks": 1, "type": "active", "name": "Banish", "spellId": 710, "icon": "spell_shadow_cripple", "index": 100}]}, {"id": 71935, "name": "Teachings of the Satyr", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936], "prev": [71934], "entries": [{"id": 91443, "definitionId": 96445, "maxRanks": 1, "type": "passive", "name": "Teachings of the Satyr", "spellId": 387972, "icon": "spell_shadow_carrionswarm", "index": 100}]}, {"id": 71953, "name": "Accrued Vitality", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71936], "prev": [71934, 71928, 71930], "entries": [{"id": 91464, "definitionId": 96466, "maxRanks": 2, "type": "passive", "name": "Accrued Vitality", "spellId": 386613, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 71927, "name": "Sweet Souls", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936, 71956], "prev": [71928], "entries": [{"id": 91435, "definitionId": 96437, "maxRanks": 1, "type": "passive", "name": "Sweet Souls", "spellId": 386620, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 71916, "name": "Nightmare / Horrify", "type": "choice", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71956], "prev": [71946, 71928, 71954], "entries": [{"id": 91422, "definitionId": 96424, "maxRanks": 1, "type": "passive", "name": "Nightmare", "spellId": 386648, "icon": "spell_shadow_possession", "index": 100}, {"id": 115459, "definitionId": 120471, "maxRanks": 1, "type": "passive", "name": "Horrify", "spellId": 56244, "icon": "spell_nzinsanity_bloodthirst", "index": 200}]}, {"id": 71955, "name": "Demonic Gateway", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71942, 71956], "prev": [71946], "entries": [{"id": 91466, "definitionId": 96468, "maxRanks": 1, "type": "active", "name": "Demonic Gateway", "spellId": 111771, "icon": "spell_warlock_demonicportal_green", "index": 100}]}, {"id": 71940, "name": "Lifeblood", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71942], "prev": [71922, 71944, 71946], "entries": [{"id": 91449, "definitionId": 96451, "maxRanks": 2, "type": "passive", "name": "Lifeblood", "spellId": 386646, "icon": "warlock_-healthstone", "index": 100}]}, {"id": 71936, "name": "Dark Pact", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71937, 93178], "prev": [71927, 71935, 71953], "entries": [{"id": 91444, "definitionId": 96446, "maxRanks": 1, "type": "active", "name": "Dark Pact", "spellId": 108416, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 71956, "name": "Strength of Will / Dark Accord", "type": "choice", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93178, 93179], "prev": [71916, 71955, 71927], "entries": [{"id": 91468, "definitionId": 96470, "maxRanks": 1, "type": "passive", "name": "Strength of Will", "spellId": 317138, "icon": "spell_shadow_demonictactics", "index": 100}, {"id": 91467, "definitionId": 96469, "maxRanks": 1, "type": "passive", "name": "Dark Accord", "spellId": 386659, "icon": "ability_warlock_improveddemonictactics", "index": 200}]}, {"id": 71942, "name": "Shadowfury", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93179, 71941], "prev": [71955, 71940], "entries": [{"id": 91452, "definitionId": 96454, "maxRanks": 1, "type": "active", "name": "Shadowfury", "spellId": 30283, "icon": "ability_warlock_shadowfurytga", "index": 200}]}, {"id": 71937, "name": "Ichor of Devils / Frequent Donor", "type": "choice", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71918], "prev": [71936], "entries": [{"id": 91446, "definitionId": 96448, "maxRanks": 1, "type": "passive", "name": "Ichor of Devils", "spellId": 386664, "icon": "spell_yorsahj_bloodboil_greenoil", "index": 100}, {"id": 91445, "definitionId": 96447, "maxRanks": 1, "type": "passive", "name": "Frequent Donor", "spellId": 386686, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 93178, "name": "Socrethar's Guile", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71918, 71925], "prev": [71936, 71956], "entries": [{"id": 115461, "definitionId": 120473, "maxRanks": 2, "type": "passive", "name": "Socrethar's Guile", "spellId": 405936, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93179, "name": "Sargerei Technique", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71925, 71938], "prev": [71956, 71942], "entries": [{"id": 115462, "definitionId": 120474, "maxRanks": 2, "type": "passive", "name": "Sargerei Technique", "spellId": 405955, "icon": "70_inscription_glyph_demonhunter_major", "index": 100}]}, {"id": 71941, "name": "Darkfury / Shadowflame", "type": "choice", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71938], "prev": [71942], "entries": [{"id": 91451, "definitionId": 96453, "maxRanks": 1, "type": "passive", "name": "Darkfury", "spellId": 264874, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 91450, "definitionId": 96452, "maxRanks": 1, "type": "active", "name": "Shadowflame", "spellId": 384069, "icon": "ability_warlock_shadowflame", "index": 200}]}, {"id": 71918, "name": "Swift Artifice", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71915, 71924], "prev": [71937, 93178], "entries": [{"id": 91425, "definitionId": 96427, "maxRanks": 1, "type": "passive", "name": "Swift Artifice", "spellId": 452902, "icon": "spell_shadow_destructivesoul", "index": 100}]}, {"id": 71925, "name": "Demonic Tactics", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71924, 71923], "prev": [93178, 93179], "entries": [{"id": 91433, "definitionId": 96435, "maxRanks": 1, "type": "passive", "name": "Demonic Tactics", "spellId": 452894, "icon": "inv_helm_laughingskull_01", "index": 100}]}, {"id": 71938, "name": "Teachings of the Black Harvest", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71923, 71917], "prev": [71941, 93179], "entries": [{"id": 91447, "definitionId": 96449, "maxRanks": 1, "type": "passive", "name": "Teachings of the Black Harvest", "spellId": 385881, "icon": "inv_misc_codexofxerrath_nochains", "index": 100}]}, {"id": 71915, "name": "Resolute Barrier", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926], "prev": [71918], "entries": [{"id": 91421, "definitionId": 96423, "maxRanks": 2, "type": "passive", "name": "Resolute Barrier", "spellId": 389359, "icon": "inv_shield_1h_demonweapon_c_01", "index": 100}]}, {"id": 71924, "name": "Fel Synergy", "type": "single", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926, 71939], "prev": [71918, 71925], "entries": [{"id": 91432, "definitionId": 96434, "maxRanks": 2, "type": "passive", "name": "Fel Synergy", "spellId": 389367, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 71923, "name": "Soul Link", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71939, 71957], "prev": [71925, 71938], "entries": [{"id": 91431, "definitionId": 96433, "maxRanks": 2, "type": "passive", "name": "Soul Link", "spellId": 108415, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 71917, "name": "Demonic Resilience", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71957], "prev": [71938], "entries": [{"id": 91424, "definitionId": 96426, "maxRanks": 2, "type": "passive", "name": "Demonic Resilience", "spellId": 389590, "icon": "ability_warlock_avoidance", "index": 100}]}, {"id": 71926, "name": "Pact of Gluttony", "type": "single", "posX": 3000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71915], "entries": [{"id": 91434, "definitionId": 96436, "maxRanks": 1, "type": "passive", "name": "Pact of Gluttony", "spellId": 386689, "icon": "warlock__bloodstone", "index": 100}]}, {"id": 71939, "name": "Soul Conduit", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71923], "entries": [{"id": 91427, "definitionId": 96450, "maxRanks": 1, "type": "passive", "name": "Soul Conduit", "spellId": 215941, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 71957, "name": "Soulburn", "type": "single", "posX": 5400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71917, 71923], "entries": [{"id": 91469, "definitionId": 96471, "maxRanks": 1, "type": "active", "name": "Soulburn", "spellId": 385899, "icon": "spell_warlock_soulburn", "index": 100}]}], "specNodes": [{"id": 72049, "name": "Unstable Affliction", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [72048, 72050], "prev": [], "entries": [{"id": 91570, "definitionId": 96572, "maxRanks": 1, "type": "active", "name": "Unstable Affliction", "spellId": 316099, "icon": "spell_shadow_unstableaffliction_3", "index": 100}]}, {"id": 72048, "name": "Writhe in Agony", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [72043, 72051, 72047], "prev": [72049], "entries": [{"id": 91569, "definitionId": 96571, "maxRanks": 1, "type": "passive", "name": "Writhe in Agony", "spellId": 196102, "icon": "spell_shadow_curseofsargeras", "index": 100}]}, {"id": 72050, "name": "Seed of Corruption", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [72051, 72040, 72039], "prev": [72049], "entries": [{"id": 91571, "definitionId": 96573, "maxRanks": 1, "type": "active", "name": "Seed of Corruption", "spellId": 27243, "icon": "spell_shadow_seedofdestruction", "index": 100}]}, {"id": 72043, "name": "Dark Virtuosity", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 2, "next": [72047, 72045], "prev": [72048], "entries": [{"id": 91564, "definitionId": 96566, "maxRanks": 2, "type": "passive", "name": "Dark Virtuosity", "spellId": 405327, "icon": "inv_elemental_primal_shadow", "index": 100}]}, {"id": 72051, "name": "Absolute Corruption / Siphon Life", "type": "choice", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [72047, 72039, 72037], "prev": [72048, 72050], "entries": [{"id": 91572, "definitionId": 96574, "maxRanks": 1, "type": "passive", "name": "Absolute Corruption", "spellId": 196103, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}, {"id": 124693, "definitionId": 129531, "maxRanks": 1, "type": "passive", "name": "Siphon Life", "spellId": 452999, "icon": "spell_shadow_requiem", "index": 200}]}, {"id": 72040, "name": "Kindled Malice", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 2, "next": [72039, 102033], "prev": [72050], "entries": [{"id": 91561, "definitionId": 96563, "maxRanks": 2, "type": "passive", "name": "Kindled Malice", "spellId": 405330, "icon": "inv_artifact_powerofthedarkside", "index": 100}]}, {"id": 72047, "name": "Nightfall", "type": "single", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [72045, 72037], "prev": [72048, 72043, 72051], "entries": [{"id": 91568, "definitionId": 96570, "maxRanks": 1, "type": "passive", "name": "Nightfall", "spellId": 108558, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 72039, "name": "Volatile Agony", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [72037, 102033], "prev": [72051, 72050, 72040], "entries": [{"id": 91560, "definitionId": 96562, "maxRanks": 1, "type": "passive", "name": "Volatile Agony", "spellId": 453034, "icon": "ability_xavius_corruptingnova", "index": 100}]}, {"id": 72045, "name": "Improved Shadow Bolt / Drain Soul", "type": "choice", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72032, 100940, 72053], "prev": [72047, 72043], "entries": [{"id": 91566, "definitionId": 96568, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Bolt", "spellId": 453080, "icon": "spell_shadow_shadowbolt", "index": 0}, {"id": 124692, "definitionId": 129530, "maxRanks": 1, "type": "active", "name": "Drain Soul", "spellId": 388667, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 72037, "name": "Summoner's Embrace / Grimoire of Sacrifice", "type": "choice", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72053, 72034, 72054], "prev": [72047, 72039, 72051], "entries": [{"id": 91558, "definitionId": 96560, "maxRanks": 1, "type": "passive", "name": "Summoner's Embrace", "spellId": 453105, "icon": "spell_shadow_unsummonbuilding", "index": 100}, {"id": 124691, "definitionId": 129529, "maxRanks": 1, "type": "active", "name": "Grimoire of Sacrifice", "spellId": 108503, "icon": "warlock_grimoireofsacrifice", "index": 200}]}, {"id": 102033, "name": "Vile Taint / Phantom Singularity", "type": "choice", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72054, 102032], "prev": [72040, 72039], "entries": [{"id": 91556, "definitionId": 96558, "maxRanks": 1, "type": "active", "name": "Vile Taint", "spellId": 278350, "icon": "sha_spell_shadow_shadesofdarkness_nightborne", "index": 100}, {"id": 126061, "definitionId": 130893, "maxRanks": 1, "type": "active", "name": "Phantom Singularity", "spellId": 205179, "icon": "inv_enchant_voidsphere", "index": 200}]}, {"id": 72032, "name": "Haunt", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [102031], "prev": [72045], "entries": [{"id": 91552, "definitionId": 96554, "maxRanks": 1, "type": "active", "name": "Haunt", "spellId": 48181, "icon": "ability_warlock_haunt", "index": 100}]}, {"id": 100940, "name": "Shadow Embrace", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046], "prev": [72045], "entries": [{"id": 124690, "definitionId": 129528, "maxRanks": 1, "type": "passive", "name": "Shadow Embrace", "spellId": 32388, "icon": "spell_shadow_shadowembrace", "index": 0}]}, {"id": 72053, "name": "Sacrolash's Dark Strike", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046], "prev": [72037, 72045], "entries": [{"id": 91575, "definitionId": 96577, "maxRanks": 1, "type": "passive", "name": "Sacrolash's Dark Strike", "spellId": 386986, "icon": "spell_nzinsanity_fearofdeath", "index": 100}]}, {"id": 72034, "name": "Summon Darkglare", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046, 71987, 72041], "prev": [72037], "entries": [{"id": 91554, "definitionId": 96556, "maxRanks": 1, "type": "active", "name": "Summon Darkglare", "spellId": 205180, "icon": "inv_beholderwarlock", "index": 100}]}, {"id": 72054, "name": "Cunning Cruelty", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72041, 72038], "prev": [72037, 102033], "entries": [{"id": 91576, "definitionId": 96578, "maxRanks": 1, "type": "passive", "name": "Cunning Cruelty", "spellId": 453172, "icon": "inv_misc_coin_09", "index": 100}]}, {"id": 102032, "name": "Infirmity", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72038], "prev": [102033], "entries": [{"id": 126065, "definitionId": 130897, "maxRanks": 1, "type": "passive", "name": "Infirmity", "spellId": 458036, "icon": "spell_shadow_mindflay", "index": 100}]}, {"id": 102031, "name": "Improved Haunt", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72058], "prev": [72032], "entries": [{"id": 126064, "definitionId": 130896, "maxRanks": 1, "type": "passive", "name": "Improved Haunt", "spellId": 458034, "icon": "ability_warlock_haunt", "index": 100}]}, {"id": 72046, "name": "Malediction", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72058, 72056], "prev": [72053, 100940, 72034], "entries": [{"id": 91567, "definitionId": 96569, "maxRanks": 2, "type": "passive", "name": "Malediction", "spellId": 453087, "icon": "spell_shadow_curseofachimonde", "index": 100}]}, {"id": 71987, "name": "Malevolent Visionary", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72056], "prev": [72034], "entries": [{"id": 91504, "definitionId": 96506, "maxRanks": 1, "type": "passive", "name": "Malevolent Visionary", "spellId": 387273, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 72041, "name": "Contagion", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72056, 72031], "prev": [72054, 72034], "entries": [{"id": 91562, "definitionId": 96564, "maxRanks": 2, "type": "passive", "name": "Contagion", "spellId": 453096, "icon": "spell_shadow_unstableafllictions", "index": 100}]}, {"id": 72038, "name": "Cull the Weak", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72031], "prev": [102032, 72054], "entries": [{"id": 91559, "definitionId": 96561, "maxRanks": 2, "type": "passive", "name": "Cull the Weak", "spellId": 453056, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 72058, "name": "Creeping Death", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71921, 72042, 102246], "prev": [102031, 72046], "entries": [{"id": 91580, "definitionId": 96582, "maxRanks": 1, "type": "passive", "name": "Creeping Death", "spellId": 264000, "icon": "ability_creature_cursed_03", "index": 0}]}, {"id": 72056, "name": "Soul Rot", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [102246, 72057, 72052], "prev": [71987, 72041, 72046], "entries": [{"id": 91578, "definitionId": 96580, "maxRanks": 1, "type": "active", "name": "Soul Rot", "spellId": 386997, "icon": "ability_ardenweald_warlock", "index": 100}]}, {"id": 72031, "name": "Tormented Crescendo", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [72052, 72055, 72035], "prev": [72038, 72041], "entries": [{"id": 91551, "definitionId": 96553, "maxRanks": 1, "type": "passive", "name": "Tormented Crescendo", "spellId": 387075, "icon": "spell_warlock_soulburn", "index": 100}]}, {"id": 71921, "name": "Xavius' Gambit", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [71986, 72033], "prev": [72058], "entries": [{"id": 91429, "definitionId": 96431, "maxRanks": 1, "type": "passive", "name": "Xavius' Gambit", "spellId": 416615, "icon": "ability_xavius_blackeningsoul", "index": 0}]}, {"id": 72042, "name": "Focused Malignancy", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [72033], "prev": [72058], "entries": [{"id": 91563, "definitionId": 96565, "maxRanks": 1, "type": "passive", "name": "Focused Malignancy", "spellId": 399668, "icon": "spell_shadow_fingerofdeath", "index": 100}]}, {"id": 102246, "name": "Perpetual Unstability", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [72033], "prev": [72058, 72056], "entries": [{"id": 126302, "definitionId": 131128, "maxRanks": 1, "type": "passive", "name": "Perpetual Unstability", "spellId": 459376, "icon": "spell_shadow_unstableaffliction_3_purple", "index": 100}]}, {"id": 72057, "name": "Malign Omen", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102029], "prev": [72056], "entries": [{"id": 91579, "definitionId": 96581, "maxRanks": 1, "type": "passive", "name": "Malign Omen", "spellId": 458041, "icon": "spell_shadow_coneofsilence", "index": 100}]}, {"id": 72052, "name": "Relinquished", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247], "prev": [72056, 72031], "entries": [{"id": 91573, "definitionId": 96575, "maxRanks": 1, "type": "passive", "name": "Relinquished", "spellId": 453083, "icon": "inv_misc_gem_amethyst_02", "index": 100}]}, {"id": 72055, "name": "Withering Bolt", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247], "prev": [72031], "entries": [{"id": 91577, "definitionId": 96579, "maxRanks": 1, "type": "passive", "name": "Withering Bolt", "spellId": 386976, "icon": "spell_shadow_shadowbolt", "index": 100}]}, {"id": 72035, "name": "Improved Malefic Rapture", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247, 102030], "prev": [72031], "entries": [{"id": 91555, "definitionId": 96557, "maxRanks": 1, "type": "passive", "name": "Improved Malefic Rapture", "spellId": 454378, "icon": "ability_warlock_everlastingaffliction", "index": 100}]}, {"id": 71986, "name": "Oblivion", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71921], "entries": [{"id": 91503, "definitionId": 96505, "maxRanks": 1, "type": "active", "name": "Oblivion", "spellId": 417537, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 72033, "name": "Death's Embrace", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102246, 72042, 71921], "entries": [{"id": 91553, "definitionId": 96555, "maxRanks": 1, "type": "passive", "name": "Death's Embrace", "spellId": 453189, "icon": "spell_shadow_deathsembrace", "index": 100}]}, {"id": 102029, "name": "Dark Harvest", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72057], "entries": [{"id": 126062, "definitionId": 130894, "maxRanks": 1, "type": "passive", "name": "Dark Harvest", "spellId": 387016, "icon": "ability_creature_disease_02", "index": 100}]}, {"id": 102247, "name": "Ravenous Afflictions", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72052, 72035, 72055], "entries": [{"id": 126303, "definitionId": 131129, "maxRanks": 1, "type": "passive", "name": "Ravenous Afflictions", "spellId": 459440, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 102030, "name": "Malefic Touch", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72035], "entries": [{"id": 126063, "definitionId": 130895, "maxRanks": 1, "type": "passive", "name": "Malefic Touch", "spellId": 458029, "icon": "spell_shadow_manaburn", "index": 100}]}], "heroNodes": [{"id": 94840, "name": "Wither", "type": "single", "posX": 15600, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 58, "next": [94853, 94837, 94845], "prev": [], "entries": [{"id": 117437, "definitionId": 122449, "maxRanks": 1, "type": "active", "name": "Wither", "spellId": 445465, "visibleSpellId": 445468, "icon": "inv_ability_hellcallerwarlock_wither", "index": 100}], "freeNode": true}, {"id": 94853, "name": "Xalan's Ferocity", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94822], "prev": [94840], "entries": [{"id": 117450, "definitionId": 122462, "maxRanks": 1, "type": "passive", "name": "Xalan's Ferocity", "spellId": 440044, "icon": "spell_fire_felfire", "index": 100}]}, {"id": 94837, "name": "Blackened Soul", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94854], "prev": [94840], "entries": [{"id": 117434, "definitionId": 122446, "maxRanks": 1, "type": "passive", "name": "Blackened Soul", "spellId": 440043, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 94845, "name": "Xalan's Cruelty", "type": "single", "posX": 16200, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94835], "prev": [94840], "entries": [{"id": 117442, "definitionId": 122454, "maxRanks": 1, "type": "passive", "name": "Xalan's Cruelty", "spellId": 440040, "icon": "spell_shadow_demonicempathy", "index": 100}]}, {"id": 94851, "name": "Demonic Soul", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 57, "next": [94825, 94847, 94832], "prev": [], "entries": [{"id": 117448, "definitionId": 122460, "maxRanks": 1, "type": "passive", "name": "Demonic Soul", "spellId": 449614, "icon": "inv_ability_soulharvesterwarlock_demonicsoul", "index": 100}], "freeNode": true}, {"id": 94822, "name": "Curse of the Satyr / Aura of Enfeeblement", "type": "choice", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94834], "prev": [94853], "entries": [{"id": 117419, "definitionId": 122431, "maxRanks": 1, "type": "passive", "name": "Curse of the Satyr", "spellId": 440057, "icon": "inv_fabric_felrag", "index": 100}, {"id": 123309, "definitionId": 128179, "maxRanks": 1, "type": "passive", "name": "Aura of Enfeeblement", "spellId": 440059, "icon": "warlock_curse_weakness_aura", "index": 200}]}, {"id": 94854, "name": "Hatefury Rituals / Bleakheart Tactics", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94829], "prev": [94837], "entries": [{"id": 117451, "definitionId": 122463, "maxRanks": 1, "type": "passive", "name": "Hatefury Rituals", "spellId": 440048, "icon": "70_inscription_glyph_demonhunter_minor", "index": 100}, {"id": 123310, "definitionId": 128180, "maxRanks": 1, "type": "passive", "name": "Bleakheart Tactics", "spellId": 440051, "icon": "spell_shadow_mindshear", "index": 200}]}, {"id": 94835, "name": "Zevrim's Resilience / Illhoof's Design", "type": "choice", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94844], "prev": [94845], "entries": [{"id": 117432, "definitionId": 122444, "maxRanks": 1, "type": "passive", "name": "Zevrim's Resilience", "spellId": 440065, "icon": "ability_warrior_intensifyrage", "index": 100}, {"id": 123308, "definitionId": 128178, "maxRanks": 1, "type": "passive", "name": "Illhoof's Design", "spellId": 440070, "icon": "sha_spell_fire_felfireward_nightmare", "index": 200}]}, {"id": 94825, "name": "Necrolyte Teachings", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94850], "prev": [94851], "entries": [{"id": 117422, "definitionId": 122434, "maxRanks": 1, "type": "passive", "name": "Necrolyte Teachings", "spellId": 449620, "icon": "spell_necro_deathall", "index": 100}]}, {"id": 94847, "name": "Soul Anathema", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94823], "prev": [94851], "entries": [{"id": 117444, "definitionId": 122456, "maxRanks": 1, "type": "passive", "name": "Soul Anathema", "spellId": 449624, "icon": "spell_necro_inevitableend", "index": 100}]}, {"id": 94832, "name": "Demoniac's Fervor", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94824], "prev": [94851], "entries": [{"id": 117429, "definitionId": 122441, "maxRanks": 1, "type": "passive", "name": "Demoniac's Fervor", "spellId": 449629, "icon": "inv_helm_mask_zulgurub_d_01", "index": 100}]}, {"id": 94834, "name": "Mark of Xavius", "type": "single", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94822], "entries": [{"id": 117431, "definitionId": 122443, "maxRanks": 1, "type": "passive", "name": "Mark of Xavius", "spellId": 440046, "icon": "warlock_curse_shadow_aura", "index": 100}]}, {"id": 94829, "name": "Seeds of Their Demise", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94854], "entries": [{"id": 117426, "definitionId": 122438, "maxRanks": 1, "type": "passive", "name": "Seeds of Their Demise", "spellId": 440055, "icon": "ability_warlock_moltencoregreen", "index": 100}]}, {"id": 94844, "name": "Mark of Peroth'arn", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94835], "entries": [{"id": 117441, "definitionId": 122453, "maxRanks": 1, "type": "passive", "name": "Mark of Peroth'arn", "spellId": 440045, "icon": "70_inscription_vantus_rune_tomb", "index": 100}]}, {"id": 94850, "name": "Gorebound Fortitude / Friends In Dark Places", "type": "choice", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94821], "prev": [94825], "entries": [{"id": 117447, "definitionId": 122459, "maxRanks": 1, "type": "passive", "name": "Gorebound Fortitude", "spellId": 449701, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 123840, "definitionId": 128678, "maxRanks": 1, "type": "passive", "name": "Friends In Dark Places", "spellId": 449703, "icon": "spell_shadow_deathpact", "index": 200}]}, {"id": 94823, "name": "Shared Fate / Feast of Souls", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94846], "prev": [94847], "entries": [{"id": 117420, "definitionId": 122432, "maxRanks": 1, "type": "passive", "name": "Shared Fate", "spellId": 449704, "icon": "ability_warlock_soullink", "index": 100}, {"id": 123839, "definitionId": 128677, "maxRanks": 1, "type": "passive", "name": "Feast of Souls", "spellId": 449706, "icon": "ability_warlock_improvedsoulleech", "index": 200}]}, {"id": 94824, "name": "Eternal Servitude / Gorefiend's Resolve", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94838], "prev": [94832], "entries": [{"id": 117421, "definitionId": 122433, "maxRanks": 1, "type": "passive", "name": "Eternal Servitude", "spellId": 449707, "icon": "ability_demonhunter_infernalchains", "index": 100}, {"id": 123838, "definitionId": 128676, "maxRanks": 1, "type": "passive", "name": "Gorefiend's Resolve", "spellId": 389623, "icon": "ability_rogue_masterofsubtlety", "index": 200}]}, {"id": 94842, "name": "Malevolence", "type": "single", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 58, "next": [], "prev": [94829, 94834, 94844], "entries": [{"id": 117439, "definitionId": 122451, "maxRanks": 1, "type": "active", "name": "Malevolence", "spellId": 430014, "visibleSpellId": 442726, "icon": "inv_ability_hellcallerwarlock_malevolence", "index": 100}]}, {"id": 94821, "name": "Wicked Reaping", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94850], "entries": [{"id": 117418, "definitionId": 122430, "maxRanks": 1, "type": "passive", "name": "Wicked Reaping", "spellId": 449631, "icon": "inv_staff_2h_artifactdeadwind_d_05", "index": 100}]}, {"id": 94846, "name": "Quietus", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94823], "entries": [{"id": 117443, "definitionId": 122455, "maxRanks": 1, "type": "passive", "name": "Quietus", "spellId": 449634, "icon": "spell_necro_conclave", "index": 100}]}, {"id": 94838, "name": "Sataiel's Volition", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "next": [94857], "prev": [94824], "entries": [{"id": 117435, "definitionId": 122447, "maxRanks": 1, "type": "passive", "name": "Sataiel's Volition", "spellId": 449637, "icon": "spell_necro_deathlyecho", "index": 100}]}, {"id": 94857, "name": "Shadow of Death", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 57, "requiresNode": 101905, "next": [], "prev": [94846, 94821, 94838], "entries": [{"id": 117454, "definitionId": 122466, "maxRanks": 1, "type": "passive", "name": "Shadow of Death", "spellId": 449638, "icon": "spell_arcane_prismaticcloak", "index": 100}]}], "subTreeNodes": [{"id": 99850, "name": "Hellcaller / Soul Harvester", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123387, "type": "subtree", "name": "Hellcaller", "traitSubTreeId": 58, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-hellcaller", "nodes": [94840, 94853, 94837, 94845, 94822, 94854, 94835, 94834, 94829, 94844, 94842]}, {"id": 123384, "type": "subtree", "name": "Soul Harvester", "traitSubTreeId": 57, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-soulharvester", "nodes": [94851, 94825, 94847, 94832, 94850, 94823, 94824, 94821, 94846, 94838, 94857]}]}], "fullNodeOrder": [71915, 71916, 71917, 71918, 71921, 71922, 71923, 71924, 71925, 71926, 71927, 71928, 71930, 71931, 71932, 71933, 71934, 71935, 71936, 71937, 71938, 71939, 71940, 71941, 71942, 71944, 71946, 71947, 71948, 71949, 71950, 71951, 71952, 71953, 71954, 71955, 71956, 71957, 71960, 71961, 71962, 71964, 71965, 71966, 71967, 71968, 71969, 71970, 71971, 71972, 71973, 71974, 71975, 71978, 71979, 71980, 71982, 71983, 71984, 71985, 71986, 71987, 72031, 72032, 72033, 72034, 72035, 72037, 72038, 72039, 72040, 72041, 72042, 72043, 72045, 72046, 72047, 72048, 72049, 72050, 72051, 72052, 72053, 72054, 72055, 72056, 72057, 72058, 72059, 72060, 72061, 72062, 72063, 72064, 72065, 72066, 72067, 72068, 72069, 93178, 93179, 94821, 94822, 94823, 94824, 94825, 94826, 94829, 94830, 94831, 94832, 94833, 94834, 94835, 94836, 94837, 94838, 94840, 94842, 94843, 94844, 94845, 94846, 94847, 94848, 94849, 94850, 94851, 94852, 94853, 94854, 94855, 94856, 94857, 99848, 99849, 99850, 100940, 100941, 101884, 101885, 101886, 101887, 101888, 101889, 101890, 101891, 101892, 101893, 101894, 101895, 101896, 101897, 101898, 101899, 101900, 101901, 101902, 101903, 101904, 101905, 101906, 101907, 101908, 101909, 101910, 101911, 101912, 101913, 101914, 101915, 101916, 101917, 101918, 101919, 101920, 101921, 101922, 101923, 101924, 101925, 101926, 101992, 101993, 101994, 101995, 101996, 101997, 101998, 102002, 102003, 102029, 102030, 102031, 102032, 102033, 102246, 102247, 102427]} \ No newline at end of file +{"traitTreeId": 720, "className": "Warlock", "classId": 9, "specName": "Affliction", "specId": 265, "classNodes": [{"id": 71931, "name": "Fel Domination", "type": "single", "posX": 3000, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71932, 71952], "prev": [], "entries": [{"id": 91439, "definitionId": 96441, "maxRanks": 1, "type": "active", "name": "Fel Domination", "spellId": 333889, "icon": "spell_shadow_felmending", "index": 100}]}, {"id": 71933, "name": "Soul Leech", "type": "single", "posX": 4200, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71952, 71950], "prev": [], "entries": [{"id": 91441, "definitionId": 96443, "maxRanks": 1, "type": "passive", "name": "Soul Leech", "spellId": 108370, "icon": "warlock_siphonlife", "index": 100}], "freeNode": true}, {"id": 71949, "name": "Burning Rush", "type": "single", "posX": 5400, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [71950, 71948], "prev": [], "entries": [{"id": 91460, "definitionId": 96462, "maxRanks": 1, "type": "active", "name": "Burning Rush", "spellId": 111400, "icon": "ability_deathwing_sealarmorbreachtga", "index": 100}]}, {"id": 71932, "name": "Fel Pact", "type": "single", "posX": 2400, "posY": 1800, "maxRanks": 1, "next": [71951], "prev": [71931], "entries": [{"id": 91440, "definitionId": 96442, "maxRanks": 1, "type": "passive", "name": "Fel Pact", "spellId": 386113, "icon": "spell_shadow_impphaseshift", "index": 100}]}, {"id": 71952, "name": "Demon Skin", "type": "single", "posX": 3600, "posY": 1800, "maxRanks": 2, "next": [71951, 100941], "prev": [71933, 71931], "entries": [{"id": 91463, "definitionId": 96465, "maxRanks": 2, "type": "passive", "name": "Demon Skin", "spellId": 219272, "icon": "spell_shadow_ragingscream", "index": 100}]}, {"id": 71950, "name": "Fel Armor", "type": "single", "posX": 4800, "posY": 1800, "maxRanks": 2, "next": [100941, 71947], "prev": [71933, 71949], "entries": [{"id": 91461, "definitionId": 96463, "maxRanks": 2, "type": "passive", "name": "Fel Armor", "spellId": 386124, "icon": "spell_shadow_felarmour", "index": 0}]}, {"id": 71948, "name": "Fiendish Stride", "type": "single", "posX": 6000, "posY": 1800, "maxRanks": 1, "next": [71947], "prev": [71949], "entries": [{"id": 91459, "definitionId": 96461, "maxRanks": 1, "type": "passive", "name": "Fiendish Stride", "spellId": 386110, "icon": "inv_misc_moosehoof_fel", "index": 100}]}, {"id": 71951, "name": "Curses of Enfeeblement", "type": "single", "posX": 3000, "posY": 2400, "maxRanks": 1, "next": [71934, 71930, 71928], "prev": [71932, 71952], "entries": [{"id": 91462, "definitionId": 96464, "maxRanks": 1, "type": "active", "name": "Curses of Enfeeblement", "spellId": 386105, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 100941, "name": "Demonic Circle", "type": "single", "posX": 4200, "posY": 2400, "maxRanks": 1, "next": [71928, 71954, 71946], "prev": [71950, 71952], "entries": [{"id": 124694, "definitionId": 129532, "maxRanks": 1, "type": "active", "name": "Demonic Circle", "spellId": 268358, "icon": "spell_shadow_demoniccirclesummon", "index": 100}]}, {"id": 71947, "name": "Howl of Terror / Mortal Coil", "type": "choice", "posX": 5400, "posY": 2400, "maxRanks": 1, "next": [71946, 71922, 71944], "prev": [71950, 71948], "entries": [{"id": 91458, "definitionId": 96460, "maxRanks": 1, "type": "active", "name": "Howl of Terror", "spellId": 5484, "icon": "ability_warlock_howlofterror", "index": 100}, {"id": 91457, "definitionId": 96459, "maxRanks": 1, "type": "active", "name": "Mortal Coil", "spellId": 6789, "icon": "ability_warlock_mortalcoil", "index": 200}]}, {"id": 71934, "name": "Amplify Curse", "type": "single", "posX": 2400, "posY": 3000, "maxRanks": 1, "next": [71935, 71953], "prev": [71951], "entries": [{"id": 91442, "definitionId": 96444, "maxRanks": 1, "type": "active", "name": "Amplify Curse", "spellId": 328774, "icon": "spell_shadow_contagion", "index": 100}]}, {"id": 71930, "name": "Demonic Embrace", "type": "single", "posX": 3000, "posY": 3000, "maxRanks": 1, "next": [71953], "prev": [71951], "entries": [{"id": 91438, "definitionId": 96440, "maxRanks": 1, "type": "passive", "name": "Demonic Embrace", "spellId": 288843, "icon": "spell_shadow_metamorphosis", "index": 100}]}, {"id": 71928, "name": "Demonic Inspiration", "type": "single", "posX": 3600, "posY": 3000, "maxRanks": 1, "next": [71953, 71927, 71916], "prev": [71951, 100941], "entries": [{"id": 91436, "definitionId": 96438, "maxRanks": 1, "type": "passive", "name": "Demonic Inspiration", "spellId": 386858, "icon": "ability_warlock_demonicpower", "index": 100}]}, {"id": 71954, "name": "Abyss Walker", "type": "single", "posX": 4200, "posY": 3000, "maxRanks": 1, "next": [71916], "prev": [100941], "entries": [{"id": 91465, "definitionId": 96467, "maxRanks": 1, "type": "passive", "name": "Abyss Walker", "spellId": 389609, "icon": "achievement_explore_argus", "index": 100}]}, {"id": 71946, "name": "Wrathful Minion", "type": "single", "posX": 4800, "posY": 3000, "maxRanks": 1, "next": [71916, 71955, 71940], "prev": [71947, 100941], "entries": [{"id": 91456, "definitionId": 96458, "maxRanks": 1, "type": "passive", "name": "Wrathful Minion", "spellId": 386864, "icon": "spell_fel_incinerate", "index": 100}]}, {"id": 71922, "name": "Demonic Fortitude", "type": "single", "posX": 5400, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91430, "definitionId": 96432, "maxRanks": 1, "type": "passive", "name": "Demonic Fortitude", "spellId": 386617, "icon": "spell_warlock_summonimpoutland", "index": 100}]}, {"id": 71944, "name": "Banish", "type": "single", "posX": 6000, "posY": 3000, "maxRanks": 1, "next": [71940], "prev": [71947], "entries": [{"id": 91454, "definitionId": 96456, "maxRanks": 1, "type": "active", "name": "Banish", "spellId": 710, "icon": "spell_shadow_cripple", "index": 100}]}, {"id": 71935, "name": "Teachings of the Satyr", "type": "single", "posX": 2400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936], "prev": [71934], "entries": [{"id": 91443, "definitionId": 96445, "maxRanks": 1, "type": "passive", "name": "Teachings of the Satyr", "spellId": 387972, "icon": "spell_shadow_carrionswarm", "index": 100}]}, {"id": 71953, "name": "Accrued Vitality", "type": "single", "posX": 3000, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71936], "prev": [71934, 71928, 71930], "entries": [{"id": 91464, "definitionId": 96466, "maxRanks": 2, "type": "passive", "name": "Accrued Vitality", "spellId": 386613, "icon": "spell_shadow_lifedrain", "index": 100}]}, {"id": 71927, "name": "Sweet Souls", "type": "single", "posX": 3600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71936, 71956], "prev": [71928], "entries": [{"id": 91435, "definitionId": 96437, "maxRanks": 1, "type": "passive", "name": "Sweet Souls", "spellId": 386620, "icon": "spell_shadow_soulleech", "index": 100}]}, {"id": 71916, "name": "Nightmare / Horrify", "type": "choice", "posX": 4200, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71956], "prev": [71946, 71928, 71954], "entries": [{"id": 91422, "definitionId": 96424, "maxRanks": 1, "type": "passive", "name": "Nightmare", "spellId": 386648, "icon": "spell_shadow_possession", "index": 100}, {"id": 115459, "definitionId": 120471, "maxRanks": 1, "type": "passive", "name": "Horrify", "spellId": 56244, "icon": "spell_nzinsanity_bloodthirst", "index": 200}]}, {"id": 71955, "name": "Demonic Gateway", "type": "single", "posX": 4800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [71942, 71956], "prev": [71946], "entries": [{"id": 91466, "definitionId": 96468, "maxRanks": 1, "type": "active", "name": "Demonic Gateway", "spellId": 111771, "icon": "spell_warlock_demonicportal_green", "index": 100}]}, {"id": 71940, "name": "Lifeblood", "type": "single", "posX": 5400, "posY": 3600, "reqPoints": 8, "maxRanks": 2, "next": [71942], "prev": [71922, 71944, 71946], "entries": [{"id": 91449, "definitionId": 96451, "maxRanks": 2, "type": "passive", "name": "Lifeblood", "spellId": 386646, "icon": "warlock_-healthstone", "index": 100}]}, {"id": 71936, "name": "Dark Pact", "type": "single", "posX": 3000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [71937, 93178], "prev": [71927, 71935, 71953], "entries": [{"id": 91444, "definitionId": 96446, "maxRanks": 1, "type": "active", "name": "Dark Pact", "spellId": 108416, "icon": "spell_shadow_deathpact", "index": 100}]}, {"id": 71956, "name": "Strength of Will / Dark Accord", "type": "choice", "posX": 4200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93178, 93179], "prev": [71916, 71955, 71927], "entries": [{"id": 91468, "definitionId": 96470, "maxRanks": 1, "type": "passive", "name": "Strength of Will", "spellId": 317138, "icon": "spell_shadow_demonictactics", "index": 100}, {"id": 91467, "definitionId": 96469, "maxRanks": 1, "type": "passive", "name": "Dark Accord", "spellId": 386659, "icon": "ability_warlock_improveddemonictactics", "index": 200}]}, {"id": 71942, "name": "Shadowfury", "type": "single", "posX": 5400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [93179, 71941], "prev": [71955, 71940], "entries": [{"id": 91452, "definitionId": 96454, "maxRanks": 1, "type": "active", "name": "Shadowfury", "spellId": 30283, "icon": "ability_warlock_shadowfurytga", "index": 200}]}, {"id": 71937, "name": "Ichor of Devils / Frequent Donor", "type": "choice", "posX": 2400, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71918], "prev": [71936], "entries": [{"id": 91446, "definitionId": 96448, "maxRanks": 1, "type": "passive", "name": "Ichor of Devils", "spellId": 386664, "icon": "spell_yorsahj_bloodboil_greenoil", "index": 100}, {"id": 91445, "definitionId": 96447, "maxRanks": 1, "type": "passive", "name": "Frequent Donor", "spellId": 386686, "icon": "ability_ironmaidens_bloodritual", "index": 200}]}, {"id": 93178, "name": "Socrethar's Guile", "type": "single", "posX": 3600, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71918, 71925], "prev": [71936, 71956], "entries": [{"id": 115461, "definitionId": 120473, "maxRanks": 2, "type": "passive", "name": "Socrethar's Guile", "spellId": 405936, "icon": "spell_fire_soulburn", "index": 100}]}, {"id": 93179, "name": "Sargerei Technique", "type": "single", "posX": 4800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [71925, 71938], "prev": [71956, 71942], "entries": [{"id": 115462, "definitionId": 120474, "maxRanks": 2, "type": "passive", "name": "Sargerei Technique", "spellId": 405955, "icon": "70_inscription_glyph_demonhunter_major", "index": 100}]}, {"id": 71941, "name": "Darkfury / Shadowflame", "type": "choice", "posX": 6000, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [71938], "prev": [71942], "entries": [{"id": 91451, "definitionId": 96453, "maxRanks": 1, "type": "passive", "name": "Darkfury", "spellId": 264874, "icon": "ability_warlock_shadowfurytga", "index": 100}, {"id": 91450, "definitionId": 96452, "maxRanks": 1, "type": "active", "name": "Shadowflame", "spellId": 384069, "icon": "ability_warlock_shadowflame", "index": 200}]}, {"id": 71918, "name": "Swift Artifice", "type": "single", "posX": 3000, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71915, 71924], "prev": [71937, 93178], "entries": [{"id": 91425, "definitionId": 96427, "maxRanks": 1, "type": "passive", "name": "Swift Artifice", "spellId": 452902, "icon": "spell_shadow_destructivesoul", "index": 100}]}, {"id": 71925, "name": "Demonic Tactics", "type": "single", "posX": 4200, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71924, 71923], "prev": [93178, 93179], "entries": [{"id": 91433, "definitionId": 96435, "maxRanks": 1, "type": "passive", "name": "Demonic Tactics", "spellId": 452894, "icon": "inv_helm_laughingskull_01", "index": 100}]}, {"id": 71938, "name": "Teachings of the Black Harvest", "type": "single", "posX": 5400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71923, 71917], "prev": [71941, 93179], "entries": [{"id": 91447, "definitionId": 96449, "maxRanks": 1, "type": "passive", "name": "Teachings of the Black Harvest", "spellId": 385881, "icon": "inv_misc_codexofxerrath_nochains", "index": 100}]}, {"id": 71915, "name": "Resolute Barrier", "type": "single", "posX": 2400, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926], "prev": [71918], "entries": [{"id": 91421, "definitionId": 96423, "maxRanks": 2, "type": "passive", "name": "Resolute Barrier", "spellId": 389359, "icon": "inv_shield_1h_demonweapon_c_01", "index": 100}]}, {"id": 71924, "name": "Fel Synergy", "type": "single", "posX": 3600, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71926, 71939], "prev": [71918, 71925], "entries": [{"id": 91432, "definitionId": 96434, "maxRanks": 2, "type": "passive", "name": "Fel Synergy", "spellId": 389367, "icon": "inv_sword_1h_felfireraid_d_01", "index": 100}]}, {"id": 71923, "name": "Soul Link", "type": "single", "posX": 4800, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71939, 71957], "prev": [71925, 71938], "entries": [{"id": 91431, "definitionId": 96433, "maxRanks": 2, "type": "passive", "name": "Soul Link", "spellId": 108415, "icon": "ability_warlock_soullink", "index": 100}]}, {"id": 71917, "name": "Demonic Resilience", "type": "single", "posX": 6000, "posY": 6000, "reqPoints": 20, "maxRanks": 2, "next": [71957], "prev": [71938], "entries": [{"id": 91424, "definitionId": 96426, "maxRanks": 2, "type": "passive", "name": "Demonic Resilience", "spellId": 389590, "icon": "ability_warlock_avoidance", "index": 100}]}, {"id": 71926, "name": "Pact of Gluttony", "type": "single", "posX": 3000, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71915], "entries": [{"id": 91434, "definitionId": 96436, "maxRanks": 1, "type": "passive", "name": "Pact of Gluttony", "spellId": 386689, "icon": "warlock__bloodstone", "index": 100}]}, {"id": 71939, "name": "Soul Conduit", "type": "single", "posX": 4200, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71924, 71923], "entries": [{"id": 91427, "definitionId": 96450, "maxRanks": 1, "type": "passive", "name": "Soul Conduit", "spellId": 215941, "icon": "spell_shadow_soulleech_2", "index": 100}]}, {"id": 71957, "name": "Soulburn", "type": "single", "posX": 5400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71917, 71923], "entries": [{"id": 91469, "definitionId": 96471, "maxRanks": 1, "type": "active", "name": "Soulburn", "spellId": 385899, "icon": "spell_warlock_soulburn", "index": 100}]}], "specNodes": [{"id": 72049, "name": "Unstable Affliction", "type": "single", "posX": 12600, "posY": 1200, "maxRanks": 1, "entryNode": true, "next": [72048, 72050], "prev": [], "entries": [{"id": 91570, "definitionId": 96572, "maxRanks": 1, "type": "active", "name": "Unstable Affliction", "spellId": 316099, "icon": "spell_shadow_unstableaffliction_3", "index": 100}]}, {"id": 72048, "name": "Writhe in Agony", "type": "single", "posX": 12000, "posY": 1800, "maxRanks": 1, "next": [72043, 72051, 72047], "prev": [72049], "entries": [{"id": 91569, "definitionId": 96571, "maxRanks": 1, "type": "passive", "name": "Writhe in Agony", "spellId": 196102, "icon": "spell_shadow_curseofsargeras", "index": 100}]}, {"id": 72050, "name": "Seed of Corruption", "type": "single", "posX": 13200, "posY": 1800, "maxRanks": 1, "next": [72051, 72040, 72039], "prev": [72049], "entries": [{"id": 91571, "definitionId": 96573, "maxRanks": 1, "type": "active", "name": "Seed of Corruption", "spellId": 27243, "icon": "spell_shadow_seedofdestruction", "index": 100}]}, {"id": 72043, "name": "Dark Virtuosity", "type": "single", "posX": 11400, "posY": 2400, "maxRanks": 2, "next": [72047, 72045], "prev": [72048], "entries": [{"id": 91564, "definitionId": 96566, "maxRanks": 2, "type": "passive", "name": "Dark Virtuosity", "spellId": 405327, "icon": "inv_elemental_primal_shadow", "index": 100}]}, {"id": 72051, "name": "Absolute Corruption / Siphon Life", "type": "choice", "posX": 12600, "posY": 2400, "maxRanks": 1, "next": [72047, 72039, 72037], "prev": [72048, 72050], "entries": [{"id": 91572, "definitionId": 96574, "maxRanks": 1, "type": "passive", "name": "Absolute Corruption", "spellId": 196103, "icon": "ability_bossmannoroth_empoweredmannorothsgaze", "index": 100}, {"id": 124693, "definitionId": 129531, "maxRanks": 1, "type": "passive", "name": "Siphon Life", "spellId": 452999, "icon": "spell_shadow_requiem", "index": 200}]}, {"id": 72040, "name": "Kindled Malice", "type": "single", "posX": 13800, "posY": 2400, "maxRanks": 2, "next": [72039, 102033], "prev": [72050], "entries": [{"id": 91561, "definitionId": 96563, "maxRanks": 2, "type": "passive", "name": "Kindled Malice", "spellId": 405330, "icon": "inv_artifact_powerofthedarkside", "index": 100}]}, {"id": 72047, "name": "Nightfall", "type": "single", "posX": 12000, "posY": 3000, "maxRanks": 1, "next": [72045, 72037], "prev": [72048, 72043, 72051], "entries": [{"id": 91568, "definitionId": 96570, "maxRanks": 1, "type": "passive", "name": "Nightfall", "spellId": 108558, "icon": "spell_shadow_twilight", "index": 100}]}, {"id": 72039, "name": "Volatile Agony", "type": "single", "posX": 13200, "posY": 3000, "maxRanks": 1, "next": [72037, 102033], "prev": [72051, 72050, 72040], "entries": [{"id": 91560, "definitionId": 96562, "maxRanks": 1, "type": "passive", "name": "Volatile Agony", "spellId": 453034, "icon": "ability_xavius_corruptingnova", "index": 100}]}, {"id": 72045, "name": "Improved Shadow Bolt / Drain Soul", "type": "choice", "posX": 11400, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72032, 100940, 72053], "prev": [72047, 72043], "entries": [{"id": 91566, "definitionId": 96568, "maxRanks": 1, "type": "passive", "name": "Improved Shadow Bolt", "spellId": 453080, "icon": "spell_shadow_shadowbolt", "index": 0}, {"id": 124692, "definitionId": 129530, "maxRanks": 1, "type": "active", "name": "Drain Soul", "spellId": 388667, "icon": "spell_shadow_haunting", "index": 100}]}, {"id": 72037, "name": "Summoner's Embrace / Grimoire of Sacrifice", "type": "choice", "posX": 12600, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72053, 72034, 72054], "prev": [72047, 72039, 72051], "entries": [{"id": 91558, "definitionId": 96560, "maxRanks": 1, "type": "passive", "name": "Summoner's Embrace", "spellId": 453105, "icon": "spell_shadow_unsummonbuilding", "index": 100}, {"id": 124691, "definitionId": 129529, "maxRanks": 1, "type": "active", "name": "Grimoire of Sacrifice", "spellId": 108503, "icon": "warlock_grimoireofsacrifice", "index": 200}]}, {"id": 102033, "name": "Vile Taint / Phantom Singularity", "type": "choice", "posX": 13800, "posY": 3600, "reqPoints": 8, "maxRanks": 1, "next": [72054, 102032], "prev": [72040, 72039], "entries": [{"id": 91556, "definitionId": 96558, "maxRanks": 1, "type": "active", "name": "Vile Taint", "spellId": 278350, "icon": "sha_spell_shadow_shadesofdarkness_nightborne", "index": 100}, {"id": 126061, "definitionId": 130893, "maxRanks": 1, "type": "active", "name": "Phantom Singularity", "spellId": 205179, "icon": "inv_enchant_voidsphere", "index": 200}]}, {"id": 72032, "name": "Haunt", "type": "single", "posX": 10800, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [102031], "prev": [72045], "entries": [{"id": 91552, "definitionId": 96554, "maxRanks": 1, "type": "active", "name": "Haunt", "spellId": 48181, "icon": "ability_warlock_haunt", "index": 100}]}, {"id": 100940, "name": "Shadow Embrace", "type": "single", "posX": 11400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046], "prev": [72045], "entries": [{"id": 124690, "definitionId": 129528, "maxRanks": 1, "type": "passive", "name": "Shadow Embrace", "spellId": 32388, "icon": "spell_shadow_shadowembrace", "index": 0}]}, {"id": 72053, "name": "Sacrolash's Dark Strike", "type": "single", "posX": 12000, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046], "prev": [72037, 72045], "entries": [{"id": 91575, "definitionId": 96577, "maxRanks": 1, "type": "passive", "name": "Sacrolash's Dark Strike", "spellId": 386986, "icon": "spell_nzinsanity_fearofdeath", "index": 100}]}, {"id": 72034, "name": "Summon Darkglare", "type": "single", "posX": 12600, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72046, 71987, 72041], "prev": [72037], "entries": [{"id": 91554, "definitionId": 96556, "maxRanks": 1, "type": "active", "name": "Summon Darkglare", "spellId": 205180, "icon": "inv_beholderwarlock", "index": 100}]}, {"id": 72054, "name": "Cunning Cruelty", "type": "single", "posX": 13200, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72041, 72038], "prev": [72037, 102033], "entries": [{"id": 91576, "definitionId": 96578, "maxRanks": 1, "type": "passive", "name": "Cunning Cruelty", "spellId": 453172, "icon": "inv_misc_coin_09", "index": 100}]}, {"id": 102032, "name": "Infirmity", "type": "single", "posX": 14400, "posY": 4200, "reqPoints": 8, "maxRanks": 1, "next": [72038], "prev": [102033], "entries": [{"id": 126065, "definitionId": 130897, "maxRanks": 1, "type": "passive", "name": "Infirmity", "spellId": 458036, "icon": "spell_shadow_mindflay", "index": 100}]}, {"id": 102031, "name": "Improved Haunt", "type": "single", "posX": 10800, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72058], "prev": [72032], "entries": [{"id": 126064, "definitionId": 130896, "maxRanks": 1, "type": "passive", "name": "Improved Haunt", "spellId": 458034, "icon": "ability_warlock_haunt", "index": 100}]}, {"id": 72046, "name": "Malediction", "type": "single", "posX": 12000, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72058, 72056], "prev": [72053, 100940, 72034], "entries": [{"id": 91567, "definitionId": 96569, "maxRanks": 2, "type": "passive", "name": "Malediction", "spellId": 453087, "icon": "spell_shadow_curseofachimonde", "index": 100}]}, {"id": 71987, "name": "Malevolent Visionary", "type": "single", "posX": 12600, "posY": 4800, "reqPoints": 8, "maxRanks": 1, "next": [72056], "prev": [72034], "entries": [{"id": 91504, "definitionId": 96506, "maxRanks": 1, "type": "passive", "name": "Malevolent Visionary", "spellId": 387273, "icon": "inv_archaeology_70_crystallineeyeofundravius", "index": 100}]}, {"id": 72041, "name": "Contagion", "type": "single", "posX": 13200, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72056, 72031], "prev": [72054, 72034], "entries": [{"id": 91562, "definitionId": 96564, "maxRanks": 2, "type": "passive", "name": "Contagion", "spellId": 453096, "icon": "spell_shadow_unstableafllictions", "index": 100}]}, {"id": 72038, "name": "Cull the Weak", "type": "single", "posX": 13800, "posY": 4800, "reqPoints": 8, "maxRanks": 2, "next": [72031], "prev": [102032, 72054], "entries": [{"id": 91559, "definitionId": 96561, "maxRanks": 2, "type": "passive", "name": "Cull the Weak", "spellId": 453056, "icon": "ability_warlock_soulsiphon", "index": 100}]}, {"id": 72058, "name": "Creeping Death", "type": "single", "posX": 11400, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [71921, 72042, 102246], "prev": [102031, 72046], "entries": [{"id": 91580, "definitionId": 96582, "maxRanks": 1, "type": "passive", "name": "Creeping Death", "spellId": 264000, "icon": "ability_creature_cursed_03", "index": 0}]}, {"id": 72056, "name": "Soul Rot", "type": "single", "posX": 12600, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [102246, 72057, 72052], "prev": [71987, 72041, 72046], "entries": [{"id": 91578, "definitionId": 96580, "maxRanks": 1, "type": "active", "name": "Soul Rot", "spellId": 386997, "icon": "inv_ability_warlock_soulrot", "index": 100}]}, {"id": 72031, "name": "Tormented Crescendo", "type": "single", "posX": 13800, "posY": 5400, "reqPoints": 20, "maxRanks": 1, "next": [72052, 72055, 72035], "prev": [72038, 72041], "entries": [{"id": 91551, "definitionId": 96553, "maxRanks": 1, "type": "passive", "name": "Tormented Crescendo", "spellId": 387075, "icon": "spell_warlock_soulburn", "index": 100}]}, {"id": 71921, "name": "Xavius' Gambit", "type": "single", "posX": 10800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [71986, 72033], "prev": [72058], "entries": [{"id": 91429, "definitionId": 96431, "maxRanks": 1, "type": "passive", "name": "Xavius' Gambit", "spellId": 416615, "icon": "ability_xavius_blackeningsoul", "index": 0}]}, {"id": 72042, "name": "Focused Malignancy", "type": "single", "posX": 11400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [72033], "prev": [72058], "entries": [{"id": 91563, "definitionId": 96565, "maxRanks": 1, "type": "passive", "name": "Focused Malignancy", "spellId": 399668, "icon": "spell_shadow_fingerofdeath", "index": 100}]}, {"id": 102246, "name": "Perpetual Unstability", "type": "single", "posX": 12000, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [72033], "prev": [72058, 72056], "entries": [{"id": 126302, "definitionId": 131128, "maxRanks": 1, "type": "passive", "name": "Perpetual Unstability", "spellId": 459376, "icon": "spell_shadow_unstableaffliction_3_purple", "index": 100}]}, {"id": 72057, "name": "Malign Omen", "type": "single", "posX": 12600, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102029], "prev": [72056], "entries": [{"id": 91579, "definitionId": 96581, "maxRanks": 1, "type": "passive", "name": "Malign Omen", "spellId": 458041, "icon": "spell_shadow_coneofsilence", "index": 100}]}, {"id": 72052, "name": "Relinquished", "type": "single", "posX": 13200, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247], "prev": [72056, 72031], "entries": [{"id": 91573, "definitionId": 96575, "maxRanks": 1, "type": "passive", "name": "Relinquished", "spellId": 453083, "icon": "inv_misc_gem_amethyst_02", "index": 100}]}, {"id": 72055, "name": "Withering Bolt", "type": "single", "posX": 13800, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247], "prev": [72031], "entries": [{"id": 91577, "definitionId": 96579, "maxRanks": 1, "type": "passive", "name": "Withering Bolt", "spellId": 386976, "icon": "spell_shadow_shadowbolt", "index": 100}]}, {"id": 72035, "name": "Improved Malefic Rapture", "type": "single", "posX": 14400, "posY": 6000, "reqPoints": 20, "maxRanks": 1, "next": [102247, 102030], "prev": [72031], "entries": [{"id": 91555, "definitionId": 96557, "maxRanks": 1, "type": "passive", "name": "Improved Malefic Rapture", "spellId": 454378, "icon": "ability_warlock_everlastingaffliction", "index": 100}]}, {"id": 71986, "name": "Oblivion", "type": "single", "posX": 10800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [71921], "entries": [{"id": 91503, "definitionId": 96505, "maxRanks": 1, "type": "active", "name": "Oblivion", "spellId": 417537, "icon": "spell_misc_zandalari_council_soulswap", "index": 100}]}, {"id": 72033, "name": "Death's Embrace", "type": "single", "posX": 11400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [102246, 72042, 71921], "entries": [{"id": 91553, "definitionId": 96555, "maxRanks": 1, "type": "passive", "name": "Death's Embrace", "spellId": 453189, "icon": "spell_shadow_deathsembrace", "index": 100}]}, {"id": 102029, "name": "Dark Harvest", "type": "single", "posX": 12600, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72057], "entries": [{"id": 126062, "definitionId": 130894, "maxRanks": 1, "type": "passive", "name": "Dark Harvest", "spellId": 387016, "icon": "ability_creature_disease_02", "index": 100}]}, {"id": 102247, "name": "Ravenous Afflictions", "type": "single", "posX": 13800, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72052, 72035, 72055], "entries": [{"id": 126303, "definitionId": 131129, "maxRanks": 1, "type": "passive", "name": "Ravenous Afflictions", "spellId": 459440, "icon": "ability_warlock_improvedsoulleech", "index": 100}]}, {"id": 102030, "name": "Malefic Touch", "type": "single", "posX": 14400, "posY": 6600, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [72035], "entries": [{"id": 126063, "definitionId": 130895, "maxRanks": 1, "type": "passive", "name": "Malefic Touch", "spellId": 458029, "icon": "spell_shadow_manaburn", "index": 100}]}], "heroNodes": [{"id": 94840, "name": "Wither", "type": "single", "posX": 15600, "posY": 600, "maxRanks": 1, "entryNode": true, "subTreeId": 58, "next": [94853, 94837, 94845], "prev": [], "entries": [{"id": 117437, "definitionId": 122449, "maxRanks": 1, "type": "active", "name": "Wither", "spellId": 445465, "visibleSpellId": 445468, "icon": "inv_ability_hellcallerwarlock_wither", "index": 100}], "freeNode": true}, {"id": 94853, "name": "Xalan's Ferocity", "type": "single", "posX": 15000, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94822], "prev": [94840], "entries": [{"id": 117450, "definitionId": 122462, "maxRanks": 1, "type": "passive", "name": "Xalan's Ferocity", "spellId": 440044, "icon": "spell_fire_felfire", "index": 100}]}, {"id": 94837, "name": "Blackened Soul", "type": "single", "posX": 15600, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94854], "prev": [94840], "entries": [{"id": 117434, "definitionId": 122446, "maxRanks": 1, "type": "passive", "name": "Blackened Soul", "spellId": 440043, "icon": "spell_nzinsanity_chasedbyshadows", "index": 100}]}, {"id": 94845, "name": "Xalan's Cruelty", "type": "single", "posX": 16200, "posY": 1200, "maxRanks": 1, "subTreeId": 58, "next": [94835], "prev": [94840], "entries": [{"id": 117442, "definitionId": 122454, "maxRanks": 1, "type": "passive", "name": "Xalan's Cruelty", "spellId": 440040, "icon": "spell_shadow_demonicempathy", "index": 100}]}, {"id": 94851, "name": "Demonic Soul", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 57, "next": [94825, 94847, 94832], "prev": [], "entries": [{"id": 117448, "definitionId": 122460, "maxRanks": 1, "type": "passive", "name": "Demonic Soul", "spellId": 449614, "icon": "inv_ability_soulharvesterwarlock_demonicsoul", "index": 100}], "freeNode": true}, {"id": 94822, "name": "Curse of the Satyr / Aura of Enfeeblement", "type": "choice", "posX": 15000, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94834], "prev": [94853], "entries": [{"id": 117419, "definitionId": 122431, "maxRanks": 1, "type": "passive", "name": "Curse of the Satyr", "spellId": 440057, "icon": "inv_fabric_felrag", "index": 100}, {"id": 123309, "definitionId": 128179, "maxRanks": 1, "type": "passive", "name": "Aura of Enfeeblement", "spellId": 440059, "icon": "warlock_curse_weakness_aura", "index": 200}]}, {"id": 94854, "name": "Hatefury Rituals / Bleakheart Tactics", "type": "choice", "posX": 15600, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94829], "prev": [94837], "entries": [{"id": 117451, "definitionId": 122463, "maxRanks": 1, "type": "passive", "name": "Hatefury Rituals", "spellId": 440048, "icon": "70_inscription_glyph_demonhunter_minor", "index": 100}, {"id": 123310, "definitionId": 128180, "maxRanks": 1, "type": "passive", "name": "Bleakheart Tactics", "spellId": 440051, "icon": "spell_shadow_mindshear", "index": 200}]}, {"id": 94835, "name": "Zevrim's Resilience / Illhoof's Design", "type": "choice", "posX": 16200, "posY": 1800, "maxRanks": 1, "subTreeId": 58, "next": [94844], "prev": [94845], "entries": [{"id": 117432, "definitionId": 122444, "maxRanks": 1, "type": "passive", "name": "Zevrim's Resilience", "spellId": 440065, "icon": "ability_warrior_intensifyrage", "index": 100}, {"id": 123308, "definitionId": 128178, "maxRanks": 1, "type": "passive", "name": "Illhoof's Design", "spellId": 440070, "icon": "sha_spell_fire_felfireward_nightmare", "index": 200}]}, {"id": 94825, "name": "Necrolyte Teachings", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94850], "prev": [94851], "entries": [{"id": 117422, "definitionId": 122434, "maxRanks": 1, "type": "passive", "name": "Necrolyte Teachings", "spellId": 449620, "icon": "spell_necro_deathall", "index": 100}]}, {"id": 94847, "name": "Soul Anathema", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94823], "prev": [94851], "entries": [{"id": 117444, "definitionId": 122456, "maxRanks": 1, "type": "passive", "name": "Soul Anathema", "spellId": 449624, "icon": "spell_necro_inevitableend", "index": 100}]}, {"id": 94832, "name": "Demoniac's Fervor", "type": "single", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 57, "next": [94824], "prev": [94851], "entries": [{"id": 117429, "definitionId": 122441, "maxRanks": 1, "type": "passive", "name": "Demoniac's Fervor", "spellId": 449629, "icon": "inv_helm_mask_zulgurub_d_01", "index": 100}]}, {"id": 94834, "name": "Mark of Xavius", "type": "single", "posX": 15000, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94822], "entries": [{"id": 117431, "definitionId": 122443, "maxRanks": 1, "type": "passive", "name": "Mark of Xavius", "spellId": 440046, "icon": "warlock_curse_shadow_aura", "index": 100}]}, {"id": 94829, "name": "Seeds of Their Demise", "type": "single", "posX": 15600, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94854], "entries": [{"id": 117426, "definitionId": 122438, "maxRanks": 1, "type": "passive", "name": "Seeds of Their Demise", "spellId": 440055, "icon": "ability_warlock_moltencoregreen", "index": 100}]}, {"id": 94844, "name": "Mark of Peroth'arn", "type": "single", "posX": 16200, "posY": 2400, "maxRanks": 1, "subTreeId": 58, "next": [94842], "prev": [94835], "entries": [{"id": 117441, "definitionId": 122453, "maxRanks": 1, "type": "passive", "name": "Mark of Peroth'arn", "spellId": 440045, "icon": "70_inscription_vantus_rune_tomb", "index": 100}]}, {"id": 94850, "name": "Gorebound Fortitude / Friends In Dark Places", "type": "choice", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94821], "prev": [94825], "entries": [{"id": 117447, "definitionId": 122459, "maxRanks": 1, "type": "passive", "name": "Gorebound Fortitude", "spellId": 449701, "icon": "spell_holy_consumemagic", "index": 100}, {"id": 123840, "definitionId": 128678, "maxRanks": 1, "type": "passive", "name": "Friends In Dark Places", "spellId": 449703, "icon": "spell_shadow_deathpact", "index": 200}]}, {"id": 94823, "name": "Shared Fate / Feast of Souls", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94846], "prev": [94847], "entries": [{"id": 117420, "definitionId": 122432, "maxRanks": 1, "type": "passive", "name": "Shared Fate", "spellId": 449704, "icon": "ability_warlock_soullink", "index": 100}, {"id": 123839, "definitionId": 128677, "maxRanks": 1, "type": "passive", "name": "Feast of Souls", "spellId": 449706, "icon": "ability_warlock_improvedsoulleech", "index": 200}]}, {"id": 94824, "name": "Eternal Servitude / Gorefiend's Resolve", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 57, "next": [94838], "prev": [94832], "entries": [{"id": 117421, "definitionId": 122433, "maxRanks": 1, "type": "passive", "name": "Eternal Servitude", "spellId": 449707, "icon": "ability_demonhunter_infernalchains", "index": 100}, {"id": 123838, "definitionId": 128676, "maxRanks": 1, "type": "passive", "name": "Gorefiend's Resolve", "spellId": 389623, "icon": "ability_rogue_masterofsubtlety", "index": 200}]}, {"id": 94842, "name": "Malevolence", "type": "single", "posX": 15600, "posY": 3000, "maxRanks": 1, "subTreeId": 58, "next": [], "prev": [94829, 94834, 94844], "entries": [{"id": 117439, "definitionId": 122451, "maxRanks": 1, "type": "active", "name": "Malevolence", "spellId": 430014, "visibleSpellId": 442726, "icon": "inv_ability_hellcallerwarlock_malevolence", "index": 100}]}, {"id": 94821, "name": "Wicked Reaping", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94850], "entries": [{"id": 117418, "definitionId": 122430, "maxRanks": 1, "type": "passive", "name": "Wicked Reaping", "spellId": 449631, "icon": "inv_staff_2h_artifactdeadwind_d_05", "index": 100}]}, {"id": 94846, "name": "Quietus", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "requiresNode": 72047, "next": [94857], "prev": [94823], "entries": [{"id": 117443, "definitionId": 122455, "maxRanks": 1, "type": "passive", "name": "Quietus", "spellId": 449634, "icon": "spell_necro_conclave", "index": 100}]}, {"id": 94838, "name": "Sataiel's Volition", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 57, "next": [94857], "prev": [94824], "entries": [{"id": 117435, "definitionId": 122447, "maxRanks": 1, "type": "passive", "name": "Sataiel's Volition", "spellId": 449637, "icon": "spell_necro_deathlyecho", "index": 100}]}, {"id": 94857, "name": "Shadow of Death", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 57, "requiresNode": 101905, "next": [], "prev": [94846, 94821, 94838], "entries": [{"id": 117454, "definitionId": 122466, "maxRanks": 1, "type": "passive", "name": "Shadow of Death", "spellId": 449638, "icon": "spell_arcane_prismaticcloak", "index": 100}]}], "subTreeNodes": [{"id": 99850, "name": "Hellcaller / Soul Harvester", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123387, "type": "subtree", "name": "Hellcaller", "traitSubTreeId": 58, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-hellcaller", "nodes": [94840, 94853, 94837, 94845, 94822, 94854, 94835, 94834, 94829, 94844, 94842]}, {"id": 123384, "type": "subtree", "name": "Soul Harvester", "traitSubTreeId": 57, "traitTreeId": 720, "atlasMemberName": "talents-heroclass-warlock-soulharvester", "nodes": [94851, 94825, 94847, 94832, 94850, 94823, 94824, 94821, 94846, 94838, 94857]}]}], "fullNodeOrder": [71915, 71916, 71917, 71918, 71921, 71922, 71923, 71924, 71925, 71926, 71927, 71928, 71930, 71931, 71932, 71933, 71934, 71935, 71936, 71937, 71938, 71939, 71940, 71941, 71942, 71944, 71946, 71947, 71948, 71949, 71950, 71951, 71952, 71953, 71954, 71955, 71956, 71957, 71960, 71961, 71962, 71964, 71965, 71966, 71967, 71968, 71969, 71970, 71971, 71972, 71973, 71974, 71975, 71978, 71979, 71980, 71982, 71983, 71984, 71985, 71986, 71987, 72031, 72032, 72033, 72034, 72035, 72037, 72038, 72039, 72040, 72041, 72042, 72043, 72045, 72046, 72047, 72048, 72049, 72050, 72051, 72052, 72053, 72054, 72055, 72056, 72057, 72058, 72059, 72060, 72061, 72062, 72063, 72064, 72065, 72066, 72067, 72068, 72069, 93178, 93179, 94821, 94822, 94823, 94824, 94825, 94826, 94829, 94830, 94831, 94832, 94833, 94834, 94835, 94836, 94837, 94838, 94840, 94842, 94843, 94844, 94845, 94846, 94847, 94848, 94849, 94850, 94851, 94852, 94853, 94854, 94855, 94856, 94857, 99848, 99849, 99850, 100940, 100941, 101884, 101885, 101886, 101887, 101888, 101889, 101890, 101891, 101892, 101893, 101894, 101895, 101896, 101897, 101898, 101899, 101900, 101901, 101902, 101903, 101904, 101905, 101906, 101907, 101908, 101909, 101910, 101911, 101912, 101913, 101914, 101915, 101916, 101917, 101918, 101919, 101920, 101921, 101922, 101923, 101924, 101925, 101926, 101992, 101993, 101994, 101995, 101996, 101997, 101998, 102002, 102003, 102029, 102030, 102031, 102032, 102033, 102246, 102247, 102427]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/warrior_arms.json b/simc_support/game_data/data_files/trees/warrior_arms.json index 7856329..4e46ce4 100644 --- a/simc_support/game_data/data_files/trees/warrior_arms.json +++ b/simc_support/game_data/data_files/trees/warrior_arms.json @@ -1 +1 @@ -{"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Arms", "specId": 71, "classNodes": [{"id": 90327, "name": "Battle Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90328], "prev": [], "entries": [{"id": 112184, "definitionId": 117189, "maxRanks": 1, "type": "active", "name": "Battle Stance", "spellId": 386164, "icon": "ability_warrior_offensivestance", "index": 100}], "freeNode": true}, {"id": 92537, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 114643, "definitionId": 119649, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 200}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90327], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90328, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90327], "entries": [{"id": 112185, "definitionId": 117190, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 262231, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [92537], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [92537], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90352], "prev": [90328, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90352, 90355, 90353], "prev": [90328, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90352, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90346, 90326], "entries": [{"id": 112216, "definitionId": 117221, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 392792, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90347], "prev": [90352, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90347, 90356, 90378], "prev": [90352, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 90340, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90347, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90340, 90382], "prev": [90331, 90385], "entries": [{"id": 112209, "definitionId": 117214, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 382764, "icon": "spell_shadow_unholystrength", "index": 0}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90366], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 90340, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90347, 95956], "entries": [{"id": 112201, "definitionId": 117206, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 383082, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118845, "definitionId": 123745, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90322, 90338], "prev": [90347, 90378], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90338, 90366], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90366], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90340, 90351, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90365], "prev": [90382, 90340], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90322, "name": "Two-Handed Weapon Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112179, "definitionId": 117184, "maxRanks": 1, "type": "passive", "name": "Two-Handed Weapon Specialization", "spellId": 382896, "icon": "inv_axe_09", "index": 0}]}, {"id": 90338, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90365], "prev": [90354, 90382], "entries": [{"id": 112199, "definitionId": 117204, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 382940, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90366, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90368, 90348, 90354], "entries": [{"id": 112233, "definitionId": 117238, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 384124, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 90365, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90363], "prev": [90360, 90338], "entries": [{"id": 112232, "definitionId": 117237, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 107574, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90366], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "ability_bastion_warrior", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90363, "name": "Blademaster's Torment / Warlord's Torment", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90365], "entries": [{"id": 112229, "definitionId": 117234, "maxRanks": 1, "type": "passive", "name": "Blademaster's Torment", "spellId": 390138, "icon": "ability_warrior_endlessrage", "index": 0}, {"id": 112228, "definitionId": 117233, "maxRanks": 1, "type": "passive", "name": "Warlord's Torment", "spellId": 390140, "icon": "warrior_talent_icon_innerrage", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90270, "name": "Mortal Strike", "type": "single", "posX": 12010, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90271], "prev": [], "entries": [{"id": 112122, "definitionId": 117127, "maxRanks": 1, "type": "active", "name": "Mortal Strike", "spellId": 12294, "icon": "ability_warrior_savageblow", "index": 100}]}, {"id": 90271, "name": "Overpower", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90278, 90276, 90273], "prev": [90270], "entries": [{"id": 112123, "definitionId": 117128, "maxRanks": 1, "type": "active", "name": "Overpower", "spellId": 7384, "icon": "ability_meleedamage", "index": 100}]}, {"id": 90278, "name": "Martial Prowess", "type": "single", "posX": 11110, "posY": 2100, "maxRanks": 1, "next": [90279, 90277], "prev": [90271], "entries": [{"id": 112130, "definitionId": 117135, "maxRanks": 1, "type": "passive", "name": "Martial Prowess", "spellId": 316440, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 90276, "name": "Die by the Sword", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90277, 90275, 90269, 90274], "prev": [90271], "entries": [{"id": 112128, "definitionId": 117133, "maxRanks": 1, "type": "active", "name": "Die by the Sword", "spellId": 118038, "icon": "ability_warrior_challange", "index": 100}]}, {"id": 90273, "name": "Improved Execute", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90274, 90272], "prev": [90271], "entries": [{"id": 112125, "definitionId": 117130, "maxRanks": 1, "type": "passive", "name": "Improved Execute", "spellId": 316405, "icon": "inv_sword_48", "index": 100}]}, {"id": 90279, "name": "Improved Overpower", "type": "single", "posX": 10200, "posY": 2700, "maxRanks": 1, "next": [90282], "prev": [90278], "entries": [{"id": 112131, "definitionId": 117136, "maxRanks": 1, "type": "passive", "name": "Improved Overpower", "spellId": 385571, "icon": "ability_meleedamage", "index": 100}]}, {"id": 90277, "name": "Bloodsurge", "type": "single", "posX": 11110, "posY": 2700, "maxRanks": 1, "next": [90282], "prev": [90276, 90278], "entries": [{"id": 112129, "definitionId": 117134, "maxRanks": 1, "type": "passive", "name": "Bloodsurge", "spellId": 384361, "icon": "ability_warrior_bloodsurge", "index": 0}]}, {"id": 90275, "name": "Fueled by Violence", "type": "single", "posX": 11710, "posY": 2700, "maxRanks": 1, "next": [90290], "prev": [90276], "entries": [{"id": 112127, "definitionId": 117132, "maxRanks": 1, "type": "passive", "name": "Fueled by Violence", "spellId": 383103, "icon": "ability_demonhunter_bloodlet", "index": 100}]}, {"id": 90269, "name": "Storm Wall / Ignore Pain", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90290], "prev": [90276], "entries": [{"id": 112121, "definitionId": 117126, "maxRanks": 1, "type": "passive", "name": "Storm Wall", "spellId": 388807, "icon": "spell_sandstorm", "index": 100}, {"id": 114738, "definitionId": 119745, "maxRanks": 1, "type": "active", "name": "Ignore Pain", "spellId": 190456, "icon": "ability_warrior_renewedvigor", "index": 200}]}, {"id": 90274, "name": "Sudden Death", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90292], "prev": [90273, 90276], "entries": [{"id": 112126, "definitionId": 117131, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 29725, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90272, "name": "Fervor of Battle", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [90292], "prev": [90273], "entries": [{"id": 112124, "definitionId": 117129, "maxRanks": 1, "type": "passive", "name": "Fervor of Battle", "spellId": 202316, "icon": "ability_rogue_waylay", "index": 100}]}, {"id": 90282, "name": "Tactician", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [92614, 90284, 90281], "prev": [90277, 90279], "entries": [{"id": 112134, "definitionId": 117139, "maxRanks": 1, "type": "passive", "name": "Tactician", "spellId": 184783, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 90290, "name": "Colossus Smash", "type": "single", "posX": 12010, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [92614, 90289, 90286], "prev": [90269, 90275], "entries": [{"id": 112144, "definitionId": 117149, "maxRanks": 1, "type": "active", "name": "Colossus Smash", "spellId": 167105, "icon": "ability_warrior_colossussmash", "index": 100}]}, {"id": 90292, "name": "Impale", "type": "single", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90286, 90293, 92536], "prev": [90274, 90272], "entries": [{"id": 112146, "definitionId": 117151, "maxRanks": 1, "type": "passive", "name": "Impale", "spellId": 383430, "icon": "ability_searingarrow", "index": 100}]}, {"id": 90281, "name": "Skullsplitter", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90283], "prev": [90282], "entries": [{"id": 112133, "definitionId": 117138, "maxRanks": 1, "type": "active", "name": "Skullsplitter", "spellId": 260643, "icon": "inv_skullsplitter", "index": 100}]}, {"id": 90284, "name": "Rend", "type": "single", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90283, 90285], "prev": [90282], "entries": [{"id": 112136, "definitionId": 117141, "maxRanks": 1, "type": "active", "name": "Rend", "spellId": 772, "icon": "ability_gouge", "index": 100}]}, {"id": 92614, "name": "Finishing Blows", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90285], "prev": [90290, 90282], "entries": [{"id": 114733, "definitionId": 119740, "maxRanks": 1, "type": "passive", "name": "Finishing Blows", "spellId": 400205, "icon": "ability_warrior_punishingblow", "index": 200}]}, {"id": 90289, "name": "Anger Management / Spiteful Serenity", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90288, 90287, 90285, 90291], "prev": [90290], "entries": [{"id": 112143, "definitionId": 117148, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 0}, {"id": 114642, "definitionId": 119648, "maxRanks": 1, "type": "passive", "name": "Spiteful Serenity", "spellId": 400314, "icon": "inv_helmet_08", "index": 100}]}, {"id": 90286, "name": "Exhilarating Blows", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90291], "prev": [90292, 90290], "entries": [{"id": 112138, "definitionId": 117143, "maxRanks": 1, "type": "passive", "name": "Exhilarating Blows", "spellId": 383219, "icon": "warrior_talent_icon_igniteweapon", "index": 0}]}, {"id": 92536, "name": "Improved Sweeping Strikes / Collateral Damage", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90291, 90267], "prev": [90292], "entries": [{"id": 114641, "definitionId": 119647, "maxRanks": 1, "type": "passive", "name": "Improved Sweeping Strikes", "spellId": 383155, "icon": "ability_rogue_slicedice", "index": 100}, {"id": 114739, "definitionId": 119746, "maxRanks": 1, "type": "passive", "name": "Collateral Damage", "spellId": 334779, "icon": "ability_warrior_incite", "index": 200}]}, {"id": 90293, "name": "Cleave", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90267], "prev": [90292], "entries": [{"id": 112147, "definitionId": 117152, "maxRanks": 1, "type": "active", "name": "Cleave", "spellId": 845, "icon": "ability_warrior_cleave", "index": 100}]}, {"id": 90283, "name": "Bloodborne", "type": "single", "posX": 10200, "posY": 4490, "reqPoints": 8, "maxRanks": 2, "next": [90437], "prev": [90281, 90284], "entries": [{"id": 112135, "definitionId": 117140, "maxRanks": 2, "type": "passive", "name": "Bloodborne", "spellId": 383287, "icon": "inv_artifact_bloodoftheassassinated", "index": 0}]}, {"id": 90288, "name": "In For The Kill / Test of Might", "type": "choice", "posX": 11710, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90442], "prev": [90289], "entries": [{"id": 112142, "definitionId": 117147, "maxRanks": 1, "type": "passive", "name": "In For The Kill", "spellId": 248621, "icon": "ability_blackhand_marked4death", "index": 100}, {"id": 112141, "definitionId": 117146, "maxRanks": 1, "type": "passive", "name": "Test of Might", "spellId": 385008, "icon": "ability_warrior_strengthofarms", "index": 200}]}, {"id": 90287, "name": "Blunt Instruments / Warbreaker", "type": "choice", "posX": 12300, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90442], "prev": [90289], "entries": [{"id": 112140, "definitionId": 117145, "maxRanks": 1, "type": "passive", "name": "Blunt Instruments", "spellId": 383442, "icon": "inv_mace_01", "index": 0}, {"id": 112139, "definitionId": 117144, "maxRanks": 1, "type": "active", "name": "Warbreaker", "spellId": 262161, "icon": "inv_warbreaker", "index": 100}]}, {"id": 90285, "name": "Dreadnaught / Strength of Arms", "type": "choice", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90437], "prev": [92614, 90284, 90289], "entries": [{"id": 112137, "definitionId": 117142, "maxRanks": 1, "type": "passive", "name": "Dreadnaught", "spellId": 262150, "icon": "inv_sword_05", "index": 200}, {"id": 119096, "definitionId": 123996, "maxRanks": 1, "type": "passive", "name": "Strength of Arms", "spellId": 400803, "icon": "inv_gauntlets_26", "index": 300}]}, {"id": 90291, "name": "Massacre", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90444], "prev": [90286, 90289, 92536], "entries": [{"id": 112145, "definitionId": 117150, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 281001, "icon": "inv_sword_48", "index": 0}]}, {"id": 90267, "name": "Storm of Swords", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90444], "prev": [92536, 90293], "entries": [{"id": 112119, "definitionId": 117124, "maxRanks": 1, "type": "passive", "name": "Storm of Swords", "spellId": 385512, "icon": "ability_skyreach_fourblades", "index": 0}]}, {"id": 90437, "name": "Deft Experience", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90438, 92615], "prev": [90283, 90285], "entries": [{"id": 112309, "definitionId": 117314, "maxRanks": 2, "type": "passive", "name": "Deft Experience", "spellId": 389308, "icon": "inv_misc_book_07", "index": 100}]}, {"id": 90442, "name": "Valor in Victory", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90441, 90438, 90447], "prev": [90288, 90287], "entries": [{"id": 112315, "definitionId": 117320, "maxRanks": 1, "type": "passive", "name": "Valor in Victory", "spellId": 383338, "icon": "spell_holy_summonchampion", "index": 100}]}, {"id": 90444, "name": "Critical Thinking", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90447, 90446], "prev": [90291, 90267], "entries": [{"id": 112317, "definitionId": 117322, "maxRanks": 2, "type": "passive", "name": "Critical Thinking", "spellId": 389306, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 92615, "name": "Battlelord", "type": "single", "posX": 9600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90439], "prev": [90437], "entries": [{"id": 114740, "definitionId": 119747, "maxRanks": 1, "type": "passive", "name": "Battlelord", "spellId": 386630, "icon": "ability_pvp_hardiness", "index": 0}]}, {"id": 90438, "name": "Bloodletting", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90439], "prev": [90437, 90442], "entries": [{"id": 112310, "definitionId": 117315, "maxRanks": 1, "type": "passive", "name": "Bloodletting", "spellId": 383154, "icon": "ability_skeer_bloodletting", "index": 0}]}, {"id": 90441, "name": "Bladestorm / Ravager", "type": "choice", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [92535, 90440, 90266], "prev": [90442], "entries": [{"id": 112314, "definitionId": 117319, "maxRanks": 1, "type": "active", "name": "Bladestorm", "spellId": 227847, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 119138, "definitionId": 124038, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 200}]}, {"id": 90447, "name": "Sharpened Blades", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90445], "prev": [90444, 90442], "entries": [{"id": 112320, "definitionId": 117325, "maxRanks": 1, "type": "passive", "name": "Sharpened Blades", "spellId": 383341, "icon": "inv_sword_27", "index": 200}]}, {"id": 90446, "name": "Juggernaut", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90445], "prev": [90444], "entries": [{"id": 112319, "definitionId": 117324, "maxRanks": 1, "type": "passive", "name": "Juggernaut", "spellId": 383292, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90439, "name": "Fatality", "type": "single", "posX": 10200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90438, 92615], "entries": [{"id": 112311, "definitionId": 117316, "maxRanks": 1, "type": "passive", "name": "Fatality", "spellId": 383703, "icon": "achievement_bg_killingblow_berserker", "index": 300}]}, {"id": 92535, "name": "Dance of Death", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 114639, "definitionId": 119645, "maxRanks": 1, "type": "passive", "name": "Dance of Death", "spellId": 390713, "icon": "ability_butcher_whirl", "index": 100}]}, {"id": 90440, "name": "Unhinged", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 112313, "definitionId": 117318, "maxRanks": 1, "type": "passive", "name": "Unhinged", "spellId": 386628, "icon": "spell_shadow_spectralsight", "index": 0}]}, {"id": 90266, "name": "Merciless Bonegrinder", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 112117, "definitionId": 117122, "maxRanks": 1, "type": "passive", "name": "Merciless Bonegrinder", "spellId": 383317, "icon": "ability_ironmaidens_whirlofblood", "index": 0}]}, {"id": 90445, "name": "Executioner's Precision", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90446, 90447], "entries": [{"id": 112318, "definitionId": 117323, "maxRanks": 1, "type": "passive", "name": "Executioner's Precision", "spellId": 386634, "icon": "inv_sword_48", "index": 0}]}], "heroNodes": [{"id": 94814, "name": "Slayer's Dominance", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 60, "next": [94788, 94810, 94795], "prev": [], "entries": [{"id": 117411, "definitionId": 122423, "maxRanks": 1, "type": "passive", "name": "Slayer's Dominance", "spellId": 444767, "icon": "inv_ability_slayerwarrior_slayersdominance", "index": 100}], "freeNode": true}, {"id": 94788, "name": "Imminent Demise", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94813], "prev": [94814], "entries": [{"id": 117385, "definitionId": 122397, "maxRanks": 1, "type": "passive", "name": "Imminent Demise", "spellId": 444769, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 94810, "name": "Overwhelming Blades", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94786], "prev": [94814], "entries": [{"id": 117407, "definitionId": 122419, "maxRanks": 1, "type": "passive", "name": "Overwhelming Blades", "spellId": 444772, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}]}, {"id": 94795, "name": "Relentless Pursuit / Vicious Agility", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94787], "prev": [94814], "entries": [{"id": 117392, "definitionId": 122404, "maxRanks": 1, "type": "passive", "name": "Relentless Pursuit", "spellId": 444776, "icon": "ability_rogue_sprint", "index": 100}, {"id": 123408, "definitionId": 128246, "maxRanks": 1, "type": "passive", "name": "Vicious Agility", "spellId": 444777, "icon": "ability_paladin_speedoflight", "index": 200}]}, {"id": 94813, "name": "Death Drive", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94784], "prev": [94788], "entries": [{"id": 117410, "definitionId": 122422, "maxRanks": 1, "type": "passive", "name": "Death Drive", "spellId": 444770, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 94786, "name": "Culling Cyclone / Brutal Finish", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94809], "prev": [94810], "entries": [{"id": 117383, "definitionId": 122395, "maxRanks": 1, "type": "passive", "name": "Culling Cyclone", "spellId": 444778, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 123409, "definitionId": 128247, "maxRanks": 1, "type": "passive", "name": "Brutal Finish", "spellId": 446085, "icon": "ability_revendreth_warrior", "index": 200}]}, {"id": 94787, "name": "Fierce Followthrough / Opportunist", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94801], "prev": [94795], "entries": [{"id": 117384, "definitionId": 122396, "maxRanks": 1, "type": "passive", "name": "Fierce Followthrough", "spellId": 444773, "icon": "spell_deathknight_butcher2", "index": 100}, {"id": 123770, "definitionId": 128608, "maxRanks": 1, "type": "passive", "name": "Opportunist", "spellId": 444774, "icon": "ability_warrior_weaponmastery", "index": 200}]}, {"id": 94784, "name": "Show No Mercy", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94813], "entries": [{"id": 117381, "definitionId": 122393, "maxRanks": 1, "type": "passive", "name": "Show No Mercy", "spellId": 444771, "icon": "warrior_talent_icon_lambstotheslaughter", "index": 100}]}, {"id": 94809, "name": "Reap the Storm", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94786], "entries": [{"id": 117406, "definitionId": 122418, "maxRanks": 1, "type": "passive", "name": "Reap the Storm", "spellId": 444775, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 94801, "name": "Slayer's Malice", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94787], "entries": [{"id": 117398, "definitionId": 122410, "maxRanks": 1, "type": "passive", "name": "Slayer's Malice", "spellId": 444779, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 94820, "name": "Unrelenting Onslaught", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 60, "next": [], "prev": [94809, 94784, 94801], "entries": [{"id": 117417, "definitionId": 122429, "maxRanks": 1, "type": "passive", "name": "Unrelenting Onslaught", "spellId": 444780, "icon": "ability_warrior_commandingshout", "index": 100}]}, {"id": 94818, "name": "Demolish", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 62, "next": [94812, 94819, 94789], "prev": [], "entries": [{"id": 117415, "definitionId": 122427, "maxRanks": 1, "type": "active", "name": "Demolish", "spellId": 436358, "icon": "inv_ability_colossuswarrior_demolish", "index": 100}], "freeNode": true}, {"id": 94812, "name": "Martial Expert", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94799], "prev": [94818], "entries": [{"id": 117409, "definitionId": 122421, "maxRanks": 1, "type": "passive", "name": "Martial Expert", "spellId": 429638, "icon": "ability_warrior_stalwartprotector", "index": 100}]}, {"id": 94819, "name": "Colossal Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94811], "prev": [94818], "entries": [{"id": 117416, "definitionId": 122428, "maxRanks": 1, "type": "passive", "name": "Colossal Might", "spellId": 429634, "icon": "ability_warrior_strengthofarms", "index": 100}]}, {"id": 94789, "name": "Boneshaker / Earthquaker", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "requiresNode": 90375, "next": [94815], "prev": [94818], "entries": [{"id": 117386, "definitionId": 122398, "maxRanks": 1, "type": "passive", "name": "Boneshaker", "spellId": 429639, "icon": "ability_deathknight_brittlebones", "index": 100}, {"id": 119858, "definitionId": 124758, "maxRanks": 1, "type": "passive", "name": "Earthquaker", "spellId": 440992, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 94799, "name": "One Against Many / Arterial Bleed", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94796], "prev": [94812], "entries": [{"id": 117396, "definitionId": 122408, "maxRanks": 1, "type": "passive", "name": "One Against Many", "spellId": 429637, "icon": "ability_warrior_incite", "index": 100}, {"id": 119856, "definitionId": 124756, "maxRanks": 1, "type": "passive", "name": "Arterial Bleed", "spellId": 440995, "icon": "ability_warrior_deepcuts", "index": 200}]}, {"id": 94811, "name": "Tide of Battle", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94794], "prev": [94819], "entries": [{"id": 117408, "definitionId": 122420, "maxRanks": 1, "type": "passive", "name": "Tide of Battle", "spellId": 429641, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 94815, "name": "No Stranger to Pain / Veteran Vitality", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94806], "prev": [94789], "entries": [{"id": 117412, "definitionId": 122424, "maxRanks": 1, "type": "passive", "name": "No Stranger to Pain", "spellId": 429644, "icon": "ability_warrior_renewedvigor", "index": 100}, {"id": 119857, "definitionId": 124757, "maxRanks": 1, "type": "passive", "name": "Veteran Vitality", "spellId": 440993, "icon": "ability_hunter_harass", "index": 200}]}, {"id": 94796, "name": "Practiced Strikes", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94799], "entries": [{"id": 117393, "definitionId": 122405, "maxRanks": 1, "type": "passive", "name": "Practiced Strikes", "spellId": 429647, "icon": "spell_warrior_sharpenblade", "index": 100}]}, {"id": 94794, "name": "Precise Might", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94811], "entries": [{"id": 117391, "definitionId": 122403, "maxRanks": 1, "type": "passive", "name": "Precise Might", "spellId": 431548, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94806, "name": "Mountain of Muscle and Scars", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94815], "entries": [{"id": 117403, "definitionId": 122415, "maxRanks": 1, "type": "passive", "name": "Mountain of Muscle and Scars", "spellId": 429642, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 94793, "name": "Dominance of the Colossus", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 62, "next": [], "prev": [94794, 94796, 94806], "entries": [{"id": 117390, "definitionId": 122402, "maxRanks": 1, "type": "passive", "name": "Dominance of the Colossus", "spellId": 429636, "icon": "ability_warrior_titansgrip", "index": 100}]}], "subTreeNodes": [{"id": 99853, "name": "Colossus / Slayer", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123393, "type": "subtree", "name": "Colossus", "traitSubTreeId": 62, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-colossus", "nodes": [94818, 94812, 94819, 94789, 94799, 94811, 94815, 94796, 94794, 94806, 94793]}, {"id": 123390, "type": "subtree", "name": "Slayer", "traitSubTreeId": 60, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-slayer", "nodes": [94814, 94788, 94810, 94795, 94813, 94786, 94787, 94784, 94809, 94801, 94820]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]} \ No newline at end of file +{"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Arms", "specId": 71, "classNodes": [{"id": 90327, "name": "Battle Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90328], "prev": [], "entries": [{"id": 112184, "definitionId": 117189, "maxRanks": 1, "type": "active", "name": "Battle Stance", "spellId": 386164, "icon": "ability_warrior_offensivestance", "index": 100}], "freeNode": true}, {"id": 92537, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 114643, "definitionId": 119649, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 200}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90327], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90328, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90327], "entries": [{"id": 112185, "definitionId": 117190, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 262231, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [92537], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [92537], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90352], "prev": [90328, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90352, 90355, 90353], "prev": [90328, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90352, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90346, 90326], "entries": [{"id": 112216, "definitionId": 117221, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 392792, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90347], "prev": [90352, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90347, 90356, 90378], "prev": [90352, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 90340, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90347, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90340, 90382], "prev": [90331, 90385], "entries": [{"id": 112209, "definitionId": 117214, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 382764, "icon": "spell_shadow_unholystrength", "index": 0}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90366], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 90340, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90347, 95956], "entries": [{"id": 112201, "definitionId": 117206, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 383082, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118845, "definitionId": 123745, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90322, 90338], "prev": [90347, 90378], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90338, 90366], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90366], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90340, 90351, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90365], "prev": [90382, 90340], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90322, "name": "Two-Handed Weapon Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112179, "definitionId": 117184, "maxRanks": 1, "type": "passive", "name": "Two-Handed Weapon Specialization", "spellId": 382896, "icon": "inv_axe_09", "index": 0}]}, {"id": 90338, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90365], "prev": [90354, 90382], "entries": [{"id": 112199, "definitionId": 117204, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 382940, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90366, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90368, 90348, 90354], "entries": [{"id": 112233, "definitionId": 117238, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 384124, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 90365, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90363], "prev": [90360, 90338], "entries": [{"id": 112232, "definitionId": 117237, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 107574, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90366], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "inv_ability_warrior_championsspear", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90363, "name": "Blademaster's Torment / Warlord's Torment", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90365], "entries": [{"id": 112229, "definitionId": 117234, "maxRanks": 1, "type": "passive", "name": "Blademaster's Torment", "spellId": 390138, "icon": "ability_warrior_endlessrage", "index": 0}, {"id": 112228, "definitionId": 117233, "maxRanks": 1, "type": "passive", "name": "Warlord's Torment", "spellId": 390140, "icon": "warrior_talent_icon_innerrage", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90270, "name": "Mortal Strike", "type": "single", "posX": 12010, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90271], "prev": [], "entries": [{"id": 112122, "definitionId": 117127, "maxRanks": 1, "type": "active", "name": "Mortal Strike", "spellId": 12294, "icon": "ability_warrior_savageblow", "index": 100}]}, {"id": 90271, "name": "Overpower", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90278, 90276, 90273], "prev": [90270], "entries": [{"id": 112123, "definitionId": 117128, "maxRanks": 1, "type": "active", "name": "Overpower", "spellId": 7384, "icon": "ability_meleedamage", "index": 100}]}, {"id": 90278, "name": "Martial Prowess", "type": "single", "posX": 11110, "posY": 2100, "maxRanks": 1, "next": [90279, 90277], "prev": [90271], "entries": [{"id": 112130, "definitionId": 117135, "maxRanks": 1, "type": "passive", "name": "Martial Prowess", "spellId": 316440, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 90276, "name": "Die by the Sword", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90277, 90275, 90269, 90274], "prev": [90271], "entries": [{"id": 112128, "definitionId": 117133, "maxRanks": 1, "type": "active", "name": "Die by the Sword", "spellId": 118038, "icon": "ability_warrior_challange", "index": 100}]}, {"id": 90273, "name": "Improved Execute", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90274, 90272], "prev": [90271], "entries": [{"id": 112125, "definitionId": 117130, "maxRanks": 1, "type": "passive", "name": "Improved Execute", "spellId": 316405, "icon": "inv_sword_48", "index": 100}]}, {"id": 90279, "name": "Improved Overpower", "type": "single", "posX": 10200, "posY": 2700, "maxRanks": 1, "next": [90282], "prev": [90278], "entries": [{"id": 112131, "definitionId": 117136, "maxRanks": 1, "type": "passive", "name": "Improved Overpower", "spellId": 385571, "icon": "ability_meleedamage", "index": 100}]}, {"id": 90277, "name": "Bloodsurge", "type": "single", "posX": 11110, "posY": 2700, "maxRanks": 1, "next": [90282], "prev": [90276, 90278], "entries": [{"id": 112129, "definitionId": 117134, "maxRanks": 1, "type": "passive", "name": "Bloodsurge", "spellId": 384361, "icon": "ability_warrior_bloodsurge", "index": 0}]}, {"id": 90275, "name": "Fueled by Violence", "type": "single", "posX": 11710, "posY": 2700, "maxRanks": 1, "next": [90290], "prev": [90276], "entries": [{"id": 112127, "definitionId": 117132, "maxRanks": 1, "type": "passive", "name": "Fueled by Violence", "spellId": 383103, "icon": "ability_demonhunter_bloodlet", "index": 100}]}, {"id": 90269, "name": "Storm Wall / Ignore Pain", "type": "choice", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90290], "prev": [90276], "entries": [{"id": 112121, "definitionId": 117126, "maxRanks": 1, "type": "passive", "name": "Storm Wall", "spellId": 388807, "icon": "spell_sandstorm", "index": 100}, {"id": 114738, "definitionId": 119745, "maxRanks": 1, "type": "active", "name": "Ignore Pain", "spellId": 190456, "icon": "ability_warrior_renewedvigor", "index": 200}]}, {"id": 90274, "name": "Sudden Death", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90292], "prev": [90273, 90276], "entries": [{"id": 112126, "definitionId": 117131, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 29725, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90272, "name": "Fervor of Battle", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [90292], "prev": [90273], "entries": [{"id": 112124, "definitionId": 117129, "maxRanks": 1, "type": "passive", "name": "Fervor of Battle", "spellId": 202316, "icon": "ability_rogue_waylay", "index": 100}]}, {"id": 90282, "name": "Tactician", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [92614, 90284, 90281], "prev": [90277, 90279], "entries": [{"id": 112134, "definitionId": 117139, "maxRanks": 1, "type": "passive", "name": "Tactician", "spellId": 184783, "icon": "ability_warrior_unrelentingassault", "index": 100}]}, {"id": 90290, "name": "Colossus Smash", "type": "single", "posX": 12010, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [92614, 90289, 90286], "prev": [90269, 90275], "entries": [{"id": 112144, "definitionId": 117149, "maxRanks": 1, "type": "active", "name": "Colossus Smash", "spellId": 167105, "icon": "ability_warrior_colossussmash", "index": 100}]}, {"id": 90292, "name": "Impale", "type": "single", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90286, 90293, 92536], "prev": [90274, 90272], "entries": [{"id": 112146, "definitionId": 117151, "maxRanks": 1, "type": "passive", "name": "Impale", "spellId": 383430, "icon": "ability_searingarrow", "index": 100}]}, {"id": 90281, "name": "Skullsplitter", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90283], "prev": [90282], "entries": [{"id": 112133, "definitionId": 117138, "maxRanks": 1, "type": "active", "name": "Skullsplitter", "spellId": 260643, "icon": "inv_skullsplitter", "index": 100}]}, {"id": 90284, "name": "Rend", "type": "single", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90283, 90285], "prev": [90282], "entries": [{"id": 112136, "definitionId": 117141, "maxRanks": 1, "type": "active", "name": "Rend", "spellId": 772, "icon": "ability_gouge", "index": 100}]}, {"id": 92614, "name": "Finishing Blows", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90285], "prev": [90290, 90282], "entries": [{"id": 114733, "definitionId": 119740, "maxRanks": 1, "type": "passive", "name": "Finishing Blows", "spellId": 400205, "icon": "ability_warrior_punishingblow", "index": 200}]}, {"id": 90289, "name": "Anger Management / Spiteful Serenity", "type": "choice", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90288, 90287, 90285, 90291], "prev": [90290], "entries": [{"id": 112143, "definitionId": 117148, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 0}, {"id": 114642, "definitionId": 119648, "maxRanks": 1, "type": "passive", "name": "Spiteful Serenity", "spellId": 400314, "icon": "inv_helmet_08", "index": 100}]}, {"id": 90286, "name": "Exhilarating Blows", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90291], "prev": [90292, 90290], "entries": [{"id": 112138, "definitionId": 117143, "maxRanks": 1, "type": "passive", "name": "Exhilarating Blows", "spellId": 383219, "icon": "warrior_talent_icon_igniteweapon", "index": 0}]}, {"id": 92536, "name": "Improved Sweeping Strikes / Collateral Damage", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90291, 90267], "prev": [90292], "entries": [{"id": 114641, "definitionId": 119647, "maxRanks": 1, "type": "passive", "name": "Improved Sweeping Strikes", "spellId": 383155, "icon": "ability_rogue_slicedice", "index": 100}, {"id": 114739, "definitionId": 119746, "maxRanks": 1, "type": "passive", "name": "Collateral Damage", "spellId": 334779, "icon": "ability_warrior_incite", "index": 200}]}, {"id": 90293, "name": "Cleave", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90267], "prev": [90292], "entries": [{"id": 112147, "definitionId": 117152, "maxRanks": 1, "type": "active", "name": "Cleave", "spellId": 845, "icon": "ability_warrior_cleave", "index": 100}]}, {"id": 90283, "name": "Bloodborne", "type": "single", "posX": 10200, "posY": 4490, "reqPoints": 8, "maxRanks": 2, "next": [90437], "prev": [90281, 90284], "entries": [{"id": 112135, "definitionId": 117140, "maxRanks": 2, "type": "passive", "name": "Bloodborne", "spellId": 383287, "icon": "inv_artifact_bloodoftheassassinated", "index": 0}]}, {"id": 90288, "name": "In For The Kill / Test of Might", "type": "choice", "posX": 11710, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90442], "prev": [90289], "entries": [{"id": 112142, "definitionId": 117147, "maxRanks": 1, "type": "passive", "name": "In For The Kill", "spellId": 248621, "icon": "ability_blackhand_marked4death", "index": 100}, {"id": 112141, "definitionId": 117146, "maxRanks": 1, "type": "passive", "name": "Test of Might", "spellId": 385008, "icon": "ability_warrior_strengthofarms", "index": 200}]}, {"id": 90287, "name": "Blunt Instruments / Warbreaker", "type": "choice", "posX": 12300, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90442], "prev": [90289], "entries": [{"id": 112140, "definitionId": 117145, "maxRanks": 1, "type": "passive", "name": "Blunt Instruments", "spellId": 383442, "icon": "inv_mace_01", "index": 0}, {"id": 112139, "definitionId": 117144, "maxRanks": 1, "type": "active", "name": "Warbreaker", "spellId": 262161, "icon": "inv_warbreaker", "index": 100}]}, {"id": 90285, "name": "Dreadnaught / Strength of Arms", "type": "choice", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90437], "prev": [92614, 90284, 90289], "entries": [{"id": 112137, "definitionId": 117142, "maxRanks": 1, "type": "passive", "name": "Dreadnaught", "spellId": 262150, "icon": "inv_sword_05", "index": 200}, {"id": 119096, "definitionId": 123996, "maxRanks": 1, "type": "passive", "name": "Strength of Arms", "spellId": 400803, "icon": "inv_gauntlets_26", "index": 300}]}, {"id": 90291, "name": "Massacre", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90444], "prev": [90286, 90289, 92536], "entries": [{"id": 112145, "definitionId": 117150, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 281001, "icon": "inv_sword_48", "index": 0}]}, {"id": 90267, "name": "Storm of Swords", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90444], "prev": [92536, 90293], "entries": [{"id": 112119, "definitionId": 117124, "maxRanks": 1, "type": "passive", "name": "Storm of Swords", "spellId": 385512, "icon": "ability_skyreach_fourblades", "index": 0}]}, {"id": 90437, "name": "Deft Experience", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90438, 92615], "prev": [90283, 90285], "entries": [{"id": 112309, "definitionId": 117314, "maxRanks": 2, "type": "passive", "name": "Deft Experience", "spellId": 389308, "icon": "inv_misc_book_07", "index": 100}]}, {"id": 90442, "name": "Valor in Victory", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90441, 90438, 90447], "prev": [90288, 90287], "entries": [{"id": 112315, "definitionId": 117320, "maxRanks": 1, "type": "passive", "name": "Valor in Victory", "spellId": 383338, "icon": "spell_holy_summonchampion", "index": 100}]}, {"id": 90444, "name": "Critical Thinking", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90447, 90446], "prev": [90291, 90267], "entries": [{"id": 112317, "definitionId": 117322, "maxRanks": 2, "type": "passive", "name": "Critical Thinking", "spellId": 389306, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 92615, "name": "Battlelord", "type": "single", "posX": 9600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90439], "prev": [90437], "entries": [{"id": 114740, "definitionId": 119747, "maxRanks": 1, "type": "passive", "name": "Battlelord", "spellId": 386630, "icon": "ability_pvp_hardiness", "index": 0}]}, {"id": 90438, "name": "Bloodletting", "type": "single", "posX": 10800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90439], "prev": [90437, 90442], "entries": [{"id": 112310, "definitionId": 117315, "maxRanks": 1, "type": "passive", "name": "Bloodletting", "spellId": 383154, "icon": "ability_skeer_bloodletting", "index": 0}]}, {"id": 90441, "name": "Bladestorm / Ravager", "type": "choice", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [92535, 90440, 90266], "prev": [90442], "entries": [{"id": 112314, "definitionId": 117319, "maxRanks": 1, "type": "active", "name": "Bladestorm", "spellId": 227847, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 119138, "definitionId": 124038, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 200}]}, {"id": 90447, "name": "Sharpened Blades", "type": "single", "posX": 13200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90445], "prev": [90444, 90442], "entries": [{"id": 112320, "definitionId": 117325, "maxRanks": 1, "type": "passive", "name": "Sharpened Blades", "spellId": 383341, "icon": "inv_sword_27", "index": 200}]}, {"id": 90446, "name": "Juggernaut", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90445], "prev": [90444], "entries": [{"id": 112319, "definitionId": 117324, "maxRanks": 1, "type": "passive", "name": "Juggernaut", "spellId": 383292, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90439, "name": "Fatality", "type": "single", "posX": 10200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90438, 92615], "entries": [{"id": 112311, "definitionId": 117316, "maxRanks": 1, "type": "passive", "name": "Fatality", "spellId": 383703, "icon": "achievement_bg_killingblow_berserker", "index": 300}]}, {"id": 92535, "name": "Dance of Death", "type": "single", "posX": 11400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 114639, "definitionId": 119645, "maxRanks": 1, "type": "passive", "name": "Dance of Death", "spellId": 390713, "icon": "ability_butcher_whirl", "index": 100}]}, {"id": 90440, "name": "Unhinged", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 112313, "definitionId": 117318, "maxRanks": 1, "type": "passive", "name": "Unhinged", "spellId": 386628, "icon": "spell_shadow_spectralsight", "index": 0}]}, {"id": 90266, "name": "Merciless Bonegrinder", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90441], "entries": [{"id": 112117, "definitionId": 117122, "maxRanks": 1, "type": "passive", "name": "Merciless Bonegrinder", "spellId": 383317, "icon": "ability_ironmaidens_whirlofblood", "index": 0}]}, {"id": 90445, "name": "Executioner's Precision", "type": "single", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90446, 90447], "entries": [{"id": 112318, "definitionId": 117323, "maxRanks": 1, "type": "passive", "name": "Executioner's Precision", "spellId": 386634, "icon": "inv_sword_48", "index": 0}]}], "heroNodes": [{"id": 94814, "name": "Slayer's Dominance", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 60, "next": [94788, 94810, 94795], "prev": [], "entries": [{"id": 117411, "definitionId": 122423, "maxRanks": 1, "type": "passive", "name": "Slayer's Dominance", "spellId": 444767, "icon": "inv_ability_slayerwarrior_slayersdominance", "index": 100}], "freeNode": true}, {"id": 94788, "name": "Imminent Demise", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94813], "prev": [94814], "entries": [{"id": 117385, "definitionId": 122397, "maxRanks": 1, "type": "passive", "name": "Imminent Demise", "spellId": 444769, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 94810, "name": "Overwhelming Blades", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94786], "prev": [94814], "entries": [{"id": 117407, "definitionId": 122419, "maxRanks": 1, "type": "passive", "name": "Overwhelming Blades", "spellId": 444772, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}]}, {"id": 94795, "name": "Relentless Pursuit / Vicious Agility", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94787], "prev": [94814], "entries": [{"id": 117392, "definitionId": 122404, "maxRanks": 1, "type": "passive", "name": "Relentless Pursuit", "spellId": 444776, "icon": "ability_rogue_sprint", "index": 100}, {"id": 123408, "definitionId": 128246, "maxRanks": 1, "type": "passive", "name": "Vicious Agility", "spellId": 444777, "icon": "ability_paladin_speedoflight", "index": 200}]}, {"id": 94813, "name": "Death Drive", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94784], "prev": [94788], "entries": [{"id": 117410, "definitionId": 122422, "maxRanks": 1, "type": "passive", "name": "Death Drive", "spellId": 444770, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 94786, "name": "Culling Cyclone / Brutal Finish", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94809], "prev": [94810], "entries": [{"id": 117383, "definitionId": 122395, "maxRanks": 1, "type": "passive", "name": "Culling Cyclone", "spellId": 444778, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 123409, "definitionId": 128247, "maxRanks": 1, "type": "passive", "name": "Brutal Finish", "spellId": 446085, "icon": "ability_revendreth_warrior", "index": 200}]}, {"id": 94787, "name": "Fierce Followthrough / Opportunist", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94801], "prev": [94795], "entries": [{"id": 117384, "definitionId": 122396, "maxRanks": 1, "type": "passive", "name": "Fierce Followthrough", "spellId": 444773, "icon": "spell_deathknight_butcher2", "index": 100}, {"id": 123770, "definitionId": 128608, "maxRanks": 1, "type": "passive", "name": "Opportunist", "spellId": 444774, "icon": "ability_warrior_weaponmastery", "index": 200}]}, {"id": 94784, "name": "Show No Mercy", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94813], "entries": [{"id": 117381, "definitionId": 122393, "maxRanks": 1, "type": "passive", "name": "Show No Mercy", "spellId": 444771, "icon": "warrior_talent_icon_lambstotheslaughter", "index": 100}]}, {"id": 94809, "name": "Reap the Storm", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94786], "entries": [{"id": 117406, "definitionId": 122418, "maxRanks": 1, "type": "passive", "name": "Reap the Storm", "spellId": 444775, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 94801, "name": "Slayer's Malice", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94787], "entries": [{"id": 117398, "definitionId": 122410, "maxRanks": 1, "type": "passive", "name": "Slayer's Malice", "spellId": 444779, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 94820, "name": "Unrelenting Onslaught", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 60, "next": [], "prev": [94809, 94784, 94801], "entries": [{"id": 117417, "definitionId": 122429, "maxRanks": 1, "type": "passive", "name": "Unrelenting Onslaught", "spellId": 444780, "icon": "ability_warrior_commandingshout", "index": 100}]}, {"id": 94818, "name": "Demolish", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 62, "next": [94812, 94819, 94789], "prev": [], "entries": [{"id": 117415, "definitionId": 122427, "maxRanks": 1, "type": "active", "name": "Demolish", "spellId": 436358, "icon": "inv_ability_colossuswarrior_demolish", "index": 100}], "freeNode": true}, {"id": 94812, "name": "Martial Expert", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94799], "prev": [94818], "entries": [{"id": 117409, "definitionId": 122421, "maxRanks": 1, "type": "passive", "name": "Martial Expert", "spellId": 429638, "icon": "ability_warrior_stalwartprotector", "index": 100}]}, {"id": 94819, "name": "Colossal Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94811], "prev": [94818], "entries": [{"id": 117416, "definitionId": 122428, "maxRanks": 1, "type": "passive", "name": "Colossal Might", "spellId": 429634, "icon": "ability_warrior_strengthofarms", "index": 100}]}, {"id": 94789, "name": "Boneshaker / Earthquaker", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "requiresNode": 90375, "next": [94815], "prev": [94818], "entries": [{"id": 117386, "definitionId": 122398, "maxRanks": 1, "type": "passive", "name": "Boneshaker", "spellId": 429639, "icon": "ability_deathknight_brittlebones", "index": 100}, {"id": 119858, "definitionId": 124758, "maxRanks": 1, "type": "passive", "name": "Earthquaker", "spellId": 440992, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 94799, "name": "One Against Many / Arterial Bleed", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94796], "prev": [94812], "entries": [{"id": 117396, "definitionId": 122408, "maxRanks": 1, "type": "passive", "name": "One Against Many", "spellId": 429637, "icon": "ability_warrior_incite", "index": 100}, {"id": 119856, "definitionId": 124756, "maxRanks": 1, "type": "passive", "name": "Arterial Bleed", "spellId": 440995, "icon": "ability_warrior_deepcuts", "index": 200}]}, {"id": 94811, "name": "Tide of Battle", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94794], "prev": [94819], "entries": [{"id": 117408, "definitionId": 122420, "maxRanks": 1, "type": "passive", "name": "Tide of Battle", "spellId": 429641, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 94815, "name": "No Stranger to Pain / Veteran Vitality", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94806], "prev": [94789], "entries": [{"id": 117412, "definitionId": 122424, "maxRanks": 1, "type": "passive", "name": "No Stranger to Pain", "spellId": 429644, "icon": "ability_warrior_renewedvigor", "index": 100}, {"id": 119857, "definitionId": 124757, "maxRanks": 1, "type": "passive", "name": "Veteran Vitality", "spellId": 440993, "icon": "ability_hunter_harass", "index": 200}]}, {"id": 94796, "name": "Practiced Strikes", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94799], "entries": [{"id": 117393, "definitionId": 122405, "maxRanks": 1, "type": "passive", "name": "Practiced Strikes", "spellId": 429647, "icon": "spell_warrior_sharpenblade", "index": 100}]}, {"id": 94794, "name": "Precise Might", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94811], "entries": [{"id": 117391, "definitionId": 122403, "maxRanks": 1, "type": "passive", "name": "Precise Might", "spellId": 431548, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94806, "name": "Mountain of Muscle and Scars", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94815], "entries": [{"id": 117403, "definitionId": 122415, "maxRanks": 1, "type": "passive", "name": "Mountain of Muscle and Scars", "spellId": 429642, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 94793, "name": "Dominance of the Colossus", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 62, "next": [], "prev": [94794, 94796, 94806], "entries": [{"id": 117390, "definitionId": 122402, "maxRanks": 1, "type": "passive", "name": "Dominance of the Colossus", "spellId": 429636, "icon": "ability_warrior_titansgrip", "index": 100}]}], "subTreeNodes": [{"id": 99853, "name": "Colossus / Slayer", "type": "subtree", "posX": 6900, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123393, "type": "subtree", "name": "Colossus", "traitSubTreeId": 62, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-colossus", "nodes": [94818, 94812, 94819, 94789, 94799, 94811, 94815, 94796, 94794, 94806, 94793]}, {"id": 123390, "type": "subtree", "name": "Slayer", "traitSubTreeId": 60, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-slayer", "nodes": [94814, 94788, 94810, 94795, 94813, 94786, 94787, 94784, 94809, 94801, 94820]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/warrior_fury.json b/simc_support/game_data/data_files/trees/warrior_fury.json index 0b8b387..439048c 100644 --- a/simc_support/game_data/data_files/trees/warrior_fury.json +++ b/simc_support/game_data/data_files/trees/warrior_fury.json @@ -1 +1 @@ -{"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Fury", "specId": 72, "classNodes": [{"id": 90325, "name": "Berserker Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90386], "prev": [], "entries": [{"id": 112182, "definitionId": 117187, "maxRanks": 1, "type": "active", "name": "Berserker Stance", "spellId": 386196, "icon": "ability_racial_avatar", "index": 100}], "freeNode": true}, {"id": 92538, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 114644, "definitionId": 119650, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 100}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90325], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90386, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90325], "entries": [{"id": 112254, "definitionId": 117259, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 346002, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [92538], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [92538], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90350], "prev": [90386, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90350, 90355, 90353], "prev": [90386, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90350, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90346, 90326], "entries": [{"id": 112213, "definitionId": 117218, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 215571, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90349], "prev": [90350, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90349, 90356, 90378], "prev": [90350, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 95955, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90349, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [95955, 90382], "prev": [90331, 90385], "entries": [{"id": 112212, "definitionId": 117217, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 382764, "icon": "spell_shadow_unholystrength", "index": 0}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90258], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95955, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90349, 95956], "entries": [{"id": 118849, "definitionId": 123749, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 390674, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118848, "definitionId": 123748, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90373, 90376], "prev": [90349, 90378], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90376, 90258], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90258], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90351, 95955, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92640], "prev": [90382, 95955], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90373, "name": "Dual Wield Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112240, "definitionId": 117245, "maxRanks": 1, "type": "passive", "name": "Dual Wield Specialization", "spellId": 382900, "icon": "ability_dualwield", "index": 100}]}, {"id": 90376, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92640], "prev": [90382, 90354], "entries": [{"id": 112243, "definitionId": 117248, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 391997, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90258, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90368, 90348, 90354], "entries": [{"id": 112108, "definitionId": 117113, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 384124, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 92640, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90362], "prev": [90376, 90360], "entries": [{"id": 114770, "definitionId": 119777, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 107574, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90258], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "ability_bastion_warrior", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90362, "name": "Berserker's Torment / Titan's Torment", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92640], "entries": [{"id": 112227, "definitionId": 117232, "maxRanks": 1, "type": "passive", "name": "Berserker's Torment", "spellId": 390123, "icon": "ability_warrior_innerrage", "index": 0}, {"id": 112226, "definitionId": 117231, "maxRanks": 1, "type": "passive", "name": "Titan's Torment", "spellId": 390135, "icon": "70_inscription_vantus_rune_odyn", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90392, "name": "Bloodthirst", "type": "single", "posX": 12000, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90396], "prev": [], "entries": [{"id": 112261, "definitionId": 117266, "maxRanks": 1, "type": "active", "name": "Bloodthirst", "spellId": 23881, "icon": "spell_nature_bloodlust", "index": 100}]}, {"id": 90396, "name": "Raging Blow", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90398, 90395, 90430], "prev": [90392], "entries": [{"id": 112265, "definitionId": 117270, "maxRanks": 1, "type": "active", "name": "Raging Blow", "spellId": 85288, "icon": "warrior_wild_strike", "index": 100}]}, {"id": 90398, "name": "Frenzied Enrage / Powerful Enrage", "type": "choice", "posX": 11110, "posY": 2100, "maxRanks": 1, "next": [90397, 90399], "prev": [90396], "entries": [{"id": 112267, "definitionId": 117272, "maxRanks": 1, "type": "passive", "name": "Frenzied Enrage", "spellId": 383848, "icon": "spell_shadow_unholyfrenzy", "index": 100}, {"id": 119112, "definitionId": 124012, "maxRanks": 1, "type": "passive", "name": "Powerful Enrage", "spellId": 440277, "icon": "ability_warrior_strengthofarms", "index": 200}]}, {"id": 90395, "name": "Enraged Regeneration", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90399, 90394, 90393, 90429], "prev": [90396], "entries": [{"id": 112264, "definitionId": 117269, "maxRanks": 1, "type": "active", "name": "Enraged Regeneration", "spellId": 184364, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 90430, "name": "Improved Execute", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90429, 90428], "prev": [90396], "entries": [{"id": 112301, "definitionId": 117306, "maxRanks": 1, "type": "passive", "name": "Improved Execute", "spellId": 316402, "icon": "inv_sword_48", "index": 100}]}, {"id": 90397, "name": "Improved Bloodthirst", "type": "single", "posX": 10200, "posY": 2700, "maxRanks": 1, "next": [90403], "prev": [90398], "entries": [{"id": 112266, "definitionId": 117271, "maxRanks": 1, "type": "passive", "name": "Improved Bloodthirst", "spellId": 383852, "icon": "spell_nature_bloodlust", "index": 100}]}, {"id": 90399, "name": "Fresh Meat", "type": "single", "posX": 11110, "posY": 2700, "maxRanks": 1, "next": [90403], "prev": [90395, 90398], "entries": [{"id": 112268, "definitionId": 117273, "maxRanks": 1, "type": "passive", "name": "Fresh Meat", "spellId": 215568, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 90394, "name": "Warpaint", "type": "single", "posX": 11710, "posY": 2700, "maxRanks": 1, "next": [90408], "prev": [90395], "entries": [{"id": 112263, "definitionId": 117268, "maxRanks": 1, "type": "passive", "name": "Warpaint", "spellId": 208154, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 90393, "name": "Invigorating Fury", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90408], "prev": [90395], "entries": [{"id": 112262, "definitionId": 117267, "maxRanks": 1, "type": "passive", "name": "Invigorating Fury", "spellId": 383468, "icon": "spell_misc_emotionangry", "index": 100}]}, {"id": 90429, "name": "Sudden Death", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90390], "prev": [90430, 90395], "entries": [{"id": 112300, "definitionId": 117305, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 280721, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90428, "name": "Cruelty", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [90390], "prev": [90430], "entries": [{"id": 112299, "definitionId": 117304, "maxRanks": 1, "type": "passive", "name": "Cruelty", "spellId": 392931, "icon": "spell_nature_focusedmind", "index": 100}]}, {"id": 90403, "name": "Focus in Chaos", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90404, 90402, 90400], "prev": [90397, 90399], "entries": [{"id": 112272, "definitionId": 117277, "maxRanks": 1, "type": "passive", "name": "Focus in Chaos", "spellId": 383486, "icon": "ability_hunter_mastermarksman", "index": 100}]}, {"id": 90408, "name": "Rampage", "type": "single", "posX": 12010, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90406, 90407, 90411], "prev": [90393, 90394], "entries": [{"id": 112277, "definitionId": 117282, "maxRanks": 1, "type": "active", "name": "Rampage", "spellId": 184367, "icon": "ability_warrior_rampage", "index": 100}]}, {"id": 90390, "name": "Improved Raging Blow", "type": "single", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90409, 90427], "prev": [90429, 90428], "entries": [{"id": 112259, "definitionId": 117264, "maxRanks": 1, "type": "passive", "name": "Improved Raging Blow", "spellId": 383854, "icon": "warrior_wild_strike", "index": 100}]}, {"id": 90400, "name": "Single-Minded Fury", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90401], "prev": [90403], "entries": [{"id": 112269, "definitionId": 117274, "maxRanks": 1, "type": "passive", "name": "Single-Minded Fury", "spellId": 81099, "icon": "warrior_talent_icon_singlemindedfury", "index": 0}]}, {"id": 90402, "name": "Cold Steel, Hot Blood", "type": "single", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90401, 90405], "prev": [90403], "entries": [{"id": 112271, "definitionId": 117276, "maxRanks": 1, "type": "passive", "name": "Cold Steel, Hot Blood", "spellId": 383959, "icon": "ability_rogue_hungerforblood", "index": 100}]}, {"id": 90404, "name": "Vicious Contempt", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90405], "prev": [90403], "entries": [{"id": 112273, "definitionId": 117278, "maxRanks": 2, "type": "passive", "name": "Vicious Contempt", "spellId": 383885, "icon": "ability_ironmaidens_sorkasprey", "index": 200}]}, {"id": 90406, "name": "Frenzy", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90405, 90412], "prev": [90408], "entries": [{"id": 112275, "definitionId": 117280, "maxRanks": 1, "type": "passive", "name": "Frenzy", "spellId": 335077, "icon": "ability_rogue_bloodyeye", "index": 100}]}, {"id": 90407, "name": "Hack and Slash", "type": "single", "posX": 12010, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90412], "prev": [90408], "entries": [{"id": 112276, "definitionId": 117281, "maxRanks": 1, "type": "passive", "name": "Hack and Slash", "spellId": 383877, "icon": "ability_rogue_rollthebones02", "index": 100}]}, {"id": 90411, "name": "Slaughtering Strikes", "type": "single", "posX": 12610, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90412, 90410], "prev": [90408], "entries": [{"id": 112280, "definitionId": 117285, "maxRanks": 1, "type": "passive", "name": "Slaughtering Strikes", "spellId": 388004, "icon": "inv_axe_2h_orcwarrior_c_01", "index": 100}]}, {"id": 90409, "name": "Ashen Juggernaut", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90410, 90387], "prev": [90390], "entries": [{"id": 112278, "definitionId": 117283, "maxRanks": 1, "type": "passive", "name": "Ashen Juggernaut", "spellId": 392536, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90427, "name": "Improved Whirlwind", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90387, 90391], "prev": [90390], "entries": [{"id": 112298, "definitionId": 117303, "maxRanks": 1, "type": "passive", "name": "Improved Whirlwind", "spellId": 12950, "icon": "ability_whirlwind", "index": 100}]}, {"id": 90401, "name": "Bloodborne", "type": "single", "posX": 10200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90421], "prev": [90402, 90400], "entries": [{"id": 112270, "definitionId": 117275, "maxRanks": 1, "type": "passive", "name": "Bloodborne", "spellId": 385703, "icon": "inv_artifact_bloodoftheassassinated", "index": 0}]}, {"id": 90405, "name": "Bloodcraze", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90421], "prev": [90402, 90404, 90406], "entries": [{"id": 112274, "definitionId": 117279, "maxRanks": 1, "type": "passive", "name": "Bloodcraze", "spellId": 393950, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 90412, "name": "Recklessness", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90416], "prev": [90407, 90406, 90411], "entries": [{"id": 112281, "definitionId": 117286, "maxRanks": 1, "type": "active", "name": "Recklessness", "spellId": 1719, "icon": "warrior_talent_icon_innerrage", "index": 100}]}, {"id": 90410, "name": "Massacre", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90409, 90411], "entries": [{"id": 112279, "definitionId": 117284, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 206315, "icon": "inv_sword_48", "index": 100}]}, {"id": 90387, "name": "Wrath and Fury", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90409, 90427], "entries": [{"id": 112255, "definitionId": 117260, "maxRanks": 1, "type": "passive", "name": "Wrath and Fury", "spellId": 392936, "icon": "inv_sword_2h_artifactarathor_d_03", "index": 100}]}, {"id": 90391, "name": "Meat Cleaver", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90427], "entries": [{"id": 112260, "definitionId": 117265, "maxRanks": 1, "type": "passive", "name": "Meat Cleaver", "spellId": 280392, "icon": "ability_whirlwind", "index": 200}]}, {"id": 90421, "name": "Deft Experience", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90388, 90424], "prev": [90401, 90405], "entries": [{"id": 112292, "definitionId": 117297, "maxRanks": 2, "type": "passive", "name": "Deft Experience", "spellId": 383295, "icon": "inv_misc_book_07", "index": 100}]}, {"id": 90416, "name": "Swift Strikes", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90388, 90415], "prev": [90412], "entries": [{"id": 112286, "definitionId": 117291, "maxRanks": 2, "type": "passive", "name": "Swift Strikes", "spellId": 383459, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90425, "name": "Critical Thinking", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90415, 90418], "prev": [90410, 90387, 90391], "entries": [{"id": 112296, "definitionId": 117301, "maxRanks": 2, "type": "passive", "name": "Critical Thinking", "spellId": 383297, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90424, "name": "Onslaught", "type": "single", "posX": 9600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90423], "prev": [90421], "entries": [{"id": 112295, "definitionId": 117300, "maxRanks": 1, "type": "active", "name": "Onslaught", "spellId": 315720, "icon": "ability_warrior_trauma", "index": 100}]}, {"id": 90388, "name": "Ravager / Bladestorm", "type": "choice", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90389], "prev": [90416, 90421], "entries": [{"id": 112256, "definitionId": 117261, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 0}, {"id": 119139, "definitionId": 124039, "maxRanks": 1, "type": "active", "name": "Bladestorm", "spellId": 227847, "icon": "ability_warrior_bladestorm", "index": 100}]}, {"id": 90415, "name": "Anger Management / Reckless Abandon", "type": "choice", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90414, 90413], "prev": [90425, 90416], "entries": [{"id": 112285, "definitionId": 117290, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 100}, {"id": 112284, "definitionId": 117289, "maxRanks": 1, "type": "passive", "name": "Reckless Abandon", "spellId": 396749, "icon": "spell_fire_incinerate", "index": 200}]}, {"id": 90418, "name": "Odyn's Fury", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90417], "prev": [90425], "entries": [{"id": 112289, "definitionId": 117294, "maxRanks": 1, "type": "active", "name": "Odyn's Fury", "spellId": 385059, "icon": "inv_sword_1h_artifactvigfus_d_01", "index": 100}]}, {"id": 90423, "name": "Tenderize", "type": "single", "posX": 9600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90424], "entries": [{"id": 112294, "definitionId": 117299, "maxRanks": 1, "type": "passive", "name": "Tenderize", "spellId": 388933, "icon": "inv_mace_1h_blacksmithing_b_01_black", "index": 100}]}, {"id": 90389, "name": "Storm of Steel / Unhinged", "type": "choice", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90388], "entries": [{"id": 112258, "definitionId": 117263, "maxRanks": 1, "type": "passive", "name": "Storm of Steel", "spellId": 382953, "icon": "ability_creature_cursed_04", "index": 0}, {"id": 112257, "definitionId": 117262, "maxRanks": 1, "type": "passive", "name": "Unhinged", "spellId": 386628, "icon": "spell_shadow_spectralsight", "index": 100}]}, {"id": 90414, "name": "Unbridled Ferocity", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90415], "entries": [{"id": 112283, "definitionId": 117288, "maxRanks": 1, "type": "passive", "name": "Unbridled Ferocity", "spellId": 389603, "icon": "ability_warrior_endlessrage", "index": 100}]}, {"id": 90413, "name": "Depths of Insanity", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90415], "entries": [{"id": 112282, "definitionId": 117287, "maxRanks": 1, "type": "passive", "name": "Depths of Insanity", "spellId": 383922, "icon": "racial_troll_berserk", "index": 100}]}, {"id": 90417, "name": "Dancing Blades / Titanic Rage", "type": "choice", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90418], "entries": [{"id": 112288, "definitionId": 117293, "maxRanks": 1, "type": "passive", "name": "Dancing Blades", "spellId": 391683, "icon": "inv_sword_1h_artifactvigfus_d_01dual", "index": 100}, {"id": 112287, "definitionId": 117292, "maxRanks": 1, "type": "passive", "name": "Titanic Rage", "spellId": 394329, "icon": "inv_sword_1h_artifactvigfus_d_02", "index": 200}]}], "heroNodes": [{"id": 94803, "name": "Lightning Strikes", "type": "single", "posX": 15000, "posY": 300, "maxRanks": 1, "entryNode": true, "subTreeId": 61, "next": [94808, 94816, 94800], "prev": [], "entries": [{"id": 117400, "definitionId": 122412, "maxRanks": 1, "type": "passive", "name": "Lightning Strikes", "spellId": 434969, "icon": "ability_vehicle_electrocharge", "index": 100}], "freeNode": true}, {"id": 94816, "name": "Crashing Thunder", "type": "single", "posX": 14390, "posY": 900, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94785], "prev": [94803], "entries": [{"id": 117413, "definitionId": 122425, "maxRanks": 1, "type": "passive", "name": "Crashing Thunder", "spellId": 436707, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 94800, "name": "Ground Current", "type": "single", "posX": 15000, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94817], "prev": [94803], "entries": [{"id": 117397, "definitionId": 122409, "maxRanks": 1, "type": "passive", "name": "Ground Current", "spellId": 436148, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 94808, "name": "Strength of the Mountain", "type": "single", "posX": 15600, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94798], "prev": [94803], "entries": [{"id": 117405, "definitionId": 122417, "maxRanks": 1, "type": "passive", "name": "Strength of the Mountain", "spellId": 437068, "icon": "ability_warrior_titansgrip", "index": 100}]}, {"id": 94814, "name": "Slayer's Dominance", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 60, "next": [94788, 94810, 94795], "prev": [], "entries": [{"id": 117411, "definitionId": 122423, "maxRanks": 1, "type": "passive", "name": "Slayer's Dominance", "spellId": 444767, "icon": "inv_ability_slayerwarrior_slayersdominance", "index": 100}], "freeNode": true}, {"id": 94785, "name": "Thunder Blast", "type": "single", "posX": 14410, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94797], "prev": [94816], "entries": [{"id": 117382, "definitionId": 122394, "maxRanks": 1, "type": "passive", "name": "Thunder Blast", "spellId": 435607, "icon": "warrior_talent_icon_bloodandthunder", "index": 100}]}, {"id": 94817, "name": "Storm Bolts / Storm Shield", "type": "choice", "posX": 15010, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94792], "prev": [94800], "entries": [{"id": 117414, "definitionId": 122426, "maxRanks": 1, "type": "passive", "name": "Storm Bolts", "spellId": 436162, "icon": "warrior_talent_icon_stormbolt", "index": 100}, {"id": 118835, "definitionId": 123735, "maxRanks": 1, "type": "passive", "name": "Storm Shield", "spellId": 438597, "icon": "spell_winston_bubble", "index": 200}]}, {"id": 94798, "name": "Keep Your Feet on the Ground / Steadfast as the Peaks", "type": "choice", "posX": 15600, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94807], "prev": [94808], "entries": [{"id": 117395, "definitionId": 122407, "maxRanks": 1, "type": "passive", "name": "Keep Your Feet on the Ground", "spellId": 438590, "icon": "ability_thunderking_overcharge", "index": 100}, {"id": 118836, "definitionId": 123736, "maxRanks": 1, "type": "passive", "name": "Steadfast as the Peaks", "spellId": 434970, "icon": "ability_warrior_devastate", "index": 200}]}, {"id": 94788, "name": "Imminent Demise", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94813], "prev": [94814], "entries": [{"id": 117385, "definitionId": 122397, "maxRanks": 1, "type": "passive", "name": "Imminent Demise", "spellId": 444769, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 94810, "name": "Overwhelming Blades", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94786], "prev": [94814], "entries": [{"id": 117407, "definitionId": 122419, "maxRanks": 1, "type": "passive", "name": "Overwhelming Blades", "spellId": 444772, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}]}, {"id": 94795, "name": "Relentless Pursuit / Vicious Agility", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94787], "prev": [94814], "entries": [{"id": 117392, "definitionId": 122404, "maxRanks": 1, "type": "passive", "name": "Relentless Pursuit", "spellId": 444776, "icon": "ability_rogue_sprint", "index": 100}, {"id": 123408, "definitionId": 128246, "maxRanks": 1, "type": "passive", "name": "Vicious Agility", "spellId": 444777, "icon": "ability_paladin_speedoflight", "index": 200}]}, {"id": 94792, "name": "Gathering Clouds / Thorim's Might", "type": "choice", "posX": 15000, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94817], "entries": [{"id": 117389, "definitionId": 122401, "maxRanks": 1, "type": "passive", "name": "Gathering Clouds", "spellId": 436201, "icon": "spell_nature_stormreach", "index": 100}, {"id": 118834, "definitionId": 123734, "maxRanks": 1, "type": "passive", "name": "Thorim's Might", "spellId": 436152, "icon": "inv_ability_mountainthanewarrior_thorimsmight", "index": 200}]}, {"id": 94807, "name": "Burst of Power", "type": "single", "posX": 15590, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94798], "entries": [{"id": 117404, "definitionId": 122416, "maxRanks": 1, "type": "passive", "name": "Burst of Power", "spellId": 437118, "icon": "shaman_pvp_thundercharge", "index": 100}]}, {"id": 94797, "name": "Flashing Skies / Snap Induction", "type": "choice", "posX": 14410, "posY": 2110, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94805], "prev": [94785], "entries": [{"id": 117394, "definitionId": 122406, "maxRanks": 1, "type": "passive", "name": "Flashing Skies", "spellId": 437079, "icon": "spell_lightning_lightningbolt01", "index": 100}, {"id": 118833, "definitionId": 123733, "maxRanks": 1, "type": "passive", "name": "Snap Induction", "spellId": 456270, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94813, "name": "Death Drive", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94784], "prev": [94788], "entries": [{"id": 117410, "definitionId": 122422, "maxRanks": 1, "type": "passive", "name": "Death Drive", "spellId": 444770, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 94786, "name": "Culling Cyclone / Brutal Finish", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94809], "prev": [94810], "entries": [{"id": 117383, "definitionId": 122395, "maxRanks": 1, "type": "passive", "name": "Culling Cyclone", "spellId": 444778, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 123409, "definitionId": 128247, "maxRanks": 1, "type": "passive", "name": "Brutal Finish", "spellId": 446085, "icon": "ability_revendreth_warrior", "index": 200}]}, {"id": 94787, "name": "Fierce Followthrough / Opportunist", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94801], "prev": [94795], "entries": [{"id": 117384, "definitionId": 122396, "maxRanks": 1, "type": "passive", "name": "Fierce Followthrough", "spellId": 444773, "icon": "spell_deathknight_butcher2", "index": 100}, {"id": 123770, "definitionId": 128608, "maxRanks": 1, "type": "passive", "name": "Opportunist", "spellId": 444774, "icon": "ability_warrior_weaponmastery", "index": 200}]}, {"id": 94805, "name": "Avatar of the Storm", "type": "single", "posX": 15010, "posY": 2710, "maxRanks": 1, "subTreeId": 61, "requiresNode": 92640, "next": [], "prev": [94797, 94792, 94807], "entries": [{"id": 117402, "definitionId": 122414, "maxRanks": 1, "type": "passive", "name": "Avatar of the Storm", "spellId": 437134, "icon": "achievement_dungeon_blackrockcaverns_ascendantlordobsidius", "index": 100}]}, {"id": 94784, "name": "Show No Mercy", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94813], "entries": [{"id": 117381, "definitionId": 122393, "maxRanks": 1, "type": "passive", "name": "Show No Mercy", "spellId": 444771, "icon": "warrior_talent_icon_lambstotheslaughter", "index": 100}]}, {"id": 94809, "name": "Reap the Storm", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94786], "entries": [{"id": 117406, "definitionId": 122418, "maxRanks": 1, "type": "passive", "name": "Reap the Storm", "spellId": 444775, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 94801, "name": "Slayer's Malice", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94787], "entries": [{"id": 117398, "definitionId": 122410, "maxRanks": 1, "type": "passive", "name": "Slayer's Malice", "spellId": 444779, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 94820, "name": "Unrelenting Onslaught", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 60, "next": [], "prev": [94809, 94784, 94801], "entries": [{"id": 117417, "definitionId": 122429, "maxRanks": 1, "type": "passive", "name": "Unrelenting Onslaught", "spellId": 444780, "icon": "ability_warrior_commandingshout", "index": 100}]}], "subTreeNodes": [{"id": 99852, "name": "Mountain Thane / Slayer", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123392, "type": "subtree", "name": "Mountain Thane", "traitSubTreeId": 61, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-mountainthane", "nodes": [94803, 94816, 94800, 94808, 94785, 94817, 94798, 94792, 94807, 94797, 94805]}, {"id": 123389, "type": "subtree", "name": "Slayer", "traitSubTreeId": 60, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-slayer", "nodes": [94814, 94788, 94810, 94795, 94813, 94786, 94787, 94784, 94809, 94801, 94820]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]} \ No newline at end of file +{"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Fury", "specId": 72, "classNodes": [{"id": 90325, "name": "Berserker Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90386], "prev": [], "entries": [{"id": 112182, "definitionId": 117187, "maxRanks": 1, "type": "active", "name": "Berserker Stance", "spellId": 386196, "icon": "ability_racial_avatar", "index": 100}], "freeNode": true}, {"id": 92538, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 114644, "definitionId": 119650, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 100}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90325], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90386, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90325], "entries": [{"id": 112254, "definitionId": 117259, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 346002, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [92538], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [92538], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90350], "prev": [90386, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90350, 90355, 90353], "prev": [90386, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90350, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90346, 90326], "entries": [{"id": 112213, "definitionId": 117218, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 215571, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90349], "prev": [90350, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90349, 90356, 90378], "prev": [90350, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 95955, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90349, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [95955, 90382], "prev": [90331, 90385], "entries": [{"id": 112212, "definitionId": 117217, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 382764, "icon": "spell_shadow_unholystrength", "index": 0}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90258], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95955, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90349, 95956], "entries": [{"id": 118849, "definitionId": 123749, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 390674, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118848, "definitionId": 123748, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90373, 90376], "prev": [90349, 90378], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90376, 90258], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90258], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90351, 95955, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92640], "prev": [90382, 95955], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90373, "name": "Dual Wield Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112240, "definitionId": 117245, "maxRanks": 1, "type": "passive", "name": "Dual Wield Specialization", "spellId": 382900, "icon": "ability_dualwield", "index": 100}]}, {"id": 90376, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92640], "prev": [90382, 90354], "entries": [{"id": 112243, "definitionId": 117248, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 391997, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90258, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90368, 90348, 90354], "entries": [{"id": 112108, "definitionId": 117113, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 384124, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 92640, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90362], "prev": [90376, 90360], "entries": [{"id": 114770, "definitionId": 119777, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 107574, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90258], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "inv_ability_warrior_championsspear", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90362, "name": "Berserker's Torment / Titan's Torment", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92640], "entries": [{"id": 112227, "definitionId": 117232, "maxRanks": 1, "type": "passive", "name": "Berserker's Torment", "spellId": 390123, "icon": "ability_warrior_innerrage", "index": 0}, {"id": 112226, "definitionId": 117231, "maxRanks": 1, "type": "passive", "name": "Titan's Torment", "spellId": 390135, "icon": "70_inscription_vantus_rune_odyn", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90392, "name": "Bloodthirst", "type": "single", "posX": 12000, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90396], "prev": [], "entries": [{"id": 112261, "definitionId": 117266, "maxRanks": 1, "type": "active", "name": "Bloodthirst", "spellId": 23881, "icon": "spell_nature_bloodlust", "index": 100}]}, {"id": 90396, "name": "Raging Blow", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90398, 90395, 90430], "prev": [90392], "entries": [{"id": 112265, "definitionId": 117270, "maxRanks": 1, "type": "active", "name": "Raging Blow", "spellId": 85288, "icon": "warrior_wild_strike", "index": 100}]}, {"id": 90398, "name": "Frenzied Enrage / Powerful Enrage", "type": "choice", "posX": 11110, "posY": 2100, "maxRanks": 1, "next": [90397, 90399], "prev": [90396], "entries": [{"id": 112267, "definitionId": 117272, "maxRanks": 1, "type": "passive", "name": "Frenzied Enrage", "spellId": 383848, "icon": "spell_shadow_unholyfrenzy", "index": 100}, {"id": 119112, "definitionId": 124012, "maxRanks": 1, "type": "passive", "name": "Powerful Enrage", "spellId": 440277, "icon": "ability_warrior_strengthofarms", "index": 200}]}, {"id": 90395, "name": "Enraged Regeneration", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90399, 90394, 90393, 90429], "prev": [90396], "entries": [{"id": 112264, "definitionId": 117269, "maxRanks": 1, "type": "active", "name": "Enraged Regeneration", "spellId": 184364, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 90430, "name": "Improved Execute", "type": "single", "posX": 12900, "posY": 2100, "maxRanks": 1, "next": [90429, 90428], "prev": [90396], "entries": [{"id": 112301, "definitionId": 117306, "maxRanks": 1, "type": "passive", "name": "Improved Execute", "spellId": 316402, "icon": "inv_sword_48", "index": 100}]}, {"id": 90397, "name": "Improved Bloodthirst", "type": "single", "posX": 10200, "posY": 2700, "maxRanks": 1, "next": [90403], "prev": [90398], "entries": [{"id": 112266, "definitionId": 117271, "maxRanks": 1, "type": "passive", "name": "Improved Bloodthirst", "spellId": 383852, "icon": "spell_nature_bloodlust", "index": 100}]}, {"id": 90399, "name": "Fresh Meat", "type": "single", "posX": 11110, "posY": 2700, "maxRanks": 1, "next": [90403], "prev": [90395, 90398], "entries": [{"id": 112268, "definitionId": 117273, "maxRanks": 1, "type": "passive", "name": "Fresh Meat", "spellId": 215568, "icon": "ability_deathwing_bloodcorruption_death", "index": 100}]}, {"id": 90394, "name": "Warpaint", "type": "single", "posX": 11710, "posY": 2700, "maxRanks": 1, "next": [90408], "prev": [90395], "entries": [{"id": 112263, "definitionId": 117268, "maxRanks": 1, "type": "passive", "name": "Warpaint", "spellId": 208154, "icon": "ability_rogue_preparation", "index": 100}]}, {"id": 90393, "name": "Invigorating Fury", "type": "single", "posX": 12300, "posY": 2700, "maxRanks": 1, "next": [90408], "prev": [90395], "entries": [{"id": 112262, "definitionId": 117267, "maxRanks": 1, "type": "passive", "name": "Invigorating Fury", "spellId": 383468, "icon": "spell_misc_emotionangry", "index": 100}]}, {"id": 90429, "name": "Sudden Death", "type": "single", "posX": 12900, "posY": 2700, "maxRanks": 1, "next": [90390], "prev": [90430, 90395], "entries": [{"id": 112300, "definitionId": 117305, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 280721, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90428, "name": "Cruelty", "type": "single", "posX": 13800, "posY": 2700, "maxRanks": 1, "next": [90390], "prev": [90430], "entries": [{"id": 112299, "definitionId": 117304, "maxRanks": 1, "type": "passive", "name": "Cruelty", "spellId": 392931, "icon": "spell_nature_focusedmind", "index": 100}]}, {"id": 90403, "name": "Focus in Chaos", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90404, 90402, 90400], "prev": [90397, 90399], "entries": [{"id": 112272, "definitionId": 117277, "maxRanks": 1, "type": "passive", "name": "Focus in Chaos", "spellId": 383486, "icon": "ability_hunter_mastermarksman", "index": 100}]}, {"id": 90408, "name": "Rampage", "type": "single", "posX": 12010, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90406, 90407, 90411], "prev": [90393, 90394], "entries": [{"id": 112277, "definitionId": 117282, "maxRanks": 1, "type": "active", "name": "Rampage", "spellId": 184367, "icon": "ability_warrior_rampage", "index": 100}]}, {"id": 90390, "name": "Improved Raging Blow", "type": "single", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90409, 90427], "prev": [90429, 90428], "entries": [{"id": 112259, "definitionId": 117264, "maxRanks": 1, "type": "passive", "name": "Improved Raging Blow", "spellId": 383854, "icon": "warrior_wild_strike", "index": 100}]}, {"id": 90400, "name": "Single-Minded Fury", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90401], "prev": [90403], "entries": [{"id": 112269, "definitionId": 117274, "maxRanks": 1, "type": "passive", "name": "Single-Minded Fury", "spellId": 81099, "icon": "warrior_talent_icon_singlemindedfury", "index": 0}]}, {"id": 90402, "name": "Cold Steel, Hot Blood", "type": "single", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90401, 90405], "prev": [90403], "entries": [{"id": 112271, "definitionId": 117276, "maxRanks": 1, "type": "passive", "name": "Cold Steel, Hot Blood", "spellId": 383959, "icon": "ability_rogue_hungerforblood", "index": 100}]}, {"id": 90404, "name": "Vicious Contempt", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90405], "prev": [90403], "entries": [{"id": 112273, "definitionId": 117278, "maxRanks": 2, "type": "passive", "name": "Vicious Contempt", "spellId": 383885, "icon": "ability_ironmaidens_sorkasprey", "index": 200}]}, {"id": 90406, "name": "Frenzy", "type": "single", "posX": 11400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90405, 90412], "prev": [90408], "entries": [{"id": 112275, "definitionId": 117280, "maxRanks": 1, "type": "passive", "name": "Frenzy", "spellId": 335077, "icon": "ability_rogue_bloodyeye", "index": 100}]}, {"id": 90407, "name": "Hack and Slash", "type": "single", "posX": 12010, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90412], "prev": [90408], "entries": [{"id": 112276, "definitionId": 117281, "maxRanks": 1, "type": "passive", "name": "Hack and Slash", "spellId": 383877, "icon": "ability_rogue_rollthebones02", "index": 100}]}, {"id": 90411, "name": "Slaughtering Strikes", "type": "single", "posX": 12610, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90412, 90410], "prev": [90408], "entries": [{"id": 112280, "definitionId": 117285, "maxRanks": 1, "type": "passive", "name": "Slaughtering Strikes", "spellId": 388004, "icon": "inv_axe_2h_orcwarrior_c_01", "index": 100}]}, {"id": 90409, "name": "Ashen Juggernaut", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90410, 90387], "prev": [90390], "entries": [{"id": 112278, "definitionId": 117283, "maxRanks": 1, "type": "passive", "name": "Ashen Juggernaut", "spellId": 392536, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90427, "name": "Improved Whirlwind", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90387, 90391], "prev": [90390], "entries": [{"id": 112298, "definitionId": 117303, "maxRanks": 1, "type": "passive", "name": "Improved Whirlwind", "spellId": 12950, "icon": "ability_whirlwind", "index": 100}]}, {"id": 90401, "name": "Bloodborne", "type": "single", "posX": 10200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90421], "prev": [90402, 90400], "entries": [{"id": 112270, "definitionId": 117275, "maxRanks": 1, "type": "passive", "name": "Bloodborne", "spellId": 385703, "icon": "inv_artifact_bloodoftheassassinated", "index": 0}]}, {"id": 90405, "name": "Bloodcraze", "type": "single", "posX": 10800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90421], "prev": [90402, 90404, 90406], "entries": [{"id": 112274, "definitionId": 117279, "maxRanks": 1, "type": "passive", "name": "Bloodcraze", "spellId": 393950, "icon": "ability_creature_cursed_02", "index": 100}]}, {"id": 90412, "name": "Recklessness", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90416], "prev": [90407, 90406, 90411], "entries": [{"id": 112281, "definitionId": 117286, "maxRanks": 1, "type": "active", "name": "Recklessness", "spellId": 1719, "icon": "warrior_talent_icon_innerrage", "index": 100}]}, {"id": 90410, "name": "Massacre", "type": "single", "posX": 13200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90409, 90411], "entries": [{"id": 112279, "definitionId": 117284, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 206315, "icon": "inv_sword_48", "index": 100}]}, {"id": 90387, "name": "Wrath and Fury", "type": "single", "posX": 13800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90409, 90427], "entries": [{"id": 112255, "definitionId": 117260, "maxRanks": 1, "type": "passive", "name": "Wrath and Fury", "spellId": 392936, "icon": "inv_sword_2h_artifactarathor_d_03", "index": 100}]}, {"id": 90391, "name": "Meat Cleaver", "type": "single", "posX": 14400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90425], "prev": [90427], "entries": [{"id": 112260, "definitionId": 117265, "maxRanks": 1, "type": "passive", "name": "Meat Cleaver", "spellId": 280392, "icon": "ability_whirlwind", "index": 200}]}, {"id": 90421, "name": "Deft Experience", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90388, 90424], "prev": [90401, 90405], "entries": [{"id": 112292, "definitionId": 117297, "maxRanks": 2, "type": "passive", "name": "Deft Experience", "spellId": 383295, "icon": "inv_misc_book_07", "index": 100}]}, {"id": 90416, "name": "Swift Strikes", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90388, 90415], "prev": [90412], "entries": [{"id": 112286, "definitionId": 117291, "maxRanks": 2, "type": "passive", "name": "Swift Strikes", "spellId": 383459, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90425, "name": "Critical Thinking", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90415, 90418], "prev": [90410, 90387, 90391], "entries": [{"id": 112296, "definitionId": 117301, "maxRanks": 2, "type": "passive", "name": "Critical Thinking", "spellId": 383297, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90424, "name": "Onslaught", "type": "single", "posX": 9600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90423], "prev": [90421], "entries": [{"id": 112295, "definitionId": 117300, "maxRanks": 1, "type": "active", "name": "Onslaught", "spellId": 315720, "icon": "ability_warrior_trauma", "index": 100}]}, {"id": 90388, "name": "Ravager / Bladestorm", "type": "choice", "posX": 11100, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90389], "prev": [90416, 90421], "entries": [{"id": 112256, "definitionId": 117261, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 0}, {"id": 119139, "definitionId": 124039, "maxRanks": 1, "type": "active", "name": "Bladestorm", "spellId": 227847, "icon": "ability_warrior_bladestorm", "index": 100}]}, {"id": 90415, "name": "Anger Management / Reckless Abandon", "type": "choice", "posX": 12900, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90414, 90413], "prev": [90425, 90416], "entries": [{"id": 112285, "definitionId": 117290, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 100}, {"id": 112284, "definitionId": 117289, "maxRanks": 1, "type": "passive", "name": "Reckless Abandon", "spellId": 396749, "icon": "spell_fire_incinerate", "index": 200}]}, {"id": 90418, "name": "Odyn's Fury", "type": "single", "posX": 14400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90417], "prev": [90425], "entries": [{"id": 112289, "definitionId": 117294, "maxRanks": 1, "type": "active", "name": "Odyn's Fury", "spellId": 385059, "icon": "inv_sword_1h_artifactvigfus_d_01", "index": 100}]}, {"id": 90423, "name": "Tenderize", "type": "single", "posX": 9600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90424], "entries": [{"id": 112294, "definitionId": 117299, "maxRanks": 1, "type": "passive", "name": "Tenderize", "spellId": 388933, "icon": "inv_mace_1h_blacksmithing_b_01_black", "index": 100}]}, {"id": 90389, "name": "Storm of Steel / Unhinged", "type": "choice", "posX": 11100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90388], "entries": [{"id": 112258, "definitionId": 117263, "maxRanks": 1, "type": "passive", "name": "Storm of Steel", "spellId": 382953, "icon": "ability_creature_cursed_04", "index": 0}, {"id": 112257, "definitionId": 117262, "maxRanks": 1, "type": "passive", "name": "Unhinged", "spellId": 386628, "icon": "spell_shadow_spectralsight", "index": 100}]}, {"id": 90414, "name": "Unbridled Ferocity", "type": "single", "posX": 12600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90415], "entries": [{"id": 112283, "definitionId": 117288, "maxRanks": 1, "type": "passive", "name": "Unbridled Ferocity", "spellId": 389603, "icon": "ability_warrior_endlessrage", "index": 100}]}, {"id": 90413, "name": "Depths of Insanity", "type": "single", "posX": 13200, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90415], "entries": [{"id": 112282, "definitionId": 117287, "maxRanks": 1, "type": "passive", "name": "Depths of Insanity", "spellId": 383922, "icon": "racial_troll_berserk", "index": 100}]}, {"id": 90417, "name": "Dancing Blades / Titanic Rage", "type": "choice", "posX": 14400, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90418], "entries": [{"id": 112288, "definitionId": 117293, "maxRanks": 1, "type": "passive", "name": "Dancing Blades", "spellId": 391683, "icon": "inv_sword_1h_artifactvigfus_d_01dual", "index": 100}, {"id": 112287, "definitionId": 117292, "maxRanks": 1, "type": "passive", "name": "Titanic Rage", "spellId": 394329, "icon": "inv_sword_1h_artifactvigfus_d_02", "index": 200}]}], "heroNodes": [{"id": 94803, "name": "Lightning Strikes", "type": "single", "posX": 15000, "posY": 300, "maxRanks": 1, "entryNode": true, "subTreeId": 61, "next": [94808, 94816, 94800], "prev": [], "entries": [{"id": 117400, "definitionId": 122412, "maxRanks": 1, "type": "passive", "name": "Lightning Strikes", "spellId": 434969, "icon": "ability_vehicle_electrocharge", "index": 100}], "freeNode": true}, {"id": 94816, "name": "Crashing Thunder", "type": "single", "posX": 14390, "posY": 900, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94785], "prev": [94803], "entries": [{"id": 117413, "definitionId": 122425, "maxRanks": 1, "type": "passive", "name": "Crashing Thunder", "spellId": 436707, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 94800, "name": "Ground Current", "type": "single", "posX": 15000, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94817], "prev": [94803], "entries": [{"id": 117397, "definitionId": 122409, "maxRanks": 1, "type": "passive", "name": "Ground Current", "spellId": 436148, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 94808, "name": "Strength of the Mountain", "type": "single", "posX": 15600, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94798], "prev": [94803], "entries": [{"id": 117405, "definitionId": 122417, "maxRanks": 1, "type": "passive", "name": "Strength of the Mountain", "spellId": 437068, "icon": "ability_warrior_titansgrip", "index": 100}]}, {"id": 94814, "name": "Slayer's Dominance", "type": "single", "posX": 7850, "posY": 1250, "maxRanks": 1, "entryNode": true, "subTreeId": 60, "next": [94788, 94810, 94795], "prev": [], "entries": [{"id": 117411, "definitionId": 122423, "maxRanks": 1, "type": "passive", "name": "Slayer's Dominance", "spellId": 444767, "icon": "inv_ability_slayerwarrior_slayersdominance", "index": 100}], "freeNode": true}, {"id": 94785, "name": "Thunder Blast", "type": "single", "posX": 14410, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94797], "prev": [94816], "entries": [{"id": 117382, "definitionId": 122394, "maxRanks": 1, "type": "passive", "name": "Thunder Blast", "spellId": 435607, "icon": "warrior_talent_icon_bloodandthunder", "index": 100}]}, {"id": 94817, "name": "Storm Bolts / Storm Shield", "type": "choice", "posX": 15010, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94792], "prev": [94800], "entries": [{"id": 117414, "definitionId": 122426, "maxRanks": 1, "type": "passive", "name": "Storm Bolts", "spellId": 436162, "icon": "warrior_talent_icon_stormbolt", "index": 100}, {"id": 118835, "definitionId": 123735, "maxRanks": 1, "type": "passive", "name": "Storm Shield", "spellId": 438597, "icon": "spell_winston_bubble", "index": 200}]}, {"id": 94798, "name": "Keep Your Feet on the Ground / Steadfast as the Peaks", "type": "choice", "posX": 15600, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94807], "prev": [94808], "entries": [{"id": 117395, "definitionId": 122407, "maxRanks": 1, "type": "passive", "name": "Keep Your Feet on the Ground", "spellId": 438590, "icon": "ability_thunderking_overcharge", "index": 100}, {"id": 118836, "definitionId": 123736, "maxRanks": 1, "type": "passive", "name": "Steadfast as the Peaks", "spellId": 434970, "icon": "ability_warrior_devastate", "index": 200}]}, {"id": 94788, "name": "Imminent Demise", "type": "single", "posX": 7250, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94813], "prev": [94814], "entries": [{"id": 117385, "definitionId": 122397, "maxRanks": 1, "type": "passive", "name": "Imminent Demise", "spellId": 444769, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 94810, "name": "Overwhelming Blades", "type": "single", "posX": 7850, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94786], "prev": [94814], "entries": [{"id": 117407, "definitionId": 122419, "maxRanks": 1, "type": "passive", "name": "Overwhelming Blades", "spellId": 444772, "icon": "inv_10_specialization_blacksmithing_blades_color1", "index": 100}]}, {"id": 94795, "name": "Relentless Pursuit / Vicious Agility", "type": "choice", "posX": 8450, "posY": 1850, "maxRanks": 1, "subTreeId": 60, "next": [94787], "prev": [94814], "entries": [{"id": 117392, "definitionId": 122404, "maxRanks": 1, "type": "passive", "name": "Relentless Pursuit", "spellId": 444776, "icon": "ability_rogue_sprint", "index": 100}, {"id": 123408, "definitionId": 128246, "maxRanks": 1, "type": "passive", "name": "Vicious Agility", "spellId": 444777, "icon": "ability_paladin_speedoflight", "index": 200}]}, {"id": 94792, "name": "Gathering Clouds / Thorim's Might", "type": "choice", "posX": 15000, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94817], "entries": [{"id": 117389, "definitionId": 122401, "maxRanks": 1, "type": "passive", "name": "Gathering Clouds", "spellId": 436201, "icon": "spell_nature_stormreach", "index": 100}, {"id": 118834, "definitionId": 123734, "maxRanks": 1, "type": "passive", "name": "Thorim's Might", "spellId": 436152, "icon": "inv_ability_mountainthanewarrior_thorimsmight", "index": 200}]}, {"id": 94807, "name": "Burst of Power", "type": "single", "posX": 15590, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94798], "entries": [{"id": 117404, "definitionId": 122416, "maxRanks": 1, "type": "passive", "name": "Burst of Power", "spellId": 437118, "icon": "shaman_pvp_thundercharge", "index": 100}]}, {"id": 94797, "name": "Flashing Skies / Snap Induction", "type": "choice", "posX": 14410, "posY": 2110, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94805], "prev": [94785], "entries": [{"id": 117394, "definitionId": 122406, "maxRanks": 1, "type": "passive", "name": "Flashing Skies", "spellId": 437079, "icon": "spell_lightning_lightningbolt01", "index": 100}, {"id": 118833, "definitionId": 123733, "maxRanks": 1, "type": "passive", "name": "Snap Induction", "spellId": 456270, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94813, "name": "Death Drive", "type": "single", "posX": 7250, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94784], "prev": [94788], "entries": [{"id": 117410, "definitionId": 122422, "maxRanks": 1, "type": "passive", "name": "Death Drive", "spellId": 444770, "icon": "ability_warrior_focusedrage", "index": 100}]}, {"id": 94786, "name": "Culling Cyclone / Brutal Finish", "type": "choice", "posX": 7850, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "requiresNode": 0, "next": [94809], "prev": [94810], "entries": [{"id": 117383, "definitionId": 122395, "maxRanks": 1, "type": "passive", "name": "Culling Cyclone", "spellId": 444778, "icon": "ability_warrior_bladestorm", "index": 100}, {"id": 123409, "definitionId": 128247, "maxRanks": 1, "type": "passive", "name": "Brutal Finish", "spellId": 446085, "icon": "ability_revendreth_warrior", "index": 200}]}, {"id": 94787, "name": "Fierce Followthrough / Opportunist", "type": "choice", "posX": 8450, "posY": 2450, "maxRanks": 1, "subTreeId": 60, "next": [94801], "prev": [94795], "entries": [{"id": 117384, "definitionId": 122396, "maxRanks": 1, "type": "passive", "name": "Fierce Followthrough", "spellId": 444773, "icon": "spell_deathknight_butcher2", "index": 100}, {"id": 123770, "definitionId": 128608, "maxRanks": 1, "type": "passive", "name": "Opportunist", "spellId": 444774, "icon": "ability_warrior_weaponmastery", "index": 200}]}, {"id": 94805, "name": "Avatar of the Storm", "type": "single", "posX": 15010, "posY": 2710, "maxRanks": 1, "subTreeId": 61, "requiresNode": 92640, "next": [], "prev": [94797, 94792, 94807], "entries": [{"id": 117402, "definitionId": 122414, "maxRanks": 1, "type": "passive", "name": "Avatar of the Storm", "spellId": 437134, "icon": "achievement_dungeon_blackrockcaverns_ascendantlordobsidius", "index": 100}]}, {"id": 94784, "name": "Show No Mercy", "type": "single", "posX": 7250, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94813], "entries": [{"id": 117381, "definitionId": 122393, "maxRanks": 1, "type": "passive", "name": "Show No Mercy", "spellId": 444771, "icon": "warrior_talent_icon_lambstotheslaughter", "index": 100}]}, {"id": 94809, "name": "Reap the Storm", "type": "single", "posX": 7850, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94786], "entries": [{"id": 117406, "definitionId": 122418, "maxRanks": 1, "type": "passive", "name": "Reap the Storm", "spellId": 444775, "icon": "ability_arakkoa_spinning_blade", "index": 100}]}, {"id": 94801, "name": "Slayer's Malice", "type": "single", "posX": 8450, "posY": 3050, "maxRanks": 1, "subTreeId": 60, "next": [94820], "prev": [94787], "entries": [{"id": 117398, "definitionId": 122410, "maxRanks": 1, "type": "passive", "name": "Slayer's Malice", "spellId": 444779, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 94820, "name": "Unrelenting Onslaught", "type": "single", "posX": 7850, "posY": 3650, "maxRanks": 1, "subTreeId": 60, "next": [], "prev": [94809, 94784, 94801], "entries": [{"id": 117417, "definitionId": 122429, "maxRanks": 1, "type": "passive", "name": "Unrelenting Onslaught", "spellId": 444780, "icon": "ability_warrior_commandingshout", "index": 100}]}], "subTreeNodes": [{"id": 99852, "name": "Mountain Thane / Slayer", "type": "subtree", "posX": 7800, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123392, "type": "subtree", "name": "Mountain Thane", "traitSubTreeId": 61, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-mountainthane", "nodes": [94803, 94816, 94800, 94808, 94785, 94817, 94798, 94792, 94807, 94797, 94805]}, {"id": 123389, "type": "subtree", "name": "Slayer", "traitSubTreeId": 60, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-slayer", "nodes": [94814, 94788, 94810, 94795, 94813, 94786, 94787, 94784, 94809, 94801, 94820]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trees/warrior_protection.json b/simc_support/game_data/data_files/trees/warrior_protection.json index 9a68373..2a616d2 100644 --- a/simc_support/game_data/data_files/trees/warrior_protection.json +++ b/simc_support/game_data/data_files/trees/warrior_protection.json @@ -1 +1 @@ -{"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Protection", "specId": 73, "classNodes": [{"id": 90261, "name": "Battle Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90345], "prev": [], "entries": [{"id": 112112, "definitionId": 117117, "maxRanks": 1, "type": "active", "name": "Battle Stance", "spellId": 386164, "icon": "ability_warrior_offensivestance", "index": 200}], "freeNode": true}, {"id": 90330, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 112187, "definitionId": 117192, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 200}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90261], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90345, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90261], "entries": [{"id": 112207, "definitionId": 117212, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 316733, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [90330], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [90330], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90370], "prev": [90345, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90370, 90355, 90353], "prev": [90345, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90370, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90326, 90346], "entries": [{"id": 112237, "definitionId": 117242, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 392790, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90369], "prev": [90370, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90369, 90356, 90378], "prev": [90370, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 95954, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90369, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [95954, 90382], "prev": [90331, 90385], "entries": [{"id": 112236, "definitionId": 117241, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 390642, "icon": "spell_shadow_unholystrength", "index": 100}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90259], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95954, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90369, 95956], "entries": [{"id": 118847, "definitionId": 123747, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 390675, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118846, "definitionId": 123746, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90324, 90339], "prev": [90378, 90369], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90339, 90259], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90259], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90351, 95954, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92639], "prev": [90382, 95954], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90324, "name": "One-Handed Weapon Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112181, "definitionId": 117186, "maxRanks": 1, "type": "passive", "name": "One-Handed Weapon Specialization", "spellId": 382895, "icon": "inv_sword_20", "index": 200}]}, {"id": 90339, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92639], "prev": [90382, 90354], "entries": [{"id": 112200, "definitionId": 117205, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 382940, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90259, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90348, 90368, 90354], "entries": [{"id": 112109, "definitionId": 117114, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 394855, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 92639, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90364], "prev": [90360, 90339], "entries": [{"id": 114769, "definitionId": 119776, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 401150, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90259], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "ability_bastion_warrior", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90364, "name": "Immovable Object / Unstoppable Force", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92639], "entries": [{"id": 112231, "definitionId": 117236, "maxRanks": 1, "type": "passive", "name": "Immovable Object", "spellId": 394307, "icon": "spell_frost_chillingarmor", "index": 0}, {"id": 112230, "definitionId": 117235, "maxRanks": 1, "type": "passive", "name": "Unstoppable Force", "spellId": 275336, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90295, "name": "Ignore Pain", "type": "single", "posX": 12000, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90298], "prev": [], "entries": [{"id": 112149, "definitionId": 117154, "maxRanks": 1, "type": "active", "name": "Ignore Pain", "spellId": 190456, "icon": "ability_warrior_renewedvigor", "index": 100}]}, {"id": 90298, "name": "Revenge", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90305, 90299, 90297], "prev": [90295], "entries": [{"id": 112152, "definitionId": 117157, "maxRanks": 1, "type": "active", "name": "Revenge", "spellId": 6572, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 90305, "name": "Demoralizing Shout", "type": "single", "posX": 10200, "posY": 2100, "maxRanks": 1, "next": [90304, 90303, 90306], "prev": [90298], "entries": [{"id": 112159, "definitionId": 117164, "maxRanks": 1, "type": "active", "name": "Demoralizing Shout", "spellId": 1160, "icon": "ability_warrior_warcry", "index": 100}]}, {"id": 90299, "name": "Devastator", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90303], "prev": [90298], "entries": [{"id": 112153, "definitionId": 117158, "maxRanks": 1, "type": "active", "name": "Devastator", "spellId": 236279, "icon": "inv_sword_11", "index": 0}]}, {"id": 90297, "name": "Last Stand", "type": "single", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [90303, 90296, 90452], "prev": [90298], "entries": [{"id": 112151, "definitionId": 117156, "maxRanks": 1, "type": "active", "name": "Last Stand", "spellId": 12975, "icon": "spell_holy_ashestoashes", "index": 100}]}, {"id": 90306, "name": "Fight Through the Flames", "type": "single", "posX": 9600, "posY": 2700, "maxRanks": 1, "next": [90309], "prev": [90305], "entries": [{"id": 112160, "definitionId": 117165, "maxRanks": 1, "type": "passive", "name": "Fight Through the Flames", "spellId": 452494, "icon": "ability_racial_foregedinflames", "index": 100}]}, {"id": 90304, "name": "Best Served Cold", "type": "single", "posX": 10800, "posY": 2700, "maxRanks": 1, "next": [90309], "prev": [90305], "entries": [{"id": 112158, "definitionId": 117163, "maxRanks": 1, "type": "passive", "name": "Best Served Cold", "spellId": 202560, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 90303, "name": "Strategist", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [90301, 90302, 90300], "prev": [90297, 90299, 90305], "entries": [{"id": 112157, "definitionId": 117162, "maxRanks": 1, "type": "passive", "name": "Strategist", "spellId": 384041, "icon": "inv_shield_05", "index": 100}]}, {"id": 90296, "name": "Brace For Impact", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [90451], "prev": [90297], "entries": [{"id": 112150, "definitionId": 117155, "maxRanks": 1, "type": "passive", "name": "Brace For Impact", "spellId": 386030, "icon": "ability_warrior_shieldguard", "index": 100}]}, {"id": 90452, "name": "Unnerving Focus", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [90451], "prev": [90297], "entries": [{"id": 112327, "definitionId": 117332, "maxRanks": 1, "type": "passive", "name": "Unnerving Focus", "spellId": 384042, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90309, "name": "Challenging Shout", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90308, 90312, 90320, 90307], "prev": [90306, 90304], "entries": [{"id": 112163, "definitionId": 117168, "maxRanks": 1, "type": "active", "name": "Challenging Shout", "spellId": 1161, "icon": "ability_bullrush", "index": 100}]}, {"id": 90301, "name": "Instigate", "type": "single", "posX": 11400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112155, "definitionId": 117160, "maxRanks": 1, "type": "passive", "name": "Instigate", "spellId": 394311, "icon": "ability_rogue_dismantle", "index": 0}]}, {"id": 90302, "name": "Rend", "type": "single", "posX": 12000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112156, "definitionId": 117161, "maxRanks": 1, "type": "active", "name": "Rend", "spellId": 394062, "icon": "ability_gouge", "index": 0}]}, {"id": 90300, "name": "Bloodsurge", "type": "single", "posX": 12600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112154, "definitionId": 117159, "maxRanks": 1, "type": "passive", "name": "Bloodsurge", "spellId": 384361, "icon": "ability_warrior_bloodsurge", "index": 0}]}, {"id": 90451, "name": "Fueled by Violence / Brutal Vitality", "type": "choice", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312, 90448, 90264, 90450], "prev": [90452, 90296], "entries": [{"id": 112326, "definitionId": 117331, "maxRanks": 1, "type": "passive", "name": "Fueled by Violence", "spellId": 383103, "icon": "ability_demonhunter_bloodlet", "index": 100}, {"id": 112325, "definitionId": 117330, "maxRanks": 1, "type": "passive", "name": "Brutal Vitality", "spellId": 384036, "icon": "ability_warrior_renewedvigor", "index": 200}]}, {"id": 90307, "name": "Disrupting Shout", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112161, "definitionId": 117166, "maxRanks": 1, "type": "active", "name": "Disrupting Shout", "spellId": 386071, "icon": "ability_bullrush", "index": 0}]}, {"id": 90320, "name": "Show of Force / Sudden Death", "type": "choice", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112177, "definitionId": 117182, "maxRanks": 1, "type": "passive", "name": "Show of Force", "spellId": 385843, "icon": "ability_rogue_reinforcedleather", "index": 0}, {"id": 112111, "definitionId": 117116, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 29725, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90308, "name": "Thunderlord", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112162, "definitionId": 117167, "maxRanks": 1, "type": "passive", "name": "Thunderlord", "spellId": 385840, "icon": "ability_vehicle_electrocharge", "index": 0}]}, {"id": 90312, "name": "Shield Wall", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90310, 90313, 90311], "prev": [90300, 90302, 90301, 90451, 90309], "entries": [{"id": 112167, "definitionId": 117172, "maxRanks": 1, "type": "active", "name": "Shield Wall", "spellId": 871, "icon": "ability_warrior_shieldwall", "index": 100}]}, {"id": 90264, "name": "Bolster", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90449], "prev": [90451], "entries": [{"id": 112115, "definitionId": 117120, "maxRanks": 1, "type": "passive", "name": "Bolster", "spellId": 280001, "icon": "shield_draenorcrafted_d_02_c_alliance", "index": 200}]}, {"id": 90450, "name": "Tough as Nails / Spell Block", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90449], "prev": [90451], "entries": [{"id": 112324, "definitionId": 117329, "maxRanks": 1, "type": "passive", "name": "Tough as Nails", "spellId": 385888, "icon": "inv_titanium_shield_spike", "index": 0}, {"id": 112110, "definitionId": 117115, "maxRanks": 1, "type": "active", "name": "Spell Block", "spellId": 392966, "icon": "ability_warrior_shieldbreak", "index": 100}]}, {"id": 90448, "name": "Bloodborne", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90449], "prev": [90451], "entries": [{"id": 112321, "definitionId": 117326, "maxRanks": 2, "type": "passive", "name": "Bloodborne", "spellId": 385704, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90319, "name": "Heavy Repercussions / Into the Fray", "type": "choice", "posX": 10200, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90318], "prev": [90307, 90308, 90320], "entries": [{"id": 112176, "definitionId": 117181, "maxRanks": 1, "type": "passive", "name": "Heavy Repercussions", "spellId": 203177, "icon": "inv_shield_32", "index": 0}, {"id": 112175, "definitionId": 117180, "maxRanks": 1, "type": "passive", "name": "Into the Fray", "spellId": 202603, "icon": "ability_warrior_bloodfrenzy", "index": 100}]}, {"id": 90310, "name": "Defender's Aegis / Impenetrable Wall", "type": "choice", "posX": 12600, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112165, "definitionId": 117170, "maxRanks": 1, "type": "passive", "name": "Defender's Aegis", "spellId": 397103, "icon": "ability_warrior_stalwartprotector", "index": 0}, {"id": 112164, "definitionId": 117169, "maxRanks": 1, "type": "passive", "name": "Impenetrable Wall", "spellId": 384072, "icon": "ability_warrior_shieldguard", "index": 100}]}, {"id": 90449, "name": "Punish / Juggernaut", "type": "choice", "posX": 13800, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90433], "prev": [90450, 90264, 90448], "entries": [{"id": 112323, "definitionId": 117328, "maxRanks": 1, "type": "passive", "name": "Punish", "spellId": 275334, "icon": "ability_deathknight_sanguinfortitude", "index": 0}, {"id": 112322, "definitionId": 117327, "maxRanks": 1, "type": "passive", "name": "Juggernaut", "spellId": 393967, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90313, "name": "Enduring Defenses / Massacre", "type": "choice", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112169, "definitionId": 117174, "maxRanks": 1, "type": "passive", "name": "Enduring Defenses", "spellId": 386027, "icon": "ability_defend", "index": 100}, {"id": 112168, "definitionId": 117173, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 281001, "icon": "inv_sword_48", "index": 200}]}, {"id": 90311, "name": "Anger Management", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112166, "definitionId": 117171, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 0}]}, {"id": 90318, "name": "Focused Vigor", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90317], "prev": [90319], "entries": [{"id": 112174, "definitionId": 117179, "maxRanks": 1, "type": "passive", "name": "Focused Vigor", "spellId": 384067, "icon": "spell_nature_strength", "index": 100}]}, {"id": 90315, "name": "Shield Specialization", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90317, 90314, 90434, 90265, 90432], "prev": [90310, 90313, 90311], "entries": [{"id": 112171, "definitionId": 117176, "maxRanks": 2, "type": "passive", "name": "Shield Specialization", "spellId": 386011, "icon": "inv_shield_76", "index": 0}]}, {"id": 90433, "name": "Enduring Alacrity", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90432], "prev": [90449], "entries": [{"id": 112305, "definitionId": 117310, "maxRanks": 1, "type": "passive", "name": "Enduring Alacrity", "spellId": 384063, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90317, "name": "Shield Charge", "type": "single", "posX": 10200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90316, 90262], "prev": [90315, 90318], "entries": [{"id": 112173, "definitionId": 117178, "maxRanks": 1, "type": "active", "name": "Shield Charge", "spellId": 385952, "icon": "ability_warrior_shieldcharge", "index": 100}]}, {"id": 90314, "name": "Booming Voice", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112170, "definitionId": 117175, "maxRanks": 1, "type": "passive", "name": "Booming Voice", "spellId": 202743, "icon": "ability_warrior_commandingshout", "index": 100}]}, {"id": 90434, "name": "Indomitable", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112306, "definitionId": 117311, "maxRanks": 1, "type": "passive", "name": "Indomitable", "spellId": 202095, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 90265, "name": "Violent Outburst", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112116, "definitionId": 117121, "maxRanks": 1, "type": "passive", "name": "Violent Outburst", "spellId": 386477, "icon": "ability_warrior_furiousresolve", "index": 100}]}, {"id": 90432, "name": "Ravager", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90260], "prev": [90315, 90433], "entries": [{"id": 112304, "definitionId": 117309, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 200}]}, {"id": 90262, "name": "Battering Ram", "type": "single", "posX": 9900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90317], "entries": [{"id": 112113, "definitionId": 117118, "maxRanks": 1, "type": "passive", "name": "Battering Ram", "spellId": 394312, "icon": "ability_warrior_bullrush", "index": 100}]}, {"id": 90316, "name": "Champion's Bulwark", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90317], "entries": [{"id": 112172, "definitionId": 117177, "maxRanks": 1, "type": "passive", "name": "Champion's Bulwark", "spellId": 386328, "icon": "ability_warrior_shieldmastery", "index": 100}]}, {"id": 90435, "name": "Battle-Scarred Veteran", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90265, 90434, 90314], "entries": [{"id": 112307, "definitionId": 117312, "maxRanks": 1, "type": "passive", "name": "Battle-Scarred Veteran", "spellId": 386394, "icon": "ability_warrior_endlessrage", "index": 100}]}, {"id": 90260, "name": "Dance of Death / Storm of Steel", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90432], "entries": [{"id": 112302, "definitionId": 117307, "maxRanks": 1, "type": "passive", "name": "Dance of Death", "spellId": 390713, "icon": "ability_butcher_whirl", "index": 100}, {"id": 126306, "definitionId": 131132, "maxRanks": 1, "type": "passive", "name": "Storm of Steel", "spellId": 382953, "icon": "ability_creature_cursed_04", "index": 200}]}], "heroNodes": [{"id": 94803, "name": "Lightning Strikes", "type": "single", "posX": 15000, "posY": 300, "maxRanks": 1, "entryNode": true, "subTreeId": 61, "next": [94808, 94816, 94800], "prev": [], "entries": [{"id": 117400, "definitionId": 122412, "maxRanks": 1, "type": "passive", "name": "Lightning Strikes", "spellId": 434969, "icon": "ability_vehicle_electrocharge", "index": 100}], "freeNode": true}, {"id": 94816, "name": "Crashing Thunder", "type": "single", "posX": 14390, "posY": 900, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94785], "prev": [94803], "entries": [{"id": 117413, "definitionId": 122425, "maxRanks": 1, "type": "passive", "name": "Crashing Thunder", "spellId": 436707, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 94800, "name": "Ground Current", "type": "single", "posX": 15000, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94817], "prev": [94803], "entries": [{"id": 117397, "definitionId": 122409, "maxRanks": 1, "type": "passive", "name": "Ground Current", "spellId": 436148, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 94808, "name": "Strength of the Mountain", "type": "single", "posX": 15600, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94798], "prev": [94803], "entries": [{"id": 117405, "definitionId": 122417, "maxRanks": 1, "type": "passive", "name": "Strength of the Mountain", "spellId": 437068, "icon": "ability_warrior_titansgrip", "index": 100}]}, {"id": 94785, "name": "Thunder Blast", "type": "single", "posX": 14410, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94797], "prev": [94816], "entries": [{"id": 117382, "definitionId": 122394, "maxRanks": 1, "type": "passive", "name": "Thunder Blast", "spellId": 435607, "icon": "warrior_talent_icon_bloodandthunder", "index": 100}]}, {"id": 94817, "name": "Storm Bolts / Storm Shield", "type": "choice", "posX": 15010, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94792], "prev": [94800], "entries": [{"id": 117414, "definitionId": 122426, "maxRanks": 1, "type": "passive", "name": "Storm Bolts", "spellId": 436162, "icon": "warrior_talent_icon_stormbolt", "index": 100}, {"id": 118835, "definitionId": 123735, "maxRanks": 1, "type": "passive", "name": "Storm Shield", "spellId": 438597, "icon": "spell_winston_bubble", "index": 200}]}, {"id": 94798, "name": "Keep Your Feet on the Ground / Steadfast as the Peaks", "type": "choice", "posX": 15600, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94807], "prev": [94808], "entries": [{"id": 117395, "definitionId": 122407, "maxRanks": 1, "type": "passive", "name": "Keep Your Feet on the Ground", "spellId": 438590, "icon": "ability_thunderking_overcharge", "index": 100}, {"id": 118836, "definitionId": 123736, "maxRanks": 1, "type": "passive", "name": "Steadfast as the Peaks", "spellId": 434970, "icon": "ability_warrior_devastate", "index": 200}]}, {"id": 94792, "name": "Gathering Clouds / Thorim's Might", "type": "choice", "posX": 15000, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94817], "entries": [{"id": 117389, "definitionId": 122401, "maxRanks": 1, "type": "passive", "name": "Gathering Clouds", "spellId": 436201, "icon": "spell_nature_stormreach", "index": 100}, {"id": 118834, "definitionId": 123734, "maxRanks": 1, "type": "passive", "name": "Thorim's Might", "spellId": 436152, "icon": "inv_ability_mountainthanewarrior_thorimsmight", "index": 200}]}, {"id": 94807, "name": "Burst of Power", "type": "single", "posX": 15590, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94798], "entries": [{"id": 117404, "definitionId": 122416, "maxRanks": 1, "type": "passive", "name": "Burst of Power", "spellId": 437118, "icon": "shaman_pvp_thundercharge", "index": 100}]}, {"id": 94797, "name": "Flashing Skies / Snap Induction", "type": "choice", "posX": 14410, "posY": 2110, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94805], "prev": [94785], "entries": [{"id": 117394, "definitionId": 122406, "maxRanks": 1, "type": "passive", "name": "Flashing Skies", "spellId": 437079, "icon": "spell_lightning_lightningbolt01", "index": 100}, {"id": 118833, "definitionId": 123733, "maxRanks": 1, "type": "passive", "name": "Snap Induction", "spellId": 456270, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94805, "name": "Avatar of the Storm", "type": "single", "posX": 15010, "posY": 2710, "maxRanks": 1, "subTreeId": 61, "requiresNode": 92640, "next": [], "prev": [94797, 94792, 94807], "entries": [{"id": 117402, "definitionId": 122414, "maxRanks": 1, "type": "passive", "name": "Avatar of the Storm", "spellId": 437134, "icon": "achievement_dungeon_blackrockcaverns_ascendantlordobsidius", "index": 100}]}, {"id": 94818, "name": "Demolish", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 62, "next": [94812, 94819, 94789], "prev": [], "entries": [{"id": 117415, "definitionId": 122427, "maxRanks": 1, "type": "active", "name": "Demolish", "spellId": 436358, "icon": "inv_ability_colossuswarrior_demolish", "index": 100}], "freeNode": true}, {"id": 94812, "name": "Martial Expert", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94799], "prev": [94818], "entries": [{"id": 117409, "definitionId": 122421, "maxRanks": 1, "type": "passive", "name": "Martial Expert", "spellId": 429638, "icon": "ability_warrior_stalwartprotector", "index": 100}]}, {"id": 94819, "name": "Colossal Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94811], "prev": [94818], "entries": [{"id": 117416, "definitionId": 122428, "maxRanks": 1, "type": "passive", "name": "Colossal Might", "spellId": 429634, "icon": "ability_warrior_strengthofarms", "index": 100}]}, {"id": 94789, "name": "Boneshaker / Earthquaker", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "requiresNode": 90375, "next": [94815], "prev": [94818], "entries": [{"id": 117386, "definitionId": 122398, "maxRanks": 1, "type": "passive", "name": "Boneshaker", "spellId": 429639, "icon": "ability_deathknight_brittlebones", "index": 100}, {"id": 119858, "definitionId": 124758, "maxRanks": 1, "type": "passive", "name": "Earthquaker", "spellId": 440992, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 94799, "name": "One Against Many / Arterial Bleed", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94796], "prev": [94812], "entries": [{"id": 117396, "definitionId": 122408, "maxRanks": 1, "type": "passive", "name": "One Against Many", "spellId": 429637, "icon": "ability_warrior_incite", "index": 100}, {"id": 119856, "definitionId": 124756, "maxRanks": 1, "type": "passive", "name": "Arterial Bleed", "spellId": 440995, "icon": "ability_warrior_deepcuts", "index": 200}]}, {"id": 94811, "name": "Tide of Battle", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94794], "prev": [94819], "entries": [{"id": 117408, "definitionId": 122420, "maxRanks": 1, "type": "passive", "name": "Tide of Battle", "spellId": 429641, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 94815, "name": "No Stranger to Pain / Veteran Vitality", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94806], "prev": [94789], "entries": [{"id": 117412, "definitionId": 122424, "maxRanks": 1, "type": "passive", "name": "No Stranger to Pain", "spellId": 429644, "icon": "ability_warrior_renewedvigor", "index": 100}, {"id": 119857, "definitionId": 124757, "maxRanks": 1, "type": "passive", "name": "Veteran Vitality", "spellId": 440993, "icon": "ability_hunter_harass", "index": 200}]}, {"id": 94796, "name": "Practiced Strikes", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94799], "entries": [{"id": 117393, "definitionId": 122405, "maxRanks": 1, "type": "passive", "name": "Practiced Strikes", "spellId": 429647, "icon": "spell_warrior_sharpenblade", "index": 100}]}, {"id": 94794, "name": "Precise Might", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94811], "entries": [{"id": 117391, "definitionId": 122403, "maxRanks": 1, "type": "passive", "name": "Precise Might", "spellId": 431548, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94806, "name": "Mountain of Muscle and Scars", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94815], "entries": [{"id": 117403, "definitionId": 122415, "maxRanks": 1, "type": "passive", "name": "Mountain of Muscle and Scars", "spellId": 429642, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 94793, "name": "Dominance of the Colossus", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 62, "next": [], "prev": [94794, 94796, 94806], "entries": [{"id": 117390, "definitionId": 122402, "maxRanks": 1, "type": "passive", "name": "Dominance of the Colossus", "spellId": 429636, "icon": "ability_warrior_titansgrip", "index": 100}]}], "subTreeNodes": [{"id": 99851, "name": "Colossus / Mountain Thane", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123391, "type": "subtree", "name": "Colossus", "traitSubTreeId": 62, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-colossus", "nodes": [94818, 94812, 94819, 94789, 94799, 94811, 94815, 94796, 94794, 94806, 94793]}, {"id": 123388, "type": "subtree", "name": "Mountain Thane", "traitSubTreeId": 61, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-mountainthane", "nodes": [94803, 94816, 94800, 94808, 94785, 94817, 94798, 94792, 94807, 94797, 94805]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]} \ No newline at end of file +{"traitTreeId": 850, "className": "Warrior", "classId": 1, "specName": "Protection", "specId": 73, "classNodes": [{"id": 90261, "name": "Battle Stance", "type": "single", "posX": 2400, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90344, 90345], "prev": [], "entries": [{"id": 112112, "definitionId": 117117, "maxRanks": 1, "type": "active", "name": "Battle Stance", "spellId": 386164, "icon": "ability_warrior_offensivestance", "index": 200}], "freeNode": true}, {"id": 90330, "name": "Defensive Stance", "type": "single", "posX": 4800, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90371, 90329], "prev": [], "entries": [{"id": 112187, "definitionId": 117192, "maxRanks": 1, "type": "active", "name": "Defensive Stance", "spellId": 386208, "icon": "ability_warrior_defensivestance", "index": 200}], "freeNode": true}, {"id": 90344, "name": "Fast Footwork", "type": "single", "posX": 1800, "posY": 1500, "maxRanks": 1, "next": [90326, 90384], "prev": [90261], "entries": [{"id": 112206, "definitionId": 117211, "maxRanks": 1, "type": "passive", "name": "Fast Footwork", "spellId": 382260, "icon": "ability_hunter_posthaste", "index": 100}]}, {"id": 90345, "name": "War Machine", "type": "single", "posX": 3000, "posY": 1500, "maxRanks": 1, "next": [90326, 90346], "prev": [90261], "entries": [{"id": 112207, "definitionId": 117212, "maxRanks": 1, "type": "passive", "name": "War Machine", "spellId": 316733, "icon": "ability_hunter_rapidkilling", "index": 0}]}, {"id": 90371, "name": "Leeching Strikes", "type": "single", "posX": 4200, "posY": 1500, "maxRanks": 1, "next": [90346, 90337], "prev": [90330], "entries": [{"id": 112238, "definitionId": 117243, "maxRanks": 1, "type": "passive", "name": "Leeching Strikes", "spellId": 382258, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90329, "name": "Intervene", "type": "single", "posX": 5400, "posY": 1500, "maxRanks": 1, "next": [90337, 90343], "prev": [90330], "entries": [{"id": 112186, "definitionId": 117191, "maxRanks": 1, "type": "active", "name": "Intervene", "spellId": 3411, "icon": "ability_warrior_victoryrush", "index": 100}]}, {"id": 90326, "name": "Impending Victory", "type": "single", "posX": 2400, "posY": 2100, "maxRanks": 1, "next": [90384, 90332, 90370], "prev": [90345, 90344], "entries": [{"id": 112183, "definitionId": 117188, "maxRanks": 1, "type": "active", "name": "Impending Victory", "spellId": 202168, "icon": "spell_impending_victory", "index": 100}]}, {"id": 90346, "name": "Heroic Leap", "type": "single", "posX": 3600, "posY": 2100, "maxRanks": 1, "next": [90370, 90355, 90353], "prev": [90345, 90371], "entries": [{"id": 112208, "definitionId": 117213, "maxRanks": 1, "type": "active", "name": "Heroic Leap", "spellId": 6544, "icon": "ability_heroicleap", "index": 100}]}, {"id": 90337, "name": "Storm Bolt", "type": "single", "posX": 4800, "posY": 2100, "maxRanks": 1, "next": [90353, 90343], "prev": [90371, 90329], "entries": [{"id": 112198, "definitionId": 117203, "maxRanks": 1, "type": "active", "name": "Storm Bolt", "spellId": 107570, "icon": "warrior_talent_icon_stormbolt", "index": 0}]}, {"id": 90384, "name": "Intimidating Shout", "type": "single", "posX": 1800, "posY": 2700, "maxRanks": 1, "next": [90383, 90385, 95956], "prev": [90326, 90344], "entries": [{"id": 112252, "definitionId": 117257, "maxRanks": 1, "type": "active", "name": "Intimidating Shout", "spellId": 5246, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90332, "name": "Second Wind", "type": "single", "posX": 2400, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90326], "entries": [{"id": 112190, "definitionId": 117195, "maxRanks": 1, "type": "passive", "name": "Second Wind", "spellId": 29838, "icon": "ability_hunter_harass", "index": 100}]}, {"id": 90370, "name": "Frothing Berserker", "type": "single", "posX": 3000, "posY": 2700, "maxRanks": 1, "next": [90385, 90331], "prev": [90326, 90346], "entries": [{"id": 112237, "definitionId": 117242, "maxRanks": 1, "type": "passive", "name": "Frothing Berserker", "spellId": 392790, "icon": "warrior_talent_icon_furyintheblood", "index": 100}]}, {"id": 90355, "name": "Bounding Stride", "type": "single", "posX": 3600, "posY": 2700, "maxRanks": 1, "next": [], "prev": [90346], "entries": [{"id": 112219, "definitionId": 117224, "maxRanks": 1, "type": "passive", "name": "Bounding Stride", "spellId": 202163, "icon": "ability_heroicleap", "index": 0}]}, {"id": 90353, "name": "Pain and Gain", "type": "single", "posX": 4200, "posY": 2700, "maxRanks": 1, "next": [90331, 90375], "prev": [90337, 90346], "entries": [{"id": 112217, "definitionId": 117222, "maxRanks": 1, "type": "passive", "name": "Pain and Gain", "spellId": 382549, "icon": "spell_holy_painsupression", "index": 0}]}, {"id": 90343, "name": "Thunder Clap", "type": "single", "posX": 5400, "posY": 2700, "maxRanks": 1, "next": [90375, 95959, 90368], "prev": [90329, 90337], "entries": [{"id": 112205, "definitionId": 117210, "maxRanks": 1, "type": "active", "name": "Thunder Clap", "spellId": 6343, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 90383, "name": "Cacophonous Roar / Menace", "type": "choice", "posX": 1200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956], "prev": [90384], "entries": [{"id": 112251, "definitionId": 117256, "maxRanks": 1, "type": "passive", "name": "Cacophonous Roar", "spellId": 382954, "icon": "ability_fomor_boss_shout", "index": 100}, {"id": 112250, "definitionId": 117255, "maxRanks": 1, "type": "passive", "name": "Menace", "spellId": 275338, "icon": "ability_golemthunderclap", "index": 200}]}, {"id": 90385, "name": "Spell Reflection", "type": "single", "posX": 2400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [95956, 90369], "prev": [90370, 90384], "entries": [{"id": 112253, "definitionId": 117258, "maxRanks": 1, "type": "active", "name": "Spell Reflection", "spellId": 23920, "icon": "ability_warrior_shieldreflection", "index": 100}]}, {"id": 90331, "name": "Rallying Cry", "type": "single", "posX": 3600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90369, 90356, 90378], "prev": [90370, 90353], "entries": [{"id": 112188, "definitionId": 117193, "maxRanks": 1, "type": "active", "name": "Rallying Cry", "spellId": 97462, "icon": "ability_warrior_rallyingcry", "index": 100}]}, {"id": 90375, "name": "Shockwave", "type": "single", "posX": 4800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90378, 90374, 90368], "prev": [90343, 90353], "entries": [{"id": 112242, "definitionId": 117247, "maxRanks": 1, "type": "active", "name": "Shockwave", "spellId": 46968, "icon": "ability_warrior_shockwave", "index": 100}]}, {"id": 95959, "name": "Crackling Thunder", "type": "single", "posX": 6000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90368], "prev": [90343], "entries": [{"id": 118853, "definitionId": 123753, "maxRanks": 1, "type": "passive", "name": "Crackling Thunder", "spellId": 203201, "icon": "ability_thunderking_overcharge", "index": 100}]}, {"id": 95956, "name": "Honed Reflexes", "type": "single", "posX": 1800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90351, 95954, 90381], "prev": [90384, 90385, 90383], "entries": [{"id": 118850, "definitionId": 123750, "maxRanks": 1, "type": "passive", "name": "Honed Reflexes", "spellId": 391271, "icon": "spell_holy_borrowedtime", "index": 100}]}, {"id": 90369, "name": "Crushing Force", "type": "single", "posX": 3000, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [95954, 90382], "prev": [90331, 90385], "entries": [{"id": 112236, "definitionId": 117241, "maxRanks": 2, "type": "passive", "name": "Crushing Force", "spellId": 390642, "icon": "spell_shadow_unholystrength", "index": 100}]}, {"id": 90356, "name": "Bitter Immunity", "type": "single", "posX": 3600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90331], "entries": [{"id": 112220, "definitionId": 117225, "maxRanks": 1, "type": "active", "name": "Bitter Immunity", "spellId": 383762, "icon": "spell_nature_shamanrage", "index": 0}]}, {"id": 90378, "name": "Overwhelming Rage", "type": "single", "posX": 4200, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90354, 90382], "prev": [90375, 90331], "entries": [{"id": 112245, "definitionId": 117250, "maxRanks": 2, "type": "passive", "name": "Overwhelming Rage", "spellId": 382767, "icon": "racial_orc_berserkerstrength", "index": 100}]}, {"id": 90374, "name": "Rumbling Earth", "type": "single", "posX": 4800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [], "prev": [90375], "entries": [{"id": 112241, "definitionId": 117246, "maxRanks": 1, "type": "passive", "name": "Rumbling Earth", "spellId": 275339, "icon": "spell_shaman_earthquake", "index": 0}]}, {"id": 90368, "name": "Reinforced Plates", "type": "single", "posX": 5400, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90354, 90348, 90259], "prev": [90343, 90375, 95959], "entries": [{"id": 112235, "definitionId": 117240, "maxRanks": 1, "type": "passive", "name": "Reinforced Plates", "spellId": 382939, "icon": "inv_chest_plate04", "index": 100}]}, {"id": 90351, "name": "Wrecking Throw / Shattering Throw", "type": "choice", "posX": 1200, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381], "prev": [95956], "entries": [{"id": 112215, "definitionId": 117220, "maxRanks": 1, "type": "active", "name": "Wrecking Throw", "spellId": 384110, "icon": "warrior_talent_icon_mastercleaver", "index": 0}, {"id": 112214, "definitionId": 117219, "maxRanks": 1, "type": "active", "name": "Shattering Throw", "spellId": 64382, "icon": "ability_warrior_shatteringthrow", "index": 100}]}, {"id": 95954, "name": "Barbaric Training / Sidearm", "type": "choice", "posX": 2400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90381, 90360], "prev": [90369, 95956], "entries": [{"id": 118847, "definitionId": 123747, "maxRanks": 1, "type": "passive", "name": "Barbaric Training", "spellId": 390675, "icon": "ability_garrosh_whirling_corruption", "index": 0}, {"id": 118846, "definitionId": 123746, "maxRanks": 1, "type": "passive", "name": "Sidearm", "spellId": 384404, "icon": "inv_throwingaxe_06", "index": 100}]}, {"id": 90382, "name": "Double Time", "type": "single", "posX": 3600, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90360, 90324, 90339], "prev": [90378, 90369], "entries": [{"id": 112249, "definitionId": 117254, "maxRanks": 1, "type": "passive", "name": "Double Time", "spellId": 103827, "icon": "inv_misc_horn_04", "index": 100}]}, {"id": 90354, "name": "Seismic Reverberation / Concussive Blows", "type": "choice", "posX": 4800, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90339, 90259], "prev": [90378, 90368], "entries": [{"id": 112218, "definitionId": 117223, "maxRanks": 1, "type": "passive", "name": "Seismic Reverberation", "spellId": 382956, "icon": "ability_warrior_bloodnova", "index": 0}, {"id": 118843, "definitionId": 123743, "maxRanks": 1, "type": "passive", "name": "Concussive Blows", "spellId": 383115, "icon": "ability_warrior_intervene", "index": 100}]}, {"id": 90348, "name": "Berserker Shout / Piercing Howl", "type": "choice", "posX": 6000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90259], "prev": [90368], "entries": [{"id": 112211, "definitionId": 117216, "maxRanks": 1, "type": "active", "name": "Berserker Shout", "spellId": 384100, "icon": "spell_nature_ancestralguardian", "index": 100}, {"id": 112210, "definitionId": 117215, "maxRanks": 1, "type": "active", "name": "Piercing Howl", "spellId": 12323, "icon": "spell_shadow_deathscream", "index": 200}]}, {"id": 90381, "name": "Cruel Strikes", "type": "single", "posX": 1800, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90359], "prev": [90351, 95954, 95956], "entries": [{"id": 112248, "definitionId": 117253, "maxRanks": 2, "type": "passive", "name": "Cruel Strikes", "spellId": 392777, "icon": "ability_criticalstrike", "index": 100}]}, {"id": 90360, "name": "Wild Strikes", "type": "single", "posX": 3000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92639], "prev": [90382, 95954], "entries": [{"id": 112224, "definitionId": 117229, "maxRanks": 2, "type": "passive", "name": "Wild Strikes", "spellId": 382946, "icon": "ability_rogue_sprint", "index": 100}]}, {"id": 90324, "name": "One-Handed Weapon Specialization", "type": "single", "posX": 3600, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90382], "entries": [{"id": 112181, "definitionId": 117186, "maxRanks": 1, "type": "passive", "name": "One-Handed Weapon Specialization", "spellId": 382895, "icon": "inv_sword_20", "index": 200}]}, {"id": 90339, "name": "Endurance Training", "type": "single", "posX": 4200, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [92639], "prev": [90382, 90354], "entries": [{"id": 112200, "definitionId": 117205, "maxRanks": 2, "type": "passive", "name": "Endurance Training", "spellId": 382940, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90259, "name": "Armored to the Teeth", "type": "single", "posX": 5400, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90380], "prev": [90348, 90368, 90354], "entries": [{"id": 112109, "definitionId": 117114, "maxRanks": 2, "type": "passive", "name": "Armored to the Teeth", "spellId": 394855, "icon": "inv_shoulder_22", "index": 100}]}, {"id": 90359, "name": "Thunderous Roar", "type": "single", "posX": 1800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90357, 90358], "prev": [90381], "entries": [{"id": 112223, "definitionId": 117228, "maxRanks": 1, "type": "active", "name": "Thunderous Roar", "spellId": 384318, "icon": "ability_warrior_dragonroar", "index": 0}]}, {"id": 92639, "name": "Avatar", "type": "single", "posX": 3600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90364], "prev": [90360, 90339], "entries": [{"id": 114769, "definitionId": 119776, "maxRanks": 1, "type": "active", "name": "Avatar", "spellId": 401150, "icon": "warrior_talent_icon_avatar", "index": 100}]}, {"id": 90380, "name": "Champion's Spear", "type": "single", "posX": 5400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90379, 90323], "prev": [90259], "entries": [{"id": 112247, "definitionId": 117252, "maxRanks": 1, "type": "active", "name": "Champion's Spear", "spellId": 376079, "icon": "inv_ability_warrior_championsspear", "index": 100}]}, {"id": 90357, "name": "Uproar", "type": "single", "posX": 1500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112221, "definitionId": 117226, "maxRanks": 1, "type": "passive", "name": "Uproar", "spellId": 391572, "icon": "inv_misc_head_dragon_01", "index": 0}]}, {"id": 90358, "name": "Thunderous Words", "type": "single", "posX": 2100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90359], "entries": [{"id": 112222, "definitionId": 117227, "maxRanks": 1, "type": "passive", "name": "Thunderous Words", "spellId": 384969, "icon": "spell_nature_earthquake", "index": 100}]}, {"id": 90364, "name": "Immovable Object / Unstoppable Force", "type": "choice", "posX": 3600, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [92639], "entries": [{"id": 112231, "definitionId": 117236, "maxRanks": 1, "type": "passive", "name": "Immovable Object", "spellId": 394307, "icon": "spell_frost_chillingarmor", "index": 0}, {"id": 112230, "definitionId": 117235, "maxRanks": 1, "type": "passive", "name": "Unstoppable Force", "spellId": 275336, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 90379, "name": "Piercing Challenge", "type": "single", "posX": 5100, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112246, "definitionId": 117251, "maxRanks": 1, "type": "passive", "name": "Piercing Challenge", "spellId": 382948, "icon": "ability_revendreth_warrior", "index": 0}]}, {"id": 90323, "name": "Champion's Might", "type": "single", "posX": 5700, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90380], "entries": [{"id": 112180, "definitionId": 117185, "maxRanks": 1, "type": "passive", "name": "Champion's Might", "spellId": 386284, "icon": "ability_bastion_warrior", "index": 0}]}], "specNodes": [{"id": 90295, "name": "Ignore Pain", "type": "single", "posX": 12000, "posY": 900, "maxRanks": 1, "entryNode": true, "next": [90298], "prev": [], "entries": [{"id": 112149, "definitionId": 117154, "maxRanks": 1, "type": "active", "name": "Ignore Pain", "spellId": 190456, "icon": "ability_warrior_renewedvigor", "index": 100}]}, {"id": 90298, "name": "Revenge", "type": "single", "posX": 12000, "posY": 1500, "maxRanks": 1, "next": [90305, 90299, 90297], "prev": [90295], "entries": [{"id": 112152, "definitionId": 117157, "maxRanks": 1, "type": "active", "name": "Revenge", "spellId": 6572, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 90305, "name": "Demoralizing Shout", "type": "single", "posX": 10200, "posY": 2100, "maxRanks": 1, "next": [90304, 90303, 90306], "prev": [90298], "entries": [{"id": 112159, "definitionId": 117164, "maxRanks": 1, "type": "active", "name": "Demoralizing Shout", "spellId": 1160, "icon": "ability_warrior_warcry", "index": 100}]}, {"id": 90299, "name": "Devastator", "type": "single", "posX": 12000, "posY": 2100, "maxRanks": 1, "next": [90303], "prev": [90298], "entries": [{"id": 112153, "definitionId": 117158, "maxRanks": 1, "type": "active", "name": "Devastator", "spellId": 236279, "icon": "inv_sword_11", "index": 0}]}, {"id": 90297, "name": "Last Stand", "type": "single", "posX": 13800, "posY": 2100, "maxRanks": 1, "next": [90303, 90296, 90452], "prev": [90298], "entries": [{"id": 112151, "definitionId": 117156, "maxRanks": 1, "type": "active", "name": "Last Stand", "spellId": 12975, "icon": "spell_holy_ashestoashes", "index": 100}]}, {"id": 90306, "name": "Fight Through the Flames", "type": "single", "posX": 9600, "posY": 2700, "maxRanks": 1, "next": [90309], "prev": [90305], "entries": [{"id": 112160, "definitionId": 117165, "maxRanks": 1, "type": "passive", "name": "Fight Through the Flames", "spellId": 452494, "icon": "ability_racial_foregedinflames", "index": 100}]}, {"id": 90304, "name": "Best Served Cold", "type": "single", "posX": 10800, "posY": 2700, "maxRanks": 1, "next": [90309], "prev": [90305], "entries": [{"id": 112158, "definitionId": 117163, "maxRanks": 1, "type": "passive", "name": "Best Served Cold", "spellId": 202560, "icon": "ability_warrior_revenge", "index": 100}]}, {"id": 90303, "name": "Strategist", "type": "single", "posX": 12000, "posY": 2700, "maxRanks": 1, "next": [90301, 90302, 90300], "prev": [90297, 90299, 90305], "entries": [{"id": 112157, "definitionId": 117162, "maxRanks": 1, "type": "passive", "name": "Strategist", "spellId": 384041, "icon": "inv_shield_05", "index": 100}]}, {"id": 90296, "name": "Brace For Impact", "type": "single", "posX": 13200, "posY": 2700, "maxRanks": 1, "next": [90451], "prev": [90297], "entries": [{"id": 112150, "definitionId": 117155, "maxRanks": 1, "type": "passive", "name": "Brace For Impact", "spellId": 386030, "icon": "ability_warrior_shieldguard", "index": 100}]}, {"id": 90452, "name": "Unnerving Focus", "type": "single", "posX": 14400, "posY": 2700, "maxRanks": 1, "next": [90451], "prev": [90297], "entries": [{"id": 112327, "definitionId": 117332, "maxRanks": 1, "type": "passive", "name": "Unnerving Focus", "spellId": 384042, "icon": "rogue_shadowfocus", "index": 100}]}, {"id": 90309, "name": "Challenging Shout", "type": "single", "posX": 10200, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90308, 90312, 90320, 90307], "prev": [90306, 90304], "entries": [{"id": 112163, "definitionId": 117168, "maxRanks": 1, "type": "active", "name": "Challenging Shout", "spellId": 1161, "icon": "ability_bullrush", "index": 100}]}, {"id": 90301, "name": "Instigate", "type": "single", "posX": 11400, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112155, "definitionId": 117160, "maxRanks": 1, "type": "passive", "name": "Instigate", "spellId": 394311, "icon": "ability_rogue_dismantle", "index": 0}]}, {"id": 90302, "name": "Rend", "type": "single", "posX": 12000, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112156, "definitionId": 117161, "maxRanks": 1, "type": "active", "name": "Rend", "spellId": 394062, "icon": "ability_gouge", "index": 0}]}, {"id": 90300, "name": "Bloodsurge", "type": "single", "posX": 12600, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312], "prev": [90303], "entries": [{"id": 112154, "definitionId": 117159, "maxRanks": 1, "type": "passive", "name": "Bloodsurge", "spellId": 384361, "icon": "ability_warrior_bloodsurge", "index": 0}]}, {"id": 90451, "name": "Fueled by Violence / Brutal Vitality", "type": "choice", "posX": 13800, "posY": 3300, "reqPoints": 8, "maxRanks": 1, "next": [90312, 90448, 90264, 90450], "prev": [90452, 90296], "entries": [{"id": 112326, "definitionId": 117331, "maxRanks": 1, "type": "passive", "name": "Fueled by Violence", "spellId": 383103, "icon": "ability_demonhunter_bloodlet", "index": 100}, {"id": 112325, "definitionId": 117330, "maxRanks": 1, "type": "passive", "name": "Brutal Vitality", "spellId": 384036, "icon": "ability_warrior_renewedvigor", "index": 200}]}, {"id": 90307, "name": "Disrupting Shout", "type": "single", "posX": 9600, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112161, "definitionId": 117166, "maxRanks": 1, "type": "active", "name": "Disrupting Shout", "spellId": 386071, "icon": "ability_bullrush", "index": 0}]}, {"id": 90320, "name": "Show of Force / Sudden Death", "type": "choice", "posX": 10200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112177, "definitionId": 117182, "maxRanks": 1, "type": "passive", "name": "Show of Force", "spellId": 385843, "icon": "ability_rogue_reinforcedleather", "index": 0}, {"id": 112111, "definitionId": 117116, "maxRanks": 1, "type": "passive", "name": "Sudden Death", "spellId": 29725, "icon": "ability_warrior_improveddisciplines", "index": 100}]}, {"id": 90308, "name": "Thunderlord", "type": "single", "posX": 10800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90319], "prev": [90309], "entries": [{"id": 112162, "definitionId": 117167, "maxRanks": 1, "type": "passive", "name": "Thunderlord", "spellId": 385840, "icon": "ability_vehicle_electrocharge", "index": 0}]}, {"id": 90312, "name": "Shield Wall", "type": "single", "posX": 12000, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90310, 90313, 90311], "prev": [90300, 90302, 90301, 90451, 90309], "entries": [{"id": 112167, "definitionId": 117172, "maxRanks": 1, "type": "active", "name": "Shield Wall", "spellId": 871, "icon": "ability_warrior_shieldwall", "index": 100}]}, {"id": 90264, "name": "Bolster", "type": "single", "posX": 13200, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90449], "prev": [90451], "entries": [{"id": 112115, "definitionId": 117120, "maxRanks": 1, "type": "passive", "name": "Bolster", "spellId": 280001, "icon": "shield_draenorcrafted_d_02_c_alliance", "index": 200}]}, {"id": 90450, "name": "Tough as Nails / Spell Block", "type": "choice", "posX": 13800, "posY": 3900, "reqPoints": 8, "maxRanks": 1, "next": [90449], "prev": [90451], "entries": [{"id": 112324, "definitionId": 117329, "maxRanks": 1, "type": "passive", "name": "Tough as Nails", "spellId": 385888, "icon": "inv_titanium_shield_spike", "index": 0}, {"id": 112110, "definitionId": 117115, "maxRanks": 1, "type": "active", "name": "Spell Block", "spellId": 392966, "icon": "ability_warrior_shieldbreak", "index": 100}]}, {"id": 90448, "name": "Bloodborne", "type": "single", "posX": 14400, "posY": 3900, "reqPoints": 8, "maxRanks": 2, "next": [90449], "prev": [90451], "entries": [{"id": 112321, "definitionId": 117326, "maxRanks": 2, "type": "passive", "name": "Bloodborne", "spellId": 385704, "icon": "inv_artifact_bloodoftheassassinated", "index": 100}]}, {"id": 90319, "name": "Heavy Repercussions / Into the Fray", "type": "choice", "posX": 10200, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90318], "prev": [90307, 90308, 90320], "entries": [{"id": 112176, "definitionId": 117181, "maxRanks": 1, "type": "passive", "name": "Heavy Repercussions", "spellId": 203177, "icon": "inv_shield_32", "index": 0}, {"id": 112175, "definitionId": 117180, "maxRanks": 1, "type": "passive", "name": "Into the Fray", "spellId": 202603, "icon": "ability_warrior_bloodfrenzy", "index": 100}]}, {"id": 90310, "name": "Defender's Aegis / Impenetrable Wall", "type": "choice", "posX": 12600, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112165, "definitionId": 117170, "maxRanks": 1, "type": "passive", "name": "Defender's Aegis", "spellId": 397103, "icon": "ability_warrior_stalwartprotector", "index": 0}, {"id": 112164, "definitionId": 117169, "maxRanks": 1, "type": "passive", "name": "Impenetrable Wall", "spellId": 384072, "icon": "ability_warrior_shieldguard", "index": 100}]}, {"id": 90449, "name": "Punish / Juggernaut", "type": "choice", "posX": 13800, "posY": 4490, "reqPoints": 8, "maxRanks": 1, "next": [90433], "prev": [90450, 90264, 90448], "entries": [{"id": 112323, "definitionId": 117328, "maxRanks": 1, "type": "passive", "name": "Punish", "spellId": 275334, "icon": "ability_deathknight_sanguinfortitude", "index": 0}, {"id": 112322, "definitionId": 117327, "maxRanks": 1, "type": "passive", "name": "Juggernaut", "spellId": 393967, "icon": "warrior_talent_icon_skirmisher", "index": 100}]}, {"id": 90313, "name": "Enduring Defenses / Massacre", "type": "choice", "posX": 11400, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112169, "definitionId": 117174, "maxRanks": 1, "type": "passive", "name": "Enduring Defenses", "spellId": 386027, "icon": "ability_defend", "index": 100}, {"id": 112168, "definitionId": 117173, "maxRanks": 1, "type": "passive", "name": "Massacre", "spellId": 281001, "icon": "inv_sword_48", "index": 200}]}, {"id": 90311, "name": "Anger Management", "type": "single", "posX": 12000, "posY": 4500, "reqPoints": 8, "maxRanks": 1, "next": [90315], "prev": [90312], "entries": [{"id": 112166, "definitionId": 117171, "maxRanks": 1, "type": "passive", "name": "Anger Management", "spellId": 152278, "icon": "warrior_talent_icon_angermanagement", "index": 0}]}, {"id": 90318, "name": "Focused Vigor", "type": "single", "posX": 10200, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90317], "prev": [90319], "entries": [{"id": 112174, "definitionId": 117179, "maxRanks": 1, "type": "passive", "name": "Focused Vigor", "spellId": 384067, "icon": "spell_nature_strength", "index": 100}]}, {"id": 90315, "name": "Shield Specialization", "type": "single", "posX": 12000, "posY": 5100, "reqPoints": 20, "maxRanks": 2, "next": [90317, 90314, 90434, 90265, 90432], "prev": [90310, 90313, 90311], "entries": [{"id": 112171, "definitionId": 117176, "maxRanks": 2, "type": "passive", "name": "Shield Specialization", "spellId": 386011, "icon": "inv_shield_76", "index": 0}]}, {"id": 90433, "name": "Enduring Alacrity", "type": "single", "posX": 13800, "posY": 5100, "reqPoints": 20, "maxRanks": 1, "next": [90432], "prev": [90449], "entries": [{"id": 112305, "definitionId": 117310, "maxRanks": 1, "type": "passive", "name": "Enduring Alacrity", "spellId": 384063, "icon": "spell_nature_unyeildingstamina", "index": 100}]}, {"id": 90317, "name": "Shield Charge", "type": "single", "posX": 10200, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90316, 90262], "prev": [90315, 90318], "entries": [{"id": 112173, "definitionId": 117178, "maxRanks": 1, "type": "active", "name": "Shield Charge", "spellId": 385952, "icon": "ability_warrior_shieldcharge", "index": 100}]}, {"id": 90314, "name": "Booming Voice", "type": "single", "posX": 11400, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112170, "definitionId": 117175, "maxRanks": 1, "type": "passive", "name": "Booming Voice", "spellId": 202743, "icon": "ability_warrior_commandingshout", "index": 100}]}, {"id": 90434, "name": "Indomitable", "type": "single", "posX": 12000, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112306, "definitionId": 117311, "maxRanks": 1, "type": "passive", "name": "Indomitable", "spellId": 202095, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 90265, "name": "Violent Outburst", "type": "single", "posX": 12600, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90435], "prev": [90315], "entries": [{"id": 112116, "definitionId": 117121, "maxRanks": 1, "type": "passive", "name": "Violent Outburst", "spellId": 386477, "icon": "ability_warrior_furiousresolve", "index": 100}]}, {"id": 90432, "name": "Ravager", "type": "single", "posX": 13800, "posY": 5700, "reqPoints": 20, "maxRanks": 1, "next": [90260], "prev": [90315, 90433], "entries": [{"id": 112304, "definitionId": 117309, "maxRanks": 1, "type": "active", "name": "Ravager", "spellId": 228920, "icon": "warrior_talent_icon_ravager", "index": 200}]}, {"id": 90262, "name": "Battering Ram", "type": "single", "posX": 9900, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90317], "entries": [{"id": 112113, "definitionId": 117118, "maxRanks": 1, "type": "passive", "name": "Battering Ram", "spellId": 394312, "icon": "ability_warrior_bullrush", "index": 100}]}, {"id": 90316, "name": "Champion's Bulwark", "type": "single", "posX": 10500, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90317], "entries": [{"id": 112172, "definitionId": 117177, "maxRanks": 1, "type": "passive", "name": "Champion's Bulwark", "spellId": 386328, "icon": "ability_warrior_shieldmastery", "index": 100}]}, {"id": 90435, "name": "Battle-Scarred Veteran", "type": "single", "posX": 12000, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90265, 90434, 90314], "entries": [{"id": 112307, "definitionId": 117312, "maxRanks": 1, "type": "passive", "name": "Battle-Scarred Veteran", "spellId": 386394, "icon": "ability_warrior_endlessrage", "index": 100}]}, {"id": 90260, "name": "Dance of Death / Storm of Steel", "type": "choice", "posX": 13800, "posY": 6300, "reqPoints": 20, "maxRanks": 1, "next": [], "prev": [90432], "entries": [{"id": 112302, "definitionId": 117307, "maxRanks": 1, "type": "passive", "name": "Dance of Death", "spellId": 390713, "icon": "ability_butcher_whirl", "index": 100}, {"id": 126306, "definitionId": 131132, "maxRanks": 1, "type": "passive", "name": "Storm of Steel", "spellId": 382953, "icon": "ability_creature_cursed_04", "index": 200}]}], "heroNodes": [{"id": 94803, "name": "Lightning Strikes", "type": "single", "posX": 15000, "posY": 300, "maxRanks": 1, "entryNode": true, "subTreeId": 61, "next": [94808, 94816, 94800], "prev": [], "entries": [{"id": 117400, "definitionId": 122412, "maxRanks": 1, "type": "passive", "name": "Lightning Strikes", "spellId": 434969, "icon": "ability_vehicle_electrocharge", "index": 100}], "freeNode": true}, {"id": 94816, "name": "Crashing Thunder", "type": "single", "posX": 14390, "posY": 900, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94785], "prev": [94803], "entries": [{"id": 117413, "definitionId": 122425, "maxRanks": 1, "type": "passive", "name": "Crashing Thunder", "spellId": 436707, "icon": "spell_nature_thunderclap", "index": 100}]}, {"id": 94800, "name": "Ground Current", "type": "single", "posX": 15000, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94817], "prev": [94803], "entries": [{"id": 117397, "definitionId": 122409, "maxRanks": 1, "type": "passive", "name": "Ground Current", "spellId": 436148, "icon": "warrior_talent_icon_thunderstruck", "index": 100}]}, {"id": 94808, "name": "Strength of the Mountain", "type": "single", "posX": 15600, "posY": 900, "maxRanks": 1, "subTreeId": 61, "next": [94798], "prev": [94803], "entries": [{"id": 117405, "definitionId": 122417, "maxRanks": 1, "type": "passive", "name": "Strength of the Mountain", "spellId": 437068, "icon": "ability_warrior_titansgrip", "index": 100}]}, {"id": 94785, "name": "Thunder Blast", "type": "single", "posX": 14410, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94797], "prev": [94816], "entries": [{"id": 117382, "definitionId": 122394, "maxRanks": 1, "type": "passive", "name": "Thunder Blast", "spellId": 435607, "icon": "warrior_talent_icon_bloodandthunder", "index": 100}]}, {"id": 94817, "name": "Storm Bolts / Storm Shield", "type": "choice", "posX": 15010, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94792], "prev": [94800], "entries": [{"id": 117414, "definitionId": 122426, "maxRanks": 1, "type": "passive", "name": "Storm Bolts", "spellId": 436162, "icon": "warrior_talent_icon_stormbolt", "index": 100}, {"id": 118835, "definitionId": 123735, "maxRanks": 1, "type": "passive", "name": "Storm Shield", "spellId": 438597, "icon": "spell_winston_bubble", "index": 200}]}, {"id": 94798, "name": "Keep Your Feet on the Ground / Steadfast as the Peaks", "type": "choice", "posX": 15600, "posY": 1510, "maxRanks": 1, "subTreeId": 61, "next": [94807], "prev": [94808], "entries": [{"id": 117395, "definitionId": 122407, "maxRanks": 1, "type": "passive", "name": "Keep Your Feet on the Ground", "spellId": 438590, "icon": "ability_thunderking_overcharge", "index": 100}, {"id": 118836, "definitionId": 123736, "maxRanks": 1, "type": "passive", "name": "Steadfast as the Peaks", "spellId": 434970, "icon": "ability_warrior_devastate", "index": 200}]}, {"id": 94792, "name": "Gathering Clouds / Thorim's Might", "type": "choice", "posX": 15000, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94817], "entries": [{"id": 117389, "definitionId": 122401, "maxRanks": 1, "type": "passive", "name": "Gathering Clouds", "spellId": 436201, "icon": "spell_nature_stormreach", "index": 100}, {"id": 118834, "definitionId": 123734, "maxRanks": 1, "type": "passive", "name": "Thorim's Might", "spellId": 436152, "icon": "inv_ability_mountainthanewarrior_thorimsmight", "index": 200}]}, {"id": 94807, "name": "Burst of Power", "type": "single", "posX": 15590, "posY": 2100, "maxRanks": 1, "subTreeId": 61, "next": [94805], "prev": [94798], "entries": [{"id": 117404, "definitionId": 122416, "maxRanks": 1, "type": "passive", "name": "Burst of Power", "spellId": 437118, "icon": "shaman_pvp_thundercharge", "index": 100}]}, {"id": 94797, "name": "Flashing Skies / Snap Induction", "type": "choice", "posX": 14410, "posY": 2110, "maxRanks": 1, "subTreeId": 61, "requiresNode": 90343, "next": [94805], "prev": [94785], "entries": [{"id": 117394, "definitionId": 122406, "maxRanks": 1, "type": "passive", "name": "Flashing Skies", "spellId": 437079, "icon": "spell_lightning_lightningbolt01", "index": 100}, {"id": 118833, "definitionId": 123733, "maxRanks": 1, "type": "passive", "name": "Snap Induction", "spellId": 456270, "icon": "ability_thunderking_thunderstruck", "index": 200}]}, {"id": 94805, "name": "Avatar of the Storm", "type": "single", "posX": 15010, "posY": 2710, "maxRanks": 1, "subTreeId": 61, "requiresNode": 92640, "next": [], "prev": [94797, 94792, 94807], "entries": [{"id": 117402, "definitionId": 122414, "maxRanks": 1, "type": "passive", "name": "Avatar of the Storm", "spellId": 437134, "icon": "achievement_dungeon_blackrockcaverns_ascendantlordobsidius", "index": 100}]}, {"id": 94818, "name": "Demolish", "type": "single", "posX": 7850, "posY": 4250, "maxRanks": 1, "entryNode": true, "subTreeId": 62, "next": [94812, 94819, 94789], "prev": [], "entries": [{"id": 117415, "definitionId": 122427, "maxRanks": 1, "type": "active", "name": "Demolish", "spellId": 436358, "icon": "inv_ability_colossuswarrior_demolish", "index": 100}], "freeNode": true}, {"id": 94812, "name": "Martial Expert", "type": "single", "posX": 7250, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94799], "prev": [94818], "entries": [{"id": 117409, "definitionId": 122421, "maxRanks": 1, "type": "passive", "name": "Martial Expert", "spellId": 429638, "icon": "ability_warrior_stalwartprotector", "index": 100}]}, {"id": 94819, "name": "Colossal Might", "type": "single", "posX": 7850, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "next": [94811], "prev": [94818], "entries": [{"id": 117416, "definitionId": 122428, "maxRanks": 1, "type": "passive", "name": "Colossal Might", "spellId": 429634, "icon": "ability_warrior_strengthofarms", "index": 100}]}, {"id": 94789, "name": "Boneshaker / Earthquaker", "type": "choice", "posX": 8450, "posY": 4850, "maxRanks": 1, "subTreeId": 62, "requiresNode": 90375, "next": [94815], "prev": [94818], "entries": [{"id": 117386, "definitionId": 122398, "maxRanks": 1, "type": "passive", "name": "Boneshaker", "spellId": 429639, "icon": "ability_deathknight_brittlebones", "index": 100}, {"id": 119858, "definitionId": 124758, "maxRanks": 1, "type": "passive", "name": "Earthquaker", "spellId": 440992, "icon": "spell_shaman_earthquake", "index": 200}]}, {"id": 94799, "name": "One Against Many / Arterial Bleed", "type": "choice", "posX": 7250, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94796], "prev": [94812], "entries": [{"id": 117396, "definitionId": 122408, "maxRanks": 1, "type": "passive", "name": "One Against Many", "spellId": 429637, "icon": "ability_warrior_incite", "index": 100}, {"id": 119856, "definitionId": 124756, "maxRanks": 1, "type": "passive", "name": "Arterial Bleed", "spellId": 440995, "icon": "ability_warrior_deepcuts", "index": 200}]}, {"id": 94811, "name": "Tide of Battle", "type": "single", "posX": 7850, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94794], "prev": [94819], "entries": [{"id": 117408, "definitionId": 122420, "maxRanks": 1, "type": "passive", "name": "Tide of Battle", "spellId": 429641, "icon": "ability_warrior_weaponmastery", "index": 100}]}, {"id": 94815, "name": "No Stranger to Pain / Veteran Vitality", "type": "choice", "posX": 8450, "posY": 5450, "maxRanks": 1, "subTreeId": 62, "next": [94806], "prev": [94789], "entries": [{"id": 117412, "definitionId": 122424, "maxRanks": 1, "type": "passive", "name": "No Stranger to Pain", "spellId": 429644, "icon": "ability_warrior_renewedvigor", "index": 100}, {"id": 119857, "definitionId": 124757, "maxRanks": 1, "type": "passive", "name": "Veteran Vitality", "spellId": 440993, "icon": "ability_hunter_harass", "index": 200}]}, {"id": 94796, "name": "Practiced Strikes", "type": "single", "posX": 7250, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94799], "entries": [{"id": 117393, "definitionId": 122405, "maxRanks": 1, "type": "passive", "name": "Practiced Strikes", "spellId": 429647, "icon": "spell_warrior_sharpenblade", "index": 100}]}, {"id": 94794, "name": "Precise Might", "type": "single", "posX": 7850, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94811], "entries": [{"id": 117391, "definitionId": 122403, "maxRanks": 1, "type": "passive", "name": "Precise Might", "spellId": 431548, "icon": "spell_hunter_focusingshot", "index": 100}]}, {"id": 94806, "name": "Mountain of Muscle and Scars", "type": "single", "posX": 8450, "posY": 6050, "maxRanks": 1, "subTreeId": 62, "next": [94793], "prev": [94815], "entries": [{"id": 117403, "definitionId": 122415, "maxRanks": 1, "type": "passive", "name": "Mountain of Muscle and Scars", "spellId": 429642, "icon": "ability_warrior_intensifyrage", "index": 100}]}, {"id": 94793, "name": "Dominance of the Colossus", "type": "single", "posX": 7850, "posY": 6650, "maxRanks": 1, "subTreeId": 62, "next": [], "prev": [94794, 94796, 94806], "entries": [{"id": 117390, "definitionId": 122402, "maxRanks": 1, "type": "passive", "name": "Dominance of the Colossus", "spellId": 429636, "icon": "ability_warrior_titansgrip", "index": 100}]}], "subTreeNodes": [{"id": 99851, "name": "Colossus / Mountain Thane", "type": "subtree", "posX": 8700, "posY": 600, "entryNode": true, "next": [], "prev": [], "entries": [{"id": 123391, "type": "subtree", "name": "Colossus", "traitSubTreeId": 62, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-colossus", "nodes": [94818, 94812, 94819, 94789, 94799, 94811, 94815, 94796, 94794, 94806, 94793]}, {"id": 123388, "type": "subtree", "name": "Mountain Thane", "traitSubTreeId": 61, "traitTreeId": 850, "atlasMemberName": "talents-heroclass-warrior-mountainthane", "nodes": [94803, 94816, 94800, 94808, 94785, 94817, 94798, 94792, 94807, 94797, 94805]}]}], "fullNodeOrder": [90258, 90259, 90260, 90261, 90262, 90264, 90265, 90266, 90267, 90269, 90270, 90271, 90272, 90273, 90274, 90275, 90276, 90277, 90278, 90279, 90281, 90282, 90283, 90284, 90285, 90286, 90287, 90288, 90289, 90290, 90291, 90292, 90293, 90295, 90296, 90297, 90298, 90299, 90300, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90314, 90315, 90316, 90317, 90318, 90319, 90320, 90322, 90323, 90324, 90325, 90326, 90327, 90328, 90329, 90330, 90331, 90332, 90337, 90338, 90339, 90340, 90343, 90344, 90345, 90346, 90347, 90348, 90349, 90350, 90351, 90352, 90353, 90354, 90355, 90356, 90357, 90358, 90359, 90360, 90362, 90363, 90364, 90365, 90366, 90368, 90369, 90370, 90371, 90373, 90374, 90375, 90376, 90378, 90379, 90380, 90381, 90382, 90383, 90384, 90385, 90386, 90387, 90388, 90389, 90390, 90391, 90392, 90393, 90394, 90395, 90396, 90397, 90398, 90399, 90400, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90412, 90413, 90414, 90415, 90416, 90417, 90418, 90421, 90423, 90424, 90425, 90427, 90428, 90429, 90430, 90432, 90433, 90434, 90435, 90437, 90438, 90439, 90440, 90441, 90442, 90444, 90445, 90446, 90447, 90448, 90449, 90450, 90451, 90452, 92535, 92536, 92537, 92538, 92614, 92615, 92639, 92640, 94784, 94785, 94786, 94787, 94788, 94789, 94792, 94793, 94794, 94795, 94796, 94797, 94798, 94799, 94800, 94801, 94803, 94805, 94806, 94807, 94808, 94809, 94810, 94811, 94812, 94813, 94814, 94815, 94816, 94817, 94818, 94819, 94820, 95954, 95955, 95956, 95959, 99851, 99852, 99853]} \ No newline at end of file diff --git a/simc_support/game_data/data_files/trinkets.json b/simc_support/game_data/data_files/trinkets.json index 86e289f..b2adf07 100644 --- a/simc_support/game_data/data_files/trinkets.json +++ b/simc_support/game_data/data_files/trinkets.json @@ -1 +1 @@ -[{"id": 744, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thunderbrew's Boot Flask", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Thunderbrew's Boot Flask", "name_ko_KR": "썬더브루의 납작 술병", "name_fr_FR": "Flacon de botte de Tonnebière", "name_de_DE": "Donnerbräus Stiefelflachmann", "name_zh_CN": "雷酒靴中瓶", "name_es_ES": "Petaca de Cebatruenos", "name_ru_RU": "Засапожная фляга Громовара", "name_it_IT": "Fiaschetta di Birratuono", "name_pt_PT": "Frasco de Bota do Cervaforte", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 833, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lifestone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 28000, "buy_price": 112000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9609000086784363, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Lifestone", "name_ko_KR": "수명석", "name_fr_FR": "Pierre de vie", "name_de_DE": "Lebensstein", "name_zh_CN": "生命石", "name_es_ES": "Piedra de vida", "name_ru_RU": "Жизнекамень", "name_it_IT": "Pietra Vitale", "name_pt_PT": "Pedra Vital", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 1404, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tidal Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10306, "buy_price": 41225, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0094000101089478, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 15, "inv_type": 12, "quality": 2, "name_en_US": "Tidal Charm", "name_ko_KR": "해일의 부적", "name_fr_FR": "Charme des flots", "name_de_DE": "Gezeitenglücksbringer", "name_zh_CN": "潮汐咒符", "name_es_ES": "Talismán de la marea", "name_ru_RU": "Оберег прилива", "name_it_IT": "Ammaliamento Mareale", "name_pt_PT": "Patuá das Marés", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 1490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Guardian Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8910, "buy_price": 35640, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Guardian Talisman", "name_ko_KR": "수호 부적", "name_fr_FR": "Talisman du gardien", "name_de_DE": "Wächtertalisman", "name_zh_CN": "守护之符", "name_es_ES": "Dije guardián", "name_ru_RU": "Талисман-хранитель", "name_it_IT": "Talismano Guardiano", "name_pt_PT": "Talismã do Guardião", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 1713, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ankh of Life", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5350, "buy_price": 21400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463999509811401, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Ankh of Life", "name_ko_KR": "생명의 십자가", "name_fr_FR": "Ankh de vie", "name_de_DE": "Ankh des Lebens", "name_zh_CN": "生命十字章", "name_es_ES": "Ankh de vida", "name_ru_RU": "Крест Жизни", "name_it_IT": "Ankh della Vita", "name_pt_PT": "Ankh da Vida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 2802, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blazing Emblem", "id_expansion": 0, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 51, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1625, "buy_price": 6500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0429999828338623, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 16, "inv_type": 12, "quality": 3, "name_en_US": "Blazing Emblem", "name_ko_KR": "불타는 문장", "name_fr_FR": "Emblème flamboyant", "name_de_DE": "Loderflammenemblem", "name_zh_CN": "闪耀徽章", "name_es_ES": "Emblema llameante", "name_ru_RU": "Пылающая эмблема", "name_it_IT": "Emblema Fiammeggiante", "name_pt_PT": "Emblema Fulgurante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 2820, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nifty Stopwatch", "id_expansion": 0, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4662, "buy_price": 18650, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0355000495910645, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Nifty Stopwatch", "name_ko_KR": "신기한 초시계", "name_fr_FR": "Chouette chronomètre", "name_de_DE": "Schicke Stoppuhr", "name_zh_CN": "灵巧秒表", "name_es_ES": "Cronómetro ingenioso", "name_ru_RU": "Изящный секундомер", "name_it_IT": "Cronometro Eccellente", "name_pt_PT": "Cronômetro Bacana", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 3456, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dog Whistle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6375, "buy_price": 25500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.02839994430542, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 20, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 13, "inv_type": 12, "quality": 3, "name_en_US": "Dog Whistle", "name_ko_KR": "사냥개 호각", "name_fr_FR": "Sifflet de chien", "name_de_DE": "Hundepfeife", "name_zh_CN": "狗哨", "name_es_ES": "Silbato para perros", "name_ru_RU": "Собачий свисток", "name_it_IT": "Fischietto per Cani", "name_pt_PT": "Apito de Cães", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 4130, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smotts' Compass", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 7, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4464, "buy_price": 22324, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872000217437744, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Smotts' Compass", "name_ko_KR": "스모츠의 나침반", "name_fr_FR": "Boussole de Smotts", "name_de_DE": "Smotts' Kompass", "name_zh_CN": "斯莫特的罗盘", "name_es_ES": "Brújula de Smotts", "name_ru_RU": "Компас Смоттса", "name_it_IT": "Bussola di Smotts", "name_pt_PT": "Bússola de Smotts", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 4381, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Minor Recombobulator", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 600, "buy_price": 2400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 140, "req_skill": 2506, "ilevel": 18, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Minor Recombobulator", "name_ko_KR": "최하급 유전자 역결합기", "name_fr_FR": "Recombobulateur mineur", "name_de_DE": "Schwacher Rekombobulator", "name_zh_CN": "自动净化装置", "name_es_ES": "Recombobulador menor", "name_ru_RU": "Малый атомарный перенаправлятор", "name_it_IT": "Tecno-Ricostituente Minore", "name_pt_PT": "Rebotocador Menor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 4396, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mechanical Dragonling", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6000, "buy_price": 24000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0134999752044678, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 200, "req_skill": 2506, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 13, "inv_type": 12, "quality": 2, "name_en_US": "Mechanical Dragonling", "name_ko_KR": "소형 기계용", "name_fr_FR": "Petit dragon mécanique", "name_de_DE": "Mechanischer Drachling", "name_zh_CN": "机械幼龙", "name_es_ES": "Dragonizo mecánico", "name_ru_RU": "Механический дракончик", "name_it_IT": "Minidrago Meccanico", "name_pt_PT": "Dragonete Mecânico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 4397, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Cloaking Device", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5000, "buy_price": 20000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0170999765396118, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 200, "req_skill": 2506, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gnomish Cloaking Device", "name_ko_KR": "노움 은폐 장치", "name_fr_FR": "Système d'occultation gnome", "name_de_DE": "Gnomische Tarnvorrichtung", "name_zh_CN": "侏儒隐形装置", "name_es_ES": "Aparato de invisibilidad gnómico", "name_ru_RU": "Гномский маскировочный механизм", "name_it_IT": "Dispositivo di Occultamento Gnomesco", "name_pt_PT": "Dispositivo Ocultador Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 5079, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cold Basilisk Eye", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4642, "buy_price": 18570, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581999778747559, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 15, "inv_type": 12, "quality": 2, "name_en_US": "Cold Basilisk Eye", "name_ko_KR": "바실리스크의 싸늘한 눈", "name_fr_FR": "Oeil de basilic Oeil-de-glace", "name_de_DE": "Kaltes Basiliskenauge", "name_zh_CN": "冷蜥蜴眼", "name_es_ES": "Ojo de basilisco frío", "name_ru_RU": "Глаз ледяного василиска", "name_it_IT": "Occhio di Basilisco Freddo", "name_pt_PT": "Olho Frio de Basilisco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 7506, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Universal Remote", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500, "buy_price": 2000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9623000025749207, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 125, "req_skill": 2506, "ilevel": 16, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gnomish Universal Remote", "name_ko_KR": "노움의 만능 원격조종기", "name_fr_FR": "Télécommande universelle gnome", "name_de_DE": "Gnomenuniversalfernbedienung", "name_zh_CN": "侏儒通用遥控器", "name_es_ES": "Mando universal gnómico", "name_ru_RU": "Универсальный гномский дистанционный пульт", "name_it_IT": "Controllo Universale Gnomesco", "name_pt_PT": "Controle Remoto Universal Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 7734, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Six Demon Bag", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15495, "buy_price": 61980, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696000218391418, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 20, "inv_type": 12, "quality": 3, "name_en_US": "Six Demon Bag", "name_ko_KR": "도깨비 가방", "name_fr_FR": "Sac des six démons", "name_de_DE": "Sechsdämonentasche", "name_zh_CN": "六魔包", "name_es_ES": "Bolsa de seis demonios", "name_ru_RU": "Сумка Шести Демонов", "name_it_IT": "Sacca dei Sei Demoni", "name_pt_PT": "Bolsa Seis Demônios", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 8663, "race_mask": 18446744073709551615, "desc": "E Pluribus Mithril", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Insignia", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2976, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 210, "req_skill": 2477, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mithril Insignia", "name_ko_KR": "미스릴 표장", "name_fr_FR": "Insigne en mithril", "name_de_DE": "Mithrilinsignien", "name_zh_CN": "秘银徽章", "name_es_ES": "Insignia de mitril", "name_ru_RU": "Мифриловый знак отличия", "name_it_IT": "Fregio di Mithril", "name_pt_PT": "Insígnia de Mithril", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 8703, "race_mask": 18446744073709551615, "desc": "Honorable Member of the Mithril Order", "pad2": "", "pad1": "", "pad0": "", "name": "Signet of Expertise", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6492, "buy_price": 25968, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140999555587769, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 210, "req_skill": 2477, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Signet of Expertise", "name_ko_KR": "전문 기술의 인장", "name_fr_FR": "Chevalière d'expertise", "name_de_DE": "Signet der Expertise", "name_zh_CN": "技艺徽记", "name_es_ES": "Sello de pericia", "name_ru_RU": "Перстень Умения", "name_it_IT": "Ninnolo con Sigillo della Perizia", "name_pt_PT": "Sinete da Aptidão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 9149, "race_mask": 18446744073709551615, "desc": "Required for Alchemical Transmutation.", "pad2": "", "pad1": "", "pad0": "", "name": "Philosopher's Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3571, "stat_alloc_2": 3571, "stat_alloc_3": 3571, "stat_alloc_4": 3571, "stat_alloc_5": 3571, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 4, "stat_type_3": 5, "stat_type_4": 40, "stat_type_5": 7, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919999837875366, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2485, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 15, "inv_type": 12, "quality": 2, "name_en_US": "Philosopher's Stone", "name_ko_KR": "현자의 돌", "name_fr_FR": "Pierre philosophale", "name_de_DE": "Stein der Weisen", "name_zh_CN": "点金石", "name_es_ES": "Piedra filosofal", "name_ru_RU": "Философский камень", "name_it_IT": "Pietra Filosofale", "name_pt_PT": "Pedra Filosofal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10418, "race_mask": 18446744073709551615, "desc": "Courage, Honor, and above all, Patience", "pad2": "", "pad1": "", "pad0": "", "name": "Glimmering Mithril Insignia", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9524, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16464, "buy_price": 65859, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0404000282287598, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 225, "req_skill": 2477, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Glimmering Mithril Insignia", "name_ko_KR": "빛나는 미스릴 표장", "name_fr_FR": "Insigne rougeoyant en mithril", "name_de_DE": "Gleißende Mithrilinsignien", "name_zh_CN": "闪光的秘银徽记", "name_es_ES": "Insignia de mitril de luz trémula", "name_ru_RU": "Мерцающий мифриловый талисман", "name_it_IT": "Fregio di Mithril Luccicante", "name_pt_PT": "Insígnia de Mithril Rutilante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10455, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chained Essence of Eranikus", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6464, "buy_price": 25859, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Chained Essence of Eranikus", "name_ko_KR": "속박된 에라니쿠스의 정수", "name_fr_FR": "Essence d'Eranikus enchaînée", "name_de_DE": "Gebundene Essenz des Eranikus", "name_zh_CN": "被禁锢的伊兰尼库斯精华", "name_es_ES": "Esencia encadenada de Eranikus", "name_ru_RU": "Скованная сущность Эраникуса", "name_it_IT": "Essenza Incatenata di Eranikus", "name_pt_PT": "Essência Acorrentada de Erânicos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Mechanical Dragonling", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6000, "buy_price": 24000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 67633216, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 250, "req_skill": 2506, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 2, "name_en_US": "Mithril Mechanical Dragonling", "name_ko_KR": "소형 미스릴 기계용", "name_fr_FR": "Petit dragon mécanique en mithril", "name_de_DE": "Mechanischer Mithrildrachling", "name_zh_CN": "秘银机械幼龙", "name_es_ES": "Dragonizo mecánico de mitril", "name_ru_RU": "Мифриловый механический дракончик", "name_it_IT": "Minidrago Meccanico di Mithril", "name_pt_PT": "Dragonete Mecânico de Mithril", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Mortar", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000, "buy_price": 8000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 205, "req_skill": 2506, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Goblin Mortar", "name_ko_KR": "고블린 박격포", "name_fr_FR": "Mortier gobelin", "name_de_DE": "Goblinmörser", "name_zh_CN": "地精迫击炮", "name_es_ES": "Mortero goblin", "name_ru_RU": "Гоблинская мортира", "name_it_IT": "Mortaio dei Goblin", "name_pt_PT": "Morteiro Goblínico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10585, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Radio", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 10, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750, "buy_price": 3000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 220, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Goblin Radio", "name_ko_KR": "고블린 라디오", "name_fr_FR": "Radio gobeline", "name_de_DE": "Goblinradio", "name_zh_CN": "地精无线电", "name_es_ES": "Radio goblin", "name_ru_RU": "Гоблинское радио", "name_it_IT": "Radio dei Goblin", "name_pt_PT": "Rádio Goblínico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10587, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Bomb Dispenser", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0253000259399414, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 230, "req_skill": 2506, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Goblin Bomb Dispenser", "name_ko_KR": "고블린 폭탄 자판기", "name_fr_FR": "Distributeur de bombes gobelines", "name_de_DE": "Goblinbombenspender", "name_zh_CN": "地精炸弹箱", "name_es_ES": "Dispensador de bombas goblin", "name_ru_RU": "Гоблинский бомбомет", "name_it_IT": "Distributore di Bombe dei Goblin", "name_pt_PT": "Distribuidor de Bombas Goblínico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10645, "race_mask": 18446744073709551615, "desc": "Death or Serious Injury may result from use of this device.", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Death Ray", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750, "buy_price": 3000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044100046157837, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 240, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Gnomish Death Ray", "name_ko_KR": "노움 즉사 광선", "name_fr_FR": "Rayon mortel gnome", "name_de_DE": "Gnomentodesstrahl", "name_zh_CN": "侏儒死亡射线", "name_es_ES": "Rayo mortal gnómico", "name_ru_RU": "Гномский смертоносный луч", "name_it_IT": "Raggio Mortale Gnomesco", "name_pt_PT": "Raio Gnômico da Morte", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10659, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of the Splithooves", "id_expansion": 0, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4662, "buy_price": 18650, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219000577926636, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Shard of the Splithooves", "name_ko_KR": "갈래발굽 결정", "name_fr_FR": "Éclat des Sabots-Fendus", "name_de_DE": "Splitter der Spalthufe", "name_zh_CN": "裂蹄碎片", "name_es_ES": "Fragmento de los Pezuña Quebrada", "name_ru_RU": "Сфера Треснувшего Копыта", "name_it_IT": "Frammento di Spaccazzoccoli", "name_pt_PT": "Estilhaço dos Cascos Fendidos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10716, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Shrink Ray", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750, "buy_price": 3000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104999542236328, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 205, "req_skill": 2506, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gnomish Shrink Ray", "name_ko_KR": "노움 난쟁이 광선", "name_fr_FR": "Rayon réducteur gnome", "name_de_DE": "Gnomenschrumpfstrahl", "name_zh_CN": "侏儒缩小射线", "name_es_ES": "Rayo reductor gnómico", "name_ru_RU": "Гномский уменьшающий луч", "name_it_IT": "Raggio Riduttore Gnomesco", "name_pt_PT": "Raio Gnômico Encolhedor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10720, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Net-o-Matic Projector", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750, "buy_price": 3000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0252000093460083, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 210, "req_skill": 2506, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gnomish Net-o-Matic Projector", "name_ko_KR": "노움 자동그물발사기", "name_fr_FR": "Lance-filet automatique gnome", "name_de_DE": "Gnomen-Net-o-Matik-Projektor", "name_zh_CN": "侏儒撒网器", "name_es_ES": "Proyector redomático gnómico", "name_ru_RU": "Гномский сетестрел", "name_it_IT": "Lanciarete Gnomomatico", "name_pt_PT": "Projetor Gnômico Redomático", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10723, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Ham Radio", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 10, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750, "buy_price": 3000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 220, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Gnomish Ham Radio", "name_ko_KR": "노움 무전기", "name_fr_FR": "Petite radio gnome", "name_de_DE": "Gnomenamateurradio", "name_zh_CN": "侏儒业余无线电", "name_es_ES": "Radio gnómica", "name_ru_RU": "Гномское любительское радио", "name_it_IT": "Radio Gnomesca del Radioamatore", "name_pt_PT": "Radioamador Gnômico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10725, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Battle Chicken", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700000286102295, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 230, "req_skill": 2506, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Gnomish Battle Chicken", "name_ko_KR": "노움 쌈닭", "name_fr_FR": "Coq de combat gnome", "name_de_DE": "Gnomenkampfhuhn", "name_zh_CN": "侏儒作战小鸡", "name_es_ES": "Gallo de batalla gnómico", "name_ru_RU": "Гномский боевой цыпленок", "name_it_IT": "Gallina da Battaglia Gnomesca", "name_pt_PT": "Frango de Batalha Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Dragon Gun", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000, "buy_price": 8000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772999882698059, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Goblin Dragon Gun", "name_ko_KR": "고블린 용화포", "name_fr_FR": "Fusil-dragon gobelin", "name_de_DE": "Goblindrachengewehr", "name_zh_CN": "地精龙枪", "name_es_ES": "Pistola de dragón goblin", "name_ru_RU": "Гоблинское драконье ружье", "name_it_IT": "Archibugio del Drago dei Goblin", "name_pt_PT": "Pistola Dragônica Goblínica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon's Blood", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 5000, "stat_alloc_3": 1500, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 54, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8807, "buy_price": 35230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0476000308990479, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Demon's Blood", "name_ko_KR": "악마 피", "name_fr_FR": "Sang de démon", "name_de_DE": "Dämonenblut", "name_zh_CN": "恶魔之血", "name_es_ES": "Sangre de demonio", "name_ru_RU": "Кровь демона", "name_it_IT": "Sangue Demoniaco", "name_pt_PT": "Sangue de Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 11122, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carrot on a Stick", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7162, "buy_price": 28650, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Carrot on a Stick", "name_ko_KR": "당근 달린 지팡이", "name_fr_FR": "Carotte et bâton", "name_de_DE": "Karotte am Stiel", "name_zh_CN": "棍子上的胡萝卜", "name_es_ES": "Zanahoria pinchada en un palo", "name_ru_RU": "Морковка на палочке", "name_it_IT": "Bastone e Carota", "name_pt_PT": "O Burro e a Cenoura", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 11302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Uther's Strength", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7130, "buy_price": 28520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405999422073364, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 20, "inv_type": 12, "quality": 3, "name_en_US": "Uther's Strength", "name_ko_KR": "우서의 힘", "name_fr_FR": "Force d'Uther", "name_de_DE": "Uthers Kraft", "name_zh_CN": "乌瑟尔的力量", "name_es_ES": "Fuerza de Uther", "name_ru_RU": "Сила Утера", "name_it_IT": "Forza di Uther", "name_pt_PT": "Força de Uther", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 11810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Force of Will", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8928, "buy_price": 44640, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255000591278076, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 3, "name_en_US": "Force of Will", "name_ko_KR": "의지의 힘", "name_fr_FR": "Force de volonté", "name_de_DE": "Macht des Willens", "name_zh_CN": "意志之力", "name_es_ES": "Fuerza de voluntad", "name_ru_RU": "Сила воли", "name_it_IT": "Forza di Volontà", "name_pt_PT": "Força de Vontade", "on_use": false, "id_encounter": 378, "id_journal_instance": 228, "id_map": 230, "instance_type": 1}, {"id": 11811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoking Heart of the Mountain", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7083, "stat_alloc_2": 7083, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "Smoking Heart of the Mountain", "name_ko_KR": "연기나는 산의 정수", "name_fr_FR": "Cœur fumant de la montagne", "name_de_DE": "Rauchendes Herz des Berges", "name_zh_CN": "浓烟山脉之心", "name_es_ES": "Corazón humeante de la montaña", "name_ru_RU": "Дымящееся сердце горы", "name_it_IT": "Cuore della Montagna Fumante", "name_pt_PT": "Coração Fumegante da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 11815, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hand of Justice", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9702000021934509, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 3, "name_en_US": "Hand of Justice", "name_ko_KR": "정의의 손길", "name_fr_FR": "Main de justice", "name_de_DE": "Hand der Gerechtigkeit", "name_zh_CN": "正义之手", "name_es_ES": "Mano de la Justicia", "name_ru_RU": "Рука правосудия", "name_it_IT": "Mano della Giustizia", "name_pt_PT": "Mão da Justiça", "on_use": false, "id_encounter": 387, "id_journal_instance": 228, "id_map": 230, "instance_type": 1}, {"id": 11819, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Second Wind", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 3, "name_en_US": "Second Wind", "name_ko_KR": "재기의 바람", "name_fr_FR": "Second souffle", "name_de_DE": "Langer Atem", "name_zh_CN": "复苏之风", "name_es_ES": "Segundo aliento", "name_ru_RU": "Второе дыхание", "name_it_IT": "Aria di Sfida", "name_pt_PT": "Fôlego Renovado", "on_use": true, "id_encounter": 379, "id_journal_instance": 228, "id_map": 230, "instance_type": 1}, {"id": 11832, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burst of Knowledge", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9591000080108643, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 3, "name_en_US": "Burst of Knowledge", "name_ko_KR": "지식의 홍수", "name_fr_FR": "Bijou de connaissance", "name_de_DE": "Explosion des Wissens", "name_zh_CN": "博学坠饰", "name_es_ES": "Ráfaga de conocimiento", "name_ru_RU": "Амулет Озарения", "name_it_IT": "Scarica di Conoscenza", "name_pt_PT": "Explosão de Conhecimento", "on_use": true, "id_encounter": 384, "id_journal_instance": 228, "id_map": 230, "instance_type": 1}, {"id": 11905, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Linken's Boomerang", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6203, "buy_price": 24813, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0328999757766724, "flags_1": 64, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Linken's Boomerang", "name_ko_KR": "링쿠의 부메랑", "name_fr_FR": "Boomerang de Linken", "name_de_DE": "Linkens Bumerang", "name_zh_CN": "林克的回旋镖", "name_es_ES": "Bumerán de Linken", "name_ru_RU": "Бумеранг Линкена", "name_it_IT": "Boomerang di Linken", "name_pt_PT": "Bumerangue de Linken", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 12065, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ward of the Elements", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7953, "buy_price": 31813, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847999811172485, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ward of the Elements", "name_ko_KR": "정기의 수호물", "name_fr_FR": "Gardien des éléments", "name_de_DE": "Barriere der Elemente", "name_zh_CN": "元素屏障", "name_es_ES": "Resguardo contra los Elementos", "name_ru_RU": "Оберег Стихий", "name_it_IT": "Guardia degli Elementi", "name_pt_PT": "Protetor dos Elementos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 12846, "race_mask": 18446744073709551615, "desc": "Equipping this badge is an indication of service to the Argent Dawn.", "pad2": "", "pad1": "", "pad0": "", "name": "Argent Dawn Commission", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0480999946594238, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Argent Dawn Commission", "name_ko_KR": "은빛 여명회 위임봉", "name_fr_FR": "Brevet de l'Aube d'argent", "name_de_DE": "Anstecknadel der Argentumdämmerung", "name_zh_CN": "银色黎明委任徽章", "name_es_ES": "Comisión de El Alba Argenta", "name_ru_RU": "Жетон Серебряного Рассвета", "name_it_IT": "Distintivo dell'Alba d'Argento", "name_pt_PT": "Ordem da Aurora Argêntea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 12930, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Briarwood Reed", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886999726295471, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Briarwood Reed", "name_ko_KR": "가시나무 줄기", "name_fr_FR": "Pipeau de bruyère", "name_de_DE": "Dornenschilfrohr", "name_zh_CN": "石楠之环", "name_es_ES": "Junco maderahelecho", "name_ru_RU": "Пищик из древесины шиповника", "name_it_IT": "Alga Spinosa", "name_pt_PT": "Junco Rosabrava", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13164, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of the Scale", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10539, "buy_price": 42158, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Heart of the Scale", "name_ko_KR": "비늘 심장", "name_fr_FR": "Cœur de l'écaille", "name_de_DE": "Herz der Schuppe", "name_zh_CN": "龙鳞之心", "name_es_ES": "Corazón de la escama", "name_ru_RU": "Сердце Чешуи", "name_it_IT": "Cuore dell'Equilibrio", "name_pt_PT": "Coração da Escama", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13171, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smokey's Lighter", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7000, "buy_price": 28000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9702000021934509, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Smokey's Lighter", "name_ko_KR": "스모키의 라이터", "name_fr_FR": "Boutefeu de Smokey", "name_de_DE": "Smokeys Feuerzeug", "name_zh_CN": "烟鬼的点火器", "name_es_ES": "Mechero de Smokey", "name_ru_RU": "Воспламенитель Дымка", "name_it_IT": "Accendino di Smokey", "name_pt_PT": "Isqueiro do Fumaça", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13209, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of the Dawn", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Seal of the Dawn", "name_ko_KR": "여명의 문장", "name_fr_FR": "Sceau de l'Aube", "name_de_DE": "Siegel der Dämmerung", "name_zh_CN": "黎明之印", "name_es_ES": "Sello del Alba", "name_ru_RU": "Печать Рассвета", "name_it_IT": "Sigillo dell'Alba", "name_pt_PT": "Selo da Aurora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13213, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smolderweb's Eye", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9633, "buy_price": 38533, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0038000345230103, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Smolderweb's Eye", "name_ko_KR": "불그물거미 눈", "name_fr_FR": "Oeil de Couveuse", "name_de_DE": "Glimmernetz' Auge", "name_zh_CN": "烟网蜘蛛的眼球", "name_es_ES": "Ojo de Telabrasada", "name_ru_RU": "Око Дымной Паутины", "name_it_IT": "Occhio di Bruciatela", "name_pt_PT": "Olho de Queimateia", "on_use": true, "id_encounter": 391, "id_journal_instance": 229, "id_map": 229, "instance_type": 1}, {"id": 13382, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cannonball Runner", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10850, "buy_price": 43400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886999726295471, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 18, "inv_type": 12, "quality": 3, "name_en_US": "Cannonball Runner", "name_ko_KR": "휴대용 대포", "name_fr_FR": "Messager du boulet de canon", "name_de_DE": "Kanonenkugelläufer", "name_zh_CN": "便携火炮", "name_es_ES": "Mensajero bola de cañón", "name_ru_RU": "Бегун-ядро", "name_it_IT": "Cannone Tascabile", "name_pt_PT": "Fura-bloqueio", "on_use": false, "id_encounter": 446, "id_journal_instance": 236, "id_map": 329, "instance_type": 1}, {"id": 13503, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Alchemist Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3125, "stat_alloc_2": 3125, "stat_alloc_3": 3125, "stat_alloc_4": 3125, "stat_alloc_5": 3125, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 7, "stat_type_3": 3, "stat_type_4": 5, "stat_type_5": 40, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2484, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Alchemist Stone", "name_ko_KR": "연금술사 돌", "name_fr_FR": "Pierre d'alchimiste", "name_de_DE": "Alchemistenstein", "name_zh_CN": "炼金石", "name_es_ES": "Piedra de alquimista", "name_ru_RU": "Алхимический камень", "name_it_IT": "Pietra Alchemica", "name_pt_PT": "Pedra do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13515, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ramstein's Lightning Bolts", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9600, "buy_price": 38400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "Ramstein's Lightning Bolts", "name_ko_KR": "람스타인의 번개 나사", "name_fr_FR": "Eclairs de Ramstein", "name_de_DE": "Ramsteins Blitzbolzen", "name_zh_CN": "拉姆斯登的闪电钉", "name_es_ES": "Descargas de relámpagos de Ramstein", "name_ru_RU": "Молнии Рамштайна", "name_it_IT": "Dardi Fulminanti di Ramstein", "name_pt_PT": "Parafusos Eletrificados de Ramstein", "on_use": true, "id_encounter": 455, "id_journal_instance": 236, "id_map": 329, "instance_type": 1}, {"id": 13544, "race_mask": 18446744073709551615, "desc": "Allows communication with the deceased of Caer Darrow.", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Essence", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0479999780654907, "flags_1": 524288, "flags_2": 28672, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Essence", "name_ko_KR": "혼령의 정수", "name_fr_FR": "Essence spectrale", "name_de_DE": "Spektrale Essenz", "name_zh_CN": "鬼灵精华", "name_es_ES": "Esencia espectral", "name_ru_RU": "Сущность привидения", "name_it_IT": "Essenza di Spettro", "name_pt_PT": "Essência Espectral", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13965, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blackhand's Breadth", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16250, "buy_price": 65000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Blackhand's Breadth", "name_ko_KR": "블랙핸드의 팔찌", "name_fr_FR": "Plaque de Main-Noire", "name_de_DE": "Schwarzfausts Breite", "name_zh_CN": "黑手饰物", "name_es_ES": "Amplitud de Puño Negro", "name_ru_RU": "Пластита Чернорука", "name_it_IT": "Mostrina di Manonera", "name_pt_PT": "Amplitude do Mão Negra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13966, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Tyranny", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 13, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16250, "buy_price": 65000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Tyranny", "name_ko_KR": "폭정의 징표", "name_fr_FR": "Marque de tyrannie", "name_de_DE": "Mal der Tyrannei", "name_zh_CN": "暴君印记", "name_es_ES": "Marca de Tiranía", "name_ru_RU": "Знак деспотизма", "name_it_IT": "Marchio della Tirannia", "name_pt_PT": "Marca da Tirania", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13968, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of the Beast", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16250, "buy_price": 65000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Eye of the Beast", "name_ko_KR": "괴수의 눈", "name_fr_FR": "Oeil de la Bête", "name_de_DE": "Auge der Bestie", "name_zh_CN": "比斯巨兽之眼", "name_es_ES": "Ojo de la bestia", "name_ru_RU": "Глаз Зверя", "name_it_IT": "Occhio della Bestia", "name_pt_PT": "Olho da Fera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 14022, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Barov Peasant Caller", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8991, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962999820709229, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Barov Peasant Caller", "name_ko_KR": "바로브의 종", "name_fr_FR": "Cloche des Barov", "name_de_DE": "Bedienstetenglöckchen der Barovs", "name_zh_CN": "巴罗夫管家铃", "name_es_ES": "Llamador de campesino Barov", "name_ru_RU": "Набатный колокол рода Баровых", "name_it_IT": "Campanella dei Servitori dei Barov", "name_pt_PT": "Convocador de Serviçais de Barov", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 14023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Barov Peasant Caller", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8991, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Barov Peasant Caller", "name_ko_KR": "바로브의 종", "name_fr_FR": "Cloche des Barov", "name_de_DE": "Bedienstetenglöckchen der Barovs", "name_zh_CN": "巴罗夫管家铃", "name_es_ES": "Llamador de campesino Barov", "name_ru_RU": "Набатный колокол рода Баровых", "name_it_IT": "Campanella dei Servitori dei Barov", "name_pt_PT": "Convocador de Serviçais de Barov", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 14557, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Lion Horn of Stormwind", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17880, "buy_price": 71520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0333000421524048, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 4, "name_en_US": "The Lion Horn of Stormwind", "name_ko_KR": "스톰윈드의 사자 뿔피리", "name_fr_FR": "Cor du lion de Hurlevent", "name_de_DE": "Das Löwenhorn von Sturmwind", "name_zh_CN": "暴风雄狮号角", "name_es_ES": "El cuerno de león de Ventormenta", "name_ru_RU": "Львиный Рог Штормграда", "name_it_IT": "Corno Leonino di Roccavento", "name_pt_PT": "Trombeta Leonina de Ventobravo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 15867, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismcharm", "id_expansion": 0, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7464, "buy_price": 29857, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0115000009536743, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Prismcharm", "name_ko_KR": "오색 부적", "name_fr_FR": "Charme prismatique", "name_de_DE": "Prismatalisman", "name_zh_CN": "棱石护符", "name_es_ES": "Talismán prismático", "name_ru_RU": "Радужный оберег", "name_it_IT": "Talismano Prismatico", "name_pt_PT": "Talismã Prismático", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 15873, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ragged John's Neverending Cup", "id_expansion": 0, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8144, "buy_price": 32578, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ragged John's Neverending Cup", "name_ko_KR": "털보 존의 마법 술잔", "name_fr_FR": "Chope sans fin de John le Loqueteux", "name_de_DE": "Der immervolle Becher des struppigen John", "name_zh_CN": "约翰的无尽之杯", "name_es_ES": "Copa interminable de John Andrajoso", "name_ru_RU": "Бездонная чаша Джона-Оборванца", "name_it_IT": "Boccale Senza Fondo di John", "name_pt_PT": "Caneca Interminável do João Roto", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 16022, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcanite Dragonling", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 40000, "buy_price": 160000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0185999870300293, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 300, "req_skill": 2506, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "Arcanite Dragonling", "name_ko_KR": "아케이나이트 기계용", "name_fr_FR": "Petit dragon en arcanite", "name_de_DE": "Arkanitdrachling", "name_zh_CN": "奥金机械幼龙", "name_es_ES": "Dragonizo de arcanita", "name_ru_RU": "Арканитовый дракончик", "name_it_IT": "Minidrago d'Arcanite", "name_pt_PT": "Dragonete de Arcanita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17064, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of the Scale", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10256, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45914, "buy_price": 183658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9631999731063843, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 241, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Shard of the Scale", "name_ko_KR": "비늘의 파편", "name_fr_FR": "Éclat de l'écaille", "name_de_DE": "Splitter der Schuppe", "name_zh_CN": "龙鳞碎片", "name_es_ES": "Fragmento de la Escama", "name_ru_RU": "Обломок чешуи", "name_it_IT": "Frammento dell'Equilibrio", "name_pt_PT": "Estilhaço da Escama", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17082, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of the Flame", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 46, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 46146, "buy_price": 184585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9556999802589417, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 241, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Shard of the Flame", "name_ko_KR": "화염의 파편", "name_fr_FR": "Éclat de la Flamme", "name_de_DE": "Splitter der Flamme", "name_zh_CN": "烈焰碎片", "name_es_ES": "Fragmento de la Llama", "name_ru_RU": "Сфера Пламени", "name_it_IT": "Frammento della Fiamma", "name_pt_PT": "Estilhaço da Chama", "on_use": false, "id_encounter": 1528, "id_journal_instance": 741, "id_map": 409, "instance_type": 2}, {"id": 17690, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 1", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 52, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9929999709129333, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17691, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Frostwolf Insignia Rank 1", "name_ko_KR": "서리늑대 1급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 1", "name_de_DE": "Abzeichen der Frostwölfe Rang 1", "name_zh_CN": "1级霜狼徽记", "name_es_ES": "Insignia Lobo Gélido Rango 1", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 1", "name_it_IT": "Fregio dei Lupi Bianchi Grado 1", "name_pt_PT": "Insígnia Lobo do Gelo Grau 1", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17691, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 1", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 52, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9966999888420105, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17690, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stormpike Insignia Rank 1", "name_ko_KR": "스톰파이크 1급 계급장", "name_fr_FR": "Insigne Foudrepique grade 1", "name_de_DE": "Abzeichen der Sturmlanzen Rang 1", "name_zh_CN": "1级雷矛徽记", "name_es_ES": "Insignia Pico Tormenta Rango 1", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 1", "name_it_IT": "Fregio dei Piccatonante Grado 1", "name_pt_PT": "Insígnia Lançatroz Grau 1", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17744, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Noxxion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9031, "buy_price": 36125, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9706000089645386, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 21, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 14, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Noxxion", "name_ko_KR": "녹시온의 심장", "name_fr_FR": "Cœur de Noxcion", "name_de_DE": "Herz von Noxxion", "name_zh_CN": "诺克赛恩之心", "name_es_ES": "Corazón de Noxxion", "name_ru_RU": "Сердце Ноксиона", "name_it_IT": "Cuore di Noxxion", "name_pt_PT": "Coração de Tóxxico", "on_use": true, "id_encounter": 423, "id_journal_instance": 232, "id_map": 349, "instance_type": 1}, {"id": 17759, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Resolution", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6923, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10307, "buy_price": 41230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520999789237976, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Resolution", "name_ko_KR": "결심의 징표", "name_fr_FR": "Marque de résolution", "name_de_DE": "Mal der Resolution", "name_zh_CN": "坚定之印", "name_es_ES": "Marca de Resolución", "name_ru_RU": "Знак решимости", "name_it_IT": "Marchio della Risolutezza", "name_pt_PT": "Marca da Determinação", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17774, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Chosen", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6133, "buy_price": 24535, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0336999893188477, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 21, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mark of the Chosen", "name_ko_KR": "선택받은 자의 징표", "name_fr_FR": "Marque de l'élu", "name_de_DE": "Mal der Auserwählten", "name_zh_CN": "天选者印记", "name_es_ES": "Marca del elegido", "name_ru_RU": "Знак Избранного", "name_it_IT": "Marchio del Prescelto", "name_pt_PT": "Marca do Escolhido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17900, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 2", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 1000, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 52, "stat_type_2": 46, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0077999830245972, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17905, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stormpike Insignia Rank 2", "name_ko_KR": "스톰파이크 2급 계급장", "name_fr_FR": "Insigne Foudrepique grade 2", "name_de_DE": "Abzeichen der Sturmlanzen Rang 2", "name_zh_CN": "2级雷矛勋章", "name_es_ES": "Insignia Pico Tormenta Rango 2", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 2", "name_it_IT": "Fregio dei Piccatonante Grado 2", "name_pt_PT": "Insígnia Lançatroz Grau 2", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17901, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 3", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6000, "stat_alloc_2": 2500, "stat_alloc_3": 1000, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0115000009536743, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17906, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stormpike Insignia Rank 3", "name_ko_KR": "스톰파이크 3급 계급장", "name_fr_FR": "Insigne Foudrepique grade 3", "name_de_DE": "Abzeichen der Sturmlanzen Rang 3", "name_zh_CN": "3级雷矛勋章", "name_es_ES": "Insignia Pico Tormenta Rango 3", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 3", "name_it_IT": "Fregio dei Piccatonante Grado 3", "name_pt_PT": "Insígnia Lançatroz Grau 3", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17902, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 4", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4615, "stat_alloc_2": 3077, "stat_alloc_3": 1923, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0152000188827515, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17907, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Stormpike Insignia Rank 4", "name_ko_KR": "스톰파이크 4급 계급장", "name_fr_FR": "Insigne Foudrepique grade 4", "name_de_DE": "Abzeichen der Sturmlanzen Rang 4", "name_zh_CN": "4级雷矛勋章", "name_es_ES": "Insignia Pico Tormenta Rango 4", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 4", "name_it_IT": "Fregio dei Piccatonante Grado 4", "name_pt_PT": "Insígnia Lançatroz Grau 4", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17903, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 5", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4615, "stat_alloc_2": 3846, "stat_alloc_3": 2692, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0188000202178955, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17908, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Stormpike Insignia Rank 5", "name_ko_KR": "스톰파이크 5급 계급장", "name_fr_FR": "Insigne Foudrepique grade 5", "name_de_DE": "Abzeichen der Sturmlanzen Rang 5", "name_zh_CN": "5级雷矛勋章", "name_es_ES": "Insignia Pico Tormenta Rango 5", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 5", "name_it_IT": "Fregio dei Piccatonante Grado 5", "name_pt_PT": "Insígnia Lançatroz Grau 5", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17904, "race_mask": 6130900294268439629, "desc": "The Eye of Command", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 6", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7273, "stat_alloc_2": 3030, "stat_alloc_3": 2424, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0225000381469727, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17909, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Stormpike Insignia Rank 6", "name_ko_KR": "스톰파이크 6급 계급장", "name_fr_FR": "Insigne Foudrepique grade 6", "name_de_DE": "Abzeichen der Sturmlanzen Rang 6", "name_zh_CN": "6级雷矛勋章", "name_es_ES": "Insignia Pico Tormenta Rango 6", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 6", "name_it_IT": "Fregio dei Piccatonante Grado 6", "name_pt_PT": "Insígnia Lançatroz Grau 6", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17905, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 2", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 1000, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 52, "stat_type_2": 46, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9526000022888184, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17900, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Frostwolf Insignia Rank 2", "name_ko_KR": "서리늑대 2급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 2", "name_de_DE": "Abzeichen der Frostwölfe Rang 2", "name_zh_CN": "2级霜狼勋章", "name_es_ES": "Insignia Lobo Gélido Rango 2", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 2", "name_it_IT": "Fregio dei Lupi Bianchi Grado 2", "name_pt_PT": "Insígnia Lobo do Gelo Grau 2", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17906, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 3", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6000, "stat_alloc_2": 2500, "stat_alloc_3": 1000, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9563000202178955, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17901, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Frostwolf Insignia Rank 3", "name_ko_KR": "서리늑대 3급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 3", "name_de_DE": "Abzeichen der Frostwölfe Rang 3", "name_zh_CN": "3级霜狼勋章", "name_es_ES": "Insignia Lobo Gélido Rango 3", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 3", "name_it_IT": "Fregio dei Lupi Bianchi Grado 3", "name_pt_PT": "Insígnia Lobo do Gelo Grau 3", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17907, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 4", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4615, "stat_alloc_2": 3077, "stat_alloc_3": 1923, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9599000215530396, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17902, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Frostwolf Insignia Rank 4", "name_ko_KR": "서리늑대 4급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 4", "name_de_DE": "Abzeichen der Frostwölfe Rang 4", "name_zh_CN": "4级霜狼勋章", "name_es_ES": "Insignia Lobo Gélido Rango 4", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 4", "name_it_IT": "Fregio dei Lupi Bianchi Grado 4", "name_pt_PT": "Insígnia Lobo do Gelo Grau 4", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17908, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 5", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4615, "stat_alloc_2": 3846, "stat_alloc_3": 2692, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9635999798774719, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17903, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Frostwolf Insignia Rank 5", "name_ko_KR": "서리늑대 5급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 5", "name_de_DE": "Abzeichen der Frostwölfe Rang 5", "name_zh_CN": "5级霜狼勋章", "name_es_ES": "Insignia Lobo Gélido Rango 5", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 5", "name_it_IT": "Fregio dei Lupi Bianchi Grado 5", "name_pt_PT": "Insígnia Lobo do Gelo Grau 5", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17909, "race_mask": 18446744073709551615, "desc": "The Eye of Command", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 6", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7273, "stat_alloc_2": 3030, "stat_alloc_3": 2424, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9672999978065491, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17904, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Frostwolf Insignia Rank 6", "name_ko_KR": "서리늑대 6급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 6", "name_de_DE": "Abzeichen der Frostwölfe Rang 6", "name_zh_CN": "6级霜狼勋章", "name_es_ES": "Insignia Lobo Gélido Rango 6", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 6", "name_it_IT": "Fregio dei Lupi Bianchi Grado 6", "name_pt_PT": "Insígnia Lobo do Gelo Grau 6", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18354, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pimgib's Collar", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17466, "buy_price": 69864, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0152000188827515, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Pimgib's Collar", "name_ko_KR": "핌기브의 목줄", "name_fr_FR": "Collier de Pimgib", "name_de_DE": "Pimgibs Halsband", "name_zh_CN": "匹姆吉布的项圈", "name_es_ES": "Collera de Pimgib", "name_ru_RU": "Ошейник Пимгиба", "name_it_IT": "Collare di Pimgib", "name_pt_PT": "Colar do Diabretão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vigilance Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003000497817993, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Vigilance Charm", "name_ko_KR": "경계의 부적", "name_fr_FR": "Charme de vigilance", "name_de_DE": "Wachsamkeitsglücksbringer", "name_zh_CN": "警惕护符", "name_es_ES": "Talismán de vigilancia", "name_ru_RU": "Оберег бдительности", "name_it_IT": "Talismano della Vigilanza", "name_pt_PT": "Patuá da Cautela", "on_use": false, "id_encounter": 409, "id_journal_instance": 230, "id_map": 429, "instance_type": 1}, {"id": 18371, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mindtap Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20737, "buy_price": 82948, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Mindtap Talisman", "name_ko_KR": "자각의 부적", "name_fr_FR": "Talisman d'ouvresprit", "name_de_DE": "Talisman des Gedankenzapfens", "name_zh_CN": "心灵之流", "name_es_ES": "Dije de lectura mental", "name_ru_RU": "Талисман восстановления разума", "name_it_IT": "Talismano dell'Impulso Mentale", "name_pt_PT": "Talismã Destrava-mentes", "on_use": false, "id_encounter": 408, "id_journal_instance": 230, "id_map": 429, "instance_type": 1}, {"id": 18406, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Onyxia Blood Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6000, "stat_alloc_2": 3750, "stat_alloc_3": 1750, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": 51, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10151, "buy_price": 50759, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Onyxia Blood Talisman", "name_ko_KR": "오닉시아 피 부적", "name_fr_FR": "Talisman de sang d'Onyxia", "name_de_DE": "Talisman mit Onyxiablut", "name_zh_CN": "奥妮克希亚龙血护符", "name_es_ES": "Dije de sangre de Onyxia", "name_ru_RU": "Кровный талисман Ониксии", "name_it_IT": "Talismano Insanguinato di Onyxia", "name_pt_PT": "Talismã de Sangue de Onyxia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18465, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7407, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 51, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0077999830245972, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18466, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 51, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0115000009536743, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18467, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7407, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 51, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0152000188827515, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18468, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7407, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 51, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045300006866455, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18469, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5556, "stat_alloc_2": 3704, "stat_alloc_3": 3704, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": 51, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0490000247955322, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18470, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7407, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 51, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9526000022888184, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18471, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7407, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 51, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563000202178955, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18472, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3704, "stat_alloc_2": 3704, "stat_alloc_3": 5555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 51, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599000215530396, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18473, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8889, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 39, "stat_type_2": 51, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635999798774719, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18537, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Counterattack Lodestone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 14, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6613, "buy_price": 26454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0044000148773193, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 19, "inv_type": 12, "quality": 3, "name_en_US": "Counterattack Lodestone", "name_ko_KR": "반격의 자철광", "name_fr_FR": "Magnétite de contre-attaque", "name_de_DE": "Gegenangriffsleitstein", "name_zh_CN": "反击磁石", "name_es_ES": "Magnetita de contraataque", "name_ru_RU": "Магнит контратаки", "name_it_IT": "Magnetite del Contrattacco", "name_pt_PT": "Magnetita de Contra-ataque", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gyrofreeze Ice Reflector", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6818, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 52, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12500, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0191999673843384, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 260, "req_skill": 2506, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 20, "inv_type": 12, "quality": 3, "name_en_US": "Gyrofreeze Ice Reflector", "name_ko_KR": "회전냉각식 냉기 반사기", "name_fr_FR": "Réflectoglace gyrogivre", "name_de_DE": "Gyrofrosteisreflektor", "name_zh_CN": "超低温寒冰偏斜器", "name_es_ES": "Reflector de hielo girohielo", "name_ru_RU": "Гирозамораживающий ледяной отражатель", "name_it_IT": "Riflettore Girogelido", "name_pt_PT": "Refletor de Gelo Girogélido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18637, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Major Recombobulator", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 600, "buy_price": 2400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0303000211715698, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 275, "req_skill": 2506, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Major Recombobulator", "name_ko_KR": "일급 유전자 역결합기", "name_fr_FR": "Recombobulateur majeur", "name_de_DE": "Großer Rekombobulator", "name_zh_CN": "强力净化器", "name_es_ES": "Recombobulador sublime", "name_ru_RU": "Большой атомарный перенаправлятор", "name_it_IT": "Tecno-Ricostituente Maggiore", "name_pt_PT": "Rebotocador Maior", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18638, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hyper-Radiant Flame Reflector", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7200, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 51, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12500, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 290, "req_skill": 2506, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 3, "name_en_US": "Hyper-Radiant Flame Reflector", "name_ko_KR": "극고온 화염 반사기", "name_fr_FR": "Réflectoflamme hyper-radiant", "name_de_DE": "Hyperstrahlender Flammenreflektor", "name_zh_CN": "高辐射烈焰反射器", "name_es_ES": "Reflector de llamas hiperradiante", "name_ru_RU": "Гиперизлучающий отражатель пламени", "name_it_IT": "Riflettore Radiante Antifuoco", "name_pt_PT": "Refletor de Chamas Hiperradiante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18639, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ultra-Flash Shadow Reflector", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7692, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 54, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12500, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037600040435791, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 300, "req_skill": 2506, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Ultra-Flash Shadow Reflector", "name_ko_KR": "초광자 암흑 반사기", "name_fr_FR": "Réflectombre ultra-flash", "name_de_DE": "Ultrablendender Schattenreflektor", "name_zh_CN": "快速暗影反射器", "name_es_ES": "Reflector de las Sombras ultradeslumbrante", "name_ru_RU": "Ультра-вспышечный отражатель тьмы", "name_it_IT": "Riflettore Antiombrico", "name_pt_PT": "Refletor de Sombras Ultrafulgurante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18646, "race_mask": 18446744073709551615, "desc": "You can see movement when you peer into the Eye.", "pad2": "", "pad1": "", "pad0": "", "name": "The Eye of Divinity", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9897000193595886, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 2659, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 2, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "The Eye of Divinity", "name_ko_KR": "신앙의 눈", "name_fr_FR": "L'Oeil de la divinité", "name_de_DE": "Das Auge der Offenbarung", "name_zh_CN": "神圣之眼", "name_es_ES": "El Ojo de divinidad", "name_ru_RU": "Око Божественности", "name_it_IT": "Occhio della Divinità", "name_pt_PT": "O Olho da Divindade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18665, "race_mask": 18446744073709551615, "desc": "Seething darkness engulfs the eye.", "pad2": "", "pad1": "", "pad0": "", "name": "The Eye of Shadow", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9858999848365784, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "The Eye of Shadow", "name_ko_KR": "어둠의 눈", "name_fr_FR": "L'Oeil de l'ombre", "name_de_DE": "Das Auge der Schatten", "name_zh_CN": "暗影之眼", "name_es_ES": "El Ojo de la Sombra", "name_ru_RU": "Око Тени", "name_it_IT": "Occhio dell'Ombra", "name_pt_PT": "A Visão das Sombras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18706, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arena Master", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 7810, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10031, "buy_price": 40124, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989300012588501, "flags_1": 64, "flags_2": 28672, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 20, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 2, "name_en_US": "Arena Master", "name_ko_KR": "전문 검투사의 징표", "name_fr_FR": "Maître de l'arène", "name_de_DE": "Meister der Arena", "name_zh_CN": "竞技场高手饰物", "name_es_ES": "Maestro de arena", "name_ru_RU": "Повелитель арены", "name_it_IT": "Maestro delle Arene", "name_pt_PT": "Mestre da Arena", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18815, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Pure Flame", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64095, "buy_price": 256380, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746000170707703, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Pure Flame", "name_ko_KR": "순수한 불꽃의 정수", "name_fr_FR": "Essence de la flamme pure", "name_de_DE": "Essenz der reinen Flamme", "name_zh_CN": "纯焰精华", "name_es_ES": "Esencia de la llama pura", "name_ru_RU": "Сущность Чистого Пламени", "name_it_IT": "Essenza della Fiamma Pura", "name_pt_PT": "Essência da Chama Pura", "on_use": false, "id_encounter": 1528, "id_journal_instance": 741, "id_map": 409, "instance_type": 2}, {"id": 18820, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Ephemeral Power", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66290, "buy_price": 265161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9929999709129333, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Ephemeral Power", "name_ko_KR": "단명의 마력 부적", "name_fr_FR": "Talisman de pouvoir éphémère", "name_de_DE": "Talisman der ephemeren Macht", "name_zh_CN": "短暂能量护符", "name_es_ES": "Dije de poder efímero", "name_ru_RU": "Талисман эфемерной власти", "name_it_IT": "Talismano del Potere Effimero", "name_pt_PT": "Talismã do Poder Efêmero", "on_use": true, "id_encounter": 1520, "id_journal_instance": 741, "id_map": 409, "instance_type": 2}, {"id": 18834, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.97079998254776, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18854, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18845, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377000570297241, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 29593, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18846, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413999557495117, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18856, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9523000121116638, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18857, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18850, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559999704360962, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18859, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18851, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9596999883651733, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18862, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18852, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18858, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18853, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9670000076293945, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18863, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18854, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18834, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18856, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0045000314712524, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18846, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18857, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082000494003296, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18849, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18858, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18852, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18859, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0155999660491943, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18850, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18862, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0266000032424927, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18851, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18863, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0302000045776367, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18853, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18864, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 29592, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18951, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evonice's Landin' Pilla", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4577, "buy_price": 22885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0119999647140503, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Evonice's Landin' Pilla", "name_ko_KR": "에보니스의 낙하 방석", "name_fr_FR": "Oreiller d'atterrissage d'Evonice", "name_de_DE": "Evonices Landekissen", "name_zh_CN": "艾沃奈斯的着陆器", "name_es_ES": "Almohada de aterrizaje de Evonice", "name_ru_RU": "Подушка Эвонис", "name_it_IT": "Cuscino d'Atterraggio di Evonice", "name_pt_PT": "Travesseiro de Aterrissagem de Evonice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19024, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arena Grand Master", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6652, "buy_price": 33261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98580002784729, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Arena Grand Master", "name_ko_KR": "최고검투사의 징표", "name_fr_FR": "Grand maître de l'arène", "name_de_DE": "Großmeister der Arena", "name_zh_CN": "竞技场大师饰物", "name_es_ES": "Gran maestro de arena", "name_ru_RU": "Знак великого мастера арены", "name_it_IT": "Gran Maestro delle Arene", "name_pt_PT": "Grande Mestre da Arena", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19120, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of the Guard Captain", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3333, "stat_alloc_2": 3333, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16283, "buy_price": 65132, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9969000220298767, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rune of the Guard Captain", "name_ko_KR": "수호대장의 룬", "name_fr_FR": "Rune de capitaine de la garde", "name_de_DE": "Rune des Wachbefehlshabers", "name_zh_CN": "卫兵队长符文", "name_es_ES": "Runa del capitán de la guardia", "name_ru_RU": "Руна капитана стражи", "name_it_IT": "Runa del Capitano della Guardia", "name_pt_PT": "Runa do Capitão da Guarda", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19141, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Luffa", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16612, "buy_price": 66451, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000499963760376, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Luffa", "name_ko_KR": "수세미", "name_fr_FR": "Loofa", "name_de_DE": "Luffaschwamm", "name_zh_CN": "丝瓜", "name_es_ES": "Esponja vegetal", "name_ru_RU": "Люфа", "name_it_IT": "Luffa", "name_pt_PT": "Bucha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19287, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Heroism", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9745000004768372, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Heroism", "name_ko_KR": "다크문 카드: 영웅심", "name_fr_FR": "Carte de Sombrelune : Héroïsme", "name_de_DE": "Dunkelmond-Karte: Heldentum", "name_zh_CN": "暗月卡片:英雄", "name_es_ES": "Naipe de la Luna Negra: Heroísmo", "name_ru_RU": "Карта Новолуния: Героизм", "name_it_IT": "Carta di Lunacupa: Eroismo", "name_pt_PT": "Carta de Negraluna: Heroísmo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19288, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Blue Dragon", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.004699945449829, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Blue Dragon", "name_ko_KR": "다크문 카드: 푸른용", "name_fr_FR": "Carte de Sombrelune : Dragon bleu", "name_de_DE": "Dunkelmond-Karte: Blauer Drache", "name_zh_CN": "暗月卡片:蓝龙", "name_es_ES": "Naipe de la Luna Negra: Dragón Azul", "name_ru_RU": "Карта Новолуния: Синий Дракон", "name_it_IT": "Carta di Lunacupa: Drago Blu", "name_pt_PT": "Carta de Negraluna: Dragão Azul", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19289, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Maelstrom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082999467849731, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Maelstrom", "name_ko_KR": "다크문 카드: 혼돈의 소용돌이", "name_fr_FR": "Carte de Sombrelune : Maelström", "name_de_DE": "Dunkelmond-Karte: Mahlstrom", "name_zh_CN": "暗月卡片:漩涡", "name_es_ES": "Naipe de la Luna Negra: La Vorágine", "name_ru_RU": "Карта Новолуния: Водоворот", "name_it_IT": "Carta di Lunacupa: Maelstrom", "name_pt_PT": "Carta de Negraluna: Voragem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Twisting Nether", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0119999647140503, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Twisting Nether", "name_ko_KR": "다크문 카드: 뒤틀린 황천", "name_fr_FR": "Carte de Sombrelune : Néant distordu", "name_de_DE": "Dunkelmond-Karte: Wirbelnder Nether", "name_zh_CN": "暗月卡片:虚空", "name_es_ES": "Naipe de la Luna Negra: El Vacío Abisal", "name_ru_RU": "Карта Новолуния: Круговерть Пустоты", "name_it_IT": "Carta di Lunacupa: Distorsione Fatua", "name_pt_PT": "Carta de Negraluna: Espiral Etérea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19336, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcane-Infused Gem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9602000117301941, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Arcane-Infused Gem", "name_ko_KR": "비전 마력이 주입된 보석", "name_fr_FR": "Gemme imprégnée des Arcanes", "name_de_DE": "Arkanerfüllter Edelstein", "name_zh_CN": "奥术能量宝石", "name_es_ES": "Gema imbuida de Arcana", "name_ru_RU": "Заряженный магией самоцвет", "name_it_IT": "Gemma Infusa d'Arcano", "name_pt_PT": "Gema Infundida no Arcano", "on_use": true, "id_encounter": 1529, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19337, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Black Book", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9639000296592712, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "The Black Book", "name_ko_KR": "검은 고서", "name_fr_FR": "Le Livre noir", "name_de_DE": "Das schwarze Buch", "name_zh_CN": "黑龙之书", "name_es_ES": "El libro negro", "name_ru_RU": "Черная книга", "name_it_IT": "Libro Nero", "name_pt_PT": "O Livro Preto", "on_use": true, "id_encounter": 1529, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19339, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mind Quickening Gem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9711999893188477, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Mind Quickening Gem", "name_ko_KR": "사고 촉진의 보석", "name_fr_FR": "Gemme de vivacité d'esprit", "name_de_DE": "Edelstein des Gedankensprungs", "name_zh_CN": "思维加速宝石", "name_es_ES": "Gema de Estímulo mental", "name_ru_RU": "Дар Стремительной Мысли", "name_it_IT": "Gemma della Lestezza Mentale", "name_pt_PT": "Gema do Pensapresto", "on_use": true, "id_encounter": 1530, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19340, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Metamorphosis", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9749000072479248, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Metamorphosis", "name_ko_KR": "변화의 룬", "name_fr_FR": "Rune de transformation", "name_de_DE": "Rune der Metamorphose", "name_zh_CN": "变形符文", "name_es_ES": "Runa de metamorfosis", "name_ru_RU": "Руна метаморфозы", "name_it_IT": "Runa della Metamorfosi", "name_pt_PT": "Runa da Metamorfose", "on_use": true, "id_encounter": 1530, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19341, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lifegiving Gem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.978600025177002, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Lifegiving Gem", "name_ko_KR": "생명의 보석", "name_fr_FR": "Gemme donneuse de vie", "name_de_DE": "Lebensspendender Edelstein", "name_zh_CN": "生命宝石", "name_es_ES": "Gema dadora de vida", "name_ru_RU": "Животворный камень", "name_it_IT": "Gemma Vitale", "name_pt_PT": "Gema da Vivificação", "on_use": true, "id_encounter": 1531, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19342, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Venomous Totem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.982200026512146, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Venomous Totem", "name_ko_KR": "맹독의 토템", "name_fr_FR": "Totem venimeux", "name_de_DE": "Gifttotem", "name_zh_CN": "毒性图腾", "name_es_ES": "Tótem venenoso", "name_ru_RU": "Ядовитый тотем", "name_it_IT": "Totem Venefico", "name_pt_PT": "Totem Peçonhento", "on_use": true, "id_encounter": 1531, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19343, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scrolls of Blinding Light", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9858999848365784, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Scrolls of Blinding Light", "name_ko_KR": "빛의 결속 두루마리", "name_fr_FR": "Parchemin de lumière aveuglante", "name_de_DE": "Rollen des Blendenden Lichts", "name_zh_CN": "盲目光芒卷轴", "name_es_ES": "Pergaminos de Luz cegadora", "name_ru_RU": "Свитки Слепящего Света", "name_it_IT": "Pergamene della Luce Vincolante", "name_pt_PT": "Pergaminhos de Luz Cegante", "on_use": true, "id_encounter": 1532, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Natural Alignment Crystal", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9896000027656555, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Natural Alignment Crystal", "name_ko_KR": "자연 동화의 수정", "name_fr_FR": "Cristal d'alignement sur la nature", "name_de_DE": "Kristall der Naturverbundenheit", "name_zh_CN": "自然之盟水晶", "name_es_ES": "Cristal de alineación natural", "name_ru_RU": "Кристалл Природного Управления", "name_it_IT": "Cristallo dell'Allineamento Naturale", "name_pt_PT": "Cristal de Alinhamento Natural", "on_use": true, "id_encounter": 1532, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19345, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aegis of Preservation", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9932000041007996, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Aegis of Preservation", "name_ko_KR": "구원의 아이기스", "name_fr_FR": "Egide de préservation", "name_de_DE": "Aegis der Bewahrung", "name_zh_CN": "庇护者", "name_es_ES": "Égida de preservación", "name_ru_RU": "Эгида сохранения", "name_it_IT": "Scudo della Conservazione", "name_pt_PT": "Égide de Preservação", "on_use": true, "id_encounter": 1533, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19379, "race_mask": 18446744073709551615, "desc": "A silver liquid flows within the impenetrable ebony shell. The item feels pure. It radiates an essence of extreme power.", "pad2": "", "pad1": "", "pad0": "", "name": "Neltharion's Tear", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3556, "stat_alloc_2": 8444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 205863, "buy_price": 823454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Neltharion's Tear", "name_ko_KR": "넬타리온의 눈물", "name_fr_FR": "Larme de Neltharion", "name_de_DE": "Neltharions Träne", "name_zh_CN": "奈萨里奥之泪", "name_es_ES": "Lágrima de Neltharion", "name_ru_RU": "Слеза Нелтариона", "name_it_IT": "Lacrima di Neltharion", "name_pt_PT": "Lágrima de Neltharion", "on_use": false, "id_encounter": 1536, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19395, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rejuvenating Gem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7317, "stat_alloc_2": 5366, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103103, "buy_price": 412413, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9560999870300293, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Rejuvenating Gem", "name_ko_KR": "원기 회복의 보석", "name_fr_FR": "Gemme de récupération", "name_de_DE": "Edelstein der Verjüngung", "name_zh_CN": "恢复宝石", "name_es_ES": "Gema rejuvenecedora", "name_ru_RU": "Омолаживающий самоцвет", "name_it_IT": "Gemma Rinvigorente", "name_pt_PT": "Gema Rejuvenescedora", "on_use": false, "id_encounter": 1532, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19406, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Drake Fang Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2222, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 32, "stat_type_3": 13, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0230000019073486, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Drake Fang Talisman", "name_ko_KR": "비룡이빨 부적", "name_fr_FR": "Talisman croc-de-drake", "name_de_DE": "Drachenzahntalisman", "name_zh_CN": "龙牙饰物", "name_es_ES": "Dije de colmillo de draco", "name_ru_RU": "Талисман Драконьего Клыка", "name_it_IT": "Talismano della Zanna di Draco", "name_pt_PT": "Talismã de Presa de Draco", "on_use": false, "id_encounter": 1533, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19431, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Styleen's Impeding Scarab", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8049, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103117, "buy_price": 412471, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Styleen's Impeding Scarab", "name_ko_KR": "스틸린의 방어 스카라베", "name_fr_FR": "Scarabée d'obstruction de Styleen", "name_de_DE": "Styleens verhindernder Skarabäus", "name_zh_CN": "斯泰林的甲虫壳", "name_es_ES": "Escarabajo trabador de Styleen", "name_ru_RU": "Упрямый скарабей Стилины", "name_it_IT": "Scarabeo dell'Ostacolo di Styleen", "name_pt_PT": "Escaravelho Iminente de Styleen", "on_use": false, "id_encounter": 1534, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19812, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of the Dawn", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746999740600586, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rune of the Dawn", "name_ko_KR": "여명의 룬", "name_fr_FR": "Rune de l'Aube", "name_de_DE": "Rune der Dämmerung", "name_zh_CN": "黎明符文", "name_es_ES": "Runa del Alba", "name_ru_RU": "Руна Рассвета", "name_it_IT": "Runa dell'Alba", "name_pt_PT": "Runa da Aurora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19930, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mar'li's Eye", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73852, "buy_price": 295411, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9930999875068665, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mar'li's Eye", "name_ko_KR": "말리의 눈", "name_fr_FR": "Oeil de Mar'li", "name_de_DE": "Mar'lis Auge", "name_zh_CN": "玛尔里之眼", "name_es_ES": "Ojo de Mar'li", "name_ru_RU": "Глаз Мар'ли", "name_it_IT": "Occhio di Mar'li", "name_pt_PT": "Olho da Mar'li", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19947, "race_mask": 18446744073709551615, "desc": "The inscription reads: Fer really long castin'.", "pad2": "", "pad1": "", "pad0": "", "name": "Nat Pagle's Broken Reel", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86528, "buy_price": 346112, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0084999799728394, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Nat Pagle's Broken Reel", "name_ko_KR": "망가진 내트 페이글의 릴", "name_fr_FR": "Moulinet cassé de Nat Pagle", "name_de_DE": "Nat Pagles kaputte Spule", "name_zh_CN": "纳特·帕格的卷尺", "name_es_ES": "Carrete roto de Nat Pagle", "name_ru_RU": "Сломанный наколдовыватель Ната Пэгла", "name_it_IT": "Mulinello Rotto di Nat Pagle", "name_pt_PT": "Carretel Quebrado do Nat Pagle", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zandalarian Hero Badge", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10153, "buy_price": 50769, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0120999813079834, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Zandalarian Hero Badge", "name_ko_KR": "잔달라의 영웅 휘장", "name_fr_FR": "Ecusson de héros zandalarien", "name_de_DE": "Heldenabzeichen der Zandalari", "name_zh_CN": "赞达拉英雄徽记", "name_es_ES": "Distintivo de héroe de Zandalar", "name_ru_RU": "Геройский знак зандаларов", "name_it_IT": "Distintivo dell'Eroe degli Zandalari", "name_pt_PT": "Insígnia Heroica Zandalariana", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19949, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zandalarian Hero Medallion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10191, "buy_price": 50955, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0157999992370605, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Zandalarian Hero Medallion", "name_ko_KR": "잔달라의 영웅 메달", "name_fr_FR": "Médaillon de héros zandalarien", "name_de_DE": "Heldenmedaillon der Zandalari", "name_zh_CN": "赞达拉英雄勋章", "name_es_ES": "Medallón de héroe de Zandalar", "name_ru_RU": "Геройский медальон зандаларов", "name_it_IT": "Medaglione dell'Eroe degli Zandalari", "name_pt_PT": "Medalhão Heroico Zandalariano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19950, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zandalarian Hero Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10228, "buy_price": 51141, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0195000171661377, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Zandalarian Hero Charm", "name_ko_KR": "잔달라의 영웅 부적", "name_fr_FR": "Charme de héros zandalarien", "name_de_DE": "Heldenamulett der Zandalari", "name_zh_CN": "赞达拉英雄护符", "name_es_ES": "Talismán de héroe de Zandalar", "name_ru_RU": "Геройский оберег зандаларов", "name_it_IT": "Talismano dell'Eroe degli Zandalari", "name_pt_PT": "Patuá Heroico Zandalariano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19951, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gri'lek's Charm of Might", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13730, "buy_price": 68654, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0232000350952148, "flags_1": 524544, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 474, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Gri'lek's Charm of Might", "name_ko_KR": "그리렉의 힘의 부적", "name_fr_FR": "Charme de puissance de Gri'lek", "name_de_DE": "Gri'leks Amulett der Macht", "name_zh_CN": "格里雷克的力量护符", "name_es_ES": "Talismán de poderío de Gri'lek", "name_ru_RU": "Оберег могущества Гри'лека", "name_it_IT": "Talismano del Vigore di Gri'lek", "name_pt_PT": "Patuá do Poder de Gri'lek", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19952, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gri'lek's Charm of Valor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13779, "buy_price": 68896, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0268000364303589, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 475, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Gri'lek's Charm of Valor", "name_ko_KR": "그리렉의 용기의 부적", "name_fr_FR": "Charme de courage de Gri'lek", "name_de_DE": "Gri'leks Amulett der Ehre", "name_zh_CN": "格里雷克的勇气护符", "name_es_ES": "Talismán de valor de Gri'lek", "name_ru_RU": "Оберег доблести Гри'лека", "name_it_IT": "Talismano del Valore di Gri'lek", "name_pt_PT": "Patuá Valoroso de Gri'lek", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19953, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Charm of Beasts", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13828, "buy_price": 69144, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030500054359436, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 477, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Charm of Beasts", "name_ko_KR": "레나타키의 야수의 부적", "name_fr_FR": "Charme des bêtes de Renataki", "name_de_DE": "Renatakis Amulett der Bestien", "name_zh_CN": "雷纳塔基的野兽护符", "name_es_ES": "Talismán de bestias de Renataki", "name_ru_RU": "Звериный оберег Ренатаки", "name_it_IT": "Talismano delle Bestie di Renataki", "name_pt_PT": "Patuá Bestial de Renataki", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19954, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Charm of Trickery", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13878, "buy_price": 69392, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0341999530792236, "flags_1": 524544, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 478, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Charm of Trickery", "name_ko_KR": "레나타키의 계략의 부적", "name_fr_FR": "Charme de supercherie de Renataki", "name_de_DE": "Renatakis Amulett der Gaunerei", "name_zh_CN": "雷纳塔基的狡诈护符", "name_es_ES": "Talismán de artimañas de Renataki", "name_ru_RU": "Амулет коварства Ренатаки", "name_it_IT": "Talismano dell'Astuzia di Renataki", "name_pt_PT": "Patuá Ardiloso de Renataki", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19955, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Charm of Nature", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13926, "buy_price": 69634, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377999544143677, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 479, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Charm of Nature", "name_ko_KR": "우슐레이의 자연의 부적", "name_fr_FR": "Charme de nature de Wushoolay", "name_de_DE": "Wushoolays Amulett der Natur", "name_zh_CN": "乌苏雷的自然护符", "name_es_ES": "Talismán de naturaleza de Wushoolay", "name_ru_RU": "Амулет Природы Вушулая", "name_it_IT": "Talismano della Natura di Wushoolay", "name_pt_PT": "Patuá Natural de Vuxulai", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19956, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Charm of Spirits", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13976, "buy_price": 69882, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0414999723434448, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 476, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Charm of Spirits", "name_ko_KR": "우슐레이의 정기의 부적", "name_fr_FR": "Charme-esprits de Wushoolay", "name_de_DE": "Wushoolays Amulett der Geister", "name_zh_CN": "乌苏雷的灵魂护符", "name_es_ES": "Talismán de espíritus de Wushoolay", "name_ru_RU": "Амулет Духов Вушулая", "name_it_IT": "Talismano degli Spiriti di Wushoolay", "name_pt_PT": "Patuá Espiritual de Vuxulai", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19957, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hazza'rah's Charm of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14026, "buy_price": 70130, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045199990272522, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 481, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Hazza'rah's Charm of Destruction", "name_ko_KR": "하자라의 파괴의 부적", "name_fr_FR": "Charme de destruction d'Hazza'rah", "name_de_DE": "Hazza'rahs Amulett der Zerstörung", "name_zh_CN": "哈扎拉尔的毁灭护符", "name_es_ES": "Talismán de destrucción de Hazza'rah", "name_ru_RU": "Амулет разрушения Хазза'раха", "name_it_IT": "Talismano della Distruzione di Hazza'rah", "name_pt_PT": "Patuá Destruidor de Hazza'rah", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19958, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hazza'rah's Charm of Healing", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14075, "buy_price": 70379, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 480, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Hazza'rah's Charm of Healing", "name_ko_KR": "하자라의 치유의 부적", "name_fr_FR": "Charme de soin d'Hazza'rah", "name_de_DE": "Hazza'rahs Amulett der Heilung", "name_zh_CN": "哈扎拉尔的治疗护符", "name_es_ES": "Talismán de sanación de Hazza'rah", "name_ru_RU": "Амулет исцеления Хазза'раха", "name_it_IT": "Talismano Curativo di Hazza'rah", "name_pt_PT": "Patuá Curativo de Hazza'rah", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19959, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hazza'rah's Charm of Magic", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12780, "buy_price": 63904, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524000287055969, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 482, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Hazza'rah's Charm of Magic", "name_ko_KR": "하자라의 마법의 부적", "name_fr_FR": "Charme de magie d'Hazza'rah", "name_de_DE": "Hazza'rahs Amulett der Magie", "name_zh_CN": "哈扎拉尔的魔法护符", "name_es_ES": "Talismán de magia de Hazza'rah", "name_ru_RU": "Амулет магии Хазза'раха", "name_it_IT": "Talismano Magico di Hazza'rah", "name_pt_PT": "Patuá Mágico de Hazza'rah", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19979, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hook of the Master Angler", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 32768, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9787999987602234, "flags_1": 192, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Hook of the Master Angler", "name_ko_KR": "낚시왕의 낚싯바늘", "name_fr_FR": "Hameçon du maître pêcheur", "name_de_DE": "Angelhaken des Anglermeisters", "name_zh_CN": "钓鱼大师鱼钩", "name_es_ES": "Anzuelo de Maestro pescador", "name_ru_RU": "Крючок мастера-рыболова", "name_it_IT": "Amo del Maestro Pescatore", "name_pt_PT": "Anzol do Pescador-mestre", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19990, "race_mask": 18446744073709551615, "desc": "A friend in need is a friend without beads.", "pad2": "", "pad1": "", "pad0": "", "name": "Blessed Prayer Beads", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0191999673843384, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Blessed Prayer Beads", "name_ko_KR": "축복받은 기원의 묵주", "name_fr_FR": "Chapelet béni", "name_de_DE": "Gesegnete Gebetsperlen", "name_zh_CN": "祝福珠串", "name_es_ES": "Cuentas de rezo benditas", "name_ru_RU": "Благословенные четки", "name_it_IT": "Perle della Preghiera Benedette", "name_pt_PT": "Contas de Oração Abençoadas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19991, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Devilsaur Eye", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0228999853134155, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Devilsaur Eye", "name_ko_KR": "데빌사우루스 눈", "name_fr_FR": "Oeil de diablosaure", "name_de_DE": "Auge eines Teufelssauriers", "name_zh_CN": "魔暴龙眼", "name_es_ES": "Ojo de demosaurio", "name_ru_RU": "Глаз дьявозавра", "name_it_IT": "Occhio del Gigantosauro", "name_pt_PT": "Olho de Demossauro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19992, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Devilsaur Tooth", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2273, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0266000032424927, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Devilsaur Tooth", "name_ko_KR": "데빌사우루스 이빨", "name_fr_FR": "Dent de diablosaure", "name_de_DE": "Zahn eines Teufelssauriers", "name_zh_CN": "魔暴龙牙", "name_es_ES": "Diente de demosaurio", "name_ru_RU": "Зуб дьявозавра", "name_it_IT": "Dente di Gigantosauro", "name_pt_PT": "Dente de Demossauro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20036, "race_mask": 18446744073709551615, "desc": "Unpredictability leads to both victory and death.", "pad2": "", "pad1": "", "pad0": "", "name": "Fire Ruby", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2750, "buy_price": 11002, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674000144004822, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fire Ruby", "name_ko_KR": "화염 루비", "name_fr_FR": "Rubis de feu", "name_de_DE": "Feuerrubin", "name_zh_CN": "火焰宝石", "name_es_ES": "Rubí de fuego", "name_ru_RU": "Огненный рубин", "name_it_IT": "Rubino di Fuoco", "name_pt_PT": "Rubi de Fogo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20071, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Arathor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 20072, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Arathor", "name_ko_KR": "아라소르 부적", "name_fr_FR": "Talisman d'Arathor", "name_de_DE": "Talisman von Arathor", "name_zh_CN": "阿拉索护符", "name_es_ES": "Dije de Arathor", "name_ru_RU": "Талисман Аратора", "name_it_IT": "Talismano di Arathor", "name_pt_PT": "Talismã de Arathor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20072, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiler's Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524000287055969, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 20071, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Defiler's Talisman", "name_ko_KR": "파멸단 부적", "name_fr_FR": "Talisman de Profanateur", "name_de_DE": "Talisman der Entweihten", "name_zh_CN": "污染者护符", "name_es_ES": "Dije de Rapiñador", "name_ru_RU": "Талисман Осквернителя", "name_it_IT": "Talismano dei Profanatori", "name_pt_PT": "Talismã do Profanador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20130, "race_mask": 18446744073709551615, "desc": "Served on the rocks.", "pad2": "", "pad1": "", "pad0": "", "name": "Diamond Flask", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9711999893188477, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Diamond Flask", "name_ko_KR": "다이아몬드 물통", "name_fr_FR": "Flacon de diamant", "name_de_DE": "Diamantenfläschchen", "name_zh_CN": "钻石水瓶", "name_es_ES": "Frasco de diamante", "name_ru_RU": "Алмазный настой", "name_it_IT": "Tonico del Diamante", "name_pt_PT": "Frasco de Diamante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20503, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enamored Water Spirit", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0490000247955322, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Enamored Water Spirit", "name_ko_KR": "사로잡힌 물의 정령", "name_fr_FR": "Esprit de l'eau amoureux", "name_de_DE": "Entzückter Wassergeist", "name_zh_CN": "被迷惑的水之魂", "name_es_ES": "Espíritu de agua enamorado", "name_ru_RU": "Влюбленный водный дух", "name_it_IT": "Spirito dell'Acqua dell'Innamorato", "name_pt_PT": "Espírito de Água Enamorado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20512, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sanctified Orb", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0084999799728394, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sanctified Orb", "name_ko_KR": "축성의 보주", "name_fr_FR": "Orbe sanctifié", "name_de_DE": "Geweihte Kugel", "name_zh_CN": "神圣宝珠", "name_es_ES": "Orbe santificado", "name_ru_RU": "Освященная сфера", "name_it_IT": "Globo Consacrato", "name_pt_PT": "Orbe Santificado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20534, "race_mask": 18446744073709551615, "desc": "Dark rituals are trapped in dark gems.", "pad2": "", "pad1": "", "pad0": "", "name": "Abyss Shard", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6818, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3975, "buy_price": 15903, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Abyss Shard", "name_ko_KR": "나락의 조각", "name_fr_FR": "Éclat abyssal", "name_de_DE": "Abysssplitter", "name_zh_CN": "深渊裂片", "name_es_ES": "Fragmento Abisal", "name_ru_RU": "Осколок Бездны", "name_it_IT": "Scheggia Abissale", "name_pt_PT": "Fragmento do Abismo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20636, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hibernation Crystal", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89103, "buy_price": 356415, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Hibernation Crystal", "name_ko_KR": "휴면의 수정", "name_fr_FR": "Cristal d'hibernation", "name_de_DE": "Hibernationskristall", "name_zh_CN": "休眠水晶", "name_es_ES": "Cristal de hibernación", "name_ru_RU": "Кристалл спячки", "name_it_IT": "Cristallo dell'Ibernazione", "name_pt_PT": "Cristal de Hibernação", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiler's Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0008000135421753, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21117, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "Defiler's Talisman", "name_ko_KR": "파멸단 부적", "name_fr_FR": "Talisman de Profanateur", "name_de_DE": "Talisman der Entweihten", "name_zh_CN": "污染者护符", "name_es_ES": "Dije de Rapiñador", "name_ru_RU": "Талисман Осквернителя", "name_it_IT": "Talismano dei Profanatori", "name_pt_PT": "Talismã do Profanador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiler's Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0045000314712524, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21118, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 16, "inv_type": 12, "quality": 3, "name_en_US": "Defiler's Talisman", "name_ko_KR": "파멸단 부적", "name_fr_FR": "Talisman de Profanateur", "name_de_DE": "Talisman der Entweihten", "name_zh_CN": "污染者护符", "name_es_ES": "Dije de Rapiñador", "name_ru_RU": "Талисман Осквернителя", "name_it_IT": "Talismano dei Profanatori", "name_pt_PT": "Talismã do Profanador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Arathor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082000494003296, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21115, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Arathor", "name_ko_KR": "아라소르 부적", "name_fr_FR": "Talisman d'Arathor", "name_de_DE": "Talisman von Arathor", "name_zh_CN": "阿拉索护符", "name_es_ES": "Dije de Arathor", "name_ru_RU": "Талисман Аратора", "name_it_IT": "Talismano di Arathor", "name_pt_PT": "Talismã de Arathor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21118, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Arathor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21116, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 16, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Arathor", "name_ko_KR": "아라소르 부적", "name_fr_FR": "Talisman d'Arathor", "name_de_DE": "Talisman von Arathor", "name_zh_CN": "阿拉索护符", "name_es_ES": "Dije de Arathor", "name_ru_RU": "Талисман Аратора", "name_it_IT": "Talismano di Arathor", "name_pt_PT": "Talismã de Arathor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21119, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Arathor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0154999494552612, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21120, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 19, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 12, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Arathor", "name_ko_KR": "아라소르 부적", "name_fr_FR": "Talisman d'Arathor", "name_de_DE": "Talisman von Arathor", "name_zh_CN": "阿拉索护符", "name_es_ES": "Dije de Arathor", "name_ru_RU": "Талисман Аратора", "name_it_IT": "Talismano di Arathor", "name_pt_PT": "Talismã de Arathor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21120, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiler's Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045699954032898, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21119, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 19, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 12, "inv_type": 12, "quality": 3, "name_en_US": "Defiler's Talisman", "name_ko_KR": "파멸단 부적", "name_fr_FR": "Talisman de Profanateur", "name_de_DE": "Talisman der Entweihten", "name_zh_CN": "污染者护符", "name_es_ES": "Dije de Rapiñador", "name_ru_RU": "Талисман Осквернителя", "name_it_IT": "Talismano dei Profanatori", "name_pt_PT": "Talismã do Profanador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21180, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Earthstrike", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045300006866455, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Earthstrike", "name_ko_KR": "대지의 격동", "name_fr_FR": "Choc de terre", "name_de_DE": "Erdschlag", "name_zh_CN": "大地之击", "name_es_ES": "Golpe de tierra", "name_ru_RU": "Земной удар", "name_it_IT": "Assalto Terrestre", "name_pt_PT": "Golpe Terreno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grace of Earth", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0490000247955322, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Grace of Earth", "name_ko_KR": "대지의 은총", "name_fr_FR": "Grâce de la terre", "name_de_DE": "Erdanmut", "name_zh_CN": "大地之握", "name_es_ES": "Gracia de la Tierra", "name_ru_RU": "Благодать Земли", "name_it_IT": "Grazia della Terra", "name_pt_PT": "Dádiva da Terra", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21326, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defender of the Timbermaw", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 10226, "buy_price": 51131, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0192999839782715, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 576, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Defender of the Timbermaw", "name_ko_KR": "나무구렁 수호자", "name_fr_FR": "Défenseur des Grumegueules", "name_de_DE": "Verteidiger der Holzschlundfeste", "name_zh_CN": "木喉防御者", "name_es_ES": "Defensor de los Fauces de Madera", "name_ru_RU": "Защита Древобрюхов", "name_it_IT": "Difensore dei Mordilegno", "name_pt_PT": "Defensor dos Presamatos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21473, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Moam", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 82878, "buy_price": 331515, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Eye of Moam", "name_ko_KR": "모암의 눈", "name_fr_FR": "Oeil de Moam", "name_de_DE": "Auge von Moam", "name_zh_CN": "莫阿姆之眼", "name_es_ES": "Ojo de Moam", "name_ru_RU": "Глаз Моама", "name_it_IT": "Occhio di Moam", "name_pt_PT": "Olho de Moam", "on_use": true, "id_encounter": 1539, "id_journal_instance": 743, "id_map": 509, "instance_type": 2}, {"id": 21488, "race_mask": 18446744073709551615, "desc": "Ouch", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of Chitinous Spikes", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67812, "buy_price": 271251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9785000085830688, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Fetish of Chitinous Spikes", "name_ko_KR": "껍질쐐기 우상", "name_fr_FR": "Fétiche d'épines chitineuses", "name_de_DE": "Chitinstachelfetisch", "name_zh_CN": "虫刺塑像", "name_es_ES": "Fetiche de pinchos de quitina", "name_ru_RU": "Фетиш Хитиновых Шипов", "name_it_IT": "Feticcio delle Spine Chitinose", "name_pt_PT": "Fetiche de Espinhos Quitinosos", "on_use": true, "id_encounter": 1540, "id_journal_instance": 743, "id_map": 509, "instance_type": 2}, {"id": 21565, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Perfection", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3684, "stat_alloc_2": 10526, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9934999942779541, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 2000, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Rune of Perfection", "name_ko_KR": "완수의 룬", "name_fr_FR": "Rune de perfection", "name_de_DE": "Rune der Perfektion", "name_zh_CN": "完美贡献符文", "name_es_ES": "Runa de perfección", "name_ru_RU": "Руна совершенства", "name_it_IT": "Runa della Perfezione", "name_pt_PT": "Runa da Perfeição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21566, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Perfection", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4000, "stat_alloc_2": 10000, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 16, "class_mask": 2000, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Rune of Perfection", "name_ko_KR": "완수의 룬", "name_fr_FR": "Rune de perfection", "name_de_DE": "Rune der Perfektion", "name_zh_CN": "完美贡献符文", "name_es_ES": "Runa de perfección", "name_ru_RU": "Руна совершенства", "name_it_IT": "Runa della Perfezione", "name_pt_PT": "Runa da Perfeição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21567, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Duty", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3684, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0008000135421753, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 527, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Rune of Duty", "name_ko_KR": "의무의 룬", "name_fr_FR": "Rune de devoir", "name_de_DE": "Rune der Pflicht", "name_zh_CN": "义务符文", "name_es_ES": "Runa de deber", "name_ru_RU": "Руна долга", "name_it_IT": "Runa del Dovere", "name_pt_PT": "Runa do Dever", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21568, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Duty", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0045000314712524, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 16, "class_mask": 527, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Rune of Duty", "name_ko_KR": "의무의 룬", "name_fr_FR": "Rune de devoir", "name_de_DE": "Rune der Pflicht", "name_zh_CN": "义务符文", "name_es_ES": "Runa de deber", "name_ru_RU": "Руна долга", "name_it_IT": "Runa del Dovere", "name_pt_PT": "Runa do Dever", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vanquished Tentacle of C'Thun", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 108030, "buy_price": 432121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9713000059127808, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Vanquished Tentacle of C'Thun", "name_ko_KR": "정복당한 크툰의 촉수", "name_fr_FR": "Tentacule de C'Thun vaincu", "name_de_DE": "Bezwungenes Tentakel von C'Thun", "name_zh_CN": "克苏恩的触须", "name_es_ES": "Tentáculo derrotado de C'Thun", "name_ru_RU": "Безжизненное щупальце К'Туна", "name_it_IT": "Tentacolo Dominato di C'thun", "name_pt_PT": "Tentáculo Derrotado de C'Thun", "on_use": true, "id_encounter": 1551, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 21625, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scarab Brooch", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 83030, "buy_price": 332121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0196000337600708, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Scarab Brooch", "name_ko_KR": "스카라베 브로치", "name_fr_FR": "Broche scarabée", "name_de_DE": "Skarabäusbrosche", "name_zh_CN": "甲虫胸针", "name_es_ES": "Broche escarabajo", "name_ru_RU": "Брошь-скарабей", "name_it_IT": "Spilla Scarabeo", "name_pt_PT": "Broche do Escaravelho", "on_use": true, "id_encounter": 1548, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 21647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of the Sand Reaver", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86370, "buy_price": 345481, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0268000364303589, "flags_1": 524544, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Fetish of the Sand Reaver", "name_ko_KR": "모래약탈자의 우상", "name_fr_FR": "Fétiche du saccageur des sables", "name_de_DE": "Fetisch des Sandhäschers", "name_zh_CN": "沙漠掠夺者塑像", "name_es_ES": "Fetiche del Atracador de arena", "name_ru_RU": "Фетиш песчаного разбойника", "name_it_IT": "Feticcio del Razziatore delle Sabbie", "name_pt_PT": "Fetiche do Aniquilador Arenoso", "on_use": true, "id_encounter": 1545, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 21670, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badge of the Swarmguard", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80303, "buy_price": 321213, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9641000032424927, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Badge of the Swarmguard", "name_ko_KR": "전투감시병의 휘장", "name_fr_FR": "Ecusson de garde-essaim", "name_de_DE": "Abzeichen der Schwarmwache", "name_zh_CN": "虫群卫士徽章", "name_es_ES": "Distintivo del guardaenjambre", "name_ru_RU": "Жетон Стража Роя", "name_it_IT": "Distintivo della Guardia dello Sciame", "name_pt_PT": "Distintivo dos Guarda-enxames", "on_use": true, "id_encounter": 1544, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 21685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Scarab", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87120, "buy_price": 348481, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045699954032898, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Petrified Scarab", "name_ko_KR": "석화된 스카라베", "name_fr_FR": "Scarabée pétrifié", "name_de_DE": "Versteinerter Skarabäus", "name_zh_CN": "石化甲虫", "name_es_ES": "Escarabajo petrificado", "name_ru_RU": "Окаменелый скарабей", "name_it_IT": "Scarabeo Pietrificato", "name_pt_PT": "Escaravelho Petrificado", "on_use": true, "id_encounter": 1547, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 21748, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Jade Owl", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 1667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.982699990272522, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 200, "req_skill": 2524, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 15, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Jade Owl", "name_ko_KR": "조각상 - 비취 올빼미", "name_fr_FR": "Figurine de chouette de jade", "name_de_DE": "Figur - Jadeeule", "name_zh_CN": "雕像 - 碧玉猫头鹰", "name_es_ES": "Figurilla: búho de jade", "name_ru_RU": "Статуэтка нефритовой совы", "name_it_IT": "Statuetta - Gufo di Giada", "name_pt_PT": "Estatueta - Coruja de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21756, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Golden Hare", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0120999813079834, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 200, "req_skill": 2524, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 15, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Golden Hare", "name_ko_KR": "조각상 - 황금 토끼", "name_fr_FR": "Figurine de lièvre doré", "name_de_DE": "Figur - Goldener Hase", "name_zh_CN": "雕像 - 金兔", "name_es_ES": "Figurilla: liebre dorada", "name_ru_RU": "Статуэтка золотого зайца", "name_it_IT": "Statuetta - Lepre Dorata", "name_pt_PT": "Estatueta - Lebre Dourada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21758, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Black Pearl Panther", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0195000171661377, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 215, "req_skill": 2524, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 16, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Black Pearl Panther", "name_ko_KR": "조각상 - 검은 진주 표범", "name_fr_FR": "Figurine de panthère de perle noire", "name_de_DE": "Figur - Schwarzer Perlenpanther", "name_zh_CN": "雕像 - 黑珍珠猎豹", "name_es_ES": "Figurilla: pantera de perla negra", "name_ru_RU": "Статуэтка пантеры из черного жемчуга", "name_it_IT": "Statuetta - Pantera di Perla Nera", "name_pt_PT": "Estatueta - Pantera de Pérola Negra", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21760, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Truesilver Crab", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0268000364303589, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 225, "req_skill": 2524, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Truesilver Crab", "name_ko_KR": "조각상 - 진은 게", "name_fr_FR": "Figurine de crabe en vrai-argent", "name_de_DE": "Figur - Echtsilberkrebs", "name_zh_CN": "雕像 - 真银螃蟹", "name_es_ES": "Figurilla: cangrejo de veraplata", "name_ru_RU": "Статуэтка краба из истинного серебра", "name_it_IT": "Statuetta - Granchio di Verargento", "name_pt_PT": "Estatueta - Caranguejo de Veraprata", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Truesilver Boar", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9642000198364258, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 235, "req_skill": 2524, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 18, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Truesilver Boar", "name_ko_KR": "조각상 - 진은 멧돼지", "name_fr_FR": "Figurine de sanglier en vrai-argent", "name_de_DE": "Figur - Echtsilbereber", "name_zh_CN": "雕像 - 真银野猪", "name_es_ES": "Figurilla: jabalí de veraplata", "name_ru_RU": "Статуэтка вепря из истинного серебра", "name_it_IT": "Statuetta - Cinghiale di Verargento", "name_pt_PT": "Estatueta - Javali de Veraprata", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21769, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Ruby Serpent", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2353, "stat_alloc_2": 2353, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.986299991607666, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 260, "req_skill": 2524, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 20, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Ruby Serpent", "name_ko_KR": "조각상 - 루비 뱀", "name_fr_FR": "Figurine de serpent de rubis", "name_de_DE": "Figur - Rubinschlange", "name_zh_CN": "雕像 - 红宝石蛇", "name_es_ES": "Figurilla: serpiente de rubí", "name_ru_RU": "Статуэтка рубиновой змеи", "name_it_IT": "Statuetta - Serpente di Rubino", "name_pt_PT": "Estatueta - Serpente de Rubi", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21777, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Emerald Owl", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3750, "buy_price": 15000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 285, "req_skill": 2524, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Emerald Owl", "name_ko_KR": "조각상 - 에메랄드 올빼미", "name_fr_FR": "Figurine de chouette d'émeraude", "name_de_DE": "Figur - Smaragdeule", "name_zh_CN": "雕像 - 翡翠猫头鹰", "name_es_ES": "Figurilla: búho de esmeralda", "name_ru_RU": "Статуэтка изумрудной совы", "name_it_IT": "Statuetta - Gufo di Smeraldo", "name_pt_PT": "Estatueta - Coruja de Esmeralda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21784, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Black Diamond Crab", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9678000211715698, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 300, "req_skill": 2524, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Black Diamond Crab", "name_ko_KR": "조각상 - 검은 다이아몬드 게", "name_fr_FR": "Figurine de crabe de diamant noir", "name_de_DE": "Figur - Schwarzer Diamantkrebs", "name_zh_CN": "雕像 - 黑钻石螃蟹", "name_es_ES": "Figurilla: cangrejo de diamante negro", "name_ru_RU": "Статуэтка черного алмазного краба", "name_it_IT": "Statuetta - Granchio di Diamante Nero", "name_pt_PT": "Estatueta - Caranguejo de Diamante Preto", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21789, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Dark Iron Scorpid", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3462, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9861000180244446, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 300, "req_skill": 2524, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Dark Iron Scorpid", "name_ko_KR": "조각상 - 검은무쇠 전갈", "name_fr_FR": "Figurine de scorpide en sombrefer", "name_de_DE": "Figur - Dunkeleisenskorpid", "name_zh_CN": "雕像 - 黑铁蝎", "name_es_ES": "Figurilla: escórpido de hierro negro", "name_ru_RU": "Статуэтка скорпида из черного железа", "name_it_IT": "Statuetta - Scorpide di Ferroscuro", "name_pt_PT": "Estatuteta - Escorpídeo de Ferro Negro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21891, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of the Fallen Star", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 99378, "buy_price": 397512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0192999839782715, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Shard of the Fallen Star", "name_ko_KR": "운석 파편", "name_fr_FR": "Éclat de l'étoile tombée", "name_de_DE": "Splitter des gefallenen Sterns", "name_zh_CN": "坠落星辰碎片", "name_es_ES": "Fragmento de la estrella caída", "name_ru_RU": "Осколок упавшей звезды", "name_it_IT": "Frammento della Stella Caduta", "name_pt_PT": "Fragmento da Estrela Caída", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 22268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Infused Emblem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3377, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66290, "buy_price": 265161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0382000207901, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Draconic Infused Emblem", "name_ko_KR": "용력의 문장", "name_fr_FR": "Emblème draconique imprégné", "name_de_DE": "Emblem der drakonischen Macht", "name_zh_CN": "龙人能量徽章", "name_es_ES": "Emblema dracónico imbuido", "name_ru_RU": "Талисман драконьей силы", "name_it_IT": "Emblema Draconico Infuso", "name_pt_PT": "Emblema Dracônico Infuso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 22321, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Wyrmthalak", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10539, "buy_price": 42158, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0120999813079834, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Wyrmthalak", "name_ko_KR": "웜타라크의 심장", "name_fr_FR": "Cœur de Wyrmthalak", "name_de_DE": "Herz von Wyrmthalak", "name_zh_CN": "维姆萨拉克之心", "name_es_ES": "Corazón de Vermisthalak", "name_ru_RU": "Сердце Змейталака", "name_it_IT": "Cuore di Dragthalak", "name_pt_PT": "Coração de Wyrmthalak", "on_use": false, "id_encounter": 396, "id_journal_instance": 229, "id_map": 229, "instance_type": 1}, {"id": 22678, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Ascendance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 111303, "buy_price": 445213, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Ascendance", "name_ko_KR": "승기의 부적", "name_fr_FR": "Talisman d'ascendance", "name_de_DE": "Talisman der Überlegenheit", "name_zh_CN": "优越护符", "name_es_ES": "Dije de Ascendiente", "name_ru_RU": "Талисман Господства", "name_it_IT": "Talismano dell'Ascendenza", "name_pt_PT": "Talismã da Ascendência", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 22954, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kiss of the Spider", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3043, "stat_alloc_2": 2174, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940000176429749, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Kiss of the Spider", "name_ko_KR": "거미의 입맞춤", "name_fr_FR": "Baiser de l'araignée", "name_de_DE": "Kuss der Spinne", "name_zh_CN": "蜘蛛之吻", "name_es_ES": "Beso de la araña", "name_ru_RU": "Поцелуй паука", "name_it_IT": "Bacio del Ragno", "name_pt_PT": "Beijo da Aranha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23001, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Diminution", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6087, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0460000038146973, "flags_1": 524544, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Diminution", "name_ko_KR": "감쇠의 눈", "name_fr_FR": "Oeil de diminution", "name_de_DE": "Auge des Schwunds", "name_zh_CN": "衰落之眼", "name_es_ES": "Ojo de Disminución", "name_ru_RU": "Глаз убывания", "name_it_IT": "Occhio dell'Indebolimento", "name_pt_PT": "Olho da Diminuição", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23027, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmth of Forgiveness", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5652, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9678000211715698, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Warmth of Forgiveness", "name_ko_KR": "용서의 온기", "name_fr_FR": "Cordialité du pardon", "name_de_DE": "Güte der Vergebung", "name_zh_CN": "宽恕的热情", "name_es_ES": "Calor de Perdón", "name_ru_RU": "Тепло Прощения", "name_it_IT": "Calore del Perdono", "name_pt_PT": "Cordialidade do Perdão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23040, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glyph of Deflection", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0420000553131104, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Glyph of Deflection", "name_ko_KR": "굴곡의 문양", "name_fr_FR": "Glyphe de déviation", "name_de_DE": "Glyphe der Abwehr", "name_zh_CN": "偏斜雕文", "name_es_ES": "Glifo de Desvío", "name_ru_RU": "Символ отражения", "name_it_IT": "Gioiello della Deviazione", "name_pt_PT": "Glifo de Deflexão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Slayer's Crest", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045699954032898, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Slayer's Crest", "name_ko_KR": "학살자의 문장", "name_fr_FR": "Blason de tueur", "name_de_DE": "Wappen des Schlächters", "name_zh_CN": "屠龙者的纹章", "name_es_ES": "Blasón de destripador", "name_ru_RU": "Гребень убийцы", "name_it_IT": "Amuleto dell'Omicida", "name_pt_PT": "Escudo do Matador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Loatheb's Reflection", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2826, "stat_alloc_2": 2826, "stat_alloc_3": 2826, "stat_alloc_4": 2826, "stat_alloc_5": 2826, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 51, "stat_type_2": 52, "stat_type_3": 55, "stat_type_4": 56, "stat_type_5": 54, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.049399971961975, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Loatheb's Reflection", "name_ko_KR": "로데브의 반영", "name_fr_FR": "Reflet d'Horreb", "name_de_DE": "Loathebs Abglanz", "name_zh_CN": "洛欧塞布之影", "name_es_ES": "Reflejo de Loatheb", "name_ru_RU": "Отражение Лотхиба", "name_it_IT": "Riflesso di Loatheb", "name_pt_PT": "Reflexão de Repugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23046, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Restrained Essence of Sapphiron", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7083, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9639999866485596, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "The Restrained Essence of Sapphiron", "name_ko_KR": "억제된 사피론의 정수", "name_fr_FR": "L'essence contenue de Saphiron", "name_de_DE": "Die gebundene Essenz Saphirons", "name_zh_CN": "萨菲隆的精华", "name_es_ES": "La esencia contenida de Sapphiron", "name_ru_RU": "Плененная сущность Сапфирона", "name_it_IT": "Essenza Intrappolata di Zaffirion", "name_pt_PT": "A Essência Contida de Sapphiron", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23047, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of the Dead", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Eye of the Dead", "name_ko_KR": "사자의 눈", "name_fr_FR": "Oeil du mort", "name_de_DE": "Auge des Todes", "name_zh_CN": "亡者之眼", "name_es_ES": "Ojo de los muertos", "name_ru_RU": "Глаз Мертвого", "name_it_IT": "Occhio del Morto", "name_pt_PT": "Olho dos Mortos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23206, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Champion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0159000158309937, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Mark of the Champion", "name_ko_KR": "용사의 징표", "name_fr_FR": "Marque de champion", "name_de_DE": "Mal des Helden", "name_zh_CN": "勇士印记", "name_es_ES": "Marca del Campeón", "name_ru_RU": "Знак чемпиона", "name_it_IT": "Marchio del Campione", "name_pt_PT": "Marca do Campeão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23207, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Champion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0196000337600708, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Mark of the Champion", "name_ko_KR": "용사의 징표", "name_fr_FR": "Marque de champion", "name_de_DE": "Mal des Helden", "name_zh_CN": "勇士印记", "name_es_ES": "Marca del Campeón", "name_ru_RU": "Знак чемпиона", "name_it_IT": "Marchio del Campione", "name_pt_PT": "Marca do Campeão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23558, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Burrower's Shell", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1807, "buy_price": 7230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9901000261306763, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "The Burrower's Shell", "name_ko_KR": "땅무지의 껍질", "name_fr_FR": "La Carapace du fouisseur", "name_de_DE": "Panzer des Wühlers", "name_zh_CN": "穴居虫之壳", "name_es_ES": "La coraza del perforador", "name_ru_RU": "Панцирь копателя", "name_it_IT": "Guscio dello Scavaterra", "name_pt_PT": "A Carapaça do Escavador", "on_use": true, "id_encounter": 1550, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 23570, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jom Gabbar", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1807, "buy_price": 7230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9605000019073486, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Jom Gabbar", "name_ko_KR": "좀 가바르", "name_fr_FR": "Jom Gabbar", "name_de_DE": "Jom Gabbar", "name_zh_CN": "沙虫之毒", "name_es_ES": "Jom Gabbar", "name_ru_RU": "Джом Габбар", "name_it_IT": "Jom Gabbar", "name_pt_PT": "Jom Gabbar", "on_use": true, "id_encounter": 1550, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 23714, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Perpetual Purple Firework", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0273000001907349, "flags_1": 128, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 12, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Perpetual Purple Firework", "name_ko_KR": "영원한 보라색 폭죽", "name_fr_FR": "Feu d'artifice violet perpétuel", "name_de_DE": "Unerschöpfliches lila Feuerwerk", "name_zh_CN": "永久紫色焰火", "name_es_ES": "Fuegos artificiales morados perpetuos", "name_ru_RU": "Нескончаемый лиловый фейерверк", "name_it_IT": "Fuochi d'Artificio Viola Perpetui", "name_pt_PT": "Fogos de Artifício Roxos Perpétuos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23716, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carved Ogre Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0347000360488892, "flags_1": 128, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Carved Ogre Idol", "name_ko_KR": "오우거 우상 조각", "name_fr_FR": "Idole d'ogre sculptée", "name_de_DE": "Geschnitzter Ogergötze", "name_zh_CN": "食人魔玩偶", "name_es_ES": "Ídolo de ogro tallado", "name_ru_RU": "Резной огрский идол", "name_it_IT": "Idolo di Ogre Scolpito", "name_pt_PT": "Ídolo de Ogro Entalhado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23835, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Poultryizer", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15517, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 20219, "sell_price": 22500, "buy_price": 90000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95660001039505, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 40, "req_skill": 2505, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Gnomish Poultryizer", "name_ko_KR": "노움 꼬꼬댁 변신장치", "name_fr_FR": "Pouletisateur gnome", "name_de_DE": "Gnomischer Geflügelisierer", "name_zh_CN": "侏儒变鸡器", "name_es_ES": "Pollotizador gnómico", "name_ru_RU": "Гномский полюсный птицефикатор", "name_it_IT": "Pollizzatore Gnomesco", "name_pt_PT": "Galinhaitor Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23836, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Rocket Launcher", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 20222, "sell_price": 22500, "buy_price": 90000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868000149726868, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2505, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Goblin Rocket Launcher", "name_ko_KR": "고블린 로켓 발사기", "name_fr_FR": "Lance-roquettes gobelin", "name_de_DE": "Goblinraketenwerfer", "name_zh_CN": "地精火箭发射器", "name_es_ES": "Lanzacohetes goblin", "name_ru_RU": "Гоблинский ракетомет", "name_it_IT": "Spararazzo dei Goblin", "name_pt_PT": "Lança-foguetes Goblínico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24124, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Felsteel Boar", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12000, "buy_price": 48000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937000274658203, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 70, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Felsteel Boar", "name_ko_KR": "조각상 - 지옥강철 멧돼지", "name_fr_FR": "Figurine de sanglier en gangracier", "name_de_DE": "Figur - Teufelsstahleber", "name_zh_CN": "雕像 - 魔钢野猪", "name_es_ES": "Figurilla: jabalí de acero vil", "name_ru_RU": "Статуэтка вепря из оскверненной стали", "name_it_IT": "Statuetta - Cinghiale di Vilacciaio", "name_pt_PT": "Estatueta - Javali de Açovil", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24125, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Dawnstone Crab", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973999857902527, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 70, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Dawnstone Crab", "name_ko_KR": "조각상 - 여명석 게", "name_fr_FR": "Figurine de crabe de pierre d'aube", "name_de_DE": "Figur - Dämmersteinkrebs", "name_zh_CN": "雕像 - 黎明石螃蟹", "name_es_ES": "Figurilla: cangrejo de piedra del alba", "name_ru_RU": "Статуэтка краба из зоревика", "name_it_IT": "Statuetta - Granchio di Pietraurora", "name_pt_PT": "Estatueta - Caranguejo de Aurolita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24126, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Living Ruby Serpent", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4792, "stat_alloc_2": 6875, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276000499725342, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 70, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Living Ruby Serpent", "name_ko_KR": "조각상 - 생명의 루비 뱀", "name_fr_FR": "Figurine de serpent de rubis vivant", "name_de_DE": "Figur - Lebendige Rubinschlange", "name_zh_CN": "雕像 - 红曜石毒蛇", "name_es_ES": "Figurilla: serpiente de rubí vivo", "name_ru_RU": "Статуэтка змеи из животворного рубина", "name_it_IT": "Statuetta - Serpente di Rubino Vivente", "name_pt_PT": "Estatueta - Serpente de Rubi Vivo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24127, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Talasite Owl", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0312000513076782, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 70, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Talasite Owl", "name_ko_KR": "조각상 - 탈라사이트 올빼미", "name_fr_FR": "Figurine de chouette de talasite", "name_de_DE": "Figur - Talasiteule", "name_zh_CN": "雕像 - 水玉猫头鹰", "name_es_ES": "Figurilla: búho de talasita", "name_ru_RU": "Статуэтка таласситовой совы", "name_it_IT": "Statuetta - Gufo di Talasite", "name_pt_PT": "Estatueta - Coruja de Talassita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24128, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Nightseye Panther", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0348999500274658, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 70, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Nightseye Panther", "name_ko_KR": "조각상 - 야안석 표범", "name_fr_FR": "Figurine de panthère d'œil de nuit", "name_de_DE": "Figur - Nachtaugenpanther", "name_zh_CN": "雕像 - 夜目石猎豹", "name_es_ES": "Figurilla: pantera de ojo de noche", "name_ru_RU": "Статуэтка пантеры из ока ночи", "name_it_IT": "Statuetta - Pantera con Occhi Notturni", "name_pt_PT": "Estatueta - Pantera de Olho-da-noite", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Runed Fungalcap", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12125, "buy_price": 60625, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.042099952697754, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Runed Fungalcap", "name_ko_KR": "룬새김 곰팡이버섯", "name_fr_FR": "Chapeau de champignon runique", "name_de_DE": "Runenverzierte Fungushülle", "name_zh_CN": "符文菌帽", "name_es_ES": "Seta rúnica", "name_ru_RU": "Рунический гриб", "name_it_IT": "Funghetto Runico", "name_pt_PT": "Cogumelo Rúnico", "on_use": true, "id_encounter": 571, "id_journal_instance": 260, "id_map": 547, "instance_type": 1}, {"id": 24390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Auslese's Light Channeler", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7105, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11867, "buy_price": 59339, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0199999809265137, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Auslese's Light Channeler", "name_ko_KR": "아우슬리즈의 빛 감응기", "name_fr_FR": "Canalisateur de lumière d'Auslese", "name_de_DE": "Ausleses Lichtkanalisierer", "name_zh_CN": "奥丝蕾的光芒护符", "name_es_ES": "Canalizador de luz de Auslese", "name_ru_RU": "Камень Света Ауслезе", "name_it_IT": "Incanalatore di Luce di Auslese", "name_pt_PT": "Canalizador de Luz de Auslese", "on_use": true, "id_encounter": 556, "id_journal_instance": 256, "id_map": 542, "instance_type": 1}, {"id": 24551, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7083, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9754999876022339, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 25829, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of the Horde", "name_ko_KR": "호드의 부적", "name_fr_FR": "Talisman de la Horde", "name_de_DE": "Talisman der Horde", "name_zh_CN": "部落护符", "name_es_ES": "Dije de la Horda", "name_ru_RU": "Талисман Орды", "name_it_IT": "Talismano dell'Orda", "name_pt_PT": "Talismã da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glowing Crystal Insignia", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7285, "buy_price": 36429, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.042099952697754, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Glowing Crystal Insignia", "name_ko_KR": "빛나는 수정 휘장", "name_fr_FR": "Insigne luminescent en cristal", "name_de_DE": "Leuchtendes Kristallinsigne", "name_zh_CN": "闪耀水晶徽记", "name_es_ES": "Insignia de cristal resplandeciente", "name_ru_RU": "Ожерелье сияющего кристалла", "name_it_IT": "Fregio di Cristallo Luminoso", "name_pt_PT": "Insígnia de Cristal Faiscante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25620, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Crystal Talisman", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6797, "buy_price": 33985, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9721999764442444, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ancient Crystal Talisman", "name_ko_KR": "고대 수정 부적", "name_fr_FR": "Talisman ancien en cristal", "name_de_DE": "Uraltes Kristallinsigne", "name_zh_CN": "上古水晶符咒", "name_es_ES": "Talismán de cristal antiguo", "name_ru_RU": "Древний хрустальный талисман", "name_it_IT": "Talismano di Cristallo Antico", "name_pt_PT": "Talismã de Cristal Ancestral", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25628, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ogre Mauler's Badge", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7774, "buy_price": 38874, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0016000270843506, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ogre Mauler's Badge", "name_ko_KR": "오우거 투사의 휘장", "name_fr_FR": "Ecusson de marteleur ogre", "name_de_DE": "Abzeichen des Ogerraufers", "name_zh_CN": "食人魔殴斗者的徽章", "name_es_ES": "Distintivo de destructor ogro", "name_ru_RU": "Знак огра-изверга", "name_it_IT": "Distintivo del Mazzuolatore di Ogre", "name_pt_PT": "Distintivo do Espancador Ogro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25633, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Uniting Charm", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7917, "buy_price": 39588, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0199999809265137, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Uniting Charm", "name_ko_KR": "결속의 부적", "name_fr_FR": "Charme d'unification", "name_de_DE": "Vereinigender Glücksbringer", "name_zh_CN": "联合护符", "name_es_ES": "Talismán de unidad", "name_ru_RU": "Объединяющий оберег", "name_it_IT": "Talismano dell'Unione", "name_pt_PT": "Patuá Unificador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oshu'gun Relic", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7945, "buy_price": 39728, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0235999822616577, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Oshu'gun Relic", "name_ko_KR": "오슈군 유물", "name_fr_FR": "Relique d'Oshu'gun", "name_de_DE": "Relikt von Oshu'gun", "name_zh_CN": "沃舒古圣物", "name_es_ES": "Reliquia de Oshu'gun", "name_ru_RU": "Реликвия Ошу'гуна", "name_it_IT": "Reliquia di Oshu'gun", "name_pt_PT": "Relíquia de Oshu'gun", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25653, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Riding Crop", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17500, "buy_price": 70000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463000535964966, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Riding Crop", "name_ko_KR": "말채찍", "name_fr_FR": "Cravache d'équitation", "name_de_DE": "Reitgerte", "name_zh_CN": "马鞭", "name_es_ES": "Fusta", "name_ru_RU": "Ездовой хлыст", "name_it_IT": "Frustino", "name_pt_PT": "Rebenque", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25786, "race_mask": 18446744073709551615, "desc": "I'm going to count backwards from three. When I reach zero, you're going to stop pummeling me... well, that's the theory.", "pad2": "", "pad1": "", "pad0": "", "name": "Hypnotist's Watch", "id_expansion": 1, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7314, "buy_price": 36572, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0462000370025635, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Hypnotist's Watch", "name_ko_KR": "최면술사의 시계", "name_fr_FR": "Montre d'hypnotiseur", "name_de_DE": "Uhr des Hypnotiseurs", "name_zh_CN": "催眠怀表", "name_es_ES": "Reloj de hipnotizador", "name_ru_RU": "Гипнотические Камни", "name_it_IT": "Orologio dell'Ipnotizzatore", "name_pt_PT": "Relógio do Hipnotizador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25787, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Alacrity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7340, "buy_price": 36701, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0499000549316406, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Alacrity", "name_ko_KR": "날렵함의 부적", "name_fr_FR": "Charme d'empressement", "name_de_DE": "Glücksbringer des Eifers", "name_zh_CN": "敏锐护符", "name_es_ES": "Talismán de prontitud", "name_ru_RU": "Подвеска проворства", "name_it_IT": "Talismano dell'Alacrità", "name_pt_PT": "Patuá da Vivacidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25829, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7083, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.983299970626831, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 24551, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of the Alliance", "name_ko_KR": "얼라이언스의 부적", "name_fr_FR": "Talisman de l'Alliance", "name_de_DE": "Talisman der Allianz", "name_zh_CN": "联盟护符", "name_es_ES": "Dije de la Alianza", "name_ru_RU": "Талисман Альянса", "name_it_IT": "Talismano dell'Alleanza", "name_pt_PT": "Talismã da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25936, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terokkar Tablet of Vim", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6471, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8033, "buy_price": 40167, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0348999500274658, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Terokkar Tablet of Vim", "name_ko_KR": "열의의 테로카르 서판", "name_fr_FR": "Tablette de Vim de Terokkar", "name_de_DE": "Terokkarschrifttafel des Elans", "name_zh_CN": "泰罗卡活力石板", "name_es_ES": "Tablilla Terokkar de brío", "name_ru_RU": "Тероккарская табличка энергии", "name_it_IT": "Tavoletta dell'Energia di Terokk", "name_pt_PT": "Tabuleta de Entusiasmo de Terokkar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25937, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terokkar Tablet of Precision", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6471, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8062, "buy_price": 40310, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038599967956543, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Terokkar Tablet of Precision", "name_ko_KR": "정밀함의 테로카르 서판", "name_fr_FR": "Tablette de précision de Terokkar", "name_de_DE": "Terokkarschrifttafel der Präzision", "name_zh_CN": "泰罗卡准确石板", "name_es_ES": "Tablilla Terokkar de precisión", "name_ru_RU": "Тероккарская табличка меткости", "name_it_IT": "Tavoletta della Precisione di Terokk", "name_pt_PT": "Tabuleta de Precisão de Terokkar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25994, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Force", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rune of Force", "name_ko_KR": "기세의 룬", "name_fr_FR": "Rune de force", "name_de_DE": "Rune der Kraft", "name_zh_CN": "原力符文", "name_es_ES": "Runa de fuerza", "name_ru_RU": "Руна силы", "name_it_IT": "Runa della Forza", "name_pt_PT": "Runa da Força", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Star of Sha'naar", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9571999907493591, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Star of Sha'naar", "name_ko_KR": "샤나르의 별", "name_fr_FR": "Etoile de Sha'naar", "name_de_DE": "Stern von Sha'naar", "name_zh_CN": "沙纳尔之星", "name_es_ES": "Estrella de Sha'naar", "name_ru_RU": "Звезда Ша'наара", "name_it_IT": "Stella di Sha'naar", "name_pt_PT": "Estrela de Sha'naar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25996, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Perseverance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9609000086784363, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Emblem of Perseverance", "name_ko_KR": "끈기의 문장", "name_fr_FR": "Emblème de persévérance", "name_de_DE": "Emblem der Ausdauer", "name_zh_CN": "坚定徽章", "name_es_ES": "Emblema de perseverancia", "name_ru_RU": "Эмблема настойчивости", "name_it_IT": "Emblema della Perseveranza", "name_pt_PT": "Emblema de Perseverança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 26055, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oculus of the Hidden Eye", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6512, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13225, "buy_price": 66129, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.983299970626831, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 26, "inv_type": 12, "quality": 3, "name_en_US": "Oculus of the Hidden Eye", "name_ko_KR": "숨겨진 눈의 오큘루스", "name_fr_FR": "Oculus de l'Oeil caché", "name_de_DE": "Oculus des versteckten Auges", "name_zh_CN": "隐秘邪眼", "name_es_ES": "Óculo del ojo oculto", "name_ru_RU": "Кольцо Сокрытого Ока", "name_it_IT": "Oculus dell'Occhio Nascosto", "name_pt_PT": "Óculo do Olho Escondido", "on_use": true, "id_encounter": 523, "id_journal_instance": 247, "id_map": 558, "instance_type": 1}, {"id": 27416, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of the Fallen", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13473, "buy_price": 67366, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017000436782837, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 26, "inv_type": 12, "quality": 3, "name_en_US": "Fetish of the Fallen", "name_ko_KR": "죽은 자의 우상", "name_fr_FR": "Fétiche des déchus", "name_de_DE": "Fetisch des Gefallenen", "name_zh_CN": "亡者塑像", "name_es_ES": "Fetiche de los caídos", "name_ru_RU": "Фетиш падших", "name_it_IT": "Feticcio del Caduto", "name_pt_PT": "Fetiche dos Caídos", "on_use": true, "id_encounter": 524, "id_journal_instance": 247, "id_map": 558, "instance_type": 1}, {"id": 27529, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine of the Colossus", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15575, "buy_price": 77876, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017000436782837, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine of the Colossus", "name_ko_KR": "거대괴수 조각상", "name_fr_FR": "Figurine du colosse", "name_de_DE": "Figur des Kolosses", "name_zh_CN": "巨人塑像", "name_es_ES": "Figura del coloso", "name_ru_RU": "Статуэтка Колосса", "name_it_IT": "Statuetta del Colosso", "name_pt_PT": "Estatueta do Colosso", "on_use": true, "id_encounter": 566, "id_journal_instance": 259, "id_map": 540, "instance_type": 1}, {"id": 27683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Quagmirran's Eye", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16040, "buy_price": 80200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031599998474121, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Quagmirran's Eye", "name_ko_KR": "쿠아그미란의 눈", "name_fr_FR": "Oeil de Bourbierreux", "name_de_DE": "Quagmirrans Auge", "name_zh_CN": "夸格米拉之眼", "name_es_ES": "Ojo de Quagmirran", "name_ru_RU": "Око Зыбуна", "name_it_IT": "Occhio di Bragatur", "name_pt_PT": "Olho de Atolaço", "on_use": false, "id_encounter": 572, "id_journal_instance": 260, "id_map": 547, "instance_type": 1}, {"id": 27770, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Argussian Compass", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15287, "buy_price": 76438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9832000136375427, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Argussian Compass", "name_ko_KR": "아르거시안 나침반", "name_fr_FR": "Boussole argusséenne", "name_de_DE": "Argusischer Kompass", "name_zh_CN": "阿古斯指南针", "name_es_ES": "Brújula Agussian", "name_ru_RU": "Аргуссианский компас", "name_it_IT": "Bussola Argussiana", "name_pt_PT": "Bússola Argussiana", "on_use": true, "id_encounter": 579, "id_journal_instance": 262, "id_map": 546, "instance_type": 1}, {"id": 27828, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warp-Scarab Brooch", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15579, "buy_price": 77899, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Warp-Scarab Brooch", "name_ko_KR": "차원의 쇠똥구리 브로치", "name_fr_FR": "Broche du scarabée dimensionnel", "name_de_DE": "Sphärenskarabäusbrosche", "name_zh_CN": "星界甲虫", "name_es_ES": "Broche de escarabajo de distorsión", "name_ru_RU": "Покореженная скарабеем брошь", "name_it_IT": "Spilla degli Scarabei Distorti", "name_pt_PT": "Broche do Escaravelho-dimensional", "on_use": true, "id_encounter": 537, "id_journal_instance": 250, "id_map": 557, "instance_type": 1}, {"id": 27891, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Adamantine Figurine", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6809, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16156, "buy_price": 80784, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Adamantine Figurine", "name_ko_KR": "불굴의 조각상", "name_fr_FR": "Figurine adamantine", "name_de_DE": "Adamantitfigur", "name_zh_CN": "精金雕像", "name_es_ES": "Figura de adamantita", "name_ru_RU": "Адамантиновая статуэтка", "name_it_IT": "Statuetta Adamantina", "name_pt_PT": "Estatueta de Adamantina", "on_use": true, "id_encounter": 545, "id_journal_instance": 253, "id_map": 555, "instance_type": 1}, {"id": 27896, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alembic of Infernal Power", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6875, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14886, "buy_price": 74432, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574000239372253, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Alembic of Infernal Power", "name_ko_KR": "지옥 마력 정화장치", "name_fr_FR": "Alambic de puissance infernale", "name_de_DE": "Alembik der höllischen Macht", "name_zh_CN": "恶魔能量萃取器", "name_es_ES": "Alambique de poder infernal", "name_ru_RU": "Перегонный куб мощи преисподней", "name_it_IT": "Alambicco del Potere Infernale", "name_pt_PT": "Alambique de Poder Infernal", "on_use": false, "id_encounter": 579, "id_journal_instance": 262, "id_map": 546, "instance_type": 1}, {"id": 27900, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jewel of Charismatic Mystique", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 251, "buy_price": 1257, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Jewel of Charismatic Mystique", "name_ko_KR": "신비한 카리스마의 장신구", "name_fr_FR": "Joyau du mystique charismatique", "name_de_DE": "Juwel des Wunderglaubens", "name_zh_CN": "非凡秘法宝珠", "name_es_ES": "Joya de místico carismático", "name_ru_RU": "Самоцвет таинственного чудотворца", "name_it_IT": "Gioiello Mistico Carismatico", "name_pt_PT": "Joia de Aura da Mística Carismática", "on_use": true, "id_encounter": 546, "id_journal_instance": 253, "id_map": 555, "instance_type": 1}, {"id": 27920, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Conquest", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27921, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 1037, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Conquest", "name_ko_KR": "정복의 징표", "name_fr_FR": "Marque de conquête", "name_de_DE": "Mal der Eroberung", "name_zh_CN": "征服印记", "name_es_ES": "Marca de conquista", "name_ru_RU": "Знак Покорения", "name_it_IT": "Marchio della Conquista", "name_pt_PT": "Marca da Conquista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 27921, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Conquest", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 561152, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27920, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 1037, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Conquest", "name_ko_KR": "정복의 징표", "name_fr_FR": "Marque de conquête", "name_de_DE": "Mal der Eroberung", "name_zh_CN": "征服印记", "name_es_ES": "Marca de conquista", "name_ru_RU": "Знак Покорения", "name_it_IT": "Marchio della Conquista", "name_pt_PT": "Marca da Conquista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 27922, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Defiance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 561152, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27924, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 400, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Defiance", "name_ko_KR": "도전의 징표", "name_fr_FR": "Marque de défiance", "name_de_DE": "Mal der Herausforderung", "name_zh_CN": "抗争印记", "name_es_ES": "Marca de desafío", "name_ru_RU": "Знак неповиновения", "name_it_IT": "Marchio della Sfida", "name_pt_PT": "Marca do Desafio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 27924, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Defiance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27922, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 400, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Defiance", "name_ko_KR": "도전의 징표", "name_fr_FR": "Marque de défiance", "name_de_DE": "Mal der Herausforderung", "name_zh_CN": "抗争印记", "name_es_ES": "Marca de desafío", "name_ru_RU": "Знак неповиновения", "name_it_IT": "Marchio della Sfida", "name_pt_PT": "Marca do Desafio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 27926, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Vindication", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27927, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 66, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Vindication", "name_ko_KR": "비호의 징표", "name_fr_FR": "Marque de justification", "name_de_DE": "Mal der Gegenwehr", "name_zh_CN": "守备印记", "name_es_ES": "Marca de vindicación", "name_ru_RU": "Знак оправдания", "name_it_IT": "Marchio della Rivendicazione", "name_pt_PT": "Marca da Vindicação", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 27927, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Vindication", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 561152, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27926, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 66, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Vindication", "name_ko_KR": "비호의 징표", "name_fr_FR": "Marque de justification", "name_de_DE": "Mal der Gegenwehr", "name_zh_CN": "守备印记", "name_es_ES": "Marca de vindicación", "name_ru_RU": "Знак оправдания", "name_it_IT": "Marchio della Rivendicazione", "name_pt_PT": "Marca da Vindicação", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28034, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hourglass of the Unraveller", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6809, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15581, "buy_price": 77907, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Hourglass of the Unraveller", "name_ko_KR": "해결사의 모래시계", "name_fr_FR": "Sablier du détrameur", "name_de_DE": "Stundenglas des Entwirrers", "name_zh_CN": "分解者的沙漏", "name_es_ES": "Reloj de arena del liberador", "name_ru_RU": "Песочные часы Расплетающего", "name_it_IT": "Clessidra del Dipanatore", "name_pt_PT": "Ampulheta do Desembaraçador", "on_use": false, "id_encounter": 553, "id_journal_instance": 255, "id_map": 269, "instance_type": 1}, {"id": 28040, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vengeance of the Illidari", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6842, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8591, "buy_price": 42959, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Vengeance of the Illidari", "name_ko_KR": "일리다리의 원한", "name_fr_FR": "Vengeance des Illidari", "name_de_DE": "Vergeltung der Illidari", "name_zh_CN": "伊利达雷的复仇", "name_es_ES": "Venganza de los Illidari", "name_ru_RU": "Отмщение иллидари", "name_it_IT": "Rivendicazione degli Illidari", "name_pt_PT": "Vingança dos Illidari", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bladefist's Breadth", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6842, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8623, "buy_price": 43115, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Bladefist's Breadth", "name_ko_KR": "블레이드피스트의 관용", "name_fr_FR": "Plaque de Lamepoing", "name_de_DE": "Messerfausts Breite", "name_zh_CN": "刃拳的宽容", "name_es_ES": "Placa de Garrafilada", "name_ru_RU": "Кристалл Острорука", "name_it_IT": "Respiro di Manotagliente", "name_pt_PT": "Amplitude dos Carpunhal", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Regal Protectorate", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6842, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8654, "buy_price": 43270, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Regal Protectorate", "name_ko_KR": "제왕의 보호령", "name_fr_FR": "Protectorat régalien", "name_de_DE": "Königlicher Wachschutz", "name_zh_CN": "皇家护符", "name_es_ES": "Protectorado real", "name_ru_RU": "Монарший протекторат", "name_it_IT": "Protettorato Regale", "name_pt_PT": "Protetorado Régio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28108, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Power-Infused Mushroom", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9124, "buy_price": 45620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9794999957084656, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Power-Infused Mushroom", "name_ko_KR": "힘이 깃든 버섯", "name_fr_FR": "Champignon imprégnée de puissance", "name_de_DE": "Energieerfüllter Pilz", "name_zh_CN": "灌注能量的蘑菇", "name_es_ES": "Champiñón imbuido de poder", "name_ru_RU": "Заряженный энергией гриб", "name_it_IT": "Fungo Infuso di Potere", "name_pt_PT": "Cogumelo Infuso em Poder", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28109, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence-Infused Mushroom", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9158, "buy_price": 45792, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9832000136375427, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Essence-Infused Mushroom", "name_ko_KR": "정수 주입 버섯", "name_fr_FR": "Champignon imprégné d’essence", "name_de_DE": "Energiedurchströmter Pilz", "name_zh_CN": "灌注精华的蘑菇", "name_es_ES": "Champiñón imbuido de esencia", "name_ru_RU": "Насыщенный сущностью гриб", "name_it_IT": "Fungo Infuso d'Essenza", "name_pt_PT": "Cogumelo Infuso em Essência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28121, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of Unyielding Courage", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14828, "buy_price": 74144, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Icon of Unyielding Courage", "name_ko_KR": "굽히지 않는 용기의 상징", "name_fr_FR": "Icône du courage inflexible", "name_de_DE": "Ikone des unerschütterlichen Mutes", "name_zh_CN": "不屈勇气徽章", "name_es_ES": "Icono de coraje implacable", "name_ru_RU": "Хоругвь непреклонной отваги", "name_it_IT": "Icona del Coraggio Implacabile", "name_pt_PT": "Ícone da Coragem Obstinada", "on_use": true, "id_encounter": 557, "id_journal_instance": 256, "id_map": 542, "instance_type": 1}, {"id": 28190, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scarab of the Infinite Cycle", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15747, "buy_price": 78739, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0127999782562256, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Scarab of the Infinite Cycle", "name_ko_KR": "무한한 세월의 스카라베", "name_fr_FR": "Scarabée du cycle infini", "name_de_DE": "Skarabäus des unendlichen Kreislaufs", "name_zh_CN": "无尽循环甲虫", "name_es_ES": "Escarabajo del ciclo infinito", "name_ru_RU": "Скарабей бесконечного цикла", "name_it_IT": "Scarabeo del Ciclo Eterno", "name_pt_PT": "Escaravelho do Ciclo Infinito", "on_use": false, "id_encounter": 554, "id_journal_instance": 255, "id_map": 269, "instance_type": 1}, {"id": 28223, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcanist's Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5208, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 255, "buy_price": 1276, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868999719619751, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Arcanist's Stone", "name_ko_KR": "비전술사의 돌", "name_fr_FR": "Pierre d'arcaniste", "name_de_DE": "Arkanistenstein", "name_zh_CN": "奥术师之石", "name_es_ES": "Piedra de arcanista", "name_ru_RU": "Камень чародея", "name_it_IT": "Pietra dell'Arcanista", "name_pt_PT": "Pedra do Arcanista", "on_use": true, "id_encounter": 540, "id_journal_instance": 251, "id_map": 560, "instance_type": 1}, {"id": 28234, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28240, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28235, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28241, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28236, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9610000252723694, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28242, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28237, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9646999835968018, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28243, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28238, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9684000015258789, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28239, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28239, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28238, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28240, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28234, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28241, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0059000253677368, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28235, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28242, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.009600043296814, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28236, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28243, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013200044631958, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28237, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28288, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Abacus of Violent Odds", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14891, "buy_price": 74455, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 524288, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Abacus of Violent Odds", "name_ko_KR": "극심한 부조화의 연산장치", "name_fr_FR": "Boulier des probabilités agressives", "name_de_DE": "Abakus der Ungleichheit", "name_zh_CN": "强烈优势算盘", "name_es_ES": "Ábaco de probabilidades agresivas", "name_ru_RU": "Абак Сильных расхождений", "name_it_IT": "Abaco delle Probabilità Violente", "name_pt_PT": "Ábaco das Probabilidades Violentas", "on_use": true, "id_encounter": 565, "id_journal_instance": 258, "id_map": 554, "instance_type": 1}, {"id": 28370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bangle of Endless Blessings", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15410, "buy_price": 77052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991100013256073, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Bangle of Endless Blessings", "name_ko_KR": "끝없는 축복의 팔찌", "name_fr_FR": "Bracelet des bénédictions infinies", "name_de_DE": "Reif des unendlichen Segens", "name_zh_CN": "无尽祝福法链", "name_es_ES": "Broche de bendiciones sin fin", "name_ru_RU": "Браслет Нескончаемого Блаженства", "name_it_IT": "Ciondolo delle Benedizioni Infinite", "name_pt_PT": "Bracelete das Bênçãos sem Fim", "on_use": true, "id_encounter": 562, "id_journal_instance": 257, "id_map": 553, "instance_type": 1}, {"id": 28418, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiffar's Nexus-Horn", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270, "buy_price": 1354, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0467000007629395, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Shiffar's Nexus-Horn", "name_ko_KR": "쉬파르의 연합 뿔피리", "name_fr_FR": "Corne-nexus de Shiffar", "name_de_DE": "Shiffars Nexushorn", "name_zh_CN": "希法尔的节点号角", "name_es_ES": "Cuerno-nexo de Shiffar", "name_ru_RU": "Астральный рог Шиффара", "name_it_IT": "Corno del Nexus di Shiffar", "name_pt_PT": "Trompa-Nexus de Shiffar", "on_use": false, "id_encounter": 551, "id_journal_instance": 254, "id_map": 552, "instance_type": 1}, {"id": 28528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moroes' Lucky Pocket Watch", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0091999769210815, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Moroes' Lucky Pocket Watch", "name_ko_KR": "행운을 가져다 주는 모로스의 회중시계", "name_fr_FR": "Montre de gousset porte-bonheur de Moroes", "name_de_DE": "Moroes' Glückstaschenuhr", "name_zh_CN": "莫罗斯的幸运怀表", "name_es_ES": "Reloj de bolsillo de la suerte de Moroes", "name_ru_RU": "Счастливые часы Мороуза", "name_it_IT": "Orologio da Tasca Portafortuna di Moroes", "name_pt_PT": "Relógio da Sorte do Tristão", "on_use": true, "id_encounter": 1554, "id_journal_instance": 745, "id_map": 532, "instance_type": 2}, {"id": 28579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Romulo's Poison Vial", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6140, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Romulo's Poison Vial", "name_ko_KR": "로밀로의 독약병", "name_fr_FR": "Fiole de poison de Romulo", "name_de_DE": "Romulos Giftphiole", "name_zh_CN": "罗密欧的毒药", "name_es_ES": "Vial de veneno de Romulo", "name_ru_RU": "Флакон с ядом Ромуло", "name_it_IT": "Fiala del Veleno di Romulo", "name_pt_PT": "Ampola de Veneno do Rômulo", "on_use": false, "id_encounter": 1556, "id_journal_instance": 745, "id_map": 532, "instance_type": 2}, {"id": 28590, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ribbon of Sacrifice", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5789, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0426000356674194, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Ribbon of Sacrifice", "name_ko_KR": "희생의 매듭", "name_fr_FR": "Ruban de sacrifice", "name_de_DE": "Schleife der Opferung", "name_zh_CN": "牺牲绶带", "name_es_ES": "Galón de sacrificio", "name_ru_RU": "Лента жертвоприношения", "name_it_IT": "Nastro del Sacrificio", "name_pt_PT": "Fita do Sacrifício", "on_use": true, "id_encounter": 1556, "id_journal_instance": 745, "id_map": 532, "instance_type": 2}, {"id": 28727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pendant of the Violet Eye", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7018, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836000204086304, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Pendant of the Violet Eye", "name_ko_KR": "보랏빛 눈의 펜던트", "name_fr_FR": "Pendentif de l'Oeil pourpre", "name_de_DE": "Anhänger des Violetten Auges", "name_zh_CN": "紫罗兰之眼坠饰", "name_es_ES": "Colgante de El Ojo Violeta", "name_ru_RU": "Подвеска Аметистового Ока", "name_it_IT": "Pendente dell'Occhio Violaceo", "name_pt_PT": "Pingente do Olho Violeta", "on_use": true, "id_encounter": 1559, "id_journal_instance": 745, "id_map": 532, "instance_type": 2}, {"id": 28785, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Lightning Capacitor", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9757999777793884, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "The Lightning Capacitor", "name_ko_KR": "번개 축전기", "name_fr_FR": "Le condensateur de foudre", "name_de_DE": "Der Blitzkondensator", "name_zh_CN": "电容器", "name_es_ES": "El condensador de rayos", "name_ru_RU": "Конденсатор молний", "name_it_IT": "Condensatore Fulminante", "name_pt_PT": "Condensador de Relâmpago", "on_use": false, "id_encounter": 1560, "id_journal_instance": 745, "id_map": 532, "instance_type": 2}, {"id": 28789, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Magtheridon", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7302, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0169999599456787, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Magtheridon", "name_ko_KR": "마그테리돈의 눈", "name_fr_FR": "Oeil de Magtheridon", "name_de_DE": "Magtheridons Auge", "name_zh_CN": "玛瑟里顿之眼", "name_es_ES": "Ojo de Magtheridon", "name_ru_RU": "Глаз Магтеридона", "name_it_IT": "Occhio di Magtheridon", "name_pt_PT": "Olho de Magtheridon", "on_use": false, "id_encounter": 1566, "id_journal_instance": 747, "id_map": 544, "instance_type": 2}, {"id": 28823, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Gruul", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3175, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.994700014591217, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Gruul", "name_ko_KR": "그룰의 눈", "name_fr_FR": "Oeil de Gruul", "name_de_DE": "Auge von Gruul", "name_zh_CN": "格鲁尔之眼", "name_es_ES": "Ojo de Gruul", "name_ru_RU": "Глаз Груула", "name_it_IT": "Occhio di Gruul", "name_pt_PT": "Olho de Gruul", "on_use": false, "id_encounter": 1565, "id_journal_instance": 746, "id_map": 565, "instance_type": 2}, {"id": 28830, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dragonspine Trophy", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020400047302246, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Dragonspine Trophy", "name_ko_KR": "용의 뼈 전리품", "name_fr_FR": "Trophée Epine-de-dragon", "name_de_DE": "Drachenwirbeltrophäe", "name_zh_CN": "龙脊奖章", "name_es_ES": "Trofeo de espinazo de dragón", "name_ru_RU": "Трофей из драконьего хребта", "name_it_IT": "Trofeo Spina di Drago", "name_pt_PT": "Troféu Espinha do Dragão", "on_use": false, "id_encounter": 1565, "id_journal_instance": 746, "id_map": 565, "instance_type": 2}, {"id": 29132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scryer's Bloodgem", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 43988, "buy_price": 175952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 934, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Scryer's Bloodgem", "name_ko_KR": "점술가의 혈석", "name_fr_FR": "Gemme de sang de clairvoyant", "name_de_DE": "Blutjuwel der Seher", "name_zh_CN": "占星者的血钻石", "name_es_ES": "Gema de sangre de Arúspice", "name_ru_RU": "Камень крови Провидцев", "name_it_IT": "Gemma del Sangue del Veggente", "name_pt_PT": "Gema de Sangue dos Áugures", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29179, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Xi'ri's Gift", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 43988, "buy_price": 175952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836000204086304, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 935, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Xi'ri's Gift", "name_ko_KR": "지리의 선물", "name_fr_FR": "Don de Xi'ri", "name_de_DE": "Xi'ris Gabe", "name_zh_CN": "克希利的礼物", "name_es_ES": "Don de Xi'ri", "name_ru_RU": "Дар Ксири", "name_it_IT": "Dono di Xi'ri", "name_pt_PT": "Dádiva de Xi'ri", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timelapse Shard", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5192, "stat_alloc_2": 4615, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 197528, "buy_price": 790112, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9908999800682068, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 989, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Timelapse Shard", "name_ko_KR": "시간 왜곡의 결정", "name_fr_FR": "Éclat de l'instant temporel", "name_de_DE": "Zeitraffersplitter", "name_zh_CN": "时间流逝碎片", "name_es_ES": "Fragmento de tiempo", "name_ru_RU": "Осколок разрыва времени", "name_it_IT": "Scheggia del Rallentatore", "name_pt_PT": "Estilhaço do Lapso de Tempo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of the Silver Crescent", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7037, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 751600, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0022000074386597, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Icon of the Silver Crescent", "name_ko_KR": "은빛 초승달의 상징", "name_fr_FR": "Icône du croissant d'argent", "name_de_DE": "Ikone des Silberwappens", "name_zh_CN": "银色新月徽记", "name_es_ES": "Icono de media luna de plata", "name_ru_RU": "Икона Серебряного Полумесяца", "name_it_IT": "Icona della Falce d'Argento", "name_pt_PT": "Ícone do Crescente Prateado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Martyr", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7037, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 768100, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Martyr", "name_ko_KR": "순교자의 정수", "name_fr_FR": "Essence du martyr", "name_de_DE": "Essenz des Märtyrers", "name_zh_CN": "殉难者精华", "name_es_ES": "Esencia del mártir", "name_ru_RU": "Сущность Мученика", "name_it_IT": "Essenza del Martire", "name_pt_PT": "Essência do Mártir", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29383, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodlust Brooch", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 732300, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9764000177383423, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Bloodlust Brooch", "name_ko_KR": "피의 욕망 브로치", "name_fr_FR": "Broche sanguinaire", "name_de_DE": "Kampfrauschbrosche", "name_zh_CN": "嗜血胸针", "name_es_ES": "Broche Ansia de sangre", "name_ru_RU": "Брошь Кровожадности", "name_it_IT": "Spilla della Brama di Sangue", "name_pt_PT": "Broche Sede de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29387, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomeregan Auto-Dodger 600", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7222, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 743300, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.991100013256073, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Gnomeregan Auto-Dodger 600", "name_ko_KR": "놈리건 자동회피기 600", "name_fr_FR": "Auto-esquiveur de Gnomeregan 600", "name_de_DE": "Autoausweicher 600 von Gnomeregan", "name_zh_CN": "诺莫瑞根自动躲闪器600型", "name_es_ES": "Autoesquivador 600 de Gnomeregan", "name_ru_RU": "Гномреганский автоуклонятель 600", "name_it_IT": "Auto-Schivatore 600 di Gnomeregan", "name_pt_PT": "Autoesquiva Gnomeregan 600", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29592, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18864, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29593, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9911999702453613, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18845, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29776, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Core of Ar'kelos", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7404, "buy_price": 37023, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9538999795913696, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Core of Ar'kelos", "name_ko_KR": "알켈로스의 핵", "name_fr_FR": "Noyau d'Ar'kelos", "name_de_DE": "Kern von Ar'kelos", "name_zh_CN": "阿尔凯洛斯之核", "name_es_ES": "Núcleo de Ar'kelos", "name_ru_RU": "Сердцевина Ар'келоса", "name_it_IT": "Nucleo di Ar'kelos", "name_pt_PT": "Núcleo de Ar'kelos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30293, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heavenly Inspiration", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8604, "buy_price": 43024, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Heavenly Inspiration", "name_ko_KR": "하늘의 계시", "name_fr_FR": "Inspiration des cieux", "name_de_DE": "Himmlische Eingebung", "name_zh_CN": "神圣灵感", "name_es_ES": "Inspiración celestial", "name_ru_RU": "Небесное вдохновение", "name_it_IT": "Ispirazione Divina", "name_pt_PT": "Inspiração Celestial", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dabiri's Enigma", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6522, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9830, "buy_price": 49152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9505000114440918, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Dabiri's Enigma", "name_ko_KR": "다비리의 수수께끼", "name_fr_FR": "Enigme de Dabiri", "name_de_DE": "Dabiris Mysterium", "name_zh_CN": "达比雷之谜", "name_es_ES": "Enigma de Dabiri", "name_ru_RU": "Загадка Дабири", "name_it_IT": "Enigma di Dabiri", "name_pt_PT": "Enigma de Dabiri", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30340, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Starkiller's Bauble", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8189, "buy_price": 40947, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502000212669373, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Starkiller's Bauble", "name_ko_KR": "별파괴자의 구슬", "name_fr_FR": "Colifichet de tueur des étoiles", "name_de_DE": "Schmuckstück des Sterntöters", "name_zh_CN": "灭星饰物", "name_es_ES": "Adorno de asesino de estrellas", "name_ru_RU": "Безделушка звездоубийцы", "name_it_IT": "Bolla dell'Ammazzastelle", "name_pt_PT": "Bugiganga do Mata-estrela", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30343, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9613000154495239, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30348, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.964900016784668, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30350, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30345, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9685999751091003, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30351, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987999796867371, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30349, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30348, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006100058555603, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30343, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30349, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0097999572753906, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30346, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30350, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0134999752044678, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30344, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30351, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017199993133545, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30345, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30446, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solarian's Sapphire", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4688, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0246000289916992, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Solarian's Sapphire", "name_ko_KR": "솔라리안의 사파이어", "name_fr_FR": "Saphir solarian", "name_de_DE": "Solarians Saphir", "name_zh_CN": "索兰莉安的蓝宝石", "name_es_ES": "Zafiro solar", "name_ru_RU": "Сапфир Солнечника", "name_it_IT": "Zaffiro di Solarian", "name_pt_PT": "Safira de Solarian", "on_use": false, "id_encounter": 1575, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30447, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Fiery Redemption", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Tome of Fiery Redemption", "name_ko_KR": "불타는 구원의 고서", "name_fr_FR": "Tome de la rédemption ardente", "name_de_DE": "Foliant der feurigen Erlösung", "name_zh_CN": "炽热救赎圣典", "name_es_ES": "Escrito sobre Redención ígnea", "name_ru_RU": "Фолиант Огненного искупления", "name_it_IT": "Tomo della Redenzione Ardente", "name_pt_PT": "Tomo da Redenção Abrasadora", "on_use": false, "id_encounter": 1573, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30448, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talon of Al'ar", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 528640, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Talon of Al'ar", "name_ko_KR": "알라르의 갈퀴발톱", "name_fr_FR": "Serre d'Al'Ar", "name_de_DE": "Al'ars Kralle", "name_zh_CN": "奥之爪", "name_es_ES": "Garfa de Al'ar", "name_ru_RU": "Коготь Ала'ра", "name_it_IT": "Artiglio di Al'ar", "name_pt_PT": "Garra de Al'ar", "on_use": false, "id_encounter": 1573, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void Star Talisman", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 45, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035599946975708, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Void Star Talisman", "name_ko_KR": "공허의 별 부적", "name_fr_FR": "Talisman de l'étoile du Vide", "name_de_DE": "Talisman des Leersterns", "name_zh_CN": "虚空之星", "name_es_ES": "Dije de estrella del Vacío", "name_ru_RU": "Талисман убийцы из Бездны", "name_it_IT": "Talismano della Stella del Vuoto", "name_pt_PT": "Talismã da Estrela do Caos", "on_use": false, "id_encounter": 1575, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30450, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warp-Spring Coil", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3281, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0392999649047852, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Warp-Spring Coil", "name_ko_KR": "초공간 도약 코일", "name_fr_FR": "Torsade de ressort dimensionnel", "name_de_DE": "Spule der Warpquelle", "name_zh_CN": "星界螺旋", "name_es_ES": "Anillo de saltadistorsión", "name_ru_RU": "Кривопружинное кольцо", "name_it_IT": "Bobina a Molla Distorcente", "name_pt_PT": "Espiral da Mola Dimensional", "on_use": false, "id_encounter": 1574, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fel Reaver's Piston", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506000280380249, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Fel Reaver's Piston", "name_ko_KR": "지옥절단기 피스톤", "name_fr_FR": "Piston de saccageur gangrené", "name_de_DE": "Kolben des Teufelshäschers", "name_zh_CN": "魔能机甲的活塞", "name_es_ES": "Pistón de atracador vil", "name_ru_RU": "Пистон сквернобота", "name_it_IT": "Pistone del Vilrazziatore", "name_pt_PT": "Pistão do Aníquilus", "on_use": false, "id_encounter": 1574, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30620, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spyglass of the Hidden Fleet", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Spyglass of the Hidden Fleet", "name_ko_KR": "숨겨진 함대의 망원경", "name_fr_FR": "Longue-vue de la flotte cachée", "name_de_DE": "Handfernrohr der verborgenen Flotte", "name_zh_CN": "隐秘舰队的望远镜", "name_es_ES": "Catalejo de la flota oculta", "name_ru_RU": "Подзорная труба Сокрытого Флота", "name_it_IT": "Cannocchiale delle Orme Nascoste", "name_pt_PT": "Luneta da Frota Oculta", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30621, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prism of Inner Calm", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9580000042915344, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Prism of Inner Calm", "name_ko_KR": "내적인 고요의 프리즘", "name_fr_FR": "Prisme du calme intérieur", "name_de_DE": "Prisma der inneren Ruhe", "name_zh_CN": "心灵平静棱柱", "name_es_ES": "Prisma de calma interior", "name_ru_RU": "Призма Внутреннего Покоя", "name_it_IT": "Prisma della Calma Interiore", "name_pt_PT": "Prisma da Calma Interior", "on_use": false, "id_encounter": 1572, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30626, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sextant of Unstable Currents", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9763000011444092, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Sextant of Unstable Currents", "name_ko_KR": "불안정한 흐름의 육분의", "name_fr_FR": "Sextant des courants instables", "name_de_DE": "Sextant der unsteten Strömung", "name_zh_CN": "逆流六分仪", "name_es_ES": "Sextante de corrientes inestables", "name_ru_RU": "Секстан Ненадежных Течений", "name_it_IT": "Sestante delle Correnti Instabili", "name_pt_PT": "Sextante das Correntes Instáveis", "on_use": false, "id_encounter": 1570, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30627, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tsunami Talisman", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5938, "stat_alloc_2": 1563, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9800000190734863, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Tsunami Talisman", "name_ko_KR": "지진해일의 부적", "name_fr_FR": "Talisman du tsunami", "name_de_DE": "Tsunamitalisman", "name_zh_CN": "海啸护符", "name_es_ES": "Talismán tsunami", "name_ru_RU": "Талисман Цунами", "name_it_IT": "Talismano dello Tsunami", "name_pt_PT": "Talismã Tsunami", "on_use": false, "id_encounter": 1569, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30629, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scarab of Displacement", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9873999953269958, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Scarab of Displacement", "name_ko_KR": "변위의 스카라베", "name_fr_FR": "Scarabée de déplacement", "name_de_DE": "Skarabäus der Verdrängung", "name_zh_CN": "偏移甲虫", "name_es_ES": "Escarabajo de desplazamiento", "name_ru_RU": "Скарабей перемещения", "name_it_IT": "Scarabeo della Dislocazione", "name_pt_PT": "Escaravelho do Deslocamento", "on_use": true, "id_encounter": 1567, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30663, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fathom-Brooch of the Tidewalker", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9650999903678894, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Fathom-Brooch of the Tidewalker", "name_ko_KR": "심연의 겅둥파도 브로치", "name_fr_FR": "Brasse-broche du marcheur-des-flots", "name_de_DE": "Tiefenbrosche des Gezeitenwandlers", "name_zh_CN": "踏潮者的深渊胸针", "name_es_ES": "Broche profundo del caminante de la marea", "name_ru_RU": "Глубинная брошь Приливного странника", "name_it_IT": "Spilla Profonda del Cavalcaonde", "name_pt_PT": "Broche-penetrante do Andamaré", "on_use": false, "id_encounter": 1570, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30664, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Living Root of the Wildheart", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9686999917030334, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Living Root of the Wildheart", "name_ko_KR": "거친심장의 살아있는 뿌리", "name_fr_FR": "Racine vivante du Cœur-sauvage", "name_de_DE": "Lebendige Wurzel des Wildherzens", "name_zh_CN": "野性之心的活力根须", "name_es_ES": "Raíz viva del corazón salvaje", "name_ru_RU": "Живой корень дикого сердца", "name_it_IT": "Radice Vivente del Cuorselvaggio", "name_pt_PT": "Raiz Viva do Coração Selvagem", "on_use": false, "id_encounter": 1567, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30665, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Earring of Soulful Meditation", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4688, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Earring of Soulful Meditation", "name_ko_KR": "충만한 명상의 귀걸이", "name_fr_FR": "Boucle d'oreille de la méditation expressive", "name_de_DE": "Ohrring der seelenvollen Meditation", "name_zh_CN": "热情冥想耳环", "name_es_ES": "Pendiente de meditación emotiva", "name_ru_RU": "Серьга душевной медитации", "name_it_IT": "Orecchino dell'Anima Meditativa", "name_pt_PT": "Brinco da Meditação Emotiva", "on_use": true, "id_encounter": 1568, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30696, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scourgebane", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6818, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.039199948310852, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Scourgebane", "name_ko_KR": "스컬지 파멸석", "name_fr_FR": "Plaie-du-Fléau", "name_de_DE": "Geißelbann", "name_zh_CN": "天灾杀手", "name_es_ES": "Finiquiplaga", "name_ru_RU": "Руна проклятия Плети", "name_it_IT": "Malflagello", "name_pt_PT": "Flagelicida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30720, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Serpent-Coil Braid", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4688, "stat_alloc_2": 1875, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9801999926567078, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Serpent-Coil Braid", "name_ko_KR": "불뱀똬리 매듭", "name_fr_FR": "Tresse de l'anneau du serpent", "name_de_DE": "Flechte der Schlangenschlinge", "name_zh_CN": "盘蛇饰带", "name_es_ES": "Trenza espiral de serpiente", "name_ru_RU": "Сплетение змеиных колец", "name_it_IT": "Treccia della Spira Serpentina", "name_pt_PT": "Trança de Serpente Espiralada", "on_use": false, "id_encounter": 1571, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30841, "race_mask": 18446744073709551615, "desc": "Short prayers from a dozen different faiths are contained in this book.", "pad2": "", "pad1": "", "pad0": "", "name": "Lower City Prayerbook", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 43988, "buy_price": 175952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1011, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Lower City Prayerbook", "name_ko_KR": "고난의 거리 기도서", "name_fr_FR": "Livre de prières de la Ville basse", "name_de_DE": "Gebetsbuch des Unteren Viertels", "name_zh_CN": "贫民窟祈祷之书", "name_es_ES": "Libro de oraciones de Bajo Arrabal", "name_ru_RU": "Книга молитв Нижнего Города", "name_it_IT": "Libro di Preghiere della Città Bassa", "name_pt_PT": "Livro de Orações do Bairro Inferior", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31080, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mercurial Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 512, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 7500, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4000, "buy_price": 16000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836999773979187, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 26, "inv_type": 12, "quality": 2, "name_en_US": "Mercurial Stone", "name_ko_KR": "수은석", "name_fr_FR": "Pierre mercurienne", "name_de_DE": "Quecksilberstein", "name_zh_CN": "水银石", "name_es_ES": "Piedra mercúrica", "name_ru_RU": "Переменчивый камень", "name_it_IT": "Pietra Mercuriale", "name_pt_PT": "Pedra Mercurial", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Violet Badge", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6316, "stat_alloc_2": 7895, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 56, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 43988, "buy_price": 175952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Violet Badge", "name_ko_KR": "보랏빛 배지", "name_fr_FR": "Ecusson pourpre", "name_de_DE": "Violettes Abzeichen", "name_zh_CN": "紫罗兰徽章", "name_es_ES": "Distintivo Violeta", "name_ru_RU": "Знак Аметистового Ока", "name_it_IT": "Distintivo Viola", "name_pt_PT": "Insígnia Violeta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31615, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Draenei Arcane Relic", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7923, "buy_price": 39615, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0206999778747559, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ancient Draenei Arcane Relic", "name_ko_KR": "고대 드레나이 비전 유물", "name_fr_FR": "Ancienne relique arcanique draeneï", "name_de_DE": "Uraltes Arkanrelikt der Draenei", "name_zh_CN": "上古德莱尼奥术神器", "name_es_ES": "Reliquia Arcana de draenei antigua", "name_ru_RU": "Древняя дренейская чародейская реликвия", "name_it_IT": "Reliquia Arcana Draenei Antica", "name_pt_PT": "Antiga Relíquia Arcana Draenei", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31617, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Draenei War Talisman", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7408, "buy_price": 37042, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9544000029563904, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ancient Draenei War Talisman", "name_ko_KR": "고대 드레나이 전투 부적", "name_fr_FR": "Ancien talisman de guerre draeneï", "name_de_DE": "Uralter Kriegstalisman der Draenei", "name_zh_CN": "上古德莱尼作战咒符", "name_es_ES": "Dije de guerra draenei antiguo", "name_ru_RU": "Древний дренейский военный талисман", "name_it_IT": "Antico Talismano da Guerra Draenei", "name_pt_PT": "Antigo Talismã de Guerra Draenei", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31856, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Crusade", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Crusade", "name_ko_KR": "다크문 카드: 성전", "name_fr_FR": "Carte de Sombrelune : Croisade", "name_de_DE": "Dunkelmond-Karte: Kreuzzug", "name_zh_CN": "暗月卡片:远征", "name_es_ES": "Naipe de la Luna Negra: Cruzada", "name_ru_RU": "Карта Новолуния: Молитва", "name_it_IT": "Carta di Lunacupa: Crociata", "name_pt_PT": "Carta de Negraluna: Cruzada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31857, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Wrath", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Wrath", "name_ko_KR": "다크문 카드: 진노", "name_fr_FR": "Carte de Sombrelune : Courroux", "name_de_DE": "Dunkelmond-Karte: Zorn", "name_zh_CN": "暗月卡片:怒火", "name_es_ES": "Naipe de la Luna Negra: Cólera", "name_ru_RU": "Карта Новолуния: Гнев", "name_it_IT": "Carta di Lunacupa: Ira", "name_pt_PT": "Carta de Negraluna: Ira", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31858, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Vengeance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0360000133514404, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Vengeance", "name_ko_KR": "다크문 카드: 앙갚음", "name_fr_FR": "Carte de Sombrelune : Vengeance", "name_de_DE": "Dunkelmond-Karte: Vergeltung", "name_zh_CN": "暗月卡片:复仇", "name_es_ES": "Naipe de la Luna Negra: Venganza", "name_ru_RU": "Карта Новолуния: Отмщение", "name_it_IT": "Carta di Lunacupa: Vendetta", "name_pt_PT": "Carta de Negraluna: Vingança", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31859, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Madness", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0397000312805176, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Madness", "name_ko_KR": "다크문 카드: 광기", "name_fr_FR": "Carte de Sombrelune : Folie", "name_de_DE": "Dunkelmond-Karte: Wahnsinn", "name_zh_CN": "暗月卡片:疯狂", "name_es_ES": "Naipe de la Luna Negra: Locura", "name_ru_RU": "Карта Новолуния: Безумец", "name_it_IT": "Carta di Lunacupa: Follia", "name_pt_PT": "Carta de Negraluna: Loucura", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32481, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Swift Flight", "id_expansion": 1, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 524352, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Charm of Swift Flight", "name_ko_KR": "날쌘 비행의 부적", "name_fr_FR": "Charme du vol rapide", "name_de_DE": "Glücksbringer des schnellen Fluges", "name_zh_CN": "迅捷飞行符咒", "name_es_ES": "Talismán de Vuelo presto", "name_ru_RU": "Оберег стремительного полета", "name_it_IT": "Talismano del Volo Rapido", "name_pt_PT": "Patuá da Fuga Rápida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32483, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Skull of Gul'dan", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3125, "stat_alloc_2": 5875, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9620000123977661, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "The Skull of Gul'dan", "name_ko_KR": "굴단의 해골", "name_fr_FR": "Le crâne de Gul'dan", "name_de_DE": "Der Schädel des Gul'dan", "name_zh_CN": "古尔丹之颅", "name_es_ES": "La calavera de Gul'dan", "name_ru_RU": "Череп Гул'дана", "name_it_IT": "Teschio di Gul'dan", "name_pt_PT": "O Crânio de Gul'dan", "on_use": true, "id_encounter": 1590, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 32485, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Valor", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9693999886512756, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Valor", "name_ko_KR": "용맹의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de vaillance cendrelangue", "name_de_DE": "Aschenzungentalisman der Ehre", "name_zh_CN": "勇气之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de valor", "name_ru_RU": "Талисман доблести Пеплоуста", "name_it_IT": "Talismano dei Linguamorta del Valore", "name_pt_PT": "Talismã Grislíngua da Bravura", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32486, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Equilibrium", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Equilibrium", "name_ko_KR": "평정의 잿빛혓바닥 부적", "name_fr_FR": "Talisman d'équilibre cendrelangue", "name_de_DE": "Aschenzungentalisman der Ausgeglichenheit", "name_zh_CN": "平衡之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de equilibrio", "name_ru_RU": "Талисман самообладания Пеплоуста", "name_it_IT": "Talismano dei Linguamorta dell'Equilibrio", "name_pt_PT": "Talismã Grislíngua do Equilíbrio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32487, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Swiftness", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9767000079154968, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Swiftness", "name_ko_KR": "신속의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de rapidité cendrelangue", "name_de_DE": "Aschenzungentalisman der Schnelligkeit", "name_zh_CN": "迅捷之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de presteza", "name_ru_RU": "Талисман Быстроты Пеплоуста", "name_it_IT": "Talismano dei Linguamorta della Velocità", "name_pt_PT": "Talismã Grislíngua da Rapidez", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32488, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Insight", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.980400025844574, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Insight", "name_ko_KR": "통찰의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de clairvoyance cendrelangue", "name_de_DE": "Aschenzungentalisman der Einsicht", "name_zh_CN": "洞察之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de perspicacia", "name_ru_RU": "Талисман озарения Пеплоуста", "name_it_IT": "Talismano dei Linguamorta della Concentrazione", "name_pt_PT": "Talismã Grislíngua da Percepção", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32489, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Zeal", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9840999841690063, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Zeal", "name_ko_KR": "열정의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de zèle cendrelangue", "name_de_DE": "Aschenzungentalisman des Eifers", "name_zh_CN": "狂热之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de fanatismo", "name_ru_RU": "Талисман рвения Пеплоуста", "name_it_IT": "Talismano dei Linguamorta dello Zelo", "name_pt_PT": "Talismã Grislíngua do Zelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Acumen", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9876999855041504, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Acumen", "name_ko_KR": "총명의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de sagacité cendrelangue", "name_de_DE": "Aschenzungentalisman des Scharfsinns", "name_zh_CN": "睿智之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de sagacidad", "name_ru_RU": "Талисман Проницания Пеплоуста", "name_it_IT": "Talismano dei Linguamorta dell'Acume", "name_pt_PT": "Talismã Grislíngua do Discernimento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32491, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Vision", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9914000034332275, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Vision", "name_ko_KR": "환영의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de vision cendrelangue", "name_de_DE": "Aschenzungentalisman der Weitsicht", "name_zh_CN": "预言之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de visión", "name_ru_RU": "Талисман провидения Пеплоуста", "name_it_IT": "Talismano dei Linguamorta della Visione", "name_pt_PT": "Talismã Grislíngua da Visão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Lethality", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9951000213623047, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Lethality", "name_ko_KR": "필살의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de létalité cendrelangue", "name_de_DE": "Aschenzungentalisman der Tödlichkeit", "name_zh_CN": "致命之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de letalidad", "name_ru_RU": "Талисман Смертоносности Пеплоуста", "name_it_IT": "Talismano dei Linguamorta della Letalità", "name_pt_PT": "Talismã Grislíngua da Letalidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32493, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Shadows", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987999796867371, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Shadows", "name_ko_KR": "어둠의 잿빛혓바닥 부적", "name_fr_FR": "Talisman des ombres cendrelangue", "name_de_DE": "Aschenzungentalisman der Schatten", "name_zh_CN": "暗影之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de sombras", "name_ru_RU": "Талисман Теней Пеплоуста", "name_it_IT": "Talismano dei Linguamorta delle Ombre", "name_pt_PT": "Talismã Grislíngua das Sombras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32496, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Memento of Tyrande", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0097999572753906, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Memento of Tyrande", "name_ko_KR": "추억이 담긴 티란데의 기념품", "name_fr_FR": "Souvenir de Tyrande", "name_de_DE": "Tyrandes Andenken", "name_zh_CN": "泰兰德的记忆", "name_es_ES": "Recuerdo de Tyrande", "name_ru_RU": "Память о Тиранде", "name_it_IT": "Memento di Tyrande", "name_pt_PT": "Recordação de Tyrande", "on_use": false, "id_encounter": 1590, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 32501, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowmoon Insignia", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6986, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545999765396118, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Shadowmoon Insignia", "name_ko_KR": "어둠달 휘장", "name_fr_FR": "Insigne d'Ombrelune", "name_de_DE": "Insigne des Schattenmondklans", "name_zh_CN": "影月徽记", "name_es_ES": "Insignia de Sombraluna", "name_ru_RU": "Знак клана Призрачной Луны", "name_it_IT": "Fregio di Torvaluna", "name_pt_PT": "Insígnia da Lua Negra", "on_use": true, "id_encounter": 1586, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 32505, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Madness of the Betrayer", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2740, "stat_alloc_2": 3926, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 72, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692000150680542, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Madness of the Betrayer", "name_ko_KR": "배신자의 광기", "name_fr_FR": "Folie du traître", "name_de_DE": "Wahnsinn des Verräters", "name_zh_CN": "背叛者的疯狂", "name_es_ES": "Locura de El Traidor", "name_ru_RU": "Безумие Предателя", "name_it_IT": "Follia del Traditore", "name_pt_PT": "Insânia do Traidor", "on_use": false, "id_encounter": 1589, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 32534, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brooch of the Immortal King", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66290, "buy_price": 265161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0286999940872192, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Brooch of the Immortal King", "name_ko_KR": "영원한 왕의 브로치", "name_fr_FR": "Broche du roi immortel", "name_de_DE": "Brosche des unsterblichen Königs", "name_zh_CN": "不朽之王的胸针", "name_es_ES": "Broche del Rey inmortal", "name_ru_RU": "Брошь бессмертного короля", "name_it_IT": "Spilla del Re Immortale", "name_pt_PT": "Broche do Rei Imortal", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crystalforged Trinket", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9542999863624573, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1038, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Crystalforged Trinket", "name_ko_KR": "수정으로 벼려낸 장신구", "name_fr_FR": "Bijou cristalforgé", "name_de_DE": "Kristallgeschmiedetes Schmuckstück", "name_zh_CN": "晶铸饰品", "name_es_ES": "Abalorio de cristal forjado", "name_ru_RU": "Хрустальное украшение", "name_it_IT": "Monile Forgiato nel Cristallo", "name_pt_PT": "Berloque de Cristal Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32658, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badge of Tenacity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4583, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968999981880188, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Badge of Tenacity", "name_ko_KR": "불굴의 배지", "name_fr_FR": "Ecusson de ténacité", "name_de_DE": "Abzeichen der Hartnäckigkeit", "name_zh_CN": "坚韧徽章", "name_es_ES": "Insignia de Tenacidad", "name_ru_RU": "Жетон упорства", "name_it_IT": "Distintivo della Tenacia", "name_pt_PT": "Insígnia da Tenacidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32694, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overseer's Badge", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 6148, "buy_price": 30740, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1015, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Overseer's Badge", "name_ko_KR": "감독관의 배지", "name_fr_FR": "Ecusson de surveillant", "name_de_DE": "Abzeichen des Aufsehers", "name_zh_CN": "督工的徽章", "name_es_ES": "Distintivo de sobrestante", "name_ru_RU": "Знак надзирателя", "name_it_IT": "Distintivo del Sovrintendente", "name_pt_PT": "Distintivo do Supervisor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32695, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Captain's Badge", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 7405, "buy_price": 37027, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1015, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Captain's Badge", "name_ko_KR": "대장의 배지", "name_fr_FR": "Ecusson de capitaine", "name_de_DE": "Abzeichen des Hauptmanns", "name_zh_CN": "队长的徽章", "name_es_ES": "Distintivo de Capitán", "name_ru_RU": "Жетон капитана", "name_it_IT": "Distintivo del Capitano", "name_pt_PT": "Distintivo do Capitão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32770, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skyguard Silver Cross", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6538, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 10307, "buy_price": 41230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1031, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Skyguard Silver Cross", "name_ko_KR": "하늘경비대 은빛 훈장", "name_fr_FR": "Croix d'argent de la Garde-ciel", "name_de_DE": "Silberkreuz der Himmelswache", "name_zh_CN": "天空卫队银十字勋章", "name_es_ES": "Cruz de plata de la Guardia del cielo", "name_ru_RU": "Серебряный Крест Стража Небес", "name_it_IT": "Croce d'Argento dei Guardacieli", "name_pt_PT": "Cruz de Prata da Guarda Aérea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32771, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Airman's Ribbon of Gallantry", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6538, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 10307, "buy_price": 41230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968999981880188, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1031, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Airman's Ribbon of Gallantry", "name_ko_KR": "용맹한 비행사의 기장", "name_fr_FR": "Ruban de hardiesse d'aérige", "name_de_DE": "Luftfahrerschleife des Edelmuts", "name_zh_CN": "飞行员的勇气绶带", "name_es_ES": "Lazo de galantería de aviador", "name_ru_RU": "Лента галантности воздухоплавателя", "name_it_IT": "Nastro della Galanteria dell'Aviere", "name_pt_PT": "Fita Galante do Aviador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32863, "race_mask": 18446744073709551615, "desc": "Property of the Top Orc", "pad2": "", "pad1": "", "pad0": "", "name": "Skybreaker Whip", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7264, "buy_price": 36320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965399980545044, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Skybreaker Whip", "name_ko_KR": "하늘파괴자 채찍", "name_fr_FR": "Fouet de brise-ciel", "name_de_DE": "Peitsche der Himmelsteiler", "name_zh_CN": "碎天者之鞭", "name_es_ES": "Látigo rompecielos", "name_ru_RU": "Бич усмирителя небес", "name_it_IT": "Frusta della Spaccacieli", "name_pt_PT": "Açoite Rompe-céus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32864, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Commander's Badge", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9783, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 10022, "buy_price": 50113, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9690999984741211, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1015, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Commander's Badge", "name_ko_KR": "지휘관의 배지", "name_fr_FR": "Ecusson de commandant", "name_de_DE": "Abzeichen des Kommandanten", "name_zh_CN": "指挥官的徽章", "name_es_ES": "Distintivo de Comandante", "name_ru_RU": "Кокарда командора", "name_it_IT": "Distintivo del Comandante", "name_pt_PT": "Distintivo do Comandante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 33828, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Diabolic Remedy", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6765, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.995199978351593, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Tome of Diabolic Remedy", "name_ko_KR": "악마의 치유 고서", "name_fr_FR": "Tome de remède diabolique", "name_de_DE": "Foliant der diabolischen Heilung", "name_zh_CN": "魔鬼治疗宝典", "name_es_ES": "Escrito sobre Remedio diabólico", "name_ru_RU": "Фолиант Дьявольского лекарства", "name_it_IT": "Tomo dei Rimedi Diabolici", "name_pt_PT": "Tomo do Remédio Diabólico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 33829, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hex Shrunken Head", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6618, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Hex Shrunken Head", "name_ko_KR": "사술로 쭈그러든 해골", "name_fr_FR": "Tête réduite à maléfices", "name_de_DE": "Verhexter Schrumpfkopf", "name_zh_CN": "妖术之颅", "name_es_ES": "Cabeza reducida de brujería", "name_ru_RU": "Усохшая проклятая голова", "name_it_IT": "Testa Rimpicciolita Vudù", "name_pt_PT": "Cabeça Encolhida de Feiticeiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 33830, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Aqir Artifact", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6618, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Aqir Artifact", "name_ko_KR": "고대 아퀴르 유물", "name_fr_FR": "Antique artéfact aqir", "name_de_DE": "Altes Artefakt der Aqir", "name_zh_CN": "上古埃基尔神器", "name_es_ES": "Antiguo artefacto Aqir", "name_ru_RU": "Древний акирский артефакт", "name_it_IT": "Manufatto Aqir Antico", "name_pt_PT": "Artefato Aqir Antigo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 33831, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Berserker's Call", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0061999559402466, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Berserker's Call", "name_ko_KR": "광전사의 부름", "name_fr_FR": "Appel du berserker", "name_de_DE": "Ruf des Berserkers", "name_zh_CN": "狂暴者的召唤", "name_es_ES": "Llamada de rabioso", "name_ru_RU": "Зов берсерка", "name_it_IT": "Chiamata del Berserker", "name_pt_PT": "O Chamado do Berserker", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 33832, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Determination", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 833100, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0098999738693237, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Determination", "name_ko_KR": "지휘관의 결단", "name_fr_FR": "Détermination de maître de guerre", "name_de_DE": "Entschiedenheit des Kampfmeisters", "name_zh_CN": "战斗大师的决心", "name_es_ES": "Determinación de maestro de batalla", "name_ru_RU": "Решимость военачальника", "name_it_IT": "Determinazione del Maestro di Guerra", "name_pt_PT": "Determinação do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34029, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Voodoo Mask", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8991, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9769999980926514, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Tiny Voodoo Mask", "name_ko_KR": "작은 부두 가면", "name_fr_FR": "Masque vaudou minuscule", "name_de_DE": "Winzige Voodoomaske", "name_zh_CN": "小巫毒面具", "name_es_ES": "Máscara de vudú diminuta", "name_ru_RU": "Крошечная маска вуду", "name_it_IT": "Piccola maschera Vudù", "name_pt_PT": "Máscara do Pequeno Vodu", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34049, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Audacity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 805800, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9768000245094299, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Audacity", "name_ko_KR": "지휘관의 용맹", "name_fr_FR": "Audace de maître de guerre", "name_de_DE": "Kühnheit des Kampfmeisters", "name_zh_CN": "战斗大师的勇猛", "name_es_ES": "Audacia de maestro de batalla", "name_ru_RU": "Отвага военачальника", "name_it_IT": "Audacia del Maestro di Guerra", "name_pt_PT": "Audácia do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34050, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Perseverance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 808900, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9804999828338623, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Perseverance", "name_ko_KR": "지휘관의 끈기", "name_fr_FR": "Persévérance de maître de guerre", "name_de_DE": "Beharrlichkeit des Kampfmeisters", "name_zh_CN": "战斗大师的坚定", "name_es_ES": "Perseverancia de maestro de batalla", "name_ru_RU": "Настойчивость военачальника", "name_it_IT": "Perseveranza del Maestro di Guerra", "name_pt_PT": "Perseverança do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34162, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Depravity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 805800, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9768000245094299, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Depravity", "name_ko_KR": "지휘관의 악행", "name_fr_FR": "Dépravation de maître de guerre", "name_de_DE": "Ruchlosigkeit des Kampfmeisters", "name_zh_CN": "战斗大师的堕落", "name_es_ES": "Depravación de maestro de batalla", "name_ru_RU": "Порочность военачальника", "name_it_IT": "Depravazione del Maestro di Guerra", "name_pt_PT": "Depravação do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Cruelty", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 808900, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9804999828338623, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Cruelty", "name_ko_KR": "지휘관의 무자비함", "name_fr_FR": "Cruauté de maître de guerre", "name_de_DE": "Grausamkeit des Kampfmeisters", "name_zh_CN": "战斗大师的残暴", "name_es_ES": "Crueldad de maestro de batalla", "name_ru_RU": "Жестокость военачальника", "name_it_IT": "Crudeltà del Maestro di Guerra", "name_pt_PT": "Crueldade do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34423, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Strength of the High Chief", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7209, "buy_price": 36049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581999778747559, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Strength of the High Chief", "name_ko_KR": "대족장의 힘", "name_fr_FR": "Force du grand chef", "name_de_DE": "Stärke des Oberhäuptlings", "name_zh_CN": "熊怪酋长之力", "name_es_ES": "Fuerza del Gran Jefe", "name_ru_RU": "Сила великого вождя", "name_it_IT": "Forza del Gran Capo", "name_pt_PT": "Força do Chefe Supremo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Power of the High Chief", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7237, "buy_price": 36188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Power of the High Chief", "name_ko_KR": "대족장의 위력", "name_fr_FR": "Puissance du grand chef", "name_de_DE": "Macht des Oberhäuptlings", "name_zh_CN": "熊怪酋长之能", "name_es_ES": "Poder del Gran Jefe", "name_ru_RU": "Мощь великого вождя", "name_it_IT": "Potenza del Gran Capo", "name_pt_PT": "Poder do Chefe Supremo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34427, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blackened Naaru Sliver", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6585, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9728999733924866, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Blackened Naaru Sliver", "name_ko_KR": "타락한 나루의 조각", "name_fr_FR": "Esquille naaru noircie", "name_de_DE": "Geschwärzter Naarusplitter", "name_zh_CN": "灰暗的纳鲁薄片", "name_es_ES": "Esquirla naaru ennegrecida", "name_ru_RU": "Почерневшая лента наару", "name_it_IT": "Scaglia Annerita del Naaru", "name_pt_PT": "Lasca Enegrecida dos Naarus", "on_use": false, "id_encounter": 1595, "id_journal_instance": 752, "id_map": 580, "instance_type": 2}, {"id": 34428, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Steely Naaru Sliver", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6585, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003100037574768, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Steely Naaru Sliver", "name_ko_KR": "강철 같은 나루의 조각", "name_fr_FR": "Esquille naaru inflexible", "name_de_DE": "Stahlharter Naarusplitter", "name_zh_CN": "坚硬的纳鲁薄片", "name_es_ES": "Esquirla acerada de los naaru", "name_ru_RU": "Стальная лента наару", "name_it_IT": "Scaglia d'Acciaio del Naaru", "name_pt_PT": "Lasca Metálica dos Naarus", "on_use": true, "id_encounter": 1595, "id_journal_instance": 752, "id_map": 580, "instance_type": 2}, {"id": 34429, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shifting Naaru Sliver", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6585, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006700038909912, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Shifting Naaru Sliver", "name_ko_KR": "변화하는 나루의 조각", "name_fr_FR": "Esquille naaru changeante", "name_de_DE": "Unbeständiger Naarusplitter", "name_zh_CN": "变幻的纳鲁薄片", "name_es_ES": "Esquirla cambiante de los naaru", "name_ru_RU": "Переливчатая лента наару", "name_it_IT": "Scaglia Fasante del Naaru", "name_pt_PT": "Lasca Cambiante dos Naarus", "on_use": true, "id_encounter": 1595, "id_journal_instance": 752, "id_map": 580, "instance_type": 2}, {"id": 34430, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glimmering Naaru Sliver", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6585, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104000568389893, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Glimmering Naaru Sliver", "name_ko_KR": "희미하게 빛나는 나루의 조각", "name_fr_FR": "Esquille naaru rougeoyante", "name_de_DE": "Schimmernder Naarusplitter", "name_zh_CN": "闪光的纳鲁薄片", "name_es_ES": "Esquirla naaru de luz trémula", "name_ru_RU": "Мерцающая лента наару", "name_it_IT": "Scaglia Luccicante del Naaru", "name_pt_PT": "Lasca Luminosa dos Naarus", "on_use": true, "id_encounter": 1595, "id_journal_instance": 752, "id_map": 580, "instance_type": 2}, {"id": 34470, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timbal's Focusing Crystal", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20943, "buy_price": 104716, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Timbal's Focusing Crystal", "name_ko_KR": "팀발의 집중 수정", "name_fr_FR": "Cristal focalisateur de Timbal", "name_de_DE": "Timbals Fokussierungskristall", "name_zh_CN": "提巴尔的聚焦水晶", "name_es_ES": "Cristal de enfoque de Timbal", "name_ru_RU": "Фокусирующий кристалл Тимбала", "name_it_IT": "Cristallo Focalizzante di Timbal", "name_pt_PT": "Cristal de Concentração de Timbal", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 34471, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of the Sunwell", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21017, "buy_price": 105089, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013800024986267, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Vial of the Sunwell", "name_ko_KR": "태양샘 약병", "name_fr_FR": "Fiole du Puits de soleil", "name_de_DE": "Phiole des Sonnenbrunnens", "name_zh_CN": "太阳之井的水瓶", "name_es_ES": "Vial de La Fuente del Sol", "name_ru_RU": "Флакон воды из Солнечного Колодца", "name_it_IT": "Fiala del Pozzo Solare", "name_pt_PT": "Ampola da Nascente do Sol", "on_use": true, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 34472, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of Contempt", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7719, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21094, "buy_price": 105473, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0175000429153442, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Shard of Contempt", "name_ko_KR": "경멸의 파편", "name_fr_FR": "Éclat du mépris", "name_de_DE": "Scherbe der Verachtung", "name_zh_CN": "耻辱碎片", "name_es_ES": "Fragmento de desprecio", "name_ru_RU": "Осколок презрения", "name_it_IT": "Frammento del Disprezzo", "name_pt_PT": "Estilhaço do Desprezo", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 34473, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Commendation of Kael'thas", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21171, "buy_price": 105856, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Commendation of Kael'thas", "name_ko_KR": "캘타스의 증표", "name_fr_FR": "Recommandation de Kael'thas", "name_de_DE": "Belobigung von Kael'thas", "name_zh_CN": "凯尔萨斯的赞誉", "name_es_ES": "Mención de honor de Kael'thas", "name_ru_RU": "Рекомендация Кель'таса", "name_it_IT": "Distintivo d'Encomio di Kael'thas", "name_pt_PT": "Comenda de Kael'thas", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 34576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Cruelty", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9843999743461609, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Cruelty", "name_ko_KR": "지휘관의 무자비함", "name_fr_FR": "Cruauté de maître de guerre", "name_de_DE": "Grausamkeit des Kampfmeisters", "name_zh_CN": "战斗大师的残暴", "name_es_ES": "Crueldad de maestro de batalla", "name_ru_RU": "Жестокость военачальника", "name_it_IT": "Crudeltà del Maestro di Guerra", "name_pt_PT": "Crueldade do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Depravity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.988099992275238, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Depravity", "name_ko_KR": "지휘관의 악행", "name_fr_FR": "Dépravation de maître de guerre", "name_de_DE": "Ruchlosigkeit des Kampfmeisters", "name_zh_CN": "战斗大师的堕落", "name_es_ES": "Depravación de maestro de batalla", "name_ru_RU": "Порочность военачальника", "name_it_IT": "Depravazione del Maestro di Guerra", "name_pt_PT": "Depravação do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34578, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Determination", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9918000102043152, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Determination", "name_ko_KR": "지휘관의 결단", "name_fr_FR": "Détermination de maître de guerre", "name_de_DE": "Entschiedenheit des Kampfmeisters", "name_zh_CN": "战斗大师的决心", "name_es_ES": "Determinación de maestro de batalla", "name_ru_RU": "Решимость военачальника", "name_it_IT": "Determinazione del Maestro di Guerra", "name_pt_PT": "Determinação do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Audacity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9955000281333923, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Audacity", "name_ko_KR": "지휘관의 용맹", "name_fr_FR": "Audace de maître de guerre", "name_de_DE": "Kühnheit des Kampfmeisters", "name_zh_CN": "战斗大师的勇猛", "name_es_ES": "Audacia de maestro de batalla", "name_ru_RU": "Отвага военачальника", "name_it_IT": "Audacia del Maestro di Guerra", "name_pt_PT": "Audácia do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Perseverance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9991000294685364, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Perseverance", "name_ko_KR": "지휘관의 끈기", "name_fr_FR": "Persévérance de maître de guerre", "name_de_DE": "Beharrlichkeit des Kampfmeisters", "name_zh_CN": "战斗大师的坚定", "name_es_ES": "Perseverancia de maestro de batalla", "name_ru_RU": "Настойчивость военачальника", "name_it_IT": "Perseveranza del Maestro di Guerra", "name_pt_PT": "Perseverança do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35326, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Alacrity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 787400, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9545000195503235, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Alacrity", "name_ko_KR": "지휘관의 날렵함", "name_fr_FR": "Empressement de maître de guerre", "name_de_DE": "Eifer des Kampfmeisters", "name_zh_CN": "战斗大师的活跃", "name_es_ES": "Prontitud de maestro de batalla", "name_ru_RU": "Готовность военачальника", "name_it_IT": "Alacrità del Maestro di Guerra", "name_pt_PT": "Diligência do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35327, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Alacrity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9581999778747559, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Alacrity", "name_ko_KR": "지휘관의 날렵함", "name_fr_FR": "Empressement de maître de guerre", "name_de_DE": "Eifer des Kampfmeisters", "name_zh_CN": "战斗大师的活跃", "name_es_ES": "Prontitud de maestro de batalla", "name_ru_RU": "Готовность военачальника", "name_it_IT": "Alacrità del Maestro di Guerra", "name_pt_PT": "Diligência do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35693, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Empyrean Tortoise", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0103000402450562, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 75, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Figurine - Empyrean Tortoise", "name_ko_KR": "조각상 - 창공의 거북이", "name_fr_FR": "Figurine de tortue empyréenne", "name_de_DE": "Figur - Himmelsschildkröte", "name_zh_CN": "雕像 - 天蓝宝石海龟", "name_es_ES": "Figurilla: tortuga empírea", "name_ru_RU": "Статуэтка неземной черепахи", "name_it_IT": "Statuetta - Tartaruga Empirea", "name_pt_PT": "Estatueta - Jabuti Empíreo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35694, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Khorium Boar", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12000, "buy_price": 48000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 75, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Figurine - Khorium Boar", "name_ko_KR": "조각상 - 코륨 멧돼지", "name_fr_FR": "Figurine de sanglier en khorium", "name_de_DE": "Figur - Khoriumeber", "name_zh_CN": "雕像 - 氪金野猪", "name_es_ES": "Figurilla: jabalí de korio", "name_ru_RU": "Статуэтка кориевого вепря", "name_it_IT": "Statuetta - Cinghiale di Korio", "name_pt_PT": "Estatueta - Javali de Kório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35700, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Crimson Serpent", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5238, "stat_alloc_2": 7778, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624000191688538, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 75, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Figurine - Crimson Serpent", "name_ko_KR": "조각상 - 진홍빛 뱀", "name_fr_FR": "Figurine de cobra cramoisi", "name_de_DE": "Figur - Scharlachrote Schlange", "name_zh_CN": "雕像 - 赤尖蛇", "name_es_ES": "Figurilla: serpiente carmesí", "name_ru_RU": "Статуэтка багровой змейки", "name_it_IT": "Statuetta - Serpente Cremisi", "name_pt_PT": "Estatueta - Serpente Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35702, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Shadowsong Panther", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696999788284302, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 75, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Figurine - Shadowsong Panther", "name_ko_KR": "조각상 - 어둠노래 퓨마", "name_fr_FR": "Figurine de panthère de chantelombre", "name_de_DE": "Figur - Schattensangpanther", "name_zh_CN": "雕像 - 影歌猎豹", "name_es_ES": "Figurilla: pantera Cantosombrío", "name_ru_RU": "Статуэтка пантеры Песни Теней", "name_it_IT": "Statuetta - Pantera Cantombroso", "name_pt_PT": "Estatueta - Pantera de Cantonegro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35703, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Seaspray Albatross", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7302, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 75, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Figurine - Seaspray Albatross", "name_ko_KR": "조각상 - 바다안개 알바트로스", "name_fr_FR": "Figurine d'albatros en écume", "name_de_DE": "Figur - Gischtalbatros", "name_zh_CN": "雕像 - 海浪信天翁", "name_es_ES": "Figurilla: albatros de espuma marina", "name_ru_RU": "Статуэтка морского альбатроса", "name_it_IT": "Statuetta - Albatros Brumarino", "name_pt_PT": "Estatueta - Albatroz de Espuma-marinha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35748, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Guardian's Alchemist Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8571, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2484, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Guardian's Alchemist Stone", "name_ko_KR": "수호자의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste de gardien", "name_de_DE": "Alchemistenstein des Wächters", "name_zh_CN": "守护者的炼金石", "name_es_ES": "Piedra de alquimista de guardián", "name_ru_RU": "Алхимический камень стража", "name_it_IT": "Pietra Alchemica del Guardiano", "name_pt_PT": "Pedra do Alquimista do Guardião", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35749, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Sorcerer's Alchemist Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8571, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2484, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Sorcerer's Alchemist Stone", "name_ko_KR": "마술사의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste d'ensorceleur", "name_de_DE": "Alchemistenstein des Zauberers", "name_zh_CN": "巫师的炼金石", "name_es_ES": "Piedra de alquimista de hechicero", "name_ru_RU": "Алхимический камень чародея", "name_it_IT": "Pietra Alchemica dell'Occultista", "name_pt_PT": "Pedra do Alquimista do Feiticeiro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35750, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Redeemer's Alchemist Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8571, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2484, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Redeemer's Alchemist Stone", "name_ko_KR": "구원자의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste de rédempteur", "name_de_DE": "Alchemistenstein des Erlösers", "name_zh_CN": "救赎者的炼金石", "name_es_ES": "Piedra de alquimista de redentor", "name_ru_RU": "Алхимический камень искупителя", "name_it_IT": "Pietra Alchemica del Redentore", "name_pt_PT": "Pedra do Alquimista do Redentor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35751, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Assassin's Alchemist Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0290000438690186, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2484, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Assassin's Alchemist Stone", "name_ko_KR": "암살자의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste d'assassin", "name_de_DE": "Alchemistenstein des Assassinen", "name_zh_CN": "刺客的炼金石", "name_es_ES": "Piedra de alquimista de asesino", "name_ru_RU": "Алхимический камень убийцы", "name_it_IT": "Pietra Alchemica dell'Assassino", "name_pt_PT": "Pedra do Alquimista do Assassino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35935, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infused Coldstone Rune", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5849, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8579, "buy_price": 42899, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955000281333923, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Infused Coldstone Rune", "name_ko_KR": "마력 깃든 냉기석 룬", "name_fr_FR": "Rune froidepierre infusée", "name_de_DE": "Erfüllte Froststeinrune", "name_zh_CN": "魔法冻石符文", "name_es_ES": "Runa de piedrafría imbuida", "name_ru_RU": "Заряженная руна холодного камня", "name_it_IT": "Runa di Pietrafredda Infusa", "name_pt_PT": "Runa de Pedra Fria Infusa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35937, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Braxley's Backyard Moonshine", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4906, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8642, "buy_price": 43213, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0027999877929688, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Braxley's Backyard Moonshine", "name_ko_KR": "브락슬리의 뒷마당 밀주", "name_fr_FR": "Tord-boyaux maison de Braxley", "name_de_DE": "Braxleys Hinterhoffusel", "name_zh_CN": "布拉克雷的私藏月光酒", "name_es_ES": "Licor de luna del patio trasero de Braxley", "name_ru_RU": "Бутыль самогона Браксли", "name_it_IT": "Torcibudella del Cortile di Braxley", "name_pt_PT": "Pinga de Fundo de Quintal de Braxley", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 36871, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fury of the Encroaching Storm", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7213, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10262, "buy_price": 51313, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fury of the Encroaching Storm", "name_ko_KR": "폭풍침입자의 분노", "name_fr_FR": "Fureur de l'orage imminent", "name_de_DE": "Zorn des aufziehenden Sturms", "name_zh_CN": "临近风暴之怒", "name_es_ES": "Furia de la tormenta usurpadora", "name_ru_RU": "Ярость шквального ветра", "name_it_IT": "Furia della Tempesta Incombente", "name_pt_PT": "Fúria da Tempestade Usurpadora", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 36872, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mender of the Oncoming Dawn", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6885, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10300, "buy_price": 51504, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mender of the Oncoming Dawn", "name_ko_KR": "다가오는 새벽의 치유석", "name_fr_FR": "Soigneur de l'aube imminente", "name_de_DE": "Heiler des kommenden Morgens", "name_zh_CN": "破晓的治愈者", "name_es_ES": "Casquete del alba venidera", "name_ru_RU": "Вызыватель рассвета", "name_it_IT": "Guaritore dell'Alba Imminente", "name_pt_PT": "Reparador da Aurora Iminente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 36874, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of the Herald", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7049, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10376, "buy_price": 51882, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0032999515533447, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Horn of the Herald", "name_ko_KR": "전령의 뿔피리", "name_fr_FR": "Cor du héraut", "name_de_DE": "Horn des Herolds", "name_zh_CN": "先锋的号角", "name_es_ES": "Cuerno del Heraldo", "name_ru_RU": "Рог вестника", "name_it_IT": "Corno dell'Alfiere", "name_pt_PT": "Chifre do Arauto", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 36972, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Arcane Phenomena", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5979, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24544, "buy_price": 122723, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0218000411987305, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Tome of Arcane Phenomena", "name_ko_KR": "신비한 현상의 고서", "name_fr_FR": "Tome du phénomène arcanique", "name_de_DE": "Foliant der arkanen Phänomene", "name_zh_CN": "奥法之书", "name_es_ES": "Escrito sobre fenómenos Arcanos", "name_ru_RU": "Фолиант магических феноменов", "name_it_IT": "Tomo del Fenomeno Arcano", "name_pt_PT": "Tomo de Fenômenos Arcanos", "on_use": true, "id_encounter": 625, "id_journal_instance": 282, "id_map": 578, "instance_type": 1}, {"id": 36993, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of the Pantheon", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6701, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24631, "buy_price": 123155, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Seal of the Pantheon", "name_ko_KR": "판테온의 인장", "name_fr_FR": "Sceau du panthéon", "name_de_DE": "Siegel des Pantheons", "name_zh_CN": "万神殿的封印", "name_es_ES": "Sello del Panteón", "name_ru_RU": "Печать Пантеона", "name_it_IT": "Sigillo del Pantheon", "name_pt_PT": "Selo do Panteão", "on_use": true, "id_encounter": 600, "id_journal_instance": 275, "id_map": 602, "instance_type": 1}, {"id": 37064, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vestige of Haldor", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6701, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24460, "buy_price": 122302, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Vestige of Haldor", "name_ko_KR": "할도르의 형적", "name_fr_FR": "Vestige d'Haldor", "name_de_DE": "Überreste von Haldor", "name_zh_CN": "赫尔多之痕", "name_es_ES": "Vestigio de Haldor", "name_ru_RU": "Останки Галдора", "name_it_IT": "Vestigia di Haldor", "name_pt_PT": "Vestígio de Haldor", "on_use": false, "id_encounter": 644, "id_journal_instance": 286, "id_map": 575, "instance_type": 1}, {"id": 37111, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Preserver", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6598, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25070, "buy_price": 125353, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0436999797821045, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Soul Preserver", "name_ko_KR": "영혼이 담긴 구슬", "name_fr_FR": "Protecteur d'âme", "name_de_DE": "Seelenhüter", "name_zh_CN": "护魂者", "name_es_ES": "Conservador de almas", "name_ru_RU": "Резервуар для душ", "name_it_IT": "Preservatore delle Anime", "name_pt_PT": "Salva-alma", "on_use": false, "id_encounter": 614, "id_journal_instance": 279, "id_map": 595, "instance_type": 1}, {"id": 37127, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brightbrew Charm", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7031, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0289000272750854, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Brightbrew Charm", "name_ko_KR": "감미로운 투명 맥주", "name_fr_FR": "Charme brillebière", "name_de_DE": "Hellbräuglücksbringer", "name_zh_CN": "光明美酒护符", "name_es_ES": "Talismán Brillobirra", "name_ru_RU": "Амулет светлого напитка", "name_it_IT": "Talismano della Birra che fa Bene", "name_pt_PT": "Patuá Cervaleve", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37128, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Balebrew Charm", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7031, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Balebrew Charm", "name_ko_KR": "감미로운 고통의 맥주", "name_fr_FR": "Charme torvebière", "name_de_DE": "Plörrbräuglücksbringer", "name_zh_CN": "黑暗美酒护符", "name_es_ES": "Talismán Fardobirra", "name_ru_RU": "Амулет темного варева", "name_it_IT": "Talismano della Birra che fa Male", "name_pt_PT": "Patuá Cervamarga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sphere of Red Dragon's Blood", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 22853, "buy_price": 114267, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Sphere of Red Dragon's Blood", "name_ko_KR": "붉은용 피의 구슬", "name_fr_FR": "Sphère de sang de dragon rouge", "name_de_DE": "Rote Drachenblutsphäre", "name_zh_CN": "红龙血珠", "name_es_ES": "Esfera de sangre de dragón Rojo", "name_ru_RU": "Сфера крови красного дракона", "name_it_IT": "Sfera di Sangue del Drago Rosso", "name_pt_PT": "Esfera de Sangue de Dragão Vermelho", "on_use": true, "id_encounter": 621, "id_journal_instance": 281, "id_map": 576, "instance_type": 1}, {"id": 37220, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Gossamer", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10091, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24717, "buy_price": 123588, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0290000438690186, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Essence of Gossamer", "name_ko_KR": "섬세한 거미줄", "name_fr_FR": "Essence de tulle", "name_de_DE": "Samtige Essenz", "name_zh_CN": "蛛丝精华", "name_es_ES": "Esencia de delicadez", "name_ru_RU": "Квинтэссенция паутины", "name_it_IT": "Essenza di Stoffa Finissima", "name_pt_PT": "Essência de Teia Diáfana", "on_use": false, "id_encounter": 586, "id_journal_instance": 272, "id_map": 601, "instance_type": 1}, {"id": 37264, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pendulum of Telluric Currents", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6727, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 334, "buy_price": 1671, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Pendulum of Telluric Currents", "name_ko_KR": "대지의 물결 추", "name_fr_FR": "Pendule des courants telluriques", "name_de_DE": "Pendel der Erdströme", "name_zh_CN": "魔流钟摆", "name_es_ES": "Péndulo de corrientes telúricas", "name_ru_RU": "Маятник теллурических токов", "name_it_IT": "Pendolo delle Correnti Telluriche", "name_pt_PT": "Pêndulo das Correntes Telúricas", "on_use": false, "id_encounter": 624, "id_journal_instance": 282, "id_map": 578, "instance_type": 1}, {"id": 37390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Meteorite Whetstone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6727, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25080, "buy_price": 125401, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044100046157837, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Meteorite Whetstone", "name_ko_KR": "유성 숫돌", "name_fr_FR": "Pierre à aiguiser météorique", "name_de_DE": "Meteoritenschleifstein", "name_zh_CN": "陨星磨石", "name_es_ES": "Piedra de afilar de meteorito", "name_ru_RU": "Метеоритный оселок", "name_it_IT": "Cote di Meteorite", "name_pt_PT": "Pedra-ume de Meteorito", "on_use": false, "id_encounter": 644, "id_journal_instance": 286, "id_map": 575, "instance_type": 1}, {"id": 37555, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warsong's Wrath", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7170, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8741, "buy_price": 43709, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.014299988746643, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Warsong's Wrath", "name_ko_KR": "전쟁노래 부족의 분노", "name_fr_FR": "Courroux chanteguerre", "name_de_DE": "Rache des Kriegshymnenklans", "name_zh_CN": "战歌之怒", "name_es_ES": "Cólera de los Grito de Guerra", "name_ru_RU": "Ярость Песни Войны", "name_it_IT": "Ira dei Cantaguerra", "name_pt_PT": "Ira do Brado Guerreiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37556, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Tundra", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7170, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8773, "buy_price": 43868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Talisman of the Tundra", "name_ko_KR": "동토의 부적", "name_fr_FR": "Talisman de la toundra", "name_de_DE": "Talisman der Tundra", "name_zh_CN": "苔原护符", "name_es_ES": "Dije de la tundra", "name_ru_RU": "Талисман тундры", "name_it_IT": "Talismano della Tundra", "name_pt_PT": "Talismã da Tundra", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37557, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warsong's Fervor", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5849, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8805, "buy_price": 44028, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Warsong's Fervor", "name_ko_KR": "전쟁노래 부족의 열정", "name_fr_FR": "Ferveur chanteguerre", "name_de_DE": "Eifer des Kriegshymnenklans", "name_zh_CN": "战歌的热情", "name_es_ES": "Fervor de los Grito de Guerra", "name_ru_RU": "Жаркая Песнь Войны", "name_it_IT": "Fervore dei Cantaguerra", "name_pt_PT": "Fervor do Brado Guerreiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37558, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tidal Boon", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7547, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8836, "buy_price": 44183, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0253000259399414, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Tidal Boon", "name_ko_KR": "파도의 은혜", "name_fr_FR": "Aubaine des flots", "name_de_DE": "Gezeitensegen", "name_zh_CN": "海潮的恩赐", "name_es_ES": "Favor de la marea", "name_ru_RU": "Дар прилива", "name_it_IT": "Dono delle Maree", "name_pt_PT": "Bênção da Maré", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37559, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Serrah's Star", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7170, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8868, "buy_price": 44342, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0290000438690186, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Serrah's Star", "name_ko_KR": "세라의 별", "name_fr_FR": "Etoile de Serrah", "name_de_DE": "Serrahs Stern", "name_zh_CN": "塞尔拉之星", "name_es_ES": "Estrella de Serrah", "name_ru_RU": "Звезда Серры", "name_it_IT": "Stella di Serrah", "name_pt_PT": "Estrela de Serrah", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37560, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Renewal", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7170, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8900, "buy_price": 44502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0326999425888062, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Vial of Renewal", "name_ko_KR": "소생의 약병", "name_fr_FR": "Fiole du renouveau", "name_de_DE": "Phiole der Erneuerung", "name_zh_CN": "复兴之瓶", "name_es_ES": "Vial de renovación", "name_ru_RU": "Фиал обновления", "name_it_IT": "Fiala del Rinnovamento", "name_pt_PT": "Ampola da Renovação", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37562, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fury of the Crimson Drake", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6792, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8329, "buy_price": 41645, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9664000272750854, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Fury of the Crimson Drake", "name_ko_KR": "진홍십자군 비룡의 분노", "name_fr_FR": "Fureur du drake cramoisi", "name_de_DE": "Furor des scharlachroten Drachen", "name_zh_CN": "红龙之怒", "name_es_ES": "Furia del draco carmesí", "name_ru_RU": "Ярость алого дракона", "name_it_IT": "Furia del Draco Cremisi", "name_pt_PT": "Fúria do Draco Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37638, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Offering of Sacrifice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3571, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 22848, "buy_price": 114243, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.951200008392334, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Offering of Sacrifice", "name_ko_KR": "희생의 제물", "name_fr_FR": "Offrande de sacrifice", "name_de_DE": "Hingebungsvolle Opfergabe", "name_zh_CN": "献祭供品", "name_es_ES": "Ofrenda de sacrificio", "name_ru_RU": "Жертвоприношение", "name_it_IT": "Offerta di Sacrificio", "name_pt_PT": "Oferenda Sacrificial", "on_use": true, "id_encounter": 596, "id_journal_instance": 274, "id_map": 604, "instance_type": 1}, {"id": 37657, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Life", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 361, "buy_price": 1805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0475000143051147, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Spark of Life", "name_ko_KR": "생명의 불꽃", "name_fr_FR": "Etincelle de vie", "name_de_DE": "Lebensfunke", "name_zh_CN": "生命的火花", "name_es_ES": "Chispa de vida", "name_ru_RU": "Искра жизни", "name_it_IT": "Scintilla di Vita", "name_pt_PT": "Centelha de Vida", "on_use": false, "id_encounter": 607, "id_journal_instance": 277, "id_map": 599, "instance_type": 1}, {"id": 37660, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forge Ember", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 339, "buy_price": 1697, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Forge Ember", "name_ko_KR": "가열로 잿불", "name_fr_FR": "Braise de forge", "name_de_DE": "Schmiedeglut", "name_zh_CN": "熔炉的灰烬", "name_es_ES": "Ascua de forja", "name_ru_RU": "Кузнечный жар", "name_it_IT": "Tizzone della Forgia", "name_pt_PT": "Brasa de Forja", "on_use": false, "id_encounter": 607, "id_journal_instance": 277, "id_map": 599, "instance_type": 1}, {"id": 37723, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Incisor Fragment", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24551, "buy_price": 122759, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 524288, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Incisor Fragment", "name_ko_KR": "앞니 조각", "name_fr_FR": "Fragment d'incisive", "name_de_DE": "Schneidezahnfragment", "name_zh_CN": "门牙碎片", "name_es_ES": "Fragmento de incisivo", "name_ru_RU": "Кусок резца", "name_it_IT": "Frammento dell'Incisore", "name_pt_PT": "Fragmento de Incisivo", "on_use": true, "id_encounter": 590, "id_journal_instance": 273, "id_map": 600, "instance_type": 1}, {"id": 37734, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Troll Divinity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23117, "buy_price": 115589, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624000191688538, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Troll Divinity", "name_ko_KR": "트롤 신의 부적", "name_fr_FR": "Talisman de la divinité trolle", "name_de_DE": "Talisman des Trollgottes", "name_zh_CN": "巨魔神明护符", "name_es_ES": "Dije de divinidad trol", "name_ru_RU": "Талисман тролльского божества", "name_it_IT": "Talismano della Divinità Troll", "name_pt_PT": "Talismã da Divindade Troll", "on_use": true, "id_encounter": 591, "id_journal_instance": 273, "id_map": 600, "instance_type": 1}, {"id": 37835, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Je'Tze's Bell", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7222, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Je'Tze's Bell", "name_ko_KR": "제츠의 종", "name_fr_FR": "Cloche d'Af'Romaj", "name_de_DE": "Je'Tzes Glocke", "name_zh_CN": "耶塞的铃铛", "name_es_ES": "Campana de Je'Tze", "name_ru_RU": "Колокол Дже'Тце", "name_it_IT": "Campana di Je'Tze", "name_pt_PT": "Sino do Je'Tze", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37844, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Winged Talisman", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6545, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 327, "buy_price": 1639, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Winged Talisman", "name_ko_KR": "날개 달린 부적", "name_fr_FR": "Talisman ailé", "name_de_DE": "Geflügelter Talisman", "name_zh_CN": "展翼护符", "name_es_ES": "Dije alado", "name_ru_RU": "Крылатый талисман", "name_it_IT": "Talismano Alato", "name_pt_PT": "Talismã Alado", "on_use": true, "id_encounter": 599, "id_journal_instance": 275, "id_map": 602, "instance_type": 1}, {"id": 37864, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7031, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.951200008392334, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 37865, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37865, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7031, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549000263214111, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 37864, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37872, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lavanthor's Talisman", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6727, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24191, "buy_price": 120957, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007099986076355, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Lavanthor's Talisman", "name_ko_KR": "라반토르의 부적", "name_fr_FR": "Talisman de Lavanthor", "name_de_DE": "Lavanthors Talisman", "name_zh_CN": "拉文索尔的护符", "name_es_ES": "Talismán de Lavanthor", "name_ru_RU": "Талисман Лавантора", "name_it_IT": "Talismano di Lavanthor", "name_pt_PT": "Talismã de Lavanthor", "on_use": true, "id_encounter": 630, "id_journal_instance": 283, "id_map": 608, "instance_type": 1}, {"id": 37873, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the War Prisoner", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 348, "buy_price": 1742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0108000040054321, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Mark of the War Prisoner", "name_ko_KR": "전쟁 포로의 징표", "name_fr_FR": "Marque du prisonnier de guerre", "name_de_DE": "Mal des Kriegsgefangenen", "name_zh_CN": "战争囚徒印记", "name_es_ES": "Marca del prisionero de guerra", "name_ru_RU": "Метка арестанта", "name_it_IT": "Marchio del Prigioniero di Guerra", "name_pt_PT": "Marca do Prisioneiro de Guerra", "on_use": true, "id_encounter": 632, "id_journal_instance": 283, "id_map": 608, "instance_type": 1}, {"id": 38070, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Foresight's Anticipation", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6897, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9103, "buy_price": 45519, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Foresight's Anticipation", "name_ko_KR": "선견지명의 직감", "name_fr_FR": "Anticipation prévoyante", "name_de_DE": "Vorahnung der Voraussicht", "name_zh_CN": "先知的预感", "name_es_ES": "Anticipación de previsión", "name_ru_RU": "Сбывшееся предсказание", "name_it_IT": "Anticipazione della Previdenza", "name_pt_PT": "Antecipação de Predição", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38071, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valonforth's Remembrance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6897, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9138, "buy_price": 45691, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549999833106995, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Valonforth's Remembrance", "name_ko_KR": "발론포스의 추억", "name_fr_FR": "Souvenir de Valensort", "name_de_DE": "Valonforts Andenken", "name_zh_CN": "瓦伦弗斯的记忆", "name_es_ES": "Recuerdos de Valonante", "name_ru_RU": "Память Валонфорта", "name_it_IT": "Ricordo di Valonforth", "name_pt_PT": "Lembrança de Valonforth", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38072, "race_mask": 18446744073709551615, "desc": "New and improved design!", "pad2": "", "pad1": "", "pad0": "", "name": "Thunder Capacitor", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9173, "buy_price": 45868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9587000012397766, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Thunder Capacitor", "name_ko_KR": "천둥 축전기", "name_fr_FR": "Condensateur de tonnerre", "name_de_DE": "Donnerkondensator", "name_zh_CN": "雷霆电容器", "name_es_ES": "Condensador de truenos", "name_ru_RU": "Громовой накопитель", "name_it_IT": "Condensatore Tonante", "name_pt_PT": "Capacitor de Trovões", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38073, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Will of the Red Dragonflight", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8103, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9209, "buy_price": 46045, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624000191688538, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Will of the Red Dragonflight", "name_ko_KR": "붉은용군단의 결의", "name_fr_FR": "Volonté du Vol draconique rouge", "name_de_DE": "Wille des roten Drachenschwarms", "name_zh_CN": "红龙的意志", "name_es_ES": "Voluntad del Vuelo Rojo", "name_ru_RU": "Воля рода красных драконов", "name_it_IT": "Volontà dello Stormo dei Draghi Rossi", "name_pt_PT": "Vontade da Revoada Vermelha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38080, "race_mask": 18446744073709551615, "desc": "Jormungar Slime Edition.", "pad2": "", "pad1": "", "pad0": "", "name": "Automated Weapon Coater", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7414, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9708, "buy_price": 48542, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0146000385284424, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Automated Weapon Coater", "name_ko_KR": "자동 무기 점액 형성기", "name_fr_FR": "Applicateur automatique pour armes", "name_de_DE": "Automatischer Waffenbeschichter", "name_zh_CN": "自动武器镀膜器", "name_es_ES": "Lubricante de armas automático", "name_ru_RU": "Автоматический зачехлитель оружия", "name_it_IT": "Potenziatore d'Armi Automatico", "name_pt_PT": "Lubrificador de Armas Automático", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38081, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scarab of Isanoth", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9743, "buy_price": 48719, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Scarab of Isanoth", "name_ko_KR": "이사노스의 스카라베", "name_fr_FR": "Scarabée d'Isanoth", "name_de_DE": "Skarabäus von Isanoth", "name_zh_CN": "伊萨诺斯甲虫", "name_es_ES": "Escarabajo de Isanoth", "name_ru_RU": "Скарабей Изанот", "name_it_IT": "Scarabeo di Isanoth", "name_pt_PT": "Escaravelho de Isanoth", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38212, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Death Knight's Anguish", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5849, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8711, "buy_price": 43558, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0108000040054321, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Death Knight's Anguish", "name_ko_KR": "죽음의 기사의 고뇌", "name_fr_FR": "Angoisse du chevalier de la mort", "name_de_DE": "Pein des Todesritters", "name_zh_CN": "死亡骑士的苦楚", "name_es_ES": "Angustia del caballero de la Muerte", "name_ru_RU": "Мука рыцаря смерти", "name_it_IT": "Angoscia del Cavaliere della Morte", "name_pt_PT": "Angústia do Cavaleiro da Morte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38213, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harbinger's Wrath", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7170, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8743, "buy_price": 43717, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0145000219345093, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Harbinger's Wrath", "name_ko_KR": "선구자의 분노", "name_fr_FR": "Courroux d'annonciateur", "name_de_DE": "Zorn des Herolds", "name_zh_CN": "先驱者之怒", "name_es_ES": "Cólera del presagista", "name_ru_RU": "Гнев предвестника", "name_it_IT": "Ira dell'Araldo", "name_pt_PT": "Ira do Precursor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38257, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Strike of the Seas", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7049, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9880, "buy_price": 49400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.955299973487854, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Strike of the Seas", "name_ko_KR": "바다의 쐐기", "name_fr_FR": "Frappe des mers", "name_de_DE": "Schlag des Meeres", "name_zh_CN": "海洋的打击", "name_es_ES": "Golpe de los mares", "name_ru_RU": "Ударная волна", "name_it_IT": "Assalto dei Mari", "name_pt_PT": "Golpe dos Mares", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38258, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sailor's Knotted Charm", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7541, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9918, "buy_price": 49591, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sailor's Knotted Charm", "name_ko_KR": "선원의 매듭장식 부적", "name_fr_FR": "Nœud porte-bonheur de marin", "name_de_DE": "Glücksknoten des Matrosen", "name_zh_CN": "水手的绳结护符", "name_es_ES": "Talismán de nudo de marinero", "name_ru_RU": "Оберег морского узла", "name_it_IT": "Talismano Annodato del Marinaio", "name_pt_PT": "Patuá Nodoso do Marinheiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38259, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "First Mate's Pocketwatch", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9955, "buy_price": 49777, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "First Mate's Pocketwatch", "name_ko_KR": "일등항해사의 회중시계", "name_fr_FR": "Montre de gousset du second", "name_de_DE": "Taschenuhr des Ersten Maats", "name_zh_CN": "大副的怀表", "name_es_ES": "Reloj de bolsillo de contramaestre", "name_ru_RU": "Карманные часы первого помощника", "name_it_IT": "Orologio da Tasca del Primo Ufficiale", "name_pt_PT": "Relógio de Bolso do Imediato", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38287, "race_mask": 18446744073709551615, "desc": "It's definitely not half full.", "pad2": "", "pad1": "", "pad0": "", "name": "Empty Mug of Direbrew", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 100000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.018399953842163, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Empty Mug of Direbrew", "name_ko_KR": "빈 다이어브루 맥주잔", "name_fr_FR": "Chope de navrebière vide", "name_de_DE": "Leerer Düsterbräubecher", "name_zh_CN": "空的烈酒杯", "name_es_ES": "Jarra de cerveza temible vacía", "name_ru_RU": "Пустая кружка Худовара", "name_it_IT": "Boccale di Birra Nera Vuoto", "name_pt_PT": "Caneca Vazia de Cervatroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38288, "race_mask": 18446744073709551615, "desc": "Not very filling.", "pad2": "", "pad1": "", "pad0": "", "name": "Direbrew Hops", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7037, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 100000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0220999717712402, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Direbrew Hops", "name_ko_KR": "다이어브루 홉 열매", "name_fr_FR": "Houblon navrebière", "name_de_DE": "Düsterbräuhopfen", "name_zh_CN": "烈酒蛇麻草", "name_es_ES": "Lúpulo de cerveza temible", "name_ru_RU": "Пивные дрожжи Худовара", "name_it_IT": "Luppolo di Birranera", "name_pt_PT": "Lúpulo de Cervatroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38289, "race_mask": 18446744073709551615, "desc": "Perfect for bouncing off tables.", "pad2": "", "pad1": "", "pad0": "", "name": "Coren's Lucky Coin", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7222, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 100000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0256999731063843, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Coren's Lucky Coin", "name_ko_KR": "코렌의 행운 동전", "name_fr_FR": "Pièce porte-bonheur de Coren", "name_de_DE": "Corens Glücksmünze", "name_zh_CN": "科林的好运硬币", "name_es_ES": "Moneda de la suerte de Coren", "name_ru_RU": "Счастливая монетка Корена", "name_it_IT": "Moneta della Fortuna di Coren", "name_pt_PT": "Moeda da Sorte de Coren", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dark Iron Smoking Pipe", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6852, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 100000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0293999910354614, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Dark Iron Smoking Pipe", "name_ko_KR": "검은무쇠 담뱃대", "name_fr_FR": "Pipe fumante sombrefer", "name_de_DE": "Tabakspfeife aus Dunkeleisen", "name_zh_CN": "黑铁烟枪", "name_es_ES": "Pipa de fumar Hierro Negro", "name_ru_RU": "Курительная трубка клана Черного Железа", "name_it_IT": "Pipa dei Ferroscuro", "name_pt_PT": "Cachimbo Ferro Negro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38358, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcane Revitalizer", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9847999811172485, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Arcane Revitalizer", "name_ko_KR": "비전 활력기", "name_fr_FR": "Revitalisant arcanique", "name_de_DE": "Arkaner Revitalisierer", "name_zh_CN": "奥术能量激活器", "name_es_ES": "Revitalizador Arcano", "name_ru_RU": "Магический оживитель", "name_it_IT": "Rivitalizzante Arcano", "name_pt_PT": "Revitalizador Arcano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Repetition Reducer", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9884999990463257, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Goblin Repetition Reducer", "name_ko_KR": "고블린 작업 감량기", "name_fr_FR": "Réducteur de répétition gobelin", "name_de_DE": "Goblinwiederkehrreduzierer", "name_zh_CN": "地精循环节流器", "name_es_ES": "Reductor de repetición goblin", "name_ru_RU": "Гоблинский гаситель повторений", "name_it_IT": "Riduttore di Ripetizioni dei Goblin", "name_pt_PT": "Redutor de Repetição Goblínico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bounty Procurement Enhancer", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.014299988746643, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Bounty Procurement Enhancer", "name_ko_KR": "현상금 획득률 향상기", "name_fr_FR": "Améliorateur de butin", "name_de_DE": "Belohnungsbeschaffungsverstärker", "name_zh_CN": "赏金获取增强器", "name_es_ES": "Potenciador de obtención de la cosecha", "name_ru_RU": "Увеличитель получаемой награды", "name_it_IT": "Potenziatore della Raccolta del Bottino", "name_pt_PT": "Amplificador de Obtenção de Recompensa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38588, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994999766349792, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 38589, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38589, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0032000541687012, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 38588, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38674, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Harvester's Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16250, "buy_price": 65000, "vendor_stack": 1, "unk_2": 0.0005000000237487257, "unk_1": 0.9739000201225281, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Soul Harvester's Charm", "name_ko_KR": "영혼 착취자의 부적", "name_fr_FR": "Charme de moissonneur d’âmes", "name_de_DE": "Amulett des Seelenernters", "name_zh_CN": "灵魂收割者的护符", "name_es_ES": "Talismán de cosechador de almas", "name_ru_RU": "Оберег Собирателя душ", "name_it_IT": "Talismano del Mietitore d'Anime", "name_pt_PT": "Patuá do Ceifalmas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38675, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Signet of the Dark Brotherhood", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16250, "buy_price": 65000, "vendor_stack": 1, "unk_2": 0.0005000000237487257, "unk_1": 0.9775999784469604, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Signet of the Dark Brotherhood", "name_ko_KR": "어둠의 결사단 인장", "name_fr_FR": "Chevalière de la sombre fraternité", "name_de_DE": "Siegel der dunklen Bruderschaft", "name_zh_CN": "黑暗兄弟会徽记", "name_es_ES": "Sello de hermandad oscura", "name_ru_RU": "Печатка Темного братства", "name_it_IT": "Anello con Sigillo della Fratellanza Oscura", "name_pt_PT": "Sinete da Irmandade Sombria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38760, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mendicant's Charm", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7742, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9778, "buy_price": 48892, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219000577926636, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mendicant's Charm", "name_ko_KR": "탁발승의 부적", "name_fr_FR": "Charme de mendiant", "name_de_DE": "Glücksbringer des Bettelmönchs", "name_zh_CN": "修行者的护符", "name_es_ES": "Talismán de mendigo", "name_ru_RU": "Оберег монаха", "name_it_IT": "Talismano del Mendicante", "name_pt_PT": "Patuá do Mendicante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38761, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talon of Hatred", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7742, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9813, "buy_price": 49069, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255999565124512, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Talon of Hatred", "name_ko_KR": "증오의 갈퀴발톱", "name_fr_FR": "Serre de la haine", "name_de_DE": "Klaue des Hasses", "name_zh_CN": "仇恨之爪", "name_es_ES": "Garfa de Odio", "name_ru_RU": "Коготь ненависти", "name_it_IT": "Artiglio dell'Odio", "name_pt_PT": "Garra do Ódio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38762, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of Bloody Fire", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7742, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9849, "buy_price": 49246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0292999744415283, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Insignia of Bloody Fire", "name_ko_KR": "새빨간 불길의 휘장", "name_fr_FR": "Insigne du feu sanglant", "name_de_DE": "Insigne des blutigen Feuers", "name_zh_CN": "血火徽记", "name_es_ES": "Insignia de fuego sangriento", "name_ru_RU": "Знак кровавого пекла", "name_it_IT": "Fregio del Fuoco Insanguinato", "name_pt_PT": "Insígnia do Fogo Sangrento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Futuresight Rune", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7067, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10973, "buy_price": 54868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0328999757766724, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Futuresight Rune", "name_ko_KR": "미래 예견의 룬", "name_fr_FR": "Rune de la vision future", "name_de_DE": "Rune des Zukunftsblicks", "name_zh_CN": "预见符文", "name_es_ES": "Runa futurvista", "name_ru_RU": "Руна предвидения", "name_it_IT": "Runa del Futuro", "name_pt_PT": "Runa da Visão do Futuro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38764, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Finite Variation", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6267, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11012, "buy_price": 55064, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0365999937057495, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rune of Finite Variation", "name_ko_KR": "유한한 다양성의 룬", "name_fr_FR": "Rune de la variation finie", "name_de_DE": "Rune der endlichen Variationen", "name_zh_CN": "有限变化符文", "name_es_ES": "Runa de variación finita", "name_ru_RU": "Руна конечной вариации", "name_it_IT": "Runa della Variazione Limitata", "name_pt_PT": "Runa da Variação Finita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38765, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Infinite Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11052, "buy_price": 55261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0403000116348267, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rune of Infinite Power", "name_ko_KR": "무한한 힘의 룬", "name_fr_FR": "Rune du pouvoir infini", "name_de_DE": "Rune der unendlichen Macht", "name_zh_CN": "无尽能量符文", "name_es_ES": "Runa de poder infinito", "name_ru_RU": "Руна беспредельной силы", "name_it_IT": "Runa della Potenza Infinita", "name_pt_PT": "Runa do Poder Infinito", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 39229, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Embrace of the Spider", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0108000040054321, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Embrace of the Spider", "name_ko_KR": "거미의 은총", "name_fr_FR": "Étreinte de l'araignée", "name_de_DE": "Umarmung der Spinne", "name_zh_CN": "蜘蛛的拥抱", "name_es_ES": "Abrazo de la araña", "name_ru_RU": "Облачение Паука", "name_it_IT": "Abbraccio del Ragno", "name_pt_PT": "Abraço da Aranha", "on_use": false, "id_encounter": 1603, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 39257, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Loatheb's Shadow", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9664000272750854, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Loatheb's Shadow", "name_ko_KR": "로데브의 그림자", "name_fr_FR": "Ombre d'Horreb", "name_de_DE": "Loathebs Schatten", "name_zh_CN": "洛欧塞布之影", "name_es_ES": "Sombra de Loatheb", "name_ru_RU": "Тень Лотхиба", "name_it_IT": "Ombra di Loatheb", "name_pt_PT": "Sombra de Repugnaz", "on_use": true, "id_encounter": 1606, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 39292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Repelling Charge", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0478999614715576, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Repelling Charge", "name_ko_KR": "반발력", "name_fr_FR": "Charge repoussante", "name_de_DE": "Abwehrangriff", "name_zh_CN": "退击护符", "name_es_ES": "Carga repelente", "name_ru_RU": "Опровергатель", "name_it_IT": "Carica Repellente", "name_pt_PT": "Carga de Ricochete", "on_use": true, "id_encounter": 1612, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 39388, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spirit-World Glass", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Spirit-World Glass", "name_ko_KR": "영혼 세계의 거울", "name_fr_FR": "Verre du monde des esprits", "name_de_DE": "Geisterweltglas", "name_zh_CN": "灵魂世界之镜", "name_es_ES": "Cristal del mundo de los espíritus", "name_ru_RU": "Стеклышко духовного мира", "name_it_IT": "Specchio dello Spirito del Mondo", "name_pt_PT": "Berloque do Mundo dos Espíritos", "on_use": true, "id_encounter": 1608, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 39811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badge of the Infiltrator", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7188, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9565, "buy_price": 47825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9995999932289124, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Badge of the Infiltrator", "name_ko_KR": "침투요원의 휘장", "name_fr_FR": "Ecusson de l'infiltré", "name_de_DE": "Abzeichen des Spitzels", "name_zh_CN": "渗透者徽章", "name_es_ES": "Distintivo de infiltrado", "name_ru_RU": "Знак засланца", "name_it_IT": "Distintivo dell'Infiltrato", "name_pt_PT": "Distintivo do Infiltrador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 39819, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodbinder's Runestone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5938, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 53770, "buy_price": 215082, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Bloodbinder's Runestone", "name_ko_KR": "혈술사 마법석", "name_fr_FR": "Pierre runique de lieur de sang", "name_de_DE": "Runenstein des Blutbinders", "name_zh_CN": "缚血者的符文石", "name_es_ES": "Piedra rúnica de vinculasangre", "name_ru_RU": "Рунический камень кровоплета", "name_it_IT": "Pietra Runica del Legasangue", "name_pt_PT": "Pedra Rúnica do Vinculador Sanguíneo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 39821, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritist's Focus", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9211, "buy_price": 46059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9627000093460083, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Spiritist's Focus", "name_ko_KR": "영혼사의 집중룬", "name_fr_FR": "Focalisateur de spirite", "name_de_DE": "Fokus des Spiritisten", "name_zh_CN": "灵魂师的焦点", "name_es_ES": "Enfoque de espiritista", "name_ru_RU": "Средоточие медиума", "name_it_IT": "Focalizzatore dello Spiritista", "name_pt_PT": "Concentração do Espiritualista", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 39889, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of Argent Fury", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9743, "buy_price": 48715, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0182000398635864, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Horn of Argent Fury", "name_ko_KR": "은빛 분노의 뿔피리", "name_fr_FR": "Cor de la fureur d'Argent", "name_de_DE": "Horn des Argentumfurors", "name_zh_CN": "银色怒火号角", "name_es_ES": "Cuerno de furia Argenta", "name_ru_RU": "Рог серебряного неистовства", "name_it_IT": "Corno delle Furie d'Argento", "name_pt_PT": "Chifre da Fúria Argêntea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40255, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dying Curse", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9702000021934509, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Dying Curse", "name_ko_KR": "죽음의 저주", "name_fr_FR": "Malédiction du mourant", "name_de_DE": "Letzter Fluch", "name_zh_CN": "消逝的诅咒", "name_es_ES": "Maldición de muerte", "name_ru_RU": "Исчезающее проклятие", "name_it_IT": "Maledizione Morente", "name_pt_PT": "Praga Agonizante", "on_use": false, "id_encounter": 1603, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40256, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grim Toll", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5845, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739000201225281, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Grim Toll", "name_ko_KR": "냉혹한 희생", "name_fr_FR": "Le glas sinistre", "name_de_DE": "Grimmiger Tribut", "name_zh_CN": "死亡之钟", "name_es_ES": "Tañido siniestro", "name_ru_RU": "Мрачный перезвон", "name_it_IT": "Pedaggio Torvo", "name_pt_PT": "Badalada Sinistra", "on_use": false, "id_encounter": 1603, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40257, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defender's Code", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Defender's Code", "name_ko_KR": "수호병의 규범", "name_fr_FR": "Code du défenseur", "name_de_DE": "Kodex des Verteidigers", "name_zh_CN": "防御者的准则", "name_es_ES": "Código del defensor", "name_ru_RU": "Кодекс защитника", "name_it_IT": "Codice del Difensore", "name_pt_PT": "Código do Defensor", "on_use": true, "id_encounter": 1603, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40258, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forethought Talisman", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Forethought Talisman", "name_ko_KR": "선견의 부적", "name_fr_FR": "Talisman de prévoyance", "name_de_DE": "Talisman der Vorsehung", "name_zh_CN": "谋划护符", "name_es_ES": "Talismán de previsión", "name_ru_RU": "Талисман предусмотрительности", "name_it_IT": "Talismano della Precauzione", "name_pt_PT": "Talismã da Premeditação", "on_use": false, "id_encounter": 1603, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40354, "race_mask": 18446744073709551615, "desc": "Everything from silvered knives to holy water.", "pad2": "", "pad1": "", "pad0": "", "name": "Monster Slayer's Kit", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6203, "buy_price": 24813, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9923999905586243, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Monster Slayer's Kit", "name_ko_KR": "괴물 학살자의 도구", "name_fr_FR": "Trousse de tueur de monstre", "name_de_DE": "Monsterjägerausrüstung", "name_zh_CN": "要你命3000", "name_es_ES": "Juego de caza de monstruos", "name_ru_RU": "Набор истребителя монстров", "name_it_IT": "Kit dell'Ammazzamostri", "name_pt_PT": "Kit do Mata-monstros", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40371, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bandit's Insignia", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Bandit's Insignia", "name_ko_KR": "산적의 표장", "name_fr_FR": "Insigne de bandit", "name_de_DE": "Banditeninsigne", "name_zh_CN": "歹徒的徽记", "name_es_ES": "Insignia de bandido", "name_ru_RU": "Знак отличия Бандита", "name_it_IT": "Fregio del Bandito", "name_pt_PT": "Insígnia do Bandido", "on_use": false, "id_encounter": 1614, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40372, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Repulsion", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Repulsion", "name_ko_KR": "격퇴의 룬", "name_fr_FR": "Rune de répulsion", "name_de_DE": "Rune des Rückstoßes", "name_zh_CN": "排斥符文", "name_es_ES": "Runa de repulsión", "name_ru_RU": "Руна отражения", "name_it_IT": "Runa della Repulsione", "name_pt_PT": "Runa de Repulsão", "on_use": true, "id_encounter": 1614, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40373, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Extract of Necromantic Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Extract of Necromantic Power", "name_ko_KR": "강령술 추출물", "name_fr_FR": "Extrait de pouvoir nécromantique", "name_de_DE": "Extrakt nekromantischer Macht", "name_zh_CN": "通灵能量精粹", "name_es_ES": "Extracto de poder nigromántico", "name_ru_RU": "Экстракт некромантского могущества", "name_it_IT": "Estratto di Potenza Negromantica", "name_pt_PT": "Extrato de Poder Necromântico", "on_use": false, "id_encounter": 1614, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40382, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul of the Dead", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0480999946594238, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Soul of the Dead", "name_ko_KR": "망자의 영혼", "name_fr_FR": "Âme des morts", "name_de_DE": "Seele der Toten", "name_zh_CN": "亡者之魂", "name_es_ES": "Alma de los muertos", "name_ru_RU": "Душа умершего", "name_it_IT": "Anima dei Morti", "name_pt_PT": "Alma dos Mortos", "on_use": false, "id_encounter": 1614, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40430, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Majestic Dragon Figurine", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0037000179290771, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Majestic Dragon Figurine", "name_ko_KR": "웅장한 용 조각상", "name_fr_FR": "Figurine de dragon majestueux", "name_de_DE": "Majestätische Drachenstatuette", "name_zh_CN": "巨龙雕像", "name_es_ES": "Figurilla de dragón majestuosa", "name_ru_RU": "Величественная статуэтка дракона", "name_it_IT": "Statuetta Ieratica del Drago", "name_pt_PT": "Estatueta do Dragão Majestoso", "on_use": false, "id_encounter": 1616, "id_journal_instance": 755, "id_map": 615, "instance_type": 2}, {"id": 40431, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fury of the Five Flights", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0073000192642212, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Fury of the Five Flights", "name_ko_KR": "다섯 용군단의 분노", "name_fr_FR": "Fureur des cinq vols", "name_de_DE": "Furor der fünf Schwärme", "name_zh_CN": "五色巨龙之怒", "name_es_ES": "Furia de los cinco grupos", "name_ru_RU": "Неистовство пяти стай", "name_it_IT": "Furia dei Cinque Stormi", "name_pt_PT": "Fúria das Cinco Revoadas", "on_use": false, "id_encounter": 1616, "id_journal_instance": 755, "id_map": 615, "instance_type": 2}, {"id": 40432, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Illustration of the Dragon Soul", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0110000371932983, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Illustration of the Dragon Soul", "name_ko_KR": "용의 영혼 그림", "name_fr_FR": "Représentation de l'Âme des dragons", "name_de_DE": "Illustration der Drachenseele", "name_zh_CN": "龙魂图典", "name_es_ES": "Ilustración del Alma de dragón", "name_ru_RU": "Изображение Души Дракона", "name_it_IT": "Immagine dell'Anima del Drago", "name_pt_PT": "Gravura da Alma Dragônica", "on_use": false, "id_encounter": 1616, "id_journal_instance": 755, "id_map": 615, "instance_type": 2}, {"id": 40476, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9519000053405762, "flags_1": 557056, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 40477, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40477, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9555000066757202, "flags_1": 557056, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 40476, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40483, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Scourge", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0005000000237487257, "unk_1": 0.9775999784469604, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Scourge", "name_ko_KR": "스컬지 계급장", "name_fr_FR": "Insigne du Fléau", "name_de_DE": "Insigne der Geißel", "name_zh_CN": "天灾徽记", "name_es_ES": "Insignia de la Plaga", "name_ru_RU": "Знак Плети", "name_it_IT": "Fregio del Flagello", "name_pt_PT": "Insígnia do Flagelo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40492, "race_mask": 18446744073709551615, "desc": "A crusading knight will always heed this blessed horn's clarion call.", "pad2": "", "pad1": "", "pad0": "", "name": "Argent War Horn", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0370999574661255, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Argent War Horn", "name_ko_KR": "은빛 전쟁 뿔피리", "name_fr_FR": "Cor de guerre de l'Aube d'argent", "name_de_DE": "Argentumkriegshorn", "name_zh_CN": "银色战斗号角", "name_es_ES": "Cuerno de guerra Argenta", "name_ru_RU": "Серебряный боевой рог", "name_it_IT": "Corno da Guerra d'Argento", "name_pt_PT": "Trompa de Guerra Argêntea", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Norgannon", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4286, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120536, "buy_price": 482145, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0332000255584717, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mark of Norgannon", "name_ko_KR": "노르간논의 징표", "name_fr_FR": "Marque de Norgannon", "name_de_DE": "Mal des Norgannon", "name_zh_CN": "诺甘农的印记", "name_es_ES": "Marca de Norgannon", "name_ru_RU": "Знак Норганнона", "name_it_IT": "Marchio di Norgannon", "name_pt_PT": "Marca de Norgannon", "on_use": true, "id_encounter": 1617, "id_journal_instance": 756, "id_map": 616, "instance_type": 2}, {"id": 40532, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Living Ice Crystals", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120536, "buy_price": 482145, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0369000434875488, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Living Ice Crystals", "name_ko_KR": "살아있는 얼음 수정", "name_fr_FR": "Cristaux de glace vivante", "name_de_DE": "Lebendige Eiskristalle", "name_zh_CN": "流冰之晶", "name_es_ES": "Cristales de hielo vivos", "name_ru_RU": "Кристаллы живого льда", "name_it_IT": "Cristalli di Ghiaccio Viventi", "name_pt_PT": "Cristais de Gelo Vivos", "on_use": true, "id_encounter": 1617, "id_journal_instance": 756, "id_map": 616, "instance_type": 2}, {"id": 40593, "race_mask": 18446744073709551615, "desc": "A blessed tome filled with the words of the Argent's Dawn's wisest.", "pad2": "", "pad1": "", "pad0": "", "name": "Argent Tome", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9664999842643738, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Argent Tome", "name_ko_KR": "은빛 고서", "name_fr_FR": "Tome d'argent", "name_de_DE": "Argentumfoliant", "name_zh_CN": "银色宝典", "name_es_ES": "Escrito Argenta", "name_ru_RU": "Серебряный том", "name_it_IT": "Tomo d'Argento", "name_pt_PT": "Tomo Argênteo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40601, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Argent Dawn Banner", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0224000215530396, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Argent Dawn Banner", "name_ko_KR": "은빛 여명회 깃발", "name_fr_FR": "Bannière de l'Aube d'argent", "name_de_DE": "Banner der Argentumdämmerung", "name_zh_CN": "银色黎明战旗", "name_es_ES": "Estandarte de El Alba Argenta", "name_ru_RU": "Знамя Серебряного Рассвета", "name_it_IT": "Stendardo dell'Alba d'Argento", "name_pt_PT": "Estandarte da Aurora Argêntea", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40682, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sundial of the Exiled", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1540800, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9520000219345093, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sundial of the Exiled", "name_ko_KR": "추방자의 해시계", "name_fr_FR": "Cadran solaire de l'exilé", "name_de_DE": "Sonnenuhr des Exilierten", "name_zh_CN": "流放者的日晷", "name_es_ES": "Reloj de sol del Exiliado", "name_ru_RU": "Солнечные часы изгнанника", "name_it_IT": "Meridiana dell'Esiliato", "name_pt_PT": "Relógio Solar do Exilado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valor Medal of the First War", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1546800, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9556999802589417, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Valor Medal of the First War", "name_ko_KR": "1차 대전쟁 무공 훈장", "name_fr_FR": "Médaille du courage de la Première guerre", "name_de_DE": "Ehrenmedaille des Ersten Krieges", "name_zh_CN": "第一次大战勇气勋章", "name_es_ES": "Medalla al valor de la Primera Guerra", "name_ru_RU": "Медаль Первой войны \"За отвагу\"", "name_it_IT": "Medaglia al Valore della Prima Guerra", "name_pt_PT": "Medalha de Bravura da Primeira Guerra", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40684, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Truth", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1552600, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9592999815940857, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Truth", "name_ko_KR": "진실의 거울", "name_fr_FR": "Miroir de vérité", "name_de_DE": "Spiegel der Wahrheit", "name_zh_CN": "真实之镜", "name_es_ES": "Espejo de verdad", "name_ru_RU": "Правдивое зеркальце", "name_it_IT": "Specchio della Verità", "name_pt_PT": "Espelho da Verdade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Egg of Mortal Essence", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1558600, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9629999995231628, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "The Egg of Mortal Essence", "name_ko_KR": "필멸의 정수 알", "name_fr_FR": "L'œuf d'essence mortelle", "name_de_DE": "Ei der sterblichen Essenz", "name_zh_CN": "精魄", "name_es_ES": "El huevo de Esencia mortal", "name_ru_RU": "Яйцо смертной сущности", "name_it_IT": "Uovo dell'Essenza Mortale", "name_pt_PT": "O Ovo da Essência Mortal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40767, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sonic Booster", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67949, "buy_price": 271798, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962999820709229, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 15, "req_skill": 2504, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Sonic Booster", "name_ko_KR": "음속 부스터", "name_fr_FR": "Survolteur sonique", "name_de_DE": "Überschallbooster", "name_zh_CN": "音波增压器", "name_es_ES": "Propulsor sónico", "name_ru_RU": "Усилитель звука", "name_it_IT": "Amplificatore Sonico", "name_pt_PT": "Foguete Sônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40865, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Noise Machine", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67949, "buy_price": 271798, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.014799952507019, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 15, "req_skill": 2504, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Noise Machine", "name_ko_KR": "소음기", "name_fr_FR": "Machine à bruit", "name_de_DE": "Lärmmaschine", "name_zh_CN": "噪声机", "name_es_ES": "Máquina de ruido", "name_ru_RU": "Генератор шума", "name_it_IT": "Generatore Frastuonico", "name_pt_PT": "Máquina de Ruídos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 41121, "race_mask": 18446744073709551615, "desc": "It's safe!", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Lightning Generator", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2504, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Gnomish Lightning Generator", "name_ko_KR": "노움 번개 생성기", "name_fr_FR": "Générateur d'éclairs gnome", "name_de_DE": "Gnomischer Blitzgenerator", "name_zh_CN": "侏儒闪电发生器", "name_es_ES": "Generador de relámpagos gnómico", "name_ru_RU": "Гномский генератор молний", "name_it_IT": "Generatore di Fulmini Gnomesco", "name_pt_PT": "Gerador de Raios Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 41587, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Celerity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9556000232696533, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Celerity", "name_ko_KR": "지휘관의 민첩함", "name_fr_FR": "Célérité de maître de guerre", "name_de_DE": "Schnelligkeit des Kampfmeisters", "name_zh_CN": "战斗大师的神速", "name_es_ES": "Celeridad de maestro de batalla", "name_ru_RU": "Проворство военачальника", "name_it_IT": "Celerità del Maestro di Guerra", "name_pt_PT": "Celeridade do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 41588, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Aggression", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9592999815940857, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Aggression", "name_ko_KR": "지휘관의 공격성", "name_fr_FR": "Agression de maître de guerre", "name_de_DE": "Aggression des Kampfmeisters", "name_zh_CN": "战斗大师的侵攻", "name_es_ES": "Agresión de maestro de batalla", "name_ru_RU": "Агрессивность военачальника", "name_it_IT": "Aggressione del Maestro di Guerra", "name_pt_PT": "Agressão do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 41589, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Resolve", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9629999995231628, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Resolve", "name_ko_KR": "지휘관의 결의", "name_fr_FR": "Résolution de maître de guerre", "name_de_DE": "Entschlossenheit des Kampfmeisters", "name_zh_CN": "战斗大师的决断", "name_es_ES": "Resolución de maestro de batalla", "name_ru_RU": "Решимость военачальника", "name_it_IT": "Risolutezza del Maestro di Guerra", "name_pt_PT": "Resolução do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 41590, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Courage", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.96670001745224, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Courage", "name_ko_KR": "지휘관의 용기", "name_fr_FR": "Courage de maître de guerre", "name_de_DE": "Mut des Kampfmeisters", "name_zh_CN": "战斗大师的勇气", "name_es_ES": "Coraje de maestro de batalla", "name_ru_RU": "Отвага военачальника", "name_it_IT": "Coraggio del Maestro di Guerra", "name_pt_PT": "Coragem do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42122, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926000237464905, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 42123, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42123, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962999820709229, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 42122, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42124, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 42126, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42126, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0073000192642212, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 42124, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42128, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Hostility", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041200041770935, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Hostility", "name_ko_KR": "지휘관의 적개심", "name_fr_FR": "Hostilité de maître de guerre", "name_de_DE": "Feindseligkeit des Kampfmeisters", "name_zh_CN": "战斗大师的抗争", "name_es_ES": "Hostilidad de maestro de batalla", "name_ru_RU": "Злость Военачальника", "name_it_IT": "Ostilità del Maestro di Guerra", "name_pt_PT": "Hostilidade do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42129, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Accuracy", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0448999404907227, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Accuracy", "name_ko_KR": "지휘관의 정확성", "name_fr_FR": "Précision de maître de guerre", "name_de_DE": "Zielgenauigkeit des Kampfmeisters", "name_zh_CN": "战斗大师的精确", "name_es_ES": "Precisión de maestro de batalla", "name_ru_RU": "Меткость Военачальника", "name_it_IT": "Accuratezza del Maestro di Guerra", "name_pt_PT": "Exatidão do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42130, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Avidity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0484999418258667, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Avidity", "name_ko_KR": "지휘관의 열의", "name_fr_FR": "Avidité de maître de guerre", "name_de_DE": "Leidenschaft des Kampfmeisters", "name_zh_CN": "战斗大师的渴望", "name_es_ES": "Avidez de maestro de batalla", "name_ru_RU": "Алчность Военачальника", "name_it_IT": "Avidità del Maestro di Guerra", "name_pt_PT": "Avidez do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42131, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Conviction", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520999789237976, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Conviction", "name_ko_KR": "지휘관의 신념", "name_fr_FR": "Conviction de maître de guerre", "name_de_DE": "Überzeugung des Kampfmeisters", "name_zh_CN": "战斗大师的定罪", "name_es_ES": "Convicción de maestro de batalla", "name_ru_RU": "Убежденность Военачальника", "name_it_IT": "Convinzione del Maestro di Guerra", "name_pt_PT": "Convicção do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Bravery", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Bravery", "name_ko_KR": "지휘관의 용감함", "name_fr_FR": "Bravoure de maître de guerre", "name_de_DE": "Tapferkeit des Kampfmeisters", "name_zh_CN": "战斗大师的勇敢", "name_es_ES": "Valentía de maestro de batalla", "name_ru_RU": "Смелость Военачальника", "name_it_IT": "Valore del Maestro di Guerra", "name_pt_PT": "Bravura do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42133, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Fury", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9593999981880188, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Fury", "name_ko_KR": "지휘관의 격노", "name_fr_FR": "Fureur de maître de guerre", "name_de_DE": "Furor des Kampfmeisters", "name_zh_CN": "战斗大师的狂怒", "name_es_ES": "Furia de maestro de batalla", "name_ru_RU": "Ярость военачальника", "name_it_IT": "Furia del Maestro di Guerra", "name_pt_PT": "Fúria do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42134, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Precision", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.963100016117096, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Precision", "name_ko_KR": "지휘관의 정밀함", "name_fr_FR": "Précision de maître de guerre", "name_de_DE": "Präzision des Kampfmeisters", "name_zh_CN": "战斗大师的精确", "name_es_ES": "Exactitud de maestro de batalla", "name_ru_RU": "Точность военачальника", "name_it_IT": "Precisione del Maestro di Guerra", "name_pt_PT": "Precisão do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42135, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Vivacity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9667999744415283, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Vivacity", "name_ko_KR": "지휘관의 생기", "name_fr_FR": "Vivacité de maître de guerre", "name_de_DE": "Lebhaftigkeit des Kampfmeisters", "name_zh_CN": "战斗大师的活力", "name_es_ES": "Vivacidad de maestro de batalla", "name_ru_RU": "Бодрость военачальника", "name_it_IT": "Vivacità del Maestro di Guerra", "name_pt_PT": "Vivacidade do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42136, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Rage", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9704999923706055, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Rage", "name_ko_KR": "지휘관의 분노", "name_fr_FR": "Rage de maître de guerre", "name_de_DE": "Wut des Kampfmeisters", "name_zh_CN": "战斗大师的怒火", "name_es_ES": "Ira de maestro de batalla", "name_ru_RU": "Неистовство военачальника", "name_it_IT": "Rabbia del Maestro di Guerra", "name_pt_PT": "Raiva do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42137, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Ruination", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9740999937057495, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Ruination", "name_ko_KR": "지휘관의 몰락", "name_fr_FR": "Saccage de maître de guerre", "name_de_DE": "Ruin des Kampfmeisters", "name_zh_CN": "战斗大师的毁灭", "name_es_ES": "Ruina de maestro de batalla", "name_ru_RU": "Опустошение военачальника", "name_it_IT": "Rovina del Maestro di Guerra", "name_pt_PT": "Ruína do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42341, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Ruby Hare", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9668999910354614, "flags_1": 524352, "flags_2": 90112, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 3307, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2522, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Ruby Hare", "name_ko_KR": "조각상 - 루비 토끼", "name_fr_FR": "Figurine de lièvre de rubis", "name_de_DE": "Figur - Rubinhase", "name_zh_CN": "雕像 - 红宝石野兔", "name_es_ES": "Figurilla: liebre de rubí", "name_ru_RU": "Статуэтка рубинового зайца", "name_it_IT": "Statuetta - Lepre di Rubino", "name_pt_PT": "Estatueta - Lebre de Rubi", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42395, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Twilight Serpent", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3818, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 3602, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2522, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Twilight Serpent", "name_ko_KR": "조각상 - 황혼뱀", "name_fr_FR": "Figurine de serpent crépusculaire", "name_de_DE": "Figur - Zwielichtschlange", "name_zh_CN": "雕像 - 暮光蛇", "name_es_ES": "Figurilla: serpiente Crepuscular", "name_ru_RU": "Статуэтка сумеречного змея", "name_it_IT": "Statuetta - Serpente del Crepuscolo", "name_pt_PT": "Estatueta - Serpente do Ocaso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Sapphire Owl", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3818, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0370999574661255, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 5234, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2522, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Sapphire Owl", "name_ko_KR": "조각상 - 사파이어 올빼미", "name_fr_FR": "Figurine de chouette de saphir", "name_de_DE": "Figur - Saphireule", "name_zh_CN": "雕像 - 蓝宝石猫头鹰", "name_es_ES": "Figurilla: búho de zafiro", "name_ru_RU": "Статуэтка сапфировой совы", "name_it_IT": "Statuetta - Gufo di Zaffiro", "name_pt_PT": "Estatueta - Coruja de Safira", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42418, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Emerald Boar", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818999767303467, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 3764, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2522, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Emerald Boar", "name_ko_KR": "조각상 - 에메랄드 멧돼지", "name_fr_FR": "Figurine de sanglier d'émeraude", "name_de_DE": "Figur - Smaragdeber", "name_zh_CN": "雕像 - 翡翠野猪", "name_es_ES": "Figurilla: jabalí de esmeralda", "name_ru_RU": "Статуэтка изумрудного вепря", "name_it_IT": "Statuetta - Cinghiale di Smeraldo", "name_pt_PT": "Estatueta - Javali de Esmeralda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42987, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Greatness", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Greatness", "name_ko_KR": "다크문 카드: 위대함", "name_fr_FR": "Carte de Sombrelune : Grandeur", "name_de_DE": "Dunkelmond-Karte: Grandeur", "name_zh_CN": "暗月卡片:伟大", "name_es_ES": "Naipe de la Luna Negra: Grandeza", "name_ru_RU": "Карта Новолуния: Величие", "name_it_IT": "Carta di Lunacupa: Superiorità", "name_pt_PT": "Carta de Negraluna: Grandiosidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42988, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Illusion", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6746, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0002000331878662, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Illusion", "name_ko_KR": "다크문 카드: 환영", "name_fr_FR": "Carte de Sombrelune : Illusion", "name_de_DE": "Dunkelmond-Karte: Illusion", "name_zh_CN": "暗月卡片:幻象", "name_es_ES": "Naipe de la Luna Negra: Ilusión", "name_ru_RU": "Карта Новолуния: Иллюзия", "name_it_IT": "Carta di Lunacupa: Illusione", "name_pt_PT": "Carta de Negraluna: Ilusão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42989, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Berserker!", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7937, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0039000511169434, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Berserker!", "name_ko_KR": "다크문 카드: 광전사", "name_fr_FR": "Carte de Sombrelune : Berserker !", "name_de_DE": "Dunkelmond-Karte: Berserker!", "name_zh_CN": "暗月卡片:狂暴!", "name_es_ES": "Naipe de la Luna Negra: ¡Rabioso!", "name_ru_RU": "Карта Новолуния: Неистовство!", "name_it_IT": "Carta di Lunacupa: Berserker!", "name_pt_PT": "Carta de Negraluna: Berserker!", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42990, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Death", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6746, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007599949836731, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Death", "name_ko_KR": "다크문 카드: 죽음", "name_fr_FR": "Carte de Sombrelune : Mort", "name_de_DE": "Dunkelmond-Karte: Tod", "name_zh_CN": "暗月卡片:死亡", "name_es_ES": "Naipe de la Luna Negra: Muerte", "name_ru_RU": "Карта Новолуния: Смерть", "name_it_IT": "Carta di Lunacupa: Morte", "name_pt_PT": "Carta de Negraluna: Morte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42991, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Swift Hand of Justice", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 7500000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.011299967765808, "flags_1": 134217728, "flags_2": 155648, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Swift Hand of Justice", "name_ko_KR": "신속한 정의의 손길", "name_fr_FR": "Main de justice rapide", "name_de_DE": "Schnelle Hand der Gerechtigkeit", "name_zh_CN": "迅捷的正义之手", "name_es_ES": "Mano presta de justicia", "name_ru_RU": "Стремительная рука правосудия", "name_it_IT": "Rapida Mano della Giustizia", "name_pt_PT": "Mão Veloz da Justiça", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42992, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Discerning Eye of the Beast", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 7500000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0148999691009521, "flags_1": 134217728, "flags_2": 155648, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Discerning Eye of the Beast", "name_ko_KR": "번뜩이는 괴수의 눈", "name_fr_FR": "Oeil de la Bête perspicace", "name_de_DE": "Scharfes Auge der Bestie", "name_zh_CN": "敏锐的比斯巨兽之眼", "name_es_ES": "Ojo de la bestia exigente", "name_ru_RU": "Прозорливый Глаз Зверя", "name_it_IT": "Occhio Perspicace della Bestia", "name_pt_PT": "Olho Penetrante da Fera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43555, "race_mask": 18446744073709551615, "desc": "A valuable member of the Pa'Troll!", "pad2": "", "pad1": "", "pad0": "", "name": "Deputy Pa'trolla Badge", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.007599949836731, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Deputy Pa'trolla Badge", "name_ko_KR": "순찰 부관의 휘장", "name_fr_FR": "Ecusson de l'adjoint Pa'trolla", "name_de_DE": "Hilfssheriffstern der Pa'Trollie", "name_zh_CN": "代理巡逻队长徽章", "name_es_ES": "Distintivo del diputado Pa'Trulla", "name_ru_RU": "Знак делегата Па'тролла", "name_it_IT": "Distintivo da Vicesceriffo della Pattuglia", "name_pt_PT": "Insígnia do Subdelegado Pa'tott", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43573, "race_mask": 18446744073709551615, "desc": "They shimmer with sadness and woe.", "pad2": "", "pad1": "", "pad0": "", "name": "Tears of Bitter Anguish", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5794, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250000, "buy_price": 1000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000100016593933, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Tears of Bitter Anguish", "name_ko_KR": "쓰라린 고뇌의 눈물", "name_fr_FR": "Larmes de l'angoisse amère", "name_de_DE": "Tränen der bitteren Pein", "name_zh_CN": "悲苦之泪", "name_es_ES": "Lágrimas de angustia amarga", "name_ru_RU": "Слезы горькой тоски", "name_it_IT": "Lacrime del Tormento Amaro", "name_pt_PT": "Lágrimas da Angústia Penosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43829, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crusader's Locket", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10232, "buy_price": 51160, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.963100016117096, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Crusader's Locket", "name_ko_KR": "성전사의 펜던트", "name_fr_FR": "Médaillon de croisé", "name_de_DE": "Medaillon des Kreuzfahrers", "name_zh_CN": "北伐军的坠饰", "name_es_ES": "Guardapelo de cruzado", "name_ru_RU": "Медальон рыцаря", "name_it_IT": "Medaglione del Crociato", "name_pt_PT": "Medalhão do Cruzado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43836, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thorny Rose Brooch", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5733, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10786, "buy_price": 53933, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0153000354766846, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Thorny Rose Brooch", "name_ko_KR": "가시 돋친 장미 브로치", "name_fr_FR": "Broche de la rose épineuse", "name_de_DE": "Dornige Rosenbrosche", "name_zh_CN": "带刺玫瑰胸针", "name_es_ES": "Broche de rosa con espinas", "name_ru_RU": "Брошь в виде розы с шипами", "name_it_IT": "Spilla di Rosa Spinosa", "name_pt_PT": "Broche da Rosa Espinhosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43837, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Softly Glowing Orb", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4400, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10825, "buy_price": 54129, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Softly Glowing Orb", "name_ko_KR": "부드럽게 빛나는 수정구", "name_fr_FR": "Orbe légèrement luminescent", "name_de_DE": "Sanft glühende Kugel", "name_zh_CN": "柔光宝珠", "name_es_ES": "Orbe con brillo suave", "name_ru_RU": "Мягко светящаяся сфера", "name_it_IT": "Globo Leggermente Luminoso", "name_pt_PT": "Orbe do Brilho Suave", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43838, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chuchu's Tiny Box of Horrors", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10865, "buy_price": 54326, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Chuchu's Tiny Box of Horrors", "name_ko_KR": "츄츄의 자그마한 오싹 상자", "name_fr_FR": "Petite boîte d'horreurs de Chuchu", "name_de_DE": "Chuchus kleiner Horrorkasten", "name_zh_CN": "恐惧小盒", "name_es_ES": "Cajita de los horrores de Chuchu", "name_ru_RU": "Шкатулочка страхов Чучу", "name_it_IT": "Scatola degli Orrori di Chuchu", "name_pt_PT": "Caixinha dos Horrores de Chuchu", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44013, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cannoneer's Fuselighter", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6279, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12187, "buy_price": 60939, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559999704360962, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Cannoneer's Fuselighter", "name_ko_KR": "포병의 도화선점화기", "name_fr_FR": "Boutefeu de canonnier", "name_de_DE": "Luntenanzünder des Kanoniers", "name_zh_CN": "炮兵的点火器", "name_es_ES": "Botafuego de cañonero", "name_ru_RU": "Воспламенитель канонира", "name_it_IT": "Ardimiccia del Cannoniere", "name_pt_PT": "Acendepavio do Canhoneiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44014, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fezzik's Pocketwatch", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6977, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12235, "buy_price": 61175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9596999883651733, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fezzik's Pocketwatch", "name_ko_KR": "페지크의 회중시계", "name_fr_FR": "Montre de gousset de Fezzik", "name_de_DE": "Fezziks Taschenuhr", "name_zh_CN": "菲斯克的怀表", "name_es_ES": "Reloj de bolsillo de Fezzik", "name_ru_RU": "Карманные часы Феззика", "name_it_IT": "Orologio da Tasca di Fezzik", "name_pt_PT": "Relógio de Bolso do Fezzik", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44015, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cannoneer's Morale", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6512, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12282, "buy_price": 61411, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9634000062942505, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Cannoneer's Morale", "name_ko_KR": "포병의 사기", "name_fr_FR": "Moral de canonnier", "name_de_DE": "Moral des Kanoniers", "name_zh_CN": "炮兵的士气", "name_es_ES": "Moral de cañonero", "name_ru_RU": "Боевой дух канонира", "name_it_IT": "Spirito Lucente del Cannoniere", "name_pt_PT": "Moral do Canhoneiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44063, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Monarch Crab", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5727, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 3307, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2522, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Monarch Crab", "name_ko_KR": "조각상 - 제왕 게", "name_fr_FR": "Figurine de crabe monarchique", "name_de_DE": "Figur - Monarchenkrabbe", "name_zh_CN": "雕像 - 帝黄晶螃蟹", "name_es_ES": "Figurilla: cangrejo monarca", "name_ru_RU": "Статуэтка королевского краба", "name_it_IT": "Statuetta - Granchio Monarca", "name_pt_PT": "Estatueta - Caranguejo Monarca", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44073, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzyheart Insignia of Fury", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5635, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9821000099182129, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1104, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Frenzyheart Insignia of Fury", "name_ko_KR": "광란심장의 분노 휘장", "name_fr_FR": "Insigne de fureur frénécœur", "name_de_DE": "Zorninsigne der Wildherzen", "name_zh_CN": "狂心怒火徽记", "name_es_ES": "Insignia de Corazón Frenético de furia", "name_ru_RU": "Знак неистовства Бешеного Сердца", "name_it_IT": "Fregio della Furia dei Cuorferoce", "name_pt_PT": "Insígnia da Fúria dos Feralma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44074, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oracle Talisman of Ablution", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5635, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98580002784729, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1105, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Oracle Talisman of Ablution", "name_ko_KR": "신탁의 세정식 부적", "name_fr_FR": "Talisman d'ablution de l'oracle", "name_de_DE": "Orakeltalisman der Ablution", "name_zh_CN": "神谕者的洗礼护符", "name_es_ES": "Talismán de ablución de Oráculo", "name_ru_RU": "Оракульский талисман омовения", "name_it_IT": "Talismano Oracolo dell'Abluzione", "name_pt_PT": "Talismã do Oráculo da Ablução", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44097, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9966999888420105, "flags_1": 134217728, "flags_2": 155649, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 44098, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Insignia of the Horde", "name_ko_KR": "계승의 호드 계급장", "name_fr_FR": "Insigne de la Horde hérité", "name_de_DE": "Geerbtes Insigne der Horde", "name_zh_CN": "家传的部落徽记", "name_es_ES": "Insignia heredada de la Horda", "name_ru_RU": "Унаследованный знак различия Орды", "name_it_IT": "Fregio Ereditato dell'Orda", "name_pt_PT": "Insígnia Herdada da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44098, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0003999471664429, "flags_1": 134217728, "flags_2": 155650, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 44097, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Insignia of the Alliance", "name_ko_KR": "계승의 얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance hérité", "name_de_DE": "Geerbtes Insigne der Allianz", "name_zh_CN": "家传的联盟徽记", "name_es_ES": "Insignia heredada de la Alianza", "name_ru_RU": "Унаследованный знак различия Альянса", "name_it_IT": "Fregio Ereditato dell'Alleanza", "name_pt_PT": "Insígnia Herdada da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44253, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Greatness", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Greatness", "name_ko_KR": "다크문 카드: 위대함", "name_fr_FR": "Carte de Sombrelune : Grandeur", "name_de_DE": "Dunkelmond-Karte: Grandeur", "name_zh_CN": "暗月卡片:伟大", "name_es_ES": "Naipe de la Luna Negra: Grandeza", "name_ru_RU": "Карта Новолуния: Величие", "name_it_IT": "Carta di Lunacupa: Superiorità", "name_pt_PT": "Carta de Negraluna: Grandiosidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44254, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Greatness", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037600040435791, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Greatness", "name_ko_KR": "다크문 카드: 위대함", "name_fr_FR": "Carte de Sombrelune : Grandeur", "name_de_DE": "Dunkelmond-Karte: Grandeur", "name_zh_CN": "暗月卡片:伟大", "name_es_ES": "Naipe de la Luna Negra: Grandeza", "name_ru_RU": "Карта Новолуния: Величие", "name_it_IT": "Carta di Lunacupa: Superiorità", "name_pt_PT": "Carta de Negraluna: Grandiosidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44255, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Greatness", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Greatness", "name_ko_KR": "다크문 카드: 위대함", "name_fr_FR": "Carte de Sombrelune : Grandeur", "name_de_DE": "Dunkelmond-Karte: Grandeur", "name_zh_CN": "暗月卡片:伟大", "name_es_ES": "Naipe de la Luna Negra: Grandeza", "name_ru_RU": "Карта Новолуния: Величие", "name_it_IT": "Carta di Lunacupa: Superiorità", "name_pt_PT": "Carta de Negraluna: Grandiosidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44322, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Mercurial Alchemist Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4545, "stat_alloc_2": 4545, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9929999709129333, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2483, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Mercurial Alchemist Stone", "name_ko_KR": "수은 깃든 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste mercurienne", "name_de_DE": "Quecksilbriger Alchemistenstein", "name_zh_CN": "水银炼金石", "name_es_ES": "Piedra de alquimista mercúrica", "name_ru_RU": "Переменчивый алхимический камень", "name_it_IT": "Pietra Alchemica Mercuriale", "name_pt_PT": "Pedra Mercurial do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44323, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Indestructible Alchemist Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6818, "stat_alloc_2": 4545, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 13, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9966999888420105, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2483, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Indestructible Alchemist Stone", "name_ko_KR": "깨지지 않는 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste indestructible", "name_de_DE": "Unzerstörbarer Alchemistenstein", "name_zh_CN": "不灭炼金石", "name_es_ES": "Piedra de alquimista indestructible", "name_ru_RU": "Несокрушимый алхимический камень", "name_it_IT": "Pietra Alchemica Indistruttibile", "name_pt_PT": "Pedra Indestrutível do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44324, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Mighty Alchemist Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3333, "stat_alloc_2": 3333, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003999471664429, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2483, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Mighty Alchemist Stone", "name_ko_KR": "강한 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste puissante", "name_de_DE": "Mächtiger Alchemistenstein", "name_zh_CN": "强力炼金石", "name_es_ES": "Piedra de alquimista poderosa", "name_ru_RU": "Могущественный алхимический камень", "name_it_IT": "Pietra Alchemica Vigorosa", "name_pt_PT": "Pedra Poderosa do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of Heroism", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7576, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9596999883651733, "flags_1": 557056, "flags_2": 24577, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 44597, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of Heroism", "name_ko_KR": "무용의 메달", "name_fr_FR": "Médaillon d'héroïsme", "name_de_DE": "Medaillon des Heldentums", "name_zh_CN": "英雄勋章", "name_es_ES": "Medallón de Heroísmo", "name_ru_RU": "Медальон героизма", "name_it_IT": "Medaglione dell'Eroismo", "name_pt_PT": "Medalhão do Heroísmo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of Heroism", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7576, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9521999955177307, "flags_1": 557056, "flags_2": 24578, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 44579, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of Heroism", "name_ko_KR": "무용의 메달", "name_fr_FR": "Médaillon d'héroïsme", "name_de_DE": "Medaillon des Heldentums", "name_zh_CN": "英雄勋章", "name_es_ES": "Medallón de Heroísmo", "name_ru_RU": "Медальон героизма", "name_it_IT": "Medaglione dell'Eroismo", "name_pt_PT": "Medalhão do Heroísmo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44869, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzyheart Insignia of Fury", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5635, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000499963760376, "flags_1": 36864, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Frenzyheart Insignia of Fury", "name_ko_KR": "광란심장의 분노 휘장", "name_fr_FR": "Insigne de fureur frénécœur", "name_de_DE": "Zorninsigne der Wildherzen", "name_zh_CN": "狂心怒火徽记", "name_es_ES": "Insignia de Corazón Frenético de furia", "name_ru_RU": "Знак неистовства Бешеного Сердца", "name_it_IT": "Fregio della Furia dei Cuorferoce", "name_pt_PT": "Insígnia da Fúria dos Feralma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44870, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oracle Talisman of Ablution", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5635, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0041999816894531, "flags_1": 36864, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Oracle Talisman of Ablution", "name_ko_KR": "신탁의 세정식 부적", "name_fr_FR": "Talisman d'ablution de l'oracle", "name_de_DE": "Orakeltalisman der Ablution", "name_zh_CN": "神谕者的洗礼护符", "name_es_ES": "Talismán de ablución de Oráculo", "name_ru_RU": "Оракульский талисман омовения", "name_it_IT": "Talismano Oracolo dell'Abluzione", "name_pt_PT": "Talismã do Oráculo da Ablução", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44912, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flow of Knowledge", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0377000570297241, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Flow of Knowledge", "name_ko_KR": "지식의 흐름", "name_fr_FR": "Flot de connaissances", "name_de_DE": "Fluss des Wissens", "name_zh_CN": "知识之流", "name_es_ES": "Flujo de conocimiento", "name_ru_RU": "Поток знаний", "name_it_IT": "Flusso di Conoscenza", "name_pt_PT": "Fluxo de Conhecimento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44914, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anvil of Titans", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0450999736785889, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Anvil of Titans", "name_ko_KR": "티탄의 모루", "name_fr_FR": "Enclume des Titans", "name_de_DE": "Amboss der Titanen", "name_zh_CN": "泰坦之砧", "name_es_ES": "Yunque de titanes", "name_ru_RU": "Наковальня Титанов", "name_it_IT": "Incudine dei Titani", "name_pt_PT": "Bigorna dos Titãs", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 45131, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jouster's Fury", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9854999780654907, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 45219, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Jouster's Fury", "name_ko_KR": "창기사의 격노", "name_fr_FR": "Fureur de jouteur", "name_de_DE": "Tjosterfuror", "name_zh_CN": "竞技者之怒", "name_es_ES": "Furia de ajustador", "name_ru_RU": "Ярость бретера", "name_it_IT": "Furia del Giostriere", "name_pt_PT": "Fúria do Justador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 45148, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Living Flame", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6646, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.974399983882904, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Living Flame", "name_ko_KR": "살아있는 불꽃", "name_fr_FR": "Flamme vivante", "name_de_DE": "Lebende Flamme", "name_zh_CN": "活焰", "name_es_ES": "Llama viva", "name_ru_RU": "Живой жар", "name_it_IT": "Fiamma Vivente", "name_pt_PT": "Chama Viva", "on_use": true, "id_encounter": 1639, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45158, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Iron", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10062, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037600040435791, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Iron", "name_ko_KR": "무쇠의 심장", "name_fr_FR": "Cœur de fer", "name_de_DE": "Eisernes Herz", "name_zh_CN": "钢铁之心", "name_es_ES": "Corazón de hierro", "name_ru_RU": "Железное сердце", "name_it_IT": "Cuore di Ferro", "name_pt_PT": "Coração de Ferro", "on_use": true, "id_encounter": 1638, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45219, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jouster's Fury", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9672999978065491, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 45131, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Jouster's Fury", "name_ko_KR": "창기사의 격노", "name_fr_FR": "Fureur de jouteur", "name_de_DE": "Tjosterfuror", "name_zh_CN": "竞技者之怒", "name_es_ES": "Furia de ajustador", "name_ru_RU": "Ярость бретера", "name_it_IT": "Furia del Giostriere", "name_pt_PT": "Fúria do Justador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 45263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wrathstone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082000494003296, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Wrathstone", "name_ko_KR": "분노의 돌", "name_fr_FR": "Pierre du courroux", "name_de_DE": "Zornstein", "name_zh_CN": "天谴之石", "name_es_ES": "Piedra de cólera", "name_ru_RU": "Камень гнева", "name_it_IT": "Pietra dell'Ira", "name_pt_PT": "Pedra da Ira", "on_use": true, "id_encounter": 1642, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45286, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pyrite Infuser", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190999507904053, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Pyrite Infuser", "name_ko_KR": "황철석 주입기", "name_fr_FR": "Infuseur en pyrite", "name_de_DE": "Pyriteinspritzung", "name_zh_CN": "燃铁灌注器", "name_es_ES": "Inyector de pirita", "name_ru_RU": "Нагнетатель колчедана", "name_it_IT": "Infusore di Pirite", "name_pt_PT": "Infusor de Pirita", "on_use": false, "id_encounter": 1637, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Energy Siphon", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041200041770935, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Energy Siphon", "name_ko_KR": "원기 흡수기", "name_fr_FR": "Siphon d'énergie", "name_de_DE": "Energiesiphon", "name_zh_CN": "能量弯管", "name_es_ES": "Succión de energía", "name_ru_RU": "Вытягивание энергии", "name_it_IT": "Risucchio Energetico", "name_pt_PT": "Sifão de Energia", "on_use": true, "id_encounter": 1637, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of the Broodmother", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5800, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262999534606934, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Eye of the Broodmother", "name_ko_KR": "여왕의 눈", "name_fr_FR": "Oeil de la mère des couvées", "name_de_DE": "Auge der Brutmutter", "name_zh_CN": "龙母之眼", "name_es_ES": "Ojo de la madre de linaje", "name_ru_RU": "Глаз матери стаи", "name_it_IT": "Occhio della Madre della Stirpe", "name_pt_PT": "Olho da Prolemadre", "on_use": false, "id_encounter": 1639, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45313, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Furnace Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710999727249146, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Furnace Stone", "name_ko_KR": "용광로 돌", "name_fr_FR": "Pierre de la fournaise", "name_de_DE": "Stein des Eisenwerks", "name_zh_CN": "熔炉之石", "name_es_ES": "Piedra de caldera", "name_ru_RU": "Печной камень", "name_it_IT": "Pietra della Fornace", "name_pt_PT": "Pedra da Fornalha", "on_use": true, "id_encounter": 1638, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45466, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scale of Fates", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6646, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.97079998254776, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Scale of Fates", "name_ko_KR": "숙명의 비늘", "name_fr_FR": "Ecaille des destinées", "name_de_DE": "Waagschale der Schicksale", "name_zh_CN": "命运之鳞", "name_es_ES": "Escama de fortunas", "name_ru_RU": "Чешуйка судеб", "name_it_IT": "Scaglia dei Destini", "name_pt_PT": "Balança do Destino", "on_use": true, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pandora's Plea", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Pandora's Plea", "name_ko_KR": "판도라의 탄원", "name_fr_FR": "Supplique de Pandore", "name_de_DE": "Pandoras Bitte", "name_zh_CN": "潘多拉的恳求", "name_es_ES": "Petición de Pandora", "name_ru_RU": "Мольба Пандоры", "name_it_IT": "Canto di Pandora", "name_pt_PT": "Apelo de Pandora", "on_use": false, "id_encounter": 1647, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The General's Heart", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0006999969482422, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "The General's Heart", "name_ko_KR": "장군의 심장", "name_fr_FR": "Le cœur du général", "name_de_DE": "Das Herz des Generals", "name_zh_CN": "将军之心", "name_es_ES": "El corazón del General", "name_ru_RU": "Сердце генерала", "name_it_IT": "Cuore del Generale", "name_pt_PT": "O Coração do General", "on_use": false, "id_encounter": 1648, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45518, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flare of the Heavens", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6630, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Flare of the Heavens", "name_ko_KR": "천상의 빛줄기", "name_fr_FR": "Embrasement des cieux", "name_de_DE": "Leuchtfeuer der Himmel", "name_zh_CN": "天堂之焰", "name_es_ES": "Bengala de los cielos", "name_ru_RU": "Небесная вспышка", "name_it_IT": "Fiamma del Paradiso", "name_pt_PT": "Labareda dos Céus", "on_use": false, "id_encounter": 1648, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45522, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood of the Old God", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.982200026512146, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Blood of the Old God", "name_ko_KR": "고대 신의 피", "name_fr_FR": "Sang du Dieu très ancien", "name_de_DE": "Blut des Alten Gottes", "name_zh_CN": "古神之血", "name_es_ES": "Sangre del dios antiguo", "name_ru_RU": "Кровь Древнего бога", "name_it_IT": "Sangue del Dio Antico", "name_pt_PT": "Sangue do Deus Antigo", "on_use": false, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45535, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Show of Faith", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6630, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Show of Faith", "name_ko_KR": "신념의 표시", "name_fr_FR": "Démonstration de foi", "name_de_DE": "Demonstration des Glaubens", "name_zh_CN": "信仰的证明", "name_es_ES": "Prueba de fe", "name_ru_RU": "Доказательство веры", "name_it_IT": "Icona della Fede", "name_pt_PT": "Prova da Fé", "on_use": false, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45609, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Comet's Trail", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Comet's Trail", "name_ko_KR": "혜성의 흔적", "name_fr_FR": "Queue de la comète", "name_de_DE": "Kometenschweif", "name_zh_CN": "彗星之痕", "name_es_ES": "Estela del cometa", "name_ru_RU": "Хвост кометы", "name_it_IT": "Coda della Cometa", "name_pt_PT": "Cauda do Cometa", "on_use": false, "id_encounter": 1650, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45631, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "High-Powered Flashlight", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10435, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12500, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 524480, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "High-Powered Flashlight", "name_ko_KR": "고성능 손전등", "name_fr_FR": "Lampe torche surpuissante", "name_de_DE": "Leistungsstarke Taschenlampe", "name_zh_CN": "大功率闪光灯", "name_es_ES": "Linterna de gran potencia", "name_ru_RU": "Мощный фонарь", "name_it_IT": "Torcia ad Alta Potenza", "name_pt_PT": "Lanterna Hiperpoderosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 45703, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Hope", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377000570297241, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Hope", "name_ko_KR": "희망의 불꽃", "name_fr_FR": "Étincelle d'espoir", "name_de_DE": "Funken der Hoffnung", "name_zh_CN": "希望的火花", "name_es_ES": "Chispa de esperanza", "name_ru_RU": "Искра надежды", "name_it_IT": "Barlume di Speranza", "name_pt_PT": "Centelha de Esperança", "on_use": false, "id_encounter": 1642, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45866, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elemental Focus Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7200, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Elemental Focus Stone", "name_ko_KR": "정기 집중의 돌", "name_fr_FR": "Pierre de focalisation élémentaire", "name_de_DE": "Elementarer Fokusstein", "name_zh_CN": "元素聚焦之石", "name_es_ES": "Piedra de enfoque elemental", "name_ru_RU": "Камень средоточия стихий", "name_it_IT": "Pietra del Focus Elementale", "name_pt_PT": "Pedra da Concentração Elemental", "on_use": false, "id_encounter": 1643, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45929, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sif's Remembrance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377000570297241, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sif's Remembrance", "name_ko_KR": "시프의 추억", "name_fr_FR": "Souvenir de Sif", "name_de_DE": "Sifs Erinnerung", "name_zh_CN": "西芙的记忆", "name_es_ES": "Recuerdo de Sif", "name_ru_RU": "Воспоминание Сиф", "name_it_IT": "Ricordo di Sif", "name_pt_PT": "Lembrança de Sif", "on_use": false, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45931, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mjolnir Runestone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6335, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0450999736785889, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mjolnir Runestone", "name_ko_KR": "묠니르 마법석", "name_fr_FR": "Pierre runique de Mjolnir", "name_de_DE": "Runenstein von Mjolnir", "name_zh_CN": "雷神符石", "name_es_ES": "Piedra rúnica de Mjolnir", "name_ru_RU": "Рунический камень Мьольнира", "name_it_IT": "Pietra Runica di Mjolnir", "name_pt_PT": "Pedra Rúnica de Mjolnir", "on_use": false, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 46021, "race_mask": 18446744073709551615, "desc": "Covered in blood that doesn't seem to wash away.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of King Llane", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0341999530792236, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Royal Seal of King Llane", "name_ko_KR": "국왕 레인의 옥새", "name_fr_FR": "Sceau royal du roi Llane", "name_de_DE": "König Llanes hoheitliches Siegel", "name_zh_CN": "莱恩国王的皇家徽记", "name_es_ES": "Sello real del rey Llane", "name_ru_RU": "Печать короля Ллейна", "name_it_IT": "Sigillo Reale di Re Llane", "name_pt_PT": "Selo Real do Rei Llane", "on_use": true, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 46038, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dark Matter", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0230000019073486, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Dark Matter", "name_ko_KR": "암흑 물질", "name_fr_FR": "Matière noire", "name_de_DE": "Dunkle Materie", "name_zh_CN": "黑暗物质", "name_es_ES": "Materia oscura", "name_ru_RU": "Темная сущность", "name_it_IT": "Materia Oscura", "name_pt_PT": "Matéria Negra", "on_use": false, "id_encounter": 1650, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 46051, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Meteorite Crystal", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6894, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Meteorite Crystal", "name_ko_KR": "유성 수정", "name_fr_FR": "Cristal de météorite", "name_de_DE": "Meteoritkristall", "name_zh_CN": "陨星水晶", "name_es_ES": "Cristal de meteorito", "name_ru_RU": "Метеоритный кристалл", "name_it_IT": "Cristallo di Meteorite", "name_pt_PT": "Cristal de Meteorito", "on_use": true, "id_encounter": 1650, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 46081, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan-Forged Rune of Audacity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9602000117301941, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Titan-Forged Rune of Audacity", "name_ko_KR": "티탄이 벼려낸 용맹의 룬", "name_fr_FR": "Rune d'audace forgée par les Titans", "name_de_DE": "Titanengeschmiedete Rune der Kühnheit", "name_zh_CN": "泰坦铸造鲁莽符文", "name_es_ES": "Runa de audacia forjada por los titanes", "name_ru_RU": "Руна отваги из кузни титанов", "name_it_IT": "Runa Titanica dell'Audacia", "name_pt_PT": "Runa de Audácia da Forja Titânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46082, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan-Forged Rune of Determination", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9639000296592712, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Titan-Forged Rune of Determination", "name_ko_KR": "티탄이 벼려낸 결단의 룬", "name_fr_FR": "Rune de détermination forgée par les Titans", "name_de_DE": "Titanengeschmiedete Rune der Entschlossenheit", "name_zh_CN": "泰坦铸造决心符文", "name_es_ES": "Runa de determinación forjada por los titanes", "name_ru_RU": "Руна решимости из кузни титанов", "name_it_IT": "Runa Titanica della Determinazione", "name_pt_PT": "Runa da Determinação da Forja Titânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46083, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan-Forged Rune of Accuracy", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9674999713897705, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Titan-Forged Rune of Accuracy", "name_ko_KR": "티탄이 벼려낸 적중의 룬", "name_fr_FR": "Rune de précision forgée par les Titans", "name_de_DE": "Titanengeschmiedete Rune der Präzision", "name_zh_CN": "泰坦铸造精确符文", "name_es_ES": "Runa de precisión forjada por los titanes", "name_ru_RU": "Руна меткости из кузни титанов", "name_it_IT": "Runa Titanica dell'Accuratezza", "name_pt_PT": "Runa de Precisão da Forja Titânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46084, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan-Forged Rune of Cruelty", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9711999893188477, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Titan-Forged Rune of Cruelty", "name_ko_KR": "티탄이 벼려낸 무자비의 룬", "name_fr_FR": "Rune de cruauté forgée par les Titans", "name_de_DE": "Titanengeschmiedete Rune der Grausamkeit", "name_zh_CN": "泰坦铸造残酷符文", "name_es_ES": "Runa de crueldad forjada por los titanes", "name_ru_RU": "Руна жестокости из кузни титанов", "name_it_IT": "Runa Titanica dell'Atrocità", "name_pt_PT": "Runa de Crueldade da Forja Titânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46085, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan-Forged Rune of Alacrity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9749000072479248, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Titan-Forged Rune of Alacrity", "name_ko_KR": "티탄이 벼려낸 날렵함 룬", "name_fr_FR": "Rune d'empressement forgée par les Titans", "name_de_DE": "Titanengeschmiedete Rune des Eifers", "name_zh_CN": "泰坦铸造敏锐符文", "name_es_ES": "Runa de prontitud forjada por los titanes", "name_ru_RU": "Руна рвения из кузни титанов", "name_it_IT": "Runa Titanica dell'Alacrità", "name_pt_PT": "Runa de Vivacidade da Forja Titânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46086, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Platinum Disks of Battle", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.978600025177002, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Platinum Disks of Battle", "name_ko_KR": "전투의 백금 원반", "name_fr_FR": "Disques de bataille en platine", "name_de_DE": "Platinscheiben des Kampfes", "name_zh_CN": "白金战斗圆盘", "name_es_ES": "Discos de batalla de platino", "name_ru_RU": "Платиновые диски битвы", "name_it_IT": "Dischi di Platino della Battaglia", "name_pt_PT": "Discos Platinados de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46087, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Platinum Disks of Sorcery", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.982200026512146, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Platinum Disks of Sorcery", "name_ko_KR": "마법의 백금 원반", "name_fr_FR": "Disques de sorcellerie en platine", "name_de_DE": "Platinscheiben der Zauberei", "name_zh_CN": "白金巫术圆盘", "name_es_ES": "Discos de brujería de platino", "name_ru_RU": "Платиновые диски с печатью колдовства", "name_it_IT": "Dischi di Platino della Magia", "name_pt_PT": "Discos Platinados de Feitiçaria", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46088, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Platinum Disks of Swiftness", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9858999848365784, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Platinum Disks of Swiftness", "name_ko_KR": "신속의 백금 원반", "name_fr_FR": "Disques de rapidité en platine", "name_de_DE": "Platinscheiben der Schnelligkeit", "name_zh_CN": "白金迅捷圆盘", "name_es_ES": "Discos de presteza de platino", "name_ru_RU": "Платиновые диски быстроты", "name_it_IT": "Dischi di Platino della Rapidità", "name_pt_PT": "Discos Platinados de Velocidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vanquished Clutches of Yogg-Saron", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8447, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.978600025177002, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Vanquished Clutches of Yogg-Saron", "name_ko_KR": "요그사론의 패배한 손", "name_fr_FR": "Étreintes de Yogg-Saron vaincu", "name_de_DE": "Bezwungene Klauen von Yogg-Saron", "name_zh_CN": "被征服的尤格-萨隆之爪", "name_es_ES": "Garras derrotadas de Yogg-Saron", "name_ru_RU": "Ослабшая хватка Йогг-Сарона", "name_it_IT": "Chele Dominate di Yogg-Saron", "name_pt_PT": "Garras Subjugadas de Yogg-Saron", "on_use": true, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 47041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solace of the Defeated", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045199990272522, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47271, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Solace of the Defeated", "name_ko_KR": "패배한 자의 위안", "name_fr_FR": "Réconfort des vaincus", "name_de_DE": "Trost der Besiegten", "name_zh_CN": "战败者的慰藉", "name_es_ES": "Consuelo de los derrotados", "name_ru_RU": "Утешение поверженных", "name_it_IT": "Conforto dello Sconfitto", "name_pt_PT": "Consolo dos Derrotados", "on_use": false, "id_encounter": 1619, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47059, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solace of the Defeated", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377000570297241, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47432, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Solace of the Defeated", "name_ko_KR": "패배한 자의 위안", "name_fr_FR": "Réconfort des vaincus", "name_de_DE": "Trost der Besiegten", "name_zh_CN": "战败者的慰藉", "name_es_ES": "Consuelo de los derrotados", "name_ru_RU": "Утешение поверженных", "name_it_IT": "Conforto dello Sconfitto", "name_pt_PT": "Consolo dos Derrotados", "on_use": false, "id_encounter": 1619, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47080, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Satrina's Impeding Scarab", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9677000045776367, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47290, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Satrina's Impeding Scarab", "name_ko_KR": "사트리나의 방어 스카라베", "name_fr_FR": "Scarabée d'obstruction de Satrina", "name_de_DE": "Satrinas hemmender Skarabäus", "name_zh_CN": "萨崔娜的抗阻甲虫", "name_es_ES": "Escarabajo trabador de Satrina", "name_ru_RU": "Упрямый скарабей Сатрины", "name_it_IT": "Scarabeo dell'Ostacolo di Satrina", "name_pt_PT": "Escaravelho Iminente de Satrina", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47088, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Satrina's Impeding Scarab", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9970999956130981, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47451, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Satrina's Impeding Scarab", "name_ko_KR": "사트리나의 방어 스카라베", "name_fr_FR": "Scarabée d'obstruction de Satrina", "name_de_DE": "Satrinas hemmender Skarabäus", "name_zh_CN": "萨崔娜的抗阻甲虫", "name_es_ES": "Escarabajo trabador de Satrina", "name_ru_RU": "Упрямый скарабей Сатрины", "name_it_IT": "Scarabeo dell'Ostacolo di Satrina", "name_pt_PT": "Escaravelho Iminente de Satrina", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Death's Verdict", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0491000413894653, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47303, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Death's Verdict", "name_ko_KR": "죽음의 선고", "name_fr_FR": "Verdict de la mort", "name_de_DE": "Des Todes Urteil", "name_zh_CN": "死亡的裁决", "name_es_ES": "Veredicto de la muerte", "name_ru_RU": "Приговор смерти", "name_it_IT": "Verdetto di Morte", "name_pt_PT": "Veredito da Morte", "on_use": false, "id_encounter": 1622, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47131, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Death's Verdict", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0342999696731567, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47464, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Death's Verdict", "name_ko_KR": "죽음의 선고", "name_fr_FR": "Verdict de la mort", "name_de_DE": "Des Todes Urteil", "name_zh_CN": "死亡的裁决", "name_es_ES": "Veredicto de la muerte", "name_ru_RU": "Приговор смерти", "name_it_IT": "Verdetto di Morte", "name_pt_PT": "Veredito da Morte", "on_use": false, "id_encounter": 1622, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47182, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Unliving", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47316, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Unliving", "name_ko_KR": "생명이 사라진 자의 통치", "name_fr_FR": "Règne des non-vivants", "name_de_DE": "Herrschaft der Leblosen", "name_zh_CN": "死者的统治", "name_es_ES": "Reino de los sin vida", "name_ru_RU": "Власть неживых", "name_it_IT": "Regno Senza Vita", "name_pt_PT": "Rédeas do Vivo-morto", "on_use": false, "id_encounter": 1623, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47188, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Unliving", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0228999853134155, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47477, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Unliving", "name_ko_KR": "생명이 사라진 자의 통치", "name_fr_FR": "Règne des non-vivants", "name_de_DE": "Herrschaft der Leblosen", "name_zh_CN": "死者的统治", "name_es_ES": "Reino de los sin vida", "name_ru_RU": "Власть неживых", "name_it_IT": "Regno Senza Vita", "name_pt_PT": "Rédeas do Vivo-morto", "on_use": false, "id_encounter": 1623, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47213, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Abyssal Rune", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 444, "buy_price": 2223, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Abyssal Rune", "name_ko_KR": "심연의 룬", "name_fr_FR": "Rune abyssale", "name_de_DE": "Abyssrune", "name_zh_CN": "深渊符文", "name_es_ES": "Runa abisal", "name_ru_RU": "Руна Бездны", "name_it_IT": "Runa Abissale", "name_pt_PT": "Runa Abissal", "on_use": false, "id_encounter": 635, "id_journal_instance": 284, "id_map": 650, "instance_type": 1}, {"id": 47214, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Banner of Victory", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31105, "buy_price": 155527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9711999893188477, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Banner of Victory", "name_ko_KR": "승리의 깃발", "name_fr_FR": "Bannière de victoire", "name_de_DE": "Banner des Sieges", "name_zh_CN": "胜利旌旗", "name_es_ES": "Estandarte de victoria", "name_ru_RU": "Знамя победы", "name_it_IT": "Stendardo della Vittoria", "name_pt_PT": "Flâmula da Vitória", "on_use": false, "id_encounter": 636, "id_journal_instance": 284, "id_map": 650, "instance_type": 1}, {"id": 47215, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tears of the Vanquished", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31224, "buy_price": 156120, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9749000072479248, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Tears of the Vanquished", "name_ko_KR": "정복당한 자의 눈물", "name_fr_FR": "Larmes des vaincus", "name_de_DE": "Tränen der Bezwungenen", "name_zh_CN": "屈服之泪", "name_es_ES": "Lágrimas del vencido", "name_ru_RU": "Слезы поверженных", "name_it_IT": "Lacrime del Dominato", "name_pt_PT": "Lágrimas dos Conquistados", "on_use": false, "id_encounter": 637, "id_journal_instance": 284, "id_map": 650, "instance_type": 1}, {"id": 47216, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Black Heart", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31342, "buy_price": 156713, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.978600025177002, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "The Black Heart", "name_ko_KR": "검은 심장", "name_fr_FR": "Le Cœur noir", "name_de_DE": "Das Schwarze Herz", "name_zh_CN": "黑心", "name_es_ES": "El Corazón Negro", "name_ru_RU": "Черное сердце", "name_it_IT": "Cuore Nero", "name_pt_PT": "Coração Negro", "on_use": false, "id_encounter": 637, "id_journal_instance": 284, "id_map": 650, "instance_type": 1}, {"id": 47271, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solace of the Fallen", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.986299991607666, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47041, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Solace of the Fallen", "name_ko_KR": "쓰러진 자의 위안", "name_fr_FR": "Réconfort des défunts", "name_de_DE": "Trost der Gefallenen", "name_zh_CN": "阵亡者的慰藉", "name_es_ES": "Consuelo de los caídos", "name_ru_RU": "Утешение павших", "name_it_IT": "Conforto del Caduto", "name_pt_PT": "Consolo dos Caídos", "on_use": false, "id_encounter": 1619, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Vitality", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47080, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Vitality", "name_ko_KR": "돌격전차의 활력", "name_fr_FR": "Vitalité du mastodonte", "name_de_DE": "Vitalität des Molochs", "name_zh_CN": "主宰之力", "name_es_ES": "Vitalidad del gigante", "name_ru_RU": "Жизненная сила слепого поклонения", "name_it_IT": "Vitalità della Forza Inesorabile", "name_pt_PT": "Vitalidade do Jaganata", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Death's Choice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95660001039505, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47115, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Death's Choice", "name_ko_KR": "죽음의 선택", "name_fr_FR": "Choix de la mort", "name_de_DE": "Des Todes Wahl", "name_zh_CN": "死亡的选择", "name_es_ES": "Elección de la Muerte", "name_ru_RU": "Выбор смерти", "name_it_IT": "Scelta della Morte", "name_pt_PT": "Escolha da Morte", "on_use": false, "id_encounter": 1622, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Dead", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0044000148773193, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47182, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Dead", "name_ko_KR": "생명이 없는 자의 통치", "name_fr_FR": "Règne de la mort", "name_de_DE": "Herrschaft der Toten", "name_zh_CN": "亡者的统治", "name_es_ES": "Reino de los muertos", "name_ru_RU": "Власть мертвых", "name_it_IT": "Regno della Morte", "name_pt_PT": "Rédeas dos Mortos", "on_use": false, "id_encounter": 1623, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47432, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solace of the Fallen", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0419000387191772, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47059, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Solace of the Fallen", "name_ko_KR": "쓰러진 자의 위안", "name_fr_FR": "Réconfort des défunts", "name_de_DE": "Trost der Gefallenen", "name_zh_CN": "阵亡者的慰藉", "name_es_ES": "Consuelo de los caídos", "name_ru_RU": "Утешение павших", "name_it_IT": "Conforto del Caduto", "name_pt_PT": "Consolo dos Caídos", "on_use": false, "id_encounter": 1619, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47451, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Vitality", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038100004196167, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47088, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Vitality", "name_ko_KR": "돌격전차의 활력", "name_fr_FR": "Vitalité du mastodonte", "name_de_DE": "Vitalität des Molochs", "name_zh_CN": "主宰之力", "name_es_ES": "Vitalidad del gigante", "name_ru_RU": "Жизненная сила слепого поклонения", "name_it_IT": "Vitalità della Forza Inesorabile", "name_pt_PT": "Vitalidade do Jaganata", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47464, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Death's Choice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0123000144958496, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47131, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Death's Choice", "name_ko_KR": "죽음의 선택", "name_fr_FR": "Choix de la mort", "name_de_DE": "Des Todes Wahl", "name_zh_CN": "死亡的选择", "name_es_ES": "Elección de la Muerte", "name_ru_RU": "Выбор смерти", "name_it_IT": "Scelta della Morte", "name_pt_PT": "Escolha da Morte", "on_use": false, "id_encounter": 1622, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47477, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Dead", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599000215530396, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47188, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Dead", "name_ko_KR": "생명이 없는 자의 통치", "name_fr_FR": "Règne de la mort", "name_de_DE": "Herrschaft der Toten", "name_zh_CN": "亡者的统治", "name_es_ES": "Reino de los muertos", "name_ru_RU": "Власть мертвых", "name_it_IT": "Regno della Morte", "name_pt_PT": "Rédeas dos Mortos", "on_use": false, "id_encounter": 1623, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47725, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Victor's Call", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9936000108718872, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47881, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Victor's Call", "name_ko_KR": "승자의 부름", "name_fr_FR": "Appel de la victoire", "name_de_DE": "Ruf des Siegers", "name_zh_CN": "胜者的召唤", "name_es_ES": "Llamada de Victor", "name_ru_RU": "Зов победителя", "name_it_IT": "Chiamata Vittoriosa", "name_pt_PT": "Chamado de Victor", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Volatile Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973000288009644, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47879, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Volatile Power", "name_ko_KR": "작열의 부적", "name_fr_FR": "Talisman du pouvoir volatil", "name_de_DE": "Talisman der flüchtigen Macht", "name_zh_CN": "动荡能量饰物", "name_es_ES": "Dije de poder volátil", "name_ru_RU": "Талисман неустойчивой силы", "name_it_IT": "Talismano del Potere Mutevole", "name_pt_PT": "Talismã do Poder Volátil", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fervor of the Frostborn", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0010000467300415, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47882, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Fervor of the Frostborn", "name_ko_KR": "서릿결 부족의 열정", "name_fr_FR": "Ferveur des Givre-nés", "name_de_DE": "Eifer der Frosterben", "name_zh_CN": "霜脉矮人的热忱", "name_es_ES": "Fervor de los Natoescarcha", "name_ru_RU": "Рвение Зиморожденного", "name_it_IT": "Fervore dei Figli del Gelo", "name_pt_PT": "Fervor do Gelonato", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47728, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Binding Light", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.004699945449829, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47880, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Binding Light", "name_ko_KR": "결속의 빛", "name_fr_FR": "Lien de lumière", "name_de_DE": "Bindendes Licht", "name_zh_CN": "禁锢之光", "name_es_ES": "Luz vinculante", "name_ru_RU": "Связующий свет", "name_it_IT": "Luce del Vincolo", "name_pt_PT": "Vínculo da Luz", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47734, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Supremacy", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1885400, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0267000198364258, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mark of Supremacy", "name_ko_KR": "궁극의 징표", "name_fr_FR": "Marque de suprématie", "name_de_DE": "Mal der Überlegenheit", "name_zh_CN": "霸权印记", "name_es_ES": "Marca de Supremacía", "name_ru_RU": "Знак превосходства", "name_it_IT": "Marchio della Supremazia", "name_pt_PT": "Signo de Supremacia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 47735, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glyph of Indomitability", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1892200, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.030400037765503, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Glyph of Indomitability", "name_ko_KR": "불굴의 문양", "name_fr_FR": "Glyphe de l'indomptable", "name_de_DE": "Glyphe der Unbeherrschbarkeit", "name_zh_CN": "无惧雕饰", "name_es_ES": "Glifo de indomabilidad", "name_ru_RU": "Символ неукротимости", "name_it_IT": "Gioiello dell'Indomabilità", "name_pt_PT": "Glifo de Indomabilidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 47879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of Volatile Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47726, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Fetish of Volatile Power", "name_ko_KR": "작열의 우상", "name_fr_FR": "Fétiche du pouvoir volatil", "name_de_DE": "Fetisch der flüchtigen Macht", "name_zh_CN": "动荡能量雕像", "name_es_ES": "Fetiche de poder volátil", "name_ru_RU": "Фетиш неустойчивой силы", "name_it_IT": "Feticcio del Potere Mutevole", "name_pt_PT": "Fetiche do Poder Volátil", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47880, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Binding Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0006999969482422, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47728, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Binding Stone", "name_ko_KR": "결속의 돌", "name_fr_FR": "Lien de pierre", "name_de_DE": "Bindendes Gestein", "name_zh_CN": "束缚之石", "name_es_ES": "Piedra vinculante", "name_ru_RU": "Связующий камень", "name_it_IT": "Pietra del Vincolo", "name_pt_PT": "Pedra Vinculadora", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47881, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vengeance of the Forsaken", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030900001525879, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47725, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Vengeance of the Forsaken", "name_ko_KR": "포세이큰의 원한", "name_fr_FR": "Vengeance des Réprouvés", "name_de_DE": "Rache der Verlassenen", "name_zh_CN": "被遗忘者的复仇", "name_es_ES": "Venganza de los Renegados", "name_ru_RU": "Отмщение Отрекшихся", "name_it_IT": "Vendetta dei Reietti", "name_pt_PT": "Vingança dos Renegados", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47882, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eitrigg's Oath", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034600019454956, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47727, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Eitrigg's Oath", "name_ko_KR": "아이트리그의 서약", "name_fr_FR": "Serment d'Eitrigg", "name_de_DE": "Etriggs Schwur", "name_zh_CN": "伊崔格的誓约", "name_es_ES": "Juramento de Eitrigg", "name_ru_RU": "Клятва Эйтригга", "name_it_IT": "Giuramento di Eitrigg", "name_pt_PT": "Jura de Eitrigg", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47946, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Volatile Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9753000140190125, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 48018, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Volatile Power", "name_ko_KR": "작열의 부적", "name_fr_FR": "Talisman du pouvoir volatil", "name_de_DE": "Talisman der flüchtigen Macht", "name_zh_CN": "动荡能量饰物", "name_es_ES": "Dije de poder volátil", "name_ru_RU": "Талисман неустойчивой силы", "name_it_IT": "Talismano del Potere Mutevole", "name_pt_PT": "Talismã do Poder Volátil", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47947, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Binding Light", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9789000153541565, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 48019, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Binding Light", "name_ko_KR": "결속의 빛", "name_fr_FR": "Lien de lumière", "name_de_DE": "Bindendes Licht", "name_zh_CN": "禁锢之光", "name_es_ES": "Luz vinculante", "name_ru_RU": "Связующий свет", "name_it_IT": "Luce del Vincolo", "name_pt_PT": "Vínculo da Luz", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Victor's Call", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4323, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825999736785889, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 48020, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Victor's Call", "name_ko_KR": "승자의 부름", "name_fr_FR": "Appel de la victoire", "name_de_DE": "Ruf des Siegers", "name_zh_CN": "胜者的召唤", "name_es_ES": "Llamada de Victor", "name_ru_RU": "Зов победителя", "name_it_IT": "Chiamata Vittoriosa", "name_pt_PT": "Chamado de Victor", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47949, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fervor of the Frostborn", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.986299991607666, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 48021, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Fervor of the Frostborn", "name_ko_KR": "서릿결 부족의 열정", "name_fr_FR": "Ferveur des Givre-nés", "name_de_DE": "Eifer der Frosterben", "name_zh_CN": "霜脉矮人的热忱", "name_es_ES": "Fervor de los Natoescarcha", "name_ru_RU": "Рвение Зиморожденного", "name_it_IT": "Fervore dei Figli del Gelo", "name_pt_PT": "Fervor do Gelonato", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 48018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of Volatile Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47946, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Fetish of Volatile Power", "name_ko_KR": "작열의 우상", "name_fr_FR": "Fétiche du pouvoir volatil", "name_de_DE": "Fetisch der flüchtigen Macht", "name_zh_CN": "动荡能量雕像", "name_es_ES": "Fetiche de poder volátil", "name_ru_RU": "Фетиш неустойчивой силы", "name_it_IT": "Feticcio del Potere Mutevole", "name_pt_PT": "Fetiche do Poder Volátil", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 48019, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Binding Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0491000413894653, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47947, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Binding Stone", "name_ko_KR": "결속의 돌", "name_fr_FR": "Lien de pierre", "name_de_DE": "Bindendes Gestein", "name_zh_CN": "束缚之石", "name_es_ES": "Piedra vinculante", "name_ru_RU": "Связующий камень", "name_it_IT": "Pietra del Vincolo", "name_pt_PT": "Pedra Vinculadora", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 48020, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vengeance of the Forsaken", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4323, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9527000188827515, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47948, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Vengeance of the Forsaken", "name_ko_KR": "포세이큰의 원한", "name_fr_FR": "Vengeance des Réprouvés", "name_de_DE": "Rache der Verlassenen", "name_zh_CN": "被遗忘者的复仇", "name_es_ES": "Venganza de los Renegados", "name_ru_RU": "Отмщение Отрекшихся", "name_it_IT": "Vendetta dei Reietti", "name_pt_PT": "Vingança dos Renegados", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 48021, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eitrigg's Oath", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47949, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Eitrigg's Oath", "name_ko_KR": "아이트리그의 서약", "name_fr_FR": "Serment d'Eitrigg", "name_de_DE": "Etriggs Schwur", "name_zh_CN": "伊崔格的誓约", "name_es_ES": "Juramento de Eitrigg", "name_ru_RU": "Клятва Эйтригга", "name_it_IT": "Giuramento di Eitrigg", "name_pt_PT": "Jura de Eitrigg", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 48722, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of the Crystal Heart", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1824900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937999844551086, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Shard of the Crystal Heart", "name_ko_KR": "투명한 마음의 조각", "name_fr_FR": "Éclat du cœur de cristal", "name_de_DE": "Scherbe des Kristallherzens", "name_zh_CN": "水晶之心碎片", "name_es_ES": "Fragmento del corazón de cristal", "name_ru_RU": "Осколок хрустального сердца", "name_it_IT": "Frammento del Cuore Cristallino", "name_pt_PT": "Estilhaço do Coração de Cristal", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 48724, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Resurgence", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1838300, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.001099944114685, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Resurgence", "name_ko_KR": "회생의 부적", "name_fr_FR": "Talisman de résurgence", "name_de_DE": "Talisman der Wiederauferstehung", "name_zh_CN": "复苏饰物", "name_es_ES": "Dije de Resurgimiento", "name_ru_RU": "Талисман восстановления", "name_it_IT": "Talismano della Rifioritura", "name_pt_PT": "Talismã de Ressurgência", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49074, "race_mask": 18446744073709551615, "desc": "Enchanted to fit perfectly beneath any mug.", "pad2": "", "pad1": "", "pad0": "", "name": "Coren's Chromium Coaster", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9678999781608582, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Coren's Chromium Coaster", "name_ko_KR": "코렌의 크롬 받침", "name_fr_FR": "Sous-bock de Coren en chrome", "name_de_DE": "Corens Chromuntersetzer", "name_zh_CN": "科林的铬银杯垫", "name_es_ES": "Posavasos de cromo de Coren", "name_ru_RU": "Хромированная подставка Корена", "name_it_IT": "Sottobicchiere Cromato di Coren", "name_pt_PT": "Porta-copos Cromado de Coren", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49076, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Pocketwatch", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9753000140190125, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mithril Pocketwatch", "name_ko_KR": "미스릴 회중시계", "name_fr_FR": "Montre de gousset en mithril", "name_de_DE": "Mithriltaschenuhr", "name_zh_CN": "秘银怀表", "name_es_ES": "Reloj de bolsillo de mitril", "name_ru_RU": "Мифриловые карманные часы", "name_it_IT": "Orologio da Tasca di Mithril", "name_pt_PT": "Relógio de Bolso de Mithril", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49078, "race_mask": 18446744073709551615, "desc": "Reeking and rubbery.", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Pickled Egg", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9825999736785889, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Pickled Egg", "name_ko_KR": "고대의 초란", "name_fr_FR": "Œuf ancien mariné", "name_de_DE": "Uraltes Solei", "name_zh_CN": "远古卤蛋", "name_es_ES": "Huevo escabechado pasado", "name_ru_RU": "Древнее маринованное яйцо", "name_it_IT": "Uovo Sottaceto Antico", "name_pt_PT": "Ovo Velho Avinagrado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49080, "race_mask": 18446744073709551615, "desc": "The Grim Guzzler's brawls are things of legend.", "pad2": "", "pad1": "", "pad0": "", "name": "Brawler's Souvenir", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9898999929428101, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Brawler's Souvenir", "name_ko_KR": "싸움꾼의 기념품", "name_fr_FR": "Souvenir du bagarreur", "name_de_DE": "Muskelprotzsouvenir", "name_zh_CN": "打斗者的纪念品", "name_es_ES": "Recuerdo de camorrista", "name_ru_RU": "Сувенир буяна", "name_it_IT": "Souvenir dell'Attaccabrighe", "name_pt_PT": "Suvenir do Briguento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bitter Balebrew Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 13492, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750000238418579, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Bitter Balebrew Charm", "name_ko_KR": "쓰면서도 감미로운 고통의 맥주", "name_fr_FR": "Charme torvebière amer", "name_de_DE": "Bitterer Plörrbräuglücksbringer", "name_zh_CN": "黑暗苦酒咒符", "name_es_ES": "Talismán Fardobirra amarga", "name_ru_RU": "Амулет горького темного варева", "name_it_IT": "Talismano della Birra Amara che fa Più Male", "name_pt_PT": "Patuá Cervamarga Amarga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49118, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bubbling Brightbrew Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 13492, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9822999835014343, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Bubbling Brightbrew Charm", "name_ko_KR": "풍부한 거품의 감미로운 투명 맥주", "name_fr_FR": "Charme brillebière pétillant", "name_de_DE": "Perlender Hellbräuglücksbringer", "name_zh_CN": "光明汽酒咒符", "name_es_ES": "Talismán Brillobirra burbujeante", "name_ru_RU": "Амулет игристого светлого напитка", "name_it_IT": "Talismano della Birra che fa Più Bene", "name_pt_PT": "Patuá de Cervaclara Borbulhante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Shard of the Scale", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45914, "buy_price": 183658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 881, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Purified Shard of the Scale", "name_ko_KR": "정화된 비늘의 파편", "name_fr_FR": "Éclat de l'écaille purifié", "name_de_DE": "Geläuterter Splitter der Schuppe", "name_zh_CN": "纯净的龙鳞碎片", "name_es_ES": "Fragmento de la Escama purificado", "name_ru_RU": "Очищенный обломок чешуи", "name_it_IT": "Frammento Purificato della Scaglia", "name_pt_PT": "Estilhaço Purificado da Escama", "on_use": false, "id_encounter": 1651, "id_journal_instance": 760, "id_map": 249, "instance_type": 2}, {"id": 49312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Onyxia Blood Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.9375, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7495, "stat_alloc_2": 5259, "stat_alloc_3": 882, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": 46, "stat_type_3": 51, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 123580, "buy_price": 494322, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384999513626099, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Purified Onyxia Blood Talisman", "name_ko_KR": "정화된 오닉시아 피 부적", "name_fr_FR": "Talisman de sang d'Onyxia purifié", "name_de_DE": "Geläuterter Talisman mit Onyxiablut", "name_zh_CN": "纯净奥妮克希亚龙血护符", "name_es_ES": "Dije de sangre de Onyxia purificado", "name_ru_RU": "Очищенный кровный талисман Ониксии", "name_it_IT": "Talismano del Sangue d'Onyxia Purificato", "name_pt_PT": "Purified Onyxia Blood Talisman", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Shard of the Flame", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 30000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 46, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45914, "buy_price": 183658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030900001525879, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 881, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Purified Shard of the Flame", "name_ko_KR": "정화된 화염의 파편", "name_fr_FR": "Fragment de la Flamme purifié", "name_de_DE": "Geläuterter Splitter der Flamme", "name_zh_CN": "纯净的烈焰碎片", "name_es_ES": "Fragmento de la Llama purificado", "name_ru_RU": "Очищенная сфера пламени", "name_it_IT": "Frammento Purificato della Fiamma", "name_pt_PT": "Estilhaço Purificado da Chama", "on_use": false, "id_encounter": 1651, "id_journal_instance": 760, "id_map": 249, "instance_type": 2}, {"id": 49464, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiny Shard of the Flame", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 30000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 46, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45914, "buy_price": 183658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034600019454956, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 882, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Shiny Shard of the Flame", "name_ko_KR": "반짝이는 화염의 파편", "name_fr_FR": "Fragment de la Flamme rutilant", "name_de_DE": "Glänzender Splitter der Flamme", "name_zh_CN": "闪亮的烈焰碎片", "name_es_ES": "Fragmento de la Llama lustroso", "name_ru_RU": "Блестящая сфера пламени", "name_it_IT": "Frammento Brillante della Fiamma", "name_pt_PT": "Estilhaço Reluzente da Chama", "on_use": false, "id_encounter": 1651, "id_journal_instance": 760, "id_map": 249, "instance_type": 2}, {"id": 49487, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Onyxia Blood Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.9375, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7495, "stat_alloc_2": 5259, "stat_alloc_3": 781, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": 46, "stat_type_3": 51, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130176, "buy_price": 520707, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0454000234603882, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Purified Onyxia Blood Talisman", "name_ko_KR": "정화된 오닉시아 피 부적", "name_fr_FR": "Talisman de sang d'Onyxia purifié", "name_de_DE": "Geläuterter Talisman mit Onyxiablut", "name_zh_CN": "纯净奥妮克希亚龙血护符", "name_es_ES": "Dije de sangre de Onyxia purificado", "name_ru_RU": "Очищенный кровный талисман Ониксии", "name_it_IT": "Talismano del Sangue d'Onyxia Purificato", "name_pt_PT": "Talismã do Sangue Purificado da Onyxia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49488, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiny Shard of the Scale", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45914, "buy_price": 183658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9754999876022339, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 882, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Shiny Shard of the Scale", "name_ko_KR": "반짝이는 비늘의 파편", "name_fr_FR": "Éclat de l'écaille rutilant", "name_de_DE": "Glänzender Splitter der Schuppe", "name_zh_CN": "闪亮的龙鳞碎片", "name_es_ES": "Fragmento de la Escama lustroso", "name_ru_RU": "Блестящий обломок чешуи", "name_it_IT": "Frammento Brillante della Scaglia", "name_pt_PT": "Estilhaço Reluzente da Escama", "on_use": false, "id_encounter": 1651, "id_journal_instance": 760, "id_map": 249, "instance_type": 2}, {"id": 50198, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Needle-Encrusted Scorpion", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0460000038146973, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Needle-Encrusted Scorpion", "name_ko_KR": "바늘 박힌 전갈", "name_fr_FR": "Scorpion incrusté d'aiguilles", "name_de_DE": "Nadelüberzogener Skorpion", "name_zh_CN": "钉壳毒蝎", "name_es_ES": "Escorpión incrustado de agujas", "name_ru_RU": "Покрытый иглами скорпион", "name_it_IT": "Scorpione dall'Aculeo Incrostato", "name_pt_PT": "Escorpião Incrustado de Agulhas", "on_use": false, "id_encounter": 616, "id_journal_instance": 280, "id_map": 632, "instance_type": 1}, {"id": 50235, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ick's Rotting Thumb", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6647, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33139, "buy_price": 165696, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0347000360488892, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Ick's Rotting Thumb", "name_ko_KR": "이크의 썩어가는 엄지", "name_fr_FR": "Pouce pourrissant d'Ick", "name_de_DE": "Icks verrottender Daumen", "name_zh_CN": "伊克的烂指", "name_es_ES": "Pulgar putrefacto de Agh", "name_ru_RU": "Гниющий палец Ика", "name_it_IT": "Alluce Decomposto di Ick", "name_pt_PT": "Dedo Aprodrecido do Ick", "on_use": true, "id_encounter": 609, "id_journal_instance": 278, "id_map": 658, "instance_type": 1}, {"id": 50259, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nevermelting Ice Crystal", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5580, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33603, "buy_price": 168018, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0492000579833984, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Nevermelting Ice Crystal", "name_ko_KR": "영구결빙 수정", "name_fr_FR": "Cristal de glace perpétuelle", "name_de_DE": "Nimmerschmelzender Eiskristall", "name_zh_CN": "永冻冰晶", "name_es_ES": "Cristal de hielo perenne", "name_ru_RU": "Нетающий кристалл льда", "name_it_IT": "Cristallo di Ghiaccio Condensato", "name_pt_PT": "Cristal de Gelo Perene", "on_use": true, "id_encounter": 610, "id_journal_instance": 278, "id_map": 658, "instance_type": 1}, {"id": 50260, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ephemeral Snowflake", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9793000221252441, "flags_1": 524288, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Ephemeral Snowflake", "name_ko_KR": "단명의 눈송이", "name_fr_FR": "Flocon de neige éphémère", "name_de_DE": "Vergängliche Schneeflocke", "name_zh_CN": "消融之雪", "name_es_ES": "Copo de nieve efímero", "name_ru_RU": "Эфемерная снежинка", "name_it_IT": "Fiocco di Neve Effimero", "name_pt_PT": "Floco de Neve Efêmero", "on_use": true, "id_encounter": 602, "id_journal_instance": 276, "id_map": 668, "instance_type": 1}, {"id": 50339, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sliver of Pure Ice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 74, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6652, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750999808311462, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sliver of Pure Ice", "name_ko_KR": "순수한 얼음 조각", "name_fr_FR": "Esquille de glace pure", "name_de_DE": "Splitter aus reinem Eis", "name_zh_CN": "纯冰薄片", "name_es_ES": "Esquirla de hielo puro", "name_ru_RU": "Осколок чистейшего льда", "name_it_IT": "Scaglia di Puro Ghiaccio", "name_pt_PT": "Lasca de Puro Gelo", "on_use": true, "id_encounter": 1624, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50340, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Muradin's Spyglass", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 73, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6453, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053000450134277, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Muradin's Spyglass", "name_ko_KR": "무라딘의 망원경", "name_fr_FR": "Longue-vue de Muradin", "name_de_DE": "Muradins Handfernrohr", "name_zh_CN": "穆拉丁的望远镜", "name_es_ES": "Catalejo de Muradin", "name_ru_RU": "Подзорная труба Мурадина", "name_it_IT": "Cannocchiale di Muradin", "name_pt_PT": "Luneta de Muradin", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50341, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unidentifiable Organ", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 75, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0089999437332153, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Unidentifiable Organ", "name_ko_KR": "정체불명의 기관", "name_fr_FR": "Organe non identifiable", "name_de_DE": "Unidentifizierbares Organ", "name_zh_CN": "未鉴定的器官", "name_es_ES": "Órgano inidentificable", "name_ru_RU": "Неизвестный орган", "name_it_IT": "Organo Non Identificabile", "name_pt_PT": "Órgão Não Identificado", "on_use": false, "id_encounter": 1631, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50342, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whispering Fanged Skull", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 76, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6453, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0125999450683594, "flags_1": 0, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Whispering Fanged Skull", "name_ko_KR": "속삭이는 송곳니 해골", "name_fr_FR": "Crâne à crocs murmurant", "name_de_DE": "Flüsternder Gezahnter Schädel", "name_zh_CN": "密语尖牙颅骨", "name_es_ES": "Calavera dentuda susurrante", "name_ru_RU": "Шепчущий клыкастый череп", "name_it_IT": "Teschio con Zanne Sussurranti", "name_pt_PT": "Caveira Sussurrante com Presas", "on_use": false, "id_encounter": 1625, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50343, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whispering Fanged Skull", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 76, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6463, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0162999629974365, "flags_1": 8, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Whispering Fanged Skull", "name_ko_KR": "속삭이는 송곳니 해골", "name_fr_FR": "Crâne à crocs murmurant", "name_de_DE": "Flüsternder Gezahnter Schädel", "name_zh_CN": "密语尖牙颅骨", "name_es_ES": "Calavera dentuda susurrante", "name_ru_RU": "Шепчущий клыкастый череп", "name_it_IT": "Teschio con Zanne Sussurranti", "name_pt_PT": "Caveira Sussurrante com Presas", "on_use": false, "id_encounter": 1625, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unidentifiable Organ", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 75, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0199999809265137, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Unidentifiable Organ", "name_ko_KR": "정체불명의 기관", "name_fr_FR": "Organe non identifiable", "name_de_DE": "Unidentifizierbares Organ", "name_zh_CN": "未鉴定的器官", "name_es_ES": "Órgano inidentificable", "name_ru_RU": "Неизвестный орган", "name_it_IT": "Organo Non Identificabile", "name_pt_PT": "Órgão Não Identificado", "on_use": false, "id_encounter": 1631, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50345, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Muradin's Spyglass", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 73, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0236999988555908, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Muradin's Spyglass", "name_ko_KR": "무라딘의 망원경", "name_fr_FR": "Longue-vue de Muradin", "name_de_DE": "Muradins Handfernrohr", "name_zh_CN": "穆拉丁的望远镜", "name_es_ES": "Catalejo de Muradin", "name_ru_RU": "Подзорная труба Мурадина", "name_it_IT": "Cannocchiale di Muradin", "name_pt_PT": "Luneta de Muradin", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sliver of Pure Ice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 74, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6644, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0273000001907349, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sliver of Pure Ice", "name_ko_KR": "순수한 얼음 조각", "name_fr_FR": "Esquille de glace pure", "name_de_DE": "Splitter aus reinem Eis", "name_zh_CN": "纯冰薄片", "name_es_ES": "Esquirla de hielo puro", "name_ru_RU": "Осколок чистейшего льда", "name_it_IT": "Scaglia di Puro Ghiaccio", "name_pt_PT": "Lasca de Puro Gelo", "on_use": true, "id_encounter": 1624, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50348, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dislodged Foreign Object", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 48, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6589, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0347000360488892, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Dislodged Foreign Object", "name_ko_KR": "제거된 이물질", "name_fr_FR": "Objet étranger déplacé", "name_de_DE": "Entfernter Fremdkörper", "name_zh_CN": "被摘除的外物", "name_es_ES": "Objeto desprendido extraño", "name_ru_RU": "Объект из другого измерения", "name_it_IT": "Corpo Estraneo Rimosso", "name_pt_PT": "Objeto Estrangeiro Desalojado", "on_use": false, "id_encounter": 1630, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50349, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corpse Tongue Coin", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 46, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0383000373840332, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Corpse Tongue Coin", "name_ko_KR": "시체조각 동전", "name_fr_FR": "Pièce du passeur", "name_de_DE": "Fährmünze der Toten", "name_zh_CN": "镇魂币", "name_es_ES": "Moneda de la lengua de un cadáver", "name_ru_RU": "Монета на удачу", "name_it_IT": "Moneta per Caronte", "name_pt_PT": "Moeda da Língua Cadavérica", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50351, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Abomination in a Jar", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 50, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3712, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045699954032898, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Tiny Abomination in a Jar", "name_ko_KR": "단지 안에 든 작은 누더기골렘", "name_fr_FR": "Petite abomination en bouteille", "name_de_DE": "Winzige Monstrosität im Glas", "name_zh_CN": "瓶中的小憎恶", "name_es_ES": "Abominación diminuta en un tarro", "name_ru_RU": "Миниатюрное поганище в колбе", "name_it_IT": "Piccolo Abominio in Scatola", "name_pt_PT": "Abominação Minúscula numa Jarra", "on_use": false, "id_encounter": 1631, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50352, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corpse Tongue Coin", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 46, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.049399971961975, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Corpse Tongue Coin", "name_ko_KR": "시체조각 동전", "name_fr_FR": "Pièce du passeur", "name_de_DE": "Fährmünze der Toten", "name_zh_CN": "镇魂币", "name_es_ES": "Moneda de la lengua de un cadáver", "name_ru_RU": "Монета на удачу", "name_it_IT": "Moneta per Caronte", "name_pt_PT": "Moeda da Língua Cadavérica", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50353, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dislodged Foreign Object", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 48, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6769, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9528999924659729, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Dislodged Foreign Object", "name_ko_KR": "제거된 이물질", "name_fr_FR": "Objet étranger déplacé", "name_de_DE": "Entfernter Fremdkörper", "name_zh_CN": "被摘除的外物", "name_es_ES": "Objeto desprendido extraño", "name_ru_RU": "Объект из другого измерения", "name_it_IT": "Corpo Estraneo Rimosso", "name_pt_PT": "Objeto Estrangeiro Desalojado", "on_use": false, "id_encounter": 1630, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50354, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bauble of True Blood", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 45, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95660001039505, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Bauble of True Blood", "name_ko_KR": "진정한 피의 노리개", "name_fr_FR": "Verroterie du sang véritable", "name_de_DE": "Schmuckstück des wahren Blutes", "name_zh_CN": "纯血珠饰", "name_es_ES": "Adorno de sangre verdadera", "name_ru_RU": "Подвеска истинной крови", "name_it_IT": "Bigiotteria di Vero Sangue", "name_pt_PT": "Bugiganga de Verossangue", "on_use": true, "id_encounter": 1633, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50355, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Herkuml War Token", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6681, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 1853100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9603000283241272, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Herkuml War Token", "name_ko_KR": "헤르쿰의 전쟁 징표", "name_fr_FR": "Jeton de guerre de Herkuml", "name_de_DE": "Herkumlkriegsabzeichen", "name_zh_CN": "圣战徽记", "name_es_ES": "Pieza Herkuml de guerra", "name_ru_RU": "Геркумлийский боевой знак", "name_it_IT": "Emblema di Guerra di Herkuml", "name_pt_PT": "Símbolo de Guerra Herkuml", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 50356, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corroded Skeleton Key", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9956, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 1911400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904999732971191, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Corroded Skeleton Key", "name_ko_KR": "부식된 해골 열쇠", "name_fr_FR": "Passe-partout corrodé", "name_de_DE": "Rostiger Dietrich", "name_zh_CN": "枯骨之钥", "name_es_ES": "Llave esqueleto corroída", "name_ru_RU": "Проржавевший костяной ключ", "name_it_IT": "Chiave Universale Corrosa", "name_pt_PT": "Chave-mestra Corroída", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 50357, "race_mask": 18446744073709551615, "desc": "Incapable of Scribing the Truth", "pad2": "", "pad1": "", "pad0": "", "name": "Maghia's Misguided Quill", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 1918300, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940999746322632, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Maghia's Misguided Quill", "name_ko_KR": "마기아의 잘못 놀린 깃대", "name_fr_FR": "Plume fautive de Maghia", "name_de_DE": "Maghias fehlgeleiteter Federkiel", "name_zh_CN": "玛格娅的谬论之笔", "name_es_ES": "Pluma deshonesta de Maghia", "name_ru_RU": "Заговоренное перо Магхиа", "name_it_IT": "Penna Maldestra di Maghia", "name_pt_PT": "Pena Equivocada de Maghia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 50358, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Lunar Dust", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6681, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 1925500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9977999925613403, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Purified Lunar Dust", "name_ko_KR": "정화된 달빛 먼지", "name_fr_FR": "Poussière lunaire purifiée", "name_de_DE": "Geläuterter Mondstaub", "name_zh_CN": "纯净月尘", "name_es_ES": "Polvo lunar purificado", "name_ru_RU": "Очищенная лунная пыль", "name_it_IT": "Polvere Lunare Purificata", "name_pt_PT": "Pó Lunar Purificado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 50359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Althor's Abacus", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 44, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6681, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0015000104904175, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Althor's Abacus", "name_ko_KR": "알소르의 연산장치", "name_fr_FR": "Boulier d'Althor", "name_de_DE": "Althors Abakus", "name_zh_CN": "阿尔索的算盘", "name_es_ES": "Ábaco de Althor", "name_ru_RU": "Счеты Алтора", "name_it_IT": "Abaco di Althor", "name_pt_PT": "Ábaco de Althor", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50360, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Phylactery of the Nameless Lich", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 49, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0052000284194946, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Phylactery of the Nameless Lich", "name_ko_KR": "이름없는 리치의 성물함", "name_fr_FR": "Phylactère de la liche sans nom", "name_de_DE": "Phylakterium des namenlosen Lichs", "name_zh_CN": "无名巫妖的护命匣", "name_es_ES": "Filacteria del exánime innombrable", "name_ru_RU": "Талисман безымянного лича", "name_it_IT": "Filatterio del Lich Senza Nome", "name_pt_PT": "Filactério do Lich Inominável", "on_use": false, "id_encounter": 1635, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50361, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sindragosa's Flawless Fang", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 51, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9956, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0088000297546387, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sindragosa's Flawless Fang", "name_ko_KR": "신드라고사의 완전무결한 송곳니", "name_fr_FR": "Croc parfait de Sindragosa", "name_de_DE": "Sindragosas makelloser Fangzahn", "name_zh_CN": "完美之牙", "name_es_ES": "Colmillo impecable de Sindragosa", "name_ru_RU": "Безупречный клык Синдрагосы", "name_it_IT": "Zanna Perfetta di Sindragosa", "name_pt_PT": "Presa Impecável de Sindragosa", "on_use": true, "id_encounter": 1635, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50362, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deathbringer's Will", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 47, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6769, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0125000476837158, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Deathbringer's Will", "name_ko_KR": "죽음인도자의 의지", "name_fr_FR": "Volonté de porte-mort", "name_de_DE": "Wille des Todesbringers", "name_zh_CN": "死神的意志", "name_es_ES": "Testamento del Libramorte", "name_ru_RU": "Воля Смертоносного", "name_it_IT": "Volontà dell'Araldo della Morte", "name_pt_PT": "Determinação do Mortífero", "on_use": false, "id_encounter": 1628, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50363, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deathbringer's Will", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 47, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6473, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0161999464035034, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Deathbringer's Will", "name_ko_KR": "죽음인도자의 의지", "name_fr_FR": "Volonté de porte-mort", "name_de_DE": "Wille des Todesbringers", "name_zh_CN": "死神的意志", "name_es_ES": "Testamento del Libramorte", "name_ru_RU": "Воля Смертоносного", "name_it_IT": "Volontà dell'Araldo della Morte", "name_pt_PT": "Determinação do Mortífero", "on_use": false, "id_encounter": 1628, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50364, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sindragosa's Flawless Fang", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 51, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0197999477386475, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sindragosa's Flawless Fang", "name_ko_KR": "신드라고사의 완전무결한 송곳니", "name_fr_FR": "Croc parfait de Sindragosa", "name_de_DE": "Sindragosas makelloser Fangzahn", "name_zh_CN": "完美之牙", "name_es_ES": "Colmillo impecable de Sindragosa", "name_ru_RU": "Безупречный клык Синдрагосы", "name_it_IT": "Zanna Perfetta di Sindragosa", "name_pt_PT": "Presa Impecável de Sindragosa", "on_use": true, "id_encounter": 1635, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50365, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Phylactery of the Nameless Lich", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 49, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0234999656677246, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Phylactery of the Nameless Lich", "name_ko_KR": "이름없는 리치의 성물함", "name_fr_FR": "Phylactère de la liche sans nom", "name_de_DE": "Phylakterium des namenlosen Lichs", "name_zh_CN": "无名巫妖的护命匣", "name_es_ES": "Filacteria del exánime innombrable", "name_ru_RU": "Талисман безымянного лича", "name_it_IT": "Filatterio del Lich Senza Nome", "name_pt_PT": "Filactério do Lich Inominável", "on_use": false, "id_encounter": 1635, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50366, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Althor's Abacus", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 44, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0271999835968018, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Althor's Abacus", "name_ko_KR": "알소르의 연산장치", "name_fr_FR": "Boulier d'Althor", "name_de_DE": "Althors Abakus", "name_zh_CN": "阿尔索的算盘", "name_es_ES": "Ábaco de Althor", "name_ru_RU": "Счеты Алтора", "name_it_IT": "Abaco di Althor", "name_pt_PT": "Ábaco de Althor", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50706, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Abomination in a Jar", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 50, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3295, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030900001525879, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Tiny Abomination in a Jar", "name_ko_KR": "단지 안에 든 작은 누더기골렘", "name_fr_FR": "Petite abomination en bouteille", "name_de_DE": "Winzige Monstrosität im Glas", "name_zh_CN": "瓶中的小憎恶", "name_es_ES": "Abominación diminuta en un tarro", "name_ru_RU": "Миниатюрное поганище в колбе", "name_it_IT": "Piccolo Abominio in Scatola", "name_pt_PT": "Abominação Minúscula numa Jarra", "on_use": false, "id_encounter": 1631, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bauble of True Blood", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 45, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.957099974155426, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Bauble of True Blood", "name_ko_KR": "진정한 피의 노리개", "name_fr_FR": "Verroterie du sang véritable", "name_de_DE": "Schmuckstück des wahren Blutes", "name_zh_CN": "纯血珠饰", "name_es_ES": "Adorno de sangre verdadera", "name_ru_RU": "Подвеска истинной крови", "name_it_IT": "Bigiotteria di Vero Sangue", "name_pt_PT": "Bugiganga de Verossangue", "on_use": true, "id_encounter": 1633, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 51377, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0051000118255615, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 51378, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 51378, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0088000297546387, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 51377, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 52199, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Demon Panther", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141015, "buy_price": 564063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9718000292778015, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2200, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2521, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Demon Panther", "name_ko_KR": "조각상 - 악마 표범", "name_fr_FR": "Figurine de panthère démoniaque", "name_de_DE": "Figur - Dämonenpanther", "name_zh_CN": "雕像 - 恶魔豹", "name_es_ES": "Figurilla: pantera demoníaca", "name_ru_RU": "Статуэтка демонической пантеры", "name_it_IT": "Statuetta - Pantera Demoniaca", "name_pt_PT": "Estatueta - Pantera Demoníaca", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 52351, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - King of Boars", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141015, "buy_price": 564063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944000244140625, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2200, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2521, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - King of Boars", "name_ko_KR": "조각상 - 멧돼지 왕", "name_fr_FR": "Figurine du roi des sangliers", "name_de_DE": "Figur - König der Eber", "name_zh_CN": "雕像 - 野猪之王", "name_es_ES": "Figurilla: rey de los jabalíes", "name_ru_RU": "Статуэтка короля вепрей", "name_it_IT": "Statuetta - Re dei Cinghiali", "name_pt_PT": "Estatueta - Rei dos Javalis", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 52352, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Earthen Guardian", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141015, "buy_price": 564063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9980999827384949, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2200, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2521, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Earthen Guardian", "name_ko_KR": "조각상 - 대지 수호자", "name_fr_FR": "Figurine de gardien terrestre", "name_de_DE": "Figur - Irdener Wächter", "name_zh_CN": "雕像 - 土灵守护者", "name_es_ES": "Figurilla: guardián terráneo", "name_ru_RU": "Статуэтка земельника-стража", "name_it_IT": "Statuetta - Custode della Terra", "name_pt_PT": "Estatueta - Guardião Terrano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 52353, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Jeweled Serpent", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141015, "buy_price": 564063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017000436782837, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2200, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2521, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Jeweled Serpent", "name_ko_KR": "조각상 - 보석 박힌 뱀", "name_fr_FR": "Figurine de serpent ornée de joyaux", "name_de_DE": "Figur - Juwelenbesetzte Schlange", "name_zh_CN": "雕像 - 宝石毒蛇", "name_es_ES": "Figurilla: serpiente con joyas", "name_ru_RU": "Статуэтка украшенной камнями змеи", "name_it_IT": "Statuetta - Serpente Ingioiellato", "name_pt_PT": "Estatueta - Serpente Cravejada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 52354, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Dream Owl", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141015, "buy_price": 564063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053999423980713, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2200, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2521, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Dream Owl", "name_ko_KR": "조각상 - 꿈의 올빼미", "name_fr_FR": "Figurine de hibou onirique", "name_de_DE": "Figur - Traumeule", "name_zh_CN": "雕像 - 梦枭", "name_es_ES": "Figurilla: búho onírico", "name_ru_RU": "Статуэтка спящей совы", "name_it_IT": "Statuetta - Gufo Onirico", "name_pt_PT": "Estatueta - Coruja Onírica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 53597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Toy Windmill", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5259, "stat_alloc_2": 5259, "stat_alloc_3": 5258, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 7, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6784, "buy_price": 33923, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053999423980713, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Toy Windmill", "name_ko_KR": "장난감 풍차", "name_fr_FR": "Moulin à vent miniature", "name_de_DE": "Spielzeugwindmühle", "name_zh_CN": "玩具风车", "name_es_ES": "Molino de juguete", "name_ru_RU": "Игрушечная ветряная мельница", "name_it_IT": "Giostra Portatile", "name_pt_PT": "Moinho de Brinquedo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 54547, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cracked Jewelry Box", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 98802, "buy_price": 395210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cracked Jewelry Box", "name_ko_KR": "금이 간 보석함", "name_fr_FR": "Boîte à bijoux craquelée", "name_de_DE": "Rissige Schmuckschatulle", "name_zh_CN": "破裂的珠宝盒", "name_es_ES": "Joyero rajado", "name_ru_RU": "Треснувшая шкатулка для драгоценностей", "name_it_IT": "Scrigno di Gioielli Crepato", "name_pt_PT": "Cracked Jewelry Box", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 54569, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sharpened Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 82, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sharpened Twilight Scale", "name_ko_KR": "날카로운 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule aiguisée", "name_de_DE": "Geschärfte Zwielichtschuppe", "name_zh_CN": "锐锋暮光龙鳞", "name_es_ES": "Escama Crepuscular afilada", "name_ru_RU": "Заостренная сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Affilata", "name_pt_PT": "Escama Crepuscular Afiada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54571, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 83, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9945999979972839, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Petrified Twilight Scale", "name_ko_KR": "석화된 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule pétrifiée", "name_de_DE": "Versteinerte Zwielichtschuppe", "name_zh_CN": "石化暮光龙鳞", "name_es_ES": "Escama Crepuscular petrificada", "name_ru_RU": "Окаменелая сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Pietrificata", "name_pt_PT": "Escama Crepuscular Petrificada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charred Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 85, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983000159263611, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Charred Twilight Scale", "name_ko_KR": "그을린 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule carbonisée", "name_de_DE": "Verkohlte Zwielichtschuppe", "name_zh_CN": "焦黑暮光龙鳞", "name_es_ES": "Escama Crepuscular carbonizada", "name_ru_RU": "Обугленная сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Carbonizzata", "name_pt_PT": "Escama Crepuscular Chamuscada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54573, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glowing Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 84, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Glowing Twilight Scale", "name_ko_KR": "빛나는 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule luminescente", "name_de_DE": "Leuchtende Zwielichtschuppe", "name_zh_CN": "明亮暮光龙鳞", "name_es_ES": "Escama Crepuscular resplandeciente", "name_ru_RU": "Светящаяся сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Brillante", "name_pt_PT": "Escama Crepuscular Faiscante", "on_use": true, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54588, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charred Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 85, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9835000038146973, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Charred Twilight Scale", "name_ko_KR": "그을린 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule carbonisée", "name_de_DE": "Verkohlte Zwielichtschuppe", "name_zh_CN": "焦黑暮光龙鳞", "name_es_ES": "Escama Crepuscular carbonizada", "name_ru_RU": "Обугленная сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Carbonizzata", "name_pt_PT": "Escama Crepuscular Chamuscada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54589, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glowing Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 84, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9871000051498413, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Glowing Twilight Scale", "name_ko_KR": "빛나는 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule luminescente", "name_de_DE": "Leuchtende Zwielichtschuppe", "name_zh_CN": "明亮暮光龙鳞", "name_es_ES": "Escama Crepuscular resplandeciente", "name_ru_RU": "Светящаяся сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Brillante", "name_pt_PT": "Escama Crepuscular Faiscante", "on_use": true, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54590, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sharpened Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 82, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9908000230789185, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sharpened Twilight Scale", "name_ko_KR": "날카로운 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule aiguisée", "name_de_DE": "Geschärfte Zwielichtschuppe", "name_zh_CN": "锐锋暮光龙鳞", "name_es_ES": "Escama Crepuscular afilada", "name_ru_RU": "Заостренная сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Affilata", "name_pt_PT": "Escama Crepuscular Afiada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54591, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 83, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944999814033508, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Petrified Twilight Scale", "name_ko_KR": "석화된 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule pétrifiée", "name_de_DE": "Versteinerte Zwielichtschuppe", "name_zh_CN": "石化暮光龙鳞", "name_es_ES": "Escama Crepuscular petrificada", "name_ru_RU": "Окаменелая сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Pietrificata", "name_pt_PT": "Escama Crepuscular Petrificada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 55237, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Porcelain Crab", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 101, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 28437, "buy_price": 142189, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Porcelain Crab", "name_ko_KR": "도자기 게", "name_fr_FR": "Crabe en porcelaine", "name_de_DE": "Porzellankrebs", "name_zh_CN": "瓷蟹", "name_es_ES": "Cangrejo de porcelana", "name_ru_RU": "Фарфоровый краб", "name_it_IT": "Granchio di Porcellana", "name_pt_PT": "Caranguejo de Porcelana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55251, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of the Ocean", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 100, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 27824, "buy_price": 139120, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Might of the Ocean", "name_ko_KR": "대양의 힘", "name_fr_FR": "Puissance de l'océan", "name_de_DE": "Macht des Ozeans", "name_zh_CN": "海洋之力", "name_es_ES": "Poderío del océano", "name_ru_RU": "Мощь океана", "name_it_IT": "Forza dell'Oceano", "name_pt_PT": "Poder do Oceano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55256, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sea Star", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 102, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 28332, "buy_price": 141661, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020300030708313, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Sea Star", "name_ko_KR": "불가사리", "name_fr_FR": "Etoile de mer", "name_de_DE": "Seestern", "name_zh_CN": "碧海之星", "name_es_ES": "Estrella de mar", "name_ru_RU": "Морская звезда", "name_it_IT": "Stella Marina", "name_pt_PT": "Estrela do Mar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55266, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grace of the Herald", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 103, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 27310, "buy_price": 136552, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9835000038146973, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Grace of the Herald", "name_ko_KR": "사자의 은총", "name_fr_FR": "Grâce du héraut", "name_de_DE": "Gunst des Herolds", "name_zh_CN": "先驱之握", "name_es_ES": "Gracia del Heraldo", "name_ru_RU": "Милость глашатая", "name_it_IT": "Grazia dell'Araldo", "name_pt_PT": "Graça do Arauto", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55787, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Witching Hourglass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 104, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 28951, "buy_price": 144757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0426000356674194, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Witching Hourglass", "name_ko_KR": "마녀의 모래시계", "name_fr_FR": "Sablier ensorcelant", "name_de_DE": "Geisterstundenglas", "name_zh_CN": "巫术沙漏", "name_es_ES": "Reloj de arena de brujería", "name_ru_RU": "Ведьминские песочные часы", "name_it_IT": "Clessidra delle Streghe", "name_pt_PT": "Ampulheta da Bruxaria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55795, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Key to the Endless Chamber", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 105, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 27724, "buy_price": 138620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Key to the Endless Chamber", "name_ko_KR": "무한한 방의 열쇠", "name_fr_FR": "Clé de la chambre sans fin", "name_de_DE": "Schlüssel zur unendlichen Kammer", "name_zh_CN": "无尽密室之匙", "name_es_ES": "Llave a la Cámara sin Fin", "name_ru_RU": "Ключ от Бесконечного Чертога", "name_it_IT": "Chiave della Sala Sconfinata", "name_pt_PT": "Chave da Câmara Infinda", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tendrils of Burrowing Dark", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 109, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 371, "buy_price": 1858, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9799000024795532, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Tendrils of Burrowing Dark", "name_ko_KR": "파고드는 어둠의 덩굴", "name_fr_FR": "Vrilles de noirceur fouisseuse", "name_de_DE": "Ranken des vergrabenden Dunkels", "name_zh_CN": "黑暗潜藏卷须", "name_es_ES": "Zarcillos de oscuridad penetrante", "name_ru_RU": "Витки могильной тьмы", "name_it_IT": "Tentacoli dell'Oscurità Nascosta", "name_pt_PT": "Gavinhas da Escuridão Penetrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55814, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magnetite Mirror", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 107, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 27618, "buy_price": 138093, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9945999979972839, "flags_1": 524288, "flags_2": 8208, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Magnetite Mirror", "name_ko_KR": "자철석 거울", "name_fr_FR": "Miroir en magnétite", "name_de_DE": "Magnetitspiegel", "name_zh_CN": "磁力之镜", "name_es_ES": "Espejo de calamita", "name_ru_RU": "Магнетитовое зерцало", "name_it_IT": "Specchio di Magnetite", "name_pt_PT": "Espelho de Magnetita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55816, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leaden Despair", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 106, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 27824, "buy_price": 139120, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Leaden Despair", "name_ko_KR": "납빛 절망", "name_fr_FR": "Désespoir plombé", "name_de_DE": "Bleierne Verzweiflung", "name_zh_CN": "沉重绝望", "name_es_ES": "Desesperación plomiza", "name_ru_RU": "Мрак отчаяния", "name_it_IT": "Disperazione Cupa", "name_pt_PT": "Desespero Plúmbeo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55819, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tear of Blood", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 108, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 28129, "buy_price": 140647, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0130000114440918, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Tear of Blood", "name_ko_KR": "피눈물", "name_fr_FR": "Larme de sang", "name_de_DE": "Blutträne", "name_zh_CN": "血红之泪", "name_es_ES": "Lágrima de sangre", "name_ru_RU": "Кровавая слеза", "name_it_IT": "Lacrima di Sangue", "name_pt_PT": "Lágrima de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55845, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Thunder", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 110, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9613000154495239, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Thunder", "name_ko_KR": "천둥의 심장", "name_fr_FR": "Cœur de tonnerre", "name_de_DE": "Herz des Sturms", "name_zh_CN": "雷霆之心", "name_es_ES": "Corazón de trueno", "name_ru_RU": "Сердце грома", "name_it_IT": "Cuore di Tuono", "name_pt_PT": "Coração do Trovão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55854, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rainsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020799994468689, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Rainsong", "name_ko_KR": "비의 노래", "name_fr_FR": "Chantepluie", "name_de_DE": "Regengesang", "name_zh_CN": "雨歌", "name_es_ES": "Cantolluvia", "name_ru_RU": "Песнь дождя", "name_it_IT": "Canto della Pioggia", "name_pt_PT": "Canção da Chuva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55868, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Solace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 112, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31208, "buy_price": 156041, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9721999764442444, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Solace", "name_ko_KR": "위안의 심장", "name_fr_FR": "Cœur de réconfort", "name_de_DE": "Herz des Trostes", "name_zh_CN": "抚慰之心", "name_es_ES": "Corazón de consuelo", "name_ru_RU": "Сердце Утешения", "name_it_IT": "Cuore di Conforto", "name_pt_PT": "Coração do Consolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55874, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tia's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 114, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32765, "buy_price": 163826, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0206999778747559, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Tia's Grace", "name_ko_KR": "티아의 은총", "name_fr_FR": "Grâce de Tia", "name_de_DE": "Tias Gunst", "name_zh_CN": "提亚的优雅", "name_es_ES": "Gracia de Tia", "name_ru_RU": "Благоволение Тиа", "name_it_IT": "Grazia di Siamat", "name_pt_PT": "Graça de Tia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sorrowsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 113, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 433, "buy_price": 2167, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Sorrowsong", "name_ko_KR": "슬픔의 노래", "name_fr_FR": "Tristechant", "name_de_DE": "Klagelied", "name_zh_CN": "悲歌", "name_es_ES": "Canción de penas", "name_ru_RU": "Песнь печали", "name_it_IT": "Canto della Tristezza", "name_pt_PT": "Canção do Pesar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55881, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impetuous Query", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33590, "buy_price": 167951, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463999509811401, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Impetuous Query", "name_ko_KR": "성급한 의혹", "name_fr_FR": "Demande impétueuse", "name_de_DE": "Ungestümes Ersuchen", "name_zh_CN": "鲁莽之询", "name_es_ES": "Petición impetuosa", "name_ru_RU": "Допрос с пристрастием", "name_it_IT": "Richiesta Impetuosa", "name_pt_PT": "Dúvida Impetuosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55889, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anhuur's Hymnal", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 115, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32171, "buy_price": 160856, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Anhuur's Hymnal", "name_ko_KR": "안후르의 성가집", "name_fr_FR": "Hymnaire d'Anhuur", "name_de_DE": "Anhuurs Gesangbuch", "name_zh_CN": "安努尔之书", "name_es_ES": "Cantoral de Anhuur", "name_ru_RU": "Песенник Ануура", "name_it_IT": "Innario di Anhuur", "name_pt_PT": "Hinário de Anhuur", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood of Isiset", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 116, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30495, "buy_price": 152478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.949999988079071, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Blood of Isiset", "name_ko_KR": "이시세트의 핏방울", "name_fr_FR": "Sang d'Isiset", "name_de_DE": "Blut von Isiset", "name_zh_CN": "伊希斯特的精华", "name_es_ES": "Sangre de Isiset", "name_ru_RU": "Кровь Изисет", "name_it_IT": "Sangue di Isiset", "name_pt_PT": "Sangue de Isiset", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56100, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Right Eye of Rajh", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 118, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32765, "buy_price": 163826, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0206999778747559, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Right Eye of Rajh", "name_ko_KR": "라지의 오른쪽 눈", "name_fr_FR": "Oeil droit de Rajh", "name_de_DE": "Rechtes Auge von Rajh", "name_zh_CN": "拉夏的右眼", "name_es_ES": "Ojo derecho de Rajh", "name_ru_RU": "Правый глаз Раджа", "name_it_IT": "Occhio Destro di Rajh", "name_pt_PT": "Olho Direito de Rajh", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56102, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Left Eye of Rajh", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 117, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33002, "buy_price": 165013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0281000137329102, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Left Eye of Rajh", "name_ko_KR": "라지의 왼쪽 눈", "name_fr_FR": "Oeil gauche de Rajh", "name_de_DE": "Linkes Auge von Rajh", "name_zh_CN": "拉夏的左眼", "name_es_ES": "Ojo izquierdo de Rajh", "name_ru_RU": "Левый глаз Раджа", "name_it_IT": "Occhio Sinistro di Rajh", "name_pt_PT": "Olho Esquerdo de Rajh", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skardyn's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 122, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32171, "buy_price": 160856, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Skardyn's Grace", "name_ko_KR": "스카르딘의 은총", "name_fr_FR": "Grâce de Skardyn", "name_de_DE": "Gunst der Skardyn", "name_zh_CN": "灰鳞的优雅", "name_es_ES": "Gracia de skardyn", "name_ru_RU": "Милость Скардина", "name_it_IT": "Grazia di Skardyn", "name_pt_PT": "Graça dos Skardyn", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56121, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Throngus's Finger", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 123, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32880, "buy_price": 164403, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Throngus's Finger", "name_ko_KR": "트롱구스의 손가락", "name_fr_FR": "Doigt de Throngus", "name_de_DE": "Finger von Throngus", "name_zh_CN": "索朗格斯的指节", "name_es_ES": "Dedo de Throngus", "name_ru_RU": "Палец Тронга", "name_it_IT": "Dito di Throngus", "name_pt_PT": "Dedo de Throngus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Khardros", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 121, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31815, "buy_price": 159075, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991100013256073, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Khardros", "name_ko_KR": "카드로스의 징표", "name_fr_FR": "Marque de Khardros", "name_de_DE": "Mal von Khardros", "name_zh_CN": "卡德罗斯的印记", "name_es_ES": "Marca de Khardros", "name_ru_RU": "Знак Кардроса", "name_it_IT": "Contrassegno di Khardros", "name_pt_PT": "Marca de Khardros", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56136, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Egg Shell", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 119, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32286, "buy_price": 161434, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8200, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Egg Shell", "name_ko_KR": "썩은 알껍질", "name_fr_FR": "Coquille d'œuf corrompu", "name_de_DE": "Verderbte Eierschale", "name_zh_CN": "被腐蚀的蛋壳", "name_es_ES": "Cáscara de huevo corrupto", "name_ru_RU": "Оскверненная яичная скорлупа", "name_it_IT": "Guscio d'Uovo Corrotto", "name_pt_PT": "Casca de Ovo Corrompida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56138, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gale of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 120, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 422, "buy_price": 2113, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Gale of Shadows", "name_ko_KR": "암흑 돌풍", "name_fr_FR": "Bourrasque d'ombres", "name_de_DE": "Schattensturm", "name_zh_CN": "暗影飓风", "name_es_ES": "Vendaval de sombras", "name_ru_RU": "Буря теней", "name_it_IT": "Zefiro delle Ombre", "name_pt_PT": "Vendaval de Sombras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56280, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Porcelain Crab", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 101, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31214, "buy_price": 156073, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Porcelain Crab", "name_ko_KR": "도자기 게", "name_fr_FR": "Crabe en porcelaine", "name_de_DE": "Porzellankrebs", "name_zh_CN": "瓷蟹", "name_es_ES": "Cangrejo de porcelana", "name_ru_RU": "Фарфоровый краб", "name_it_IT": "Granchio di Porcellana", "name_pt_PT": "Caranguejo de Porcelana", "on_use": false, "id_encounter": 103, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 56285, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of the Ocean", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 100, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31805, "buy_price": 159027, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9908000230789185, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Might of the Ocean", "name_ko_KR": "대양의 힘", "name_fr_FR": "Puissance de l'océan", "name_de_DE": "Macht des Ozeans", "name_zh_CN": "海洋之力", "name_es_ES": "Poderío del océano", "name_ru_RU": "Мощь океана", "name_it_IT": "Forza dell'Oceano", "name_pt_PT": "Poder do Oceano", "on_use": true, "id_encounter": 104, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 56290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sea Star", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 102, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33246, "buy_price": 166233, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0356999635696411, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Sea Star", "name_ko_KR": "불가사리", "name_fr_FR": "Etoile de mer", "name_de_DE": "Seestern", "name_zh_CN": "碧海之星", "name_es_ES": "Estrella de mar", "name_ru_RU": "Морская звезда", "name_it_IT": "Stella Marina", "name_pt_PT": "Estrela do Mar", "on_use": true, "id_encounter": 104, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 56295, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grace of the Herald", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 103, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30620, "buy_price": 153104, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9538999795913696, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Grace of the Herald", "name_ko_KR": "사자의 은총", "name_fr_FR": "Grâce du héraut", "name_de_DE": "Gunst des Herolds", "name_zh_CN": "先驱之握", "name_es_ES": "Gracia del Heraldo", "name_ru_RU": "Милость глашатая", "name_it_IT": "Grazia dell'Araldo", "name_pt_PT": "Graça do Arauto", "on_use": false, "id_encounter": 106, "id_journal_instance": 66, "id_map": 645, "instance_type": 1}, {"id": 56320, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Witching Hourglass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 104, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32059, "buy_price": 160295, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987000226974487, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Witching Hourglass", "name_ko_KR": "마녀의 모래시계", "name_fr_FR": "Sablier ensorcelant", "name_de_DE": "Geisterstundenglas", "name_zh_CN": "巫术沙漏", "name_es_ES": "Reloj de arena de brujería", "name_ru_RU": "Ведьминские песочные часы", "name_it_IT": "Clessidra delle Streghe", "name_pt_PT": "Ampulheta da Bruxaria", "on_use": false, "id_encounter": 109, "id_journal_instance": 66, "id_map": 645, "instance_type": 1}, {"id": 56328, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Key to the Endless Chamber", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 105, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33002, "buy_price": 165013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0281000137329102, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Key to the Endless Chamber", "name_ko_KR": "무한한 방의 열쇠", "name_fr_FR": "Clé de la chambre sans fin", "name_de_DE": "Schlüssel zur unendlichen Kammer", "name_zh_CN": "无尽密室之匙", "name_es_ES": "Llave a la Cámara sin Fin", "name_ru_RU": "Ключ от Бесконечного Чертога", "name_it_IT": "Chiave della Sala Sconfinata", "name_pt_PT": "Chave da Câmara Infinda", "on_use": false, "id_encounter": 110, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 56339, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tendrils of Burrowing Dark", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 109, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 415, "buy_price": 2075, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9948999881744385, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tendrils of Burrowing Dark", "name_ko_KR": "파고드는 어둠의 덩굴", "name_fr_FR": "Vrilles de noirceur fouisseuse", "name_de_DE": "Ranken des vergrabenden Dunkels", "name_zh_CN": "黑暗潜藏卷须", "name_es_ES": "Zarcillos de oscuridad penetrante", "name_ru_RU": "Витки могильной тьмы", "name_it_IT": "Tentacoli dell'Oscurità Nascosta", "name_pt_PT": "Gavinhas da Escuridão Penetrante", "on_use": false, "id_encounter": 112, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 56345, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magnetite Mirror", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 107, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32643, "buy_price": 163216, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0168999433517456, "flags_1": 524288, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Magnetite Mirror", "name_ko_KR": "자철석 거울", "name_fr_FR": "Miroir en magnétite", "name_de_DE": "Magnetitspiegel", "name_zh_CN": "磁力之镜", "name_es_ES": "Espejo de calamita", "name_ru_RU": "Магнетитовое зерцало", "name_it_IT": "Specchio di Magnetite", "name_pt_PT": "Espelho de Magnetita", "on_use": true, "id_encounter": 113, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 56347, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leaden Despair", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 106, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32880, "buy_price": 164403, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Leaden Despair", "name_ko_KR": "납빛 절망", "name_fr_FR": "Désespoir plombé", "name_de_DE": "Bleierne Verzweiflung", "name_zh_CN": "沉重绝望", "name_es_ES": "Desesperación plomiza", "name_ru_RU": "Мрак отчаяния", "name_it_IT": "Disperazione Cupa", "name_pt_PT": "Desespero Plúmbeo", "on_use": false, "id_encounter": 113, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 56351, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tear of Blood", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 108, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30986, "buy_price": 154934, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tear of Blood", "name_ko_KR": "피눈물", "name_fr_FR": "Larme de sang", "name_de_DE": "Blutträne", "name_zh_CN": "血红之泪", "name_es_ES": "Lágrima de sangre", "name_ru_RU": "Кровавая слеза", "name_it_IT": "Lacrima di Sangue", "name_pt_PT": "Lágrima de Sangue", "on_use": false, "id_encounter": 113, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 56370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Thunder", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 110, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30864, "buy_price": 154324, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9614999890327454, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Thunder", "name_ko_KR": "천둥의 심장", "name_fr_FR": "Cœur de tonnerre", "name_de_DE": "Herz des Sturms", "name_zh_CN": "雷霆之心", "name_es_ES": "Corazón de trueno", "name_ru_RU": "Сердце грома", "name_it_IT": "Cuore di Tuono", "name_pt_PT": "Coração do Trovão", "on_use": true, "id_encounter": 116, "id_journal_instance": 68, "id_map": 657, "instance_type": 1}, {"id": 56377, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rainsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31693, "buy_price": 158465, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Rainsong", "name_ko_KR": "비의 노래", "name_fr_FR": "Chantepluie", "name_de_DE": "Regengesang", "name_zh_CN": "雨歌", "name_es_ES": "Cantolluvia", "name_ru_RU": "Песнь дождя", "name_it_IT": "Canto della Pioggia", "name_pt_PT": "Canção da Chuva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56393, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Solace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 112, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31214, "buy_price": 156073, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Solace", "name_ko_KR": "위안의 심장", "name_fr_FR": "Cœur de réconfort", "name_de_DE": "Herz des Trostes", "name_zh_CN": "抚慰之心", "name_es_ES": "Corazón de consuelo", "name_ru_RU": "Сердце Утешения", "name_it_IT": "Cuore di Conforto", "name_pt_PT": "Coração do Consolo", "on_use": false, "id_encounter": 119, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 56394, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tia's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 114, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31333, "buy_price": 156667, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9761000275611877, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tia's Grace", "name_ko_KR": "티아의 은총", "name_fr_FR": "Grâce de Tia", "name_de_DE": "Tias Gunst", "name_zh_CN": "提亚的优雅", "name_es_ES": "Gracia de Tia", "name_ru_RU": "Благоволение Тиа", "name_it_IT": "Grazia di Siamat", "name_pt_PT": "Graça de Tia", "on_use": false, "id_encounter": 122, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 56400, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sorrowsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 113, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 427, "buy_price": 2137, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0246000289916992, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Sorrowsong", "name_ko_KR": "슬픔의 노래", "name_fr_FR": "Tristechant", "name_de_DE": "Klagelied", "name_zh_CN": "悲歌", "name_es_ES": "Canción de penas", "name_ru_RU": "Песнь печали", "name_it_IT": "Canto della Tristezza", "name_pt_PT": "Canção do Pesar", "on_use": false, "id_encounter": 122, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 56406, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impetuous Query", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33599, "buy_price": 167999, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0467000007629395, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Impetuous Query", "name_ko_KR": "성급한 의혹", "name_fr_FR": "Demande impétueuse", "name_de_DE": "Ungestümes Ersuchen", "name_zh_CN": "鲁莽之询", "name_es_ES": "Petición impetuosa", "name_ru_RU": "Допрос с пристрастием", "name_it_IT": "Richiesta Impetuosa", "name_pt_PT": "Dúvida Impetuosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56407, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anhuur's Hymnal", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 115, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 396, "buy_price": 1982, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502999782562256, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Anhuur's Hymnal", "name_ko_KR": "안후르의 성가집", "name_fr_FR": "Hymnaire d'Anhuur", "name_de_DE": "Anhuurs Gesangbuch", "name_zh_CN": "安努尔之书", "name_es_ES": "Cantoral de Anhuur", "name_ru_RU": "Песенник Ануура", "name_it_IT": "Innario di Anhuur", "name_pt_PT": "Hinário de Anhuur", "on_use": false, "id_encounter": 124, "id_journal_instance": 70, "id_map": 644, "instance_type": 1}, {"id": 56414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood of Isiset", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 116, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31330, "buy_price": 156651, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9760000109672546, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Blood of Isiset", "name_ko_KR": "이시세트의 핏방울", "name_fr_FR": "Sang d'Isiset", "name_de_DE": "Blut von Isiset", "name_zh_CN": "伊希斯特的精华", "name_es_ES": "Sangre de Isiset", "name_ru_RU": "Кровь Изисет", "name_it_IT": "Sangue di Isiset", "name_pt_PT": "Sangue de Isiset", "on_use": false, "id_encounter": 127, "id_journal_instance": 70, "id_map": 644, "instance_type": 1}, {"id": 56427, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Left Eye of Rajh", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 117, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30498, "buy_price": 152494, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9501000046730042, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Left Eye of Rajh", "name_ko_KR": "라지의 왼쪽 눈", "name_fr_FR": "Oeil gauche de Rajh", "name_de_DE": "Linkes Auge von Rajh", "name_zh_CN": "拉夏的左眼", "name_es_ES": "Ojo izquierdo de Rajh", "name_ru_RU": "Левый глаз Раджа", "name_it_IT": "Occhio Sinistro di Rajh", "name_pt_PT": "Olho Esquerdo de Rajh", "on_use": false, "id_encounter": 130, "id_journal_instance": 70, "id_map": 644, "instance_type": 1}, {"id": 56431, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Right Eye of Rajh", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 118, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30970, "buy_price": 154854, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9648000001907349, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Right Eye of Rajh", "name_ko_KR": "라지의 오른쪽 눈", "name_fr_FR": "Oeil droit de Rajh", "name_de_DE": "Rechtes Auge von Rajh", "name_zh_CN": "拉夏的右眼", "name_es_ES": "Ojo derecho de Rajh", "name_ru_RU": "Правый глаз Раджа", "name_it_IT": "Occhio Destro di Rajh", "name_pt_PT": "Olho Direito de Rajh", "on_use": false, "id_encounter": 130, "id_journal_instance": 70, "id_map": 644, "instance_type": 1}, {"id": 56440, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skardyn's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 122, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32884, "buy_price": 164420, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024399995803833, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Skardyn's Grace", "name_ko_KR": "스카르딘의 은총", "name_fr_FR": "Grâce de Skardyn", "name_de_DE": "Gunst der Skardyn", "name_zh_CN": "灰鳞的优雅", "name_es_ES": "Gracia de skardyn", "name_ru_RU": "Милость Скардина", "name_it_IT": "Grazia di Skardyn", "name_pt_PT": "Graça dos Skardyn", "on_use": true, "id_encounter": 131, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 56449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Throngus's Finger", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 123, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31580, "buy_price": 157903, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Throngus's Finger", "name_ko_KR": "트롱구스의 손가락", "name_fr_FR": "Doigt de Throngus", "name_de_DE": "Finger von Throngus", "name_zh_CN": "索朗格斯的指节", "name_es_ES": "Dedo de Throngus", "name_ru_RU": "Палец Тронга", "name_it_IT": "Dito di Throngus", "name_pt_PT": "Dedo de Throngus", "on_use": false, "id_encounter": 132, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 56458, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Khardros", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 121, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32643, "buy_price": 163216, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0168999433517456, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Khardros", "name_ko_KR": "카드로스의 징표", "name_fr_FR": "Marque de Khardros", "name_de_DE": "Mal von Khardros", "name_zh_CN": "卡德罗斯的印记", "name_es_ES": "Marca de Khardros", "name_ru_RU": "Знак Кардроса", "name_it_IT": "Contrassegno di Khardros", "name_pt_PT": "Marca de Khardros", "on_use": true, "id_encounter": 134, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 56462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gale of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 120, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430, "buy_price": 2151, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031599998474121, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Gale of Shadows", "name_ko_KR": "암흑 돌풍", "name_fr_FR": "Bourrasque d'ombres", "name_de_DE": "Schattensturm", "name_zh_CN": "暗影飓风", "name_es_ES": "Vendaval de sombras", "name_ru_RU": "Буря теней", "name_it_IT": "Zefiro delle Ombre", "name_pt_PT": "Vendaval de Sombras", "on_use": false, "id_encounter": 134, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 56463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Egg Shell", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 119, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33233, "buy_price": 166169, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0353000164031982, "flags_1": 528384, "flags_2": 8200, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Egg Shell", "name_ko_KR": "썩은 알껍질", "name_fr_FR": "Coquille d'œuf corrompu", "name_de_DE": "Verderbte Eierschale", "name_zh_CN": "被腐蚀的蛋壳", "name_es_ES": "Cáscara de huevo corrupto", "name_ru_RU": "Оскверненная яичная скорлупа", "name_it_IT": "Guscio d'Uovo Corrotto", "name_pt_PT": "Casca de Ovo Corrompida", "on_use": true, "id_encounter": 134, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 56847, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chelsea's Nightmare", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3564, "buy_price": 17821, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797999858856201, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Chelsea's Nightmare", "name_ko_KR": "첼시의 악몽", "name_fr_FR": "Cauchemar de Chelsea", "name_de_DE": "Chelseas Alptraum", "name_zh_CN": "切尔西的梦魇", "name_es_ES": "Pesadilla de Chelsea", "name_ru_RU": "Кошмар Челси", "name_it_IT": "Incubo di Chelsea", "name_pt_PT": "Pesadelo de Tchella", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gus' First Aid Kit", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3590, "buy_price": 17954, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9871000051498413, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gus' First Aid Kit", "name_ko_KR": "구스의 구급함", "name_fr_FR": "Trousse de premiers soins de Gus", "name_de_DE": "Gus' Erste-Hilfe-Kasten", "name_zh_CN": "格斯的急救工具", "name_es_ES": "Equipo de primeros auxilios de Gus", "name_ru_RU": "Санитарная сумка Гаса", "name_it_IT": "Kit di Primo Soccorso di Gus", "name_pt_PT": "Kit de Primeiros Socorros do Gu", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 57316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Egg-Lift Talisman", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11737, "buy_price": 58689, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9951000213623047, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Egg-Lift Talisman", "name_ko_KR": "알들기 부적", "name_fr_FR": "Talisman lève-œuf", "name_de_DE": "Eierdiebstahlstalisman", "name_zh_CN": "鸟蛋防御者护符", "name_es_ES": "Talismán elevahuevos", "name_ru_RU": "Талисман для переноски яиц", "name_it_IT": "Talismano dell'Uovo Protetto", "name_pt_PT": "Talismã para Erguer o Ovo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 57325, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bileberry Smelling Salts", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12128, "buy_price": 60641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0282000303268433, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Bileberry Smelling Salts", "name_ko_KR": "담즙딸기 각성약", "name_fr_FR": "Sels parfumés à la billiette", "name_de_DE": "Gallbeerenriechsalz", "name_zh_CN": "脓血莓嗅盐", "name_es_ES": "Sales con olor a baya de bilis", "name_ru_RU": "Желчевичная нюхательная соль", "name_it_IT": "Sali Odorosi di Bilebacca", "name_pt_PT": "Sais Aromáticos de Fruta-bile", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 57338, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jouster", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89923, "buy_price": 359692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0023000240325928, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Jouster", "name_ko_KR": "창기사 장신구", "name_fr_FR": "Jouteur", "name_de_DE": "Tjoster", "name_zh_CN": "竞技宝珠", "name_es_ES": "Ajustador", "name_ru_RU": "Турнирный боец", "name_it_IT": "Giostriere", "name_pt_PT": "Justador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 57346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mindfletcher Talisman", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12169, "buy_price": 60847, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mindfletcher Talisman", "name_ko_KR": "마음당김 부적", "name_fr_FR": "Talisman de fléchier de l'esprit", "name_de_DE": "Talisman des Gedankenfiederers", "name_zh_CN": "畅心护符", "name_es_ES": "Dije atraviesamentes", "name_ru_RU": "Талисман стрел разума", "name_it_IT": "Talismano della Mente Svelta", "name_pt_PT": "Talismã do Seteiro da Mente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58180, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "License to Slay", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 2709000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "License to Slay", "name_ko_KR": "학살 면허", "name_fr_FR": "Permis de tuer", "name_de_DE": "Lizenz zum Meucheln", "name_zh_CN": "杀戮执照", "name_es_ES": "Licencia para asesinar", "name_ru_RU": "Лицензия на убийство", "name_it_IT": "Licenza di Uccidere", "name_pt_PT": "Licença para Dilacerar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fluid Death", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 2719100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9725000262260437, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fluid Death", "name_ko_KR": "액체 질식사", "name_fr_FR": "Mort fluide", "name_de_DE": "Fließender Tod", "name_zh_CN": "穿流之亡", "name_es_ES": "Muerte fluida", "name_ru_RU": "Жидкая смерть", "name_it_IT": "Morte Fluida", "name_pt_PT": "Morte Fluida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58182, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bedrock Talisman", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 2729400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9761999845504761, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bedrock Talisman", "name_ko_KR": "기반암 부적", "name_fr_FR": "Talisman du soubassement", "name_de_DE": "Felsgrundtalisman", "name_zh_CN": "基岩护符", "name_es_ES": "Dije del cimiento", "name_ru_RU": "Талисман скального основания", "name_it_IT": "Talismano Roccioso", "name_pt_PT": "Talismã do Leito de Pedras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58183, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Casket", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 2739800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9799000024795532, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Soul Casket", "name_ko_KR": "영혼 장식함", "name_fr_FR": "Caisson à âmes", "name_de_DE": "Seelenkästchen", "name_zh_CN": "缚魂之匣", "name_es_ES": "Féretro de almas", "name_ru_RU": "Вместилище души", "name_it_IT": "Bara delle Anime", "name_pt_PT": "Porta-alma", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58184, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Core of Ripeness", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 2824200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.01010000705719, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Core of Ripeness", "name_ko_KR": "숙성의 핵", "name_fr_FR": "Noyau de maturité", "name_de_DE": "Kern der Reife", "name_zh_CN": "完满之核", "name_es_ES": "Núcleo de sazón", "name_ru_RU": "Средоточие спелости", "name_it_IT": "Nucleo della Maturità", "name_pt_PT": "Âmago da Maturidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58483, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Lifebound Alchemist Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 1.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5259, "stat_alloc_2": 7889, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 4151, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2482, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Lifebound Alchemist Stone", "name_ko_KR": "생명결속 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste liée par la vie", "name_de_DE": "Lebensgebundener Alchemistenstein", "name_zh_CN": "生命炼金石", "name_es_ES": "Piedra de alquimista vinculavida", "name_ru_RU": "Алхимический камень жизни", "name_it_IT": "Pietra Alchemica Possente", "name_pt_PT": "Pedra da Vida do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59224, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 96, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020900011062622, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Rage", "name_ko_KR": "분노의 심장", "name_fr_FR": "Cœur de rage", "name_de_DE": "Herz des Hasses", "name_zh_CN": "狂怒之心", "name_es_ES": "Corazón de ira", "name_ru_RU": "Сердце ярости", "name_it_IT": "Cuore di Rabbia", "name_pt_PT": "Coração da Ira", "on_use": false, "id_encounter": 172, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 59326, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bell of Enraging Resonance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 95, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bell of Enraging Resonance", "name_ko_KR": "격노한 공명의 종", "name_fr_FR": "Cloche de résonance enragée", "name_de_DE": "Glocke der rasend machenden Resonanz", "name_zh_CN": "狂怒鸣响之铃", "name_es_ES": "Campana de resonancia enfurecedora", "name_ru_RU": "Колокол яростного резонанса", "name_it_IT": "Campana dei Rintocchi Rabbiosi", "name_pt_PT": "Sino da Ressonância em Fúria", "on_use": false, "id_encounter": 171, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 59332, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbiotic Worm", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 99, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Symbiotic Worm", "name_ko_KR": "공생충", "name_fr_FR": "Ver symbiotique", "name_de_DE": "Symbiotischer Wurm", "name_zh_CN": "共生之虫", "name_es_ES": "Gusano simbiótico", "name_ru_RU": "Червь-симбионт", "name_it_IT": "Verme Simbiotico", "name_pt_PT": "Verme Simbiótico", "on_use": false, "id_encounter": 170, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 59354, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jar of Ancient Remedies", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 97, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0097999572753906, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Jar of Ancient Remedies", "name_ko_KR": "고대 치료제 단지", "name_fr_FR": "Pot d'antiques remèdes", "name_de_DE": "Glas mit uralter Arznei", "name_zh_CN": "古老的愈病药瓶", "name_es_ES": "Tarro de remedios antiguos", "name_ru_RU": "Флакончик с древним целительным зельем", "name_it_IT": "Urna dei Rimedi Antichi", "name_pt_PT": "Jarra dos Antigos Remédios", "on_use": true, "id_encounter": 173, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 59441, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prestor's Talisman of Machination", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 98, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Prestor's Talisman of Machination", "name_ko_KR": "계략의 프레스톨 부적", "name_fr_FR": "Talisman de machination de Prestor", "name_de_DE": "Prestors Talisman der Intrige", "name_zh_CN": "普瑞斯托的诡计护符", "name_es_ES": "Dije de maquinación de Prestor", "name_ru_RU": "Талисман интриг Престора", "name_it_IT": "Talismano della Macchinazione di Prestor", "name_pt_PT": "Talismã da Maquinação do Prestor", "on_use": false, "id_encounter": 174, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 59461, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fury of Angerforge", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fury of Angerforge", "name_ko_KR": "앵거포지의 격노", "name_fr_FR": "Fureur de Forgehargne", "name_de_DE": "Wut von Zornesschmied", "name_zh_CN": "怒炉之怒", "name_es_ES": "Furia de Forjainquina", "name_ru_RU": "Ярость Кузни Гнева", "name_it_IT": "Furia di Forgiarabbia", "name_pt_PT": "Fúria de Forjaversa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59473, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Cyclone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 90, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581999778747559, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Cyclone", "name_ko_KR": "회오리의 정수", "name_fr_FR": "Essence du cyclone", "name_de_DE": "Essenz des Zyklons", "name_zh_CN": "气旋精华", "name_es_ES": "Esencia del ciclón", "name_ru_RU": "Эссенция циклона", "name_it_IT": "Essenza del Ciclone", "name_pt_PT": "Essência do Ciclone", "on_use": false, "id_encounter": 156, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59500, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fall of Mortality", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 91, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fall of Mortality", "name_ko_KR": "필멸의 몰락", "name_fr_FR": "Baisse de la mortalité", "name_de_DE": "Untergang der Sterblichen", "name_zh_CN": "生命之殒", "name_es_ES": "Caída de mortalidad", "name_ru_RU": "Поступь смерти", "name_it_IT": "Caduta della Mortalità", "name_pt_PT": "Queda da Mortalidade", "on_use": false, "id_encounter": 167, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59506, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crushing Weight", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 89, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Crushing Weight", "name_ko_KR": "압도하는 무게", "name_fr_FR": "Poids écrasant", "name_de_DE": "Erdrückendes Gewicht", "name_zh_CN": "压顶之力", "name_es_ES": "Peso aplastante", "name_ru_RU": "Сокрушительный груз", "name_it_IT": "Peso Schiacciante", "name_pt_PT": "Peso Esmagador", "on_use": false, "id_encounter": 158, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Ignacious", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 92, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Ignacious", "name_ko_KR": "이그나시우스의 심장", "name_fr_FR": "Cœur d'Ignacious", "name_de_DE": "Herz von Ignazius", "name_zh_CN": "伊格纳休斯之心", "name_es_ES": "Corazón de Ignacious", "name_ru_RU": "Сердце Огниса", "name_it_IT": "Cuore di Ignacious", "name_pt_PT": "Coração de Ignícius", "on_use": true, "id_encounter": 158, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59515, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Stolen Memories", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 94, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Stolen Memories", "name_ko_KR": "도난당한 기억의 약병", "name_fr_FR": "Fiole de souvenirs volés", "name_de_DE": "Fläschchen gestohlener Erinnerungen", "name_zh_CN": "存封记忆之瓶", "name_es_ES": "Vial de recuerdos robados", "name_ru_RU": "Фиал украденных воспоминаний", "name_it_IT": "Fialetta dei Ricordi Rubati", "name_pt_PT": "Ampola das Memórias Roubadas", "on_use": true, "id_encounter": 157, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59519, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Theralion's Mirror", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 93, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006500005722046, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Theralion's Mirror", "name_ko_KR": "테랄리온의 거울", "name_fr_FR": "Miroir de Theralion", "name_de_DE": "Theralions Spiegel", "name_zh_CN": "瑟纳利昂之镜", "name_es_ES": "Espejo de Theralion", "name_ru_RU": "Зеркало Тералиона", "name_it_IT": "Specchio di Theralion", "name_pt_PT": "Espelho de Theralion", "on_use": false, "id_encounter": 157, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59520, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unheeded Warning", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Unheeded Warning", "name_ko_KR": "무시된 경고", "name_fr_FR": "Vain avertissement", "name_de_DE": "Unbeachtete Warnung", "name_zh_CN": "无闻之兆", "name_es_ES": "Advertencia desoída", "name_ru_RU": "Незамеченное предостережение", "name_it_IT": "Minaccia Elusa", "name_pt_PT": "Aviso Ignorado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59617, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mentalist's Protective Bottle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12090, "buy_price": 60452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024999976158142, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mentalist's Protective Bottle", "name_ko_KR": "정신전문가의 보호용 병", "name_fr_FR": "Bouteille protectrice du mentaliste", "name_de_DE": "Schützende Flasche des Mentalisten", "name_zh_CN": "读心者的防身瓶", "name_es_ES": "Botella protectora de mentalista", "name_ru_RU": "Защитная бутылка менталиста", "name_it_IT": "Bottiglia Protettiva del Mentalista", "name_pt_PT": "Garrafa Protetora do Mentalista", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59630, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Severed Visionary Tentacle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11786, "buy_price": 58930, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9991999864578247, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Severed Visionary Tentacle", "name_ko_KR": "뜯어진 환영의 촉수", "name_fr_FR": "Tentacule visionnaire coupé", "name_de_DE": "Abgeschnittenes Visionententakel", "name_zh_CN": "幻像阻隔之触", "name_es_ES": "Tentáculo visionario cortado", "name_ru_RU": "Отрубленное зрячее щупальце", "name_it_IT": "Tentacolo Reciso della Visione", "name_pt_PT": "Tentáculo Decepado do Visionário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59633, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Severed Visionary Tentacle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11915, "buy_price": 59579, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Severed Visionary Tentacle", "name_ko_KR": "뜯어진 환영의 촉수", "name_fr_FR": "Tentacule visionnaire coupé", "name_de_DE": "Abgeschnittenes Visionententakel", "name_zh_CN": "幻像阻隔之触", "name_es_ES": "Tentáculo visionario cortado", "name_ru_RU": "Отрубленное зрячее щупальце", "name_it_IT": "Tentacolo Reciso della Visione", "name_pt_PT": "Tentáculo Decepado do Visionário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pelagic Prism", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12260, "buy_price": 61301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0393999814987183, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Pelagic Prism", "name_ko_KR": "원양 프리즘", "name_fr_FR": "Prisme pélagique", "name_de_DE": "Pelagisches Prisma", "name_zh_CN": "深海棱镜", "name_es_ES": "Prisma de piélago", "name_ru_RU": "Морская призма", "name_it_IT": "Prisma Pelagico", "name_pt_PT": "Prisma Oceânico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59664, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pelagic Prism", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280, "buy_price": 1403, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Pelagic Prism", "name_ko_KR": "원양 프리즘", "name_fr_FR": "Prisme pélagique", "name_de_DE": "Pelagisches Prisma", "name_zh_CN": "深海棱镜", "name_es_ES": "Prisma de piélago", "name_ru_RU": "Морская призма", "name_it_IT": "Prisma Pelagico", "name_pt_PT": "Prisma Oceânico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kvaldir Battle Standard", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13877, "buy_price": 69386, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.980400025844574, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kvaldir Battle Standard", "name_ko_KR": "크발디르 전투 깃발", "name_fr_FR": "Etendard de bataille kvaldir", "name_de_DE": "Schlachtstandarte der Kvaldir", "name_zh_CN": "克瓦迪尔战旗", "name_es_ES": "Confalón de batalla Kvaldir", "name_ru_RU": "Боевой штандарт Квалдира", "name_it_IT": "Stendardo da Battaglia dei Kvaldir", "name_pt_PT": "Estandarte de Batalha dos Kvaldir", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kvaldir Battle Standard", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14085, "buy_price": 70426, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9951000213623047, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kvaldir Battle Standard", "name_ko_KR": "크발디르 전투 깃발", "name_fr_FR": "Etendard de bataille kvaldir", "name_de_DE": "Schlachtstandarte der Kvaldir", "name_zh_CN": "克瓦迪尔战旗", "name_es_ES": "Confalón de batalla Kvaldir", "name_ru_RU": "Боевой штандарт Квалдира", "name_it_IT": "Stendardo da Battaglia dei Kvaldir", "name_pt_PT": "Estandarte de Batalha dos Kvaldir", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59707, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wavespeaker's Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11649, "buy_price": 58246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9876000285148621, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Wavespeaker's Focus", "name_ko_KR": "파도예언자의 집중점", "name_fr_FR": "Focalisation du parle-vague", "name_de_DE": "Fokus der Wellensprecherin", "name_zh_CN": "波涛语者的专注", "name_es_ES": "Foco de Hablaolas", "name_ru_RU": "Средоточие говорящей с волнами", "name_it_IT": "Focalizzatore della Parlaonde", "name_pt_PT": "Objetivo de Falaondas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wavespeaker's Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11779, "buy_price": 58895, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9986000061035156, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Wavespeaker's Focus", "name_ko_KR": "파도예언자의 집중점", "name_fr_FR": "Focalisation du parle-vague", "name_de_DE": "Fokus der Wellensprecherin", "name_zh_CN": "波涛语者的专注", "name_es_ES": "Foco de Hablaolas", "name_ru_RU": "Средоточие говорящей с волнами", "name_it_IT": "Focalizzatore della Parlaonde", "name_pt_PT": "Objetivo de Falaondas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59792, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Spider Crab", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11304, "buy_price": 56524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9584000110626221, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Petrified Spider Crab", "name_ko_KR": "석화 거미게", "name_fr_FR": "Crabe araignée pétrifié", "name_de_DE": "Versteinerte Spinnenkrabbe", "name_zh_CN": "石化蜘蛛蟹", "name_es_ES": "Cangrejo araña petrificado", "name_ru_RU": "Окаменевший морской паук", "name_it_IT": "Granchio Pietrificato", "name_pt_PT": "Siri-aranha Petrificado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60233, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of Woe", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Shard of Woe", "name_ko_KR": "고뇌의 조각", "name_fr_FR": "Éclat de malheur", "name_de_DE": "Splitter der Not", "name_zh_CN": "哀伤碎片", "name_es_ES": "Fragmento de tragedia", "name_ru_RU": "Осколок горя", "name_it_IT": "Scheggia del Tormento", "name_pt_PT": "Estilhaço de Infortúnio", "on_use": true, "id_encounter": 168, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 60403, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elementium Dragonling", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 40000, "buy_price": 160000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2503, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Elementium Dragonling", "name_ko_KR": "엘레멘티움 기계용", "name_fr_FR": "Petit dragon en élémentium", "name_de_DE": "Elementiumdrachling", "name_zh_CN": "源质幼龙", "name_es_ES": "Dragonizo de elementium", "name_ru_RU": "Элементиевый дракончик", "name_it_IT": "Minidrago d'Elementio", "name_pt_PT": "Dragonete de Elemêntio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60794, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768000245094299, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60801, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sañoso", "name_ru_RU": "Медальон жестокости яростного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 60795, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Accuracy", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Accuracy", "name_ko_KR": "흉포한 검투사의 적중 메달", "name_fr_FR": "Médaillon de précision du gladiateur vicieux", "name_de_DE": "Präzisionsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的精确勋章", "name_es_ES": "Medallón de precisión de Gladiador sañoso", "name_ru_RU": "Медальон меткости яростного гладиатора", "name_it_IT": "Medaglione dell'Accuratezza del Gladiatore Malvagio", "name_pt_PT": "Vicious Gladiator's Medallion of Accuracy", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60796, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Alacrity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Alacrity", "name_ko_KR": "흉포한 검투사의 날렵함 메달", "name_fr_FR": "Médaillon d'empressement du gladiateur vicieux", "name_de_DE": "Schnelligkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的活跃勋章", "name_es_ES": "Medallón de prontitud de Gladiador sañoso", "name_ru_RU": "Медальон рвения яростного гладиатора", "name_it_IT": "Medaglione dell'Alacrità del Gladiatore Malvagio", "name_pt_PT": "Vicious Gladiator's Medallion of Alacrity", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60797, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Prowess", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Prowess", "name_ko_KR": "흉포한 검투사의 용감 메달", "name_fr_FR": "Médaillon de prouesse du gladiateur vicieux", "name_de_DE": "Schlagkraftmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的英勇勋章", "name_es_ES": "Medallón de destreza de Gladiador sañoso", "name_ru_RU": "Медальон доблести яростного гладиатора", "name_it_IT": "Medaglione dell'Abilità del Gladiatore Malvagio", "name_pt_PT": "Vicious Gladiator's Medallion of Prowess", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60798, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Command", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Command", "name_ko_KR": "흉포한 검투사의 지휘 메달", "name_fr_FR": "Médaillon de commandement du gladiateur vicieux", "name_de_DE": "Kommandomedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的统御勋章", "name_es_ES": "Medallón de mando de Gladiador sañoso", "name_ru_RU": "Медальон власти яростного гладиатора", "name_it_IT": "Medaglione del Comando del Gladiatore Malvagio", "name_pt_PT": "Vicious Gladiator's Medallion of Command", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60799, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.995199978351593, "flags_1": 528384, "flags_2": 24586, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60806, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Meditation", "name_ko_KR": "흉포한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur vicieux", "name_de_DE": "Meditationsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sañoso", "name_ru_RU": "Медальон медитации яростного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 60800, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60807, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sañoso", "name_ru_RU": "Медальон упорства яростного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 60801, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60794, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sañoso", "name_ru_RU": "Медальон жестокости яростного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 60806, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0473999977111816, "flags_1": 528384, "flags_2": 24585, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60799, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Meditation", "name_ko_KR": "흉포한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur vicieux", "name_de_DE": "Meditationsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sañoso", "name_ru_RU": "Медальон медитации яростного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 60807, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509999752044678, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60800, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sañoso", "name_ru_RU": "Медальон упорства яростного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9988999962806702, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador sañoso", "name_ru_RU": "Эмблема жестокости яростного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Emblema da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61030, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Proficiency", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0400999784469604, "flags_1": 4096, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Proficiency", "name_ko_KR": "흉포한 검투사의 숙달 문장", "name_fr_FR": "Emblème d'expertise du gladiateur vicieux", "name_de_DE": "Kompetenzemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的精准纹章", "name_es_ES": "Emblema de competencia de Gladiador sañoso", "name_ru_RU": "Эмблема мастерства яростного гладиатора", "name_it_IT": "Emblema dell'Efficienza del Gladiatore Malvagio", "name_pt_PT": "Vicious Gladiator's Emblem of Proficiency", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61031, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0437999963760376, "flags_1": 528384, "flags_2": 24584, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Meditation", "name_ko_KR": "흉포한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vicieux", "name_de_DE": "Meditationsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador sañoso", "name_ru_RU": "Эмблема медитации яростного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Emblema da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61032, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0473999977111816, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador sañoso", "name_ru_RU": "Эмблема упорства яростного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Emblema da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61033, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9509999752044678, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Conquest", "name_ko_KR": "흉포한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vicieux", "name_de_DE": "Eroberungsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador sañoso", "name_ru_RU": "Жетон завоевания яростного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Conquista do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61034, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9546999931335449, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Victory", "name_ko_KR": "흉포한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vicieux", "name_de_DE": "Siegesabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador sañoso", "name_ru_RU": "Жетон победы яростного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Vitória do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61035, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.958299994468689, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Dominance", "name_ko_KR": "흉포한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vicieux", "name_de_DE": "Vorherrschaftsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador sañoso", "name_ru_RU": "Жетон господства яростного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Dominância do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61045, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0216000080108643, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Dominance", "name_ko_KR": "흉포한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur vicieux", "name_de_DE": "Vorherrschaftsinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador sañoso", "name_ru_RU": "Знак господства яростного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Dominância do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61046, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0253000259399414, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Victory", "name_ko_KR": "흉포한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur vicieux", "name_de_DE": "Siegesinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador sañoso", "name_ru_RU": "Знак победы яростного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Vitória do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61047, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0289000272750854, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Conquest", "name_ko_KR": "흉포한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur vicieux", "name_de_DE": "Eroberungsinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador sañoso", "name_ru_RU": "Знак завоевания яростного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Conquista do Gladiador Cruel", "on_use": false, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61411, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stonemother's Kiss", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13714, "buy_price": 68571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0471999645233154, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stonemother's Kiss", "name_ko_KR": "바위 어머니의 입맞춤", "name_fr_FR": "Baiser de la Pierre-Mère", "name_de_DE": "Kuss der Steinmutter", "name_zh_CN": "石母之吻", "name_es_ES": "Beso de la Madre Pétrea", "name_ru_RU": "Поцелуй Матери-Скалы", "name_it_IT": "Bacio della Madre Roccia", "name_pt_PT": "Beijo da Petramáter", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61429, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Earthen Lord", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13616, "buy_price": 68080, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0397000312805176, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Insignia of the Earthen Lord", "name_ko_KR": "대지군주의 휘장", "name_fr_FR": "Insigne du seigneur terrestre", "name_de_DE": "Insigne des Lords der Irdenen", "name_zh_CN": "土灵领主徽记", "name_es_ES": "Insignia del lord de la tierra", "name_ru_RU": "Знак отличия Властелина Земли", "name_it_IT": "Fregio del Signore della Terra", "name_pt_PT": "Insígnia do Lorde Terrano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61433, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of Diplomacy", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12844, "buy_price": 64223, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Insignia of Diplomacy", "name_ko_KR": "외교의 휘장", "name_fr_FR": "Insigne de diplomatie", "name_de_DE": "Insigne der Diplomatie", "name_zh_CN": "外交徽记", "name_es_ES": "Insignia de diplomacia", "name_ru_RU": "Знак дипломатии", "name_it_IT": "Fregio della Diplomazia", "name_pt_PT": "Insígnia da Diplomacia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61448, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oremantle's Favor", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12602, "buy_price": 63012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9623000025749207, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Oremantle's Favor", "name_ko_KR": "오어맨틀의 은총", "name_fr_FR": "Faveur de Mantemine", "name_de_DE": "Erzmantels Gunst", "name_zh_CN": "岩幔的恩惠", "name_es_ES": "Favor de Mantomena", "name_ru_RU": "Благоволение Железной Мантии", "name_it_IT": "Dono di Mantodoro", "name_pt_PT": "Benefício do Rochamanto", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gear Detector", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11957, "buy_price": 59786, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013700008392334, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gear Detector", "name_ko_KR": "장비 감지기", "name_fr_FR": "Détecteur d'équipement", "name_de_DE": "Zahnradaufspürer", "name_zh_CN": "装备探测器", "name_es_ES": "Detector de engranajes", "name_ru_RU": "Детектор механизмов", "name_it_IT": "Rivelatore d'Equipaggiamento", "name_pt_PT": "Equipamento Detector", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62047, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Volcano", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0400999784469604, "flags_1": 528448, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Volcano", "name_ko_KR": "다크문 카드: 화산", "name_fr_FR": "Carte de Sombrelune : Volcan", "name_de_DE": "Dunkelmond-Karte: Vulkan", "name_zh_CN": "暗月卡片:火山", "name_es_ES": "Naipe de la Luna Negra: Volcán", "name_ru_RU": "Карта Новолуния: Вулкан", "name_it_IT": "Carta di Lunacupa: Vulcano", "name_pt_PT": "Carta de Negraluna: Vulcão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62048, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Earthquake", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0436999797821045, "flags_1": 528448, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Earthquake", "name_ko_KR": "다크문 카드: 지진", "name_fr_FR": "Carte de Sombrelune : Séisme", "name_de_DE": "Dunkelmond-Karte: Erdbeben", "name_zh_CN": "暗月卡片:地震", "name_es_ES": "Naipe de la Luna Negra: Terremoto", "name_ru_RU": "Карта Новолуния: Землетрясение", "name_it_IT": "Carta di Lunacupa: Terremoto", "name_pt_PT": "Carta de Negraluna: Terremoto", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62049, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Hurricane", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24367, "buy_price": 121835, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0473999977111816, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Hurricane", "name_ko_KR": "다크문 카드: 싹쓸바람", "name_fr_FR": "Carte de Sombrelune : Ouragan", "name_de_DE": "Dunkelmond-Karte: Hurrikan", "name_zh_CN": "暗月卡片:飓风", "name_es_ES": "Naipe de la Luna Negra: Huracán", "name_ru_RU": "Карта Новолуния: Ураган", "name_it_IT": "Carta di Lunacupa: Uragano", "name_pt_PT": "Carta de Negraluna: Furacão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62050, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Tsunami", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509999752044678, "flags_1": 528448, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Tsunami", "name_ko_KR": "다크문 카드: 지진해일", "name_fr_FR": "Carte de Sombrelune : Tsunami", "name_de_DE": "Dunkelmond-Karte: Tsunami", "name_zh_CN": "暗月卡片:海啸", "name_es_ES": "Naipe de la Luna Negra: Tsunami", "name_ru_RU": "Карта Новолуния: Цунами", "name_it_IT": "Carta di Lunacupa: Tsunami", "name_pt_PT": "Carta de Negraluna: Tsunami", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62051, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Hurricane", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 22210, "buy_price": 111052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9546999931335449, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Hurricane", "name_ko_KR": "다크문 카드: 싹쓸바람", "name_fr_FR": "Carte de Sombrelune : Ouragan", "name_de_DE": "Dunkelmond-Karte: Hurrikan", "name_zh_CN": "暗月卡片:飓风", "name_es_ES": "Naipe de la Luna Negra: Huracán", "name_ru_RU": "Карта Новолуния: Ураган", "name_it_IT": "Carta di Lunacupa: Uragano", "name_pt_PT": "Carta de Negraluna: Furacão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unsolvable Riddle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549000263214111, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62468, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Unsolvable Riddle", "name_ko_KR": "풀리지 않는 수수께끼", "name_fr_FR": "Enigme insoluble", "name_de_DE": "Unlösbares Rätsel", "name_zh_CN": "无解之谜", "name_es_ES": "Enigma sin solución", "name_ru_RU": "Нерешаемая головоломка", "name_it_IT": "Enigma Irrisolvibile", "name_pt_PT": "Charada Insolúvel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62464, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impatience of Youth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585999846458435, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62469, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Impatience of Youth", "name_ko_KR": "젊음의 조바심", "name_fr_FR": "Impatience de la jeunesse", "name_de_DE": "Ungeduld der Jugend", "name_zh_CN": "青春的躁动", "name_es_ES": "Impaciencia de la juventud", "name_ru_RU": "Юношеская горячность", "name_it_IT": "Impazienza della Gioventù", "name_pt_PT": "Impaciência da Juventude", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62465, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stump of Time", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9623000025749207, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62470, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Stump of Time", "name_ko_KR": "시간의 그루터기", "name_fr_FR": "Souche temporelle", "name_de_DE": "Strunk der Zeit", "name_zh_CN": "时光的残枝", "name_es_ES": "Tocón del tiempo", "name_ru_RU": "Осколок времени", "name_it_IT": "Ceppo del Tempo", "name_pt_PT": "Cepo do Tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62466, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Broken Images", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9659000039100647, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62471, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Broken Images", "name_ko_KR": "깨진 형상의 거울", "name_fr_FR": "Miroir d'images brisées", "name_de_DE": "Spiegel der gebrochenen Bilder", "name_zh_CN": "破碎影像之镜", "name_es_ES": "Espejo de imágenes rotas", "name_ru_RU": "Зеркало разбитых отражений", "name_it_IT": "Specchio delle Immagini Infrante", "name_pt_PT": "Espelho das Imagens Quebradas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62467, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mandala of Stirring Patterns", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696000218391418, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62472, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mandala of Stirring Patterns", "name_ko_KR": "살랑거리는 무늬의 만다라", "name_fr_FR": "Mandala de motifs inspirés", "name_de_DE": "Mandala der bewegenden Muster", "name_zh_CN": "激越曼陀罗坠石", "name_es_ES": "Mandala de patrones removidos", "name_ru_RU": "Мандала движущихся узоров", "name_it_IT": "Mandala dei Ricami Frementi", "name_pt_PT": "Mandala dos Padrões Misturados", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62468, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unsolvable Riddle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9732999801635742, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62463, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Unsolvable Riddle", "name_ko_KR": "풀리지 않는 수수께끼", "name_fr_FR": "Enigme insoluble", "name_de_DE": "Unlösbares Rätsel", "name_zh_CN": "无解之谜", "name_es_ES": "Enigma sin solución", "name_ru_RU": "Нерешаемая головоломка", "name_it_IT": "Enigma Irrisolvibile", "name_pt_PT": "Charada Insolúvel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62469, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impatience of Youth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 0, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9769999980926514, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62464, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Impatience of Youth", "name_ko_KR": "젊음의 조바심", "name_fr_FR": "Impatience de la jeunesse", "name_de_DE": "Ungeduld der Jugend", "name_zh_CN": "青春的躁动", "name_es_ES": "Impaciencia de la juventud", "name_ru_RU": "Юношеская горячность", "name_it_IT": "Impazienza della Gioventù", "name_pt_PT": "Impaciência da Juventude", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62470, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stump of Time", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9805999994277954, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62465, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Stump of Time", "name_ko_KR": "시간의 그루터기", "name_fr_FR": "Souche temporelle", "name_de_DE": "Strunk der Zeit", "name_zh_CN": "时光的残枝", "name_es_ES": "Tocón del tiempo", "name_ru_RU": "Осколок времени", "name_it_IT": "Ceppo del Tempo", "name_pt_PT": "Cepo do Tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62471, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Broken Images", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9843000173568726, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62466, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Broken Images", "name_ko_KR": "깨진 형상의 거울", "name_fr_FR": "Miroir d'images brisées", "name_de_DE": "Spiegel der gebrochenen Bilder", "name_zh_CN": "破碎影像之镜", "name_es_ES": "Espejo de imágenes rotas", "name_ru_RU": "Зеркало разбитых отражений", "name_it_IT": "Specchio delle Immagini Infrante", "name_pt_PT": "Espelho das Imagens Quebradas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62472, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mandala of Stirring Patterns", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9879999756813049, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62467, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mandala of Stirring Patterns", "name_ko_KR": "살랑거리는 무늬의 만다라", "name_fr_FR": "Mandala de motifs inspirés", "name_de_DE": "Mandala der bewegenden Muster", "name_zh_CN": "激越曼陀罗坠石", "name_es_ES": "Mandala de patrones removidos", "name_ru_RU": "Мандала движущихся узоров", "name_it_IT": "Mandala dei Ricami Frementi", "name_pt_PT": "Mandala dos Padrões Misturados", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62966, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emissary's Watch", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3332, "buy_price": 16664, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0216000080108643, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Emissary's Watch", "name_ko_KR": "사절단 시계", "name_fr_FR": "Montre d'émissaire", "name_de_DE": "Uhr des Abgesandten", "name_zh_CN": "密使的怀表", "name_es_ES": "Reloj de emisario", "name_ru_RU": "Оберег лазутчика", "name_it_IT": "Orologio dell'Emissario", "name_pt_PT": "Relógio do Emissário", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Devourer's Stomach", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3236, "buy_price": 16182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919999837875366, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Devourer's Stomach", "name_ko_KR": "포식자의 위장", "name_fr_FR": "Estomac du dévoreur", "name_de_DE": "Magen des Verschlingers", "name_zh_CN": "吞噬者的胃囊", "name_es_ES": "Estómago de devorador", "name_ru_RU": "Желудок Пожирателя", "name_it_IT": "Stomaco del Divoratore", "name_pt_PT": "Estômago do Devorador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Omarion's Gift", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3308, "buy_price": 16542, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140999555587769, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Omarion's Gift", "name_ko_KR": "오마리온의 선물", "name_fr_FR": "Cadeau d'Omarion", "name_de_DE": "Omarions Gabe", "name_zh_CN": "奥玛里恩的馈赠", "name_es_ES": "Regalo de Omarion", "name_ru_RU": "Дар Омариона", "name_it_IT": "Dono di Omarion", "name_pt_PT": "Dádiva de Omarion", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Underlord's Mandible", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3200, "buy_price": 16000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Underlord's Mandible", "name_ko_KR": "지하군주의 아래턱", "name_fr_FR": "Mandibule du seigneur-du-dessous", "name_de_DE": "Unterfürstenmandibula", "name_zh_CN": "冥界领主的颌骨", "name_es_ES": "Mandíbula de infraseñor", "name_ru_RU": "Жвало владыки подземелий", "name_it_IT": "Mandibola del Signore delle Profondità", "name_pt_PT": "Mandíbula de Sublorde", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63192, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tosselwrench's Shrinker", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4143, "buy_price": 20719, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0216000080108643, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Tosselwrench's Shrinker", "name_ko_KR": "토슬렌치의 축소기", "name_fr_FR": "Réducteur de Torsaclef", "name_de_DE": "Knobelzangs Schrumpfer", "name_zh_CN": "枪穗的收缩器", "name_es_ES": "Reductor de Borlallave", "name_ru_RU": "Уменьшитель Подай-Ключа", "name_it_IT": "Riduttore di Chiavetorta", "name_pt_PT": "Encolhedor do Tacachave", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63194, "race_mask": 18446744073709551615, "desc": "Please take care of him for me.", "pad2": "", "pad1": "", "pad0": "", "name": "Rhea's Last Egg", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5008, "buy_price": 25041, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0289000272750854, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rhea's Last Egg", "name_ko_KR": "레아의 마지막 알", "name_fr_FR": "Dernier œuf de Rhea", "name_de_DE": "Rheas letztes Ei", "name_zh_CN": "瑞亚的最后一枚卵", "name_es_ES": "Último huevo de Rhea", "name_ru_RU": "Последнее яйцо Реи", "name_it_IT": "Ultimo Uovo di Rhea", "name_pt_PT": "Último Ovo da Rhea", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63241, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Very Soft Pillow", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12793, "buy_price": 51171, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Very Soft Pillow", "name_ko_KR": "아주 폭신한 베게", "name_fr_FR": "Oreiller très doux", "name_de_DE": "Sehr weiches Kissen", "name_zh_CN": "极其柔软的枕头", "name_es_ES": "Almohada muy suave", "name_ru_RU": "Очень мягкая подушка", "name_it_IT": "Cuscino Molto Soffice", "name_pt_PT": "Travesseiro Muito Macio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63245, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lunk's Special Gear", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4502, "buy_price": 22512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955000281333923, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lunk's Special Gear", "name_ko_KR": "돌머리의 특수 장비", "name_fr_FR": "Equipement spécial de Benêt", "name_de_DE": "Lunks besonderes Zahnrad", "name_zh_CN": "隆克的特制装置", "name_es_ES": "Equipo especial de Ñoño", "name_ru_RU": "Особое оборудование Чурбана", "name_it_IT": "Dispositivo speciale di Lunk", "name_pt_PT": "Equipamento Especial do Bocó", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63632, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of the Traitor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3189, "buy_price": 15945, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775000214576721, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Horn of the Traitor", "name_ko_KR": "배신자의 뿔", "name_fr_FR": "Cor du traître", "name_de_DE": "Horn des Verräters", "name_zh_CN": "叛徒之角", "name_es_ES": "Cuerno del traidor", "name_ru_RU": "Рог предателя", "name_it_IT": "Corno del Traditore", "name_pt_PT": "Chifre do Traidor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63633, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of the Traitor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3201, "buy_price": 16005, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Horn of the Traitor", "name_ko_KR": "배신자의 뿔", "name_fr_FR": "Cor du traître", "name_de_DE": "Horn des Verräters", "name_zh_CN": "叛徒之角", "name_es_ES": "Cuerno del traidor", "name_ru_RU": "Рог предателя", "name_it_IT": "Corno del Traditore", "name_pt_PT": "Chifre do Traidor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63742, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Za'brox's Lucky Tooth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13621, "buy_price": 68106, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0400999784469604, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Za'brox's Lucky Tooth", "name_ko_KR": "자브록스의 행운 깃든 이빨", "name_fr_FR": "Dent porte-bonheur de Za'brox", "name_de_DE": "Za'brox' Glückszahn", "name_zh_CN": "扎布鲁克斯的幸运假牙", "name_es_ES": "Diente de la suerte de Za'brox", "name_ru_RU": "Счастливый зуб За'брокса", "name_it_IT": "Dente della Fortuna di Za'brox", "name_pt_PT": "Dente da Sorte de Za'brox", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63745, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Za'brox's Lucky Tooth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12801, "buy_price": 64007, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775000214576721, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Za'brox's Lucky Tooth", "name_ko_KR": "자브록스의 행운 깃든 이빨", "name_fr_FR": "Dent porte-bonheur de Za'brox", "name_de_DE": "Za'brox' Glückszahn", "name_zh_CN": "扎布鲁克斯的幸运假牙", "name_es_ES": "Diente de la suerte de Za'brox", "name_ru_RU": "Счастливый зуб За'брокса", "name_it_IT": "Dente della Fortuna di Za'brox", "name_pt_PT": "Dente da Sorte de Za'brox", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63838, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shrine-Cleansing Purifier", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12455, "buy_price": 62278, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9510999917984009, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Shrine-Cleansing Purifier", "name_ko_KR": "제단 정화기", "name_fr_FR": "Purificateur de sanctuaire", "name_de_DE": "Schreinreinigender Läuterer", "name_zh_CN": "神殿净化器", "name_es_ES": "Purificador limpiador de santuarios", "name_ru_RU": "Очиститель святилища", "name_it_IT": "Monile del Santuario Purificato", "name_pt_PT": "Purificador de Santuários", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63839, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmlight Token", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12504, "buy_price": 62520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954800009727478, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Harmlight Token", "name_ko_KR": "해로운빛 징표", "name_fr_FR": "Marque charmelume", "name_de_DE": "Unheilslichtsymbol", "name_zh_CN": "邪光符记", "name_es_ES": "Marca Dañaluz", "name_ru_RU": "Знак света боли", "name_it_IT": "Monile della Luce Furente", "name_pt_PT": "Emblema da Luz que Fere", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63840, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juju of Nimbleness", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12552, "buy_price": 62763, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585000276565552, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Juju of Nimbleness", "name_ko_KR": "기민함의 부적", "name_fr_FR": "Juju de vivacité", "name_de_DE": "Juju der Gewandtheit", "name_zh_CN": "敏捷护符", "name_es_ES": "Juju de vivacidad", "name_ru_RU": "Джуджу гибкости", "name_it_IT": "Juju della Sveltezza", "name_pt_PT": "Juju da Vivacidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63841, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tank-Commander Insignia", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12946, "buy_price": 64734, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Tank-Commander Insignia", "name_ko_KR": "전차사령관의 휘장", "name_fr_FR": "Insigne de commandant de char", "name_de_DE": "Insigne des Panzerkommandanten", "name_zh_CN": "坦克指挥官的图章", "name_es_ES": "Insignia de comandante de tanque", "name_ru_RU": "Знак отличия командира танка", "name_it_IT": "Fregio del Comandante dei Carri d'Assedio", "name_pt_PT": "Insígnia do Comandante de Tanque", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63842, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "World-Queller Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12995, "buy_price": 64976, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "World-Queller Focus", "name_ko_KR": "세계평정자 집중점", "name_fr_FR": "Focalisation de pacificateur de monde", "name_de_DE": "Fokus des Weltenbezwingers", "name_zh_CN": "灭世聚焦器", "name_es_ES": "Foco del sofocador de mundos", "name_ru_RU": "Средоточие подавителя миров", "name_it_IT": "Focalizzatore del Domamondi", "name_pt_PT": "Foco Subjugador de Mundos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63843, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood-Soaked Ale Mug", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13043, "buy_price": 65218, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Blood-Soaked Ale Mug", "name_ko_KR": "피에 젖은 맥주잔", "name_fr_FR": "Chope de bière impregnée de sang", "name_de_DE": "Blutgetränkter Bierkrug", "name_zh_CN": "浸血的啤酒杯", "name_es_ES": "Jarra de cerveza empapada de sangre", "name_ru_RU": "Окровавленная кружка эля", "name_it_IT": "Boccale Insanguinato", "name_pt_PT": "Caneca de Cerveja Ensopada de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Light's Embrace", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5663, "buy_price": 28319, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007200002670288, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Light's Embrace", "name_ko_KR": "빛의 은총", "name_fr_FR": "Étreinte de la Lumière", "name_de_DE": "Umarmung des Lichts", "name_zh_CN": "光之拥抱", "name_es_ES": "Abrazo de la Luz", "name_ru_RU": "Объятия света", "name_it_IT": "Abbraccio della Luce", "name_pt_PT": "Abraço da Luz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64627, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dying Breath", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5870, "buy_price": 29351, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0439000129699707, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Dying Breath", "name_ko_KR": "임종의 숨결", "name_fr_FR": "Dernier souffle", "name_de_DE": "Letzter Atemzug", "name_zh_CN": "垂死之息", "name_es_ES": "Aliento moribundo", "name_ru_RU": "Последнее прости", "name_it_IT": "Soffio Morente", "name_pt_PT": "Último Suspiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrande's Favorite Doll", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9628000259399414, "flags_1": 134774784, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Tyrande's Favorite Doll", "name_ko_KR": "티란데가 아끼던 인형", "name_fr_FR": "Poupée préférée de Tyrande", "name_de_DE": "Tyrandes Lieblingspuppe", "name_zh_CN": "泰兰德最爱的玩偶", "name_es_ES": "Muñeca favorita de Tyrande", "name_ru_RU": "Любимая кукла Тиранды", "name_it_IT": "Bambola Preferita di Tyrande", "name_pt_PT": "A Boneca Favorita de Tyrande", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64687, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9699000120162964, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Badge of Conquest", "name_ko_KR": "피에 굶주린 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur assoiffé de sang", "name_de_DE": "Eroberungsabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador sanguinario", "name_ru_RU": "Жетон завоевания кровожадного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Sanguinario", "name_pt_PT": "Distintivo de Conquista do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64688, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9735000133514404, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Badge of Dominance", "name_ko_KR": "피에 굶주린 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur assoiffé de sang", "name_de_DE": "Vorherrschaftsabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador sanguinario", "name_ru_RU": "Жетон господства кровожадного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Sanguinario", "name_pt_PT": "Distintivo de Dominância do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9771999716758728, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Badge of Victory", "name_ko_KR": "피에 굶주린 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur assoiffé de sang", "name_de_DE": "Siegesabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador sanguinario", "name_ru_RU": "Жетон победы кровожадного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Sanguinario", "name_pt_PT": "Distintivo de Vitória do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64740, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0439000129699707, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Emblem of Cruelty", "name_ko_KR": "피에 굶주린 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur assoiffé de sang", "name_de_DE": "Grausamkeitsemblem des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador sanguinario", "name_ru_RU": "Эмблема жестокости кровожадного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Sanguinario", "name_pt_PT": "Emblema da Crueldade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64741, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9739000201225281, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Emblem of Meditation", "name_ko_KR": "피에 굶주린 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur assoiffé de sang", "name_de_DE": "Meditationsemblem des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador sanguinario", "name_ru_RU": "Эмблема медитации кровожадного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Sanguinario", "name_pt_PT": "Emblema da Meditação do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64742, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9775999784469604, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Emblem of Tenacity", "name_ko_KR": "피에 굶주린 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur assoiffé de sang", "name_de_DE": "Hartnäckigkeitsemblem des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador sanguinario", "name_ru_RU": "Эмблема упорства кровожадного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Sanguinario", "name_pt_PT": "Emblema da Tenacidade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64761, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.973800003528595, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Insignia of Conquest", "name_ko_KR": "피에 굶주린 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur assoiffé de sang", "name_de_DE": "Eroberungsinsigne des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador sanguinario", "name_ru_RU": "Знак завоевания кровожадного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Sanguinario", "name_pt_PT": "Insígnia de Conquista do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64762, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9775000214576721, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Insignia of Dominance", "name_ko_KR": "피에 굶주린 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur assoiffé de sang", "name_de_DE": "Vorherrschaftsinsigne des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador sanguinario", "name_ru_RU": "Знак господства кровожадного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Sanguinario", "name_pt_PT": "Insígnia de Dominância do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9811000227928162, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Insignia of Victory", "name_ko_KR": "피에 굶주린 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur assoiffé de sang", "name_de_DE": "Siegesinsigne des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador sanguinario", "name_ru_RU": "Знак победы кровожадного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Sanguinario", "name_pt_PT": "Insígnia de Vitória do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64789, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003100037574768, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64790, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Cruelty", "name_ko_KR": "피에 굶주린 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur assoiffé de sang", "name_de_DE": "Grausamkeitsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sanguinario", "name_ru_RU": "Медальон жестокости кровожадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Crueldade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64790, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0332000255584717, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64789, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Cruelty", "name_ko_KR": "피에 굶주린 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur assoiffé de sang", "name_de_DE": "Grausamkeitsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sanguinario", "name_ru_RU": "Медальон жестокости кровожадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Crueldade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64791, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0369000434875488, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64792, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Meditation", "name_ko_KR": "피에 굶주린 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur assoiffé de sang", "name_de_DE": "Meditationsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sanguinario", "name_ru_RU": "Медальон медитации кровожадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Meditação do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64792, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405999422073364, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64791, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Meditation", "name_ko_KR": "피에 굶주린 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur assoiffé de sang", "name_de_DE": "Meditationsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sanguinario", "name_ru_RU": "Медальон медитации кровожадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Meditação do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64793, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0441999435424805, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64794, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Tenacity", "name_ko_KR": "피에 굶주린 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur assoiffé de sang", "name_de_DE": "Hartnäckigkeitsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sanguinario", "name_ru_RU": "Медальон упорства кровожадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64794, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0478999614715576, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64793, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Tenacity", "name_ko_KR": "피에 굶주린 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur assoiffé de sang", "name_de_DE": "Hartnäckigkeitsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sanguinario", "name_ru_RU": "Медальон упорства кровожадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65015, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "DONTUSEFury of Angerforge", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0295000076293945, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "DONTUSEFury of Angerforge", "name_ko_KR": "미사용앵거포지의 격노", "name_fr_FR": "DONTUSEFury of Angerforge", "name_de_DE": "Wut von Zornesschmied", "name_zh_CN": "DONTUSEFury of Angerforge", "name_es_ES": "DONTUSEFury of Angerforge", "name_ru_RU": "DONTUSEFury of Angerforge", "name_it_IT": "DONTUSEFury of Angerforge", "name_pt_PT": "DONTUSEFury of Angerforge", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prestor's Talisman of Machination", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 98, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Prestor's Talisman of Machination", "name_ko_KR": "계략의 프레스톨 부적", "name_fr_FR": "Talisman de machination de Prestor", "name_de_DE": "Prestors Talisman der Intrige", "name_zh_CN": "普瑞斯托的诡计护符", "name_es_ES": "Dije de maquinación de Prestor", "name_ru_RU": "Талисман интриг Престора", "name_it_IT": "Talismano della Macchinazione di Prestor", "name_pt_PT": "Talismã da Maquinação do Prestor", "on_use": false, "id_encounter": 174, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 65029, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jar of Ancient Remedies", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 97, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Jar of Ancient Remedies", "name_ko_KR": "고대 치료제 단지", "name_fr_FR": "Pot d'antiques remèdes", "name_de_DE": "Glas mit uralter Arznei", "name_zh_CN": "古老的愈病药瓶", "name_es_ES": "Tarro de remedios antiguos", "name_ru_RU": "Флакончик с древним целительным зельем", "name_it_IT": "Urna dei Rimedi Antichi", "name_pt_PT": "Jarra dos Antigos Remédios", "on_use": true, "id_encounter": 173, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 65048, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbiotic Worm", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 99, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Symbiotic Worm", "name_ko_KR": "공생충", "name_fr_FR": "Ver symbiotique", "name_de_DE": "Symbiotischer Wurm", "name_zh_CN": "共生之虫", "name_es_ES": "Gusano simbiótico", "name_ru_RU": "Червь-симбионт", "name_it_IT": "Verme Simbiotico", "name_pt_PT": "Verme Simbiótico", "on_use": false, "id_encounter": 170, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 65053, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bell of Enraging Resonance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 95, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219000577926636, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bell of Enraging Resonance", "name_ko_KR": "격노한 공명의 종", "name_fr_FR": "Cloche de résonance enragée", "name_de_DE": "Glocke der rasend machenden Resonanz", "name_zh_CN": "狂怒鸣响之铃", "name_es_ES": "Campana de resonancia enfurecedora", "name_ru_RU": "Колокол яростного резонанса", "name_it_IT": "Campana dei Rintocchi Rabbiosi", "name_pt_PT": "Sino da Ressonância em Fúria", "on_use": false, "id_encounter": 171, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 65072, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 96, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0181000232696533, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Rage", "name_ko_KR": "분노의 심장", "name_fr_FR": "Cœur de rage", "name_de_DE": "Herz des Hasses", "name_zh_CN": "狂怒之心", "name_es_ES": "Corazón de ira", "name_ru_RU": "Сердце ярости", "name_it_IT": "Cuore di Rabbia", "name_pt_PT": "Coração da Ira", "on_use": false, "id_encounter": 172, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 65105, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Theralion's Mirror", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 93, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922000169754028, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Theralion's Mirror", "name_ko_KR": "테랄리온의 거울", "name_fr_FR": "Miroir de Theralion", "name_de_DE": "Theralions Spiegel", "name_zh_CN": "瑟纳利昂之镜", "name_es_ES": "Espejo de Theralion", "name_ru_RU": "Зеркало Тералиона", "name_it_IT": "Specchio di Theralion", "name_pt_PT": "Espelho de Theralion", "on_use": false, "id_encounter": 157, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65109, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Stolen Memories", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 94, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068999528884888, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Stolen Memories", "name_ko_KR": "도난당한 기억의 약병", "name_fr_FR": "Fiole de souvenirs volés", "name_de_DE": "Fläschchen gestohlener Erinnerungen", "name_zh_CN": "存封记忆之瓶", "name_es_ES": "Vial de recuerdos robados", "name_ru_RU": "Фиал украденных воспоминаний", "name_it_IT": "Fialetta dei Ricordi Rubati", "name_pt_PT": "Ampola das Memórias Roubadas", "on_use": true, "id_encounter": 157, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65110, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Ignacious", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 92, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104999542236328, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Ignacious", "name_ko_KR": "이그나시우스의 심장", "name_fr_FR": "Cœur d'Ignacious", "name_de_DE": "Herz von Ignazius", "name_zh_CN": "伊格纳休斯之心", "name_es_ES": "Corazón de Ignacious", "name_ru_RU": "Сердце Огниса", "name_it_IT": "Cuore di Ignacious", "name_pt_PT": "Coração de Ignícius", "on_use": true, "id_encounter": 158, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65118, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crushing Weight", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 89, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9663000106811523, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Crushing Weight", "name_ko_KR": "압도하는 무게", "name_fr_FR": "Poids écrasant", "name_de_DE": "Erdrückendes Gewicht", "name_zh_CN": "压顶之力", "name_es_ES": "Peso aplastante", "name_ru_RU": "Сокрушительный груз", "name_it_IT": "Peso Schiacciante", "name_pt_PT": "Peso Esmagador", "on_use": false, "id_encounter": 158, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65124, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fall of Mortality", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 91, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883999824523926, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fall of Mortality", "name_ko_KR": "필멸의 몰락", "name_fr_FR": "Baisse de la mortalité", "name_de_DE": "Untergang der Sterblichen", "name_zh_CN": "生命之殒", "name_es_ES": "Caída de mortalidad", "name_ru_RU": "Поступь смерти", "name_it_IT": "Caduta della Mortalità", "name_pt_PT": "Queda da Mortalidade", "on_use": false, "id_encounter": 167, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65140, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Cyclone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 90, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9735000133514404, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Cyclone", "name_ko_KR": "회오리의 정수", "name_fr_FR": "Essence du cyclone", "name_de_DE": "Essenz des Zyklons", "name_zh_CN": "气旋精华", "name_es_ES": "Esencia del ciclón", "name_ru_RU": "Эссенция циклона", "name_it_IT": "Essenza del Ciclone", "name_pt_PT": "Essência do Ciclone", "on_use": false, "id_encounter": 156, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65175, "race_mask": 18446744073709551615, "desc": "The footmen who fought and died in the mud and blood of Tol Barad wore these tags so that their corpses might be identified and sent home.", "pad2": "", "pad1": "", "pad0": "", "name": "Baradin Footman's Tags", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 131121, "buy_price": 524486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9814000129699707, "flags_1": 36864, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 65176, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Baradin Footman's Tags", "name_ko_KR": "바라딘 보병의 인식표", "name_fr_FR": "Plaques de fantassin de Baradin", "name_de_DE": "Erkennungsmarke eines Fußsoldaten aus Baradin", "name_zh_CN": "巴拉丁步兵的铭牌", "name_es_ES": "Etiquetas de lacayo de Baradin", "name_ru_RU": "Жетон толбарадского пехотинца", "name_it_IT": "Targhette del Coscritto di Baradin", "name_pt_PT": "Placas de Identificação dos Soldados de Baradin", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65176, "race_mask": 18446744073709551615, "desc": "The grunts who fought and died in the mud and blood of Tol Barad wore these talismans so that their corpses might be identified and sent home.", "pad2": "", "pad1": "", "pad0": "", "name": "Baradin Grunt's Talisman", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 131121, "buy_price": 524486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850999712944031, "flags_1": 36864, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 65175, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Baradin Grunt's Talisman", "name_ko_KR": "바라딘 그런트의 부적", "name_fr_FR": "Talisman de grunt de Baradin", "name_de_DE": "Talisman eines Grunzers aus Baradin", "name_zh_CN": "巴拉丁步兵的护符", "name_es_ES": "Dije de bruto de Baradin", "name_ru_RU": "Талисман толбарадского рубаки", "name_it_IT": "Talismano del Grunt di Baradin", "name_pt_PT": "Talismã dos Brutos de Baradin", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65286, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Seed Casing", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4249, "buy_price": 21249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.047700047492981, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ancient Seed Casing", "name_ko_KR": "고대 씨앗 주머니", "name_fr_FR": "Cosse de graine antique", "name_de_DE": "Uralte Samenhülse", "name_zh_CN": "古老的种荚", "name_es_ES": "Semillero antiguo", "name_ru_RU": "Древняя оболочка зерна", "name_it_IT": "Involucro di Seme Antico", "name_pt_PT": "Casca de Semente Ancestral", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65803, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harrison's Insignia of Panache", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17771, "buy_price": 88855, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0184999704360962, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Harrison's Insignia of Panache", "name_ko_KR": "해리슨의 위풍당당 인장", "name_fr_FR": "Insigne de prestige d'Harrison", "name_de_DE": "Harrisons Insigne des Flairs", "name_zh_CN": "哈里森的炫目徽章", "name_es_ES": "Insignia de garbo de Harrison", "name_ru_RU": "Плюмажная брошь Харрисона", "name_it_IT": "Fregio della Vanteria di Harrison", "name_pt_PT": "Insígnia da Petulância de Harrison", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65804, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Sinister Order", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17835, "buy_price": 89178, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Sinister Order", "name_ko_KR": "사악한 명령의 부적", "name_fr_FR": "Talisman d'ordre sinistre", "name_de_DE": "Talisman der finsteren Order", "name_zh_CN": "邪恶命令护符", "name_es_ES": "Dije de la orden siniestra", "name_ru_RU": "Талисман жесткого порядка", "name_it_IT": "Talismano dell'Ordine Sinistro", "name_pt_PT": "Talismã da Ordem Sinistra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65805, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Schnottz's Medallion of Command", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17900, "buy_price": 89501, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0259000062942505, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Schnottz's Medallion of Command", "name_ko_KR": "슈노츠의 지휘 메달", "name_fr_FR": "Médaillon de commandement de Schnottz", "name_de_DE": "Schnottz' Medaillon der Befehlsgewalt", "name_zh_CN": "司克诺兹的统御奖章", "name_es_ES": "Medallón de mando de Schnottz", "name_ru_RU": "Медальон власти Шнотца", "name_it_IT": "Medaglione del Comando di Schnottz", "name_pt_PT": "Medalhão de Comando de Schnottz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65923, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Barov Servant Caller", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9126, "buy_price": 36502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0441999435424805, "flags_1": 65536, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Barov Servant Caller", "name_ko_KR": "바로브의 하인 호출종", "name_fr_FR": "Signal des Barov", "name_de_DE": "Bedienstetenglöckchen der Barovs", "name_zh_CN": "巴罗夫仆人铃", "name_es_ES": "Llamador de sirviente Barov", "name_ru_RU": "Колокольчик для вызова слуг Барова", "name_it_IT": "Campanella degli Inservienti dei Barov", "name_pt_PT": "Campainha dos Serviçais de Barov", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65931, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Eranikus' Shade", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 19564, "buy_price": 78254, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Essence of Eranikus' Shade", "name_ko_KR": "에라니쿠스 사령의 정수", "name_fr_FR": "Essence de l'ombre d'Eranikus", "name_de_DE": "Essenz des Schemens von Eranikus", "name_zh_CN": "伊兰尼库斯阴影精华", "name_es_ES": "Esencia de la sombra de Eranikus", "name_ru_RU": "Сущность тени Эраникуса", "name_it_IT": "Essenza dell'Ombra di Eranikus", "name_pt_PT": "Essência de Vulto de Erânicos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 66879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Lightning", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0408999919891357, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Bottled Lightning", "name_ko_KR": "병에 담긴 번개", "name_fr_FR": "Éclairs en bouteille", "name_de_DE": "Blitz in der Flasche", "name_zh_CN": "闪电缚能瓶", "name_es_ES": "Relámpago embotellado", "name_ru_RU": "Законсервированная молния", "name_it_IT": "Fulmine In Scatola", "name_pt_PT": "Raio Engarrafado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 66969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of the Vile", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Heart of the Vile", "name_ko_KR": "비열한 자의 심장", "name_fr_FR": "Cœur de l'infâme", "name_de_DE": "Herz des Niederträchtigen", "name_zh_CN": "邪恶之心", "name_es_ES": "Corazón del inmundo", "name_ru_RU": "Сердце зла", "name_it_IT": "Cuore dell'Ignobiltà", "name_pt_PT": "Coração do Vil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 66994, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul's Anguish", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Soul's Anguish", "name_ko_KR": "영혼의 고뇌", "name_fr_FR": "Angoisse de l'âme", "name_de_DE": "Pein der Seele", "name_zh_CN": "灵魂之恸", "name_es_ES": "Angustia del alma", "name_ru_RU": "Душевная тоска", "name_it_IT": "Tormento delle Anime", "name_pt_PT": "Angústia da Alma", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 67037, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Binding Promise", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Binding Promise", "name_ko_KR": "구속의 약속", "name_fr_FR": "Promesse engageante", "name_de_DE": "Bindendes Versprechen", "name_zh_CN": "信守之诺", "name_es_ES": "Promesa vinculante", "name_ru_RU": "Обязывающее обещание", "name_it_IT": "Promessa Vincolante", "name_pt_PT": "Compromisso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 67101, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unquenchable Flame", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9997000098228455, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Unquenchable Flame", "name_ko_KR": "멈출 수 없는 불꽃", "name_fr_FR": "Flamme inextinguible", "name_de_DE": "Unauslöschliche Flamme", "name_zh_CN": "无熄之焰", "name_es_ES": "Llama insaciable", "name_ru_RU": "Вечное пламя", "name_it_IT": "Fiamma Insaziabile", "name_pt_PT": "Chamas Inextinguíveis", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 67118, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Electrospark Heartstarter", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Electrospark Heartstarter", "name_ko_KR": "전기불꽃 심장가동기", "name_fr_FR": "Démarre-cœur à électro-étincelles", "name_de_DE": "Elektrofunkenherzstarter", "name_zh_CN": "电火花起搏器", "name_es_ES": "Latecorazones Electrochispa", "name_ru_RU": "Электроискровой сердцеоживитель", "name_it_IT": "Acciarino Elettrolucente", "name_pt_PT": "Reanimador Elétrico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 67152, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lady La-La's Singing Shell", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9927999973297119, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Lady La-La's Singing Shell", "name_ko_KR": "여군주 라라의 노래하는 껍질", "name_fr_FR": "Carapace chantante de dame La-La", "name_de_DE": "Lady La-Las singende Muschel", "name_zh_CN": "蕾蒂拉拉的吟唱之壳", "name_es_ES": "Concha sonora de lady La-La", "name_ru_RU": "Поющая ракушка леди Ла-Ла", "name_it_IT": "Conchiglia Musicale di Dama Ga-Ga", "name_pt_PT": "Concha Musical da Lady LaLa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68709, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unsolvable Riddle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0480999946594238, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Unsolvable Riddle", "name_ko_KR": "풀리지 않는 수수께끼", "name_fr_FR": "Enigme insoluble", "name_de_DE": "Unlösbares Rätsel", "name_zh_CN": "无解之谜", "name_es_ES": "Enigma sin solución", "name_ru_RU": "Нерешаемая головоломка", "name_it_IT": "Enigma Irrisolvibile", "name_pt_PT": "Charada Insolúvel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stump of Time", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.95169997215271, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Stump of Time", "name_ko_KR": "시간의 그루터기", "name_fr_FR": "Souche temporelle", "name_de_DE": "Strunk der Zeit", "name_zh_CN": "时光的残枝", "name_es_ES": "Tocón del tiempo", "name_ru_RU": "Осколок времени", "name_it_IT": "Ceppo del Tempo", "name_pt_PT": "Cepo do Tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68711, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mandala of Stirring Patterns", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mandala of Stirring Patterns", "name_ko_KR": "살랑거리는 무늬의 만다라", "name_fr_FR": "Mandala de motifs inspirés", "name_de_DE": "Mandala der bewegenden Muster", "name_zh_CN": "激越曼陀罗坠石", "name_es_ES": "Mandala de patrones removidos", "name_ru_RU": "Мандала движущихся узоров", "name_it_IT": "Mandala dei Ricami Frementi", "name_pt_PT": "Mandala dos Padrões Misturados", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68712, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impatience of Youth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9855999946594238, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Impatience of Youth", "name_ko_KR": "젊음의 조바심", "name_fr_FR": "Impatience de la jeunesse", "name_de_DE": "Ungeduld der Jugend", "name_zh_CN": "青春的躁动", "name_es_ES": "Impaciencia de la juventud", "name_ru_RU": "Юношеская горячность", "name_it_IT": "Impazienza della Gioventù", "name_pt_PT": "Impaciência da Juventude", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68713, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Broken Images", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9891999959945679, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Broken Images", "name_ko_KR": "깨진 형상의 거울", "name_fr_FR": "Miroir d'images brisées", "name_de_DE": "Spiegel der gebrochenen Bilder", "name_zh_CN": "破碎影像之镜", "name_es_ES": "Espejo de imágenes rotas", "name_ru_RU": "Зеркало разбитых отражений", "name_it_IT": "Specchio delle Immagini Infrante", "name_pt_PT": "Espelho das Imagens Quebradas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68775, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Volatile Alchemist Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.5, "stat_socket_mul_2": 0.5, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962000250816345, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 4135, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2482, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Volatile Alchemist Stone", "name_ko_KR": "휘발성 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste volatile", "name_de_DE": "Flüchtiger Alchemistenstein", "name_zh_CN": "烈性炼金石", "name_es_ES": "Piedra de alquimista volátil", "name_ru_RU": "Неустойчивый алхимический камень", "name_it_IT": "Pietra Alchemica Volatile", "name_pt_PT": "Pedra Volátil do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68776, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Quicksilver Alchemist Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.5, "stat_socket_mul_2": 0.5, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 2782, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2482, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Quicksilver Alchemist Stone", "name_ko_KR": "쾌활의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste de vif-argent", "name_de_DE": "Lebhafter Alchemistenstein", "name_zh_CN": "活泼炼金石", "name_es_ES": "Piedra de alquimista de mercurio", "name_ru_RU": "Переменчивый алхимический камень", "name_it_IT": "Pietra Alchemica Imprevedibile", "name_pt_PT": "Pedra de Azougue do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68777, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Vibrant Alchemist Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.5, "stat_socket_mul_2": 0.5, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0299999713897705, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 4143, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2482, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Vibrant Alchemist Stone", "name_ko_KR": "고동치는 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste vibrante", "name_de_DE": "Leuchtender Alchemistenstein", "name_zh_CN": "活力炼金石", "name_es_ES": "Piedra de alquimista vibrante", "name_ru_RU": "Резонирующий алхимический камень", "name_it_IT": "Pietra Alchemica Vibrante", "name_pt_PT": "Pedra Vibrante do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68915, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scales of Life", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 132, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Scales of Life", "name_ko_KR": "생명의 저울", "name_fr_FR": "Balance de vie", "name_de_DE": "Waagschalen des Lebens", "name_zh_CN": "生命天平", "name_es_ES": "Balanza de vida", "name_ru_RU": "Весы жизни", "name_it_IT": "Scaglie della Vita", "name_pt_PT": "Balança da Vida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68925, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Variable Pulse Lightning Capacitor", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 133, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Variable Pulse Lightning Capacitor", "name_ko_KR": "가변 파동 번개 축전기", "name_fr_FR": "Condensateur de foudre à pulsation variable", "name_de_DE": "Wechselimpulsblitzkondensator", "name_zh_CN": "变压脉冲电容器", "name_es_ES": "Condensador de relámpagos de pulso variable", "name_ru_RU": "Нестабильный конденсатор молний", "name_it_IT": "Condensatore Variabile a Luce Pulsata", "name_pt_PT": "Capacitor de Relâmpagos de Pulso Variável", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68926, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jaws of Defeat", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 134, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Jaws of Defeat", "name_ko_KR": "타도의 턱뼈", "name_fr_FR": "Mâchoires de défaite", "name_de_DE": "Fänge des Schicksals", "name_zh_CN": "绝境逢生", "name_es_ES": "Mandíbulas de la derrota", "name_ru_RU": "Челюсти погибели", "name_it_IT": "Fauci della Sconfitta", "name_pt_PT": "Mandíbulas da Derrota", "on_use": true, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68927, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Hungerer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 135, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "The Hungerer", "name_ko_KR": "갈구하는 마음", "name_fr_FR": "L'Affameur", "name_de_DE": "Der Hungerleider", "name_zh_CN": "饥不择食", "name_es_ES": "El Hambriento", "name_ru_RU": "Ненасыть", "name_it_IT": "Monile Famelico", "name_pt_PT": "Fome Incontrolável", "on_use": false, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68972, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Apparatus of Khaz'goroth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 136, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Apparatus of Khaz'goroth", "name_ko_KR": "카즈고로스의 기기", "name_fr_FR": "Appareil de Khaz'goroth", "name_de_DE": "Apparat von Khaz'goroth", "name_zh_CN": "卡兹格罗斯的仪器", "name_es_ES": "Artefacto de Khaz'goroth", "name_ru_RU": "Устройство Каз'горота", "name_it_IT": "Apparato di Khaz'goroth", "name_pt_PT": "Aparato de Khaz'goroth", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68981, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spidersilk Spindle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 137, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962999820709229, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Spidersilk Spindle", "name_ko_KR": "거미비단 물레", "name_fr_FR": "Fuseau à soie d'araignée", "name_de_DE": "Spinnenseidenspindel", "name_zh_CN": "蛛丝纺锤", "name_es_ES": "Huso de seda de araña", "name_ru_RU": "Веретено паучьего шелка", "name_it_IT": "Fuso di Seta di Ragno", "name_pt_PT": "Fuso de Seda de Aranha", "on_use": false, "id_encounter": 192, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68982, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Necromantic Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 138, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Necromantic Focus", "name_ko_KR": "강령술 집중 장치", "name_fr_FR": "Focalisation nécromantique", "name_de_DE": "Nekromantischer Fokus", "name_zh_CN": "巫术聚焦器", "name_es_ES": "Foco nigromántico", "name_ru_RU": "Средоточие некромантии", "name_it_IT": "Focalizzatore Negromantico", "name_pt_PT": "Foco Necromântico", "on_use": false, "id_encounter": 196, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68983, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Blazing Power", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 139, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0037000179290771, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Blazing Power", "name_ko_KR": "타오르는 힘의 눈", "name_fr_FR": "Oeil de la puissance flamboyante", "name_de_DE": "Auge der lodernden Kraft", "name_zh_CN": "炽焰能量之眼", "name_es_ES": "Ojo de Poder llameante", "name_ru_RU": "Око пылающей энергии", "name_it_IT": "Occhio del Potere Splendente", "name_pt_PT": "Olho do Poder Fulgurante", "on_use": false, "id_encounter": 194, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68994, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Matrix Restabilizer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 140, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Matrix Restabilizer", "name_ko_KR": "행렬 재안정기", "name_fr_FR": "Restabilisateur de matrice", "name_de_DE": "Matrixrestabilisator", "name_zh_CN": "矩阵回稳器", "name_es_ES": "Estabilizador de matriz", "name_ru_RU": "Рестабилизатор матрицы", "name_it_IT": "Ristabilizzatore della Matrice", "name_pt_PT": "Reestabilizador Matricial", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vessel of Acceleration", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 141, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9740999937057495, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vessel of Acceleration", "name_ko_KR": "가속의 용기", "name_fr_FR": "Calice d'accélération", "name_de_DE": "Gefäß der Beschleunigung", "name_zh_CN": "爆焰魔瓶", "name_es_ES": "Vasija de aceleración", "name_ru_RU": "Сосуд ускорения", "name_it_IT": "Vaso dell'Accelerazione", "name_pt_PT": "Instrumento de Aceleração", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68996, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stay of Execution", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 142, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 1000000, "buy_price": 4000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Stay of Execution", "name_ko_KR": "집행유예", "name_fr_FR": "Sursis à l'exécution", "name_de_DE": "Hinrichtungsaufschub", "name_zh_CN": "死缓令", "name_es_ES": "Ejecución pospuesta", "name_ru_RU": "Отложенная расправа", "name_it_IT": "Sospensione della Condanna", "name_pt_PT": "Suspensão da Execução", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68998, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Zeth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 143, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 1000000, "buy_price": 4000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Zeth", "name_ko_KR": "제스의 룬", "name_fr_FR": "Rune de Zeth", "name_de_DE": "Rune von Zeth", "name_zh_CN": "塞斯符文", "name_es_ES": "Runa de Zeth", "name_ru_RU": "Руна Зет", "name_it_IT": "Runa di Zeth", "name_pt_PT": "Runa de Zeth", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69000, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fiery Quintessence", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 145, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 1000000, "buy_price": 4000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fiery Quintessence", "name_ko_KR": "불의 진수", "name_fr_FR": "Quintessence embrasée", "name_de_DE": "Feurige Quintessenz", "name_zh_CN": "火焰精粹", "name_es_ES": "Quintaesencia ígnea", "name_ru_RU": "Квинтэссенция огня", "name_it_IT": "Quintessenza Ardente", "name_pt_PT": "Quintessência Abrasadora", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69001, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Petrified Seed", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 146, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 1000000, "buy_price": 4000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Petrified Seed", "name_ko_KR": "고대의 석화 씨앗", "name_fr_FR": "Graine ancienne pétrifiée", "name_de_DE": "Uraltes versteinertes Samenkorn", "name_zh_CN": "上古化石种子", "name_es_ES": "Semilla petrificada antigua", "name_ru_RU": "Древнее окаменевшее семечко", "name_it_IT": "Antico Seme Pietrificato", "name_pt_PT": "Antiga Semente Petrificada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69002, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Eternal Flame", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 147, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 1000000, "buy_price": 4000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Eternal Flame", "name_ko_KR": "영원한 불꽃의 정수", "name_fr_FR": "Essence de la flamme éternelle", "name_de_DE": "Essenz der ewigen Flamme", "name_zh_CN": "永恒烈焰精华", "name_es_ES": "Esencia de la llama eterna", "name_ru_RU": "Субстанция неугасимого пламени", "name_it_IT": "Essenza della Fiamma Eterna", "name_pt_PT": "Essência da Chama Eterna", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69109, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scales of Life", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 132, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Scales of Life", "name_ko_KR": "생명의 저울", "name_fr_FR": "Balance de vie", "name_de_DE": "Waagschalen des Lebens", "name_zh_CN": "生命天平", "name_es_ES": "Balanza de vida", "name_ru_RU": "Весы жизни", "name_it_IT": "Scaglie della Vita", "name_pt_PT": "Balança da Vida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69110, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Variable Pulse Lightning Capacitor", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 133, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207302, "buy_price": 829210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9815000295639038, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Variable Pulse Lightning Capacitor", "name_ko_KR": "가변 파동 번개 축전기", "name_fr_FR": "Condensateur de foudre à pulsation variable", "name_de_DE": "Wechselimpulsblitzkondensator", "name_zh_CN": "变压脉冲电容器", "name_es_ES": "Condensador de relámpagos de pulso variable", "name_ru_RU": "Нестабильный конденсатор молний", "name_it_IT": "Condensatore Variabile a Luce Pulsata", "name_pt_PT": "Capacitor de Relâmpagos de Pulso Variável", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69111, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jaws of Defeat", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 134, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Jaws of Defeat", "name_ko_KR": "타도의 턱뼈", "name_fr_FR": "Mâchoires de défaite", "name_de_DE": "Fänge des Schicksals", "name_zh_CN": "绝境逢生", "name_es_ES": "Mandíbulas de la derrota", "name_ru_RU": "Челюсти погибели", "name_it_IT": "Fauci della Sconfitta", "name_pt_PT": "Mandíbulas da Derrota", "on_use": true, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69112, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Hungerer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 135, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9887999892234802, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "The Hungerer", "name_ko_KR": "갈구하는 마음", "name_fr_FR": "L'Affameur", "name_de_DE": "Der Hungerleider", "name_zh_CN": "饥不择食", "name_es_ES": "El Hambriento", "name_ru_RU": "Ненасыть", "name_it_IT": "Monile Famelico", "name_pt_PT": "Fome Incontrolável", "on_use": false, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Apparatus of Khaz'goroth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 136, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Apparatus of Khaz'goroth", "name_ko_KR": "카즈고로스의 기기", "name_fr_FR": "Appareil de Khaz'goroth", "name_de_DE": "Apparat von Khaz'goroth", "name_zh_CN": "卡兹格罗斯的仪器", "name_es_ES": "Artefacto de Khaz'goroth", "name_ru_RU": "Устройство Каз'горота", "name_it_IT": "Apparato di Khaz'goroth", "name_pt_PT": "Aparato de Khaz'goroth", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69138, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spidersilk Spindle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 137, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0372999906539917, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Spidersilk Spindle", "name_ko_KR": "거미비단 물레", "name_fr_FR": "Fuseau à soie d'araignée", "name_de_DE": "Spinnenseidenspindel", "name_zh_CN": "蛛丝纺锤", "name_es_ES": "Huso de seda de araña", "name_ru_RU": "Веретено паучьего шелка", "name_it_IT": "Fuso di Seta di Ragno", "name_pt_PT": "Fuso de Seda de Aranha", "on_use": false, "id_encounter": 192, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69139, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Necromantic Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 138, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0408999919891357, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Necromantic Focus", "name_ko_KR": "강령술 집중 장치", "name_fr_FR": "Focalisation nécromantique", "name_de_DE": "Nekromantischer Fokus", "name_zh_CN": "巫术聚焦器", "name_es_ES": "Foco nigromántico", "name_ru_RU": "Средоточие некромантии", "name_it_IT": "Focalizzatore Negromantico", "name_pt_PT": "Foco Necromântico", "on_use": false, "id_encounter": 196, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69149, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Blazing Power", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 139, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.00409996509552, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Blazing Power", "name_ko_KR": "타오르는 힘의 눈", "name_fr_FR": "Oeil de la puissance flamboyante", "name_de_DE": "Auge der lodernden Kraft", "name_zh_CN": "炽焰能量之眼", "name_es_ES": "Ojo de Poder llameante", "name_ru_RU": "Око пылающей энергии", "name_it_IT": "Occhio del Potere Splendente", "name_pt_PT": "Olho do Poder Fulgurante", "on_use": false, "id_encounter": 194, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Matrix Restabilizer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 140, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207302, "buy_price": 829210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007699966430664, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Matrix Restabilizer", "name_ko_KR": "행렬 재안정기", "name_fr_FR": "Restabilisateur de matrice", "name_de_DE": "Matrixrestabilisator", "name_zh_CN": "矩阵回稳器", "name_es_ES": "Estabilizador de matriz", "name_ru_RU": "Рестабилизатор матрицы", "name_it_IT": "Ristabilizzatore della Matrice", "name_pt_PT": "Reestabilizador Matricial", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69167, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vessel of Acceleration", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 141, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207302, "buy_price": 829210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vessel of Acceleration", "name_ko_KR": "가속의 용기", "name_fr_FR": "Calice d'accélération", "name_de_DE": "Gefäß der Beschleunigung", "name_zh_CN": "爆焰魔瓶", "name_es_ES": "Vasija de aceleración", "name_ru_RU": "Сосуд ускорения", "name_it_IT": "Vaso dell'Accelerazione", "name_pt_PT": "Instrumento de Aceleração", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69184, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stay of Execution", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 142, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 4000000, "buy_price": 16000000, "vendor_stack": 1, "unk_2": 4.0, "unk_1": 0.9854000210762024, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Stay of Execution", "name_ko_KR": "집행유예", "name_fr_FR": "Sursis à l'exécution", "name_de_DE": "Hinrichtungsaufschub", "name_zh_CN": "死缓令", "name_es_ES": "Ejecución pospuesta", "name_ru_RU": "Отложенная расправа", "name_it_IT": "Sospensione della Condanna", "name_pt_PT": "Suspensão da Execução", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69185, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Zeth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 143, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 4000000, "buy_price": 16000000, "vendor_stack": 1, "unk_2": 4.0, "unk_1": 0.9890999794006348, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Zeth", "name_ko_KR": "제스의 룬", "name_fr_FR": "Rune de Zeth", "name_de_DE": "Rune von Zeth", "name_zh_CN": "塞斯符文", "name_es_ES": "Runa de Zeth", "name_ru_RU": "Руна Зет", "name_it_IT": "Runa di Zeth", "name_pt_PT": "Runa de Zeth", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69198, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fiery Quintessence", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 145, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 4000000, "buy_price": 16000000, "vendor_stack": 1, "unk_2": 4.0, "unk_1": 0.9632999897003174, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fiery Quintessence", "name_ko_KR": "불의 진수", "name_fr_FR": "Quintessence embrasée", "name_de_DE": "Feurige Quintessenz", "name_zh_CN": "火焰精粹", "name_es_ES": "Quintaesencia ígnea", "name_ru_RU": "Квинтэссенция огня", "name_it_IT": "Quintessenza Ardente", "name_pt_PT": "Quintessência Abrasadora", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69199, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Petrified Seed", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 146, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 4000000, "buy_price": 16000000, "vendor_stack": 1, "unk_2": 4.0, "unk_1": 0.9668999910354614, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Petrified Seed", "name_ko_KR": "고대의 석화 씨앗", "name_fr_FR": "Graine ancienne pétrifiée", "name_de_DE": "Uraltes versteinertes Samenkorn", "name_zh_CN": "上古化石种子", "name_es_ES": "Semilla petrificada antigua", "name_ru_RU": "Древнее окаменевшее семечко", "name_it_IT": "Antico Seme Pietrificato", "name_pt_PT": "Antiga Semente Petrificada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69200, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Eternal Flame", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 147, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 4000000, "buy_price": 16000000, "vendor_stack": 1, "unk_2": 4.0, "unk_1": 0.9706000089645386, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Eternal Flame", "name_ko_KR": "영원한 불꽃의 정수", "name_fr_FR": "Essence de la flamme éternelle", "name_de_DE": "Essenz der ewigen Flamme", "name_zh_CN": "永恒烈焰精华", "name_es_ES": "Esencia de la llama eterna", "name_ru_RU": "Субстанция неугасимого пламени", "name_it_IT": "Essenza della Fiamma Eterna", "name_pt_PT": "Essência da Chama Eterna", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69762, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Miniature Voodoo Mask", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322028, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595999717712402, "flags_1": 0, "flags_2": 24832, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Miniature Voodoo Mask", "name_ko_KR": "축소판 부두 가면", "name_fr_FR": "Masque vaudou miniature", "name_de_DE": "Miniaturvoodoomaske", "name_zh_CN": "袖珍巫毒面具", "name_es_ES": "Máscara vudú en miniatura", "name_ru_RU": "Миниатюрная вудуистская маска", "name_it_IT": "Maschera Vudù in Miniatura", "name_pt_PT": "Miniatura de Máscara Vodu", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69781, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Mark of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9557999968528748, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Mark of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 징표", "name_fr_FR": "Marque de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷印记", "name_es_ES": "Marca de crueldad de Gladiador sañoso", "name_ru_RU": "Знак жестокости яростного гладиатора", "name_it_IT": "Contrassegno dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Marca da Crueldade do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69782, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Mark of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9593999981880188, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Mark of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 징표", "name_fr_FR": "Marque de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强印记", "name_es_ES": "Marca de tenacidad de Gladiador sañoso", "name_ru_RU": "Знак стойкости яростного гладиатора", "name_it_IT": "Contrassegno della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Marca da Tenacidade do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69783, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Mark of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.963100016117096, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Mark of Meditation", "name_ko_KR": "흉포한 검투사의 명상 징표", "name_fr_FR": "Marque de méditation du gladiateur vicieux", "name_de_DE": "Meditationsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想印记", "name_es_ES": "Marca de meditación de Gladiador sañoso", "name_ru_RU": "Знак медитации яростного гладиатора", "name_it_IT": "Contrassegno della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Marca da Meditação do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69784, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Symbol of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9667999744415283, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Symbol of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 상징", "name_fr_FR": "Symbole de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitssymbol des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷符记", "name_es_ES": "Símbolo de crueldad de Gladiador sañoso", "name_ru_RU": "Символ жестокости яростного гладиатора", "name_it_IT": "Simbolo dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Símbolo da Crueldade do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69785, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Symbol of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9704999923706055, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Symbol of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 상징", "name_fr_FR": "Symbole de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitssymbol des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强符记", "name_es_ES": "Símbolo de tenacidad de Gladiador sañoso", "name_ru_RU": "Символ стойкости яростного гладиатора", "name_it_IT": "Simbolo della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Símbolo da Tenacidade do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69786, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Symbol of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9740999937057495, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Symbol of Meditation", "name_ko_KR": "흉포한 검투사의 명상 상징", "name_fr_FR": "Symbole de méditation du gladiateur vicieux", "name_de_DE": "Meditationssysmbol des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想符记", "name_es_ES": "Símbolo de meditación de Gladiador sañoso", "name_ru_RU": "Символ медитации яростного гладиатора", "name_it_IT": "Simbolo della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Símbolo da Meditação do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69787, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Mark of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9778000116348267, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Mark of Cruelty", "name_ko_KR": "피에 굶주린 검투사의 잔혹 징표", "name_fr_FR": "Marque de cruauté du gladiateur assoiffé de sang", "name_de_DE": "Grausamkeitsabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的残酷印记", "name_es_ES": "Marca de crueldad de Gladiador sanguinario", "name_ru_RU": "Знак жестокости кровожадного гладиатора", "name_it_IT": "Contrassegno dell'Atrocità del Gladiatore Sanguinario", "name_pt_PT": "Marca da Crueldade do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69788, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Mark of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Mark of Tenacity", "name_ko_KR": "피에 굶주린 검투사의 불굴 징표", "name_fr_FR": "Marque de ténacité du gladiateur assoiffé de sang", "name_de_DE": "Hartnäckigkeitsabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的顽强印记", "name_es_ES": "Marca de tenacidad de Gladiador sanguinario", "name_ru_RU": "Знак стойкости кровожадного гладиатора", "name_it_IT": "Contrassegno della Tenacia del Gladiatore Sanguinario", "name_pt_PT": "Marca da Tenacidade do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69789, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Mark of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0117000341415405, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Mark of Meditation", "name_ko_KR": "피에 굶주린 검투사의 명상 징표", "name_fr_FR": "Marque de méditation du gladiateur assoiffé de sang", "name_de_DE": "Meditationsabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的冥想印记", "name_es_ES": "Marca de meditación de Gladiador sanguinario", "name_ru_RU": "Знак медитации кровожадного гладиатора", "name_it_IT": "Contrassegno della Meditazione del Gladiatore Sanguinario", "name_pt_PT": "Marca da Meditação do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69790, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Symbol of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0153000354766846, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Symbol of Cruelty", "name_ko_KR": "피에 굶주린 검투사의 잔혹 상징", "name_fr_FR": "Symbole de cruauté du gladiateur assoiffé de sang", "name_de_DE": "Grausamkeitssymbol des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的残酷符记", "name_es_ES": "Símbolo de crueldad de Gladiador sanguinario", "name_ru_RU": "Символ жестокости кровожадного гладиатора", "name_it_IT": "Simbolo dell'Atrocità del Gladiatore Sanguinario", "name_pt_PT": "Símbolo da Crueldade do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69791, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Symbol of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0190000534057617, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Symbol of Tenacity", "name_ko_KR": "피에 굶주린 검투사의 불굴 상징", "name_fr_FR": "Symbole de ténacité du gladiateur assoiffé de sang", "name_de_DE": "Hartnäckigkeitssymbol des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的顽强符记", "name_es_ES": "Símbolo de tenacidad de Gladiador sanguinario", "name_ru_RU": "Символ стойкости кровожадного гладиатора", "name_it_IT": "Simbolo della Tenacia del Gladiatore Sanguinario", "name_pt_PT": "Símbolo da Tenacidade do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69792, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Symbol of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0226999521255493, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Symbol of Meditation", "name_ko_KR": "피에 굶주린 검투사의 명상 상징", "name_fr_FR": "Symbole de méditation du gladiateur assoiffé de sang", "name_de_DE": "Meditationssysmbol des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的冥想符记", "name_es_ES": "Símbolo de meditación de Gladiador sanguinario", "name_ru_RU": "Символ медитации кровожадного гладиатора", "name_it_IT": "Simbolo della Meditazione del Gladiatore Sanguinario", "name_pt_PT": "Símbolo da Meditação do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69861, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9817000031471252, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 69862, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69862, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9854000210762024, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 69861, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70141, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dwyer's Caber", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592999815940857, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Dwyer's Caber", "name_ko_KR": "드위어의 투척나무", "name_fr_FR": "Tronc de Dwyer", "name_de_DE": "Düsters Baumstamm", "name_zh_CN": "杜耶尔的重棍", "name_es_ES": "Poste de Dwyer", "name_ru_RU": "Молодое деревце Дуайера", "name_it_IT": "Tronco di Dwyre", "name_pt_PT": "Tronco de Dwyer", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70142, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moonwell Chalice", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9894999861717224, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Moonwell Chalice", "name_ko_KR": "달샘 성배", "name_fr_FR": "Calice du Puits de lune", "name_de_DE": "Mondbrunnenkelch", "name_zh_CN": "月亮井圣杯", "name_es_ES": "Cáliz de la Poza de la Luna", "name_ru_RU": "Чаша Лунного колодца", "name_it_IT": "Calice di Pozzo Lunare", "name_pt_PT": "Cálice do Poço Lunar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70143, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moonwell Phial", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9932000041007996, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Moonwell Phial", "name_ko_KR": "달샘 유리병", "name_fr_FR": "Flasque du Puits de lune", "name_de_DE": "Mondbrunnenphiole", "name_zh_CN": "月亮井水瓶", "name_es_ES": "Ampolla de la Poza de la Luna", "name_ru_RU": "Фиал Лунного колодца", "name_it_IT": "Fiala di Pozzo Lunare", "name_pt_PT": "Frasco do Poço Lunar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70144, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ricket's Magnetic Fireball", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9968000054359436, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ricket's Magnetic Fireball", "name_ko_KR": "리켓의 자기 화염구", "name_fr_FR": "Boule de feu magnétique de Ricket", "name_de_DE": "Rickets magnetischer Feuerball", "name_zh_CN": "莉吉特的磁性火球", "name_es_ES": "Bola de Fuego magnética de Ricket", "name_ru_RU": "Магнитный огненный шар Рикет", "name_it_IT": "Palla di Fuoco Magnetica di Ricket", "name_pt_PT": "Bola de Fogo Magnética da Ricket", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70390, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9966999888420105, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70393, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador implacable", "name_ru_RU": "Медальон жестокости беспощадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Medalhão da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70391, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003999471664429, "flags_1": 528384, "flags_2": 24586, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70394, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Meditation", "name_ko_KR": "무정한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador implacable", "name_ru_RU": "Медальон медитации беспощадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Crudele", "name_pt_PT": "Medalhão da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70392, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70395, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador implacable", "name_ru_RU": "Медальон упорства беспощадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Crudele", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70393, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007699966430664, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70390, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador implacable", "name_ru_RU": "Медальон жестокости беспощадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Medalhão da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70394, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 528384, "flags_2": 24585, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70391, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Meditation", "name_ko_KR": "무정한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador implacable", "name_ru_RU": "Медальон медитации беспощадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Crudele", "name_pt_PT": "Medalhão da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70395, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70392, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador implacable", "name_ru_RU": "Медальон упорства беспощадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Crudele", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70396, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0187000036239624, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador implacable", "name_ru_RU": "Эмблема жестокости беспощадного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Emblema da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70397, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0224000215530396, "flags_1": 528384, "flags_2": 24584, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Meditation", "name_ko_KR": "무정한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador implacable", "name_ru_RU": "Эмблема медитации беспощадного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Crudele", "name_pt_PT": "Emblema da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70398, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0261000394821167, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador implacable", "name_ru_RU": "Эмблема упорства беспощадного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Crudele", "name_pt_PT": "Emblema da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70399, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9562000036239624, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Conquest", "name_ko_KR": "무정한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur sans pitié", "name_de_DE": "Eroberungsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador implacable", "name_ru_RU": "Жетон завоевания беспощадного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Crudele", "name_pt_PT": "Distintivo de Conquista do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70400, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9598000049591064, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Victory", "name_ko_KR": "무정한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur sans pitié", "name_de_DE": "Siegesabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador implacable", "name_ru_RU": "Жетон победы беспощадного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Crudele", "name_pt_PT": "Distintivo de Vitória do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70401, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9635000228881836, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Dominance", "name_ko_KR": "무정한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur sans pitié", "name_de_DE": "Vorherrschaftsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador implacable", "name_ru_RU": "Жетон господства беспощадного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Crudele", "name_pt_PT": "Distintivo de Dominância do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70402, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.967199981212616, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Dominance", "name_ko_KR": "무정한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur sans pitié", "name_de_DE": "Vorherrschaftsinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador implacable", "name_ru_RU": "Знак господства беспощадного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Crudele", "name_pt_PT": "Insígnia de Dominância do Gladiador Inclemente", "on_use": false, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70403, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9708999991416931, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Victory", "name_ko_KR": "무정한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur sans pitié", "name_de_DE": "Siegesinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador implacable", "name_ru_RU": "Знак победы беспощадного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Crudele", "name_pt_PT": "Insígnia de Vitória do Gladiador Inclemente", "on_use": false, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70404, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Conquest", "name_ko_KR": "무정한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur sans pitié", "name_de_DE": "Eroberungsinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador implacable", "name_ru_RU": "Знак завоевания беспощадного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Crudele", "name_pt_PT": "Insígnia de Conquista do Gladiador Inclemente", "on_use": false, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70409, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Mark of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.992900013923645, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Mark of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 징표", "name_fr_FR": "Marque de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷印记", "name_es_ES": "Marca de crueldad de Gladiador implacable", "name_ru_RU": "Знак жестокости беспощадного гладиатора", "name_it_IT": "Contrassegno dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Marca da Crueldade do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70410, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Mark of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9965999722480774, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Mark of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 징표", "name_fr_FR": "Marque de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强印记", "name_es_ES": "Marca de tenacidad de Gladiador implacable", "name_ru_RU": "Знак стойкости беспощадного гладиатора", "name_it_IT": "Contrassegno della Tenacia del Gladiatore Crudele", "name_pt_PT": "Marca da Tenacidade do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70411, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Mark of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0002000331878662, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Mark of Meditation", "name_ko_KR": "무정한 검투사의 명상 징표", "name_fr_FR": "Marque de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想印记", "name_es_ES": "Marca de meditación de Gladiador implacable", "name_ru_RU": "Знак медитации беспощадного гладиатора", "name_it_IT": "Contrassegno della Meditazione del Gladiatore Crudele", "name_pt_PT": "Marca da Meditação do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70412, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Symbol of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0039000511169434, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Symbol of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 상징", "name_fr_FR": "Symbole de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitssymbol des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷符记", "name_es_ES": "Símbolo de crueldad de Gladiador implacable", "name_ru_RU": "Символ жестокости беспощадного гладиатора", "name_it_IT": "Simbolo dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Símbolo da Crueldade do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Symbol of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.007599949836731, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Symbol of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 상징", "name_fr_FR": "Symbole de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitssymbol des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强符记", "name_es_ES": "Símbolo de tenacidad de Gladiador implacable", "name_ru_RU": "Символ стойкости беспощадного гладиатора", "name_it_IT": "Simbolo della Tenacia del Gladiatore Crudele", "name_pt_PT": "Símbolo da Tenacidade do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Symbol of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.011299967765808, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Symbol of Meditation", "name_ko_KR": "무정한 검투사의 명상 상징", "name_fr_FR": "Symbole de méditation du gladiateur sans pitié", "name_de_DE": "Meditationssysmbol des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想符记", "name_es_ES": "Símbolo de meditación de Gladiador implacable", "name_ru_RU": "Символ медитации беспощадного гладиатора", "name_it_IT": "Simbolo della Meditazione del Gladiatore Crudele", "name_pt_PT": "Símbolo da Meditação do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70517, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Conquest", "name_ko_KR": "흉포한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vicieux", "name_de_DE": "Eroberungsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador sañoso", "name_ru_RU": "Жетон завоевания яростного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Conquista do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70518, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Dominance", "name_ko_KR": "흉포한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vicieux", "name_de_DE": "Vorherrschaftsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador sañoso", "name_ru_RU": "Жетон господства яростного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Dominância do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70519, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Victory", "name_ko_KR": "흉포한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vicieux", "name_de_DE": "Siegesabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador sañoso", "name_ru_RU": "Жетон победы яростного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Vitória do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70563, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador sañoso", "name_ru_RU": "Эмблема жестокости яростного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Emblema da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70564, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Meditation", "name_ko_KR": "흉포한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vicieux", "name_de_DE": "Meditationsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador sañoso", "name_ru_RU": "Эмблема медитации яростного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Emblema da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70565, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador sañoso", "name_ru_RU": "Эмблема упорства яростного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Emblema da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Conquest", "name_ko_KR": "흉포한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur vicieux", "name_de_DE": "Eroberungsinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador sañoso", "name_ru_RU": "Знак завоевания яростного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Conquista do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70578, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Dominance", "name_ko_KR": "흉포한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur vicieux", "name_de_DE": "Vorherrschaftsinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador sañoso", "name_ru_RU": "Знак господства яростного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Dominância do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Victory", "name_ko_KR": "흉포한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur vicieux", "name_de_DE": "Siegesinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador sañoso", "name_ru_RU": "Знак победы яростного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Vitória do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70602, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70603, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sañoso", "name_ru_RU": "Медальон жестокости яростного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70603, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70602, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sañoso", "name_ru_RU": "Медальон жестокости яростного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70604, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70605, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Meditation", "name_ko_KR": "흉포한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur vicieux", "name_de_DE": "Meditationsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sañoso", "name_ru_RU": "Медальон медитации яростного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70605, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70604, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Meditation", "name_ko_KR": "흉포한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur vicieux", "name_de_DE": "Meditationsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sañoso", "name_ru_RU": "Медальон медитации яростного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70606, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70607, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sañoso", "name_ru_RU": "Медальон упорства яростного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70607, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70606, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sañoso", "name_ru_RU": "Медальон упорства яростного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71333, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bitterer Balebrew Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bitterer Balebrew Charm", "name_ko_KR": "더욱 쓰면서도 감미로운 고통의 맥주", "name_fr_FR": "Charme torvebière plus amer qu'amer", "name_de_DE": "Noch bitterer Plörrbräuglücksbringer", "name_zh_CN": "黑暗苦烈酒咒符", "name_es_ES": "Talismán Fardobirra más amarga", "name_ru_RU": "Амулет очень горького темного варева", "name_it_IT": "Talismano della Birra Amara che fa Molto Più Male", "name_pt_PT": "Patuá Cervamarga Ainda Mais Amarga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71334, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bubblier Brightbrew Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bubblier Brightbrew Charm", "name_ko_KR": "더욱 풍부한 거품의 감미로운 투명 맥주", "name_fr_FR": "Charme brillebière encore plus pétillant", "name_de_DE": "Noch perlenderer Hellbräuglücksbringer", "name_zh_CN": "光明气泡酒咒符", "name_es_ES": "Talismán Brillobirra bullente", "name_ru_RU": "Амулет крепкого игристого светлого напитка", "name_it_IT": "Talismano della Birra che fa Molto Più Bene", "name_pt_PT": "Patuá Cervaleve Ainda Mais Borbulhante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71335, "race_mask": 18446744073709551615, "desc": "Enchanted to fit perfectly beneath any mug, with a frosty finish.", "pad2": "", "pad1": "", "pad0": "", "name": "Coren's Chilled Chromium Coaster", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Coren's Chilled Chromium Coaster", "name_ko_KR": "코렌의 얼어붙은 크롬 받침", "name_fr_FR": "Sous-bock de Coren en chrome givré", "name_de_DE": "Corens gekühlter Chromuntersetzer", "name_zh_CN": "科林的冰冻铬银杯垫", "name_es_ES": "Posavasos de cromo helado de Coren", "name_ru_RU": "Охлажденная хромированная подставка Корена", "name_it_IT": "Sottobicchiere Cromato Gelido di Coren", "name_pt_PT": "Porta-copos Cromado Gelado de Coren", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71336, "race_mask": 18446744073709551615, "desc": "Reeking and rock hard.", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Pickled Egg", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Petrified Pickled Egg", "name_ko_KR": "석화된 초란", "name_fr_FR": "Œuf pétrifié mariné", "name_de_DE": "Versteinertes Solei", "name_zh_CN": "石化卤蛋", "name_es_ES": "Huevo escabechado petrificado", "name_ru_RU": "Окаменевшее маринованное яйцо", "name_it_IT": "Uovo in Salamoia Pietrificato", "name_pt_PT": "Ovo Avinagrado Petrificado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71337, "race_mask": 18446744073709551615, "desc": "Never stops twice.", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Stopwatch", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mithril Stopwatch", "name_ko_KR": "미스릴 초시계", "name_fr_FR": "Chronomètre en mithril", "name_de_DE": "Mithrilstoppuhr", "name_zh_CN": "密银秒表", "name_es_ES": "Cronómetro de mitril", "name_ru_RU": "Мифриловый секундомер", "name_it_IT": "Cronometro di Mithril", "name_pt_PT": "Cronômetro de Mithril", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71338, "race_mask": 18446744073709551615, "desc": "The Grim Guzzler's brawls are epic tales of legend.", "pad2": "", "pad1": "", "pad0": "", "name": "Brawler's Trophy", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Brawler's Trophy", "name_ko_KR": "싸움꾼의 트로피", "name_fr_FR": "Trophée du bagarreur", "name_de_DE": "Muskelprotztrophäe", "name_zh_CN": "打斗者的战利品", "name_es_ES": "Trofeo de camorrista", "name_ru_RU": "Трофей буяна", "name_it_IT": "Trofeo dell'Attaccabrighe", "name_pt_PT": "Troféu dos Brigões", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Conquest", "name_ko_KR": "무정한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur sans pitié", "name_de_DE": "Eroberungsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador implacable", "name_ru_RU": "Жетон завоевания беспощадного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Crudele", "name_pt_PT": "Distintivo de Conquista do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Conquest", "name_ko_KR": "무정한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur sans pitié", "name_de_DE": "Eroberungsinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador implacable", "name_ru_RU": "Знак завоевания беспощадного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Crudele", "name_pt_PT": "Insígnia de Conquista do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador implacable", "name_ru_RU": "Эмблема жестокости беспощадного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Emblema da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72360, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador implacable", "name_ru_RU": "Эмблема упорства беспощадного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Crudele", "name_pt_PT": "Emblema da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72361, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Meditation", "name_ko_KR": "무정한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador implacable", "name_ru_RU": "Эмблема медитации беспощадного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Crudele", "name_pt_PT": "Emblema da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72410, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72411, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador implacable", "name_ru_RU": "Медальон жестокости беспощадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Medalhão da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72411, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72410, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador implacable", "name_ru_RU": "Медальон жестокости беспощадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Medalhão da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72412, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72413, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador implacable", "name_ru_RU": "Медальон упорства беспощадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Crudele", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72413, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72412, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador implacable", "name_ru_RU": "Медальон упорства беспощадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Crudele", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72414, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72415, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Meditation", "name_ko_KR": "무정한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador implacable", "name_ru_RU": "Медальон медитации беспощадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Crudele", "name_pt_PT": "Medalhão da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72415, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72414, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Meditation", "name_ko_KR": "무정한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador implacable", "name_ru_RU": "Медальон медитации беспощадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Crudele", "name_pt_PT": "Medalhão da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72448, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Dominance", "name_ko_KR": "무정한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur sans pitié", "name_de_DE": "Vorherrschaftsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador implacable", "name_ru_RU": "Жетон господства беспощадного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Crudele", "name_pt_PT": "Distintivo de Dominância do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Dominance", "name_ko_KR": "무정한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur sans pitié", "name_de_DE": "Vorherrschaftsinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador implacable", "name_ru_RU": "Знак господства беспощадного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Crudele", "name_pt_PT": "Insígnia de Dominância do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72450, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Victory", "name_ko_KR": "무정한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur sans pitié", "name_de_DE": "Siegesabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador implacable", "name_ru_RU": "Жетон победы беспощадного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Crudele", "name_pt_PT": "Distintivo de Vitória do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72455, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Victory", "name_ko_KR": "무정한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur sans pitié", "name_de_DE": "Siegesinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador implacable", "name_ru_RU": "Знак победы беспощадного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Crudele", "name_pt_PT": "Insígnia de Vitória do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72897, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arrow of Time", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 43943, "buy_price": 219718, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0267000198364258, "flags_1": 524288, "flags_2": 167780352, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Arrow of Time", "name_ko_KR": "시간의 화살", "name_fr_FR": "Flèche du Temps", "name_de_DE": "Pfeil der Zeit", "name_zh_CN": "时光之箭", "name_es_ES": "Flecha de tiempo", "name_ru_RU": "Стрела времени", "name_it_IT": "Freccia del Tempo", "name_pt_PT": "Flecha do Tempo", "on_use": false, "id_encounter": 289, "id_journal_instance": 184, "id_map": 938, "instance_type": 1}, {"id": 72898, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Foul Gift of the Demon Lord", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 44102, "buy_price": 220510, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030400037765503, "flags_1": 524352, "flags_2": 201334784, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Foul Gift of the Demon Lord", "name_ko_KR": "악마 군주의 악독한 선물", "name_fr_FR": "Don souillé du seigneur démon", "name_de_DE": "Verderbte Gabe des Dämonenlords", "name_zh_CN": "恶魔领主的邪礼", "name_es_ES": "Obsequio hediondo del Señor demoníaco", "name_ru_RU": "Нечестивый дар повелителя демонов", "name_it_IT": "Dono Infetto del Signore dei Demoni", "name_pt_PT": "Dádiva Repulsiva do Lorde Demônio", "on_use": true, "id_encounter": 292, "id_journal_instance": 185, "id_map": 939, "instance_type": 1}, {"id": 72899, "race_mask": 18446744073709551615, "desc": "A gift from the Queen herself.", "pad2": "", "pad1": "", "pad0": "", "name": "Varo'then's Brooch", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 44260, "buy_price": 221302, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.03410005569458, "flags_1": 524352, "flags_2": 134225920, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Varo'then's Brooch", "name_ko_KR": "바로덴의 브로치", "name_fr_FR": "Broche de Varo'then", "name_de_DE": "Varo'thens Brosche", "name_zh_CN": "瓦罗森的胸针", "name_es_ES": "Broche de Varo'then", "name_ru_RU": "Брошь Варо'тена", "name_it_IT": "Spilla di Varo'then", "name_pt_PT": "Broche de Varo'then", "on_use": true, "id_encounter": 292, "id_journal_instance": 185, "id_map": 939, "instance_type": 1}, {"id": 72900, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Veil of Lies", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 44414, "buy_price": 222072, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0376999378204346, "flags_1": 524288, "flags_2": 33562624, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Veil of Lies", "name_ko_KR": "거짓의 장막", "name_fr_FR": "Tissu de mensonges", "name_de_DE": "Schleier der Lügen", "name_zh_CN": "谎言的面纱", "name_es_ES": "Velo de mentiras", "name_ru_RU": "Пелена лжи", "name_it_IT": "Velo delle Menzogne", "name_pt_PT": "Véu de Mentiras", "on_use": false, "id_encounter": 341, "id_journal_instance": 186, "id_map": 940, "instance_type": 1}, {"id": 72901, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rosary of Light", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 44572, "buy_price": 222864, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413999557495117, "flags_1": 524352, "flags_2": 134225920, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Rosary of Light", "name_ko_KR": "빛의 묵주", "name_fr_FR": "Rosaire de Lumière", "name_de_DE": "Rosenkranz des Lichts", "name_zh_CN": "光辉念珠", "name_es_ES": "Rosario de la Luz", "name_ru_RU": "Четки Света", "name_it_IT": "Rosario della Luce", "name_pt_PT": "Rosário da Luz", "on_use": true, "id_encounter": 341, "id_journal_instance": 186, "id_map": 940, "instance_type": 1}, {"id": 73042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Defender's Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Defender's Stone", "name_ko_KR": "수호자의 열망 어린 돌", "name_fr_FR": "Pierre de défenseur zélée", "name_de_DE": "Zelotenstein des Verteidigers", "name_zh_CN": "狂信防御者之石", "name_es_ES": "Piedra de defensor entusiasta", "name_ru_RU": "Могучий камень защитника", "name_it_IT": "Pietra della Difesa Zelante", "name_pt_PT": "Pedra Zelosa do Defensor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73060, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Defender's Idol", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Defender's Idol", "name_ko_KR": "수호자의 열망 어린 우상", "name_fr_FR": "Idole de défenseur zélée", "name_de_DE": "Zelotenidol des Verteidigers", "name_zh_CN": "狂信防御者雕像", "name_es_ES": "Ídolo de defensor entusiasta", "name_ru_RU": "Могучий идол защитника", "name_it_IT": "Idolo della Difesa Zelante", "name_pt_PT": "Ídolo Zeloso do Defensor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73061, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Stone of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Stone of Battle", "name_ko_KR": "전투의 열망 어린 돌", "name_fr_FR": "Pierre de bataille zélée", "name_de_DE": "Zelotenkampfstein", "name_zh_CN": "狂信战争之石", "name_es_ES": "Piedra de batalla entusiasta", "name_ru_RU": "Могучий камень битвы", "name_it_IT": "Pietra della Battaglia Zelante", "name_pt_PT": "Pedra Zelosa de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73062, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Idol of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Idol of Battle", "name_ko_KR": "전투의 열망 어린 우상", "name_fr_FR": "Idole de bataille zélée", "name_de_DE": "Zelotenidol des Kampfes", "name_zh_CN": "狂信战争雕像", "name_es_ES": "Ídolo de batalla entusiasta", "name_ru_RU": "Могучий идол битвы", "name_it_IT": "Idolo della Battaglia Zelante", "name_pt_PT": "Ídolo Zeloso de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73063, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Idol of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Idol of Wisdom", "name_ko_KR": "지혜의 열망 어린 우상", "name_fr_FR": "Idole de sagesse zélée", "name_de_DE": "Zelotenidol der Weisheit", "name_zh_CN": "狂信智慧雕像", "name_es_ES": "Ídolo de sabiduría entusiasta", "name_ru_RU": "Могучий идол мудрости", "name_it_IT": "Idolo della Saggezza Zelante", "name_pt_PT": "Ídolo Zeloso da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73064, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Stone of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Stone of Wisdom", "name_ko_KR": "지혜의 열망 어린 돌", "name_fr_FR": "Pierre de sagesse zélée", "name_de_DE": "Zelotenstein der Weisheit", "name_zh_CN": "狂信智慧之石", "name_es_ES": "Piedra de sabiduría entusiasta", "name_ru_RU": "Могучий камень мудрости", "name_it_IT": "Pietra della Saggezza Zelante", "name_pt_PT": "Pedra Zelosa da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73065, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Stone of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Stone of Destruction", "name_ko_KR": "파괴의 야생혼 돌", "name_fr_FR": "Pierre de destruction âme-sauvage", "name_de_DE": "Wildseelenstein der Zerstörung", "name_zh_CN": "野性灵魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma salvaje", "name_ru_RU": "Камень разрушения дикого духа", "name_it_IT": "Pietra della Distruzione dell'Anima Selvaggia", "name_pt_PT": "Pedra da Destruição Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73066, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Idol of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Idol of Destruction", "name_ko_KR": "파괴의 야생혼 우상", "name_fr_FR": "Idole de destruction âme-sauvage", "name_de_DE": "Wildseelenidol der Zerstörung", "name_zh_CN": "野性灵魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma salvaje", "name_ru_RU": "Идол разрушения дикого духа", "name_it_IT": "Idolo della Distruzione dell'Anima Selvaggia", "name_pt_PT": "Ídolo da Destruição Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73067, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Stone of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Stone of Rage", "name_ko_KR": "분노의 야생혼 돌", "name_fr_FR": "Pierre de rage âme-sauvage", "name_de_DE": "Wildseelenstein des Zorns", "name_zh_CN": "野性灵魂狂暴之石", "name_es_ES": "Piedra de ira de alma salvaje", "name_ru_RU": "Камень ярости дикого духа", "name_it_IT": "Pietra della Rabbia dell'Anima Selvaggia", "name_pt_PT": "Pedra da Raiva Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73068, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Idol of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Idol of Rage", "name_ko_KR": "분노의 야생혼 우상", "name_fr_FR": "Idole de rage âme-sauvage", "name_de_DE": "Wildseelenidol des Zorns", "name_zh_CN": "野性灵魂狂暴雕像", "name_es_ES": "Ídolo de ira de alma salvaje", "name_ru_RU": "Идол ярости дикого духа", "name_it_IT": "Idolo della Rabbia dell'Anima Selvaggia", "name_pt_PT": "Ídolo da Raiva Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73101, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magesoul Stone of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Magesoul Stone of Destruction", "name_ko_KR": "파괴의 마법혼 돌", "name_fr_FR": "Pierre de destruction âmemage", "name_de_DE": "Magierseelenstein der Zerstörung", "name_zh_CN": "法魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma de mago", "name_ru_RU": "Камень разрушения магического духа", "name_it_IT": "Pietra della Distruzione dell'Anima Magica", "name_pt_PT": "Pedra da Destruição Magialma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73104, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magesoul Idol of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Magesoul Idol of Destruction", "name_ko_KR": "파괴의 마법혼 우상", "name_fr_FR": "Idole de destruction âmemage", "name_de_DE": "Magierseelenidol der Zerstörung", "name_zh_CN": "法魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma de mago", "name_ru_RU": "Идол разрушения магического духа", "name_it_IT": "Idolo della Distruzione dell'Anima Magica", "name_pt_PT": "Ídolo da Destruição Magialma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73106, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadsoul Stone of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Dreadsoul Stone of Destruction", "name_ko_KR": "파괴의 공포영혼 돌", "name_fr_FR": "Pierre de destruction âmeffroi", "name_de_DE": "Schreckensseelenstein der Zerstörung", "name_zh_CN": "恐魂毁灭之石", "name_es_ES": "Piedra de destrucción Almaespanto", "name_ru_RU": "Камень разрушения грозного духа", "name_it_IT": "Pietra della Distruzione dell'Anima Terribile", "name_pt_PT": "Pedra da Destruição Almatorpe", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73109, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadsoul Idol of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Dreadsoul Idol of Destruction", "name_ko_KR": "파괴의 공포영혼 우상", "name_fr_FR": "Idole de destruction âmeffroi", "name_de_DE": "Schreckensseelenidol der Zerstörung", "name_zh_CN": "恐魂毁灭雕像", "name_es_ES": "Ídolo de destrucción Almaespanto", "name_ru_RU": "Идол разрушения грозного духа", "name_it_IT": "Idolo della Distruzione dell'Anima Terribile", "name_pt_PT": "Ídolo da Destruição Almatorpe", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73111, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seraphic Stone of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Seraphic Stone of Wisdom", "name_ko_KR": "지혜의 대천사 돌", "name_fr_FR": "Pierre de sagesse séraphique", "name_de_DE": "Seraphenstein der Weisheit", "name_zh_CN": "圣洁智慧之石", "name_es_ES": "Piedra de sabiduría seráfica", "name_ru_RU": "Неземной камень мудрости", "name_it_IT": "Pietra della Saggezza Serafica", "name_pt_PT": "Pedra da Sabedoria Seráfica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73114, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seraphic Idol of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Seraphic Idol of Wisdom", "name_ko_KR": "지혜의 대천사 우상", "name_fr_FR": "Idole de sagesse séraphique", "name_de_DE": "Seraphenidol der Weisheit", "name_zh_CN": "圣洁智慧雕像", "name_es_ES": "Ídolo de sabiduría seráfico", "name_ru_RU": "Неземной идол мудрости", "name_it_IT": "Idolo della Saggezza Serafico", "name_pt_PT": "Ídolo da Sabedoria Seráfico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seraphic Stone of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Seraphic Stone of Destruction", "name_ko_KR": "파괴의 대천사 돌", "name_fr_FR": "Pierre de destruction séraphique", "name_de_DE": "Seraphenstein der Zerstörung", "name_zh_CN": "圣洁毁灭之石", "name_es_ES": "Piedra de destrucción seráfica", "name_ru_RU": "Неземной камень разрушения", "name_it_IT": "Pietra della Distruzione Serafica", "name_pt_PT": "Pedra da Destruição Seráfica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73119, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seraphic Idol of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Seraphic Idol of Destruction", "name_ko_KR": "파괴의 대천사 우상", "name_fr_FR": "Idole de destruction séraphique", "name_de_DE": "Seraphenidol der Zerstörung", "name_zh_CN": "圣洁毁灭雕像", "name_es_ES": "Ídolo de destrucción seráfico", "name_ru_RU": "Неземной идол разрушения", "name_it_IT": "Idolo della Distruzione Serafico", "name_pt_PT": "Ídolo da Destruição Seráfico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73121, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowstalking Stone of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Shadowstalking Stone of Rage", "name_ko_KR": "분노의 그림자추적 돌", "name_fr_FR": "Pierre de rage de traque des ombres", "name_de_DE": "Schattenpirscherstein des Zorns", "name_zh_CN": "影行狂暴之石", "name_es_ES": "Piedra de ira acechasombras", "name_ru_RU": "Камень ярости крадущегося в тени", "name_it_IT": "Pietra della Rabbia dell'Anima Ombrosa", "name_pt_PT": "Pedra da Raiva Assombrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73124, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowstalking Idol of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Shadowstalking Idol of Rage", "name_ko_KR": "분노의 그림자추적 우상", "name_fr_FR": "Idole de rage de traque des ombres", "name_de_DE": "Schattenpirscheridol des Zorns", "name_zh_CN": "影行狂暴雕像", "name_es_ES": "Ídolo de ira acechasombras", "name_ru_RU": "Идол ярости крадущегося в тени", "name_it_IT": "Idolo della Rabbia dell'Anima Ombrosa", "name_pt_PT": "Ídolo da Raiva Assombrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73126, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Stone of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Stone of Wisdom", "name_ko_KR": "지혜의 야생혼 돌", "name_fr_FR": "Pierre de sagesse âme-sauvage", "name_de_DE": "Wildseelenstein der Weisheit", "name_zh_CN": "野性灵魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma salvaje", "name_ru_RU": "Камень мудрости дикого духа", "name_it_IT": "Pietra della Saggezza dell'Anima Selvaggia", "name_pt_PT": "Pedra da Sabedoria Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73129, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Idol of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Idol of Wisdom", "name_ko_KR": "지혜의 야생혼 우상", "name_fr_FR": "Idole de sagesse âme-sauvage", "name_de_DE": "Wildseelenidol der Weisheit", "name_zh_CN": "野性灵魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma salvaje", "name_ru_RU": "Идол мудрости дикого духа", "name_it_IT": "Idolo della Saggezza dell'Anima Selvaggia", "name_pt_PT": "Ídolo da Sabedoria Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Idol of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Idol of Rage", "name_ko_KR": "분노의 폭풍술사 우상", "name_fr_FR": "Idole de rage de lieur des tempêtes", "name_de_DE": "Sturmbinderidol des Zorns", "name_zh_CN": "驭雷狂暴雕像", "name_es_ES": "Ídolo de ira vinculatormentas", "name_ru_RU": "Идол ярости владыки бурь", "name_it_IT": "Idolo della Rabbia dell'Anima Tempestosa", "name_pt_PT": "Ídolo da Raiva do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73135, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Stone of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Stone of Rage", "name_ko_KR": "분노의 폭풍술사 돌", "name_fr_FR": "Pierre de rage de lieur des tempêtes", "name_de_DE": "Sturmbinderstein des Zorns", "name_zh_CN": "驭雷狂暴之石", "name_es_ES": "Piedra de ira vinculatormentas", "name_ru_RU": "Камень ярости владыки бурь", "name_it_IT": "Pietra della Rabbia dell'Anima Tempestosa", "name_pt_PT": "Pedra da Raiva do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73137, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Idol of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Idol of Destruction", "name_ko_KR": "파괴의 폭풍술사 우상", "name_fr_FR": "Idole de destruction de lieur des tempêtes", "name_de_DE": "Sturmbinderidol der Zerstörung", "name_zh_CN": "驭雷毁灭雕像", "name_es_ES": "Ídolo de destrucción vinculatormentas", "name_ru_RU": "Идол разрушения владыки бурь", "name_it_IT": "Idolo della Distruzione dell'Anima Tempestosa", "name_pt_PT": "Ídolo da Destruição do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73140, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Stone of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Stone of Destruction", "name_ko_KR": "파괴의 폭풍술사 돌", "name_fr_FR": "Pierre de destruction de lieur des tempêtes", "name_de_DE": "Sturmbinderstein der Zerstörung", "name_zh_CN": "驭雷毁灭之石", "name_es_ES": "Piedra de destrucción vinculatormentas", "name_ru_RU": "Камень разрушения владыки бурь", "name_it_IT": "Pietra della Distruzione dell'Anima Tempestosa", "name_pt_PT": "Pedra da Destruição do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73142, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Idol of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Idol of Wisdom", "name_ko_KR": "지혜의 폭풍술사 우상", "name_fr_FR": "Idole de sagesse de lieur des tempêtes", "name_de_DE": "Sturmbinderidol der Weisheit", "name_zh_CN": "驭雷智慧雕像", "name_es_ES": "Ídolo de sabiduría vinculatormentas", "name_ru_RU": "Идол мудрости владыки бурь", "name_it_IT": "Idolo della Saggezza dell'Anima Tempestosa", "name_pt_PT": "Ídolo da Sabedoria do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73145, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Stone of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Stone of Wisdom", "name_ko_KR": "지혜의 폭풍술사 돌", "name_fr_FR": "Pierre de sagesse de lieur des tempêtes", "name_de_DE": "Sturmbinderstein der Weisheit", "name_zh_CN": "驭雷智慧之石", "name_es_ES": "Piedra de sabiduría vinculatormentas", "name_ru_RU": "Камень мудрости владыки бурь", "name_it_IT": "Pietra della Saggezza dell'Anima Tempestosa", "name_pt_PT": "Pedra da Sabedoria do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73147, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beastsoul Idol of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Beastsoul Idol of Rage", "name_ko_KR": "분노의 야수혼 우상", "name_fr_FR": "Idole de rage d'âme-bête", "name_de_DE": "Bestienseelenidol des Zorns", "name_zh_CN": "兽魂狂暴雕像", "name_es_ES": "Ídolo de ira de alma de bestia", "name_ru_RU": "Идол ярости звериного духа", "name_it_IT": "Idolo della Rabbia dell'Anima Bestiale", "name_pt_PT": "Ídolo da Raiva Almaferal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beastsoul Stone of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Beastsoul Stone of Rage", "name_ko_KR": "분노의 야수혼 돌", "name_fr_FR": "Pierre de rage d'âme-bête", "name_de_DE": "Bestienseelenstein des Zorns", "name_zh_CN": "兽魂狂暴之石", "name_es_ES": "Piedra de ira de alma de bestia", "name_ru_RU": "Камень ярости звериного духа", "name_it_IT": "Pietra della Rabbia dell'Anima Bestiale", "name_pt_PT": "Pedra da Raiva Almaferal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73154, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ebonsoul Stone of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Ebonsoul Stone of Battle", "name_ko_KR": "전투의 흑단혼 돌", "name_fr_FR": "Pierre de bataille âmébène", "name_de_DE": "Schwarzseelenkampfstein", "name_zh_CN": "黑魂战争之石", "name_es_ES": "Piedra de batalla de alma de ébano", "name_ru_RU": "Камень битвы черного духа", "name_it_IT": "Pietra della Battaglia dell'Anima Nera", "name_pt_PT": "Pedra de Batalha Alma-ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73155, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ebonsoul Idol of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Ebonsoul Idol of Battle", "name_ko_KR": "전투의 흑단혼 우상", "name_fr_FR": "Idole de bataille âmébène", "name_de_DE": "Schwarzseelenidol des Kampfes", "name_zh_CN": "黑魂战争雕像", "name_es_ES": "Ídolo de batalla de alma de ébano", "name_ru_RU": "Идол битвы черного духа", "name_it_IT": "Idolo della Battaglia dell'Anima Nera", "name_pt_PT": "Ídolo de Batalha Alma-ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73157, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ebonsoul Defender's Idol", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Ebonsoul Defender's Idol", "name_ko_KR": "수호자의 흑단혼 우상", "name_fr_FR": "Idole de défenseur âmébène", "name_de_DE": "Schwarzseelenidol des Verteidigers", "name_zh_CN": "黑魂防御者雕像", "name_es_ES": "Ídolo de defensor de alma de ébano", "name_ru_RU": "Идол защитника черного духа", "name_it_IT": "Idolo della Difesa dell'Anima Nera", "name_pt_PT": "Ídolo do Defensor Alma-ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ebonsoul Defender's Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Ebonsoul Defender's Stone", "name_ko_KR": "수호자의 흑단혼 돌", "name_fr_FR": "Pierre de défenseur âmébène", "name_de_DE": "Schwarzseelenstein des Verteidigers", "name_zh_CN": "黑魂防御者之石", "name_es_ES": "Piedra de defensor de alma de ébano", "name_ru_RU": "Камень защитника черного духа", "name_it_IT": "Pietra della Difesa dell'Anima Nera", "name_pt_PT": "Pedra do Defensor Alma-ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73164, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valiant Stone of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Valiant Stone of Battle", "name_ko_KR": "전투의 용맹전사 돌", "name_fr_FR": "Pierre de bataille vaillante", "name_de_DE": "Ritterkampfstein", "name_zh_CN": "威武战争之石", "name_es_ES": "Piedra de batalla valerosa", "name_ru_RU": "Камень битвы искателя славы", "name_it_IT": "Pietra della Battaglia Prode", "name_pt_PT": "Pedra de Batalha Valente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73165, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valiant Idol of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Valiant Idol of Battle", "name_ko_KR": "전투의 용맹전사 우상", "name_fr_FR": "Idole de bataille vaillante", "name_de_DE": "Ritteridol des Kampfes", "name_zh_CN": "威武战争雕像", "name_es_ES": "Ídolo de batalla valeroso", "name_ru_RU": "Идол битвы искателя славы", "name_it_IT": "Idolo della Battaglia Prode", "name_pt_PT": "Ídolo de Batalha Valente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73167, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valiant Defender's Idol", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Valiant Defender's Idol", "name_ko_KR": "수호자의 용맹전사 우상", "name_fr_FR": "Idole de défenseur vaillante", "name_de_DE": "Ritteridol des Verteidigers", "name_zh_CN": "威武防御者雕像", "name_es_ES": "Ídolo de defensor valeroso", "name_ru_RU": "Идол защитника искателя славы", "name_it_IT": "Idolo della Difesa Prode", "name_pt_PT": "Ídolo do Defensor Valente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73170, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valiant Defender's Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Valiant Defender's Stone", "name_ko_KR": "수호자의 용맹전사 돌", "name_fr_FR": "Pierre de défenseur vaillante", "name_de_DE": "Ritterstein des Verteidigers", "name_zh_CN": "威武防御者之石", "name_es_ES": "Piedra de defensor valerosa", "name_ru_RU": "Камень защитника искателя славы", "name_it_IT": "Pietra della Difesa Prode", "name_pt_PT": "Pedra do Defensor Valente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73491, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9708999991416931, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Insignia of Victory", "name_ko_KR": "격변한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur cataclysmique", "name_de_DE": "Siegesinsigne des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador cataclísmico", "name_ru_RU": "Знак победы гладиатора Катаклизма", "name_it_IT": "Fregio della Vittoria del Gladiatore Cataclismico", "name_pt_PT": "Insígnia de Vitória do Gladiador Cataclísmico", "on_use": false, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73496, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9598000049591064, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Badge of Victory", "name_ko_KR": "격변한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur cataclysmique", "name_de_DE": "Siegesabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador cataclísmico", "name_ru_RU": "Жетон победы гладиатора Катаклизма", "name_it_IT": "Distintivo della Vittoria del Gladiatore Cataclismico", "name_pt_PT": "Distintivo de Vitória do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73497, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.967199981212616, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Insignia of Dominance", "name_ko_KR": "격변한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur cataclysmique", "name_de_DE": "Vorherrschaftsinsigne des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador cataclísmico", "name_ru_RU": "Знак господства гладиатора Катаклизма", "name_it_IT": "Fregio della Dominazione del Gladiatore Cataclismico", "name_pt_PT": "Insígnia de Dominância do Gladiador Cataclísmico", "on_use": false, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73498, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9635000228881836, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Badge of Dominance", "name_ko_KR": "격변한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur cataclysmique", "name_de_DE": "Vorherrschaftsabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador cataclísmico", "name_ru_RU": "Жетон господства гладиатора Катаклизма", "name_it_IT": "Distintivo della Dominazione del Gladiatore Cataclismico", "name_pt_PT": "Distintivo de Dominância do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73499, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Symbol of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.011299967765808, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Symbol of Meditation", "name_ko_KR": "격변한 검투사의 명상 상징", "name_fr_FR": "Symbole de méditation du gladiateur cataclysmique", "name_de_DE": "Meditationssysmbol des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的冥想符记", "name_es_ES": "Símbolo de meditación de Gladiador cataclísmico", "name_ru_RU": "Символ медитации гладиатора Катаклизма", "name_it_IT": "Simbolo della Meditazione del Gladiatore Cataclismico", "name_pt_PT": "Símbolo da Meditação do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73500, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Symbol of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.007599949836731, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Symbol of Tenacity", "name_ko_KR": "격변한 검투사의 불굴 상징", "name_fr_FR": "Symbole de ténacité du gladiateur cataclysmique", "name_de_DE": "Hartnäckigkeitssymbol des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的顽强符记", "name_es_ES": "Símbolo de tenacidad de Gladiador cataclísmico", "name_ru_RU": "Символ стойкости гладиатора Катаклизма", "name_it_IT": "Simbolo della Tenacia del Gladiatore Cataclismico", "name_pt_PT": "Símbolo da Tenacidade do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73501, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Symbol of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0039000511169434, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Symbol of Cruelty", "name_ko_KR": "격변한 검투사의 잔혹 상징", "name_fr_FR": "Symbole de cruauté du gladiateur cataclysmique", "name_de_DE": "Grausamkeitssymbol des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的残酷符记", "name_es_ES": "Símbolo de crueldad de Gladiador cataclísmico", "name_ru_RU": "Символ жестокости гладиатора Катаклизма", "name_it_IT": "Simbolo dell'Atrocità del Gladiatore Cataclismico", "name_pt_PT": "Símbolo da Crueldade do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73534, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 528384, "flags_2": 24585, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73535, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Meditation", "name_ko_KR": "격변한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur cataclysmique", "name_de_DE": "Meditationsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador cataclísmico", "name_ru_RU": "Медальон медитации гладиатора Катаклизма", "name_it_IT": "Medaglione della Meditazione del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Meditação do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73535, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003999471664429, "flags_1": 528384, "flags_2": 24586, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73534, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Meditation", "name_ko_KR": "격변한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur cataclysmique", "name_de_DE": "Meditationsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador cataclísmico", "name_ru_RU": "Медальон медитации гладиатора Катаклизма", "name_it_IT": "Medaglione della Meditazione del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Meditação do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73536, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73537, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Tenacity", "name_ko_KR": "격변한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur cataclysmique", "name_de_DE": "Hartnäckigkeitsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador cataclísmico", "name_ru_RU": "Медальон упорства гладиатора Катаклизма", "name_it_IT": "Medaglione della Tenacia del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73537, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73536, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Tenacity", "name_ko_KR": "격변한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur cataclysmique", "name_de_DE": "Hartnäckigkeitsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador cataclísmico", "name_ru_RU": "Медальон упорства гладиатора Катаклизма", "name_it_IT": "Medaglione della Tenacia del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73538, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007699966430664, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73539, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Cruelty", "name_ko_KR": "격변한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur cataclysmique", "name_de_DE": "Grausamkeitsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador cataclísmico", "name_ru_RU": "Медальон жестокости гладиатора Катаклизма", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73539, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9966999888420105, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73538, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Cruelty", "name_ko_KR": "격변한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur cataclysmique", "name_de_DE": "Grausamkeitsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador cataclísmico", "name_ru_RU": "Медальон жестокости гладиатора Катаклизма", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Mark of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0002000331878662, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Mark of Meditation", "name_ko_KR": "격변한 검투사의 명상 징표", "name_fr_FR": "Marque de méditation du gladiateur cataclysmique", "name_de_DE": "Meditationsabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的冥想印记", "name_es_ES": "Marca de meditación de Gladiador cataclísmico", "name_ru_RU": "Знак медитации гладиатора Катаклизма", "name_it_IT": "Contrassegno della Meditazione del Gladiatore Cataclismico", "name_pt_PT": "Marca da Meditação do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73578, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Mark of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9965999722480774, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Mark of Tenacity", "name_ko_KR": "격변한 검투사의 불굴 징표", "name_fr_FR": "Marque de ténacité du gladiateur cataclysmique", "name_de_DE": "Hartnäckigkeitsabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的顽强印记", "name_es_ES": "Marca de tenacidad de Gladiador cataclísmico", "name_ru_RU": "Знак стойкости гладиатора Катаклизма", "name_it_IT": "Contrassegno della Tenacia del Gladiatore Cataclismico", "name_pt_PT": "Marca da Tenacidade do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Mark of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.992900013923645, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Mark of Cruelty", "name_ko_KR": "격변한 검투사의 잔혹 징표", "name_fr_FR": "Marque de cruauté du gladiateur cataclysmique", "name_de_DE": "Grausamkeitsabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的残酷印记", "name_es_ES": "Marca de crueldad de Gladiador cataclísmico", "name_ru_RU": "Знак жестокости гладиатора Катаклизма", "name_it_IT": "Contrassegno dell'Atrocità del Gladiatore Cataclismico", "name_pt_PT": "Marca da Crueldade do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73591, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0224000215530396, "flags_1": 528384, "flags_2": 24584, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Emblem of Meditation", "name_ko_KR": "격변한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur cataclysmique", "name_de_DE": "Meditationsemblem des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador cataclísmico", "name_ru_RU": "Эмблема медитации гладиатора Катаклизма", "name_it_IT": "Emblema della Meditazione del Gladiatore Cataclismico", "name_pt_PT": "Emblema da Meditação do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73592, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0261000394821167, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Emblem of Tenacity", "name_ko_KR": "격변한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur cataclysmique", "name_de_DE": "Hartnäckigkeitsemblem des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador cataclísmico", "name_ru_RU": "Эмблема упорства гладиатора Катаклизма", "name_it_IT": "Emblema della Tenacia del Gladiatore Cataclismico", "name_pt_PT": "Emblema da Tenacidade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73593, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0187000036239624, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Emblem of Cruelty", "name_ko_KR": "격변한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur cataclysmique", "name_de_DE": "Grausamkeitsemblem des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador cataclísmico", "name_ru_RU": "Эмблема жестокости гладиатора Катаклизма", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Cataclismico", "name_pt_PT": "Emblema da Crueldade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73643, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Insignia of Conquest", "name_ko_KR": "격변한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur cataclysmique", "name_de_DE": "Eroberungsinsigne des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador cataclísmico", "name_ru_RU": "Знак завоевания гладиатора Катаклизма", "name_it_IT": "Fregio della Conquista del Gladiatore Cataclismico", "name_pt_PT": "Insígnia de Conquista do Gladiador Cataclísmico", "on_use": false, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73648, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9562000036239624, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Badge of Conquest", "name_ko_KR": "격변한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur cataclysmique", "name_de_DE": "Eroberungsabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador cataclísmico", "name_ru_RU": "Жетон завоевания гладиатора Катаклизма", "name_it_IT": "Distintivo della Conquista del Gladiatore Cataclismico", "name_pt_PT": "Distintivo de Conquista do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 74034, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pit Fighter", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 29760, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10031, "buy_price": 40124, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9787999987602234, "flags_1": 64, "flags_2": 28672, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Pit Fighter", "name_ko_KR": "사투장 싸움꾼", "name_fr_FR": "Combattant de la fosse", "name_de_DE": "Grubenkämpfer", "name_zh_CN": "格斗士", "name_es_ES": "Luchador de fosa", "name_ru_RU": "Боец арены", "name_it_IT": "Combattente della Fossa", "name_pt_PT": "Berloque de Luta Livre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 74035, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Master Pit Fighter", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10031, "buy_price": 40124, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Master Pit Fighter", "name_ko_KR": "사투장 싸움대장", "name_fr_FR": "Maître combattant de la fosse", "name_de_DE": "Meisterhafter Grubenkämpfer", "name_zh_CN": "格斗大师", "name_es_ES": "Maestro luchador de fosa", "name_ru_RU": "Мастер-боец арены", "name_it_IT": "Gran Combattente della Fossa", "name_pt_PT": "Mestre da Luta Livre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 75274, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Zen Alchemist Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9678000211715698, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2481, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Zen Alchemist Stone", "name_ko_KR": "참선의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste zen", "name_de_DE": "Meditativer Alchemistenstein", "name_zh_CN": "禅师的炼金石", "name_es_ES": "Piedra de alquimista zen", "name_ru_RU": "Алхимический дзен-камень", "name_it_IT": "Pietra Alchemica Zen", "name_pt_PT": "Pedra do Alquimista Zen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kiroptyric Sigil", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 181, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 3127500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 4096, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Kiroptyric Sigil", "name_ko_KR": "익수류 인장", "name_fr_FR": "Cachet kiroptyrique", "name_de_DE": "Kiroptyrisches Siegel", "name_zh_CN": "基洛普泰里克的印记", "name_es_ES": "Sigilo quiroptérico", "name_ru_RU": "Кироптировая печать", "name_it_IT": "Suggello Kiroptirico", "name_pt_PT": "Signo Quiroptírico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77114, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Wishes", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 180, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 3012800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 4096, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bottled Wishes", "name_ko_KR": "병에 담긴 소원", "name_fr_FR": "Souhait en bouteille", "name_de_DE": "Wünsche in der Flasche", "name_zh_CN": "瓶中的愿望", "name_es_ES": "Deseos embotellados", "name_ru_RU": "Желания в бутылке", "name_it_IT": "Desideri in Bottiglia", "name_pt_PT": "Desejos Engarrafados", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reflection of the Light", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 179, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 3035100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 4096, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Reflection of the Light", "name_ko_KR": "빛의 투영", "name_fr_FR": "Reflet de la Lumière", "name_de_DE": "Lichtreflexion", "name_zh_CN": "圣光投影", "name_es_ES": "Reflejo de luz", "name_ru_RU": "Отражение Света", "name_it_IT": "Riflesso della Luce", "name_pt_PT": "Reflexo da Luz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rotting Skull", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 182, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 3138800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 4096, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Rotting Skull", "name_ko_KR": "썩어가는 해골", "name_fr_FR": "Crâne putréfié", "name_de_DE": "Verrottender Schädel", "name_zh_CN": "腐败之颅", "name_es_ES": "Calavera putrefacta", "name_ru_RU": "Гниющий череп", "name_it_IT": "Teschio Marcio", "name_pt_PT": "Caveira Apodrecida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fire of the Deep", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 183, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 2990200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 4096, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fire of the Deep", "name_ko_KR": "심연의 불", "name_fr_FR": "Feu des profondeurs", "name_de_DE": "Feuer aus den Tiefen", "name_zh_CN": "地渊之烈火", "name_es_ES": "Fuego de las profundidades", "name_ru_RU": "Огонь глубин", "name_it_IT": "Fiamma del Profondo", "name_pt_PT": "Fogo das Profundezas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77197, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wrath of Unchaining", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 185, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450705, "buy_price": 2253528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Wrath of Unchaining", "name_ko_KR": "탈피의 분노", "name_fr_FR": "Fureur du déchaînement", "name_de_DE": "Zorn der Entfesselten", "name_zh_CN": "无拘之怒火", "name_es_ES": "Cólera de desencadenamiento", "name_ru_RU": "Гнев освобождения от цепей", "name_it_IT": "Ira della Libertà", "name_pt_PT": "Ira do Desacorrentar", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77198, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Will of Unbinding", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 187, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450705, "buy_price": 2253528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Will of Unbinding", "name_ko_KR": "해체의 결의", "name_fr_FR": "Volonté de déliement", "name_de_DE": "Wille der Loslösung", "name_zh_CN": "不羁之意志", "name_es_ES": "Voluntad de desvinculación", "name_ru_RU": "Воля несгибаемости", "name_it_IT": "Volontà Svincolante", "name_pt_PT": "Vontade do Desprender", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77199, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Unliving", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 188, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450705, "buy_price": 2253528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Unliving", "name_ko_KR": "망자의 심장", "name_fr_FR": "Cœur de non-vie", "name_de_DE": "Herz der Leblosen", "name_zh_CN": "不死者之心", "name_es_ES": "Corazón del sin vida", "name_ru_RU": "Сердце неживого", "name_it_IT": "Cuore Senza Vita", "name_pt_PT": "Coração do Desviver", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77200, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Unmaking", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 184, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450705, "buy_price": 2253528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Unmaking", "name_ko_KR": "사멸의 눈", "name_fr_FR": "Oeil d'anéantissement", "name_de_DE": "Auge der Auslöschung", "name_zh_CN": "灭世之魔眼", "name_es_ES": "Ojo de destrucción", "name_ru_RU": "Око рассоздания", "name_it_IT": "Occhio della Decadenza", "name_pt_PT": "Olho do Desfazer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77201, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resolve of Undying", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 186, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450705, "buy_price": 2253528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Resolve of Undying", "name_ko_KR": "불멸의 결단", "name_fr_FR": "Résolution de l'immortel", "name_de_DE": "Entschlossenheit des Unsterblichen", "name_zh_CN": "不朽者之毅", "name_es_ES": "Resolución de eternidad", "name_ru_RU": "Решимость Неумирающего", "name_it_IT": "Risolutezza Imperitura", "name_pt_PT": "Resolução do Desmorrer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77202, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Starcatcher Compass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 196, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Starcatcher Compass", "name_ko_KR": "별잡이 나침반", "name_fr_FR": "Boussole de l'attrapeur d'étoiles", "name_de_DE": "Kompass des Sternenfängers", "name_zh_CN": "摘星罗盘", "name_es_ES": "Brújula cazaestrellas", "name_ru_RU": "Компас ловца звезд", "name_it_IT": "Bussola Stellare", "name_pt_PT": "Compasso do Caça-estrelas", "on_use": false, "id_encounter": 332, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77203, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Corrupted Mind", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 198, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Insignia of the Corrupted Mind", "name_ko_KR": "타락한 마음의 휘장", "name_fr_FR": "Insigne de l'esprit corrompu", "name_de_DE": "Insigne des korrumpierten Gedanken", "name_zh_CN": "堕落心灵印记", "name_es_ES": "Insignia de mente corrupta", "name_ru_RU": "Знак отличия испорченного разума", "name_it_IT": "Fregio della Mente Corrotta", "name_pt_PT": "Insígnia da Mente Corrompida", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77204, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of the Seven Signs", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 197, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Seal of the Seven Signs", "name_ko_KR": "일곱 신호의 인장", "name_fr_FR": "Sceau des sept signes", "name_de_DE": "Siegel der sieben Zeichen", "name_zh_CN": "七兆封印", "name_es_ES": "Sello de los siete símbolos", "name_ru_RU": "Печать семи знамений", "name_it_IT": "Sigillo dei Sette Segni", "name_pt_PT": "Selo dos Sete Sinais", "on_use": false, "id_encounter": 324, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77205, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Creche of the Final Dragon", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 189, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 2129210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Creche of the Final Dragon", "name_ko_KR": "마지막 용의 보금자리", "name_fr_FR": "Crèche du dragon final", "name_de_DE": "Krippe des letzten Drachen", "name_zh_CN": "末代龙裔之源", "name_es_ES": "Nido del último dragón", "name_ru_RU": "Колыбель последнего дракона", "name_it_IT": "Nido del Drago Finale", "name_pt_PT": "Cajila do Dragão Final", "on_use": false, "id_encounter": 331, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77206, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulshifter Vortex", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 190, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579024, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Soulshifter Vortex", "name_ko_KR": "영혼변형자 소용돌이", "name_fr_FR": "Vortex change-l'âme", "name_de_DE": "Vortex des Seelenwandlers", "name_zh_CN": "移魂漩涡", "name_es_ES": "Vórtice transfigurador de almas", "name_ru_RU": "Вихрь смещения душ", "name_it_IT": "Vortice Mutanima", "name_pt_PT": "Vórtice Mutalmas", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77207, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 192, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Shadows", "name_ko_KR": "그림자의 약병", "name_fr_FR": "Fiole d'ombres", "name_de_DE": "Phiole voller Schatten", "name_zh_CN": "暗影之瓶", "name_es_ES": "Vial de sombras", "name_ru_RU": "Фиал Теней", "name_it_IT": "Fiala delle Ombre", "name_pt_PT": "Ampola de Sombras", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77208, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cunning of the Cruel", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 194, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cunning of the Cruel", "name_ko_KR": "잔혹한 자의 교활함", "name_fr_FR": "Ruse du sadique", "name_de_DE": "Listigkeit des Grausamen", "name_zh_CN": "残酷者的诡计", "name_es_ES": "Astucia del cruel", "name_ru_RU": "Хитрость жестоких", "name_it_IT": "Astuzia del Crudele", "name_pt_PT": "Astúcia dos Cruéis", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77209, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windward Heart", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 195, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Windward Heart", "name_ko_KR": "바람맞이 심장", "name_fr_FR": "Cœur garde-vent", "name_de_DE": "Herz der Windseite", "name_zh_CN": "临风之心", "name_es_ES": "Corazón guardavientos", "name_ru_RU": "Противостоящее ветрам сердце", "name_it_IT": "Cuore Guardiavento", "name_pt_PT": "Coração da Proteção Eólica", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77210, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bone-Link Fetish", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 191, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bone-Link Fetish", "name_ko_KR": "뼈고리 우상", "name_fr_FR": "Fétiche mailles-d'os", "name_de_DE": "Gekettelter Knochenfetisch", "name_zh_CN": "骨链雕像", "name_es_ES": "Fetiche de vínculo de huesos", "name_ru_RU": "Фетиш костяной сцепки", "name_it_IT": "Feticcio di Cartilagine", "name_pt_PT": "Fetiche de Elos Ósseos", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77211, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Indomitable Pride", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 193, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Indomitable Pride", "name_ko_KR": "불굴의 긍지", "name_fr_FR": "Fierté indomptable", "name_de_DE": "Unbeugsamer Stolz", "name_zh_CN": "不屈之傲", "name_es_ES": "Orgullo indómito", "name_ru_RU": "Неукротимая гордость", "name_it_IT": "Orgoglio Indomabile", "name_pt_PT": "Orgulho Indomável", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77530, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ghost Iron Dragonling", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9531000256538391, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 6, "socket_color_2": 6, "socket_color_3": 6, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 3, "name_en_US": "Ghost Iron Dragonling", "name_ko_KR": "유령무쇠 기계용", "name_fr_FR": "Petit dragon en ectofer", "name_de_DE": "Geistereisendrachling", "name_zh_CN": "幽冥铁幼龙", "name_es_ES": "Dragonizo de hierro fantasma", "name_ru_RU": "Дракончик из призрачного железа", "name_it_IT": "Minidrago di Ectoferro", "name_pt_PT": "Dragonete de Ferro Fantasma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of the Seven Signs", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 197, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Seal of the Seven Signs", "name_ko_KR": "일곱 신호의 인장", "name_fr_FR": "Sceau des sept signes", "name_de_DE": "Siegel der sieben Zeichen", "name_zh_CN": "七兆封印", "name_es_ES": "Sello de los siete símbolos", "name_ru_RU": "Печать семи знамений", "name_it_IT": "Sigillo dei Sette Segni", "name_pt_PT": "Selo dos Sete Sinais", "on_use": false, "id_encounter": 324, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77970, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulshifter Vortex", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 190, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579024, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1571, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Soulshifter Vortex", "name_ko_KR": "영혼변형자 소용돌이", "name_fr_FR": "Vortex change-l'âme", "name_de_DE": "Vortex des Seelenwandlers", "name_zh_CN": "移魂漩涡", "name_es_ES": "Vórtice transfigurador de almas", "name_ru_RU": "Вихрь смещения душ", "name_it_IT": "Vortice Mutanima", "name_pt_PT": "Vórtice Mutalmas", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77971, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Corrupted Mind", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 198, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Insignia of the Corrupted Mind", "name_ko_KR": "타락한 마음의 휘장", "name_fr_FR": "Insigne de l'esprit corrompu", "name_de_DE": "Insigne des korrumpierten Gedanken", "name_zh_CN": "堕落心灵印记", "name_es_ES": "Insignia de mente corrupta", "name_ru_RU": "Знак отличия испорченного разума", "name_it_IT": "Fregio della Mente Corrotta", "name_pt_PT": "Insígnia da Mente Corrompida", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77972, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Creche of the Final Dragon", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 189, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Creche of the Final Dragon", "name_ko_KR": "마지막 용의 보금자리", "name_fr_FR": "Crèche du dragon final", "name_de_DE": "Krippe des letzten Drachen", "name_zh_CN": "末代龙裔之源", "name_es_ES": "Nido del último dragón", "name_ru_RU": "Колыбель последнего дракона", "name_it_IT": "Nido del Drago Finale", "name_pt_PT": "Cajila do Dragão Final", "on_use": false, "id_encounter": 331, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77973, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Starcatcher Compass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 196, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1612, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Starcatcher Compass", "name_ko_KR": "별잡이 나침반", "name_fr_FR": "Boussole de l'attrapeur d'étoiles", "name_de_DE": "Kompass des Sternenfängers", "name_zh_CN": "摘星罗盘", "name_es_ES": "Brújula cazaestrellas", "name_ru_RU": "Компас ловца звезд", "name_it_IT": "Bussola Stellare", "name_pt_PT": "Compasso do Caça-estrelas", "on_use": false, "id_encounter": 332, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77974, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wrath of Unchaining", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 185, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432131, "buy_price": 2160655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1612, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Wrath of Unchaining", "name_ko_KR": "탈피의 분노", "name_fr_FR": "Fureur du déchaînement", "name_de_DE": "Zorn der Entfesselten", "name_zh_CN": "无拘之怒火", "name_es_ES": "Cólera de desencadenamiento", "name_ru_RU": "Гнев освобождения от цепей", "name_it_IT": "Ira della Libertà", "name_pt_PT": "Ira do Desacorrentar", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77975, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Will of Unbinding", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 187, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432131, "buy_price": 2160655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Will of Unbinding", "name_ko_KR": "해체의 결의", "name_fr_FR": "Volonté de déliement", "name_de_DE": "Wille der Loslösung", "name_zh_CN": "不羁之意志", "name_es_ES": "Voluntad de desvinculación", "name_ru_RU": "Воля несгибаемости", "name_it_IT": "Volontà Svincolante", "name_pt_PT": "Vontade do Desprender", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77976, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Unliving", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 188, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432131, "buy_price": 2160655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Unliving", "name_ko_KR": "망자의 심장", "name_fr_FR": "Cœur de non-vie", "name_de_DE": "Herz der Leblosen", "name_zh_CN": "不死者之心", "name_es_ES": "Corazón del sin vida", "name_ru_RU": "Сердце неживого", "name_it_IT": "Cuore Senza Vita", "name_pt_PT": "Coração do Desviver", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77977, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Unmaking", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 184, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432131, "buy_price": 2160655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Unmaking", "name_ko_KR": "사멸의 눈", "name_fr_FR": "Oeil d'anéantissement", "name_de_DE": "Auge der Auslöschung", "name_zh_CN": "灭世之魔眼", "name_es_ES": "Ojo de destrucción", "name_ru_RU": "Око рассоздания", "name_it_IT": "Occhio della Decadenza", "name_pt_PT": "Olho do Desfazer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resolve of Undying", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 186, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432131, "buy_price": 2160655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1571, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Resolve of Undying", "name_ko_KR": "불멸의 결단", "name_fr_FR": "Résolution de l'immortel", "name_de_DE": "Entschlossenheit des Unsterblichen", "name_zh_CN": "不朽者之毅", "name_es_ES": "Resolución de eternidad", "name_ru_RU": "Решимость Неумирающего", "name_it_IT": "Risolutezza Imperitura", "name_pt_PT": "Resolução do Desmorrer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77979, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 192, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1612, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Shadows", "name_ko_KR": "그림자의 약병", "name_fr_FR": "Fiole d'ombres", "name_de_DE": "Phiole voller Schatten", "name_zh_CN": "暗影之瓶", "name_es_ES": "Vial de sombras", "name_ru_RU": "Фиал Теней", "name_it_IT": "Fiala delle Ombre", "name_pt_PT": "Ampola de Sombras", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77980, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cunning of the Cruel", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 194, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cunning of the Cruel", "name_ko_KR": "잔혹한 자의 교활함", "name_fr_FR": "Ruse du sadique", "name_de_DE": "Listigkeit des Grausamen", "name_zh_CN": "残酷者的诡计", "name_es_ES": "Astucia del cruel", "name_ru_RU": "Хитрость жестоких", "name_it_IT": "Astuzia del Crudele", "name_pt_PT": "Astúcia dos Cruéis", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77981, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windward Heart", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 195, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Windward Heart", "name_ko_KR": "바람맞이 심장", "name_fr_FR": "Cœur garde-vent", "name_de_DE": "Herz der Windseite", "name_zh_CN": "临风之心", "name_es_ES": "Corazón guardavientos", "name_ru_RU": "Противостоящее ветрам сердце", "name_it_IT": "Cuore Guardiavento", "name_pt_PT": "Coração da Proteção Eólica", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77982, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bone-Link Fetish", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 191, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bone-Link Fetish", "name_ko_KR": "뼈고리 우상", "name_fr_FR": "Fétiche mailles-d'os", "name_de_DE": "Gekettelter Knochenfetisch", "name_zh_CN": "骨链雕像", "name_es_ES": "Fetiche de vínculo de huesos", "name_ru_RU": "Фетиш костяной сцепки", "name_it_IT": "Feticcio di Cartilagine", "name_pt_PT": "Fetiche de Elos Ósseos", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77983, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Indomitable Pride", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 193, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1571, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Indomitable Pride", "name_ko_KR": "불굴의 긍지", "name_fr_FR": "Fierté indomptable", "name_de_DE": "Unbeugsamer Stolz", "name_zh_CN": "不屈之傲", "name_es_ES": "Orgullo indómito", "name_ru_RU": "Неукротимая гордость", "name_it_IT": "Orgoglio Indomabile", "name_pt_PT": "Orgulho Indomável", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kiroptyric Sigil", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 181, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Kiroptyric Sigil", "name_ko_KR": "익수류 인장", "name_fr_FR": "Cachet kiroptyrique", "name_de_DE": "Kiroptyrisches Siegel", "name_zh_CN": "基洛普泰里克的印记", "name_es_ES": "Sigilo quiroptérico", "name_ru_RU": "Кироптировая печать", "name_it_IT": "Suggello Kiroptirico", "name_pt_PT": "Signo Quiroptírico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77985, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Wishes", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 180, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bottled Wishes", "name_ko_KR": "병에 담긴 소원", "name_fr_FR": "Souhait en bouteille", "name_de_DE": "Wünsche in der Flasche", "name_zh_CN": "瓶中的愿望", "name_es_ES": "Deseos embotellados", "name_ru_RU": "Желания в бутылке", "name_it_IT": "Desideri in Bottiglia", "name_pt_PT": "Desejos Engarrafados", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77986, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reflection of the Light", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 179, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Reflection of the Light", "name_ko_KR": "빛의 투영", "name_fr_FR": "Reflet de la Lumière", "name_de_DE": "Lichtreflexion", "name_zh_CN": "圣光投影", "name_es_ES": "Reflejo de luz", "name_ru_RU": "Отражение Света", "name_it_IT": "Riflesso della Luce", "name_pt_PT": "Reflexo da Luz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77987, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rotting Skull", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 182, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Rotting Skull", "name_ko_KR": "썩어가는 해골", "name_fr_FR": "Crâne putréfié", "name_de_DE": "Verrottender Schädel", "name_zh_CN": "腐败之颅", "name_es_ES": "Calavera putrefacta", "name_ru_RU": "Гниющий череп", "name_it_IT": "Teschio Marcio", "name_pt_PT": "Caveira Apodrecida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77988, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fire of the Deep", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 183, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fire of the Deep", "name_ko_KR": "심연의 불", "name_fr_FR": "Feu des profondeurs", "name_de_DE": "Feuer aus den Tiefen", "name_zh_CN": "地渊之烈火", "name_es_ES": "Fuego de las profundidades", "name_ru_RU": "Огонь глубин", "name_it_IT": "Fiamma del Profondo", "name_pt_PT": "Fogo das Profundezas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77989, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of the Seven Signs", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 197, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 8, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Seal of the Seven Signs", "name_ko_KR": "일곱 신호의 인장", "name_fr_FR": "Sceau des sept signes", "name_de_DE": "Siegel der sieben Zeichen", "name_zh_CN": "七兆封印", "name_es_ES": "Sello de los siete símbolos", "name_ru_RU": "Печать семи знамений", "name_it_IT": "Sigillo dei Sette Segni", "name_pt_PT": "Selo dos Sete Sinais", "on_use": false, "id_encounter": 324, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77990, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulshifter Vortex", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 190, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 8, "flags_2": 33579024, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Soulshifter Vortex", "name_ko_KR": "영혼변형자 소용돌이", "name_fr_FR": "Vortex change-l'âme", "name_de_DE": "Vortex des Seelenwandlers", "name_zh_CN": "移魂漩涡", "name_es_ES": "Vórtice transfigurador de almas", "name_ru_RU": "Вихрь смещения душ", "name_it_IT": "Vortice Mutanima", "name_pt_PT": "Vórtice Mutalmas", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77991, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Corrupted Mind", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 198, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 8, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Insignia of the Corrupted Mind", "name_ko_KR": "타락한 마음의 휘장", "name_fr_FR": "Insigne de l'esprit corrompu", "name_de_DE": "Insigne des korrumpierten Gedanken", "name_zh_CN": "堕落心灵印记", "name_es_ES": "Insignia de mente corrupta", "name_ru_RU": "Знак отличия испорченного разума", "name_it_IT": "Fregio della Mente Corrotta", "name_pt_PT": "Insígnia da Mente Corrompida", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77992, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Creche of the Final Dragon", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 189, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 8, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Creche of the Final Dragon", "name_ko_KR": "마지막 용의 보금자리", "name_fr_FR": "Crèche du dragon final", "name_de_DE": "Krippe des letzten Drachen", "name_zh_CN": "末代龙裔之源", "name_es_ES": "Nido del último dragón", "name_ru_RU": "Колыбель последнего дракона", "name_it_IT": "Nido del Drago Finale", "name_pt_PT": "Cajila do Dragão Final", "on_use": false, "id_encounter": 331, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77993, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Starcatcher Compass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 196, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 8, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Starcatcher Compass", "name_ko_KR": "별잡이 나침반", "name_fr_FR": "Boussole de l'attrapeur d'étoiles", "name_de_DE": "Kompass des Sternenfängers", "name_zh_CN": "摘星罗盘", "name_es_ES": "Brújula cazaestrellas", "name_ru_RU": "Компас ловца звезд", "name_it_IT": "Bussola Stellare", "name_pt_PT": "Compasso do Caça-estrelas", "on_use": false, "id_encounter": 332, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77994, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wrath of Unchaining", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 185, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482131, "buy_price": 1928524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 8, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Wrath of Unchaining", "name_ko_KR": "탈피의 분노", "name_fr_FR": "Fureur du déchaînement", "name_de_DE": "Zorn der Entfesselten", "name_zh_CN": "无拘之怒火", "name_es_ES": "Cólera de desencadenamiento", "name_ru_RU": "Гнев освобождения от цепей", "name_it_IT": "Ira della Libertà", "name_pt_PT": "Ira do Desacorrentar", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Will of Unbinding", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 187, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482131, "buy_price": 1928524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 8, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Will of Unbinding", "name_ko_KR": "해체의 결의", "name_fr_FR": "Volonté de déliement", "name_de_DE": "Wille der Loslösung", "name_zh_CN": "不羁之意志", "name_es_ES": "Voluntad de desvinculación", "name_ru_RU": "Воля несгибаемости", "name_it_IT": "Volontà Svincolante", "name_pt_PT": "Vontade do Desprender", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77996, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Unliving", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 188, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482131, "buy_price": 1928524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 8, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Unliving", "name_ko_KR": "망자의 심장", "name_fr_FR": "Cœur de non-vie", "name_de_DE": "Herz der Leblosen", "name_zh_CN": "不死者之心", "name_es_ES": "Corazón del sin vida", "name_ru_RU": "Сердце неживого", "name_it_IT": "Cuore Senza Vita", "name_pt_PT": "Coração do Desviver", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77997, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Unmaking", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 184, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482131, "buy_price": 1928524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 8, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Unmaking", "name_ko_KR": "사멸의 눈", "name_fr_FR": "Oeil d'anéantissement", "name_de_DE": "Auge der Auslöschung", "name_zh_CN": "灭世之魔眼", "name_es_ES": "Ojo de destrucción", "name_ru_RU": "Око рассоздания", "name_it_IT": "Occhio della Decadenza", "name_pt_PT": "Olho do Desfazer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77998, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resolve of Undying", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 186, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482131, "buy_price": 1928524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 8, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Resolve of Undying", "name_ko_KR": "불멸의 결단", "name_fr_FR": "Résolution de l'immortel", "name_de_DE": "Entschlossenheit des Unsterblichen", "name_zh_CN": "不朽者之毅", "name_es_ES": "Resolución de eternidad", "name_ru_RU": "Решимость Неумирающего", "name_it_IT": "Risolutezza Imperitura", "name_pt_PT": "Resolução do Desmorrer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77999, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 192, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 8, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Shadows", "name_ko_KR": "그림자의 약병", "name_fr_FR": "Fiole d'ombres", "name_de_DE": "Phiole voller Schatten", "name_zh_CN": "暗影之瓶", "name_es_ES": "Vial de sombras", "name_ru_RU": "Фиал Теней", "name_it_IT": "Fiala delle Ombre", "name_pt_PT": "Ampola de Sombras", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 78000, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cunning of the Cruel", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 194, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 8, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cunning of the Cruel", "name_ko_KR": "잔혹한 자의 교활함", "name_fr_FR": "Ruse du sadique", "name_de_DE": "Listigkeit des Grausamen", "name_zh_CN": "残酷者的诡计", "name_es_ES": "Astucia del cruel", "name_ru_RU": "Хитрость жестоких", "name_it_IT": "Astuzia del Crudele", "name_pt_PT": "Astúcia dos Cruéis", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 78001, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windward Heart", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 195, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 8, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Windward Heart", "name_ko_KR": "바람맞이 심장", "name_fr_FR": "Cœur garde-vent", "name_de_DE": "Herz der Windseite", "name_zh_CN": "临风之心", "name_es_ES": "Corazón guardavientos", "name_ru_RU": "Противостоящее ветрам сердце", "name_it_IT": "Cuore Guardiavento", "name_pt_PT": "Coração da Proteção Eólica", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 78002, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bone-Link Fetish", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 191, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 8, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bone-Link Fetish", "name_ko_KR": "뼈고리 우상", "name_fr_FR": "Fétiche mailles-d'os", "name_de_DE": "Gekettelter Knochenfetisch", "name_zh_CN": "骨链雕像", "name_es_ES": "Fetiche de vínculo de huesos", "name_ru_RU": "Фетиш костяной сцепки", "name_it_IT": "Feticcio di Cartilagine", "name_pt_PT": "Fetiche de Elos Ósseos", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 78003, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Indomitable Pride", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 193, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 8, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Indomitable Pride", "name_ko_KR": "불굴의 긍지", "name_fr_FR": "Fierté indomptable", "name_de_DE": "Unbeugsamer Stolz", "name_zh_CN": "不屈之傲", "name_es_ES": "Orgullo indómito", "name_ru_RU": "Неукротимая гордость", "name_it_IT": "Orgoglio Indomabile", "name_pt_PT": "Orgulho Indomável", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 79327, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 206, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0127999782562256, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Relic of Xuen", "name_ko_KR": "쉬엔의 성물", "name_fr_FR": "Relique de Xuen", "name_de_DE": "Reliquie von Xuen", "name_zh_CN": "雪怒圣物", "name_es_ES": "Reliquia de Xuen", "name_ru_RU": "Реликвия Сюэня", "name_it_IT": "Reliquia di Xuen", "name_pt_PT": "Relíquia de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 79328, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 206, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0163999795913696, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Relic of Xuen", "name_ko_KR": "쉬엔의 성물", "name_fr_FR": "Relique de Xuen", "name_de_DE": "Reliquie von Xuen", "name_zh_CN": "雪怒圣物", "name_es_ES": "Reliquia de Xuen", "name_ru_RU": "Реликвия Сюэня", "name_it_IT": "Reliquia di Xuen", "name_pt_PT": "Relíquia de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 79329, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Niuzao", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 206, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0200999975204468, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Relic of Niuzao", "name_ko_KR": "니우짜오의 성물", "name_fr_FR": "Relique de Niuzao", "name_de_DE": "Relikt von Niuzao", "name_zh_CN": "砮皂圣物", "name_es_ES": "Reliquia de Niuzao", "name_ru_RU": "Реликвия Нюцзао", "name_it_IT": "Reliquia di Niuzao", "name_pt_PT": "Relíquia de Niuzao", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 79330, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Chi-Ji", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 206, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8068, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023800015449524, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Relic of Chi-Ji", "name_ko_KR": "츠지의 성물", "name_fr_FR": "Relique de Chi Ji", "name_de_DE": "Relikt von Chi-Ji", "name_zh_CN": "赤精圣物", "name_es_ES": "Reliquia de Chi-Ji", "name_ru_RU": "Реликвия Чи-Цзи", "name_it_IT": "Reliquia di Chi-Ji", "name_pt_PT": "Relíquia de Chi-Ji", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 79331, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Yu'lon", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 206, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027400016784668, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Relic of Yu'lon", "name_ko_KR": "위론의 성물", "name_fr_FR": "Relique de Yu'lon", "name_de_DE": "Reliquie von Yu'lon", "name_zh_CN": "玉珑圣物", "name_es_ES": "Reliquia de Yu'lon", "name_ru_RU": "Реликвия Юй-лун", "name_it_IT": "Reliquia di Yu'lon", "name_pt_PT": "Relíquia de Yu'lon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80773, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Singing Cricket Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 348, "buy_price": 1741, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017999410629272, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Singing Cricket Medallion", "name_ko_KR": "노래하는 귀뚜라미의 대형메달", "name_fr_FR": "Médaillon de criquet chantant", "name_de_DE": "Medaillon der zirpenden Grille", "name_zh_CN": "吟蛩徽章", "name_es_ES": "Medallón del grillo cantarín", "name_ru_RU": "Медальон поющего сверчка", "name_it_IT": "Medaglione del Grillo Canterino", "name_pt_PT": "Medalhão do Grilo Cantador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80774, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grove Viper Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14620, "buy_price": 73101, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0054999589920044, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Grove Viper Medallion", "name_ko_KR": "숲독사 메달", "name_fr_FR": "Médaillon de vipère du bosquet", "name_de_DE": "Hainvipernmedaillon", "name_zh_CN": "林地毒蛇徽章", "name_es_ES": "Medallón de víbora de la arboleda", "name_ru_RU": "Медальон лесной гадюки", "name_it_IT": "Medaglione della Vipera del Bosco", "name_pt_PT": "Medalhão da Víbora do Bosque", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80775, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coral Adder Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14674, "buy_price": 73370, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0091999769210815, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Coral Adder Medallion", "name_ko_KR": "산호 살무사 메달", "name_fr_FR": "Médaillon de vipère corail", "name_de_DE": "Korallnattermedaillon", "name_zh_CN": "珊瑚蝮蛇徽章", "name_es_ES": "Medallón de víboris de coral", "name_ru_RU": "Медальон коралловой гадюки", "name_it_IT": "Medaglione del Serpente Corallo", "name_pt_PT": "Medalhão da Víbora Coral", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80776, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flamelager Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14727, "buy_price": 73639, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0128999948501587, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Flamelager Medallion", "name_ko_KR": "플레임라거 대형메달", "name_fr_FR": "Médaillon de Blonde de Feu", "name_de_DE": "Flammenbräumedaillon", "name_zh_CN": "火酒徽章", "name_es_ES": "Medallón de Aguardiente", "name_ru_RU": "Медальон Огненного Лагера", "name_it_IT": "Medaglione dei Birra Calda", "name_pt_PT": "Medalhão Cevada Flamejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80777, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Amberfly Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14780, "buy_price": 73900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0164999961853027, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Amberfly Idol", "name_ko_KR": "호박말벌 우상", "name_fr_FR": "Idole d'ambraile", "name_de_DE": "Bernfliegengötze", "name_zh_CN": "琥珀蝇雕像", "name_es_ES": "Ídolo Brasacielo", "name_ru_RU": "Идол янтарной мухи", "name_it_IT": "Idolo di Vespa d'Ambra", "name_pt_PT": "Ídolo de Moscâmbar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80778, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Silkbead Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 354, "buy_price": 1773, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0202000141143799, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Silkbead Idol", "name_ko_KR": "비단구슬 우상", "name_fr_FR": "Idole perlesoie", "name_de_DE": "Seidenperlengötze", "name_zh_CN": "珠丝雕像", "name_es_ES": "Ídolo Rastroseda", "name_ru_RU": "Вышитый шелком идол", "name_it_IT": "Idolo dal Guscio Perlato", "name_pt_PT": "Ídolo Conta de Seda", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror Strider Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14887, "buy_price": 74438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023900032043457, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mirror Strider Emblem", "name_ko_KR": "거울 소금쟁이 문장", "name_fr_FR": "Emblème de trotteur du miroir", "name_de_DE": "Spiegelschreiteremblem", "name_zh_CN": "明镜水黾纹章", "name_es_ES": "Emblema de zapatero diáfano", "name_ru_RU": "Эмблема зеркального долгонога", "name_it_IT": "Emblema del Gerride Lacustre", "name_pt_PT": "Emblema do Corre-espelhos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80780, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Greenpaw Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14941, "buy_price": 74707, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276000499725342, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Greenpaw Idol", "name_ko_KR": "푸른발 우상", "name_fr_FR": "Idole de Patte Verte", "name_de_DE": "Laubtatzengötze", "name_zh_CN": "绿掌雕像", "name_es_ES": "Ídolo Zarpaverde", "name_ru_RU": "Идол Зеленой Лапы", "name_it_IT": "Idolo degli Zampaverde", "name_pt_PT": "Ídolo Pataverde", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80781, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shoots of Life", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14993, "buy_price": 74969, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0312000513076782, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Shoots of Life", "name_ko_KR": "인생의 한 방", "name_fr_FR": "Pousses de vie", "name_de_DE": "Sprossen des Lebens", "name_zh_CN": "生命之芽", "name_es_ES": "Brotes de vida", "name_ru_RU": "Ростки жизни", "name_it_IT": "Colpi della Vita", "name_pt_PT": "Descargas de Vida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80782, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Misty Jade Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13977, "buy_price": 69887, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9613000154495239, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Misty Jade Idol", "name_ko_KR": "안개 비취 우상", "name_fr_FR": "Idole de jade brumeux", "name_de_DE": "Nebeljadegötze", "name_zh_CN": "烟玉雕像", "name_es_ES": "Ídolo de jade brumoso", "name_ru_RU": "Туманный нефритовый идол", "name_it_IT": "Idolo di Giada Nebbiosa", "name_pt_PT": "Ídolo de Jade Fumê", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scavenger's Medal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14624, "buy_price": 73122, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 65536, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Scavenger's Medal", "name_ko_KR": "청소부의 메달", "name_fr_FR": "Médaille du charognard", "name_de_DE": "Medaille des Plünderers", "name_zh_CN": "拾荒者勋章", "name_es_ES": "Medalla de carroñero", "name_ru_RU": "Медаль падальщика", "name_it_IT": "Medaglia dell'Usurpatore", "name_pt_PT": "Medalha do Catador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80961, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scavenger's Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14678, "buy_price": 73391, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 65536, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Scavenger's Emblem", "name_ko_KR": "청소부의 문장", "name_fr_FR": "Emblème du charognard", "name_de_DE": "Emblem des Plünderers", "name_zh_CN": "拾荒者符记", "name_es_ES": "Emblema de carroñero", "name_ru_RU": "Эмблема падальщика", "name_it_IT": "Emblema dell'Usurpatore", "name_pt_PT": "Emblema do Catador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80962, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scavenger's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 352, "buy_price": 1760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 65536, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Scavenger's Medallion", "name_ko_KR": "청소부의 대형메달", "name_fr_FR": "Médaillon du charognard", "name_de_DE": "Medaillon des Plünderers", "name_zh_CN": "拾荒者奖章", "name_es_ES": "Medallón de carroñero", "name_ru_RU": "Медальон падальщика", "name_it_IT": "Medaglione dell'Usurpatore", "name_pt_PT": "Medalhão do Catador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80963, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scavenger's Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14784, "buy_price": 73922, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 65536, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Scavenger's Badge", "name_ko_KR": "청소부의 배지", "name_fr_FR": "Ecusson du charognard", "name_de_DE": "Abzeichen des Plünderers", "name_zh_CN": "拾荒者徽章", "name_es_ES": "Distintivo de carroñero", "name_ru_RU": "Знак падальщика", "name_it_IT": "Distintivo dell'Usurpatore", "name_pt_PT": "Distintivo do Catador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80964, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scavenger's Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14838, "buy_price": 74191, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 65536, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Scavenger's Insignia", "name_ko_KR": "청소부의 휘장", "name_fr_FR": "Insigne du charognard", "name_de_DE": "Insigne des Plünderers", "name_zh_CN": "拾荒者徽记", "name_es_ES": "Insignia de carroñero", "name_ru_RU": "Знак различия падальщика", "name_it_IT": "Fregio dell'Usurpatore", "name_pt_PT": "Insígnia do Catador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81125, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windswept Pages", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9760000109672546, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Windswept Pages", "name_ko_KR": "바람을 맞은 책장", "name_fr_FR": "Pages emportées par le vent", "name_de_DE": "Windgepeitschte Seiten", "name_zh_CN": "风中的书页", "name_es_ES": "Páginas arrastradas por el viento", "name_ru_RU": "Унесенные ветром страницы", "name_it_IT": "Pagine Scombinate dal Vento", "name_pt_PT": "Páginas Levadas pelo Vento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81133, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empty Fruit Barrel", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053999423980713, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Empty Fruit Barrel", "name_ko_KR": "빈 과일 통", "name_fr_FR": "Baril de fruits vide", "name_de_DE": "Leeres Fruchtfass", "name_zh_CN": "空的水果桶", "name_es_ES": "Barril de fruta vacío", "name_ru_RU": "Пустой бочонок из-под фруктов", "name_it_IT": "Barile di Frutta Vuoto", "name_pt_PT": "Barril de Frutas Vazio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81138, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carbonic Carbuncle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502000212669373, "flags_1": 524288, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Carbonic Carbuncle", "name_ko_KR": "탄소 몽돌", "name_fr_FR": "Escarboucle carbonique", "name_de_DE": "Kohlenstoffhaltiger Karfunkel", "name_zh_CN": "钙化红玉", "name_es_ES": "Carbunco carbónico", "name_ru_RU": "Углеродный карбункул", "name_it_IT": "Granato Carbonico", "name_pt_PT": "Carbúnculo Carbônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Fire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9609000086784363, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Fire", "name_ko_KR": "불의 심장", "name_fr_FR": "Cœur de feu", "name_de_DE": "Flammendes Herz", "name_zh_CN": "烈焰之心", "name_es_ES": "Corazón de fuego", "name_ru_RU": "Сердце огня", "name_it_IT": "Cuore di Fuoco", "name_pt_PT": "Coração de Fogo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81192, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vision of the Predator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Vision of the Predator", "name_ko_KR": "약탈자의 환영", "name_fr_FR": "Vision du prédateur", "name_de_DE": "Sicht des Raubtiers", "name_zh_CN": "掠食者幻象", "name_es_ES": "Visión del depredador", "name_ru_RU": "Взгляд хищника", "name_it_IT": "Visione del Predatore", "name_pt_PT": "Visão do Predador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81243, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Protector Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944000244140625, "flags_1": 524288, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Iron Protector Talisman", "name_ko_KR": "무쇠의 수호자 부적", "name_fr_FR": "Talisman de protecteur en fer", "name_de_DE": "Eiserner Schutztalisman", "name_zh_CN": "钢铁保护者护符", "name_es_ES": "Dije protector de hierro", "name_ru_RU": "Талисман железного защитника", "name_it_IT": "Talismano del Protettore di Ferro", "name_pt_PT": "Talismã do Protetor de Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashfrozen Resin Globule", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9941999912261963, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Flashfrozen Resin Globule", "name_ko_KR": "급속 냉동된 나뭇진 방울", "name_fr_FR": "Globule de résine surgelée", "name_de_DE": "Schockgefrorenes Harzkügelchen", "name_zh_CN": "闪冻松脂球", "name_es_ES": "Glóbulo de resina congelado rápidamente", "name_ru_RU": "Замороженная капля смолы", "name_it_IT": "Globulo di Linfa Congelato", "name_pt_PT": "Glóbulo de Resina Supercongelado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81264, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Ichorous Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024399995803833, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Ichorous Blood", "name_ko_KR": "끈끈한 피가 든 병", "name_fr_FR": "Fiole de sang ichoreux", "name_de_DE": "Phiole mit eitrigem Blut", "name_zh_CN": "腐败血瓶", "name_es_ES": "Vial de sangre icorosa", "name_ru_RU": "Сосуд с кровью и гноем", "name_it_IT": "Fiala di Sangue di Icore", "name_pt_PT": "Frasco de Sangue Icoroso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81265, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashing Steel Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0281000137329102, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Flashing Steel Talisman", "name_ko_KR": "번쩍이는 강철 부적", "name_fr_FR": "Talisman d'acier miroitant", "name_de_DE": "Blitzender Stahltalisman", "name_zh_CN": "炫目精钢护符", "name_es_ES": "Dije de acero ostentoso", "name_ru_RU": "Талисман стальной вспышки", "name_it_IT": "Talismano d'Acciaio Lampeggiante", "name_pt_PT": "Talismã do Clarão de Aço", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81266, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Price of Progress", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0318000316619873, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Price of Progress", "name_ko_KR": "연구의 대가", "name_fr_FR": "Prix du progrès", "name_de_DE": "Preis des Fortschritts", "name_zh_CN": "进修的代价", "name_es_ES": "Precio del progreso", "name_ru_RU": "Цена продвижения", "name_it_IT": "Prezzo del Progresso", "name_pt_PT": "Preço do Progresso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81267, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Searing Words", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0354000329971313, "flags_1": 524288, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Searing Words", "name_ko_KR": "이글거리는 주문", "name_fr_FR": "Mots incendiaires", "name_de_DE": "Sengende Worte", "name_zh_CN": "焦灼真言", "name_es_ES": "Palabras abrasadoras", "name_ru_RU": "Обжигающие слова", "name_it_IT": "Parole di Fuoco", "name_pt_PT": "Palavras Calcinantes", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lessons of the Darkmaster", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Lessons of the Darkmaster", "name_ko_KR": "암흑스승의 가르침", "name_fr_FR": "Leçons du Sombre Maître", "name_de_DE": "Lektionen des Dunkelmeisters", "name_zh_CN": "黑暗院长遗训", "name_es_ES": "Lecciones del maestro oscuro", "name_ru_RU": "Уроки темного магистра", "name_it_IT": "Lezioni del Maestro Oscuro", "name_pt_PT": "Lições do Mestre da Escuridão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mist Incarnation Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 352, "buy_price": 1760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Mist Incarnation Medallion", "name_ko_KR": "안개의 화신 대형메달", "name_fr_FR": "Médaillon d'incarnation de la brume", "name_de_DE": "Medaillon der Nebelinkarnation", "name_zh_CN": "迷雾化身徽章", "name_es_ES": "Medallón de encarnación de niebla", "name_ru_RU": "Медальон порождения тумана", "name_it_IT": "Medaglione dell'Incarnazione della Nebbia", "name_pt_PT": "Medalhão da Encarnação das Brumas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bluetip Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14784, "buy_price": 73922, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Bluetip Medallion", "name_ko_KR": "푸른돌기 대형메달", "name_fr_FR": "Médaillon pointe-bleue", "name_de_DE": "Blauspitzenmedaillon", "name_zh_CN": "蓝鳍徽章", "name_es_ES": "Medallón de Puntazul", "name_ru_RU": "Синеватый медальон", "name_it_IT": "Medaglione Blu", "name_pt_PT": "Medalhão Pontazul", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81529, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badger Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14838, "buy_price": 74191, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Badger Medallion", "name_ko_KR": "오소리 대형메달", "name_fr_FR": "Médaillon de blaireau", "name_de_DE": "Honigdachsabzeichen", "name_zh_CN": "獾熊徽章", "name_es_ES": "Medallón de nutria", "name_ru_RU": "Медальон медоеда", "name_it_IT": "Medaglione Distintivo", "name_pt_PT": "Medalhão do Texugo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81530, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mauler Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14890, "buy_price": 74453, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Mauler Medallion", "name_ko_KR": "투사 대형메달", "name_fr_FR": "Médaillon de marteleur", "name_de_DE": "Raufermedaillon", "name_zh_CN": "拳师徽章", "name_es_ES": "Medallón de aplastador", "name_ru_RU": "Медальон изверга", "name_it_IT": "Medaglione del Mazzuolatore", "name_pt_PT": "Medalhão do Espancador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glade Singer Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14944, "buy_price": 74722, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Glade Singer Medallion", "name_ko_KR": "숲 노래학 대형메달", "name_fr_FR": "Médaillon de chanteuse de la clairière", "name_de_DE": "Lichtungssängermedaillon", "name_zh_CN": "林地歌者徽章", "name_es_ES": "Medallón de cantante del claro", "name_ru_RU": "Медальон лугового певуна", "name_it_IT": "Medaglione della Gru Canterina delle Radure", "name_pt_PT": "Medalhão do Canoro da Clareira", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81532, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Silkspawn Carving", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 358, "buy_price": 1792, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Silkspawn Carving", "name_ko_KR": "주단나방 조각상", "name_fr_FR": "Gravure de rejeton de soie", "name_de_DE": "Seidenbrutschnitzerei", "name_zh_CN": "魔丝蛾刻像", "name_es_ES": "Talla de engendro de seda", "name_ru_RU": "Резной шелкопряд", "name_it_IT": "Intaglio della Creatura della Seta", "name_pt_PT": "Entalhe Sedonato", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81533, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Archivist's Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130198, "buy_price": 520793, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0351999998092651, "flags_1": 589824, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Archivist's Emblem", "name_ko_KR": "기록보관인의 문장", "name_fr_FR": "Emblème d'archiviste", "name_de_DE": "Emblem des Archivars", "name_zh_CN": "档案员徽章", "name_es_ES": "Emblema de archivista", "name_ru_RU": "Эмблема архивариуса", "name_it_IT": "Emblema dell'Archivista", "name_pt_PT": "Emblema do Arquivista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81534, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carp Hunter Feather", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15104, "buy_price": 75522, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0388000011444092, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Carp Hunter Feather", "name_ko_KR": "잉어 사냥꾼 깃털", "name_fr_FR": "Plume de chasseur de carpes", "name_de_DE": "Feder des Karpfenjägers", "name_zh_CN": "鲤鱼猎手之羽", "name_es_ES": "Pluma de pescador de carpas", "name_ru_RU": "Перо ловца карпов", "name_it_IT": "Piuma della Gru Cacciatrice di Carpe", "name_pt_PT": "Pena do Pega-carpa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81535, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glade Pincher Feather", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15158, "buy_price": 75791, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0425000190734863, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Glade Pincher Feather", "name_ko_KR": "숲게 깃털", "name_fr_FR": "Plume de pinceur de la clairière", "name_de_DE": "Feder des Lichtungszwickers", "name_zh_CN": "树林钳爪之羽", "name_es_ES": "Pluma de punzador del claro", "name_ru_RU": "Перо лесного хватателя", "name_it_IT": "Piuma delle Radure", "name_pt_PT": "Pena de Pinceiro da Clareira", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81536, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jungle Huntress Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15212, "buy_price": 76060, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0462000370025635, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Jungle Huntress Idol", "name_ko_KR": "밀림의 여사냥꾼 우상", "name_fr_FR": "Idole de chasseresse de la jungle", "name_de_DE": "Idol der Dschungeljägerin", "name_zh_CN": "丛林女猎手雕像", "name_es_ES": "Ídolo de cazadora de la jungla", "name_ru_RU": "Идол охотницы джунглей", "name_it_IT": "Idolo della Cacciatrice della Giungla", "name_pt_PT": "Ídolo da Caçadora da Selva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Forest Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121635, "buy_price": 486543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 2, "name_en_US": "Faded Forest Medallion", "name_ko_KR": "빛 바랜 숲 대형메달", "name_fr_FR": "Médaillon de la forêt flétrie", "name_de_DE": "Medaillon des bleichen Waldes", "name_zh_CN": "黯淡林木徽章", "name_es_ES": "Medallón del bosque desvaído", "name_ru_RU": "Медальон поблекшего леса", "name_it_IT": "Medaglione della Foresta Scomparsa", "name_pt_PT": "Medalhão da Floresta Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81662, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Forest Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121635, "buy_price": 486543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020300030708313, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 2, "name_en_US": "Faded Forest Emblem", "name_ko_KR": "빛 바랜 숲 문장", "name_fr_FR": "Emblème de la forêt flétrie", "name_de_DE": "Emblem des bleichen Waldes", "name_zh_CN": "黯淡林木纹章", "name_es_ES": "Emblema del bosque desvaído", "name_ru_RU": "Эмблема поблекшего леса", "name_it_IT": "Emblema della Foresta Scomparsa", "name_pt_PT": "Emblema da Floresta Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81663, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Forest Medal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121635, "buy_price": 486543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240000486373901, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 2, "name_en_US": "Faded Forest Medal", "name_ko_KR": "빛 바랜 숲 메달", "name_fr_FR": "Médaille de la forêt flétrie", "name_de_DE": "Medaille des bleichen Waldes", "name_zh_CN": "黯淡林木勋章", "name_es_ES": "Medalla del bosque desvaído", "name_ru_RU": "Медаль поблекшего леса", "name_it_IT": "Medaglia della Foresta Scomparsa", "name_pt_PT": "Medalha da Floresta Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81664, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Forest Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121635, "buy_price": 486543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276999473571777, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 2, "name_en_US": "Faded Forest Insignia", "name_ko_KR": "빛 바랜 숲 휘장", "name_fr_FR": "Insigne de la forêt flétrie", "name_de_DE": "Insigne des bleichen Waldes", "name_zh_CN": "黯淡林木徽记", "name_es_ES": "Insignia del bosque desvaído", "name_ru_RU": "Знак различия поблекшего леса", "name_it_IT": "Fregio della Foresta Scomparsa", "name_pt_PT": "Insígnia da Floresta Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81665, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Forest Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121635, "buy_price": 486543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 2, "name_en_US": "Faded Forest Badge", "name_ko_KR": "빛 바랜 숲 배지", "name_fr_FR": "Ecusson de la forêt flétrie", "name_de_DE": "Abzeichen des bleichen Waldes", "name_zh_CN": "黯淡林木奖章", "name_es_ES": "Distintivo del bosque desvaído", "name_ru_RU": "Знак поблекшего леса", "name_it_IT": "Distintivo della Foresta Scomparsa", "name_pt_PT": "Distintivo da Floresta Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81829, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Springtail Foot", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 356, "buy_price": 1780, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024399995803833, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Lucky Springtail Foot", "name_ko_KR": "행운의 껑충꼬리 앞발", "name_fr_FR": "Patte de queubriole porte-bonheur", "name_de_DE": "Glückbringende Springschwanzpfote", "name_zh_CN": "幸运弹尾兔脚", "name_es_ES": "Pata de Cola Saltarina de la suerte", "name_ru_RU": "Счастливая лапка прыгохвоста", "name_it_IT": "Zampa di Codalesta Portafortuna", "name_pt_PT": "Pata de Cauda-de-mola da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81830, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Maizer Leaf", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130198, "buy_price": 520793, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0281000137329102, "flags_1": 589824, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Maizer Leaf", "name_ko_KR": "옥수수요마 잎", "name_fr_FR": "Feuille de maïs", "name_de_DE": "Blatt von einem Korndieb", "name_zh_CN": "玉蜀黍之叶", "name_es_ES": "Hoja de maicillo", "name_ru_RU": "Лист кукурузы", "name_it_IT": "Foglia di Folletto del Grano", "name_pt_PT": "Folha de Milho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81831, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadow Fox Tail", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15002, "buy_price": 75013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0318000316619873, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Shadow Fox Tail", "name_ko_KR": "그림자여우 꼬리", "name_fr_FR": "Queue de renard de l'ombre", "name_de_DE": "Schattenfuchsschwanz", "name_zh_CN": "暗影狐尾", "name_es_ES": "Cola de zorro sombrío", "name_ru_RU": "Хвост темной лисицы", "name_it_IT": "Coda di Volpe delle Ombre", "name_pt_PT": "Rabo de Raposa da Sombra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81832, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mushan Horn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15054, "buy_price": 75274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0354000329971313, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Mushan Horn", "name_ko_KR": "무샨의 뿔", "name_fr_FR": "Corne de mushan", "name_de_DE": "Mushanhorn", "name_zh_CN": "穆山兽角", "name_es_ES": "Cuerno de mushan", "name_ru_RU": "Рог мушана", "name_it_IT": "Corno di Mushan", "name_pt_PT": "Chifre de Mushan", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81833, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Longfang Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15108, "buy_price": 75543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Longfang Tooth", "name_ko_KR": "긴송곳니 이빨", "name_fr_FR": "Dent de long-croc", "name_de_DE": "Tiefbisszahn", "name_zh_CN": "长牙利齿", "name_es_ES": "Diente de Colmilargo", "name_ru_RU": "Зуб длинноклыка", "name_it_IT": "Dente di Zannalunga", "name_pt_PT": "Dente de Colmilhuda", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81834, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Silkspawn Wing", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 362, "buy_price": 1812, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.042799949645996, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Silkspawn Wing", "name_ko_KR": "주단나방 날개", "name_fr_FR": "Aile de rejeton de soie", "name_de_DE": "Seidenbrutflügel", "name_zh_CN": "魔丝蛾之翼", "name_es_ES": "Ala de engendro de seda", "name_ru_RU": "Крыло шелкопряда", "name_it_IT": "Ala di Creatura della Seta", "name_pt_PT": "Asa de Sedonata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81835, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Plainshawk Feather", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15214, "buy_price": 76074, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463999509811401, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Plainshawk Feather", "name_ko_KR": "초원매 깃털", "name_fr_FR": "Plume de faucon des plaines", "name_de_DE": "Feder eines Ebenenfalken", "name_zh_CN": "平原鹰之羽", "name_es_ES": "Pluma de halcón de la llanura", "name_ru_RU": "Перо равнинного ястреба", "name_it_IT": "Piuma di Falco delle Pianure", "name_pt_PT": "Pena de Águia-da-planície", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81836, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky \"Rabbit's\" Foot", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13813, "buy_price": 69066, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.949999988079071, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lucky \"Rabbit's\" Foot", "name_ko_KR": "행운의 \"토끼\" 발", "name_fr_FR": "Patte de « lapin » porte-bonheur", "name_de_DE": "Glückbringende \"Hasen\"-Pfote", "name_zh_CN": "幸运“兔子”脚", "name_es_ES": "Pata de \"conejo\" de la suerte", "name_ru_RU": "Счастливая \"кроличья\" лапка", "name_it_IT": "Zampa di \"Lepre\" Portafortuna", "name_pt_PT": "Pé de \"Coelho\" da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81837, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Viseclaw Carapace", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13867, "buy_price": 69335, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Viseclaw Carapace", "name_ko_KR": "야물집게발 등껍질", "name_fr_FR": "Carapace de pincétau", "name_de_DE": "Zwingzangenpanzer", "name_zh_CN": "钳爪甲壳", "name_es_ES": "Caparazón de pinzatuerca", "name_ru_RU": "Панцирь краба", "name_it_IT": "Carapace di Mordichela", "name_pt_PT": "Carapaça de Torniquete", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81838, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tawnyhide Antler", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13920, "buy_price": 69604, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574000239372253, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Tawnyhide Antler", "name_ko_KR": "갈색가죽 사슴뿔", "name_fr_FR": "Ramure de robe-fauve", "name_de_DE": "Lohfellgeweihstange", "name_zh_CN": "棕皮鹿角", "name_es_ES": "Cornamenta leonada", "name_ru_RU": "Рог коричневого оленя", "name_it_IT": "Corna di Mantofulvo", "name_pt_PT": "Chifre de Cauda-castanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82574, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coin of Blessings", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 373, "buy_price": 1866, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9761000275611877, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Coin of Blessings", "name_ko_KR": "축복의 주화", "name_fr_FR": "Pièce de bénédiction", "name_de_DE": "Münze der Segnung", "name_zh_CN": "祝福硬币", "name_es_ES": "Moneda de bendiciones", "name_ru_RU": "Благословенная монетка", "name_it_IT": "Moneta delle Benedizioni", "name_pt_PT": "Moeda das Bênçãos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82575, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coin of Serendipity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15817, "buy_price": 79086, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797999858856201, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Coin of Serendipity", "name_ko_KR": "횡재의 주화", "name_fr_FR": "Pièce de heureux hasard", "name_de_DE": "Münze der glücklichen Fügung", "name_zh_CN": "福气硬币", "name_es_ES": "Moneda de serendipia", "name_ru_RU": "Монетка благоприятного исхода", "name_it_IT": "Moneta della Serendipità", "name_pt_PT": "Moeda da Serendipidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coin of Luck", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15877, "buy_price": 79385, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9835000038146973, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Coin of Luck", "name_ko_KR": "행운의 주화", "name_fr_FR": "Pièce de chance", "name_de_DE": "Münze des Glücksfalls", "name_zh_CN": "幸运硬币", "name_es_ES": "Moneda de suerte", "name_ru_RU": "Монетка удачи", "name_it_IT": "Moneta della Fortuna", "name_pt_PT": "Moeda da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coin of Good Fortune", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15935, "buy_price": 79675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9871000051498413, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Coin of Good Fortune", "name_ko_KR": "길운의 주화", "name_fr_FR": "Pièce de bonne fortune", "name_de_DE": "Münze des Glücks", "name_zh_CN": "好运硬币", "name_es_ES": "Moneda de buena fortuna", "name_ru_RU": "Счастливая монетка", "name_it_IT": "Moneta della Speranza", "name_pt_PT": "Moeda da Boa Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82578, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Luckydo Coin", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15994, "buy_price": 79974, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9908000230789185, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Luckydo Coin", "name_ko_KR": "복덩이 주화", "name_fr_FR": "Pièce grigri", "name_de_DE": "Glückbringende Münze", "name_zh_CN": "幸运星硬币", "name_es_ES": "Moneda grisgrís", "name_ru_RU": "Монетка удачки", "name_it_IT": "Moneta Portabene", "name_pt_PT": "Moeda Sorte-sim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lorewalker's Mark", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 380, "buy_price": 1901, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944999814033508, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lorewalker's Mark", "name_ko_KR": "전승지기의 징표", "name_fr_FR": "Marque de chroniqueur", "name_de_DE": "Mal des Lehrensuchers", "name_zh_CN": "游学者印记", "name_es_ES": "Marca del eremita", "name_ru_RU": "Метка хранителя истории", "name_it_IT": "Marchio del Ramingo della Sapienza", "name_pt_PT": "Marca do Andarilho das Lendas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lorewalker's Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16114, "buy_price": 80571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.998199999332428, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lorewalker's Emblem", "name_ko_KR": "전승지기의 문장", "name_fr_FR": "Emblème de chroniqueur", "name_de_DE": "Emblem des Lehrensuchers", "name_zh_CN": "游学者徽章", "name_es_ES": "Emblema del eremita", "name_ru_RU": "Эмблема хранителя истории", "name_it_IT": "Emblema del Ramingo della Sapienza", "name_pt_PT": "Emblema do Andarilho das Lendas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82581, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lorewalker's Sigil", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16172, "buy_price": 80862, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017999410629272, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lorewalker's Sigil", "name_ko_KR": "전승지기의 인장", "name_fr_FR": "Cachet de chroniqueur", "name_de_DE": "Siegel des Lehrensuchers", "name_zh_CN": "游学者符记", "name_es_ES": "Sigilo del eremita", "name_ru_RU": "Печать хранителя истории", "name_it_IT": "Sigillo del Ramingo della Sapienza", "name_pt_PT": "Signo do Andarilho das Lendas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82582, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lorewalker's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16659, "buy_price": 83299, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lorewalker's Medallion", "name_ko_KR": "전승지기의 메달", "name_fr_FR": "Médaillon de chroniqueur", "name_de_DE": "Medaillon des Lehrensuchers", "name_zh_CN": "游学者奖章", "name_es_ES": "Medallón del eremita", "name_ru_RU": "Медальон хранителя истории", "name_it_IT": "Medaglione del Ramingo della Sapienza", "name_pt_PT": "Medalhão do Andarilho das Lendas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82583, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lorewalker's Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16719, "buy_price": 83598, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0356999635696411, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lorewalker's Insignia", "name_ko_KR": "전승지기의 휘장", "name_fr_FR": "Insigne de chroniqueur", "name_de_DE": "Insigne des Lehrensuchers", "name_zh_CN": "游学者徽记", "name_es_ES": "Insignia del eremita", "name_ru_RU": "Знак различия хранителя истории", "name_it_IT": "Fregio del Ramingo della Sapienza", "name_pt_PT": "Insígnia do Andarilho das Lendas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82696, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainscaler Mark", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 128295, "buy_price": 513182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0356999635696411, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 2, "name_en_US": "Mountainscaler Mark", "name_ko_KR": "산악등반가의 징표", "name_fr_FR": "Marque d'ascensionniste", "name_de_DE": "Mal des Bergsteigers", "name_zh_CN": "攀山者印记", "name_es_ES": "Marca de escalamontañas", "name_ru_RU": "Метка горной высоты", "name_it_IT": "Marchio dello Scalatore", "name_pt_PT": "Marca do Alpinista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82697, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainscaler Medal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 128295, "buy_price": 513182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0393999814987183, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 2, "name_en_US": "Mountainscaler Medal", "name_ko_KR": "산악등반가의 메달", "name_fr_FR": "Médaille d'ascensionniste", "name_de_DE": "Medaille des Bergsteigers", "name_zh_CN": "攀山者勋章", "name_es_ES": "Medalla de escalamontañas", "name_ru_RU": "Медаль горной высоты", "name_it_IT": "Medaglia dello Scalatore", "name_pt_PT": "Medalha do Alpinista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82698, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainscaler Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 128295, "buy_price": 513182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0429999828338623, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 2, "name_en_US": "Mountainscaler Emblem", "name_ko_KR": "산악등반가의 문장", "name_fr_FR": "Emblème d'ascensionniste", "name_de_DE": "Emblem des Bergsteigers", "name_zh_CN": "攀山者徽记", "name_es_ES": "Emblema de escalamontañas", "name_ru_RU": "Эмблема горной высоты", "name_it_IT": "Emblema dello Scalatore", "name_pt_PT": "Emblema do Alpinista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82699, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainscaler Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 128295, "buy_price": 513182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0467000007629395, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 2, "name_en_US": "Mountainscaler Insignia", "name_ko_KR": "산악등반가의 휘장", "name_fr_FR": "Insigne d'ascensionniste", "name_de_DE": "Insigne des Bergsteigers", "name_zh_CN": "攀山者徽标", "name_es_ES": "Insignia de escalamontañas", "name_ru_RU": "Знак различия горной высоты", "name_it_IT": "Fregio dello Scalatore", "name_pt_PT": "Insígnia do Alpinista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82700, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainscaler Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 128295, "buy_price": 513182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502999782562256, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 2, "name_en_US": "Mountainscaler Badge", "name_ko_KR": "산악등반가의 배지", "name_fr_FR": "Ecusson d'ascensionniste", "name_de_DE": "Abzeichen des Bergsteigers", "name_zh_CN": "攀山者徽章", "name_es_ES": "Distintivo de escalamontañas", "name_ru_RU": "Знак горной высоты", "name_it_IT": "Distintivo dello Scalatore", "name_pt_PT": "Distintivo do Alpinista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Raccoon", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 336, "buy_price": 1684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968999981880188, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Jade Raccoon", "name_ko_KR": "비취 너구리", "name_fr_FR": "Raton laveur de jade", "name_de_DE": "Waschbär aus Jade", "name_zh_CN": "青玉浣熊", "name_es_ES": "Mapache de jade", "name_ru_RU": "Нефритовый енот", "name_it_IT": "Procione di Giada", "name_pt_PT": "Guaxinim de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83245, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wasteland Relic", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133052, "buy_price": 532210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9503999948501587, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 2, "name_en_US": "Wasteland Relic", "name_ko_KR": "황무지 유물", "name_fr_FR": "Relique du désert", "name_de_DE": "Relikt der Einöde", "name_zh_CN": "废土遗物", "name_es_ES": "Reliquia del páramo", "name_ru_RU": "Реликвия Пустошей", "name_it_IT": "Reliquia della Terra Desolata", "name_pt_PT": "Relíquia das Terras Devastadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83246, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wasteland Sigil", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133052, "buy_price": 532210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9541000127792358, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 2, "name_en_US": "Wasteland Sigil", "name_ko_KR": "황무지 인장", "name_fr_FR": "Cachet du désert", "name_de_DE": "Siegel der Einöde", "name_zh_CN": "废土印记", "name_es_ES": "Sigilo del páramo", "name_ru_RU": "Печать Пустошей", "name_it_IT": "Suggello della Terra Desolata", "name_pt_PT": "Signo das Terras Devastadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83247, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wasteland Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133052, "buy_price": 532210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 2, "name_en_US": "Wasteland Emblem", "name_ko_KR": "황무지 문장", "name_fr_FR": "Emblème du désert", "name_de_DE": "Emblem der Einöde", "name_zh_CN": "废土徽记", "name_es_ES": "Emblema del páramo", "name_ru_RU": "Эмблема Пустошей", "name_it_IT": "Emblema della Terra Desolata", "name_pt_PT": "Emblema das Terras Devastadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83248, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wasteland Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133052, "buy_price": 532210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9613999724388123, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 2, "name_en_US": "Wasteland Insignia", "name_ko_KR": "황무지 휘장", "name_fr_FR": "Insigne du désert", "name_de_DE": "Insigne der Einöde", "name_zh_CN": "废土纹章", "name_es_ES": "Insignia del páramo", "name_ru_RU": "Знак различия Пустошей", "name_it_IT": "Fregio della Terra Desolata", "name_pt_PT": "Insígnia das Terras Devastadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83249, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wasteland Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133052, "buy_price": 532210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9650999903678894, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 2, "name_en_US": "Wasteland Badge", "name_ko_KR": "황무지 배지", "name_fr_FR": "Ecusson du désert", "name_de_DE": "Abzeichen der Einöde", "name_zh_CN": "废土徽章", "name_es_ES": "Distintivo del páramo", "name_ru_RU": "Знак Пустошей", "name_it_IT": "Distintivo della Terra Desolata", "name_pt_PT": "Distintivo das Terras Devastadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83731, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Catacombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 393, "buy_price": 1966, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0282000303268433, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mark of the Catacombs", "name_ko_KR": "지하묘지의 징표", "name_fr_FR": "Marque des catacombes", "name_de_DE": "Mal der Katakomben", "name_zh_CN": "古陵印记", "name_es_ES": "Marca de las catacumbas", "name_ru_RU": "Метка катакомб", "name_it_IT": "Marchio delle Catacombe", "name_pt_PT": "Marca das Catacumbas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83732, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of the Catacombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16658, "buy_price": 83291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0319000482559204, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of the Catacombs", "name_ko_KR": "지하묘지의 인장", "name_fr_FR": "Cachet des catacombes", "name_de_DE": "Siegel der Katakomben", "name_zh_CN": "古陵符记", "name_es_ES": "Sigilo de las catacumbas", "name_ru_RU": "Печать катакомб", "name_it_IT": "Sigillo delle Catacombe", "name_pt_PT": "Signo das Catacumbas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83733, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of the Catacombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16716, "buy_price": 83582, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0355000495910645, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Emblem of the Catacombs", "name_ko_KR": "지하묘지의 문장", "name_fr_FR": "Emblème des catacombes", "name_de_DE": "Emblem der Katakomben", "name_zh_CN": "古陵徽章", "name_es_ES": "Emblema de las catacumbas", "name_ru_RU": "Знак катакомб", "name_it_IT": "Emblema delle Catacombe", "name_pt_PT": "Emblema das Catacumbas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83734, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Catacombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16776, "buy_price": 83880, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.039199948310852, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Medallion of the Catacombs", "name_ko_KR": "지하묘지의 메달", "name_fr_FR": "Médaillon des catacombes", "name_de_DE": "Medaillon der Katakomben", "name_zh_CN": "古陵奖章", "name_es_ES": "Medallón de las catacumbas", "name_ru_RU": "Медальон катакомб", "name_it_IT": "Medaglione delle Catacombe", "name_pt_PT": "Medalhão das Catacumbas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83735, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbol of the Catacombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16835, "buy_price": 84179, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0428999662399292, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Symbol of the Catacombs", "name_ko_KR": "지하묘지의 상징", "name_fr_FR": "Symbole des catacombes", "name_de_DE": "Symbol der Katakomben", "name_zh_CN": "古陵徽记", "name_es_ES": "Símbolo de las catacumbas", "name_ru_RU": "Символ катакомб", "name_it_IT": "Simbolo delle Catacombe", "name_pt_PT": "Símbolo das Catacumbas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83736, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Compassion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 400, "buy_price": 2001, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0465999841690063, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Compassion", "name_ko_KR": "동정의 인장", "name_fr_FR": "Cachet de compassion", "name_de_DE": "Siegel des Mitgefühls", "name_zh_CN": "怜悯印记", "name_es_ES": "Sigilo de compasión", "name_ru_RU": "Печать сострадания", "name_it_IT": "Sigillo della Compassione", "name_pt_PT": "Signo da Compaixão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83737, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Fidelity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15337, "buy_price": 76689, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9501000046730042, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Fidelity", "name_ko_KR": "신의의 인장", "name_fr_FR": "Cachet de fidélité", "name_de_DE": "Siegel der Treue", "name_zh_CN": "忠诚印记", "name_es_ES": "Sigilo de fidelidad", "name_ru_RU": "Печать верности", "name_it_IT": "Sigillo della Fedeltà", "name_pt_PT": "Signo da Fidelidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83738, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Grace", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15397, "buy_price": 76987, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9538000226020813, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Grace", "name_ko_KR": "은총의 인장", "name_fr_FR": "Cachet de grâce", "name_de_DE": "Siegel der Anmut", "name_zh_CN": "优雅印记", "name_es_ES": "Sigilo de gracia", "name_ru_RU": "Печать грации", "name_it_IT": "Sigillo della Grazia", "name_pt_PT": "Signo da Graça", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83739, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Patience", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15885, "buy_price": 79425, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Patience", "name_ko_KR": "인내의 인장", "name_fr_FR": "Cachet de patience", "name_de_DE": "Siegel der Geduld", "name_zh_CN": "耐心印记", "name_es_ES": "Sigilo de paciencia", "name_ru_RU": "Печать терпения", "name_it_IT": "Sigillo della Pazienza", "name_pt_PT": "Signo da Paciência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83740, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Devotion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15944, "buy_price": 79724, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9876999855041504, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Devotion", "name_ko_KR": "헌신의 인장", "name_fr_FR": "Cachet de dévotion", "name_de_DE": "Siegel der Hingabe", "name_zh_CN": "奉献印记", "name_es_ES": "Sigilo de devoción", "name_ru_RU": "Печать преданности", "name_it_IT": "Sigillo della Devozione", "name_pt_PT": "Signo da Devoção", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84070, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearwurm Relic", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 142249, "buy_price": 568997, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0282000303268433, "flags_1": 589824, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Fearwurm Relic", "name_ko_KR": "공포벌레 유물", "name_fr_FR": "Relique de ver-de-peur", "name_de_DE": "Furchtwurmrelikt", "name_zh_CN": "恐惧怪虫圣物", "name_es_ES": "Reliquia de aterrasierpe", "name_ru_RU": "Реликвия жуткого червя", "name_it_IT": "Reliquia del Verme del Terrore", "name_pt_PT": "Relíquia do Verme do Medo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84071, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Ten Songs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 434, "buy_price": 2170, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0319000482559204, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Ten Songs", "name_ko_KR": "열 노래의 부적", "name_fr_FR": "Charme des Dix mélodies", "name_de_DE": "Glücksbringer von den Zehn Gesängen", "name_zh_CN": "十歌符记", "name_es_ES": "Talismán de diez canciones", "name_ru_RU": "Амулет Десяти Песен", "name_it_IT": "Talismano dei Dieci Canti", "name_pt_PT": "Amuleto das Dez Canções", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84072, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Braid of Ten Songs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 18559, "buy_price": 92798, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0355000495910645, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Braid of Ten Songs", "name_ko_KR": "열 노래의 노리개", "name_fr_FR": "Tresse des Dix mélodies", "name_de_DE": "Flechtband von den Zehn Gesängen", "name_zh_CN": "十歌绶带", "name_es_ES": "Trenza de diez canciones", "name_ru_RU": "Коса Десяти Песен", "name_it_IT": "Treccia dei Dieci Canti", "name_pt_PT": "Trança das Dez Canções", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84073, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Knot of Ten Songs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 18626, "buy_price": 93130, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.039199948310852, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Knot of Ten Songs", "name_ko_KR": "열 노래의 매듭", "name_fr_FR": "Nœud des Dix mélodies", "name_de_DE": "Knoten von den Zehn Gesängen", "name_zh_CN": "十歌绳结", "name_es_ES": "Nudo de diez canciones", "name_ru_RU": "Узел Десяти Песен", "name_it_IT": "Cappio dei Dieci Canti", "name_pt_PT": "Nó das Dez Canções", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84074, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearwurm Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 142249, "buy_price": 568997, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0428999662399292, "flags_1": 589824, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Fearwurm Badge", "name_ko_KR": "공포벌레 배지", "name_fr_FR": "Ecusson de ver-de-peur", "name_de_DE": "Furchtwurmabzeichen", "name_zh_CN": "恐惧怪虫徽记", "name_es_ES": "Distintivo de aterrasierpe", "name_ru_RU": "Знак жуткого червя", "name_it_IT": "Distintivo del Verme del Terrore", "name_pt_PT": "Distintivo do Verme do Medo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84075, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Kypari Zar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 440, "buy_price": 2201, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0465999841690063, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Relic of Kypari Zar", "name_ko_KR": "키파리 자르의 유물", "name_fr_FR": "Relique de Kypari Zar", "name_de_DE": "Relikt von Kypari Zar", "name_zh_CN": "凯帕圣树·扎尔圣物", "name_es_ES": "Reliquia de Kypari Zar", "name_ru_RU": "Реликвия Кипари Зар", "name_it_IT": "Reliquia di Kypari Zar", "name_pt_PT": "Relíquia de Kypari Zar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84076, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Kypari Zar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17029, "buy_price": 85145, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9501000046730042, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Kypari Zar", "name_ko_KR": "키파리 자르의 인장", "name_fr_FR": "Cachet de Kypari Zar", "name_de_DE": "Siegel von Kypari Zar", "name_zh_CN": "凯帕圣树·扎尔印记", "name_es_ES": "Sigilo de Kypari Zar", "name_ru_RU": "Печать Кипари Зар", "name_it_IT": "Sigillo di Kypari Zar", "name_pt_PT": "Signo de Kypari Zar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84077, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Kypari Zar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17570, "buy_price": 87852, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9803000092506409, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Emblem of Kypari Zar", "name_ko_KR": "키파리 자르의 문장", "name_fr_FR": "Emblème de Kypari Zar", "name_de_DE": "Emblem von Kypari Zar", "name_zh_CN": "凯帕圣树·扎尔徽章", "name_es_ES": "Emblema de Kypari Zar", "name_ru_RU": "Знак Кипари Зар", "name_it_IT": "Emblema di Kypari Zar", "name_pt_PT": "Emblema de Kypari Zar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84078, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of Kypari Zar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17636, "buy_price": 88183, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Insignia of Kypari Zar", "name_ko_KR": "키파리 자르의 휘장", "name_fr_FR": "Insigne de Kypari Zar", "name_de_DE": "Insigne von Kypari Zar", "name_zh_CN": "凯帕圣树·扎尔符记", "name_es_ES": "Insignia de Kypari Zar", "name_ru_RU": "Знак различия Кипари Зар", "name_it_IT": "Fregio di Kypari Zar", "name_pt_PT": "Insígnia de Kypari Zar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84079, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badge of Kypari Zar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17701, "buy_price": 88506, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9876000285148621, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Badge of Kypari Zar", "name_ko_KR": "키파리 자르의 배지", "name_fr_FR": "Ecusson de Kypari Zar", "name_de_DE": "Abzeichen von Kypari Zar", "name_zh_CN": "凯帕圣树·扎尔徽记", "name_es_ES": "Distintivo de Kypari Zar", "name_ru_RU": "Знак Кипари Зар", "name_it_IT": "Distintivo di Kypari Zar", "name_pt_PT": "Distintivo de Kypari Zar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84286, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skittering Relic", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 344, "buy_price": 1723, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Skittering Relic", "name_ko_KR": "땅거미 유물", "name_fr_FR": "Relique du Grouillement", "name_de_DE": "Relikt des Huschers", "name_zh_CN": "粘丝圣物", "name_es_ES": "Reliquia arácnida", "name_ru_RU": "Реликвия легкого бега", "name_it_IT": "Reliquia del Brulichio", "name_pt_PT": "Relíquia Rastejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84287, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skittering Sigil", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130198, "buy_price": 520793, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9951000213623047, "flags_1": 589824, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Skittering Sigil", "name_ko_KR": "땅거미 인장", "name_fr_FR": "Cachet du Grouillement", "name_de_DE": "Siegel des Huschers", "name_zh_CN": "粘丝印记", "name_es_ES": "Sigilo arácnido", "name_ru_RU": "Печать легкого бега", "name_it_IT": "Suggello del Brulichio", "name_pt_PT": "Signo Rastejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84288, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skittering Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14522, "buy_price": 72614, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987999796867371, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Skittering Emblem", "name_ko_KR": "땅거미 문장", "name_fr_FR": "Emblème du Grouillement", "name_de_DE": "Emblem des Huschers", "name_zh_CN": "粘丝徽章", "name_es_ES": "Emblema arácnido", "name_ru_RU": "Эмблема легкого бега", "name_it_IT": "Emblema del Brulichio", "name_pt_PT": "Emblema Rastejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84289, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skittering Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14576, "buy_price": 72883, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Skittering Insignia", "name_ko_KR": "땅거미 휘장", "name_fr_FR": "Insigne du Grouillement", "name_de_DE": "Insigne des Huschers", "name_zh_CN": "粘丝符记", "name_es_ES": "Insignia arácnida", "name_ru_RU": "Знак различия легкого бега", "name_it_IT": "Fregio del Brulichio", "name_pt_PT": "Insígnia Rastejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skittering Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14628, "buy_price": 73144, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006100058555603, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Skittering Badge", "name_ko_KR": "땅거미 배지", "name_fr_FR": "Ecusson du Grouillement", "name_de_DE": "Abzeichen des Huschers", "name_zh_CN": "粘丝徽记", "name_es_ES": "Distintivo arácnido", "name_ru_RU": "Знак легкого бега", "name_it_IT": "Distintivo del Brulichio", "name_pt_PT": "Distintivo Rastejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84334, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Dream Relic", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 363, "buy_price": 1819, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0470999479293823, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Golden Dream Relic", "name_ko_KR": "금빛 꿈 유물", "name_fr_FR": "Relique du rêve doré", "name_de_DE": "Relikt des goldenen Traums", "name_zh_CN": "金色梦境圣物", "name_es_ES": "Reliquia del sueño dorado", "name_ru_RU": "Реликвия золотой мечты", "name_it_IT": "Reliquia del Sogno Dorato", "name_pt_PT": "Relíquia do Sonho Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84335, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Dream Sigil", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13821, "buy_price": 69109, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506000280380249, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Golden Dream Sigil", "name_ko_KR": "금빛 꿈 인장", "name_fr_FR": "Cachet du rêve doré", "name_de_DE": "Siegel des goldenen Traums", "name_zh_CN": "金色梦境印记", "name_es_ES": "Sigilo del sueño dorado", "name_ru_RU": "Печать золотой мечты", "name_it_IT": "Suggello del Sogno Dorato", "name_pt_PT": "Signo do Sonho Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84336, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Dream Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13875, "buy_price": 69378, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Golden Dream Emblem", "name_ko_KR": "금빛 꿈 문장", "name_fr_FR": "Emblème du rêve doré", "name_de_DE": "Emblem des goldenen Traums", "name_zh_CN": "金色梦境徽章", "name_es_ES": "Emblema del sueño dorado", "name_ru_RU": "Эмблема золотой мечты", "name_it_IT": "Emblema del Sogno Dorato", "name_pt_PT": "Emblema do Sonho Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84337, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Dream Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13929, "buy_price": 69647, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9580000042915344, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Golden Dream Insignia", "name_ko_KR": "금빛 꿈 휘장", "name_fr_FR": "Insigne du rêve doré", "name_de_DE": "Insigne des goldenen Traums", "name_zh_CN": "金色梦境符记", "name_es_ES": "Insignia del sueño dorado", "name_ru_RU": "Знак различия золотой мечты", "name_it_IT": "Fregio del Sogno Dorato", "name_pt_PT": "Insígnia do Sonho Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84338, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Dream Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13983, "buy_price": 69916, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9617000222206116, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Golden Dream Badge", "name_ko_KR": "금빛 꿈 배지", "name_fr_FR": "Ecusson du rêve doré", "name_de_DE": "Abzeichen des goldenen Traums", "name_zh_CN": "金色梦境徽记", "name_es_ES": "Distintivo del sueño dorado", "name_ru_RU": "Знак золотой мечты", "name_it_IT": "Distintivo del Sogno Dorato", "name_pt_PT": "Distintivo do Sonho Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Badge of Conquest", "name_ko_KR": "가혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur effroyable", "name_de_DE": "Eroberungsabzeichen des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador infame", "name_ru_RU": "Жетон завоевания жуткого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Truce", "name_pt_PT": "Distintivo de Conquista do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84349, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Insignia of Conquest", "name_ko_KR": "가혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur effroyable", "name_de_DE": "Eroberungsinsigne des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador infame", "name_ru_RU": "Знак завоевания жуткого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Truce", "name_pt_PT": "Insígnia de Conquista do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84399, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Emblem of Cruelty", "name_ko_KR": "가혹한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur effroyable", "name_de_DE": "Grausamkeitsemblem des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador infame", "name_ru_RU": "Эмблема жестокости жуткого гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Truce", "name_pt_PT": "Emblema da Crueldade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84400, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Emblem of Tenacity", "name_ko_KR": "가혹한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur effroyable", "name_de_DE": "Hartnäckigkeitsemblem des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador infame", "name_ru_RU": "Эмблема упорства жуткого гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Truce", "name_pt_PT": "Emblema da Tenacidade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84401, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Emblem of Meditation", "name_ko_KR": "가혹한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur effroyable", "name_de_DE": "Meditationsemblem des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador infame", "name_ru_RU": "Эмблема медитации жуткого гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Truce", "name_pt_PT": "Emblema da Meditação do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84450, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84451, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Cruelty", "name_ko_KR": "가혹한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur effroyable", "name_de_DE": "Grausamkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador infame", "name_ru_RU": "Медальон жестокости жуткого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Truce", "name_pt_PT": "Medalhão da Crueldade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84451, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84450, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Cruelty", "name_ko_KR": "가혹한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur effroyable", "name_de_DE": "Grausamkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador infame", "name_ru_RU": "Медальон жестокости жуткого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Truce", "name_pt_PT": "Medalhão da Crueldade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84452, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84453, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Tenacity", "name_ko_KR": "가혹한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur effroyable", "name_de_DE": "Hartnäckigkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador infame", "name_ru_RU": "Медальон упорства жуткого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Truce", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84453, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84452, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Tenacity", "name_ko_KR": "가혹한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur effroyable", "name_de_DE": "Hartnäckigkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador infame", "name_ru_RU": "Медальон упорства жуткого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Truce", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84454, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84455, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Meditation", "name_ko_KR": "가혹한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur effroyable", "name_de_DE": "Meditationsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador infame", "name_ru_RU": "Медальон медитации жуткого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Truce", "name_pt_PT": "Medalhão da Meditação do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84455, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84454, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Meditation", "name_ko_KR": "가혹한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur effroyable", "name_de_DE": "Meditationsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador infame", "name_ru_RU": "Медальон медитации жуткого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Truce", "name_pt_PT": "Medalhão da Meditação do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84488, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Badge of Dominance", "name_ko_KR": "가혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur effroyable", "name_de_DE": "Vorherrschaftsabzeichen des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador infame", "name_ru_RU": "Жетон господства жуткого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Truce", "name_pt_PT": "Distintivo de Dominância do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84489, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Insignia of Dominance", "name_ko_KR": "가혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur effroyable", "name_de_DE": "Vorherrschaftsinsigne des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador infame", "name_ru_RU": "Знак господства жуткого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Truce", "name_pt_PT": "Insígnia de Dominância do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Badge of Victory", "name_ko_KR": "가혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur effroyable", "name_de_DE": "Siegesabzeichen des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador infame", "name_ru_RU": "Жетон победы жуткого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Truce", "name_pt_PT": "Distintivo de Vitória do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84495, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Insignia of Victory", "name_ko_KR": "가혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur effroyable", "name_de_DE": "Siegesinsigne des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador infame", "name_ru_RU": "Знак победы жуткого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Truce", "name_pt_PT": "Insígnia de Vitória do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84931, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84945, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador malévolo", "name_ru_RU": "Медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84932, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84933, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur malveillant", "name_de_DE": "Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador malévolo", "name_ru_RU": "Медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84933, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84932, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur malveillant", "name_de_DE": "Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador malévolo", "name_ru_RU": "Медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84934, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Conquest", "name_ko_KR": "극악무도한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur malveillant", "name_de_DE": "Eroberungsabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador malévolo", "name_ru_RU": "Жетон завоевания злонравного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Conquista do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84935, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Conquest", "name_ko_KR": "극악무도한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur malveillant", "name_de_DE": "Eroberungsinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador malévolo", "name_ru_RU": "Знак завоевания злонравного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Conquista do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84936, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador malévolo", "name_ru_RU": "Эмблема жестокости злонравного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Emblema da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84937, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Victory", "name_ko_KR": "극악무도한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur malveillant", "name_de_DE": "Siegesinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador malévolo", "name_ru_RU": "Знак победы злонравного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Vitória do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84938, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador malévolo", "name_ru_RU": "Эмблема упорства злонравного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Emblema da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84939, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur malveillant", "name_de_DE": "Meditationsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador malévolo", "name_ru_RU": "Эмблема медитации злонравного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Emblema da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84940, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Dominance", "name_ko_KR": "극악무도한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur malveillant", "name_de_DE": "Vorherrschaftsabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador malévolo", "name_ru_RU": "Жетон господства злонравного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Dominância do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84941, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Dominance", "name_ko_KR": "극악무도한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur malveillant", "name_de_DE": "Vorherrschaftsinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador malévolo", "name_ru_RU": "Знак господства злонравного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Dominância do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84942, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Victory", "name_ko_KR": "극악무도한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur malveillant", "name_de_DE": "Siegesabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador malévolo", "name_ru_RU": "Жетон победы злонравного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Vitória do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84943, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84944, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador malévolo", "name_ru_RU": "Медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84944, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84943, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador malévolo", "name_ru_RU": "Медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84945, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84931, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador malévolo", "name_ru_RU": "Медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 85181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Protector Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944000244140625, "flags_1": 524288, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 3, "name_en_US": "Iron Protector Talisman", "name_ko_KR": "무쇠의 수호자 부적", "name_fr_FR": "Talisman de protecteur en fer", "name_de_DE": "Eiserner Schutztalisman", "name_zh_CN": "钢铁保护者护符", "name_es_ES": "Dije protector de hierro", "name_ru_RU": "Талисман железного защитника", "name_it_IT": "Talismano del Protettore di Ferro", "name_pt_PT": "Talismã do Protetor de Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Charioteer Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 212, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Charioteer Figurine", "name_ko_KR": "비취 전차병 조각상", "name_fr_FR": "Figurine de charretier en jade", "name_de_DE": "Jadefigur eines Wagenfahrers", "name_zh_CN": "玉质御者俑", "name_es_ES": "Figurilla de auriga de jade", "name_ru_RU": "Нефритовая фигурка возничего", "name_it_IT": "Statuetta di Giada: Cocchiere", "name_pt_PT": "Estatueta de Charreteiro de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86043, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Bandit Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 211, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Bandit Figurine", "name_ko_KR": "비취 산적 조각상", "name_fr_FR": "Figurine de bandit en jade", "name_de_DE": "Jadefigur eines Banditen", "name_zh_CN": "玉质盗匪俑", "name_es_ES": "Figurilla de bandido de jade", "name_ru_RU": "Нефритовая фигурка разбойника", "name_it_IT": "Statuetta di Giada: Bandito", "name_pt_PT": "Estatueta de Bandido de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86044, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Magistrate Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 214, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Magistrate Figurine", "name_ko_KR": "비취 집정관 조각상", "name_fr_FR": "Figurine de magistrat en jade", "name_de_DE": "Jadefigur eines Magistrats", "name_zh_CN": "玉质文官俑", "name_es_ES": "Figurilla de magistrado de jade", "name_ru_RU": "Нефритовая фигурка судьи", "name_it_IT": "Statuetta di Giada: Magistrato", "name_pt_PT": "Estatueta de Juiz de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86045, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Courtesan Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 213, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0321999788284302, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Courtesan Figurine", "name_ko_KR": "비취 무희 조각상", "name_fr_FR": "Figurine de courtisane en jade", "name_de_DE": "Jadefigur einer Kurtisane", "name_zh_CN": "玉质女乐俑", "name_es_ES": "Figurilla de cortesana de jade", "name_ru_RU": "Нефритовая фигурка куртизанки", "name_it_IT": "Statuetta di Giada: Cortigiana", "name_pt_PT": "Estatueta de Cortesã de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86046, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Warlord Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 215, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0358999967575073, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Warlord Figurine", "name_ko_KR": "비취 전쟁군주 조각상", "name_fr_FR": "Figurine de seigneur de guerre en jade", "name_de_DE": "Jadefigur eines Kriegsfürsten", "name_zh_CN": "玉质军阀俑", "name_es_ES": "Figurilla de señor de la guerra de jade", "name_ru_RU": "Нефритовая фигурка полководца", "name_it_IT": "Statuetta di Giada: Signore della Guerra", "name_pt_PT": "Estatueta de Senhor da Guerra de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86131, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Dragon's Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 222, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9801999926567078, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Dragon's Blood", "name_ko_KR": "용의 피가 담긴 약병", "name_fr_FR": "Fiole de sang de dragon", "name_de_DE": "Phiole mit Drachenblut", "name_zh_CN": "龙血之瓶", "name_es_ES": "Vial de sangre de dragón", "name_ru_RU": "Чаша крови дракона", "name_it_IT": "Fiala di Sangue di Drago", "name_pt_PT": "Frasco com Sangue de Dragão", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottle of Infinite Stars", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 208, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bottle of Infinite Stars", "name_ko_KR": "무한한 별들의 병", "name_fr_FR": "Bouteille d'étoiles infinies", "name_de_DE": "Flasche der endlosen Sterne", "name_zh_CN": "群星之瓶", "name_es_ES": "Botella de estrellas infinitas", "name_ru_RU": "Бутыль бессчетных звезд", "name_it_IT": "Fiasca delle Stelle Infinite", "name_pt_PT": "Garrafa de Estrelas Infinitas", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86133, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Light of the Cosmos", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 217, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Light of the Cosmos", "name_ko_KR": "우주의 빛", "name_fr_FR": "Lumière du cosmos", "name_de_DE": "Licht des Kosmos", "name_zh_CN": "秩序之光", "name_es_ES": "Luz del cosmos", "name_ru_RU": "Свет космоса", "name_it_IT": "Luce del Cosmo", "name_pt_PT": "Luz do Cosmos", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86144, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lei Shen's Final Orders", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 216, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lei Shen's Final Orders", "name_ko_KR": "레이 션의 마지막 명령서", "name_fr_FR": "Ordres ultimes de Lei Shen", "name_de_DE": "Lei Shens letzte Befehle", "name_zh_CN": "雷神的遗诏", "name_es_ES": "Últimas órdenes de Lei Shen", "name_ru_RU": "Последние приказы Лэй Шэня", "name_it_IT": "Ordini Finali di Lei Shen", "name_pt_PT": "Ordens Finais de Lei Shen", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86147, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Qin-xi's Polarizing Seal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 218, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Qin-xi's Polarizing Seal", "name_ko_KR": "친시의 양극화 인장", "name_fr_FR": "Sceau polarisant de Qin Xi", "name_de_DE": "Qin-xis polarisierendes Siegel", "name_zh_CN": "秦希的偏振之印", "name_es_ES": "Sello polarizante de Qin-xi", "name_ru_RU": "Поляризующая печать Цинь-си", "name_it_IT": "Sigillo Polarizzato di Qin-Xi", "name_pt_PT": "Selo Polarizante de Qin-xi", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86323, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stuff of Nightmares", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 220, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 257535, "buy_price": 1030142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stuff of Nightmares", "name_ko_KR": "악몽의 물체", "name_fr_FR": "Essence des cauchemars", "name_de_DE": "Alptraumgespinst", "name_zh_CN": "梦魇残片", "name_es_ES": "Cualidad de pesadillas", "name_ru_RU": "Сущность ночных кошмаров", "name_it_IT": "Materia degli Incubi", "name_pt_PT": "Matéria-prima de Pesadelos", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86327, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spirits of the Sun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 219, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 257535, "buy_price": 1030142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0435999631881714, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spirits of the Sun", "name_ko_KR": "태양의 영혼", "name_fr_FR": "Esprits du soleil", "name_de_DE": "Geister der Sonne", "name_zh_CN": "骄阳之魂", "name_es_ES": "Espíritus del sol", "name_ru_RU": "Духи солнца", "name_it_IT": "Spiriti del Sole", "name_pt_PT": "Espíritos do Sol", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86332, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terror in the Mists", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 221, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 257535, "buy_price": 1030142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Terror in the Mists", "name_ko_KR": "안개 속의 공포", "name_fr_FR": "Terreur dans les brumes", "name_de_DE": "Schrecken in den Nebeln", "name_zh_CN": "萦雾之恐", "name_es_ES": "Terror en la niebla", "name_ru_RU": "Ужас в туманах", "name_it_IT": "Terrore nelle Nebbie", "name_pt_PT": "Terror na Névoa", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86336, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmist Vortex", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 209, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 257535, "buy_price": 1030142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Darkmist Vortex", "name_ko_KR": "암흑안개 소용돌이", "name_fr_FR": "Vortex de Sombrebrume", "name_de_DE": "Dunkelnebelvortex", "name_zh_CN": "黑雾漩涡", "name_es_ES": "Vórtice Niebla Negra", "name_ru_RU": "Вихрь Мглистой пещеры", "name_it_IT": "Vortice di Brumafosca", "name_pt_PT": "Vórtice Névoa Negra", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86388, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Terror", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 210, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 257535, "buy_price": 1030142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0469000339508057, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Essence of Terror", "name_ko_KR": "경악의 정수", "name_fr_FR": "Essence de la terreur", "name_de_DE": "Essenz des Schreckens", "name_zh_CN": "惊怖精华", "name_es_ES": "Esencia de terror", "name_ru_RU": "Сущность ужаса", "name_it_IT": "Essenza del Terrore", "name_pt_PT": "Essência do Terror", "on_use": false, "id_encounter": 709, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86525, "race_mask": 18446744073709551615, "desc": "A fragment of Skeer the Bloodseeker's chitin, soaked in the blood of his enemies.", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodsoaked Chitin Fragment", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Bloodsoaked Chitin Fragment", "name_ko_KR": "피에 젖은 껍질 조각", "name_fr_FR": "Fragment de chitine imprégné de sang", "name_de_DE": "Blutgetränktes Chitinfragment", "name_zh_CN": "浸血的甲壳碎片", "name_es_ES": "Fragmento de quitina empapado de sangre", "name_ru_RU": "Окровавленный хитиновый фрагмент", "name_it_IT": "Frammento di Chitina Insanguinato", "name_pt_PT": "Fragmento de Quitina Ensanguentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86526, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Swarmkeeper's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 6666, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": 32, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991599977016449, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2900, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 5, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Swarmkeeper's Medallion", "name_ko_KR": "무리지기의 메달", "name_fr_FR": "Médaillon de gardien de l'essaim", "name_de_DE": "Medaillon des Schwarmwächters", "name_zh_CN": "虫群卫士奖章", "name_es_ES": "Medallón del Guardaenjambres", "name_ru_RU": "Медальон Хранителя Роя", "name_it_IT": "Medaglione del Custode dello Sciame", "name_pt_PT": "Medalhão do Errante do Pântano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86529, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Manipulator's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 134807552, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 3, "name_en_US": "Manipulator's Talisman", "name_ko_KR": "배후자의 부적", "name_fr_FR": "Talisman du manipulateur", "name_de_DE": "Talisman des Manipulators", "name_zh_CN": "操纵者的护符", "name_es_ES": "Dije de manipulador", "name_ru_RU": "Талисман Манипулятора", "name_it_IT": "Talismano del Manipolatore", "name_pt_PT": "Talismã do Manipulador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86567, "race_mask": 18446744073709551615, "desc": "Used by Yaungol medicine men to detect changes in the weather.", "pad2": "", "pad1": "", "pad0": "", "name": "Yaungol Wind Chime", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9950000047683716, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Yaungol Wind Chime", "name_ko_KR": "야운골 풍경", "name_fr_FR": "Carillon à vent yaungol", "name_de_DE": "Yaungolwindspiel", "name_zh_CN": "野牛人风铃", "name_es_ES": "Campanilla de viento yaungol", "name_ru_RU": "\"Песня ветра\" яунголов", "name_it_IT": "Campana del Vento degli Yaungol", "name_pt_PT": "Sininho de Vento Yaungol", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86570, "race_mask": 18446744073709551615, "desc": "...and they eat puppies!", "pad2": "", "pad1": "", "pad0": "", "name": "Crate of Kidnapped Puppies", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0325000286102295, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Crate of Kidnapped Puppies", "name_ko_KR": "납치된 강아지가 든 상자", "name_fr_FR": "Caisse de chiots enlevés", "name_de_DE": "Kiste mit entführten Welpen", "name_zh_CN": "一箱被诱拐的小狗", "name_es_ES": "Cajón de cachorros secuestrados", "name_ru_RU": "Ящик с похищенными щенками", "name_it_IT": "Cassa di Cuccioli Rapiti", "name_pt_PT": "Caixa de Filhotes Sequestrados", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86572, "race_mask": 18446744073709551615, "desc": "Imbued with powerful Mogu magic.", "pad2": "", "pad1": "", "pad0": "", "name": "Terracotta Fragment", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0398000478744507, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Terracotta Fragment", "name_ko_KR": "토우 조각", "name_fr_FR": "Fragment de terre cuite", "name_de_DE": "Terrakottafragment", "name_zh_CN": "陶制碎片", "name_es_ES": "Fragmento de terracota", "name_ru_RU": "Терракотовый фрагмент", "name_it_IT": "Frammento di Terracotta", "name_pt_PT": "Fragmento de Terracota", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86576, "race_mask": 18446744073709551615, "desc": "The sword techniques of the Mantid are a carefully-guarded secret.", "pad2": "", "pad1": "", "pad0": "", "name": "Dynasty of Steel", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9544000029563904, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Dynasty of Steel", "name_ko_KR": "강철의 왕조", "name_fr_FR": "Dynastie d'acier", "name_de_DE": "Dynastie des Stahls", "name_zh_CN": "钢铁王朝", "name_es_ES": "Dinastía del acero", "name_ru_RU": "Династия стали", "name_it_IT": "Dinastia d'Acciaio", "name_pt_PT": "Dinastia de Aço", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86585, "race_mask": 18446744073709551615, "desc": "Considered a sign of wealth and status amongst the Saurok.", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Fleece", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Golden Fleece", "name_ko_KR": "황금 양털", "name_fr_FR": "Toison dorée", "name_de_DE": "Goldenes Vlies", "name_zh_CN": "金羊毛", "name_es_ES": "Vellocino de oro", "name_ru_RU": "Золотое руно", "name_it_IT": "Vello d'Oro", "name_pt_PT": "Velo Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86587, "race_mask": 18446744073709551615, "desc": "A vibrant life energy emanates from this seed.", "pad2": "", "pad1": "", "pad0": "", "name": "Seed of Tranquil Growth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.021299958229065, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Seed of Tranquil Growth", "name_ko_KR": "평온한 성장의 씨앗", "name_fr_FR": "Graine de croissance tranquille", "name_de_DE": "Samen des ruhigen Wachstums", "name_zh_CN": "宁静生长种子", "name_es_ES": "Semilla de crecimiento tranquilo", "name_ru_RU": "Семя спокойного роста", "name_it_IT": "Seme della Crescita Lenta", "name_pt_PT": "Semente do Crescimento Tranquilo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86771, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Charioteer Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 212, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 0, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Charioteer Figurine", "name_ko_KR": "비취 전차병 조각상", "name_fr_FR": "Figurine de charretier en jade", "name_de_DE": "Jadefigur eines Wagenfahrers", "name_zh_CN": "玉质御者俑", "name_es_ES": "Figurilla de auriga de jade", "name_ru_RU": "Нефритовая фигурка возничего", "name_it_IT": "Statuetta di Giada: Cocchiere", "name_pt_PT": "Estatueta de Charreteiro de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86772, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Bandit Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 211, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Bandit Figurine", "name_ko_KR": "비취 산적 조각상", "name_fr_FR": "Figurine de bandit en jade", "name_de_DE": "Jadefigur eines Banditen", "name_zh_CN": "玉质盗匪俑", "name_es_ES": "Figurilla de bandido de jade", "name_ru_RU": "Нефритовая фигурка разбойника", "name_it_IT": "Statuetta di Giada: Bandito", "name_pt_PT": "Estatueta de Bandido de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86773, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Magistrate Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 214, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Magistrate Figurine", "name_ko_KR": "비취 집정관 조각상", "name_fr_FR": "Figurine de magistrat en jade", "name_de_DE": "Jadefigur eines Magistrats", "name_zh_CN": "玉质文官俑", "name_es_ES": "Figurilla de magistrado de jade", "name_ru_RU": "Нефритовая фигурка судьи", "name_it_IT": "Statuetta di Giada: Magistrato", "name_pt_PT": "Estatueta de Juiz de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86774, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Courtesan Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 213, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0321999788284302, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Courtesan Figurine", "name_ko_KR": "비취 무희 조각상", "name_fr_FR": "Figurine de courtisane en jade", "name_de_DE": "Jadefigur einer Kurtisane", "name_zh_CN": "玉质女乐俑", "name_es_ES": "Figurilla de cortesana de jade", "name_ru_RU": "Нефритовая фигурка куртизанки", "name_it_IT": "Statuetta di Giada: Cortigiana", "name_pt_PT": "Estatueta de Cortesã de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86775, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Warlord Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 215, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0358999967575073, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Warlord Figurine", "name_ko_KR": "비취 전쟁군주 조각상", "name_fr_FR": "Figurine de seigneur de guerre en jade", "name_de_DE": "Jadefigur eines Kriegsfürsten", "name_zh_CN": "玉质军阀俑", "name_es_ES": "Figurilla de señor de la guerra de jade", "name_ru_RU": "Нефритовая фигурка полководца", "name_it_IT": "Statuetta di Giada: Signore della Guerra", "name_pt_PT": "Estatueta de Senhor da Guerra de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86790, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Dragon's Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 222, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9801999926567078, "flags_1": 0, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Dragon's Blood", "name_ko_KR": "용의 피가 담긴 약병", "name_fr_FR": "Fiole de sang de dragon", "name_de_DE": "Phiole mit Drachenblut", "name_zh_CN": "龙血之瓶", "name_es_ES": "Vial de sangre de dragón", "name_ru_RU": "Чаша крови дракона", "name_it_IT": "Fiala di Sangue di Drago", "name_pt_PT": "Frasco com Sangue de Dragão", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86791, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottle of Infinite Stars", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 208, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 0, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bottle of Infinite Stars", "name_ko_KR": "무한한 별들의 병", "name_fr_FR": "Bouteille d'étoiles infinies", "name_de_DE": "Flasche der endlosen Sterne", "name_zh_CN": "群星之瓶", "name_es_ES": "Botella de estrellas infinitas", "name_ru_RU": "Бутыль бессчетных звезд", "name_it_IT": "Fiasca delle Stelle Infinite", "name_pt_PT": "Garrafa de Estrelas Infinitas", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86792, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Light of the Cosmos", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 217, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Light of the Cosmos", "name_ko_KR": "우주의 빛", "name_fr_FR": "Lumière du cosmos", "name_de_DE": "Licht des Kosmos", "name_zh_CN": "秩序之光", "name_es_ES": "Luz del cosmos", "name_ru_RU": "Свет космоса", "name_it_IT": "Luce del Cosmo", "name_pt_PT": "Luz do Cosmos", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86802, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lei Shen's Final Orders", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 216, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 0, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lei Shen's Final Orders", "name_ko_KR": "레이 션의 마지막 명령서", "name_fr_FR": "Ordres ultimes de Lei Shen", "name_de_DE": "Lei Shens letzte Befehle", "name_zh_CN": "雷神的遗诏", "name_es_ES": "Últimas órdenes de Lei Shen", "name_ru_RU": "Последние приказы Лэй Шэня", "name_it_IT": "Ordini Finali di Lei Shen", "name_pt_PT": "Ordens Finais de Lei Shen", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86805, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Qin-xi's Polarizing Seal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 218, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Qin-xi's Polarizing Seal", "name_ko_KR": "친시의 양극화 인장", "name_fr_FR": "Sceau polarisant de Qin Xi", "name_de_DE": "Qin-xis polarisierendes Siegel", "name_zh_CN": "秦希的偏振之印", "name_es_ES": "Sello polarizante de Qin-xi", "name_ru_RU": "Поляризующая печать Цинь-си", "name_it_IT": "Sigillo Polarizzato di Qin-Xi", "name_pt_PT": "Selo Polarizante de Qin-xi", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86881, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stuff of Nightmares", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 220, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250939, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stuff of Nightmares", "name_ko_KR": "악몽의 물체", "name_fr_FR": "Essence des cauchemars", "name_de_DE": "Alptraumgespinst", "name_zh_CN": "梦魇残片", "name_es_ES": "Cualidad de pesadillas", "name_ru_RU": "Сущность ночных кошмаров", "name_it_IT": "Materia degli Incubi", "name_pt_PT": "Matéria-prima de Pesadelos", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86885, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spirits of the Sun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 219, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250939, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0435999631881714, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spirits of the Sun", "name_ko_KR": "태양의 영혼", "name_fr_FR": "Esprits du soleil", "name_de_DE": "Geister der Sonne", "name_zh_CN": "骄阳之魂", "name_es_ES": "Espíritus del sol", "name_ru_RU": "Духи солнца", "name_it_IT": "Spiriti del Sole", "name_pt_PT": "Espíritos do Sol", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86890, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terror in the Mists", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 221, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250939, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Terror in the Mists", "name_ko_KR": "안개 속의 공포", "name_fr_FR": "Terreur dans les brumes", "name_de_DE": "Schrecken in den Nebeln", "name_zh_CN": "萦雾之恐", "name_es_ES": "Terror en la niebla", "name_ru_RU": "Ужас в туманах", "name_it_IT": "Terrore nelle Nebbie", "name_pt_PT": "Terror na Névoa", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86894, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmist Vortex", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 209, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250939, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Darkmist Vortex", "name_ko_KR": "암흑안개 소용돌이", "name_fr_FR": "Vortex de Sombrebrume", "name_de_DE": "Dunkelnebelvortex", "name_zh_CN": "黑雾漩涡", "name_es_ES": "Vórtice Niebla Negra", "name_ru_RU": "Вихрь Мглистой пещеры", "name_it_IT": "Vortice di Brumafosca", "name_pt_PT": "Vórtice Névoa Negra", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86907, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Terror", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 210, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250939, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0469000339508057, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Essence of Terror", "name_ko_KR": "경악의 정수", "name_fr_FR": "Essence de la terreur", "name_de_DE": "Essenz des Schreckens", "name_zh_CN": "惊怖精华", "name_es_ES": "Esencia de terror", "name_ru_RU": "Сущность ужаса", "name_it_IT": "Essenza del Terrore", "name_pt_PT": "Essência do Terror", "on_use": false, "id_encounter": 709, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87057, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottle of Infinite Stars", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 208, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bottle of Infinite Stars", "name_ko_KR": "무한한 별들의 병", "name_fr_FR": "Bouteille d'étoiles infinies", "name_de_DE": "Flasche der endlosen Sterne", "name_zh_CN": "群星之瓶", "name_es_ES": "Botella de estrellas infinitas", "name_ru_RU": "Бутыль бессчетных звезд", "name_it_IT": "Fiasca delle Stelle Infinite", "name_pt_PT": "Garrafa de Estrelas Infinitas", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 87063, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Dragon's Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 222, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9801999926567078, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Dragon's Blood", "name_ko_KR": "용의 피가 담긴 약병", "name_fr_FR": "Fiole de sang de dragon", "name_de_DE": "Phiole mit Drachenblut", "name_zh_CN": "龙血之瓶", "name_es_ES": "Vial de sangre de dragón", "name_ru_RU": "Чаша крови дракона", "name_it_IT": "Fiala di Sangue di Drago", "name_pt_PT": "Frasco com Sangue de Dragão", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 87065, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Light of the Cosmos", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 217, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Light of the Cosmos", "name_ko_KR": "우주의 빛", "name_fr_FR": "Lumière du cosmos", "name_de_DE": "Licht des Kosmos", "name_zh_CN": "秩序之光", "name_es_ES": "Luz del cosmos", "name_ru_RU": "Свет космоса", "name_it_IT": "Luce del Cosmo", "name_pt_PT": "Luz do Cosmos", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 87072, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lei Shen's Final Orders", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 216, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lei Shen's Final Orders", "name_ko_KR": "레이 션의 마지막 명령서", "name_fr_FR": "Ordres ultimes de Lei Shen", "name_de_DE": "Lei Shens letzte Befehle", "name_zh_CN": "雷神的遗诏", "name_es_ES": "Últimas órdenes de Lei Shen", "name_ru_RU": "Последние приказы Лэй Шэня", "name_it_IT": "Ordini Finali di Lei Shen", "name_pt_PT": "Ordens Finais de Lei Shen", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 87075, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Qin-xi's Polarizing Seal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 218, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Qin-xi's Polarizing Seal", "name_ko_KR": "친시의 양극화 인장", "name_fr_FR": "Sceau polarisant de Qin Xi", "name_de_DE": "Qin-xis polarisierendes Siegel", "name_zh_CN": "秦希的偏振之印", "name_es_ES": "Sello polarizante de Qin-xi", "name_ru_RU": "Поляризующая печать Цинь-си", "name_it_IT": "Sigillo Polarizzato di Qin-Xi", "name_pt_PT": "Selo Polarizante de Qin-xi", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 87079, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Bandit Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 211, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Bandit Figurine", "name_ko_KR": "비취 산적 조각상", "name_fr_FR": "Figurine de bandit en jade", "name_de_DE": "Jadefigur eines Banditen", "name_zh_CN": "玉质盗匪俑", "name_es_ES": "Figurilla de bandido de jade", "name_ru_RU": "Нефритовая фигурка разбойника", "name_it_IT": "Statuetta di Giada: Bandito", "name_pt_PT": "Estatueta de Bandido de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87080, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Magistrate Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 214, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Magistrate Figurine", "name_ko_KR": "비취 집정관 조각상", "name_fr_FR": "Figurine de magistrat en jade", "name_de_DE": "Jadefigur eines Magistrats", "name_zh_CN": "玉质文官俑", "name_es_ES": "Figurilla de magistrado de jade", "name_ru_RU": "Нефритовая фигурка судьи", "name_it_IT": "Statuetta di Giada: Magistrato", "name_pt_PT": "Estatueta de Juiz de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87081, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Courtesan Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 213, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0321999788284302, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Courtesan Figurine", "name_ko_KR": "비취 무희 조각상", "name_fr_FR": "Figurine de courtisane en jade", "name_de_DE": "Jadefigur einer Kurtisane", "name_zh_CN": "玉质女乐俑", "name_es_ES": "Figurilla de cortesana de jade", "name_ru_RU": "Нефритовая фигурка куртизанки", "name_it_IT": "Statuetta di Giada: Cortigiana", "name_pt_PT": "Estatueta de Cortesã de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87082, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Charioteer Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 212, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Charioteer Figurine", "name_ko_KR": "비취 전차병 조각상", "name_fr_FR": "Figurine de charretier en jade", "name_de_DE": "Jadefigur eines Wagenfahrers", "name_zh_CN": "玉质御者俑", "name_es_ES": "Figurilla de auriga de jade", "name_ru_RU": "Нефритовая фигурка возничего", "name_it_IT": "Statuetta di Giada: Cocchiere", "name_pt_PT": "Estatueta de Charreteiro de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87083, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Warlord Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 215, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0358999967575073, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Warlord Figurine", "name_ko_KR": "비취 전쟁군주 조각상", "name_fr_FR": "Figurine de seigneur de guerre en jade", "name_de_DE": "Jadefigur eines Kriegsfürsten", "name_zh_CN": "玉质军阀俑", "name_es_ES": "Figurilla de señor de la guerra de jade", "name_ru_RU": "Нефритовая фигурка полководца", "name_it_IT": "Statuetta di Giada: Signore della Guerra", "name_pt_PT": "Estatueta de Chefe Guerreiro de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stuff of Nightmares", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 220, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 264131, "buy_price": 1056527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stuff of Nightmares", "name_ko_KR": "악몽의 물체", "name_fr_FR": "Essence des cauchemars", "name_de_DE": "Alptraumgespinst", "name_zh_CN": "梦魇残片", "name_es_ES": "Cualidad de pesadillas", "name_ru_RU": "Сущность ночных кошмаров", "name_it_IT": "Materia degli Incubi", "name_pt_PT": "Matéria-prima de Pesadelos", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spirits of the Sun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 219, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 264131, "buy_price": 1056527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0435999631881714, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spirits of the Sun", "name_ko_KR": "태양의 영혼", "name_fr_FR": "Esprits du soleil", "name_de_DE": "Geister der Sonne", "name_zh_CN": "骄阳之魂", "name_es_ES": "Espíritus del sol", "name_ru_RU": "Духи солнца", "name_it_IT": "Spiriti del Sole", "name_pt_PT": "Espíritos do Sol", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87167, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terror in the Mists", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 221, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 264131, "buy_price": 1056527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Terror in the Mists", "name_ko_KR": "안개 속의 공포", "name_fr_FR": "Terreur dans les brumes", "name_de_DE": "Schrecken in den Nebeln", "name_zh_CN": "萦雾之恐", "name_es_ES": "Terror en la niebla", "name_ru_RU": "Ужас в туманах", "name_it_IT": "Terrore nelle Nebbie", "name_pt_PT": "Terror na Névoa", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87172, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmist Vortex", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 209, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 264131, "buy_price": 1056527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Darkmist Vortex", "name_ko_KR": "암흑안개 소용돌이", "name_fr_FR": "Vortex de Sombrebrume", "name_de_DE": "Dunkelnebelvortex", "name_zh_CN": "黑雾漩涡", "name_es_ES": "Vórtice Niebla Negra", "name_ru_RU": "Вихрь Мглистой пещеры", "name_it_IT": "Vortice di Brumafosca", "name_pt_PT": "Vórtice Névoa Negra", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87175, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Terror", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 210, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 264131, "buy_price": 1056527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0469000339508057, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Essence of Terror", "name_ko_KR": "경악의 정수", "name_fr_FR": "Essence de la terreur", "name_de_DE": "Essenz des Schreckens", "name_zh_CN": "惊怖精华", "name_es_ES": "Esencia de terror", "name_ru_RU": "Сущность ужаса", "name_it_IT": "Essenza del Terrore", "name_pt_PT": "Essência do Terror", "on_use": false, "id_encounter": 709, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87495, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gerp's Perfect Arrow", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 172601, "buy_price": 690407, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Gerp's Perfect Arrow", "name_ko_KR": "거프의 완벽한 화살", "name_fr_FR": "Flèche parfaite de Gerp", "name_de_DE": "Gerps perfekter Pfeil", "name_zh_CN": "格普的完美之箭", "name_es_ES": "Flecha perfecta de Gerp", "name_ru_RU": "Идеальная стрела Джерпа", "name_it_IT": "Freccia Perfetta di Gerp", "name_pt_PT": "Flecha Perfeita de Gerp", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87496, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Daelo's Final Words", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Daelo's Final Words", "name_ko_KR": "다엘로의 마지막 기록", "name_fr_FR": "Derniers mots de Daelo", "name_de_DE": "Daelos letzte Worte", "name_zh_CN": "戴罗的遗言", "name_es_ES": "Últimas palabras de Daelo", "name_ru_RU": "Последние слова Даэло", "name_it_IT": "Ultime Parole di Daelo", "name_pt_PT": "Últimas Palavras de Daelo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87497, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Core of Decency", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 169176, "buy_price": 676707, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Core of Decency", "name_ko_KR": "품위의 핵", "name_fr_FR": "Noyau de décence", "name_de_DE": "Kern des Anstands", "name_zh_CN": "庄严之心", "name_es_ES": "Núcleo de decencia", "name_ru_RU": "Средоточие благопристойности", "name_it_IT": "Nucleo della Decenza", "name_pt_PT": "Núcleo da Decência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87498, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritwhisper Conch", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 160043, "buy_price": 640174, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9997000098228455, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Spiritwhisper Conch", "name_ko_KR": "속삭이는 영혼의 소라", "name_fr_FR": "Conque de murmure des esprits", "name_de_DE": "Geisterflüstermuschel", "name_zh_CN": "鬼语海螺", "name_es_ES": "Caracola susurraespíritus", "name_ru_RU": "Раковина шепота духов", "name_it_IT": "Conchiglia dell'Uomo che Sussurrava agli Spiriti", "name_pt_PT": "Concha da Comunicação Espiritual", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87499, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grakl's Gleaming Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 160043, "buy_price": 640174, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0408999919891357, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Grakl's Gleaming Talisman", "name_ko_KR": "그라클의 번뜩이는 부적", "name_fr_FR": "Talisman resplendissant de Grakl", "name_de_DE": "Grakls glänzender Talisman", "name_zh_CN": "格拉克的微光护符", "name_es_ES": "Dije reluciente de Grakl", "name_ru_RU": "Сияющий талисман Гракла", "name_it_IT": "Talismano Luccicante di Grakl", "name_pt_PT": "Talismã Rebrilhante de Grakl", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87500, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brooch of Munificent Deeds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 163088, "buy_price": 652352, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Brooch of Munificent Deeds", "name_ko_KR": "아낌없는 선행의 브로치", "name_fr_FR": "Broche des actes munificents", "name_de_DE": "Brosche der großzügigen Taten", "name_zh_CN": "辉煌功绩胸针", "name_es_ES": "Broche de hazañas munificentes", "name_ru_RU": "Брошь щедрых деяний", "name_it_IT": "Spilla dei Grandi Eventi", "name_pt_PT": "Broche dos Feitos Munificentes", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87571, "race_mask": 18446744073709551615, "desc": "The Grim Guzzler's brawls are epic tales of legend.", "pad2": "", "pad1": "", "pad0": "", "name": "Brawler's Statue", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Brawler's Statue", "name_ko_KR": "싸움꾼의 조각상", "name_fr_FR": "Statue du bagarreur", "name_de_DE": "Muskelprotzstatue", "name_zh_CN": "争斗者雕像", "name_es_ES": "Estatua de camorrista", "name_ru_RU": "Статуя буяна", "name_it_IT": "Pegno dell'Attaccabrighe", "name_pt_PT": "Estátua do Brigão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87572, "race_mask": 18446744073709551615, "desc": "Never stops twice.", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Wristwatch", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Mithril Wristwatch", "name_ko_KR": "미스릴 손목시계", "name_fr_FR": "Bracelet-montre en mithril", "name_de_DE": "Mithrilarmbanduhr", "name_zh_CN": "秘银腕表", "name_es_ES": "Reloj de pulsera de mitril", "name_ru_RU": "Мифриловые часики", "name_it_IT": "Orologio da Polso di Mithril", "name_pt_PT": "Relógio de Pulso de Mithril", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87573, "race_mask": 18446744073709551615, "desc": "Reeking and rock hard.", "pad2": "", "pad1": "", "pad0": "", "name": "Thousand-Year Pickled Egg", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thousand-Year Pickled Egg", "name_ko_KR": "천 년 절인 초란", "name_fr_FR": "Œuf mariné un millier d'années", "name_de_DE": "Tausend Jahre altes Solei", "name_zh_CN": "千年腌蛋", "name_es_ES": "Huevo escabechado milenario", "name_ru_RU": "Тысячелетнее маринованное яйцо", "name_it_IT": "Uovo in Salamoia Millenario", "name_pt_PT": "Ovo em Conserva de Mil Anos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87574, "race_mask": 18446744073709551615, "desc": "Enchanted to fit perfectly beneath any mug, with a frosty finish.", "pad2": "", "pad1": "", "pad0": "", "name": "Coren's Cold Chromium Coaster", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Coren's Cold Chromium Coaster", "name_ko_KR": "코렌의 차가운 크롬 받침", "name_fr_FR": "Sous-bock de Coren en chrome glacé", "name_de_DE": "Corens kalter Chromuntersetzer", "name_zh_CN": "科林的冷冻铬银杯垫", "name_es_ES": "Posavasos de cromo frío de Coren", "name_ru_RU": "Охлажденная хромированная подставка под чашку Корена", "name_it_IT": "Sottobicchiere Cromato Freddo di Coren", "name_pt_PT": "Porta-copos Cromado e Gelado de Coren", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87575, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bubbliest Brightbrew Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bubbliest Brightbrew Charm", "name_ko_KR": "가장 풍부한 거품의 감미로운 투명 맥주", "name_fr_FR": "Charme brillebière le plus pétillant", "name_de_DE": "Perlendster Hellbräuglücksbringer", "name_zh_CN": "光明富泡酒咒符", "name_es_ES": "Talismán Brillobirra más bullente", "name_ru_RU": "Амулет самого крепкого игристого светлого напитка", "name_it_IT": "Talismano della Birra che fa Benissimo", "name_pt_PT": "Patuá Cervaleve Mais Borbulhante de Todos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bitterest Balebrew Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bitterest Balebrew Charm", "name_ko_KR": "가장 쓰면서도 감미로운 고통의 맥주", "name_fr_FR": "Charme torvebière le plus amer", "name_de_DE": "Bitterster Plörrbräuglücksbringer", "name_zh_CN": "黑暗极苦烈酒咒符", "name_es_ES": "Talismán Fardobirra amarguísima", "name_ru_RU": "Амулет самого горького темного варева", "name_it_IT": "Talismano della Birra che fa Malissimo", "name_pt_PT": "Patuá Cervamarga Muito Amarga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87780, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Martar's Magnifying Glass", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9584000110626221, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Martar's Magnifying Glass", "name_ko_KR": "마르타의 확대경", "name_fr_FR": "Loupe de Martar", "name_de_DE": "Martars Lupe", "name_zh_CN": "马尔泰的放大镜", "name_es_ES": "Lupa de Martar", "name_ru_RU": "Увеличительное стекло Мартара", "name_it_IT": "Lente d'Ingrandimento di Martar", "name_pt_PT": "Luneta de Martar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88294, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashing Steel Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3142, "buy_price": 15711, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0281000137329102, "flags_1": 524288, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 19, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 13, "inv_type": 12, "quality": 3, "name_en_US": "Flashing Steel Talisman", "name_ko_KR": "번쩍이는 강철 부적", "name_fr_FR": "Talisman d'acier miroitant", "name_de_DE": "Blitzender Stahltalisman", "name_zh_CN": "炫目精钢护符", "name_es_ES": "Dije de acero ostentoso", "name_ru_RU": "Талисман стальной вспышки", "name_it_IT": "Talismano d'Acciaio Lampeggiante", "name_pt_PT": "Talismã do Clarão de Aço", "on_use": true, "id_encounter": 674, "id_journal_instance": 316, "id_map": 1004, "instance_type": 1}, {"id": 88355, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Searing Words", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7300, "buy_price": 36502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0354000329971313, "flags_1": 524288, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Searing Words", "name_ko_KR": "이글거리는 주문", "name_fr_FR": "Mots incendiaires", "name_de_DE": "Sengende Worte", "name_zh_CN": "焦灼真言", "name_es_ES": "Palabras abrasadoras", "name_ru_RU": "Обжигающие слова", "name_it_IT": "Parole di Fuoco", "name_pt_PT": "Palavras Calcinantes", "on_use": false, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 88358, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lessons of the Darkmaster", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7300, "buy_price": 36502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 524288, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Lessons of the Darkmaster", "name_ko_KR": "암흑스승의 가르침", "name_fr_FR": "Leçons du Sombre Maître", "name_de_DE": "Lektionen des Dunkelmeisters", "name_zh_CN": "黑暗院长遗训", "name_es_ES": "Lecciones del maestro oscuro", "name_ru_RU": "Уроки темного магистра", "name_it_IT": "Lezioni del Maestro Oscuro", "name_pt_PT": "Lições do Mestre da Escuridão", "on_use": true, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 88360, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Price of Progress", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7300, "buy_price": 36502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0318000316619873, "flags_1": 524288, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Price of Progress", "name_ko_KR": "연구의 대가", "name_fr_FR": "Prix du progrès", "name_de_DE": "Preis des Fortschritts", "name_zh_CN": "进修的代价", "name_es_ES": "Precio del progreso", "name_ru_RU": "Цена продвижения", "name_it_IT": "Prezzo del Progresso", "name_pt_PT": "Preço do Progresso", "on_use": false, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 88368, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flamelager's Summer Keg", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 125441, "buy_price": 501765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9957000017166138, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Flamelager's Summer Keg", "name_ko_KR": "플레임라거의 여름 맥주통", "name_fr_FR": "Fût d'été de Blonde de Feu", "name_de_DE": "Fass mit Flammenbräus Sommerbier", "name_zh_CN": "火酒的夏日酒桶", "name_es_ES": "Barril de verano de Aguardiente", "name_ru_RU": "Летний бочонок Огненного Лагера", "name_it_IT": "Barile Estivo dei Birra Calda", "name_pt_PT": "Barril de Verão do Cevada Flamejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88369, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alerage's Reserve Keg", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 125441, "buy_price": 501765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994000196456909, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Alerage's Reserve Keg", "name_ko_KR": "에일레이지의 숙성 맥주통", "name_fr_FR": "Fût spécial de Courroux de Bière", "name_de_DE": "Bierwuts Reservefass", "name_zh_CN": "酒怒储备桶", "name_es_ES": "Barril de reserva de Cerveza Colérica", "name_ru_RU": "Припасенный бочонок Хмельной Ярости", "name_it_IT": "Barile di Riserva di Birra Furiosa", "name_pt_PT": "Barril Reserva de Furor Ébrio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88371, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Watermelon Bomb", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14639, "buy_price": 73195, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068000555038452, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Watermelon Bomb", "name_ko_KR": "수박 폭탄", "name_fr_FR": "Bombe pastèque", "name_de_DE": "Wassermelonenbombe", "name_zh_CN": "西瓜炸弹", "name_es_ES": "Sandía bomba", "name_ru_RU": "Арбузная бомба", "name_it_IT": "Anguria Bomba", "name_pt_PT": "Bomba de Melancia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Orange Painted Turnip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14905, "buy_price": 74526, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0250999927520752, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Orange Painted Turnip", "name_ko_KR": "주황색으로 색칠한 순무", "name_fr_FR": "Navet peint en orange", "name_de_DE": "Orange angemalte Rübe", "name_zh_CN": "涂成橙色的芜菁", "name_es_ES": "Naba pintada de naranja", "name_ru_RU": "Покрашенная в оранжевый цвет репа", "name_it_IT": "Rapa Dipinta d'Arancione", "name_pt_PT": "Nabo Laranja Pintado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88378, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mothallus' Spinneret", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130198, "buy_price": 520793, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0325000286102295, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mothallus' Spinneret", "name_ko_KR": "모스랄루스의 돌기", "name_fr_FR": "Filière de Mothallus", "name_de_DE": "Mottallus' Spinndrüsen", "name_zh_CN": "魔丝勒斯的丝囊", "name_es_ES": "Hilera de Alevón", "name_ru_RU": "Паутинная железа Мотылянь", "name_it_IT": "Ghiandola di Falenian", "name_pt_PT": "Fiandeira de Maripozilla", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Explosive Barrel", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16254, "buy_price": 81273, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068999528884888, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Explosive Barrel", "name_ko_KR": "폭탄 통", "name_fr_FR": "Baril explosif", "name_de_DE": "Explosives Fass", "name_zh_CN": "炸药桶", "name_es_ES": "Barril explosivo", "name_ru_RU": "Взрывоопасная бочка", "name_it_IT": "Barile di Esplosivi", "name_pt_PT": "Barril Explosivo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88583, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ban's Bag of Bombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16609, "buy_price": 83049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0289000272750854, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ban's Bag of Bombs", "name_ko_KR": "반의 폭탄 꾸러미", "name_fr_FR": "Bouquet de bombes de Ban", "name_de_DE": "Bans Bombenbündel", "name_zh_CN": "班的炸药包", "name_es_ES": "Bolsa de bombas de Ban", "name_ru_RU": "Мешок с бомбами Баня", "name_it_IT": "Sacco di Bombe di Ban", "name_pt_PT": "Bolsa de Bombas do Ban", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88585, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dislodged Stinger", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16729, "buy_price": 83646, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362999439239502, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Dislodged Stinger", "name_ko_KR": "제거된 독침", "name_fr_FR": "Aiguillon délogé", "name_de_DE": "Herausgerissener Stachel", "name_zh_CN": "放逐毒刺", "name_es_ES": "Aguijón desprendido", "name_ru_RU": "Вырванное жало", "name_it_IT": "Pungiglione Rimosso", "name_pt_PT": "Aguilhoador Desalojado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88590, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurong's Gun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15408, "buy_price": 77044, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545000195503235, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Nurong's Gun", "name_ko_KR": "누롱의 총", "name_fr_FR": "Fusil de Nurong", "name_de_DE": "Nurongs Waffe", "name_zh_CN": "砮荣的枪支", "name_es_ES": "Pistola de Nurong", "name_ru_RU": "Ружье Нужуна", "name_it_IT": "Pistola di Nurong", "name_pt_PT": "Arma de Nurong", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Defender's Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9955000281333923, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Defender's Stone", "name_ko_KR": "수호자의 수행자 돌", "name_fr_FR": "Pierre de défenseur monastique", "name_de_DE": "Monastischer Stein des Verteidigers", "name_zh_CN": "禅院防御者之石", "name_es_ES": "Piedra de defensor monástica", "name_ru_RU": "Монастырский камень защитника", "name_it_IT": "Pietra della Difesa da Monaco", "name_pt_PT": "Pedra do Defensor Monástico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88636, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Defender's Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Defender's Idol", "name_ko_KR": "수호자의 수행자 우상", "name_fr_FR": "Idole de défenseur monastique", "name_de_DE": "Monastisches Idol des Verteidigers", "name_zh_CN": "禅院防御者雕像", "name_es_ES": "Ídolo de defensor monástico", "name_ru_RU": "Монастырский идол защитника", "name_it_IT": "Idolo della Difesa da Monaco", "name_pt_PT": "Ídolo do Defensor Monástico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88639, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Stone of Rage", "name_ko_KR": "분노의 수행자 돌", "name_fr_FR": "Pierre de rage monastique", "name_de_DE": "Monastischer Stein des Zorns", "name_zh_CN": "禅院狂暴之石", "name_es_ES": "Piedra de ira monástica", "name_ru_RU": "Монастырский камень ярости", "name_it_IT": "Pietra della Rabbia da Monaco", "name_pt_PT": "Pedra Monástica da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88642, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Idol of Rage", "name_ko_KR": "분노의 수행자 우상", "name_fr_FR": "Idole de rage monastique", "name_de_DE": "Monastisches Idol des Zorns", "name_zh_CN": "禅院狂暴雕像", "name_es_ES": "Ídolo de ira monástico", "name_ru_RU": "Монастырский идол ярости", "name_it_IT": "Idolo della Rabbia da Monaco", "name_pt_PT": "Ídolo Monástico da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Stone of Wisdom", "name_ko_KR": "지혜의 수행자 돌", "name_fr_FR": "Pierre de sagesse monastique", "name_de_DE": "Monastischer Stein der Weisheit", "name_zh_CN": "禅院智慧之石", "name_es_ES": "Piedra de sabiduría monástica", "name_ru_RU": "Монастырский камень мудрости", "name_it_IT": "Pietra della Saggezza da Monaco", "name_pt_PT": "Pedra Monástica da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Idol of Wisdom", "name_ko_KR": "지혜의 수행자 우상", "name_fr_FR": "Idole de sagesse monastique", "name_de_DE": "Monastisches Idol der Weisheit", "name_zh_CN": "禅院智慧雕像", "name_es_ES": "Ídolo de sabiduría monástico", "name_ru_RU": "Монастырский идол мудрости", "name_it_IT": "Idolo della Saggezza da Monaco", "name_pt_PT": "Ídolo Monástico da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shado-Pan Dragon Gun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 2958300, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0291999578475952, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Shado-Pan Dragon Gun", "name_ko_KR": "음영파 용대포", "name_fr_FR": "Fusil-dragon pandashan", "name_de_DE": "Drachengewehr der Shado-Pan", "name_zh_CN": "影踪派龙枪", "name_es_ES": "Pistola de dragón del Shadopan", "name_ru_RU": "Драконье ружье Шадо-Пан", "name_it_IT": "Archibugio del Drago degli Shandaren", "name_pt_PT": "Arma-dragão Shado-Pan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89079, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lao-Chin's Liquid Courage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 237, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 3982200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lao-Chin's Liquid Courage", "name_ko_KR": "라오친의 액체 용기", "name_fr_FR": "Courage en bouteille de Lao Chin", "name_de_DE": "Lao-Chens flüssiger Mut", "name_zh_CN": "老陈的壮胆酒", "name_es_ES": "Coraje líquido de Lao-Chen", "name_ru_RU": "Эликсир храбрости Лао-Чиня", "name_it_IT": "Coraggio Liquido di Lao-Chin", "name_pt_PT": "Coragem Líquida de Lao-Chin", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89080, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scroll of Revered Ancestors", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 237, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 3997000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Scroll of Revered Ancestors", "name_ko_KR": "존경받는 조상의 두루마리", "name_fr_FR": "Parchemin d'ancêtres révérés", "name_de_DE": "Rolle der geachteten Vorfahren", "name_zh_CN": "崇敬先祖卷轴", "name_es_ES": "Pergamino de ancestros reverenciados", "name_ru_RU": "Свиток почитаемых предков", "name_it_IT": "Pergamena degli Antenati Onorati", "name_pt_PT": "Pergaminho dos Ancestrais Reverenciados", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89081, "race_mask": 18446744073709551615, "desc": "A gift from Snow Blossom, Destroyer of Men", "pad2": "", "pad1": "", "pad0": "", "name": "Blossom of Pure Snow", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 237, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4012200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Blossom of Pure Snow", "name_ko_KR": "순수한 눈꽃", "name_fr_FR": "Fleur de neige pure", "name_de_DE": "Blüte aus reinem Schnee", "name_zh_CN": "白雪之花", "name_es_ES": "Flor de nieve pura", "name_ru_RU": "Цветок чистейшей белизны", "name_it_IT": "Bocciolo di Fior di Neve", "name_pt_PT": "Botão de Flor Nívea", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89082, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hawkmaster's Talon", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 237, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4027400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Hawkmaster's Talon", "name_ko_KR": "매사냥꾼의 발톱", "name_fr_FR": "Serre de maître des faucons", "name_de_DE": "Kralle des Falkenmeisters", "name_zh_CN": "鹰眼大师之爪", "name_es_ES": "Garfa del maestro de halcones", "name_ru_RU": "Коготь повелителя ястребов", "name_it_IT": "Artiglio del Mastro Falconiere", "name_pt_PT": "Garra do Mestre Falcoeiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89083, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Belly Wok", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 237, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4042600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Iron Belly Wok", "name_ko_KR": "무쇠뱃살 냄비", "name_fr_FR": "Wok de Panse de Fer", "name_de_DE": "Wok des eisernen Bauchs", "name_zh_CN": "铁腹炒锅", "name_es_ES": "Wok de Panza Férrea", "name_ru_RU": "Вок Стального Брюха", "name_it_IT": "Wok di Panza Forte", "name_pt_PT": "Wok de Barriga de Ferro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89232, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mogu Rune of Paralysis", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 2786700, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Mogu Rune of Paralysis", "name_ko_KR": "마비의 모구 룬", "name_fr_FR": "Rune mogu de paralysie", "name_de_DE": "Mogurune der Paralyse", "name_zh_CN": "魔古麻痹符文", "name_es_ES": "Runa de parálisis mogu", "name_ru_RU": "Парализующая руна могу", "name_it_IT": "Runa della Paralisi dei Mogu", "name_pt_PT": "Runa Mogu da Paralisia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89611, "race_mask": 18446744073709551615, "desc": "Artifact details have already been logged in your Archaeology Journal, under the Completed Artifacts tab.", "pad2": "", "pad1": "", "pad0": "", "name": "Quilen Statuette", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 150529, "buy_price": 602119, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9957000017166138, "flags_1": 134807552, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Quilen Statuette", "name_ko_KR": "기렌 조각상", "name_fr_FR": "Statuette de quilen", "name_de_DE": "Qilenstatuette", "name_zh_CN": "魁麟雕像", "name_es_ES": "Estatuilla de quilen", "name_ru_RU": "Статуэтка цийлиня", "name_it_IT": "Statuetta Quilen", "name_pt_PT": "Estatueta Quílen", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91099, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94373, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Conquest", "name_ko_KR": "압제적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador tiránico", "name_ru_RU": "Жетон завоевания деспотичного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Conquista do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91104, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94356, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Conquest", "name_ko_KR": "압제적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador tiránico", "name_ru_RU": "Знак завоевания деспотичного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Conquista do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91209, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94396, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador tiránico", "name_ru_RU": "Эмблема жестокости деспотичного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Emblema da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91210, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94422, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador tiránico", "name_ru_RU": "Эмблема упорства деспотичного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Emblema da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91211, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94329, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Meditation", "name_ko_KR": "압제적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador tiránico", "name_ru_RU": "Эмблема медитации деспотичного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Emblema da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91400, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94346, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Dominance", "name_ko_KR": "압제적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador tiránico", "name_ru_RU": "Жетон господства деспотичного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Dominância do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91401, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94482, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Dominance", "name_ko_KR": "압제적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador tiránico", "name_ru_RU": "Знак господства деспотичного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Dominância do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91410, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94349, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Victory", "name_ko_KR": "압제적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur tyrannique", "name_de_DE": "Siegesabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador tiránico", "name_ru_RU": "Жетон победы деспотичного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Vitória do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91415, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94415, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Victory", "name_ko_KR": "압제적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur tyrannique", "name_de_DE": "Siegesinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador tiránico", "name_ru_RU": "Знак победы деспотичного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Vitória do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Conquest", "name_ko_KR": "극악무도한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur malveillant", "name_de_DE": "Eroberungsabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador malévolo", "name_ru_RU": "Жетон завоевания злонравного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Conquista do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91457, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Conquest", "name_ko_KR": "극악무도한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur malveillant", "name_de_DE": "Eroberungsinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador malévolo", "name_ru_RU": "Знак завоевания злонравного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Conquista do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91562, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador malévolo", "name_ru_RU": "Эмблема жестокости злонравного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Emblema da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91563, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador malévolo", "name_ru_RU": "Эмблема упорства злонравного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Emblema da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91564, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur malveillant", "name_de_DE": "Meditationsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador malévolo", "name_ru_RU": "Эмблема медитации злонравного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Emblema da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91682, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91683, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador malévolo", "name_ru_RU": "Медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91683, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91682, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador malévolo", "name_ru_RU": "Медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91684, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91685, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador malévolo", "name_ru_RU": "Медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91685, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91684, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador malévolo", "name_ru_RU": "Медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91686, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91687, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur malveillant", "name_de_DE": "Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador malévolo", "name_ru_RU": "Медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91687, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91686, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur malveillant", "name_de_DE": "Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador malévolo", "name_ru_RU": "Медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91753, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Dominance", "name_ko_KR": "극악무도한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur malveillant", "name_de_DE": "Vorherrschaftsabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador malévolo", "name_ru_RU": "Жетон господства злонравного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Dominância do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91754, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Dominance", "name_ko_KR": "극악무도한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur malveillant", "name_de_DE": "Vorherrschaftsinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador malévolo", "name_ru_RU": "Знак господства злонравного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Dominância do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Victory", "name_ko_KR": "극악무도한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur malveillant", "name_de_DE": "Siegesabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador malévolo", "name_ru_RU": "Жетон победы злонравного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Vitória do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91768, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Victory", "name_ko_KR": "극악무도한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur malveillant", "name_de_DE": "Siegesinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador malévolo", "name_ru_RU": "Знак победы злонравного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Vitória do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92782, "race_mask": 18446744073709551615, "desc": "The blood of the footman it was taken from has left a permanent stain.", "pad2": "", "pad1": "", "pad0": "", "name": "Steadfast Footman's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0478999614715576, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Steadfast Footman's Medallion", "name_ko_KR": "굳센 보병의 메달", "name_fr_FR": "Médaillon du fantassin inébranlable", "name_de_DE": "Medaillon des standhaften Fußsoldaten", "name_zh_CN": "坚定步兵奖章", "name_es_ES": "Medallón del lacayo férreo", "name_ru_RU": "Медальон стойкого пехотинца", "name_it_IT": "Medaglione del Coscritto Costante", "name_pt_PT": "Medalhão do Soldado Raso Resistente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92783, "race_mask": 18446744073709551615, "desc": "Several gash marks indicate that the grunt did not part with it willingly.", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Hardened Grunt", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9514999985694885, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Mark of the Hardened Grunt", "name_ko_KR": "단련된 그런트의 징표", "name_fr_FR": "Marque du grunt endurci", "name_de_DE": "Mal des gestählten Grunzers", "name_zh_CN": "坚强步兵印记", "name_es_ES": "Marca del bruto curtido", "name_ru_RU": "Значок закаленного рубаки", "name_it_IT": "Marchio del Grunt Corazzato", "name_pt_PT": "Marca do Bruto Endurecido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92784, "race_mask": 18446744073709551615, "desc": "A stolen manual detailing closely-guarded fighting techniques of the Alliance.", "pad2": "", "pad1": "", "pad0": "", "name": "SI:7 Operative's Manual", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9552000164985657, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "SI:7 Operative's Manual", "name_ko_KR": "SI:7 첩보원 교본", "name_fr_FR": "Manuel d'agent du SI:7", "name_de_DE": "Handbuch für Agenten des SI:7", "name_zh_CN": "军情七处特工手册", "name_es_ES": "Manual del operativo del IV:7", "name_ru_RU": "Руководство агента ШРУ", "name_it_IT": "Manuale Operativo dell'IR:7", "name_pt_PT": "Manual de Agente da AVIN", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92785, "race_mask": 18446744073709551615, "desc": "Pilfered information on the Kor'kron's brutal techniques.", "pad2": "", "pad1": "", "pad0": "", "name": "Kor'kron Book of Hurting", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9588000178337097, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kor'kron Book of Hurting", "name_ko_KR": "코르크론 상해의 서", "name_fr_FR": "Précis de brutalité kor'kronne", "name_de_DE": "Kor'kronbuch der Schmerzen", "name_zh_CN": "库卡隆杀敌指南", "name_es_ES": "Libro del dolor Kor'kron", "name_ru_RU": "Кор'кронская книга боли", "name_it_IT": "Libro del Dolore dei Kor'kron", "name_pt_PT": "Livro da Dor Kor'kron", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92786, "race_mask": 18446744073709551615, "desc": "Torn from the grasp of a powerful alliance admiral.", "pad2": "", "pad1": "", "pad0": "", "name": "Alliance Insignia of Conquering", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624999761581421, "flags_1": 557120, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Alliance Insignia of Conquering", "name_ko_KR": "얼라이언스 정복의 계급장", "name_fr_FR": "Insigne de conquête de l'Alliance", "name_de_DE": "Allianzinsigne der Eroberung", "name_zh_CN": "联盟征服印记", "name_es_ES": "Insignia de conquista de la Alianza", "name_ru_RU": "Знак отличия завоеваний Альянса", "name_it_IT": "Fregio della Conquista dell'Alleanza", "name_pt_PT": "Insígnia de Conquista da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92787, "race_mask": 18446744073709551615, "desc": "Torn from the grip of a powerful horde warleader.", "pad2": "", "pad1": "", "pad0": "", "name": "Horde Insignia of Conquering", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 557120, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horde Insignia of Conquering", "name_ko_KR": "호드 정복의 계급장", "name_fr_FR": "Insigne de conquête de la Horde", "name_de_DE": "Hordeninsigne der Eroberung", "name_zh_CN": "部落征服印记", "name_es_ES": "Insignia de conquista de la Horda", "name_ru_RU": "Знак отличия завоеваний Орды", "name_it_IT": "Fregio della Conquista dell'Orda", "name_pt_PT": "Insígnia de Conquista da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93253, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Woundripper Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 241, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4192900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 1073766401, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93258, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Woundripper Medallion", "name_ko_KR": "상처갈퀴 메달", "name_fr_FR": "Médaillon déchire-plaies", "name_de_DE": "Wundreißermedaillon", "name_zh_CN": "裂伤者奖章", "name_es_ES": "Medallón de destripaheridas", "name_ru_RU": "Медальон рваных ран", "name_it_IT": "Medaglione delle Ferite Squarciate", "name_pt_PT": "Medalhão do Rasga-chaga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93254, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Static-Caster's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 241, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4177100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 1073766401, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93259, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Static-Caster's Medallion", "name_ko_KR": "움직이지 않는 시전자의 메달", "name_fr_FR": "Médaillon de lanceur d'électricité", "name_de_DE": "Medaillon des Schockwirkers", "name_zh_CN": "导电者奖章", "name_es_ES": "Medallón de taumaturgo estático", "name_ru_RU": "Медальон приносящего неприятности", "name_it_IT": "Medaglione dell'Incantatore Statico", "name_pt_PT": "Medalhão do Lançador Estático", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93255, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cutstitcher Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 241, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4161200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 1073766401, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93260, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cutstitcher Medallion", "name_ko_KR": "상처봉합자 메달", "name_fr_FR": "Médaillon coud-entaille", "name_de_DE": "Wundnähermedaillon", "name_zh_CN": "拆线者奖章", "name_es_ES": "Medallón de zurcecortes", "name_ru_RU": "Медальон зашивающего раны", "name_it_IT": "Medaglione del Rianimatore", "name_pt_PT": "Medalhão do Costurador de Talho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93256, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skullrender Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 241, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4208700, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 1073766401, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93261, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skullrender Medallion", "name_ko_KR": "해골분리자 메달", "name_fr_FR": "Médaillon d'arracheur de crâne", "name_de_DE": "Schädelbrechermedaillon", "name_zh_CN": "榨颅者奖章", "name_es_ES": "Medallón de cráneo quebrado", "name_ru_RU": "Медальон раскалывателя черепов", "name_it_IT": "Medaglione del Tagliatore di Teste", "name_pt_PT": "Medalhão do Destruidor de Crânios", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93257, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of Mystifying Vapors", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 241, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4145800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 1073766401, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93262, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of Mystifying Vapors", "name_ko_KR": "미혹하는 증기의 메달", "name_fr_FR": "Médaillon de vapeurs mystifiantes", "name_de_DE": "Medaillon der verschleiernden Dämpfe", "name_zh_CN": "秘雾奖章", "name_es_ES": "Medallón de vapores mistificadores", "name_ru_RU": "Медальон таинственных паров", "name_it_IT": "Medaglione dei Vapori Mistici", "name_pt_PT": "Medalhão dos Vapores Mistificantes", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93258, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arrowflight Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 242, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4192900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 1073766402, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93253, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Arrowflight Medallion", "name_ko_KR": "쏜살 매달", "name_fr_FR": "Médaillon du vol de la flèche", "name_de_DE": "Pfeilflugmedaillon", "name_zh_CN": "飞箭奖章", "name_es_ES": "Medallón de Vuelo de Flecha", "name_ru_RU": "Медальон летящей стрелы", "name_it_IT": "Medaglione dello Sfrecciante", "name_pt_PT": "Medalhão Voo da Flecha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93259, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shock-Charger Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 242, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4177100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 1073766402, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93254, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Shock-Charger Medallion", "name_ko_KR": "전기 충격 메달", "name_fr_FR": "Médaillon charge-choc", "name_de_DE": "Medaillon des geballten Schocks", "name_zh_CN": "震击者奖章", "name_es_ES": "Medallón cargachoques", "name_ru_RU": "Медальон электрического разряда", "name_it_IT": "Medaglione del Folgoratore", "name_pt_PT": "Medalhão Carrega-bateria", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93260, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heartwarmer Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 242, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4161200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 1073766402, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93255, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Heartwarmer Medallion", "name_ko_KR": "따뜻한 마음 메달", "name_fr_FR": "Médaillon consolateur", "name_de_DE": "Herzwärmermedaillon", "name_zh_CN": "暖心者奖章", "name_es_ES": "Medallón reconstituyente", "name_ru_RU": "Согревающий сердца медальон", "name_it_IT": "Medaglione del Cuore Caldo", "name_pt_PT": "Medalhão Aquece-coração", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93261, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Helmbreaker Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 242, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4208700, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 1073766402, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93256, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Helmbreaker Medallion", "name_ko_KR": "투구파괴자 메달", "name_fr_FR": "Médaillon brise-heaume", "name_de_DE": "Helmspaltermedaillon", "name_zh_CN": "破盔者奖章", "name_es_ES": "Medallón rompeyelmos", "name_ru_RU": "Медальон разбивателя шлемов", "name_it_IT": "Medaglione dell'Elmo Infranto", "name_pt_PT": "Medalhão Quebra-elmo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93262, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vaporshield Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 242, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4145800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 1073766402, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93257, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vaporshield Medallion", "name_ko_KR": "증기보호막 메달", "name_fr_FR": "Médaillon de bouclier de vapeur", "name_de_DE": "Dampfschildmedaillon", "name_zh_CN": "汽盾奖章", "name_es_ES": "Medallón de escudo de vapor", "name_ru_RU": "Медальон парового щита", "name_it_IT": "Medaglione dello Scudo del Vapore", "name_pt_PT": "Medalhão da Égide Vaporosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93341, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominator's Deadeye Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 243, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2819100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93346, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dominator's Deadeye Badge", "name_ko_KR": "지배자의 백발백중 휘장", "name_fr_FR": "Ecusson d'œil-mort de dominateur", "name_de_DE": "Treffsicheres Abzeichen der Herrschaft", "name_zh_CN": "统御者的鹰眼徽章", "name_es_ES": "Distintivo Mortojo de dominador", "name_ru_RU": "Знак точного выстрела Покорителя", "name_it_IT": "Distintivo Sanguinario dell'Offensiva del Dominio", "name_pt_PT": "Distintivo de Mira Certeira do Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93342, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominator's Arcane Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 243, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2808500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93347, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dominator's Arcane Badge", "name_ko_KR": "지배자의 비전 휘장", "name_fr_FR": "Ecusson des Arcanes de dominateur", "name_de_DE": "Arkanes Abzeichen der Herrschaft", "name_zh_CN": "统御者的奥法徽章", "name_es_ES": "Distintivo Arcano de dominador", "name_ru_RU": "Знак магии Покорителя", "name_it_IT": "Distintivo Arcano dell'Offensiva del Dominio", "name_pt_PT": "Distintivo Arcano do Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93343, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominator's Mending Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 243, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2797900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93348, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dominator's Mending Badge", "name_ko_KR": "지배자의 치유 휘장", "name_fr_FR": "Ecusson de soins de dominateur", "name_de_DE": "Heilendes Abzeichen der Herrschaft", "name_zh_CN": "统御者的愈合徽章", "name_es_ES": "Distintivo de alivio de dominador", "name_ru_RU": "Знак врачевания Покорителя", "name_it_IT": "Distintivo Lenitivo dell'Offensiva del Dominio", "name_pt_PT": "Distintivo Restaurador do Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93344, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominator's Knightly Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 243, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 253983, "buy_price": 2829800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93349, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dominator's Knightly Badge", "name_ko_KR": "지배자의 기사 휘장", "name_fr_FR": "Ecusson chevaleresque de dominateur", "name_de_DE": "Ritterliches Abzeichen der Herrschaft", "name_zh_CN": "统御者的骑士徽章", "name_es_ES": "Distintivo de Caballero de dominador", "name_ru_RU": "Знак рыцарства Покорителя", "name_it_IT": "Distintivo Potente dell'Offensiva del Dominio", "name_pt_PT": "Distintivo Fidalgo do Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93345, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominator's Durable Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 243, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2787500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93350, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dominator's Durable Badge", "name_ko_KR": "지배자의 튼튼한 휘장", "name_fr_FR": "Ecusson durable de dominateur", "name_de_DE": "Standhaftes Abzeichen der Herrschaft", "name_zh_CN": "统御者的坚忍徽章", "name_es_ES": "Distintivo durable de dominador", "name_ru_RU": "Знак стойкости Покорителя", "name_it_IT": "Distintivo Resistente dell'Offensiva del Dominio", "name_pt_PT": "Distintivo Durável do Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93346, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deadeye Badge of the Shieldwall", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 244, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2819100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93341, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Deadeye Badge of the Shieldwall", "name_ko_KR": "철벽방패의 백발백중 휘장", "name_fr_FR": "Ecusson d'œil-mort du Bouclier", "name_de_DE": "Treffsicheres Abzeichen des Schildwalls", "name_zh_CN": "神盾鹰眼徽章", "name_es_ES": "Distintivo Mortojo del Muro de escudos", "name_ru_RU": "Знак точного выстрела \"Заслона\"", "name_it_IT": "Distintivo Sanguinario dell'Operazione Baluardo", "name_pt_PT": "Distintivo de Mira Certeira da Muralha de Escudos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93347, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcane Badge of the Shieldwall", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 244, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2808500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93342, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Arcane Badge of the Shieldwall", "name_ko_KR": "철벽방패의 비전 휘장", "name_fr_FR": "Ecusson des Arcanes du Bouclier", "name_de_DE": "Arkanes Abzeichen des Schildwalls", "name_zh_CN": "神盾奥法徽章", "name_es_ES": "Distintivo Arcano del Muro de escudos", "name_ru_RU": "Знак магии \"Заслона\"", "name_it_IT": "Distintivo Arcano dell'Operazione Baluardo", "name_pt_PT": "Distintivo Arcano da Muralha de Escudos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93348, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mending Badge of the Shieldwall", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 244, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2797900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93343, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Mending Badge of the Shieldwall", "name_ko_KR": "철벽방패의 치유 휘장", "name_fr_FR": "Ecusson de soin du Bouclier", "name_de_DE": "Heilendes Abzeichen des Schildwalls", "name_zh_CN": "神盾愈合徽章", "name_es_ES": "Distintivo de alivio del Muro de escudos", "name_ru_RU": "Знак врачевания \"Заслона\"", "name_it_IT": "Distintivo Lenitivo dell'Operazione Baluardo", "name_pt_PT": "Distintivo Reparador da Muralha de Escudos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93349, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Knightly Badge of the Shieldwall", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 244, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 253983, "buy_price": 2829800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93344, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Knightly Badge of the Shieldwall", "name_ko_KR": "철벽방패의 기사 휘장", "name_fr_FR": "Ecusson chevaleresque du Bouclier", "name_de_DE": "Ritterliches Abzeichen des Schildwalls", "name_zh_CN": "神盾骑士徽章", "name_es_ES": "Distintivo de Caballero del Muro de escudos", "name_ru_RU": "Знак рыцарства \"Заслона\"", "name_it_IT": "Distintivo Potente dell'Operazione Baluardo", "name_pt_PT": "Distintivo Fidalgo da Muralha de Escudos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93350, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Durable Badge of the Shieldwall", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 244, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2787500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93345, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Durable Badge of the Shieldwall", "name_ko_KR": "철벽방패의 튼튼한 휘장", "name_fr_FR": "Ecusson durable du Bouclier", "name_de_DE": "Standhaftes Abzeichen des Schildwalls", "name_zh_CN": "神盾坚忍徽章", "name_es_ES": "Distintivo durable del Muro de escudos", "name_ru_RU": "Знак стойкости \"Заслона\"", "name_it_IT": "Distintivo Resistente dell'Operazione Baluardo", "name_pt_PT": "Distintivo Durável da Muralha de Escudos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93419, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Badge of Conquest", "name_ko_KR": "제작된 가혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Eroberungsabzeichen des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的征服徽章", "name_es_ES": "Distintivo de conquista artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный жетон завоевания жуткого гладиатора", "name_it_IT": "Distintivo della Conquista Artigianale del Gladiatore Truce", "name_pt_PT": "Distintivo de Conquista Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Insignia of Conquest", "name_ko_KR": "제작된 가혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Eroberungsinsigne des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的征服徽记", "name_es_ES": "Insignia de conquista artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный знак завоевания жуткого гладиатора", "name_it_IT": "Fregio della Conquista Artigianale del Gladiatore Truce", "name_pt_PT": "Insígnia de Conquista Artesanal do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93485, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Emblem of Cruelty", "name_ko_KR": "제작된 가혹한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Grausamkeitsemblem des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленная эмблема жестокости жуткого гладиатора", "name_it_IT": "Emblema dell'Atrocità Artigianale del Gladiatore Truce", "name_pt_PT": "Emblema da Crueldade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93486, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Emblem of Tenacity", "name_ko_KR": "제작된 가혹한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Hartnäckigkeitsemblem des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленная эмблема упорства жуткого гладиатора", "name_it_IT": "Emblema della Tenacia Artigianale del Gladiatore Truce", "name_pt_PT": "Emblema da Tenacidade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93487, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Emblem of Meditation", "name_ko_KR": "제작된 가혹한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Meditationsemblem des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的冥想纹章", "name_es_ES": "Emblema de meditación artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленная эмблема медитации жуткого гладиатора", "name_it_IT": "Emblema della Meditazione Artigianale del Gladiatore Truce", "name_pt_PT": "Emblema da Meditação Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93560, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Cruelty", "name_ko_KR": "제작된 가혹한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Grausamkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон жестокости жуткого гладиатора", "name_it_IT": "Medaglione dell'Atrocità Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Crueldade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93561, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Cruelty", "name_ko_KR": "제작된 가혹한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Grausamkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон жестокости жуткого гладиатора", "name_it_IT": "Medaglione dell'Atrocità Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Crueldade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93562, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Tenacity", "name_ko_KR": "제작된 가혹한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Hartnäckigkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон упорства жуткого гладиатора", "name_it_IT": "Medaglione della Tenacia Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Tenacidade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93563, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Tenacity", "name_ko_KR": "제작된 가혹한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Hartnäckigkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон упорства жуткого гладиатора", "name_it_IT": "Medaglione della Tenacia Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Tenacidade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93564, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Meditation", "name_ko_KR": "제작된 가혹한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Meditationsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон медитации жуткого гладиатора", "name_it_IT": "Medaglione della Meditazione Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Meditação Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93565, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Meditation", "name_ko_KR": "제작된 가혹한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Meditationsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон медитации жуткого гладиатора", "name_it_IT": "Medaglione della Meditazione Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Meditação Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93600, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Badge of Dominance", "name_ko_KR": "제작된 가혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Vorherrschaftsabzeichen des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный жетон господства жуткого гладиатора", "name_it_IT": "Distintivo della Dominazione Artigianale del Gladiatore Truce", "name_pt_PT": "Distintivo de Dominância Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93601, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Insignia of Dominance", "name_ko_KR": "제작된 가혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Vorherrschaftsinsigne des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的统御徽记", "name_es_ES": "Insignia de dominancia artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный знак господства жуткого гладиатора", "name_it_IT": "Fregio della Dominazione Artigianale del Gladiatore Truce", "name_pt_PT": "Insígnia de Dominância Artesanal do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93606, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Badge of Victory", "name_ko_KR": "제작된 가혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Siegesabzeichen des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный жетон победы жуткого гладиатора", "name_it_IT": "Distintivo della Vittoria Artigianale del Gladiatore Truce", "name_pt_PT": "Distintivo de Vitória Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93611, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Insignia of Victory", "name_ko_KR": "제작된 가혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Siegesinsigne des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的胜利徽记", "name_es_ES": "Insignia de victoria artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный знак победы жуткого гладиатора", "name_it_IT": "Fregio della Vittoria Artigianale del Gladiatore Truce", "name_pt_PT": "Insígnia de Vitória Artesanal do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93896, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forceful Hand of Justice", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9625999927520752, "flags_1": 134217728, "flags_2": 155648, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Forceful Hand of Justice", "name_ko_KR": "강인한 정의의 손길", "name_fr_FR": "Main de justice énergique", "name_de_DE": "Kraftvolle Hand der Gerechtigkeit", "name_zh_CN": "强力的正义之手", "name_es_ES": "Mano fuerte de justicia", "name_ru_RU": "Могучая рука правосудия", "name_it_IT": "Vigorosa Mano della Giustizia", "name_pt_PT": "Mão da Justiça Ríspida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93897, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Piercing Eye of the Beast", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9927999973297119, "flags_1": 134217728, "flags_2": 155648, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Piercing Eye of the Beast", "name_ko_KR": "꿰뚫는 괴수의 눈", "name_fr_FR": "Oeil perçant de la Bête", "name_de_DE": "Durchdringendes Auge der Bestie", "name_zh_CN": "锐利的比斯巨兽之眼", "name_es_ES": "Ojo de la bestia penetrante", "name_ru_RU": "Пронзающий Глаз Зверя", "name_it_IT": "Occhio Penetrante della Bestia", "name_pt_PT": "Olho da Fera Penetrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93898, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bequeathed Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9965000152587891, "flags_1": 134217728, "flags_2": 155649, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93899, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Bequeathed Insignia of the Horde", "name_ko_KR": "상속의 호드 계급장", "name_fr_FR": "Insigne de la Horde décerné", "name_de_DE": "Hinterlassenes Insigne der Horde", "name_zh_CN": "遗赠的部落徽记", "name_es_ES": "Insignia legada de la Horda", "name_ru_RU": "Завещанный знак различия Орды", "name_it_IT": "Fregio Tramandato dell'Orda", "name_pt_PT": "Insígnia Herdada da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93899, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bequeathed Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000100016593933, "flags_1": 134217728, "flags_2": 155650, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93898, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Bequeathed Insignia of the Alliance", "name_ko_KR": "상속의 얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance décerné", "name_de_DE": "Hinterlassenes Insigne der Allianz", "name_zh_CN": "遗赠的联盟徽记", "name_es_ES": "Insignia legada de la Alianza", "name_ru_RU": "Завещанный знак различия Альянса", "name_it_IT": "Fregio Tramandato dell'Alleanza", "name_pt_PT": "Insígnia Herdada da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93900, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Mark of Tyranny", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0038000345230103, "flags_1": 134217728, "flags_2": 155648, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Mark of Tyranny", "name_ko_KR": "계승의 폭정의 징표", "name_fr_FR": "Marque de tyrannie héritée", "name_de_DE": "Geerbtes Mal der Tyrannei", "name_zh_CN": "祖传的暴君印记", "name_es_ES": "Marca de Tiranía heredada", "name_ru_RU": "Унаследованный знак деспотизма", "name_it_IT": "Marchio Ereditato della Tirannia", "name_pt_PT": "Marca da Tirania Herdada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94329, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91211, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Meditation", "name_ko_KR": "압제적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador tiránico", "name_ru_RU": "Эмблема медитации деспотичного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Emblema da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94338, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94388, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Meditation", "name_ko_KR": "압제적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador tiránico", "name_ru_RU": "Медальон медитации деспотичного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94346, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91400, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Dominance", "name_ko_KR": "압제적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador tiránico", "name_ru_RU": "Жетон господства деспотичного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Dominância do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94349, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91410, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Victory", "name_ko_KR": "압제적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur tyrannique", "name_de_DE": "Siegesabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador tiránico", "name_ru_RU": "Жетон победы деспотичного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Vitória do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94356, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91104, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Conquest", "name_ko_KR": "압제적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador tiránico", "name_ru_RU": "Знак завоевания деспотичного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Conquista do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94361, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94387, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador tiránico", "name_ru_RU": "Медальон упорства деспотичного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94373, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91099, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Conquest", "name_ko_KR": "압제적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador tiránico", "name_ru_RU": "Жетон завоевания деспотичного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Conquista do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94386, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94454, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador tiránico", "name_ru_RU": "Медальон жестокости деспотичного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94387, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94361, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador tiránico", "name_ru_RU": "Медальон упорства деспотичного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94388, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94338, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Meditation", "name_ko_KR": "압제적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador tiránico", "name_ru_RU": "Медальон медитации деспотичного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94396, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91209, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador tiránico", "name_ru_RU": "Эмблема жестокости деспотичного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Emblema da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94415, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91415, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Victory", "name_ko_KR": "압제적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur tyrannique", "name_de_DE": "Siegesinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador tiránico", "name_ru_RU": "Знак победы деспотичного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Vitória do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94422, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91210, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador tiránico", "name_ru_RU": "Эмблема упорства деспотичного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Emblema da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94454, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94386, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador tiránico", "name_ru_RU": "Медальон жестокости деспотичного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94482, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91401, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Dominance", "name_ko_KR": "압제적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador tiránico", "name_ru_RU": "Знак господства деспотичного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Dominância do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Steadfast Talisman of the Shado-Pan Assault", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 283, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 253983, "buy_price": 4309500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1435, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Steadfast Talisman of the Shado-Pan Assault", "name_ko_KR": "음영파 강습단의 견실한 부적", "name_fr_FR": "Talisman inébranlable de l'assaut des Pandashan", "name_de_DE": "Beständiger Talisman des Shado-Pan-Vorstoßes", "name_zh_CN": "影踪突袭营的坚定护符", "name_es_ES": "Dije de determinación férrea del Asalto del Shadopan", "name_ru_RU": "Талисман непреклонности Натиска Шадо-Пан", "name_it_IT": "Talismano Costante dell'Avanzata degli Shandaren", "name_pt_PT": "Talismã Inabalável do Ataque Shado-Pan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94508, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brutal Talisman of the Shado-Pan Assault", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 283, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 253983, "buy_price": 4374800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1435, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Brutal Talisman of the Shado-Pan Assault", "name_ko_KR": "음영파 강습단의 무자비한 부적", "name_fr_FR": "Talisman brutal de l'assaut des Pandashan", "name_de_DE": "Brutaler Talisman des Shado-Pan-Vorstoßes", "name_zh_CN": "影踪突袭营的野蛮护符", "name_es_ES": "Dije brutal del Asalto del Shadopan", "name_ru_RU": "Жестокий талисман Натиска Шадо-Пан", "name_it_IT": "Talismano Brutale dell'Avanzata degli Shandaren", "name_pt_PT": "Talismã Brutal do Ataque Shado-Pan", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94509, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soothing Talisman of the Shado-Pan Assault", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 283, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 253983, "buy_price": 4325500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1435, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soothing Talisman of the Shado-Pan Assault", "name_ko_KR": "음영파 강습단의 어루만지는 부적", "name_fr_FR": "Talisman apaisant de l'assaut des Pandashan", "name_de_DE": "Beruhigender Talisman des Shado-Pan-Vorstoßes", "name_zh_CN": "影踪突袭营的抚慰护符", "name_es_ES": "Dije reconfortante del Asalto del Shadopan", "name_ru_RU": "Умиротворяющий талисман Натиска Шадо-Пан", "name_it_IT": "Talismano Curativo dell'Avanzata degli Shandaren", "name_pt_PT": "Talismã Reconfortante do Ataque Shado-Pan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94510, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Volatile Talisman of the Shado-Pan Assault", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 283, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 253983, "buy_price": 4341900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1435, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Volatile Talisman of the Shado-Pan Assault", "name_ko_KR": "음영파 강습단의 일촉즉발 부적", "name_fr_FR": "Talisman volatil de l'assaut des Pandashan", "name_de_DE": "Unberechenbarer Talisman des Shado-Pan-Vorstoßes", "name_zh_CN": "影踪突袭营的爆裂护符", "name_es_ES": "Dije volátil del Asalto del Shadopan", "name_ru_RU": "Невесомый талисман Натиска Шадо-Пан", "name_it_IT": "Talismano Instabile dell'Avanzata degli Shandaren", "name_pt_PT": "Talismã Volátil do Ataque Shado-Pan", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94511, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Talisman of the Shado-Pan Assault", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 283, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 253983, "buy_price": 4358400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1435, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Talisman of the Shado-Pan Assault", "name_ko_KR": "음영파 강습단의 흉포한 부적", "name_fr_FR": "Talisman vicieux de l'assaut des Pandashan", "name_de_DE": "Heimtückischer Talisman des Shado-Pan-Vorstoßes", "name_zh_CN": "影踪突袭营的邪恶护符", "name_es_ES": "Dije sañoso del Asalto del Shadopan", "name_ru_RU": "Яростный талисман Натиска Шадо-Пан", "name_it_IT": "Talismano Feroce dell'Avanzata degli Shandaren", "name_pt_PT": "Talismã Cruel do Ataque Shado-Pan", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94512, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Soul Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 273, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Soul Charm", "name_ko_KR": "레나타키의 영혼 부적", "name_fr_FR": "Charme d'âme de Renataki", "name_de_DE": "Renatakis Seelentalisman", "name_zh_CN": "雷纳塔基的灵魂符咒", "name_es_ES": "Talismán de alma de Renataki", "name_ru_RU": "Оберег души Ренатаки", "name_it_IT": "Ammalianime di Renataki", "name_pt_PT": "Patuá de Renataki", "on_use": false, "id_encounter": 827, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94513, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Final Choice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 280, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Final Choice", "name_ko_KR": "우슐레이의 마지막 선택", "name_fr_FR": "Ultime choix de Wushoolay", "name_de_DE": "Wushoolays letzte Wahl", "name_zh_CN": "乌苏雷的最终抉择", "name_es_ES": "Decisión final de Wushoolay", "name_ru_RU": "Последний выбор Вушулая", "name_it_IT": "Scelta Finale di Wushoolay", "name_pt_PT": "Última Escolha de Vuxulai", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horridon's Last Gasp", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 268, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horridon's Last Gasp", "name_ko_KR": "호리돈의 마지막 들숨", "name_fr_FR": "Dernier souffle d'Horridon", "name_de_DE": "Horridons letzter Atemzug", "name_zh_CN": "赫利东的垂死之息", "name_es_ES": "Último aliento de Horridonte", "name_ru_RU": "Последний вздох Хорридона", "name_it_IT": "Ultimo Respiro di Horridon", "name_pt_PT": "Último Suspiro de Horridon", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94515, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fabled Feather of Ji-Kun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 265, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fabled Feather of Ji-Kun", "name_ko_KR": "지쿤의 전설적인 깃털", "name_fr_FR": "Plume fabuleuse de Ji Kun", "name_de_DE": "Legendäre Feder von Ji-Kun", "name_zh_CN": "季鹍的传说之羽", "name_es_ES": "Pluma de fábula de Ji Kun", "name_ru_RU": "Легендарное перо Цзи-Кунь", "name_it_IT": "Piuma Leggendaria di Ji-Kun", "name_pt_PT": "Pena Fabulosa de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fortitude of the Zandalari", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 266, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fortitude of the Zandalari", "name_ko_KR": "잔달라의 인내", "name_fr_FR": "Endurance des Zandalari", "name_de_DE": "Kraft der Zandalari", "name_zh_CN": "赞达拉之韧", "name_es_ES": "Entereza de los Zandalari", "name_ru_RU": "Стойкость зандаларов", "name_it_IT": "Vigore degli Zandalari", "name_pt_PT": "Fortitude dos Zandalari", "on_use": true, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94518, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delicate Vial of the Sanguinaire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 264, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Delicate Vial of the Sanguinaire", "name_ko_KR": "핏덩이가 담긴 섬세한 유리병", "name_fr_FR": "Fiole délicate du sanguinaire", "name_de_DE": "Filigrane Phiole des Blutsaugers", "name_zh_CN": "嗜血者的精致小瓶", "name_es_ES": "Vial delicado del Sanguinario", "name_ru_RU": "Хрупкий фиал кровопролития", "name_it_IT": "Fiala del Sanguinario", "name_pt_PT": "Ampola Delicada do Sanguinário", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94519, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primordius' Talisman of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 272, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Primordius' Talisman of Rage", "name_ko_KR": "프리모디우스의 분노의 부적", "name_fr_FR": "Talisman de rage de Primordius", "name_de_DE": "Primordius' Talisman der Wut", "name_zh_CN": "普利莫修斯的狂怒护符", "name_es_ES": "Dije de ira de Primordius", "name_ru_RU": "Талисман ярости Изначалия", "name_it_IT": "Talismano della Rabbia di Primordius", "name_pt_PT": "Talismã da Ira de Primordius", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94520, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscribed Bag of Hydra-Spawn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 269, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Inscribed Bag of Hydra-Spawn", "name_ko_KR": "히드라혈족의 문자가 새겨진 주머니", "name_fr_FR": "Sac gravé de rejeton d'hydre", "name_de_DE": "Verzierter Beutel mit Hydraeiern", "name_zh_CN": "九头蛇卵的铭文袋", "name_es_ES": "Bolsa de engendro de hidra con inscripciones", "name_ru_RU": "Покрытый письменами мешок порождений гидры", "name_it_IT": "Borsa Decorata della Prole dell'Idra", "name_pt_PT": "Bolsa de Ova de Hidra Inscrita", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94521, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Hydra", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 262, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Breath of the Hydra", "name_ko_KR": "히드라의 숨결", "name_fr_FR": "Souffle de l'hydre", "name_de_DE": "Odem der Hydra", "name_zh_CN": "九头蛇之息", "name_es_ES": "Aliento de la hidra", "name_ru_RU": "Дыхание гидры", "name_it_IT": "Soffio dell'Idra", "name_pt_PT": "Sopro da Hidra", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94522, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Bloodlust", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 278, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Bloodlust", "name_ko_KR": "피바람의 부적", "name_fr_FR": "Talisman de furie sanguinaire", "name_de_DE": "Talisman des Blutdurstes", "name_zh_CN": "杀戮护符", "name_es_ES": "Dije de Ansia de sangre", "name_ru_RU": "Талисман жажды крови", "name_it_IT": "Talismano della Brama di Sangue", "name_pt_PT": "Talismã da Sede de Sangue", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94523, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bad Juju", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 261, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bad Juju", "name_ko_KR": "나쁜 부적", "name_fr_FR": "Mauvais juju", "name_de_DE": "Finsteres Juju", "name_zh_CN": "邪恶魂能", "name_es_ES": "Mal yuyu", "name_ru_RU": "Зловещее джуджу", "name_it_IT": "Juju Cattivo", "name_pt_PT": "Juju do Mal", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94524, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unerring Vision of Lei Shen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 279, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Unerring Vision of Lei Shen", "name_ko_KR": "레이 션의 흔들림 없는 시선", "name_fr_FR": "Vision infaillible de Lei Shen", "name_de_DE": "Unfehlbarer Blick des Lei Shen", "name_zh_CN": "雷神的精准之视", "name_es_ES": "Visión infalible de Lei Shen", "name_ru_RU": "Отчетливое видение Лэй Шэня", "name_it_IT": "Visione Infallibile di Lei Shen", "name_pt_PT": "Visão Infalível de Lei Shen", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94525, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Relic of Zuldazar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 277, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stolen Relic of Zuldazar", "name_ko_KR": "줄다자르의 도둑맞은 유물", "name_fr_FR": "Relique volée de Zuldazar", "name_de_DE": "Gestohlenes Relikt von Zuldazar", "name_zh_CN": "祖达萨的失窃遗物", "name_es_ES": "Reliquia robada de Zuldazar", "name_ru_RU": "Украденная реликвия Зулдазара", "name_it_IT": "Reliquia Rubata di Zuldazar", "name_pt_PT": "Relíquia Roubada de Zuldazar", "on_use": true, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94526, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Zandalar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 276, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Zandalar", "name_ko_KR": "잔달라의 불꽃", "name_fr_FR": "Etincelle de Zandalar", "name_de_DE": "Funken von Zandalar", "name_zh_CN": "赞达拉之火", "name_es_ES": "Chispa de Zandalar", "name_ru_RU": "Искра Зандалара", "name_it_IT": "Monile della Scintilla di Zandalar", "name_pt_PT": "Centelha de Zandalar", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ji-Kun's Rising Winds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 270, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ji-Kun's Rising Winds", "name_ko_KR": "지쿤의 이는 바람", "name_fr_FR": "Levée du vent de Ji Kun", "name_de_DE": "Ji-Kuns Aufwind", "name_zh_CN": "季鹍的复苏之风", "name_es_ES": "Vientos crecientes de Ji Kun", "name_ru_RU": "Нарастающий ветер Цзи-Кунь", "name_it_IT": "Venti Crescenti di Ji-Kun", "name_pt_PT": "Vento Crescente de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Barrier", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 275, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soul Barrier", "name_ko_KR": "영혼 방벽", "name_fr_FR": "Barrière d'âme", "name_de_DE": "Seelenbarriere", "name_zh_CN": "灵魂壁障", "name_es_ES": "Barrera de alma", "name_ru_RU": "Призрачный барьер", "name_it_IT": "Barriera d'Anima", "name_pt_PT": "Barreira de Almas", "on_use": true, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94529, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gaze of the Twins", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 267, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Gaze of the Twins", "name_ko_KR": "쌍둥이의 응시", "name_fr_FR": "Regard des concubines", "name_de_DE": "Blick der Zwillinge", "name_zh_CN": "双天的凝视", "name_es_ES": "Mirada de las Gemelas", "name_ru_RU": "Взгляд близнецов", "name_it_IT": "Sguardo delle Gemelle", "name_pt_PT": "Olhar das Gêmeas", "on_use": false, "id_encounter": 829, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94530, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning-Imbued Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 271, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lightning-Imbued Chalice", "name_ko_KR": "번개 깃든 성배", "name_fr_FR": "Calice imprégné de foudre", "name_de_DE": "Blitz-verzauberter Kelch", "name_zh_CN": "闪电圣杯", "name_es_ES": "Cáliz imbuido de relámpagos", "name_ru_RU": "Заряженный молнией кубок", "name_it_IT": "Calice Infuso di Fulmini", "name_pt_PT": "Cálice Imbuído em Relâmpago", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cha-Ye's Essence of Brilliance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 263, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cha-Ye's Essence of Brilliance", "name_ko_KR": "차예의 총명함의 정수", "name_fr_FR": "Essence de brillance de Cha Ye", "name_de_DE": "Cha-Yes brillante Essenz", "name_zh_CN": "张叶的辉煌精华", "name_es_ES": "Esencia de resplandor de Cha Ye", "name_ru_RU": "Сущность гениальности Ча-Йе", "name_it_IT": "Essenza dell'Acume di Cha-Ye", "name_pt_PT": "Essência do Esplendor de Cha-Ye", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94532, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Re-Origination", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 274, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Re-Origination", "name_ko_KR": "재창시의 룬", "name_fr_FR": "Rune de redistribution", "name_de_DE": "Rune der Neuerschaffung", "name_zh_CN": "重生符文", "name_es_ES": "Runa de reoriginación", "name_ru_RU": "Руна перераспределения", "name_it_IT": "Runa della Rioriginazione", "name_pt_PT": "Runa da Recriação", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95625, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Soul Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 273, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Soul Charm", "name_ko_KR": "레나타키의 영혼 부적", "name_fr_FR": "Charme d'âme de Renataki", "name_de_DE": "Renatakis Seelentalisman", "name_zh_CN": "雷纳塔基的灵魂符咒", "name_es_ES": "Talismán de alma de Renataki", "name_ru_RU": "Оберег души Ренатаки", "name_it_IT": "Ammalianime di Renataki", "name_pt_PT": "Patuá de Renataki", "on_use": false, "id_encounter": 827, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horridon's Last Gasp", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 268, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horridon's Last Gasp", "name_ko_KR": "호리돈의 마지막 들숨", "name_fr_FR": "Dernier souffle d'Horridon", "name_de_DE": "Horridons letzter Atemzug", "name_zh_CN": "赫利东的垂死之息", "name_es_ES": "Último aliento de Horridonte", "name_ru_RU": "Последний вздох Хорридона", "name_it_IT": "Ultimo Respiro di Horridon", "name_pt_PT": "Último Suspiro de Horridon", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Zandalar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 276, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Zandalar", "name_ko_KR": "잔달라의 불꽃", "name_fr_FR": "Etincelle de Zandalar", "name_de_DE": "Funken von Zandalar", "name_zh_CN": "赞达拉之火", "name_es_ES": "Chispa de Zandalar", "name_ru_RU": "Искра Зандалара", "name_it_IT": "Monile della Scintilla di Zandalar", "name_pt_PT": "Centelha de Zandalar", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95665, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bad Juju", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 261, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bad Juju", "name_ko_KR": "나쁜 부적", "name_fr_FR": "Mauvais juju", "name_de_DE": "Finsteres Juju", "name_zh_CN": "邪恶魂能", "name_es_ES": "Mal yuyu", "name_ru_RU": "Зловещее джуджу", "name_it_IT": "Juju Cattivo", "name_pt_PT": "Juju do Mal", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95669, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Final Choice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 280, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Final Choice", "name_ko_KR": "우슐레이의 마지막 선택", "name_fr_FR": "Ultime choix de Wushoolay", "name_de_DE": "Wushoolays letzte Wahl", "name_zh_CN": "乌苏雷的最终抉择", "name_es_ES": "Decisión final de Wushoolay", "name_ru_RU": "Последний выбор Вушулая", "name_it_IT": "Scelta Finale di Wushoolay", "name_pt_PT": "Última Escolha de Vuxulai", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95677, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fortitude of the Zandalari", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 266, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fortitude of the Zandalari", "name_ko_KR": "잔달라의 인내", "name_fr_FR": "Endurance des Zandalari", "name_de_DE": "Kraft der Zandalari", "name_zh_CN": "赞达拉之韧", "name_es_ES": "Entereza de los Zandalari", "name_ru_RU": "Стойкость зандаларов", "name_it_IT": "Vigore degli Zandalari", "name_pt_PT": "Fortitude dos Zandalari", "on_use": true, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95711, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Hydra", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 262, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Breath of the Hydra", "name_ko_KR": "히드라의 숨결", "name_fr_FR": "Souffle de l'hydre", "name_de_DE": "Odem der Hydra", "name_zh_CN": "九头蛇之息", "name_es_ES": "Aliento de la hidra", "name_ru_RU": "Дыхание гидры", "name_it_IT": "Soffio dell'Idra", "name_pt_PT": "Sopro da Hidra", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95712, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscribed Bag of Hydra-Spawn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 269, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Inscribed Bag of Hydra-Spawn", "name_ko_KR": "히드라혈족의 문자가 새겨진 주머니", "name_fr_FR": "Sac gravé de rejeton d'hydre", "name_de_DE": "Verzierter Beutel mit Hydraeiern", "name_zh_CN": "九头蛇卵的铭文袋", "name_es_ES": "Bolsa de engendro de hidra con inscripciones", "name_ru_RU": "Покрытый письменами мешок порождений гидры", "name_it_IT": "Borsa Decorata della Prole dell'Idra", "name_pt_PT": "Bolsa de Ova de Hidra Inscrita", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fabled Feather of Ji-Kun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 265, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fabled Feather of Ji-Kun", "name_ko_KR": "지쿤의 전설적인 깃털", "name_fr_FR": "Plume fabuleuse de Ji Kun", "name_de_DE": "Legendäre Feder von Ji-Kun", "name_zh_CN": "季鹍的传说之羽", "name_es_ES": "Pluma de fábula de Ji Kun", "name_ru_RU": "Легендарное перо Цзи-Кунь", "name_it_IT": "Piuma Leggendaria di Ji-Kun", "name_pt_PT": "Pena Fabulosa de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ji-Kun's Rising Winds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 270, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ji-Kun's Rising Winds", "name_ko_KR": "지쿤의 이는 바람", "name_fr_FR": "Levée du vent de Ji Kun", "name_de_DE": "Ji-Kuns Aufwind", "name_zh_CN": "季鹍的复苏之风", "name_es_ES": "Vientos crecientes de Ji Kun", "name_ru_RU": "Нарастающий ветер Цзи-Кунь", "name_it_IT": "Venti Crescenti di Ji-Kun", "name_pt_PT": "Vento Crescente de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95748, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Bloodlust", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 278, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Bloodlust", "name_ko_KR": "피바람의 부적", "name_fr_FR": "Talisman de furie sanguinaire", "name_de_DE": "Talisman des Blutdurstes", "name_zh_CN": "杀戮护符", "name_es_ES": "Dije de Ansia de sangre", "name_ru_RU": "Талисман жажды крови", "name_it_IT": "Talismano della Brama di Sangue", "name_pt_PT": "Talismã da Sede de Sangue", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95757, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primordius' Talisman of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 272, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Primordius' Talisman of Rage", "name_ko_KR": "프리모디우스의 분노의 부적", "name_fr_FR": "Talisman de rage de Primordius", "name_de_DE": "Primordius' Talisman der Wut", "name_zh_CN": "普利莫修斯的狂怒护符", "name_es_ES": "Dije de ira de Primordius", "name_ru_RU": "Талисман ярости Изначалия", "name_it_IT": "Talismano della Rabbia di Primordius", "name_pt_PT": "Talismã da Ira de Primordius", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Relic of Zuldazar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 277, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stolen Relic of Zuldazar", "name_ko_KR": "줄다자르의 도둑맞은 유물", "name_fr_FR": "Relique volée de Zuldazar", "name_de_DE": "Gestohlenes Relikt von Zuldazar", "name_zh_CN": "祖达萨的失窃遗物", "name_es_ES": "Reliquia robada de Zuldazar", "name_ru_RU": "Украденная реликвия Зулдазара", "name_it_IT": "Reliquia Rubata di Zuldazar", "name_pt_PT": "Relíquia Roubada de Zuldazar", "on_use": true, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95772, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cha-Ye's Essence of Brilliance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 263, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cha-Ye's Essence of Brilliance", "name_ko_KR": "차예의 총명함의 정수", "name_fr_FR": "Essence de brillance de Cha Ye", "name_de_DE": "Cha-Yes brillante Essenz", "name_zh_CN": "张叶的辉煌精华", "name_es_ES": "Esencia de resplandor de Cha Ye", "name_ru_RU": "Сущность гениальности Ча-Йе", "name_it_IT": "Essenza dell'Acume di Cha-Ye", "name_pt_PT": "Essência do Esplendor de Cha-Ye", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delicate Vial of the Sanguinaire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 264, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Delicate Vial of the Sanguinaire", "name_ko_KR": "핏덩이가 담긴 섬세한 유리병", "name_fr_FR": "Fiole délicate du sanguinaire", "name_de_DE": "Filigrane Phiole des Blutsaugers", "name_zh_CN": "嗜血者的精致小瓶", "name_es_ES": "Vial delicado del Sanguinario", "name_ru_RU": "Хрупкий фиал кровопролития", "name_it_IT": "Fiala del Sanguinario", "name_pt_PT": "Ampola Delicada do Sanguinário", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95799, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gaze of the Twins", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 267, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Gaze of the Twins", "name_ko_KR": "쌍둥이의 응시", "name_fr_FR": "Regard des concubines", "name_de_DE": "Blick der Zwillinge", "name_zh_CN": "双天的凝视", "name_es_ES": "Mirada de las Gemelas", "name_ru_RU": "Взгляд близнецов", "name_it_IT": "Sguardo delle Gemelle", "name_pt_PT": "Olhar das Gêmeas", "on_use": false, "id_encounter": 829, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95802, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Re-Origination", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 274, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Re-Origination", "name_ko_KR": "재창시의 룬", "name_fr_FR": "Rune de redistribution", "name_de_DE": "Rune der Neuerschaffung", "name_zh_CN": "重生符文", "name_es_ES": "Runa de reoriginación", "name_ru_RU": "Руна перераспределения", "name_it_IT": "Runa della Rioriginazione", "name_pt_PT": "Runa da Recriação", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Barrier", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 275, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soul Barrier", "name_ko_KR": "영혼 방벽", "name_fr_FR": "Barrière d'âme", "name_de_DE": "Seelenbarriere", "name_zh_CN": "灵魂壁障", "name_es_ES": "Barrera de alma", "name_ru_RU": "Призрачный барьер", "name_it_IT": "Barriera d'Anima", "name_pt_PT": "Barreira de Almas", "on_use": true, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95814, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unerring Vision of Lei Shen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 279, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Unerring Vision of Lei Shen", "name_ko_KR": "레이 션의 흔들림 없는 시선", "name_fr_FR": "Vision infaillible de Lei Shen", "name_de_DE": "Unfehlbarer Blick des Lei Shen", "name_zh_CN": "雷神的精准之视", "name_es_ES": "Visión infalible de Lei Shen", "name_ru_RU": "Отчетливое видение Лэй Шэня", "name_it_IT": "Visione Infallibile di Lei Shen", "name_pt_PT": "Visão Infalível de Lei Shen", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95817, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning-Imbued Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 271, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lightning-Imbued Chalice", "name_ko_KR": "번개 깃든 성배", "name_fr_FR": "Calice imprégné de foudre", "name_de_DE": "Blitz-verzauberter Kelch", "name_zh_CN": "闪电圣杯", "name_es_ES": "Cáliz imbuido de relámpagos", "name_ru_RU": "Заряженный молнией кубок", "name_it_IT": "Calice Infuso di Fulmini", "name_pt_PT": "Cálice Imbuído em Relâmpago", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95997, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Soul Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 273, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64851, "buy_price": 324255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Soul Charm", "name_ko_KR": "레나타키의 영혼 부적", "name_fr_FR": "Charme d'âme de Renataki", "name_de_DE": "Renatakis Seelentalisman", "name_zh_CN": "雷纳塔基的灵魂符咒", "name_es_ES": "Talismán de alma de Renataki", "name_ru_RU": "Оберег души Ренатаки", "name_it_IT": "Ammalianime di Renataki", "name_pt_PT": "Patuá de Renataki", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96013, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horridon's Last Gasp", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 268, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64361, "buy_price": 321808, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horridon's Last Gasp", "name_ko_KR": "호리돈의 마지막 들숨", "name_fr_FR": "Dernier souffle d'Horridon", "name_de_DE": "Horridons letzter Atemzug", "name_zh_CN": "赫利东的垂死之息", "name_es_ES": "Último aliento de Horridonte", "name_ru_RU": "Последний вздох Хорридона", "name_it_IT": "Ultimo Respiro di Horridon", "name_pt_PT": "Último Suspiro de Horridon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Zandalar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 276, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65095, "buy_price": 325478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Zandalar", "name_ko_KR": "잔달라의 불꽃", "name_fr_FR": "Etincelle de Zandalar", "name_de_DE": "Funken von Zandalar", "name_zh_CN": "赞达拉之火", "name_es_ES": "Chispa de Zandalar", "name_ru_RU": "Искра Зандалара", "name_it_IT": "Monile della Scintilla di Zandalar", "name_pt_PT": "Centelha de Zandalar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96037, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bad Juju", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 261, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64851, "buy_price": 324255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bad Juju", "name_ko_KR": "나쁜 부적", "name_fr_FR": "Mauvais juju", "name_de_DE": "Finsteres Juju", "name_zh_CN": "邪恶魂能", "name_es_ES": "Mal yuyu", "name_ru_RU": "Зловещее джуджу", "name_it_IT": "Juju Cattivo", "name_pt_PT": "Juju do Mal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Final Choice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 280, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723, "buy_price": 3617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Final Choice", "name_ko_KR": "우슐레이의 마지막 선택", "name_fr_FR": "Ultime choix de Wushoolay", "name_de_DE": "Wushoolays letzte Wahl", "name_zh_CN": "乌苏雷的最终抉择", "name_es_ES": "Decisión final de Wushoolay", "name_ru_RU": "Последний выбор Вушулая", "name_it_IT": "Scelta Finale di Wushoolay", "name_pt_PT": "Última Escolha de Vuxulai", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96049, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fortitude of the Zandalari", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 266, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64123, "buy_price": 320618, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fortitude of the Zandalari", "name_ko_KR": "잔달라의 인내", "name_fr_FR": "Endurance des Zandalari", "name_de_DE": "Kraft der Zandalari", "name_zh_CN": "赞达拉之韧", "name_es_ES": "Entereza de los Zandalari", "name_ru_RU": "Стойкость зандаларов", "name_it_IT": "Vigore degli Zandalari", "name_pt_PT": "Fortitude dos Zandalari", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96083, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Hydra", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 262, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723, "buy_price": 3617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Breath of the Hydra", "name_ko_KR": "히드라의 숨결", "name_fr_FR": "Souffle de l'hydre", "name_de_DE": "Odem der Hydra", "name_zh_CN": "九头蛇之息", "name_es_ES": "Aliento de la hidra", "name_ru_RU": "Дыхание гидры", "name_it_IT": "Soffio dell'Idra", "name_pt_PT": "Sopro da Hidra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96084, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscribed Bag of Hydra-Spawn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 269, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64361, "buy_price": 321808, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Inscribed Bag of Hydra-Spawn", "name_ko_KR": "히드라혈족의 문자가 새겨진 주머니", "name_fr_FR": "Sac gravé de rejeton d'hydre", "name_de_DE": "Verzierter Beutel mit Hydraeiern", "name_zh_CN": "九头蛇卵的铭文袋", "name_es_ES": "Bolsa de engendro de hidra con inscripciones", "name_ru_RU": "Покрытый письменами мешок порождений гидры", "name_it_IT": "Borsa Decorata della Prole dell'Idra", "name_pt_PT": "Bolsa de Ova de Hidra Inscrita", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96098, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fabled Feather of Ji-Kun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 265, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65095, "buy_price": 325478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fabled Feather of Ji-Kun", "name_ko_KR": "지쿤의 전설적인 깃털", "name_fr_FR": "Plume fabuleuse de Ji Kun", "name_de_DE": "Legendäre Feder von Ji-Kun", "name_zh_CN": "季鹍的传说之羽", "name_es_ES": "Pluma de fábula de Ji Kun", "name_ru_RU": "Легендарное перо Цзи-Кунь", "name_it_IT": "Piuma Leggendaria di Ji-Kun", "name_pt_PT": "Pena Fabulosa de Ji-Kun", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96099, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ji-Kun's Rising Winds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 270, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64123, "buy_price": 320618, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ji-Kun's Rising Winds", "name_ko_KR": "지쿤의 이는 바람", "name_fr_FR": "Levée du vent de Ji Kun", "name_de_DE": "Ji-Kuns Aufwind", "name_zh_CN": "季鹍的复苏之风", "name_es_ES": "Vientos crecientes de Ji Kun", "name_ru_RU": "Нарастающий ветер Цзи-Кунь", "name_it_IT": "Venti Crescenti di Ji-Kun", "name_pt_PT": "Vento Crescente de Ji-Kun", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96120, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Bloodlust", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 278, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64851, "buy_price": 324255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Bloodlust", "name_ko_KR": "피바람의 부적", "name_fr_FR": "Talisman de furie sanguinaire", "name_de_DE": "Talisman des Blutdurstes", "name_zh_CN": "杀戮护符", "name_es_ES": "Dije de Ansia de sangre", "name_ru_RU": "Талисман жажды крови", "name_it_IT": "Talismano della Brama di Sangue", "name_pt_PT": "Talismã da Sede de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96129, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primordius' Talisman of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 272, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65095, "buy_price": 325478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Primordius' Talisman of Rage", "name_ko_KR": "프리모디우스의 분노의 부적", "name_fr_FR": "Talisman de rage de Primordius", "name_de_DE": "Primordius' Talisman der Wut", "name_zh_CN": "普利莫修斯的狂怒护符", "name_es_ES": "Dije de ira de Primordius", "name_ru_RU": "Талисман ярости Изначалия", "name_it_IT": "Talismano della Rabbia di Primordius", "name_pt_PT": "Talismã da Ira de Primordius", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96135, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Relic of Zuldazar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 277, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64361, "buy_price": 321808, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stolen Relic of Zuldazar", "name_ko_KR": "줄다자르의 도둑맞은 유물", "name_fr_FR": "Relique volée de Zuldazar", "name_de_DE": "Gestohlenes Relikt von Zuldazar", "name_zh_CN": "祖达萨的失窃遗物", "name_es_ES": "Reliquia robada de Zuldazar", "name_ru_RU": "Украденная реликвия Зулдазара", "name_it_IT": "Reliquia Rubata di Zuldazar", "name_pt_PT": "Relíquia Roubada de Zuldazar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96144, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cha-Ye's Essence of Brilliance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 263, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723, "buy_price": 3617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cha-Ye's Essence of Brilliance", "name_ko_KR": "차예의 총명함의 정수", "name_fr_FR": "Essence de brillance de Cha Ye", "name_de_DE": "Cha-Yes brillante Essenz", "name_zh_CN": "张叶的辉煌精华", "name_es_ES": "Esencia de resplandor de Cha Ye", "name_ru_RU": "Сущность гениальности Ча-Йе", "name_it_IT": "Essenza dell'Acume di Cha-Ye", "name_pt_PT": "Essência do Esplendor de Cha-Ye", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96151, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delicate Vial of the Sanguinaire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 264, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64123, "buy_price": 320618, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Delicate Vial of the Sanguinaire", "name_ko_KR": "핏덩이가 담긴 섬세한 유리병", "name_fr_FR": "Fiole délicate du sanguinaire", "name_de_DE": "Filigrane Phiole des Blutsaugers", "name_zh_CN": "嗜血者的精致小瓶", "name_es_ES": "Vial delicado del Sanguinario", "name_ru_RU": "Хрупкий фиал кровопролития", "name_it_IT": "Fiala del Sanguinario", "name_pt_PT": "Ampola Delicada do Sanguinário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96171, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gaze of the Twins", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 267, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65095, "buy_price": 325478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Gaze of the Twins", "name_ko_KR": "쌍둥이의 응시", "name_fr_FR": "Regard des concubines", "name_de_DE": "Blick der Zwillinge", "name_zh_CN": "双天的凝视", "name_es_ES": "Mirada de las Gemelas", "name_ru_RU": "Взгляд близнецов", "name_it_IT": "Sguardo delle Gemelle", "name_pt_PT": "Olhar das Gêmeas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96174, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Re-Origination", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 274, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64851, "buy_price": 324255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Re-Origination", "name_ko_KR": "재창시의 룬", "name_fr_FR": "Rune de redistribution", "name_de_DE": "Rune der Neuerschaffung", "name_zh_CN": "重生符文", "name_es_ES": "Runa de reoriginación", "name_ru_RU": "Руна перераспределения", "name_it_IT": "Runa della Rioriginazione", "name_pt_PT": "Runa da Recriação", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96183, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Barrier", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 275, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64123, "buy_price": 320618, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soul Barrier", "name_ko_KR": "영혼 방벽", "name_fr_FR": "Barrière d'âme", "name_de_DE": "Seelenbarriere", "name_zh_CN": "灵魂壁障", "name_es_ES": "Barrera de alma", "name_ru_RU": "Призрачный барьер", "name_it_IT": "Barriera d'Anima", "name_pt_PT": "Barreira de Almas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96186, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unerring Vision of Lei Shen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 279, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723, "buy_price": 3617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Unerring Vision of Lei Shen", "name_ko_KR": "레이 션의 흔들림 없는 시선", "name_fr_FR": "Vision infaillible de Lei Shen", "name_de_DE": "Unfehlbarer Blick des Lei Shen", "name_zh_CN": "雷神的精准之视", "name_es_ES": "Visión infalible de Lei Shen", "name_ru_RU": "Отчетливое видение Лэй Шэня", "name_it_IT": "Visione Infallibile di Lei Shen", "name_pt_PT": "Visão Infalível de Lei Shen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96189, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning-Imbued Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 271, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64361, "buy_price": 321808, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lightning-Imbued Chalice", "name_ko_KR": "번개 깃든 성배", "name_fr_FR": "Calice imprégné de foudre", "name_de_DE": "Blitz-verzauberter Kelch", "name_zh_CN": "闪电圣杯", "name_es_ES": "Cáliz imbuido de relámpagos", "name_ru_RU": "Заряженный молнией кубок", "name_it_IT": "Calice Infuso di Fulmini", "name_pt_PT": "Cálice Imbuído em Relâmpago", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96369, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Soul Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 273, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Soul Charm", "name_ko_KR": "레나타키의 영혼 부적", "name_fr_FR": "Charme d'âme de Renataki", "name_de_DE": "Renatakis Seelentalisman", "name_zh_CN": "雷纳塔基的灵魂符咒", "name_es_ES": "Talismán de alma de Renataki", "name_ru_RU": "Оберег души Ренатаки", "name_it_IT": "Ammalianime di Renataki", "name_pt_PT": "Patuá de Renataki", "on_use": false, "id_encounter": 827, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96385, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horridon's Last Gasp", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 268, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horridon's Last Gasp", "name_ko_KR": "호리돈의 마지막 들숨", "name_fr_FR": "Dernier souffle d'Horridon", "name_de_DE": "Horridons letzter Atemzug", "name_zh_CN": "赫利东的垂死之息", "name_es_ES": "Último aliento de Horridonte", "name_ru_RU": "Последний вздох Хорридона", "name_it_IT": "Ultimo Respiro di Horridon", "name_pt_PT": "Último Suspiro de Horridon", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96398, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Zandalar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 276, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Zandalar", "name_ko_KR": "잔달라의 불꽃", "name_fr_FR": "Etincelle de Zandalar", "name_de_DE": "Funken von Zandalar", "name_zh_CN": "赞达拉之火", "name_es_ES": "Chispa de Zandalar", "name_ru_RU": "Искра Зандалара", "name_it_IT": "Monile della Scintilla di Zandalar", "name_pt_PT": "Centelha de Zandalar", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96409, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bad Juju", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 261, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bad Juju", "name_ko_KR": "나쁜 부적", "name_fr_FR": "Mauvais juju", "name_de_DE": "Finsteres Juju", "name_zh_CN": "邪恶魂能", "name_es_ES": "Mal yuyu", "name_ru_RU": "Зловещее джуджу", "name_it_IT": "Juju Cattivo", "name_pt_PT": "Juju do Mal", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Final Choice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 280, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Final Choice", "name_ko_KR": "우슐레이의 마지막 선택", "name_fr_FR": "Ultime choix de Wushoolay", "name_de_DE": "Wushoolays letzte Wahl", "name_zh_CN": "乌苏雷的最终抉择", "name_es_ES": "Decisión final de Wushoolay", "name_ru_RU": "Последний выбор Вушулая", "name_it_IT": "Scelta Finale di Wushoolay", "name_pt_PT": "Última Escolha de Vuxulai", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96421, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fortitude of the Zandalari", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 266, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fortitude of the Zandalari", "name_ko_KR": "잔달라의 인내", "name_fr_FR": "Endurance des Zandalari", "name_de_DE": "Kraft der Zandalari", "name_zh_CN": "赞达拉之韧", "name_es_ES": "Entereza de los Zandalari", "name_ru_RU": "Стойкость зандаларов", "name_it_IT": "Vigore degli Zandalari", "name_pt_PT": "Fortitude dos Zandalari", "on_use": true, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96455, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Hydra", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 262, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Breath of the Hydra", "name_ko_KR": "히드라의 숨결", "name_fr_FR": "Souffle de l'hydre", "name_de_DE": "Odem der Hydra", "name_zh_CN": "九头蛇之息", "name_es_ES": "Aliento de la hidra", "name_ru_RU": "Дыхание гидры", "name_it_IT": "Soffio dell'Idra", "name_pt_PT": "Sopro da Hidra", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96456, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscribed Bag of Hydra-Spawn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 269, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Inscribed Bag of Hydra-Spawn", "name_ko_KR": "히드라혈족의 문자가 새겨진 주머니", "name_fr_FR": "Sac gravé de rejeton d'hydre", "name_de_DE": "Verzierter Beutel mit Hydraeiern", "name_zh_CN": "九头蛇卵的铭文袋", "name_es_ES": "Bolsa de engendro de hidra con inscripciones", "name_ru_RU": "Покрытый письменами мешок порождений гидры", "name_it_IT": "Borsa Decorata della Prole dell'Idra", "name_pt_PT": "Bolsa de Ova de Hidra Inscrita", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96470, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fabled Feather of Ji-Kun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 265, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fabled Feather of Ji-Kun", "name_ko_KR": "지쿤의 전설적인 깃털", "name_fr_FR": "Plume fabuleuse de Ji Kun", "name_de_DE": "Legendäre Feder von Ji-Kun", "name_zh_CN": "季鹍的传说之羽", "name_es_ES": "Pluma de fábula de Ji Kun", "name_ru_RU": "Легендарное перо Цзи-Кунь", "name_it_IT": "Piuma Leggendaria di Ji-Kun", "name_pt_PT": "Pena Fabulosa de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96471, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ji-Kun's Rising Winds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 270, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ji-Kun's Rising Winds", "name_ko_KR": "지쿤의 이는 바람", "name_fr_FR": "Levée du vent de Ji Kun", "name_de_DE": "Ji-Kuns Aufwind", "name_zh_CN": "季鹍的复苏之风", "name_es_ES": "Vientos crecientes de Ji Kun", "name_ru_RU": "Нарастающий ветер Цзи-Кунь", "name_it_IT": "Venti Crescenti di Ji-Kun", "name_pt_PT": "Vento Crescente de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Bloodlust", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 278, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Bloodlust", "name_ko_KR": "피바람의 부적", "name_fr_FR": "Talisman de furie sanguinaire", "name_de_DE": "Talisman des Blutdurstes", "name_zh_CN": "杀戮护符", "name_es_ES": "Dije de Ansia de sangre", "name_ru_RU": "Талисман жажды крови", "name_it_IT": "Talismano della Brama di Sangue", "name_pt_PT": "Talismã da Sede de Sangue", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96501, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primordius' Talisman of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 272, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Primordius' Talisman of Rage", "name_ko_KR": "프리모디우스의 분노의 부적", "name_fr_FR": "Talisman de rage de Primordius", "name_de_DE": "Primordius' Talisman der Wut", "name_zh_CN": "普利莫修斯的狂怒护符", "name_es_ES": "Dije de ira de Primordius", "name_ru_RU": "Талисман ярости Изначалия", "name_it_IT": "Talismano della Rabbia di Primordius", "name_pt_PT": "Talismã da Ira de Primordius", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Relic of Zuldazar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 277, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stolen Relic of Zuldazar", "name_ko_KR": "줄다자르의 도둑맞은 유물", "name_fr_FR": "Relique volée de Zuldazar", "name_de_DE": "Gestohlenes Relikt von Zuldazar", "name_zh_CN": "祖达萨的失窃遗物", "name_es_ES": "Reliquia robada de Zuldazar", "name_ru_RU": "Украденная реликвия Зулдазара", "name_it_IT": "Reliquia Rubata di Zuldazar", "name_pt_PT": "Relíquia Roubada de Zuldazar", "on_use": true, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cha-Ye's Essence of Brilliance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 263, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cha-Ye's Essence of Brilliance", "name_ko_KR": "차예의 총명함의 정수", "name_fr_FR": "Essence de brillance de Cha Ye", "name_de_DE": "Cha-Yes brillante Essenz", "name_zh_CN": "张叶的辉煌精华", "name_es_ES": "Esencia de resplandor de Cha Ye", "name_ru_RU": "Сущность гениальности Ча-Йе", "name_it_IT": "Essenza dell'Acume di Cha-Ye", "name_pt_PT": "Essência do Esplendor de Cha-Ye", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96523, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delicate Vial of the Sanguinaire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 264, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Delicate Vial of the Sanguinaire", "name_ko_KR": "핏덩이가 담긴 섬세한 유리병", "name_fr_FR": "Fiole délicate du sanguinaire", "name_de_DE": "Filigrane Phiole des Blutsaugers", "name_zh_CN": "嗜血者的精致小瓶", "name_es_ES": "Vial delicado del Sanguinario", "name_ru_RU": "Хрупкий фиал кровопролития", "name_it_IT": "Fiala del Sanguinario", "name_pt_PT": "Ampola Delicada do Sanguinário", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96543, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gaze of the Twins", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 267, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Gaze of the Twins", "name_ko_KR": "쌍둥이의 응시", "name_fr_FR": "Regard des concubines", "name_de_DE": "Blick der Zwillinge", "name_zh_CN": "双天的凝视", "name_es_ES": "Mirada de las Gemelas", "name_ru_RU": "Взгляд близнецов", "name_it_IT": "Sguardo delle Gemelle", "name_pt_PT": "Olhar das Gêmeas", "on_use": false, "id_encounter": 829, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96546, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Re-Origination", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 274, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Re-Origination", "name_ko_KR": "재창시의 룬", "name_fr_FR": "Rune de redistribution", "name_de_DE": "Rune der Neuerschaffung", "name_zh_CN": "重生符文", "name_es_ES": "Runa de reoriginación", "name_ru_RU": "Руна перераспределения", "name_it_IT": "Runa della Rioriginazione", "name_pt_PT": "Runa da Recriação", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96555, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Barrier", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 275, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soul Barrier", "name_ko_KR": "영혼 방벽", "name_fr_FR": "Barrière d'âme", "name_de_DE": "Seelenbarriere", "name_zh_CN": "灵魂壁障", "name_es_ES": "Barrera de alma", "name_ru_RU": "Призрачный барьер", "name_it_IT": "Barriera d'Anima", "name_pt_PT": "Barreira de Almas", "on_use": true, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96558, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unerring Vision of Lei Shen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 279, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Unerring Vision of Lei Shen", "name_ko_KR": "레이 션의 흔들림 없는 시선", "name_fr_FR": "Vision infaillible de Lei Shen", "name_de_DE": "Unfehlbarer Blick des Lei Shen", "name_zh_CN": "雷神的精准之视", "name_es_ES": "Visión infalible de Lei Shen", "name_ru_RU": "Отчетливое видение Лэй Шэня", "name_it_IT": "Visione Infallibile di Lei Shen", "name_pt_PT": "Visão Infalível de Lei Shen", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96561, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning-Imbued Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 271, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lightning-Imbued Chalice", "name_ko_KR": "번개 깃든 성배", "name_fr_FR": "Calice imprégné de foudre", "name_de_DE": "Blitz-verzauberter Kelch", "name_zh_CN": "闪电圣杯", "name_es_ES": "Cáliz imbuido de relámpagos", "name_ru_RU": "Заряженный молнией кубок", "name_it_IT": "Calice Infuso di Fulmini", "name_pt_PT": "Cálice Imbuído em Relâmpago", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96741, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Soul Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 273, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74968, "buy_price": 374841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Soul Charm", "name_ko_KR": "레나타키의 영혼 부적", "name_fr_FR": "Charme d'âme de Renataki", "name_de_DE": "Renatakis Seelentalisman", "name_zh_CN": "雷纳塔基的灵魂符咒", "name_es_ES": "Talismán de alma de Renataki", "name_ru_RU": "Оберег души Ренатаки", "name_it_IT": "Ammalianime di Renataki", "name_pt_PT": "Patuá de Renataki", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96757, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horridon's Last Gasp", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 268, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74402, "buy_price": 372013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horridon's Last Gasp", "name_ko_KR": "호리돈의 마지막 들숨", "name_fr_FR": "Dernier souffle d'Horridon", "name_de_DE": "Horridons letzter Atemzug", "name_zh_CN": "赫利东的垂死之息", "name_es_ES": "Último aliento de Horridonte", "name_ru_RU": "Последний вздох Хорридона", "name_it_IT": "Ultimo Respiro di Horridon", "name_pt_PT": "Último Suspiro de Horridon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96770, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Zandalar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 276, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75251, "buy_price": 376255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Zandalar", "name_ko_KR": "잔달라의 불꽃", "name_fr_FR": "Etincelle de Zandalar", "name_de_DE": "Funken von Zandalar", "name_zh_CN": "赞达拉之火", "name_es_ES": "Chispa de Zandalar", "name_ru_RU": "Искра Зандалара", "name_it_IT": "Monile della Scintilla di Zandalar", "name_pt_PT": "Centelha de Zandalar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96781, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bad Juju", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 261, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74968, "buy_price": 374841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bad Juju", "name_ko_KR": "나쁜 부적", "name_fr_FR": "Mauvais juju", "name_de_DE": "Finsteres Juju", "name_zh_CN": "邪恶魂能", "name_es_ES": "Mal yuyu", "name_ru_RU": "Зловещее джуджу", "name_it_IT": "Juju Cattivo", "name_pt_PT": "Juju do Mal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96785, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Final Choice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 280, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795, "buy_price": 3977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Final Choice", "name_ko_KR": "우슐레이의 마지막 선택", "name_fr_FR": "Ultime choix de Wushoolay", "name_de_DE": "Wushoolays letzte Wahl", "name_zh_CN": "乌苏雷的最终抉择", "name_es_ES": "Decisión final de Wushoolay", "name_ru_RU": "Последний выбор Вушулая", "name_it_IT": "Scelta Finale di Wushoolay", "name_pt_PT": "Última Escolha de Vuxulai", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96793, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fortitude of the Zandalari", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 266, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74127, "buy_price": 370637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fortitude of the Zandalari", "name_ko_KR": "잔달라의 인내", "name_fr_FR": "Endurance des Zandalari", "name_de_DE": "Kraft der Zandalari", "name_zh_CN": "赞达拉之韧", "name_es_ES": "Entereza de los Zandalari", "name_ru_RU": "Стойкость зандаларов", "name_it_IT": "Vigore degli Zandalari", "name_pt_PT": "Fortitude dos Zandalari", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96827, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Hydra", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 262, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795, "buy_price": 3977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Breath of the Hydra", "name_ko_KR": "히드라의 숨결", "name_fr_FR": "Souffle de l'hydre", "name_de_DE": "Odem der Hydra", "name_zh_CN": "九头蛇之息", "name_es_ES": "Aliento de la hidra", "name_ru_RU": "Дыхание гидры", "name_it_IT": "Soffio dell'Idra", "name_pt_PT": "Sopro da Hidra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96828, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscribed Bag of Hydra-Spawn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 269, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74402, "buy_price": 372013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Inscribed Bag of Hydra-Spawn", "name_ko_KR": "히드라혈족의 문자가 새겨진 주머니", "name_fr_FR": "Sac gravé de rejeton d'hydre", "name_de_DE": "Verzierter Beutel mit Hydraeiern", "name_zh_CN": "九头蛇卵的铭文袋", "name_es_ES": "Bolsa de engendro de hidra con inscripciones", "name_ru_RU": "Покрытый письменами мешок порождений гидры", "name_it_IT": "Borsa Decorata della Prole dell'Idra", "name_pt_PT": "Bolsa de Ova de Hidra Inscrita", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96842, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fabled Feather of Ji-Kun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 265, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75251, "buy_price": 376255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fabled Feather of Ji-Kun", "name_ko_KR": "지쿤의 전설적인 깃털", "name_fr_FR": "Plume fabuleuse de Ji Kun", "name_de_DE": "Legendäre Feder von Ji-Kun", "name_zh_CN": "季鹍的传说之羽", "name_es_ES": "Pluma de fábula de Ji Kun", "name_ru_RU": "Легендарное перо Цзи-Кунь", "name_it_IT": "Piuma Leggendaria di Ji-Kun", "name_pt_PT": "Pena Fabulosa de Ji-Kun", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96843, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ji-Kun's Rising Winds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 270, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74127, "buy_price": 370637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ji-Kun's Rising Winds", "name_ko_KR": "지쿤의 이는 바람", "name_fr_FR": "Levée du vent de Ji Kun", "name_de_DE": "Ji-Kuns Aufwind", "name_zh_CN": "季鹍的复苏之风", "name_es_ES": "Vientos crecientes de Ji Kun", "name_ru_RU": "Нарастающий ветер Цзи-Кунь", "name_it_IT": "Venti Crescenti di Ji-Kun", "name_pt_PT": "Vento Crescente de Ji-Kun", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96864, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Bloodlust", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 278, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74968, "buy_price": 374841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Bloodlust", "name_ko_KR": "피바람의 부적", "name_fr_FR": "Talisman de furie sanguinaire", "name_de_DE": "Talisman des Blutdurstes", "name_zh_CN": "杀戮护符", "name_es_ES": "Dije de Ansia de sangre", "name_ru_RU": "Талисман жажды крови", "name_it_IT": "Talismano della Brama di Sangue", "name_pt_PT": "Talismã da Sede de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96873, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primordius' Talisman of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 272, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75251, "buy_price": 376255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Primordius' Talisman of Rage", "name_ko_KR": "프리모디우스의 분노의 부적", "name_fr_FR": "Talisman de rage de Primordius", "name_de_DE": "Primordius' Talisman der Wut", "name_zh_CN": "普利莫修斯的狂怒护符", "name_es_ES": "Dije de ira de Primordius", "name_ru_RU": "Талисман ярости Изначалия", "name_it_IT": "Talismano della Rabbia di Primordius", "name_pt_PT": "Talismã da Ira de Primordius", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Relic of Zuldazar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 277, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74402, "buy_price": 372013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stolen Relic of Zuldazar", "name_ko_KR": "줄다자르의 도둑맞은 유물", "name_fr_FR": "Relique volée de Zuldazar", "name_de_DE": "Gestohlenes Relikt von Zuldazar", "name_zh_CN": "祖达萨的失窃遗物", "name_es_ES": "Reliquia robada de Zuldazar", "name_ru_RU": "Украденная реликвия Зулдазара", "name_it_IT": "Reliquia Rubata di Zuldazar", "name_pt_PT": "Relíquia Roubada de Zuldazar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96888, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cha-Ye's Essence of Brilliance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 263, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795, "buy_price": 3977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cha-Ye's Essence of Brilliance", "name_ko_KR": "차예의 총명함의 정수", "name_fr_FR": "Essence de brillance de Cha Ye", "name_de_DE": "Cha-Yes brillante Essenz", "name_zh_CN": "张叶的辉煌精华", "name_es_ES": "Esencia de resplandor de Cha Ye", "name_ru_RU": "Сущность гениальности Ча-Йе", "name_it_IT": "Essenza dell'Acume di Cha-Ye", "name_pt_PT": "Essência do Esplendor de Cha-Ye", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96895, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delicate Vial of the Sanguinaire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 264, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74127, "buy_price": 370637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Delicate Vial of the Sanguinaire", "name_ko_KR": "핏덩이가 담긴 섬세한 유리병", "name_fr_FR": "Fiole délicate du sanguinaire", "name_de_DE": "Filigrane Phiole des Blutsaugers", "name_zh_CN": "嗜血者的精致小瓶", "name_es_ES": "Vial delicado del Sanguinario", "name_ru_RU": "Хрупкий фиал кровопролития", "name_it_IT": "Fiala del Sanguinario", "name_pt_PT": "Ampola Delicada do Sanguinário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96915, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gaze of the Twins", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 267, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75251, "buy_price": 376255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Gaze of the Twins", "name_ko_KR": "쌍둥이의 응시", "name_fr_FR": "Regard des concubines", "name_de_DE": "Blick der Zwillinge", "name_zh_CN": "双天的凝视", "name_es_ES": "Mirada de las Gemelas", "name_ru_RU": "Взгляд близнецов", "name_it_IT": "Sguardo delle Gemelle", "name_pt_PT": "Olhar das Gêmeas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96918, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Re-Origination", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 274, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74968, "buy_price": 374841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Re-Origination", "name_ko_KR": "재창시의 룬", "name_fr_FR": "Rune de redistribution", "name_de_DE": "Rune der Neuerschaffung", "name_zh_CN": "重生符文", "name_es_ES": "Runa de reoriginación", "name_ru_RU": "Руна перераспределения", "name_it_IT": "Runa della Rioriginazione", "name_pt_PT": "Runa da Recriação", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96927, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Barrier", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 275, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74127, "buy_price": 370637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soul Barrier", "name_ko_KR": "영혼 방벽", "name_fr_FR": "Barrière d'âme", "name_de_DE": "Seelenbarriere", "name_zh_CN": "灵魂壁障", "name_es_ES": "Barrera de alma", "name_ru_RU": "Призрачный барьер", "name_it_IT": "Barriera d'Anima", "name_pt_PT": "Barreira de Almas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96930, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unerring Vision of Lei Shen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 279, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795, "buy_price": 3977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Unerring Vision of Lei Shen", "name_ko_KR": "레이 션의 흔들림 없는 시선", "name_fr_FR": "Vision infaillible de Lei Shen", "name_de_DE": "Unfehlbarer Blick des Lei Shen", "name_zh_CN": "雷神的精准之视", "name_es_ES": "Visión infalible de Lei Shen", "name_ru_RU": "Отчетливое видение Лэй Шэня", "name_it_IT": "Visione Infallibile di Lei Shen", "name_pt_PT": "Visão Infalível de Lei Shen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96933, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning-Imbued Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 271, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74402, "buy_price": 372013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lightning-Imbued Chalice", "name_ko_KR": "번개 깃든 성배", "name_fr_FR": "Calice imprégné de foudre", "name_de_DE": "Blitz-verzauberter Kelch", "name_zh_CN": "闪电圣杯", "name_es_ES": "Cáliz imbuido de relámpagos", "name_ru_RU": "Заряженный молнией кубок", "name_it_IT": "Calice Infuso di Fulmini", "name_pt_PT": "Cálice Imbuído em Relâmpago", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98755, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Badge of Conquest", "name_ko_KR": "제작된 극악무도한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Eroberungsabzeichen des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的征服徽章", "name_es_ES": "Distintivo de conquista artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный жетон завоевания злонравного гладиатора", "name_it_IT": "Distintivo della Conquista Artigianale del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Conquista Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98760, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Insignia of Conquest", "name_ko_KR": "제작된 극악무도한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Eroberungsinsigne des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的征服徽记", "name_es_ES": "Insignia de conquista artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный знак завоевания злонравного гладиатора", "name_it_IT": "Fregio della Conquista Artigianale del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Conquista Artesanal do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Emblem of Cruelty", "name_ko_KR": "제작된 극악무도한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Grausamkeitsemblem des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленная эмблема жестокости злонравного гладиатора", "name_it_IT": "Emblema dell'Atrocità Artigianale del Gladiatore Malevolo", "name_pt_PT": "Emblema da Crueldade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98812, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Emblem of Tenacity", "name_ko_KR": "제작된 극악무도한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Hartnäckigkeitsemblem des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленная эмблема упорства злонравного гладиатора", "name_it_IT": "Emblema della Tenacia Artigianale del Gladiatore Malevolo", "name_pt_PT": "Emblema da Tenacidade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98813, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Emblem of Meditation", "name_ko_KR": "제작된 극악무도한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Meditationsemblem des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的冥想纹章", "name_es_ES": "Emblema de meditación artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленная эмблема медитации злонравного гладиатора", "name_it_IT": "Emblema della Meditazione Artigianale del Gladiatore Malevolo", "name_pt_PT": "Emblema da Meditação Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98875, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "제작된 극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98876, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "제작된 극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98877, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "제작된 극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98878, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "제작된 극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98879, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "제작된 극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98880, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "제작된 극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98910, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Badge of Dominance", "name_ko_KR": "제작된 극악무도한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Vorherrschaftsabzeichen des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный жетон господства злонравного гладиатора", "name_it_IT": "Distintivo della Dominazione Artigianale del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Dominância Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98911, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Insignia of Dominance", "name_ko_KR": "제작된 극악무도한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Vorherrschaftsinsigne des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的统御徽记", "name_es_ES": "Insignia de dominancia artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный знак господства злонравного гладиатора", "name_it_IT": "Fregio della Dominazione Artigianale del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Dominância Artesanal do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98912, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Badge of Victory", "name_ko_KR": "제작된 극악무도한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Siegesabzeichen des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный жетон победы злонравного гладиатора", "name_it_IT": "Distintivo della Vittoria Artigianale del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Vitória Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98917, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Insignia of Victory", "name_ko_KR": "제작된 극악무도한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Siegesinsigne des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的胜利徽记", "name_es_ES": "Insignia de victoria artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный знак победы злонравного гладиатора", "name_it_IT": "Fregio della Vittoria Artigianale del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Vitória Artesanal do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99772, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100043, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Conquest", "name_ko_KR": "압제적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador tiránico", "name_ru_RU": "Жетон завоевания деспотичного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Conquista do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99777, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100026, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Conquest", "name_ko_KR": "압제적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador tiránico", "name_ru_RU": "Знак завоевания деспотичного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Conquista do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99838, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100066, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador tiránico", "name_ru_RU": "Эмблема жестокости деспотичного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Emblema da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99839, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100092, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador tiránico", "name_ru_RU": "Эмблема упорства деспотичного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Emblema da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99840, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99990, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Meditation", "name_ko_KR": "압제적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador tiránico", "name_ru_RU": "Эмблема медитации деспотичного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Emblema da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99937, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100016, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Dominance", "name_ko_KR": "압제적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador tiránico", "name_ru_RU": "Жетон господства деспотичного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Dominância do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99938, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100152, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Dominance", "name_ko_KR": "압제적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador tiránico", "name_ru_RU": "Знак господства деспотичного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Dominância do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99943, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100019, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Victory", "name_ko_KR": "압제적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur tyrannique", "name_de_DE": "Siegesabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador tiránico", "name_ru_RU": "Жетон победы деспотичного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Vitória do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99948, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100085, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Victory", "name_ko_KR": "압제적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur tyrannique", "name_de_DE": "Siegesinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador tiránico", "name_ru_RU": "Знак победы деспотичного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Vitória do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99990, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99840, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Meditation", "name_ko_KR": "압제적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador tiránico", "name_ru_RU": "Эмблема медитации деспотичного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Emblema da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100006, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100058, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Meditation", "name_ko_KR": "압제적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador tiránico", "name_ru_RU": "Медальон медитации деспотичного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100016, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99937, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Dominance", "name_ko_KR": "압제적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador tiránico", "name_ru_RU": "Жетон господства деспотичного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Dominância do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100019, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99943, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Victory", "name_ko_KR": "압제적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur tyrannique", "name_de_DE": "Siegesabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador tiránico", "name_ru_RU": "Жетон победы деспотичного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Vitória do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100026, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99777, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Conquest", "name_ko_KR": "압제적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador tiránico", "name_ru_RU": "Знак завоевания деспотичного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Conquista do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100031, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100057, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador tiránico", "name_ru_RU": "Медальон упорства деспотичного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100043, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99772, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Conquest", "name_ko_KR": "압제적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador tiránico", "name_ru_RU": "Жетон завоевания деспотичного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Conquista do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100056, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100124, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador tiránico", "name_ru_RU": "Медальон жестокости деспотичного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100057, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100031, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador tiránico", "name_ru_RU": "Медальон упорства деспотичного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100058, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100006, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Meditation", "name_ko_KR": "압제적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador tiránico", "name_ru_RU": "Медальон медитации деспотичного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100066, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99838, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador tiránico", "name_ru_RU": "Эмблема жестокости деспотичного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Emblema da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100085, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99948, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Victory", "name_ko_KR": "압제적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur tyrannique", "name_de_DE": "Siegesinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador tiránico", "name_ru_RU": "Знак победы деспотичного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Vitória do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100092, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99839, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador tiránico", "name_ru_RU": "Эмблема упорства деспотичного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Emblema da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100124, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100056, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador tiránico", "name_ru_RU": "Медальон жестокости деспотичного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100152, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99938, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Dominance", "name_ko_KR": "압제적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador tiránico", "name_ru_RU": "Знак господства деспотичного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Dominância do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100195, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100603, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur dramatique", "name_de_DE": "Eroberungsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador severo", "name_ru_RU": "Жетон завоевания бездушного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temibile", "name_pt_PT": "Distintivo de Conquista do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100200, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100586, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur dramatique", "name_de_DE": "Eroberungsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador severo", "name_ru_RU": "Знак завоевания бездушного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temibile", "name_pt_PT": "Insígnia de Conquista do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100305, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100626, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador severo", "name_ru_RU": "Эмблема жестокости бездушного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Emblema da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100306, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100652, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador severo", "name_ru_RU": "Эмблема упорства бездушного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temibile", "name_pt_PT": "Emblema da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100307, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100559, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur dramatique", "name_de_DE": "Meditationsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador severo", "name_ru_RU": "Эмблема медитации бездушного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temibile", "name_pt_PT": "Emblema da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100490, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100576, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur dramatique", "name_de_DE": "Vorherrschaftsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador severo", "name_ru_RU": "Жетон господства бездушного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temibile", "name_pt_PT": "Distintivo de Dominância do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100491, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100712, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur dramatique", "name_de_DE": "Vorherrschaftsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador severo", "name_ru_RU": "Знак господства бездушного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temibile", "name_pt_PT": "Insígnia de Dominância do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100500, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100579, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur dramatique", "name_de_DE": "Siegesabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador severo", "name_ru_RU": "Жетон победы бездушного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temibile", "name_pt_PT": "Distintivo de Vitória do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100505, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100645, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur dramatique", "name_de_DE": "Siegesinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador severo", "name_ru_RU": "Знак победы бездушного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temibile", "name_pt_PT": "Insígnia de Vitória do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100559, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100307, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur dramatique", "name_de_DE": "Meditationsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador severo", "name_ru_RU": "Эмблема медитации бездушного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temibile", "name_pt_PT": "Emblema da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100568, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100618, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur dramatique", "name_de_DE": "Meditationsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador severo", "name_ru_RU": "Медальон медитации бездушного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Temibile", "name_pt_PT": "Medalhão da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100576, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100490, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur dramatique", "name_de_DE": "Vorherrschaftsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador severo", "name_ru_RU": "Жетон господства бездушного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temibile", "name_pt_PT": "Distintivo de Dominância do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100579, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100500, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur dramatique", "name_de_DE": "Siegesabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador severo", "name_ru_RU": "Жетон победы бездушного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temibile", "name_pt_PT": "Distintivo de Vitória do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100586, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100200, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur dramatique", "name_de_DE": "Eroberungsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador severo", "name_ru_RU": "Знак завоевания бездушного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temibile", "name_pt_PT": "Insígnia de Conquista do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100591, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100617, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador severo", "name_ru_RU": "Медальон упорства бездушного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Temibile", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100603, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100195, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur dramatique", "name_de_DE": "Eroberungsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador severo", "name_ru_RU": "Жетон завоевания бездушного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temibile", "name_pt_PT": "Distintivo de Conquista do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100616, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100684, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador severo", "name_ru_RU": "Медальон жестокости бездушного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Medalhão da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100617, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100591, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador severo", "name_ru_RU": "Медальон упорства бездушного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Temibile", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100618, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100568, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur dramatique", "name_de_DE": "Meditationsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador severo", "name_ru_RU": "Медальон медитации бездушного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Temibile", "name_pt_PT": "Medalhão da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100626, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100305, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador severo", "name_ru_RU": "Эмблема жестокости бездушного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Emblema da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100645, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100505, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur dramatique", "name_de_DE": "Siegesinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador severo", "name_ru_RU": "Знак победы бездушного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temibile", "name_pt_PT": "Insígnia de Vitória do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100652, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100306, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador severo", "name_ru_RU": "Эмблема упорства бездушного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temibile", "name_pt_PT": "Emblema da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100684, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100616, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador severo", "name_ru_RU": "Медальон жестокости бездушного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Medalhão da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100712, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100491, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur dramatique", "name_de_DE": "Vorherrschaftsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador severo", "name_ru_RU": "Знак господства бездушного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temibile", "name_pt_PT": "Insígnia de Dominância do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100951, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashfrozen Resin Globule", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9941999912261963, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 3, "name_en_US": "Flashfrozen Resin Globule", "name_ko_KR": "급속 냉동된 나뭇진 방울", "name_fr_FR": "Globule de résine surgelée", "name_de_DE": "Schockgefrorenes Harzkügelchen", "name_zh_CN": "闪冻松脂球", "name_es_ES": "Glóbulo de resina congelado rápidamente", "name_ru_RU": "Замороженная капля смолы", "name_it_IT": "Globulo di Linfa Congelato", "name_pt_PT": "Glóbulo de Resina Supercongelado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100963, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Ichorous Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024399995803833, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Ichorous Blood", "name_ko_KR": "끈끈한 피가 든 병", "name_fr_FR": "Fiole de sang ichoreux", "name_de_DE": "Phiole mit eitrigem Blut", "name_zh_CN": "腐败血瓶", "name_es_ES": "Vial de sangre icorosa", "name_ru_RU": "Сосуд с кровью и гноем", "name_it_IT": "Fiala di Sangue di Icore", "name_pt_PT": "Frasco de Sangue Icoroso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100990, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100991, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100999, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101002, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Defensor de Pedra da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101009, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101012, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101038, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101054, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101057, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101069, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101072, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101087, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9955000281333923, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Defensor de Pedra do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101089, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101102, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101107, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101135, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d'âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101138, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d'âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101151, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d'âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101152, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d'âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Defensor de Pedra Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101168, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101171, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101179, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101183, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101200, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101203, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101217, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101220, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101225, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101247, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101250, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101266, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101294, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4495, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101295, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Defensor de Pedra do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102293, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102294, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102295, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102296, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102297, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102298, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102299, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_ko_KR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_fr_FR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_de_DE": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_zh_CN": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_es_ES": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_ru_RU": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_it_IT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_pt_PT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102313, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_ko_KR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_fr_FR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_de_DE": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_zh_CN": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_es_ES": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_ru_RU": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_it_IT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_pt_PT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102314, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_ko_KR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_fr_FR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_de_DE": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_zh_CN": "临时物品", "name_es_ES": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Spirit Trinket (5)", "name_ru_RU": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_it_IT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_pt_PT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_ko_KR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_fr_FR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_de_DE": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_zh_CN": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_es_ES": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_ru_RU": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_it_IT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_pt_PT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_ko_KR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_fr_FR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_de_DE": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_zh_CN": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_es_ES": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_ru_RU": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_it_IT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_pt_PT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102480, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027400016784668, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1203, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Medallion", "name_ko_KR": "검투사의 메달", "name_fr_FR": "Médaillon de gladiateur", "name_de_DE": "Medaillon des Gladiators", "name_zh_CN": "角斗士的勋章", "name_es_ES": "Medallón de Gladiador", "name_ru_RU": "Медальон гладиатора", "name_it_IT": "Medaglione del Gladiatore", "name_pt_PT": "Medalhão do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102481, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031000018119812, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1203, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Emblem", "name_ko_KR": "검투사의 문장", "name_fr_FR": "Emblème de gladiateur", "name_de_DE": "Emblem des Gladiators", "name_zh_CN": "角斗士的纹章", "name_es_ES": "Emblema de Gladiador", "name_ru_RU": "Эмблема гладиатора", "name_it_IT": "Emblema del Gladiatore", "name_pt_PT": "Emblema do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102483, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384000539779663, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "제작된 극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102616, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103409, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Meditation", "name_ko_KR": "자부심 가득한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur orgueilleux", "name_de_DE": "Meditationsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador orgulloso", "name_ru_RU": "Эмблема медитации гордого гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Meditação do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102625, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103532, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Meditation", "name_ko_KR": "자부심 가득한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur orgueilleux", "name_de_DE": "Meditationsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador orgulloso", "name_ru_RU": "Медальон медитации гордого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Meditação do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102633, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103505, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Dominance", "name_ko_KR": "자부심 가득한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur orgueilleux", "name_de_DE": "Vorherrschaftsabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador orgulloso", "name_ru_RU": "Жетон господства гордого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Dominância do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102636, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103511, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Victory", "name_ko_KR": "자부심 가득한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur orgueilleux", "name_de_DE": "Siegesabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador orgulloso", "name_ru_RU": "Жетон победы гордого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Vitória do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102643, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103347, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Conquest", "name_ko_KR": "자부심 가득한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur orgueilleux", "name_de_DE": "Eroberungsinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador orgulloso", "name_ru_RU": "Знак завоевания гордого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Conquista do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102659, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103342, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Conquest", "name_ko_KR": "자부심 가득한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur orgueilleux", "name_de_DE": "Eroberungsabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador orgulloso", "name_ru_RU": "Жетон завоевания гордого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Conquista do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102672, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103530, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Tenacity", "name_ko_KR": "자부심 가득한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur orgueilleux", "name_de_DE": "Hartnäckigkeitsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador orgulloso", "name_ru_RU": "Медальон упорства гордого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102680, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103407, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Cruelty", "name_ko_KR": "자부심 가득한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur orgueilleux", "name_de_DE": "Grausamkeitsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador orgulloso", "name_ru_RU": "Эмблема жестокости гордого гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102699, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103516, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Victory", "name_ko_KR": "자부심 가득한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur orgueilleux", "name_de_DE": "Siegesinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador orgulloso", "name_ru_RU": "Знак победы гордого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Vitória do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102706, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103408, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Tenacity", "name_ko_KR": "자부심 가득한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur orgueilleux", "name_de_DE": "Hartnäckigkeitsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador orgulloso", "name_ru_RU": "Эмблема упорства гордого гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102738, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103531, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Cruelty", "name_ko_KR": "자부심 가득한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur orgueilleux", "name_de_DE": "Grausamkeitsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador orgulloso", "name_ru_RU": "Медальон жестокости гордого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Crueldade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102766, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103506, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Dominance", "name_ko_KR": "자부심 가득한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur orgueilleux", "name_de_DE": "Vorherrschaftsinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador orgulloso", "name_ru_RU": "Знак господства гордого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Dominância do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102813, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103212, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur dramatique", "name_de_DE": "Meditationsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador severo", "name_ru_RU": "Эмблема медитации бездушного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temibile", "name_pt_PT": "Emblema da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102822, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103335, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur dramatique", "name_de_DE": "Meditationsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador severo", "name_ru_RU": "Медальон медитации бездушного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Temibile", "name_pt_PT": "Medalhão da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102830, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103308, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur dramatique", "name_de_DE": "Vorherrschaftsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador severo", "name_ru_RU": "Жетон господства бездушного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temibile", "name_pt_PT": "Distintivo de Dominância do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102833, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103314, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur dramatique", "name_de_DE": "Siegesabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador severo", "name_ru_RU": "Жетон победы бездушного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temibile", "name_pt_PT": "Distintivo de Vitória do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102840, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103150, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur dramatique", "name_de_DE": "Eroberungsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador severo", "name_ru_RU": "Знак завоевания бездушного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temibile", "name_pt_PT": "Insígnia de Conquista do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102856, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103145, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur dramatique", "name_de_DE": "Eroberungsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador severo", "name_ru_RU": "Жетон завоевания бездушного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temibile", "name_pt_PT": "Distintivo de Conquista do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102869, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103333, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador severo", "name_ru_RU": "Медальон упорства бездушного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Temibile", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102877, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103210, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador severo", "name_ru_RU": "Эмблема жестокости бездушного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Emblema da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102896, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103319, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur dramatique", "name_de_DE": "Siegesinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador severo", "name_ru_RU": "Знак победы бездушного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temibile", "name_pt_PT": "Insígnia de Vitória do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102903, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103211, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador severo", "name_ru_RU": "Эмблема упорства бездушного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temibile", "name_pt_PT": "Emblema da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102935, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103334, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador severo", "name_ru_RU": "Медальон жестокости бездушного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Medalhão da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102963, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103309, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur dramatique", "name_de_DE": "Vorherrschaftsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador severo", "name_ru_RU": "Знак господства бездушного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temibile", "name_pt_PT": "Insígnia de Dominância do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103145, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102856, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur dramatique", "name_de_DE": "Eroberungsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador severo", "name_ru_RU": "Жетон завоевания бездушного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temibile", "name_pt_PT": "Distintivo de Conquista do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103150, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102840, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur dramatique", "name_de_DE": "Eroberungsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador severo", "name_ru_RU": "Знак завоевания бездушного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temibile", "name_pt_PT": "Insígnia de Conquista do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103210, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102877, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador severo", "name_ru_RU": "Эмблема жестокости бездушного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Emblema da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103211, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102903, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador severo", "name_ru_RU": "Эмблема упорства бездушного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temibile", "name_pt_PT": "Emblema da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103212, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102813, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur dramatique", "name_de_DE": "Meditationsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador severo", "name_ru_RU": "Эмблема медитации бездушного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temibile", "name_pt_PT": "Emblema da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103308, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102830, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur dramatique", "name_de_DE": "Vorherrschaftsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador severo", "name_ru_RU": "Жетон господства бездушного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temibile", "name_pt_PT": "Distintivo de Dominância do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103309, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102963, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur dramatique", "name_de_DE": "Vorherrschaftsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador severo", "name_ru_RU": "Знак господства бездушного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temibile", "name_pt_PT": "Insígnia de Dominância do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103314, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102833, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur dramatique", "name_de_DE": "Siegesabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador severo", "name_ru_RU": "Жетон победы бездушного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temibile", "name_pt_PT": "Distintivo de Vitória do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103319, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102896, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur dramatique", "name_de_DE": "Siegesinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador severo", "name_ru_RU": "Знак победы бездушного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temibile", "name_pt_PT": "Insígnia de Vitória do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103333, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102869, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador severo", "name_ru_RU": "Медальон упорства бездушного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Temibile", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103334, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102935, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador severo", "name_ru_RU": "Медальон жестокости бездушного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Medalhão da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103335, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102822, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur dramatique", "name_de_DE": "Meditationsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador severo", "name_ru_RU": "Медальон медитации бездушного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Temibile", "name_pt_PT": "Medalhão da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103342, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102659, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Conquest", "name_ko_KR": "자부심 가득한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur orgueilleux", "name_de_DE": "Eroberungsabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador orgulloso", "name_ru_RU": "Жетон завоевания гордого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Conquista do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103347, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102643, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Conquest", "name_ko_KR": "자부심 가득한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur orgueilleux", "name_de_DE": "Eroberungsinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador orgulloso", "name_ru_RU": "Знак завоевания гордого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Conquista do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103407, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102680, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Cruelty", "name_ko_KR": "자부심 가득한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur orgueilleux", "name_de_DE": "Grausamkeitsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador orgulloso", "name_ru_RU": "Эмблема жестокости гордого гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103408, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102706, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Tenacity", "name_ko_KR": "자부심 가득한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur orgueilleux", "name_de_DE": "Hartnäckigkeitsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador orgulloso", "name_ru_RU": "Эмблема упорства гордого гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103409, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102616, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Meditation", "name_ko_KR": "자부심 가득한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur orgueilleux", "name_de_DE": "Meditationsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador orgulloso", "name_ru_RU": "Эмблема медитации гордого гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Meditação do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103505, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102633, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Dominance", "name_ko_KR": "자부심 가득한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur orgueilleux", "name_de_DE": "Vorherrschaftsabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador orgulloso", "name_ru_RU": "Жетон господства гордого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Dominância do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103506, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102766, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Dominance", "name_ko_KR": "자부심 가득한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur orgueilleux", "name_de_DE": "Vorherrschaftsinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador orgulloso", "name_ru_RU": "Знак господства гордого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Dominância do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103511, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102636, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Victory", "name_ko_KR": "자부심 가득한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur orgueilleux", "name_de_DE": "Siegesabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador orgulloso", "name_ru_RU": "Жетон победы гордого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Vitória do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103516, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102699, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Victory", "name_ko_KR": "자부심 가득한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur orgueilleux", "name_de_DE": "Siegesinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador orgulloso", "name_ru_RU": "Знак победы гордого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Vitória do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103530, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102672, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Tenacity", "name_ko_KR": "자부심 가득한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur orgueilleux", "name_de_DE": "Hartnäckigkeitsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador orgulloso", "name_ru_RU": "Медальон упорства гордого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103531, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102738, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Cruelty", "name_ko_KR": "자부심 가득한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur orgueilleux", "name_de_DE": "Grausamkeitsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador orgulloso", "name_ru_RU": "Медальон жестокости гордого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Crueldade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103532, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102625, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Meditation", "name_ko_KR": "자부심 가득한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur orgueilleux", "name_de_DE": "Meditationsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador orgulloso", "name_ru_RU": "Медальон медитации гордого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Meditação do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103639, "race_mask": 18446744073709551615, "desc": "An unusual substance only found in the great pyres of the Ordon.", "pad2": "", "pad1": "", "pad0": "", "name": "Pouch of White Ash", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9866999983787537, "flags_1": 67670016, "flags_2": 90112, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Pouch of White Ash", "name_ko_KR": "하얀 재 주머니", "name_fr_FR": "Bourse de cendres blanches", "name_de_DE": "Beutel mit weißer Asche", "name_zh_CN": "一袋白灰", "name_es_ES": "Faltriquera de ceniza blanca", "name_ru_RU": "Мешочек белого пепла", "name_it_IT": "Sacchettino di Cenere Bianca", "name_pt_PT": "Bolsa de Cinzas Brancas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103678, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time-Lost Artifact", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.982699990272522, "flags_1": 37056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1492, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Time-Lost Artifact", "name_ko_KR": "잃어버린 시간의 유물", "name_fr_FR": "Artéfact perdu dans le temps", "name_de_DE": "Zeitverlorenes Artefakt", "name_zh_CN": "迷时神器", "name_es_ES": "Artefacto perdido en el tiempo", "name_ru_RU": "Затерянный во времени артефакт", "name_it_IT": "Manufatto Senza Tempo", "name_pt_PT": "Artefato Perdido no Tempo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103686, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Discipline of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 295, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Discipline of Xuen", "name_ko_KR": "쉬엔의 수양", "name_fr_FR": "Discipline de Xuen", "name_de_DE": "Xuens Disziplin", "name_zh_CN": "雪怒之律", "name_es_ES": "Disciplina de Xuen", "name_ru_RU": "Выдержка Сюэня", "name_it_IT": "Disciplina di Xuen", "name_pt_PT": "Disciplina de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103687, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Yu'lon's Bite", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 296, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Yu'lon's Bite", "name_ko_KR": "위론의 이빨", "name_fr_FR": "Morsure de Yu'lon", "name_de_DE": "Yu'lons Biss", "name_zh_CN": "玉珑之噬", "name_es_ES": "Mordisco de Yu'lon", "name_ru_RU": "Укус Юй-лун", "name_it_IT": "Morso di Yu'lon", "name_pt_PT": "Mordida de Yulon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103688, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Contemplation of Chi-Ji", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 297, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Contemplation of Chi-Ji", "name_ko_KR": "츠지의 사색", "name_fr_FR": "Contemplation de Chi Ji", "name_de_DE": "Chi-Jis Nachsinnen", "name_zh_CN": "赤精之祈", "name_es_ES": "Reflexión de Chi-Ji", "name_ru_RU": "Размышления Чи-Цзи", "name_it_IT": "Contemplazione di Chi-Ji", "name_pt_PT": "Contemplação de Chi-Ji", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alacrity of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 298, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Alacrity of Xuen", "name_ko_KR": "쉬엔의 날렵함", "name_fr_FR": "Empressement de Xuen", "name_de_DE": "Xuens Tatkraft", "name_zh_CN": "雪怒之捷", "name_es_ES": "Prontitud de Xuen", "name_ru_RU": "Проворство Сюэня", "name_it_IT": "Alacrità di Xuen", "name_pt_PT": "Diligência de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103690, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resolve of Niuzao", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 299, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Resolve of Niuzao", "name_ko_KR": "니우짜오의 결의", "name_fr_FR": "Résolution de Niuzao", "name_de_DE": "Niuzaos Entschlossenheit", "name_zh_CN": "砮皂之毅", "name_es_ES": "Resolución de Niuzao", "name_ru_RU": "Решимость Нюцзао", "name_it_IT": "Risolutezza di Niuzao", "name_pt_PT": "Resolução de Niuzao", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103986, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Discipline of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 295, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11080, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Discipline of Xuen", "name_ko_KR": "쉬엔의 수양", "name_fr_FR": "Discipline de Xuen", "name_de_DE": "Xuens Disziplin", "name_zh_CN": "雪怒之律", "name_es_ES": "Disciplina de Xuen", "name_ru_RU": "Выдержка Сюэня", "name_it_IT": "Disciplina di Xuen", "name_pt_PT": "Disciplina de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103987, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Yu'lon's Bite", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 296, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11080, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Yu'lon's Bite", "name_ko_KR": "위론의 이빨", "name_fr_FR": "Morsure de Yu'lon", "name_de_DE": "Yu'lons Biss", "name_zh_CN": "玉珑之噬", "name_es_ES": "Mordisco de Yu'lon", "name_ru_RU": "Укус Юй-лун", "name_it_IT": "Morso di Yu'lon", "name_pt_PT": "Mordida de Yulon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103988, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Contemplation of Chi-Ji", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 297, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11080, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Contemplation of Chi-Ji", "name_ko_KR": "츠지의 사색", "name_fr_FR": "Contemplation de Chi Ji", "name_de_DE": "Chi-Jis Nachsinnen", "name_zh_CN": "赤精之祈", "name_es_ES": "Reflexión de Chi-Ji", "name_ru_RU": "Размышления Чи-Цзи", "name_it_IT": "Contemplazione di Chi-Ji", "name_pt_PT": "Contemplação de Chi-Ji", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103989, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alacrity of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 298, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11080, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Alacrity of Xuen", "name_ko_KR": "쉬엔의 날렵함", "name_fr_FR": "Empressement de Xuen", "name_de_DE": "Xuens Tatkraft", "name_zh_CN": "雪怒之捷", "name_es_ES": "Prontitud de Xuen", "name_ru_RU": "Проворство Сюэня", "name_it_IT": "Alacrità di Xuen", "name_pt_PT": "Diligência de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103990, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resolve of Niuzao", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 299, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11080, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Resolve of Niuzao", "name_ko_KR": "니우짜오의 결의", "name_fr_FR": "Résolution de Niuzao", "name_de_DE": "Niuzaos Entschlossenheit", "name_zh_CN": "砮皂之毅", "name_es_ES": "Resolución de Niuzao", "name_ru_RU": "Решимость Нюцзао", "name_it_IT": "Risolutezza di Niuzao", "name_pt_PT": "Resolução de Niuzao", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104298, "race_mask": 18446744073709551615, "desc": "The Ordon ring these chimes before a sacrifice is made to Ordos.", "pad2": "", "pad1": "", "pad0": "", "name": "Ordon Death Chime", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904999732971191, "flags_1": 67665920, "flags_2": 90112, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ordon Death Chime", "name_ko_KR": "오르도 죽음 풍경", "name_fr_FR": "Carillon de la mort d'Ordos", "name_de_DE": "Totenglocke von Ordos", "name_zh_CN": "斡耳朵死亡之钟", "name_es_ES": "Campanilla de muerte Ordon", "name_ru_RU": "Ордосский смертный колокол", "name_it_IT": "Campana della Morte degli Ordon", "name_pt_PT": "Campainha da Morte de Ordon", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104313, "race_mask": 18446744073709551615, "desc": "The moss is flecked with gold and other precious minerals that have slowly built up over thousands of years in the damp caverns.", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Moss", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 32768, "flags_2": 24640, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Golden Moss", "name_ko_KR": "황금 이끼", "name_fr_FR": "Mousse dorée", "name_de_DE": "Goldenes Moos", "name_zh_CN": "金苔藓", "name_es_ES": "Musgo de oro", "name_ru_RU": "Золотой мох", "name_it_IT": "Muschio Dorato", "name_pt_PT": "Musgo Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104321, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Captain Zvezdan's Lost Leg", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0013999938964844, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Captain Zvezdan's Lost Leg", "name_ko_KR": "선장 즈베즈단의 잃어버린 다리", "name_fr_FR": "Jambe perdue du capitaine Zvezdan", "name_de_DE": "Kapitän Zvezdans verlorenes Bein", "name_zh_CN": "扎维兹坦船长遗失的小腿", "name_es_ES": "Pierna perdida del capitán Zvezdan", "name_ru_RU": "Утраченная нога капитана Звездана", "name_it_IT": "Gamba Perduta del Capitano Zvezdan", "name_pt_PT": "Perna Perdida do Capitão Zvezdan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104426, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104442, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104476, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104478, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104495, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104518, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104544, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104553, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104584, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104611, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104613, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104616, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104636, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104649, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104652, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104924, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104940, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104961, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104974, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104976, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104993, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105029, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105051, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105070, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105074, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105082, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105109, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105111, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105114, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105134, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105147, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105173, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105189, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105210, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105223, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105225, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105242, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105265, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105278, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105291, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105323, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105331, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105358, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105360, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105363, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105366, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105383, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105396, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105399, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105422, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105438, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105459, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105472, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105474, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105491, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105540, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105549, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105568, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105607, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105609, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105612, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105615, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105632, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105648, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 106899, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Veteran's Keepsake", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 49481, "buy_price": 247406, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9977999925613403, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Frostwolf Veteran's Keepsake", "name_ko_KR": "서리늑대 정예 용사의 유품", "name_fr_FR": "Souvenir du vétéran loup-de-givre", "name_de_DE": "Andenken eines Frostwolfveteranen", "name_zh_CN": "霜狼老兵的纪念品", "name_es_ES": "Recuerdo de veterano Lobo Gélido", "name_ru_RU": "Памятная вещица ветерана из клана Северного Волка", "name_it_IT": "Pegno del Veterano dei Lupi Bianchi", "name_pt_PT": "Lembrança do Lobo do Gelo Veterano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 107195, "race_mask": 18446744073709551615, "desc": "Warms your pocket. Burns your foes.", "pad2": "", "pad1": "", "pad0": "", "name": "Firefury Spirit", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 48945, "buy_price": 244728, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9869999885559082, "flags_1": 67633152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Firefury Spirit", "name_ko_KR": "화염격노 영혼", "name_fr_FR": "Esprit fureur-de-feu", "name_de_DE": "Feuerzorngeist", "name_zh_CN": "炎怒之灵", "name_es_ES": "Espíritu de furia ígnea", "name_ru_RU": "Дух Огненной Ярости", "name_it_IT": "Spirito di Fuocofuria", "name_pt_PT": "Espírito Furiachama", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 108902, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Armored Elekk Tusk", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574999809265137, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Armored Elekk Tusk", "name_ko_KR": "장갑 엘레크 엄니", "name_fr_FR": "Défense d'elekk cuirassé", "name_de_DE": "Gepanzerter Elekkstoßzahn", "name_zh_CN": "装甲雷象獠牙", "name_es_ES": "Colmillo de elekk acorazado", "name_ru_RU": "Бронированный бивень элекка", "name_it_IT": "Zanna di Elekk Corazzata", "name_pt_PT": "Presa de Elekk Blindado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 108903, "race_mask": 18446744073709551615, "desc": "A miniaturized version of an Iron Star, presented as tribute to the Shadowmoon Orc Clan.", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Iron Star", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 134955, "buy_price": 539821, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9611999988555908, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Tiny Iron Star", "name_ko_KR": "초소형 강철의 별", "name_fr_FR": "Minuscule étoile de Fer", "name_de_DE": "Winziger eiserner Stern", "name_zh_CN": "微型钢铁之星", "name_es_ES": "Pequeña estrella de hierro", "name_ru_RU": "Маленькая железная звезда", "name_it_IT": "Pirostella in Miniatura", "name_pt_PT": "Estrelinha de Ferro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 108907, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mushroom of Destiny", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 48395, "buy_price": 241976, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9758999943733215, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mushroom of Destiny", "name_ko_KR": "운명의 버섯", "name_fr_FR": "Champignon du destin", "name_de_DE": "Pilz der Verheißung", "name_zh_CN": "命运魔菇", "name_es_ES": "Champiñón del destino", "name_ru_RU": "Гриб судьбы", "name_it_IT": "Fungo del Destino", "name_pt_PT": "Cogumelo do Destino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 109262, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Draenic Philosopher's Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4459, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85105, "buy_price": 425528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9610000252723694, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2480, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Draenic Philosopher's Stone", "name_ko_KR": "드레나이 현자의 돌", "name_fr_FR": "Pierre philosophale draenique", "name_de_DE": "Draenischer Stein der Weisen", "name_zh_CN": "德拉诺点金石", "name_es_ES": "Piedra filosofal draénica", "name_ru_RU": "Дренорский философский камень", "name_it_IT": "Pietra Filosofale Draenoriana", "name_pt_PT": "Pedra Filosofal Draenoriana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 109995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood Seal of Azzakel", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35827, "buy_price": 179136, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9873999953269958, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Blood Seal of Azzakel", "name_ko_KR": "아자켈의 피의 인장", "name_fr_FR": "Sceau de sang d'Azzakel", "name_de_DE": "Azzakels Blutsiegel", "name_zh_CN": "阿扎凯尔的鲜血之印", "name_es_ES": "Sello de sangre de Azzakel", "name_ru_RU": "Кровавая печать Аззакеля", "name_it_IT": "Sigillo Insanguinato di Azzakel", "name_pt_PT": "Selo de Sangue de Azzakel", "on_use": false, "id_encounter": 1216, "id_journal_instance": 547, "id_map": 1182, "instance_type": 1}, {"id": 109996, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thundertower's Targeting Reticle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37590, "buy_price": 187953, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0360000133514404, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Thundertower's Targeting Reticle", "name_ko_KR": "썬더타워의 조준경", "name_fr_FR": "Réticule de visée de Tour-de-Tonnerre", "name_de_DE": "Donnerturms Fadenkreuz", "name_zh_CN": "雷塔的准心", "name_es_ES": "Retícula de objetivo de Torre del Trueno", "name_ru_RU": "Прицел Громовой Горы", "name_it_IT": "Reticolo di Puntamento di Torretonante", "name_pt_PT": "Retículo de Mira de Grantrovão", "on_use": false, "id_encounter": 1163, "id_journal_instance": 536, "id_map": 1208, "instance_type": 1}, {"id": 109997, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kihra's Adrenaline Injector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5213, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35021, "buy_price": 175108, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kihra's Adrenaline Injector", "name_ko_KR": "키라의 아드레날린 주입기", "name_fr_FR": "Injecteur d'adrénaline de Kihra", "name_de_DE": "Kihras Adrenalinspritze", "name_zh_CN": "琪拉的激素注射器", "name_es_ES": "Inyector de adrenalina de Kihra", "name_ru_RU": "Впрыскиватель адреналина Киры", "name_it_IT": "Iniettore d'Adrenalina di Kihra", "name_pt_PT": "Injetor de Adrenalina de Kihra", "on_use": true, "id_encounter": 1237, "id_journal_instance": 558, "id_map": 1195, "instance_type": 1}, {"id": 109998, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gor'ashan's Lodestone Spike", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35703, "buy_price": 178519, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Gor'ashan's Lodestone Spike", "name_ko_KR": "고라샨의 자철석 쐐기", "name_fr_FR": "Pointe en magnétite de Gor'ashan", "name_de_DE": "Gor'ashans Leitsteinsplitter", "name_zh_CN": "高尔山的磁石针", "name_es_ES": "Púa de magnetita de Gor'ashan", "name_ru_RU": "Железняковый шип Гор'ашана", "name_it_IT": "Spuntone di Magnetite di Gor'ashan", "name_pt_PT": "Espeto de Magnetita de Gor'ashan", "on_use": true, "id_encounter": 1226, "id_journal_instance": 559, "id_map": 1358, "instance_type": 1}, {"id": 109999, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Witherbark's Branch", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 839, "buy_price": 4197, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Witherbark's Branch", "name_ko_KR": "마른껍질의 가지", "name_fr_FR": "Branche de Fanécorce", "name_de_DE": "Bleichborkes Ast", "name_zh_CN": "枯木的树枝", "name_es_ES": "Rama de Cortezamustia", "name_ru_RU": "Ветвь Сухокожего", "name_it_IT": "Ramo di Scorzasecca", "name_pt_PT": "Ramo de Cascasseca", "on_use": true, "id_encounter": 1214, "id_journal_instance": 556, "id_map": 1279, "instance_type": 1}, {"id": 110000, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crushto's Runic Alarm", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 839, "buy_price": 4196, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.032099962234497, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Crushto's Runic Alarm", "name_ko_KR": "크러쉬토의 룬 경보기", "name_fr_FR": "Alarme runique de Crushto", "name_de_DE": "Crushtos Runenalarm", "name_zh_CN": "库鲁斯托的符文报警器", "name_es_ES": "Alarma rúnica de Crushto", "name_ru_RU": "Руна тревоги Крушто", "name_it_IT": "Allarme Runico di Schiant", "name_pt_PT": "Alarme Rúnico de Smagg", "on_use": false, "id_encounter": 888, "id_journal_instance": 385, "id_map": 1175, "instance_type": 1}, {"id": 110001, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tovra's Lightning Repository", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35424, "buy_price": 177122, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9763000011444092, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Tovra's Lightning Repository", "name_ko_KR": "토브라의 번개 축전기", "name_fr_FR": "Réceptacle à foudre de Tovra", "name_de_DE": "Tovras Blitzspeicher", "name_zh_CN": "托瓦拉的电容器", "name_es_ES": "Repositorio de rayos de Tovra", "name_ru_RU": "Накопитель молний Товры", "name_it_IT": "Vestibolo Fulminante di Tovra", "name_pt_PT": "Repositório de Raios de Tovra", "on_use": false, "id_encounter": 1133, "id_journal_instance": 536, "id_map": 1208, "instance_type": 1}, {"id": 110002, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fleshrender's Meathook", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5213, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 36244, "buy_price": 181222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fleshrender's Meathook", "name_ko_KR": "살점분리자의 고기 갈고리", "name_fr_FR": "Croc de boucher du tranchechair", "name_de_DE": "Fleischhaken des Fleischfetzers", "name_zh_CN": "血肉撕裂者的肉钩", "name_es_ES": "Gancho del sacrificador", "name_ru_RU": "Мясной крюк Раздирателя Плоти", "name_it_IT": "Gancio da Macellaio di Tranciacarne", "name_pt_PT": "Gancho do Rasga-carne", "on_use": true, "id_encounter": 1235, "id_journal_instance": 558, "id_map": 1195, "instance_type": 1}, {"id": 110003, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ragewing's Firefang", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 830, "buy_price": 4151, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0210000276565552, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ragewing's Firefang", "name_ko_KR": "격노날개의 불꽃송곳니", "name_fr_FR": "Croc de feu de Ragevolée", "name_de_DE": "Zornschwinges Flammenzahn", "name_zh_CN": "怒翼的火焰之牙", "name_es_ES": "Colmillo de fuego de Alaíra", "name_ru_RU": "Огнеклык Ярокрыла", "name_it_IT": "Zanna Infuocata di Alafolle", "name_pt_PT": "Garra de Fogo de Asafúria", "on_use": true, "id_encounter": 1229, "id_journal_instance": 559, "id_map": 1358, "instance_type": 1}, {"id": 110004, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coagulated Genesaur Blood", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 775, "buy_price": 3879, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Coagulated Genesaur Blood", "name_ko_KR": "응고된 제네사우루스 피", "name_fr_FR": "Sang de génésaure coagulé", "name_de_DE": "Geronnenes Genesaurierblut", "name_zh_CN": "凝固的原祖荆兽血", "name_es_ES": "Sangre de genosaurio coagulada", "name_ru_RU": "Свернувшаяся кровь генезотавра", "name_it_IT": "Sangue di Genesauro Coagulato", "name_pt_PT": "Sangue Coagulado de Genessauro", "on_use": false, "id_encounter": 1210, "id_journal_instance": 556, "id_map": 1279, "instance_type": 1}, {"id": 110005, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crystalline Blood Drop", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37986, "buy_price": 189930, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0469000339508057, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Crystalline Blood Drop", "name_ko_KR": "핏방울 결정", "name_fr_FR": "Goutte de sang cristallin", "name_de_DE": "Kristallisierter Bluttropfen", "name_zh_CN": "晶化血滴", "name_es_ES": "Gota de sangre cristalina", "name_ru_RU": "Кристаллическая капля крови", "name_it_IT": "Goccia di Sangue Cristallino", "name_pt_PT": "Gota Cristalina de Sangue ", "on_use": false, "id_encounter": 1225, "id_journal_instance": 547, "id_map": 1182, "instance_type": 1}, {"id": 110006, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rukhran's Quill", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 36378, "buy_price": 181893, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rukhran's Quill", "name_ko_KR": "루크란의 깃털", "name_fr_FR": "Plume de Rukhran", "name_de_DE": "Rukhrans Feder", "name_zh_CN": "鲁克兰的羽毛", "name_es_ES": "Pluma de Rukhran", "name_ru_RU": "Перо Рухрана", "name_it_IT": "Piuma di Rukhran", "name_pt_PT": "Pena de Rukhran", "on_use": false, "id_encounter": 967, "id_journal_instance": 476, "id_map": 1209, "instance_type": 1}, {"id": 110007, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Voidmender's Shadowgem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 791, "buy_price": 3956, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Voidmender's Shadowgem", "name_ko_KR": "공허치유사의 음영석", "name_fr_FR": "Oeil ténébreux de soigne-vide", "name_de_DE": "Schattenedelstein des Leerenheilers", "name_zh_CN": "虚空篡改者的暗影宝石", "name_es_ES": "Gema de las Sombras de ensalmador de Vacío", "name_ru_RU": "Камень теней исцелителя Бездны", "name_it_IT": "Gemma d'Ombra del Curavuoto", "name_pt_PT": "Tenebrita do Sana-caos", "on_use": true, "id_encounter": 1168, "id_journal_instance": 537, "id_map": 1176, "instance_type": 1}, {"id": 110008, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tharbek's Lucky Pebble", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 36516, "buy_price": 182583, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0063999891281128, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Tharbek's Lucky Pebble", "name_ko_KR": "탈베크의 행운의 조약돌", "name_fr_FR": "Caillou porte-bonheur de Tharbek", "name_de_DE": "Tharbeks Glückskiesel", "name_zh_CN": "萨贝克的幸运石", "name_es_ES": "Guijarro de la suerte de Tharbek", "name_ru_RU": "Счастливый камушек Тарбека", "name_it_IT": "Ciottolo Fortunato di Tharbek", "name_pt_PT": "Seixo da Sorte de Tharbek", "on_use": true, "id_encounter": 1228, "id_journal_instance": 559, "id_map": 1358, "instance_type": 1}, {"id": 110009, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leaf of the Ancient Protectors", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 836, "buy_price": 4180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Leaf of the Ancient Protectors", "name_ko_KR": "고대 수호자의 잎사귀", "name_fr_FR": "Feuille des anciens protecteurs", "name_de_DE": "Blatt des uralten Beschützers", "name_zh_CN": "古树卫士叶片", "name_es_ES": "Hoja de los ancianos protectores", "name_ru_RU": "Лист древних защитников", "name_it_IT": "Foglia dei Protettori Antichi", "name_pt_PT": "Folha dos Protetores Ancestrais", "on_use": true, "id_encounter": 1207, "id_journal_instance": 556, "id_map": 1279, "instance_type": 1}, {"id": 110010, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mote of Corruption", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37187, "buy_price": 185939, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mote of Corruption", "name_ko_KR": "타락의 티끌", "name_fr_FR": "Granule de corruption", "name_de_DE": "Partikel der Verderbnis", "name_zh_CN": "腐蚀微粒", "name_es_ES": "Mota de corrupción", "name_ru_RU": "Частица Скверны", "name_it_IT": "Granulo di Corruzione", "name_pt_PT": "Partícula de Corrupção", "on_use": false, "id_encounter": 1225, "id_journal_instance": 547, "id_map": 1182, "instance_type": 1}, {"id": 110011, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fires of the Sun", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 34749, "buy_price": 173747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fires of the Sun", "name_ko_KR": "태양의 불꽃", "name_fr_FR": "Feux du soleil", "name_de_DE": "Feuer der Sonne", "name_zh_CN": "骄阳烈火", "name_es_ES": "Fuegos del Sol", "name_ru_RU": "Пламя Солнца", "name_it_IT": "Fuochi del Sole", "name_pt_PT": "Chamas do Sol", "on_use": false, "id_encounter": 968, "id_journal_instance": 476, "id_map": 1209, "instance_type": 1}, {"id": 110012, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bonemaw's Big Toe", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 36233, "buy_price": 181168, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9986000061035156, "flags_1": 524288, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Bonemaw's Big Toe", "name_ko_KR": "해골아귀의 커다란 발가락", "name_fr_FR": "Gros orteil d'Ossegueule", "name_de_DE": "Knochenschlunds großer Zeh", "name_zh_CN": "骨喉的大脚趾", "name_es_ES": "Dedo gordo de Quijahueso", "name_ru_RU": "Отросток Костебрюха", "name_it_IT": "Alluce di Fauci d'Ossa", "name_pt_PT": "Dedão de Gorjóssea", "on_use": true, "id_encounter": 1140, "id_journal_instance": 537, "id_map": 1176, "instance_type": 1}, {"id": 110013, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emberscale Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37325, "buy_price": 186628, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0286999940872192, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Emberscale Talisman", "name_ko_KR": "잿불비늘 부적", "name_fr_FR": "Talisman écailles-de-braise", "name_de_DE": "Glutschuppentalisman", "name_zh_CN": "烬鳞护符", "name_es_ES": "Dije Escama de Ascuas", "name_ru_RU": "Талисман из чешуи пепельного дракона", "name_it_IT": "Talismano di Scagliardente", "name_pt_PT": "Talismã Escamabrasa", "on_use": true, "id_encounter": 1234, "id_journal_instance": 559, "id_map": 1358, "instance_type": 1}, {"id": 110014, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spores of Alacrity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 824, "buy_price": 4121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Spores of Alacrity", "name_ko_KR": "날렵함의 포자", "name_fr_FR": "Spores d'empressement", "name_de_DE": "Sporen des Eifers", "name_zh_CN": "轻盈孢子", "name_es_ES": "Esporas de prontitud", "name_ru_RU": "Споры рвения", "name_it_IT": "Spore dell'Alacrità", "name_pt_PT": "Esporos da Vivacidade", "on_use": true, "id_encounter": 1208, "id_journal_instance": 556, "id_map": 1279, "instance_type": 1}, {"id": 110015, "race_mask": 18446744073709551615, "desc": "A weak spirit succumbs, a powerful spirit conquers. Toria conquered.", "pad2": "", "pad1": "", "pad0": "", "name": "Toria's Unseeing Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37452, "buy_price": 187263, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0321999788284302, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Toria's Unseeing Eye", "name_ko_KR": "토리아의 보지 않는 눈", "name_fr_FR": "Oeil aveugle de Toria", "name_de_DE": "Torias blindes Auge", "name_zh_CN": "托利亚的迷茫之眼", "name_es_ES": "Ojo ciego de Toria", "name_ru_RU": "Незрячий глаз Тории", "name_it_IT": "Occhio Cieco di Toria", "name_pt_PT": "Olho Que Não Vê de Tória", "on_use": false, "id_encounter": 887, "id_journal_instance": 385, "id_map": 1175, "instance_type": 1}, {"id": 110016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solar Containment Unit", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37184, "buy_price": 185921, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Solar Containment Unit", "name_ko_KR": "태양 구속 장치", "name_fr_FR": "Unité de confinement solaire", "name_de_DE": "Solareindämmungsgerät", "name_zh_CN": "阳光密封器", "name_es_ES": "Unidad de contención solar", "name_ru_RU": "Устройство сдерживания солнца", "name_it_IT": "Unità di Contenimento Solare", "name_pt_PT": "Unidade de Contenção Solar", "on_use": false, "id_encounter": 966, "id_journal_instance": 476, "id_map": 1209, "instance_type": 1}, {"id": 110017, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enforcer's Stun Grenade", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8665, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35424, "buy_price": 177122, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9763000011444092, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Enforcer's Stun Grenade", "name_ko_KR": "집행자의 섬광 수류탄", "name_fr_FR": "Grenade étourdissante de massacreur", "name_de_DE": "Blendgranate des Vollstreckers", "name_zh_CN": "执行者的眩晕手雷", "name_es_ES": "Granada aturdidora de déspota", "name_ru_RU": "Светошумовая граната головореза", "name_it_IT": "Granata a Stordimento dello Scagnozzo", "name_pt_PT": "Granada do Impositor", "on_use": true, "id_encounter": 1236, "id_journal_instance": 558, "id_map": 1195, "instance_type": 1}, {"id": 110018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kyrak's Vileblood Serum", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 34753, "buy_price": 173765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577999711036682, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kyrak's Vileblood Serum", "name_ko_KR": "카이락의 썩은피 약", "name_fr_FR": "Sérum de vilsang de Kyrak", "name_de_DE": "Kyraks Ekelblutserum", "name_zh_CN": "奇拉克的邪血药水", "name_es_ES": "Suero sangrevil de Kyrak", "name_ru_RU": "Сыворотка гнусной крови Кирака", "name_it_IT": "Siero di Vilsangue di Kyrak", "name_pt_PT": "Soro de Sangue Vil de Kyrak", "on_use": true, "id_encounter": 1227, "id_journal_instance": 559, "id_map": 1358, "instance_type": 1}, {"id": 110019, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Xeri'tac's Unhatched Egg Sac", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 809, "buy_price": 4046, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.995199978351593, "flags_1": 524288, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Xeri'tac's Unhatched Egg Sac", "name_ko_KR": "제리타크의 부화하지 않은 알 주머니", "name_fr_FR": "Cocon d'œufs non éclos de Xeri'tac", "name_de_DE": "Xeri'tacs unausgebrüteter Eiersack", "name_zh_CN": "艾里塔克未孵化的卵囊", "name_es_ES": "Saco de huevos sin abrir de Xeri'tac", "name_ru_RU": "Непроклюнувшиеся яйца Зери'так", "name_it_IT": "Sacco di Uova Non Covate di Xeri'tac", "name_pt_PT": "Bolsa de Ovos Intactos de Xeri'tac", "on_use": false, "id_encounter": 1209, "id_journal_instance": 556, "id_map": 1279, "instance_type": 1}, {"id": 111222, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 116142, "buy_price": 580714, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836000204086304, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115749, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Conquest", "name_ko_KR": "야성적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur primordial", "name_de_DE": "Eroberungsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador primigenio", "name_ru_RU": "Жетон завоевания необузданного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Conquista do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111223, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 116579, "buy_price": 582898, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115750, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Conquest", "name_ko_KR": "야성적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur primordial", "name_de_DE": "Eroberungsinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador primigenio", "name_ru_RU": "Знак завоевания необузданного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Conquista do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111224, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120133, "buy_price": 600669, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0174000263214111, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115751, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Cruelty", "name_ko_KR": "야성적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur primordial", "name_de_DE": "Grausamkeitsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador primigenio", "name_ru_RU": "Эмблема жестокости необузданного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Primordiale", "name_pt_PT": "Emblema da Crueldade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111225, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120570, "buy_price": 602854, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211000442504883, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115752, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Tenacity", "name_ko_KR": "야성적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur primordial", "name_de_DE": "Hartnäckigkeitsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador primigenio", "name_ru_RU": "Эмблема упорства необузданного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Primordiale", "name_pt_PT": "Emblema da Tenacidade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111226, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121007, "buy_price": 605038, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115753, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Meditation", "name_ko_KR": "야성적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur primordial", "name_de_DE": "Meditationsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador primigenio", "name_ru_RU": "Эмблема медитации необузданного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Primordiale", "name_pt_PT": "Emblema da Meditação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111227, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121444, "buy_price": 607223, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.028499960899353, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115754, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Dominance", "name_ko_KR": "야성적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur primordial", "name_de_DE": "Vorherrschaftsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador primigenio", "name_ru_RU": "Жетон господства необузданного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Dominância do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111228, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1119, "buy_price": 5595, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.032099962234497, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115755, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Dominance", "name_ko_KR": "야성적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur primordial", "name_de_DE": "Vorherrschaftsinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador primigenio", "name_ru_RU": "Знак господства необузданного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Dominância do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111229, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 122306, "buy_price": 611533, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0357999801635742, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115756, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Cruelty", "name_ko_KR": "야성적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur primordial", "name_de_DE": "Grausamkeitsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador orgulloso", "name_ru_RU": "Медальон жестокости необузданного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Crueldade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111230, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 122743, "buy_price": 613717, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0394999980926514, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115757, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Tenacity", "name_ko_KR": "야성적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur primordial", "name_de_DE": "Hartnäckigkeitsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador primigenio", "name_ru_RU": "Медальон упорства необузданного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111231, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 123168, "buy_price": 615843, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0430999994277954, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115758, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Meditation", "name_ko_KR": "야성적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur primordial", "name_de_DE": "Meditationsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador primigenio", "name_ru_RU": "Медальон медитации необузданного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Meditação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111232, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 123605, "buy_price": 618027, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0468000173568726, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115759, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Victory", "name_ko_KR": "야성적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur primordial", "name_de_DE": "Siegesabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador primigenio", "name_ru_RU": "Жетон победы необузданного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Vitória do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111233, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 112222, "buy_price": 561113, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9503999948501587, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115760, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Victory", "name_ko_KR": "야성적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur primordial", "name_de_DE": "Siegesinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador primigenio", "name_ru_RU": "Знак победы необузданного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Vitória do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111293, "race_mask": 18446744073709551615, "desc": "A silvery disc of bizarre metals.", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of Talador", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 518435, "buy_price": 2592179, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764999747276306, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 5, "socket_color_2": 5, "socket_color_3": 5, "sheath": 0, "material": 6, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Icon of Talador", "name_ko_KR": "탈라도르의 상징", "name_fr_FR": "Icône de Talador", "name_de_DE": "Ikone von Talador", "name_zh_CN": "塔拉多的模型", "name_es_ES": "Icono de Talador", "name_ru_RU": "Таладорский символ", "name_it_IT": "Icona di Talador", "name_pt_PT": "Ícone de Talador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111305, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Emblem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4, "buy_price": 23, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0470999479293823, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1231, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Emblem", "name_ko_KR": "검투사의 문장", "name_fr_FR": "Emblème de gladiateur", "name_de_DE": "Emblem des Gladiators", "name_zh_CN": "角斗士的纹章", "name_es_ES": "Emblema de Gladiador", "name_ru_RU": "Эмблема гладиатора", "name_it_IT": "Emblema del Gladiatore", "name_pt_PT": "Emblema do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111306, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Medallion", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4, "buy_price": 21, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506999850273132, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1231, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Medallion", "name_ko_KR": "검투사의 메달", "name_fr_FR": "Médaillon de gladiateur", "name_de_DE": "Medaillon des Gladiators", "name_zh_CN": "角斗士的勋章", "name_es_ES": "Medallón de Gladiador", "name_ru_RU": "Медальон гладиатора", "name_it_IT": "Medaglione del Gladiatore", "name_pt_PT": "Medalhão do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111530, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Giantstalker's Guile", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 51742, "buy_price": 258713, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0434000492095947, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Giantstalker's Guile", "name_ko_KR": "거인추적자의 간계", "name_fr_FR": "Fourberie du traqueur de géants", "name_de_DE": "Arglist des Riesenjägers", "name_zh_CN": "巨人追猎者的诡诈", "name_es_ES": "Astucia de acechagigantes", "name_ru_RU": "Коварство истребителя великанов", "name_it_IT": "Ingegno del Predatore di Giganti", "name_pt_PT": "Logro do Espreita-gigantes", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111533, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrosive Tongue of Reeg'ak", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47324, "buy_price": 236620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Corrosive Tongue of Reeg'ak", "name_ko_KR": "리그아크의 부식성 혓바닥", "name_fr_FR": "Langue corrosive de Reeg'ak", "name_de_DE": "Reeg'aks ätzende Zunge", "name_zh_CN": "里戈艾克的腐蚀之舌", "name_es_ES": "Lengua corrosiva de Reeg'ak", "name_ru_RU": "Едкий язык Риг'ак", "name_it_IT": "Lingua Corrosiva di Reeg'ak", "name_pt_PT": "Língua Corrosiva de Reeg'ak", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111546, "race_mask": 18446744073709551615, "desc": "Wait a minute...", "pad2": "", "pad1": "", "pad0": "", "name": "Grondo's Eyepatch", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 51008, "buy_price": 255043, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113163, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Grondo's Eyepatch", "name_ko_KR": "그론도의 안대", "name_fr_FR": "Couvre-œil de Grondo", "name_de_DE": "Grondos Augenklappe", "name_zh_CN": "戈隆多的眼罩", "name_es_ES": "Parche de Grondo", "name_ru_RU": "Глазная повязка Грондо", "name_it_IT": "Benda per Occhio di Grondo", "name_pt_PT": "Tapa-olho de Grondo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111547, "race_mask": 18446744073709551615, "desc": "This appears to be an ordinary rock.", "pad2": "", "pad1": "", "pad0": "", "name": "Grondo's Spare Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 51192, "buy_price": 255961, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0322999954223633, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113159, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Grondo's Spare Eye", "name_ko_KR": "그론도의 여벌 눈", "name_fr_FR": "Œil de rechange de Grondo", "name_de_DE": "Grondos Ersatzauge", "name_zh_CN": "戈隆多的假眼", "name_es_ES": "Ojo de repuesto de Grondo", "name_ru_RU": "Запасной глаз Грондо", "name_it_IT": "Occhio di Riserva di Grondo", "name_pt_PT": "Olho Reserva de Grondo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111548, "race_mask": 18446744073709551615, "desc": "Has a single entry: 'Whatever Grondo Wants'", "pad2": "", "pad1": "", "pad0": "", "name": "Grondo's To-Do List", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 575, "buy_price": 2876, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0358999967575073, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113161, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Grondo's To-Do List", "name_ko_KR": "그론도의 할 일 목록", "name_fr_FR": "Choses que Grondo doit faire", "name_de_DE": "Grondos Aufgabenliste", "name_zh_CN": "戈隆多的计划表", "name_es_ES": "Lista de tareas de Grondo", "name_ru_RU": "Список дел Грондо", "name_it_IT": "Lista di Cose da Fare di Grondo", "name_pt_PT": "Lista de Afazeres de Grondo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111554, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rimefrost Fetish", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47502, "buy_price": 237513, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Rimefrost Fetish", "name_ko_KR": "서리얼음 우상", "name_fr_FR": "Fétiche recouvert de givre", "name_de_DE": "Raureiffetisch", "name_zh_CN": "白霜神像", "name_es_ES": "Fetiche Escarchalado", "name_ru_RU": "Фетиш морозного инея", "name_it_IT": "Feticci di Brina Gelata", "name_pt_PT": "Fetiche da Geada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gruuk's Evil Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47884, "buy_price": 239422, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Gruuk's Evil Eye", "name_ko_KR": "그루크의 악마눈", "name_fr_FR": "Mauvais œil de Gruuk", "name_de_DE": "Gruuks böser Blick", "name_zh_CN": "古鲁克的邪眼", "name_es_ES": "Ojo malvado de Gruuk", "name_ru_RU": "Дурной глаз Груука", "name_it_IT": "Occhio Maligno di Gruuk", "name_pt_PT": "Olho Malévolo de Gruuk", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112317, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Winged Hourglass", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4454, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0286999940872192, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Winged Hourglass", "name_ko_KR": "비행 모래시계", "name_fr_FR": "Sablier ailé", "name_de_DE": "Geflügeltes Stundenglas", "name_zh_CN": "羽翼沙漏", "name_es_ES": "Reloj de arena alado", "name_ru_RU": "Песочные часы с крыльями", "name_it_IT": "Clessidra Alata", "name_pt_PT": "Ampulheta Alada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skull of War", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6515, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0324000120162964, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skull of War", "name_ko_KR": "전쟁의 해골", "name_fr_FR": "Crâne de guerre", "name_de_DE": "Schädel des Krieges", "name_zh_CN": "战争之颅", "name_es_ES": "Cráneo de guerra", "name_ru_RU": "Череп войны", "name_it_IT": "Teschio della Guerra", "name_pt_PT": "Crânio da Guerra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Knight's Badge", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8757, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0361000299453735, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Knight's Badge", "name_ko_KR": "기사의 휘장", "name_fr_FR": "Ecusson de chevalier", "name_de_DE": "Ritterabzeichen", "name_zh_CN": "骑士徽章", "name_es_ES": "Insignia de caballero", "name_ru_RU": "Знак рыцаря", "name_it_IT": "Distintivo del Cavaliere", "name_pt_PT": "Distintivo do Cavaleiro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112320, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sandman's Pouch", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0397000312805176, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sandman's Pouch", "name_ko_KR": "잠귀신의 주머니", "name_fr_FR": "Bourse du marchand de sable", "name_de_DE": "Sandmannsbeutel", "name_zh_CN": "睡魔之袋", "name_es_ES": "Faltriquera de Sueño", "name_ru_RU": "Мешочек Песчаного человека", "name_it_IT": "Sacca dell'Uomo del Sonno", "name_pt_PT": "Bolsa de Morfeu", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112426, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 804, "buy_price": 4020, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": 852, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112476, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72644, "buy_price": 363222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9503999948501587, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": 849, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112503, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76626, "buy_price": 383134, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": 866, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112703, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74952, "buy_price": 374764, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9805999994277954, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": 868, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112729, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 722692, "buy_price": 3613460, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": 864, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112754, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80043, "buy_price": 400217, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0471999645233154, "flags_1": 528384, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": 856, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112768, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 834, "buy_price": 4172, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024999976158142, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": 856, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112778, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73508, "buy_price": 367541, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9617000222206116, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": 850, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112792, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 79462, "buy_price": 397313, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0396000146865845, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": 846, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112815, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795, "buy_price": 3976, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": 846, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112825, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77475, "buy_price": 387376, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": 870, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72965, "buy_price": 364828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545999765396118, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": 851, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112850, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73248, "buy_price": 366242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958299994468689, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": 851, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112877, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75197, "buy_price": 375987, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": 865, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77788, "buy_price": 388943, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017699956893921, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": 865, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112884, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of Kor'gall", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4867, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47452, "buy_price": 237261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9933000206947327, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Might of Kor'gall", "name_ko_KR": "코르갈의 힘", "name_fr_FR": "Puissance de Kor'gall", "name_de_DE": "Macht von Kor'gall", "name_zh_CN": "考戈尔的力量", "name_es_ES": "Poder de Kor'gall", "name_ru_RU": "Мощь Кор'галла", "name_it_IT": "Vigore di Kor'gall", "name_pt_PT": "Poder de Kor'gall", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112885, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Commander Gar's Iron Insignia", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4414, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66064, "buy_price": 330323, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9969000220298767, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Commander Gar's Iron Insignia", "name_ko_KR": "사령관 가르의 강철 계급장", "name_fr_FR": "Insigne de Fer du commandant Gar", "name_de_DE": "Kommandant Gars Eisernes Insigne", "name_zh_CN": "指挥官加尔的铁制玺戒", "name_es_ES": "Insignia de hierro del comandante Gar", "name_ru_RU": "Знак командира Гара", "name_it_IT": "Insegna di Ferro del Comandante Gar", "name_pt_PT": "Insígnia de Ferro do Comandante Gar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112886, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocity of Kor'gall", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4973, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 49946, "buy_price": 249730, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ferocity of Kor'gall", "name_ko_KR": "코르갈의 야성", "name_fr_FR": "Férocité de Kor'gall", "name_de_DE": "Wildheit von Kor'gall", "name_zh_CN": "考戈尔的凶猛", "name_es_ES": "Ferocidad de Kor'gall", "name_ru_RU": "Жестокость Кор'галла", "name_it_IT": "Ferocia di Kor'gall", "name_pt_PT": "Ferocidade de Kor'gall", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112887, "race_mask": 18446744073709551615, "desc": "A collection of loosely strung bones.", "pad2": "", "pad1": "", "pad0": "", "name": "Goc's Trophy", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5045, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69040, "buy_price": 345201, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0418000221252441, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Goc's Trophy", "name_ko_KR": "고크의 전리품", "name_fr_FR": "Trophée de Goc", "name_de_DE": "Gocs Trophäe", "name_zh_CN": "苟克的战利品", "name_es_ES": "Trofeo de Goc", "name_ru_RU": "Трофей Гока", "name_it_IT": "Trofeo di Goc", "name_pt_PT": "Troféu de Goc", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112888, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anger of Kor'gall", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8359, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 514, "buy_price": 2573, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0116000175476074, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Anger of Kor'gall", "name_ko_KR": "코르갈의 분노", "name_fr_FR": "Colère de Kor'gall", "name_de_DE": "Wut von Kor'gall", "name_zh_CN": "考戈尔的愤怒", "name_es_ES": "Inquina de Kor'gall", "name_ru_RU": "Ярость Кор'галла", "name_it_IT": "Rabbia di Kor'gall", "name_pt_PT": "Fúria de Kor'gall", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112889, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Genesaur's Greatness", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 677, "buy_price": 3386, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0080000162124634, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Genesaur's Greatness", "name_ko_KR": "제네사우루스의 위대함", "name_fr_FR": "Grandeur des génésaures", "name_de_DE": "Größe des Genesauriers", "name_zh_CN": "原祖荆兽的伟业", "name_es_ES": "Grandeza de genosaurio", "name_ru_RU": "Величие генезотавра", "name_it_IT": "Grandezza del Genesauro", "name_pt_PT": "Grandiosidade do Genessauro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112913, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76084, "buy_price": 380420, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9954000115394592, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": 853, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112924, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 79172, "buy_price": 395861, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0357999801635742, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": 869, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112938, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 825, "buy_price": 4126, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": 869, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112947, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74379, "buy_price": 371898, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 528384, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": 867, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74654, "buy_price": 373274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9767000079154968, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": 867, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 113023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Foolproof Targeting Mechanism", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536, "buy_price": 2681, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Foolproof Targeting Mechanism", "name_ko_KR": "바보라도 쓸 수 있는 대상 지정 장치", "name_fr_FR": "Système de visée sécurisé", "name_de_DE": "Idiotensicherer Zielmechanismus", "name_zh_CN": "安全校准器", "name_es_ES": "Mecanismo de selección de objetivos a prueba de tontos", "name_ru_RU": "Механизм наведения с предохранителем", "name_it_IT": "Meccanismo di Mira Infallibile", "name_pt_PT": "Mecanismo de Mira Anti-idiota", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113024, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "\"Reliable\" Threat Assessor", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4383, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 54562, "buy_price": 272812, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879999756813049, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "\"Reliable\" Threat Assessor", "name_ko_KR": "\"정확한\" 위협 평가기", "name_fr_FR": "Evaluateur de danger « fiable »", "name_de_DE": "\"Zuverlässiger\" Bedrohungsmesser", "name_zh_CN": "“可靠”威胁评估器", "name_es_ES": "Evaluador de amenaza \"fiable\"", "name_ru_RU": "\"Надежный\" измеритель угрозы", "name_it_IT": "Valutatore di Minaccia \"Affidabile\"", "name_pt_PT": "Avaliador de Ameaças \"Confiável\"", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113025, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "External Combustion Engine", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5844, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 54766, "buy_price": 273833, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9916999936103821, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "External Combustion Engine", "name_ko_KR": "외연 기관", "name_fr_FR": "Moteur thermique externe", "name_de_DE": "Externer Verbrennungsmotor", "name_zh_CN": "外燃机", "name_es_ES": "Motor de combustión externa", "name_ru_RU": "Двигатель внешнего сгорания", "name_it_IT": "Motore a Combustione Esterna", "name_pt_PT": "Motor de Combustão Externa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113158, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dol'mak's Lucky Charm", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 40978, "buy_price": 204891, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991599977016449, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113254, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Dol'mak's Lucky Charm", "name_ko_KR": "돌마크의 행운 깃든 부적", "name_fr_FR": "Porte-bonheur de Dol'mak", "name_de_DE": "Dol'maks Glücksbringer", "name_zh_CN": "多玛克的好运符", "name_es_ES": "Talismán de la suerte de Dol'mak", "name_ru_RU": "Талисман Дол'мак", "name_it_IT": "Amuleto Fortunato di Dol'mak", "name_pt_PT": "Patuá da Sorte de Dol'mak", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113159, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Probiscus of the Swampfly Queen", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 49352, "buy_price": 246762, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.995199978351593, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111547, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Probiscus of the Swampfly Queen", "name_ko_KR": "늪지반딧불이 여왕의 주둥이", "name_fr_FR": "Trompe de la reine mouche des marais", "name_de_DE": "Fühler der Sumpfleuchterkönigin", "name_zh_CN": "沼泽萤光虫女王的喙", "name_es_ES": "Probisco de la Reina Moscapantano", "name_ru_RU": "Хоботок королевы Болотного Роя", "name_it_IT": "Proboscide della Regina delle Mosche", "name_pt_PT": "Tromba da Mosca do Pântano Rainha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113160, "race_mask": 18446744073709551615, "desc": "Crudely etched in to its surface: 'D & K'", "pad2": "", "pad1": "", "pad0": "", "name": "Moonstone Luck Token", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 462, "buy_price": 2311, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113255, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Moonstone Luck Token", "name_ko_KR": "월장석 행운 징표", "name_fr_FR": "Jeton porte-bonheur en pierre de lune", "name_de_DE": "Mondsteinglücksbringer", "name_zh_CN": "月亮石幸运徽记", "name_es_ES": "Muestra de la suerte de piedra lunar", "name_ru_RU": "Талисман из лунного камня", "name_it_IT": "Pegno Fortunato di Pietraluna", "name_pt_PT": "Berloque da Sorte de Pedra-da-lua", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Throbbing Swampfly Venom Sac", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 556, "buy_price": 2783, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111548, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Throbbing Swampfly Venom Sac", "name_ko_KR": "고동치는 늪지반딧불이 독 주머니", "name_fr_FR": "Glande à venin palpitante de mouche des marais", "name_de_DE": "Pulsierender Giftbeutel eines Sumpfleuchters", "name_zh_CN": "脉动的萤光虫毒囊", "name_es_ES": "Glándula de veneno palpitante Moscapantano", "name_ru_RU": "Пульсирующая ядовитая железа Болотного Роя", "name_it_IT": "Sacca di Veleno Pulsante di Mosca", "name_pt_PT": "Saco de Veneno Pulsante de Mosca do Pântano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113162, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kral'za's Resolve", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 41585, "buy_price": 207928, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0062999725341797, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113253, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Kral'za's Resolve", "name_ko_KR": "크랄자의 결의", "name_fr_FR": "Résolution de Kral'za", "name_de_DE": "Kral'zas Entschlossenheit", "name_zh_CN": "卡拉扎的决心", "name_es_ES": "Resolución de Kral'za", "name_ru_RU": "Решимость Крал'за", "name_it_IT": "Risolutezza di Kral'za", "name_pt_PT": "Determinação de Kral'za", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kliaa's Venomclaws", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 50081, "buy_price": 250406, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0098999738693237, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111546, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kliaa's Venomclaws", "name_ko_KR": "클리아의 맹독발톱", "name_fr_FR": "Griffes-venins de Kliaa", "name_de_DE": "Kliaas Gifthaken", "name_zh_CN": "克利亚的毒爪", "name_es_ES": "Garraveneno de Kliaa", "name_ru_RU": "Ядовитые клешни Клайи", "name_it_IT": "Grinfie Velenose di Kliaa", "name_pt_PT": "Garras de Peçonha de Kliaa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113253, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Karg's Hunting Horn", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 41284, "buy_price": 206420, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9990000128746033, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113162, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Karg's Hunting Horn", "name_ko_KR": "카르그의 사냥용 뿔피리", "name_fr_FR": "Cor de chasse de Karg", "name_de_DE": "Kargs Jagdhorn", "name_zh_CN": "卡格的狩猎号角", "name_es_ES": "Cuerno de caza de Karg", "name_ru_RU": "Охотничий рог Карга", "name_it_IT": "Corno da Caccia di Karg", "name_pt_PT": "Trompa de Caça de Karg", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113254, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lokra's Fury", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 463, "buy_price": 2319, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0026999711990356, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113158, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lokra's Fury", "name_ko_KR": "로크라의 분노", "name_fr_FR": "Fureur de Lokra", "name_de_DE": "Lokras Wut", "name_zh_CN": "洛卡拉之怒", "name_es_ES": "Furia de Lokra", "name_ru_RU": "Ярость Локры", "name_it_IT": "Furia di Lokra", "name_pt_PT": "Fúria de Lorka", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113255, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Asha's Fang", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 41589, "buy_price": 207949, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0063999891281128, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113160, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Asha's Fang", "name_ko_KR": "아샤의 송곳니", "name_fr_FR": "Croc d'Asha", "name_de_DE": "Ashas Reißzahn", "name_zh_CN": "阿莎的獠牙", "name_es_ES": "Colmillo de asha", "name_ru_RU": "Клык Аши", "name_it_IT": "Zanna di Asha", "name_pt_PT": "Presa de Asha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113408, "race_mask": 18446744073709551615, "desc": "A collection of metal teeth, each carefully filed to a point.", "pad2": "", "pad1": "", "pad0": "", "name": "Greka's Dentures", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 49892, "buy_price": 249464, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006100058555603, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Greka's Dentures", "name_ko_KR": "그레카의 의치", "name_fr_FR": "Dentier de Greka", "name_de_DE": "Grekas Gebiss", "name_zh_CN": "格瑞卡的假牙", "name_es_ES": "Dentadura postiza de Greka", "name_ru_RU": "Зубной протез Греки", "name_it_IT": "Dentiera di Greka", "name_pt_PT": "Dentadura de Greka", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Legacy of Om'ra", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47339, "buy_price": 236695, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545999765396118, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Legacy of Om'ra", "name_ko_KR": "옴라의 유산", "name_fr_FR": "Héritage d'Om'ra", "name_de_DE": "Erbe von Om'ra", "name_zh_CN": "奥姆拉的遗物", "name_es_ES": "Legado de Om'ra", "name_ru_RU": "Наследие Ом'ры", "name_it_IT": "Eredità di Om'ra", "name_pt_PT": "Legado de Om'ra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113612, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scales of Doom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5735, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 117949, "buy_price": 589747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Scales of Doom", "name_ko_KR": "파멸의 비늘", "name_fr_FR": "Balance du destin", "name_de_DE": "Schuppen der Verdammnis", "name_zh_CN": "毁灭之鳞", "name_es_ES": "Escamas de fatalidad", "name_ru_RU": "Гибельные весы", "name_it_IT": "Scaglie del Destino", "name_pt_PT": "Escamas da Ruína", "on_use": false, "id_encounter": 971, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tectus' Beating Heart", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5735, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114879, "buy_price": 574397, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9728999733924866, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tectus' Beating Heart", "name_ko_KR": "텍터스의 두근대는 심장", "name_fr_FR": "Cœur palpitant de Tectus", "name_de_DE": "Tectus' schlagendes Herz", "name_zh_CN": "泰克图斯的脉动之心", "name_es_ES": "Corazón palpitante de Tectus", "name_ru_RU": "Бьющееся сердце Тектоника", "name_it_IT": "Cuore Pulsante di Tectus", "name_pt_PT": "Coração Pulsante de Tectus", "on_use": false, "id_encounter": 1195, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113650, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pillar of the Earth", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15394, "stat_alloc_2": 3555, "stat_alloc_3": 3555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367467, "buy_price": 1837337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9912999868392944, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Pillar of the Earth", "name_ko_KR": "대지의 기둥", "name_fr_FR": "Pilier de la terre", "name_de_DE": "Säule der Erde", "name_zh_CN": "大地之柱", "name_es_ES": "Pilar de la Tierra", "name_ru_RU": "Столп земли", "name_it_IT": "Pilastro della Terra", "name_pt_PT": "Pilar da Terra", "on_use": false, "id_encounter": 1195, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113658, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottle of Infesting Spores", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6057, "stat_alloc_2": 3555, "stat_alloc_3": 3555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 32, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 388189, "buy_price": 1940946, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0471999645233154, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Bottle of Infesting Spores", "name_ko_KR": "감염성 포자가 든 병", "name_fr_FR": "Bouteille de spores infestantes", "name_de_DE": "Flasche mit befallenden Sporen", "name_zh_CN": "感染孢子瓶", "name_es_ES": "Botella de Esporas infestadoras", "name_ru_RU": "Бутылка с заразными спорами", "name_it_IT": "Bottiglia di Spore Infestanti", "name_pt_PT": "Garrafa de Esporos Infectantes", "on_use": false, "id_encounter": 1196, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113663, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Flesh-Eating Spore", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 14338, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114005, "buy_price": 570028, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Petrified Flesh-Eating Spore", "name_ko_KR": "석화된 육식성 포자", "name_fr_FR": "Spore mangeuse de chair pétrifiée", "name_de_DE": "Versteinerte fleischfressende Spore", "name_zh_CN": "石化食肉孢子", "name_es_ES": "Espora carnívora petrificada", "name_ru_RU": "Окаменевшая плотоядная спора", "name_it_IT": "Spora Mangiacarne Pietrificata", "name_pt_PT": "Esporo Comedor de Carne Petrificado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113834, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pol's Blinded Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6407, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 116213, "buy_price": 581068, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Pol's Blinded Eye", "name_ko_KR": "폴의 멀어버린 눈", "name_fr_FR": "Oeil aveugle de Pol", "name_de_DE": "Pols geblendetes Auge", "name_zh_CN": "普尔的盲目之眼", "name_es_ES": "Ojo ciego de Pol", "name_ru_RU": "Слепой глаз Пола", "name_it_IT": "Occhio Accecato di Poli", "name_pt_PT": "Olho Cego de Pol", "on_use": true, "id_encounter": 1148, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113835, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shards of Nothing", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6078, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1071, "buy_price": 5355, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Shards of Nothing", "name_ko_KR": "허무의 조각", "name_fr_FR": "Éclats de néantise", "name_de_DE": "Splitter des Nichts", "name_zh_CN": "虚无碎片", "name_es_ES": "Fragmentos de la nada", "name_ru_RU": "Осколки Ничего", "name_it_IT": "Schegge del Nulla", "name_pt_PT": "Fragmentos do Nada", "on_use": true, "id_encounter": 1148, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113842, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Caustic Healing", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8009, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 119685, "buy_price": 598426, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Emblem of Caustic Healing", "name_ko_KR": "신랄한 치유의 문장", "name_fr_FR": "Emblème de soins caustiques", "name_de_DE": "Emblem der ätzenden Heilung", "name_zh_CN": "腐蚀治疗徽章", "name_es_ES": "Emblema de sanación cáustica", "name_ru_RU": "Эмблема едкого исцеления", "name_it_IT": "Emblema della Guarigione Corrosiva", "name_pt_PT": "Emblema da Cura Cáustica", "on_use": true, "id_encounter": 1153, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113853, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Captive Micro-Aberration", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6058, "stat_alloc_2": 3555, "stat_alloc_3": 3555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 327539, "buy_price": 1637698, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.980400025844574, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Captive Micro-Aberration", "name_ko_KR": "사로잡힌 초소형 돌연변이", "name_fr_FR": "Micro-aberration captive", "name_de_DE": "Gefangene Mikroentartung", "name_zh_CN": "被捕获的微型畸变怪", "name_es_ES": "Microaberración cautiva", "name_ru_RU": "Пленная мини-аберрация", "name_it_IT": "Micro-Aberrazione Catturata", "name_pt_PT": "Microaberração Aprisionada", "on_use": false, "id_encounter": 1197, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113854, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Rapid Replication", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8009, "stat_alloc_2": 3555, "stat_alloc_3": 3555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 36, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 364798, "buy_price": 1823992, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9840999841690063, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Mark of Rapid Replication", "name_ko_KR": "빠른 복제의 징표", "name_fr_FR": "Marque de réplication rapide", "name_de_DE": "Mal der schnellen Replikation", "name_zh_CN": "迅捷反应徽记", "name_es_ES": "Marca de réplica rauda", "name_ru_RU": "Знак быстрого восстановления", "name_it_IT": "Marchio della Replicazione Rapida", "name_pt_PT": "Marca da Replicação Rápida", "on_use": false, "id_encounter": 1197, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113859, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Quiescent Runestone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6058, "stat_alloc_2": 3555, "stat_alloc_3": 3555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1086, "buy_price": 5434, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Quiescent Runestone", "name_ko_KR": "침묵하는 마법석", "name_fr_FR": "Pierre runique quiescente", "name_de_DE": "Ruhender Runenstein", "name_zh_CN": "沉寂符石", "name_es_ES": "Piedra rúnica inactiva", "name_ru_RU": "Спокойный рунический камень", "name_it_IT": "Pietra Runica Quiescente", "name_pt_PT": "Pedra Rúnica Quiescente", "on_use": false, "id_encounter": 1197, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113861, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evergaze Arcane Eidolon", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7566, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 122365, "buy_price": 611828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362999439239502, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Evergaze Arcane Eidolon", "name_ko_KR": "영원한 시선의 비전 허깨비", "name_fr_FR": "Eidolon arcanique de scrutation éternelle", "name_de_DE": "Arkanes Ewigblickeidolon", "name_zh_CN": "不眠奥术精魂", "name_es_ES": "Eidolon Arcano de mirada eterna", "name_ru_RU": "Волшебный идол вечного бдения", "name_it_IT": "Idolo Arcano dello Sguardo Eterno", "name_pt_PT": "Fantasma Arcano Mireterno", "on_use": false, "id_encounter": 1197, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113889, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elementalist's Shielding Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114005, "buy_price": 570028, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Elementalist's Shielding Talisman", "name_ko_KR": "정령술사의 보호 부적", "name_fr_FR": "Talisman protecteur de l'élémentaliste", "name_de_DE": "Schutztalisman des Elementaristen", "name_zh_CN": "元素师的屏蔽护符", "name_es_ES": "Dije protector de elementalista", "name_ru_RU": "Талисман барьера повелителя стихий", "name_it_IT": "Talismano Protettivo dell'Elementalista", "name_pt_PT": "Talismã Protetor do Elementalista", "on_use": false, "id_encounter": 1154, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113893, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blast Furnace Door", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8378, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 118870, "buy_price": 594352, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006700038909912, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Blast Furnace Door", "name_ko_KR": "격노의 가열로 문", "name_fr_FR": "Porte du haut fourneau", "name_de_DE": "Tür des Schmelzofens", "name_zh_CN": "爆裂熔炉之门", "name_es_ES": "Puerta del Horno de Fundición", "name_ru_RU": "Дверь Горнила", "name_it_IT": "Porta dell'Altoforno", "name_pt_PT": "Porta da Fornalha Explosiva", "on_use": false, "id_encounter": 1154, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113905, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tablet of Turnbuckle Teamwork", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9742, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 112246, "buy_price": 561231, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506000280380249, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tablet of Turnbuckle Teamwork", "name_ko_KR": "강요된 협력의 석판", "name_fr_FR": "Tablette du tendeur tactique", "name_de_DE": "Tafel der abgestimmten Spannschrauben", "name_zh_CN": "无懈合击石板", "name_es_ES": "Tablilla de tensor colaborativo", "name_ru_RU": "Скрижаль крепкого сотрудничества", "name_it_IT": "Tavoletta del Tenditoio", "name_pt_PT": "Placa da Tensão do Trabalho de Equipe", "on_use": true, "id_encounter": 1155, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113931, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beating Heart of the Mountain", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6581, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 117961, "buy_price": 589806, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9990000128746033, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Beating Heart of the Mountain", "name_ko_KR": "고동치는 산의 심장", "name_fr_FR": "Cœur palpitant de la montagne", "name_de_DE": "Schlagendes Herz des Berges", "name_zh_CN": "跳动的山脉之心", "name_es_ES": "Corazón palpitante de la montaña", "name_ru_RU": "Бьющееся сердце горы", "name_it_IT": "Cuore Pulsante della Montagna", "name_pt_PT": "Coração da Montanha Pulsante", "on_use": true, "id_encounter": 1162, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darmac's Unstable Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6284, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1071, "buy_price": 5355, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Darmac's Unstable Talisman", "name_ko_KR": "다르마크의 불안정한 부적", "name_fr_FR": "Talisman instable de Darmac", "name_de_DE": "Darmacs instabiler Talisman", "name_zh_CN": "达玛克的无常护符", "name_es_ES": "Talismán inestable de Darmac", "name_ru_RU": "Нестабильный талисман Дармака", "name_it_IT": "Talismano Instabile di Darmac", "name_pt_PT": "Talismã Instável de Darmac", "on_use": false, "id_encounter": 1122, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Convulsive Shadows", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7435, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 117063, "buy_price": 585319, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9914000034332275, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Convulsive Shadows", "name_ko_KR": "경련의 그림자가 담긴 유리병", "name_fr_FR": "Fiole d'ombres convulsives", "name_de_DE": "Phiole der Schattenkrämpfe", "name_zh_CN": "抽搐暗影之瓶", "name_es_ES": "Vial de Sombras convulsivas", "name_ru_RU": "Фиал с дрожащими тенями", "name_it_IT": "Fiala delle Ombre Agitate", "name_pt_PT": " Frasco das Sombras Convulsas", "on_use": true, "id_encounter": 1203, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113983, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forgemaster's Insignia", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114454, "buy_price": 572271, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692999720573425, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Forgemaster's Insignia", "name_ko_KR": "제련장인의 휘장", "name_fr_FR": "Insigne de maître-forge", "name_de_DE": "Insigne des Schmiedemeisters", "name_zh_CN": "熔炉主管的徽记", "name_es_ES": "Insignia del maestro de forja", "name_ru_RU": "Знак начальника кузни", "name_it_IT": "Fregio del Mastro Forgiatore", "name_pt_PT": "Insígnia do Mestre Forjador", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blackiron Micro Crucible", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1054, "buy_price": 5274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9728999733924866, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Blackiron Micro Crucible", "name_ko_KR": "검은무쇠 소형 도가니", "name_fr_FR": "Micro-creuset en noirfer", "name_de_DE": "Winziger Schwarzeisentiegel", "name_zh_CN": "黑铁微型坩埚", "name_es_ES": "Microcrisol Hierro Negro", "name_ru_RU": "Микрогорнило Черного железа", "name_it_IT": "Crogiolo in Miniatura di Ferro Nero", "name_pt_PT": "Microcrisol de Ferro Negro", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113985, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Humming Blackiron Trigger", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115316, "buy_price": 576581, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Humming Blackiron Trigger", "name_ko_KR": "웅웅거리는 검은무쇠 방아쇠", "name_fr_FR": "Gâchette en noirfer frémissante", "name_de_DE": "Summender Schwarzeisenzünder", "name_zh_CN": "蜂鸣黑铁触发器", "name_es_ES": "Gatillo Hierro Negro zumbante", "name_ru_RU": "Гудящее пусковое устройство Черного железа", "name_it_IT": "Grilletto Ronzante di Ferro Nero", "name_pt_PT": "Gatilho de Ferro Negro Murmurante", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113986, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Auto-Repairing Autoclave", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 13497, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115753, "buy_price": 578766, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9803000092506409, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Auto-Repairing Autoclave", "name_ko_KR": "자동수리 자동절단기", "name_fr_FR": "Autoclave à réparation automatique", "name_de_DE": "Dampfkessel mit automatischer Reparatur", "name_zh_CN": "自动修复灭菌器", "name_es_ES": "Autoclave autorreparadora", "name_ru_RU": "Саморемонтирующийся автоклав", "name_it_IT": "Autoclave Autoriparante", "name_pt_PT": "Autoclave de Conserto Automático", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113987, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battering Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 14916, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 116190, "buy_price": 580950, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Battering Talisman", "name_ko_KR": "분쇄의 부적", "name_fr_FR": "Talisman ravageur", "name_de_DE": "Rammtalisman", "name_zh_CN": "重击护符", "name_es_ES": "Dije de paliza", "name_ru_RU": "Талисман града ударов", "name_it_IT": "Talismano a Percussione", "name_pt_PT": "Talismã do Espancamento", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 114303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Eye of Horror", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 53739, "buy_price": 268697, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Eye of Horror", "name_ko_KR": "공포의 유령 눈", "name_fr_FR": "Oeil spectral de l'horreur", "name_de_DE": "Spektrales Auge des Schreckens", "name_zh_CN": "鬼灵恐惧之眼", "name_es_ES": "Ojo de horror espectral", "name_ru_RU": "Призрачный глаз ужаса", "name_it_IT": "Occhio dell'Orrore Impressionante", "name_pt_PT": "Olho Espectral do Horror", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Ghost of Insight", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 546, "buy_price": 2734, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9767000079154968, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Ghost of Insight", "name_ko_KR": "유령 통찰의 혼령", "name_fr_FR": "Fantôme spectral de clairvoyance", "name_de_DE": "Spektraler Geist der Einsicht", "name_zh_CN": "鬼灵幽魂之眼", "name_es_ES": "Fantasma de introspección espectral", "name_ru_RU": "Призрачный дух озарения", "name_it_IT": "Fantasma della Consapevolezza Impressionante", "name_pt_PT": "Fantasma Espectral da Percepção", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Whisper of Healing", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 54142, "buy_price": 270713, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.980400025844574, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Whisper of Healing", "name_ko_KR": "유령 치유의 귓속말", "name_fr_FR": "Murmures spectraux de soins", "name_de_DE": "Spektrales Flüstern der Heilung", "name_zh_CN": "鬼灵治疗低语", "name_es_ES": "Susurro de sanación espectral", "name_ru_RU": "Призрачный шепот исцеления", "name_it_IT": "Sussurro della Guarigione Impressionante", "name_pt_PT": "Sussurro Espectral da Cura", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Claw of Might", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 54347, "buy_price": 271735, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9840999841690063, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Claw of Might", "name_ko_KR": "유령 힘의 발톱", "name_fr_FR": "Griffe spectrale de puissance", "name_de_DE": "Spektrale Klaue der Macht", "name_zh_CN": "鬼灵力量之爪", "name_es_ES": "Garra de poderío espectral", "name_ru_RU": "Призрачный коготь мощи", "name_it_IT": "Artiglio del Vigore Impressionante", "name_pt_PT": "Garra Espectral do Poder", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Miasma of Fortitude", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 54551, "buy_price": 272756, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Miasma of Fortitude", "name_ko_KR": "유령 인내의 독기", "name_fr_FR": "Miasme spectral de robustesse", "name_de_DE": "Spektrales Miasma der Seelenstärke", "name_zh_CN": "鬼灵坚韧气息", "name_es_ES": "Miasma de entereza espectral", "name_ru_RU": "Призрачные миазмы стойкости", "name_it_IT": "Miasma della Fermezza Impressionante", "name_pt_PT": "Miasma Espectral da Fortitude", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114366, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Tooth of Ferocity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5944, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89462, "buy_price": 447314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Tooth of Ferocity", "name_ko_KR": "고통받는 야성의 이빨", "name_fr_FR": "Dent tourmentée de férocité", "name_de_DE": "Gequälter Zahn der Wildheit", "name_zh_CN": "折磨残暴之牙", "name_es_ES": "Diente de ferocidad atormentado", "name_ru_RU": "Иссеченный зуб свирепости", "name_it_IT": "Dente della Ferocia Avventuroso", "name_pt_PT": "Dente da Ferocidade Atormentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114367, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Emblem of Flame", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5944, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 824, "buy_price": 4122, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0139000415802002, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Emblem of Flame", "name_ko_KR": "고통받는 불의 문장", "name_fr_FR": "Emblème tourmenté de la flamme", "name_de_DE": "Gequältes Emblem der Flamme", "name_zh_CN": "折磨烈焰徽章", "name_es_ES": "Emblema de la llama atormentado", "name_ru_RU": "Иссеченная эмблема пламени", "name_it_IT": "Emblema del Fuoco Avventuroso", "name_pt_PT": "Emblema das Chamas Atormentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114368, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Insignia of Dreams", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5944, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90109, "buy_price": 450546, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0175000429153442, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Insignia of Dreams", "name_ko_KR": "고통받는 꿈의 계급장", "name_fr_FR": "Insigne tourmenté des rêves", "name_de_DE": "Gequältes Insigne der Träume", "name_zh_CN": "折磨梦境徽记", "name_es_ES": "Insignia de sueños atormentada", "name_ru_RU": "Иссеченный знак снов", "name_it_IT": "Insegna dei Sogni Avventurosa", "name_pt_PT": "Insígnia dos Sonhos Atormentada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114369, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Fang of Gore", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5944, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90437, "buy_price": 452185, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Fang of Gore", "name_ko_KR": "고통받는 피의 송곳니", "name_fr_FR": "Croc tourmenté du sang", "name_de_DE": "Gequälter Fangzahn des Blutes", "name_zh_CN": "折磨穿刺之牙", "name_es_ES": "Colmillo sangriento atormentado", "name_ru_RU": "Иссеченный клык крови", "name_it_IT": "Zanna del Massacro Avventurosa", "name_pt_PT": "Presa Evisceradora Atormentada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Seal of Fortitude", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5944, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90764, "buy_price": 453823, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Seal of Fortitude", "name_ko_KR": "고통받는 인내의 인장", "name_fr_FR": "Sceau tourmenté de robustesse", "name_de_DE": "Gequältes Siegel der Seelenstärke", "name_zh_CN": "折磨坚韧印记", "name_es_ES": "Sello de entereza atormentado", "name_ru_RU": "Иссеченная печать стойкости", "name_it_IT": "Sigillo della Fermezza Avventuroso", "name_pt_PT": "Selo da Fortitude Atormentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114427, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Munificent Emblem of Terror", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92101, "buy_price": 460509, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0399999618530273, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Munificent Emblem of Terror", "name_ko_KR": "아낌없이 주는 공포의 문장", "name_fr_FR": "Emblème de terreur munificent", "name_de_DE": "Freigiebiges Emblem des Schreckens", "name_zh_CN": "慷慨恐惧徽章", "name_es_ES": "Emblema de terror munificente", "name_ru_RU": "Щедрая эмблема ужаса", "name_it_IT": "Emblema del Terrore Magnifico", "name_pt_PT": "Emblema do Terror Munificente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114428, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Munificent Orb of Ice", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 848, "buy_price": 4243, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0435999631881714, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Munificent Orb of Ice", "name_ko_KR": "아낌없이 주는 얼음의 보주", "name_fr_FR": "Orbe de glace munificent", "name_de_DE": "Freigiebige Kugel des Eises", "name_zh_CN": "慷慨寒冰宝珠", "name_es_ES": "Orbe de hielo munificente", "name_ru_RU": "Щедрая сфера льда", "name_it_IT": "Globo di Ghiaccio Magnifico", "name_pt_PT": "Orbe de Gelo Munificente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114429, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Munificent Censer of Tranquility", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92748, "buy_price": 463742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0472999811172485, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Munificent Censer of Tranquility", "name_ko_KR": "아낌없이 주는 평온의 향로", "name_fr_FR": "Encensoir de tranquillité munificent", "name_de_DE": "Freigiebiger Rauchbrenner der Ruhe", "name_zh_CN": "慷慨宁静香炉", "name_es_ES": "Incensario de tranquilidad munificente", "name_ru_RU": "Щедрое кадило спокойствия", "name_it_IT": "Incensiere della Tranquillità Magnifico", "name_pt_PT": "Incensório da Tranquilidade Munificente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114430, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Munificent Bonds of Fury", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84211, "buy_price": 421056, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509000182151794, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Munificent Bonds of Fury", "name_ko_KR": "아낌없이 주는 격노의 굴레", "name_fr_FR": "Liens de fureur munificents", "name_de_DE": "Freigiebige Fesseln des Zorns", "name_zh_CN": "慷慨愤怒之骨", "name_es_ES": "Vínculos de furia munificentes", "name_ru_RU": "Щедрые узы ярости", "name_it_IT": "Vincoli della Furia Magnifici", "name_pt_PT": "Elos da Fúria Munificentes", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114431, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Munificent Soul of Compassion", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84538, "buy_price": 422694, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545999765396118, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Munificent Soul of Compassion", "name_ko_KR": "아낌없이 주는 연민의 영혼", "name_fr_FR": "Âme de compassion munificente", "name_de_DE": "Freigiebige Seele des Mitgefühls", "name_zh_CN": "慷慨悲悯之魂", "name_es_ES": "Alma de compasión munificente", "name_ru_RU": "Щедрая душа сострадания", "name_it_IT": "Anima della Compassione Magnifica", "name_pt_PT": "Alma de Compaixão Munificente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114488, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Turbulent Vial of Toxin", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85867, "buy_price": 429336, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696000218391418, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Turbulent Vial of Toxin", "name_ko_KR": "격동의 맹독 약병", "name_fr_FR": "Fiole de toxine turbulente", "name_de_DE": "Turbulente Phiole des Toxins", "name_zh_CN": "动荡剧毒药瓶", "name_es_ES": "Vial de toxinas turbulento", "name_ru_RU": "Штормовой фиал отравы", "name_it_IT": "Fiala di Tossina Tumultuosa", "name_pt_PT": "Frasco de Toxina Turbulento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114489, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Turbulent Focusing Crystal", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 791, "buy_price": 3957, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732999801635742, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Turbulent Focusing Crystal", "name_ko_KR": "격동의 집중 수정", "name_fr_FR": "Cristal de focalisation turbulent", "name_de_DE": "Turbulenter Fokussierkristall", "name_zh_CN": "动荡聚焦水晶", "name_es_ES": "Cristal de enfoque turbulento", "name_ru_RU": "Штормовой кристалл средоточия", "name_it_IT": "Cristallo della Concentrazione Tumultuoso", "name_pt_PT": "Cristal de Concentração Turbulento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Turbulent Relic of Mendacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86522, "buy_price": 432613, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9769999980926514, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Turbulent Relic of Mendacity", "name_ko_KR": "격동의 기만 유물", "name_fr_FR": "Relique de mendiant turbulente", "name_de_DE": "Turbulentes Relikt der Verlogenheit", "name_zh_CN": "动荡虚伪圣物", "name_es_ES": "Reliquia de mendacidad turbulenta", "name_ru_RU": "Штормовая реликвия лицемерия", "name_it_IT": "Reliquia della Mendacità Tumultuosa", "name_pt_PT": "Relíquia da Falsidade Turbulento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114491, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Turbulent Emblem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86850, "buy_price": 434251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807000160217285, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Turbulent Emblem", "name_ko_KR": "격동의 문장", "name_fr_FR": "Emblème turbulent", "name_de_DE": "Turbulentes Emblem", "name_zh_CN": "动荡徽记", "name_es_ES": "Emblema turbulento", "name_ru_RU": "Штормовая эмблема", "name_it_IT": "Emblema Tumultuoso", "name_pt_PT": "Emblema Turbulento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Turbulent Seal of Defiance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87169, "buy_price": 435845, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9843000173568726, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Turbulent Seal of Defiance", "name_ko_KR": "격동의 저항 인장", "name_fr_FR": "Sceau de défi turbulent", "name_de_DE": "Turbulentes Siegel des Trotzes", "name_zh_CN": "动荡反抗印记", "name_es_ES": "Sello de desafío turbulento", "name_ru_RU": "Штормовая печать непокорности", "name_it_IT": "Sigillo della Sfida Tumultuoso", "name_pt_PT": "Selo do Desafio Turbulento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114549, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grandiose Plans", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 355236, "buy_price": 1776180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9728999733924866, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grandiose Plans", "name_ko_KR": "거창한 계획", "name_fr_FR": "Plans grandioses", "name_de_DE": "Grandiose Pläne", "name_zh_CN": "豪华之预判", "name_es_ES": "Planes grandiosos", "name_ru_RU": "Потрясающие планы", "name_it_IT": "Piani Grandiosi", "name_pt_PT": "Instruções Grandiosas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114550, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grandiose Power", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1058, "buy_price": 5294, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grandiose Power", "name_ko_KR": "거창한 힘", "name_fr_FR": "Puissance grandiose", "name_de_DE": "Grandiose Macht", "name_zh_CN": "豪华之能量", "name_es_ES": "Poder grandioso", "name_ru_RU": "Потрясающая мощь", "name_it_IT": "Potenza Grandiosa", "name_pt_PT": "Poder Grandioso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114551, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grandiose Prescience", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367614, "buy_price": 1838070, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068000555038452, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grandiose Prescience", "name_ko_KR": "거창한 예지", "name_fr_FR": "Prescience grandiose", "name_de_DE": "Grandiose Voraussicht", "name_zh_CN": "豪华之先知", "name_es_ES": "Presciencia grandiosa", "name_ru_RU": "Потрясающее предвидение", "name_it_IT": "Prescienza Grandiosa", "name_pt_PT": "Presciência Grandiosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114552, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grandiose Carnage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 368928, "buy_price": 1844642, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104000568389893, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grandiose Carnage", "name_ko_KR": "거창한 학살", "name_fr_FR": "Carnage grandiose", "name_de_DE": "Grandioses Massaker", "name_zh_CN": "豪华之杀戮", "name_es_ES": "Masacre grandiosa", "name_ru_RU": "Потрясающая резня", "name_it_IT": "Massacro Grandioso", "name_pt_PT": "Chacina Grandiosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114553, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grandiose Resistance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 370279, "buy_price": 1851397, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140999555587769, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grandiose Resistance", "name_ko_KR": "거창한 저항", "name_fr_FR": "Résistance grandiose", "name_de_DE": "Grandioser Widerstand", "name_zh_CN": "豪华之抗性", "name_es_ES": "Resistencia grandiosa", "name_ru_RU": "Потрясающее сопротивление", "name_it_IT": "Resistenza Grandiosa", "name_pt_PT": "Resistência Grandiosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114610, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Formidable Jar of Doom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3714, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 118398, "buy_price": 591991, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0026999711990356, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Formidable Jar of Doom", "name_ko_KR": "위협적인 파멸의 단지", "name_fr_FR": "Réceptacle de fatalité formidable", "name_de_DE": "Formidabler Krug der Verdammnis", "name_zh_CN": "威凌毁灭之罐", "name_es_ES": "Tarro de fatalidad formidable", "name_ru_RU": "Грозный кувшин рока", "name_it_IT": "Giara del Destino Formidabile", "name_pt_PT": "Jarro da Ruína Formidável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114611, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Formidable Orb of Putrescence", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3714, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1091, "buy_price": 5455, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0063999891281128, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Formidable Orb of Putrescence", "name_ko_KR": "위협적인 부패의 보주", "name_fr_FR": "Orbe de putrescence formidable", "name_de_DE": "Formidable Kugel der Fäulnis", "name_zh_CN": "威凌腐败宝珠", "name_es_ES": "Orbe de putrescencia formidable", "name_ru_RU": "Грозная сфера гниения", "name_it_IT": "Globo della Putrescenza Formidabile", "name_pt_PT": "Orbe de Putrescência Formidável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114612, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Formidable Censer of Faith", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3714, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 119272, "buy_price": 596360, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.01010000705719, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Formidable Censer of Faith", "name_ko_KR": "위협적인 신념의 향로", "name_fr_FR": "Encensoir de foi formidable", "name_de_DE": "Formidabler Rauchbrenner des Glaubens", "name_zh_CN": "威凌信仰香炉", "name_es_ES": "Incensario de fe formidable", "name_ru_RU": "Грозное кадило веры", "name_it_IT": "Incensiere della Fede Formidabile", "name_pt_PT": "Incensário da Fé Formidável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114613, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Formidable Fang", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3714, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 119697, "buy_price": 598485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013700008392334, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Formidable Fang", "name_ko_KR": "위협적인 송곳니", "name_fr_FR": "Croc formidable", "name_de_DE": "Formidabler Fangzahn", "name_zh_CN": "威凌之牙", "name_es_ES": "Colmillo formidable", "name_ru_RU": "Грозный клык", "name_it_IT": "Zanna Formidabile", "name_pt_PT": "Presa Formidável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114614, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Formidable Relic of Blood", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3714, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120133, "buy_price": 600669, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0174000263214111, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Formidable Relic of Blood", "name_ko_KR": "위협적인 피의 유물", "name_fr_FR": "Relique de sang formidable", "name_de_DE": "Formidables Relikt des Blutes", "name_zh_CN": "威凌鲜血圣物", "name_es_ES": "Reliquia de sangre formidable", "name_ru_RU": "Грозная реликвия крови", "name_it_IT": "Reliquia di Sangue Formidabile", "name_pt_PT": "Relíquia de Sangue Formidável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114886, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Twisted Elemental Focus", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5119, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 71260, "buy_price": 356304, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Twisted Elemental Focus", "name_ko_KR": "뒤틀린 원소의 집중 장치", "name_fr_FR": "Focalisateur élémentaire distordu", "name_de_DE": "Gewundener Elementarfokus", "name_zh_CN": "扭曲的元素焦镜", "name_es_ES": "Enfoque elemental alterado", "name_ru_RU": "Сосредоточение искаженного элементаля", "name_it_IT": "Concentrazione Elementale Corrotta", "name_pt_PT": "Foco do Elemental Distorcido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114887, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Excavated Highmaul Knicknack", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4423, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 61880, "buy_price": 309402, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692999720573425, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Excavated Highmaul Knicknack", "name_ko_KR": "발굴된 높은망치 잡동사니", "name_fr_FR": "Bibelot cognefort déterré", "name_de_DE": "Ausgegrabener Hochfelsschnickschnack", "name_zh_CN": "出土的悬槌玩具", "name_es_ES": "Baratija de la excavación de Ogrópolis", "name_ru_RU": "Выкопанная безделушка Верховного Молота", "name_it_IT": "Affare Sterrato degli Altomaglio", "name_pt_PT": "Correntinha do Malho Imponente Desenterrada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114888, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Excavated Highmaul Thingamabob", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8223, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 615, "buy_price": 3076, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994000196456909, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Excavated Highmaul Thingamabob", "name_ko_KR": "발굴된 높은망치 잡살뱅이", "name_fr_FR": "Trucmuche cognefort déterré", "name_de_DE": "Ausgegrabener Hochfelssoundso", "name_zh_CN": "出土的悬槌饰物", "name_es_ES": "Chisme de la excavación de Ogrópolis", "name_ru_RU": "Выкопанная штуковина Верховного Молота", "name_it_IT": "Arnese Sterrato degli Altomaglio", "name_pt_PT": "Trequinho do Malho Imponente Desenterrado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114889, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kuhlrath's Cursed Totem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5119, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 679, "buy_price": 3398, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003100037574768, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Kuhlrath's Cursed Totem", "name_ko_KR": "쿨라스의 저주 토템", "name_fr_FR": "Totem maudit de Kuhlrath", "name_de_DE": "Kuhlraths verfluchtes Totem", "name_zh_CN": "库拉斯的诅咒图腾", "name_es_ES": "Tótem maldito de Kuhlrath", "name_ru_RU": "Проклятый тотем Кулрата", "name_it_IT": "Totem Maledetto di Kuhlrath", "name_pt_PT": "Totem Amaldiçoado de Kuhlrath", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114890, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Excavated Highmaul Doohickey", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4423, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64274, "buy_price": 321372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068000555038452, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Excavated Highmaul Doohickey", "name_ko_KR": "발굴된 높은망치 거시기", "name_fr_FR": "Bidutruc cognefort déterré", "name_de_DE": "Ausgegrabenes Hochfelsdingsbums", "name_zh_CN": "出土的悬槌饰品", "name_es_ES": "Trasto de la excavación de Ogrópolis", "name_ru_RU": "Выкопанная ерундовина Верховного Молота", "name_it_IT": "Aggeggio Sterrato degli Altomaglio", "name_pt_PT": "Berloque do Malho Imponente Desenterrado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114891, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void-Touched Totem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5119, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74567, "buy_price": 372835, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104000568389893, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Void-Touched Totem", "name_ko_KR": "공허에 물든 토템", "name_fr_FR": "Totem touché par le Vide", "name_de_DE": "Leerenberührtes Totem", "name_zh_CN": "灵媒图腾", "name_es_ES": "Tótem tocado por el Vacío", "name_ru_RU": "Меченный Бездной тотем", "name_it_IT": "Totem Toccato dal Vuoto", "name_pt_PT": "Totem Tocado pelo Caos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114957, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oversized Shadeback Talon", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5102, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 61191, "buy_price": 305955, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585000276565552, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Oversized Shadeback Talon", "name_ko_KR": "지나치게 큰 그늘등 발톱", "name_fr_FR": "Serre d'ombredos géante", "name_de_DE": "Übergroße Schattenrückenklaue", "name_zh_CN": "巨型影背利爪", "name_es_ES": "Garfa Lomosombra descomunal", "name_ru_RU": "Огромный коготь темноспина", "name_it_IT": "Artiglio Smisurato dei Dorsombroso", "name_pt_PT": "Garra de Costanera Supercrescido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114958, "race_mask": 18446744073709551615, "desc": "Courses with a familiar dark power.", "pad2": "", "pad1": "", "pad0": "", "name": "Watch Commander Branson's Lapel", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 53137, "buy_price": 265688, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Watch Commander Branson's Lapel", "name_ko_KR": "경비대 사령관 브란손의 옷깃", "name_fr_FR": "Insigne du commandant de la garde Branson", "name_de_DE": "Wachkommandant Bransons Reversnadel", "name_zh_CN": "执勤官布兰森的翻领", "name_es_ES": "Broche del comandante de vigilancia Branson", "name_ru_RU": "Лацкан командира стражи Брансона", "name_it_IT": "Spilla del Comandante della Guardia Branson", "name_pt_PT": "Lapela do Comandante da Vigia Branson", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114959, "race_mask": 18446744073709551615, "desc": "Even their thorns have thorns!", "pad2": "", "pad1": "", "pad0": "", "name": "Prickly Shadeback Thorn", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4421, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 61657, "buy_price": 308285, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9657999873161316, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Prickly Shadeback Thorn", "name_ko_KR": "가시투성이 그늘등 가시", "name_fr_FR": "Epine d'ombredos piquante", "name_de_DE": "Stachliger Schattenrückendorn", "name_zh_CN": "多刺的影背尖刺", "name_es_ES": "Espina de Lomosombra erizado", "name_ru_RU": "Колючий шип темноспина", "name_it_IT": "Rovo Spinoso dei Dorsombroso", "name_pt_PT": "Espinho Espinhoso Costanera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spires unused", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 53540, "buy_price": 267703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 0, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Spires unused", "name_ko_KR": "Spires unused", "name_fr_FR": "Spires unused", "name_de_DE": "Spires unused", "name_zh_CN": "Spires unused", "name_es_ES": "Spires unused", "name_ru_RU": "Spires unused", "name_it_IT": "Spires unused", "name_pt_PT": "Spires unused", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114961, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thornmother Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8298, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 599, "buy_price": 2996, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Thornmother Eye", "name_ko_KR": "가시어미 눈", "name_fr_FR": "Oeil de la ronce-mère", "name_de_DE": "Dornenmutterauge", "name_zh_CN": "棘母之眼", "name_es_ES": "Ojo de madrespina", "name_ru_RU": "Глаз матери темноспинов", "name_it_IT": "Occhio della Madre Spinosa", "name_pt_PT": "Olho da Mão-espinho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115149, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86859, "buy_price": 434296, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119926, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Conquest", "name_ko_KR": "야성적인 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant primordial", "name_de_DE": "Eroberungsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente primigenio", "name_ru_RU": "Жетон завоевания необузданного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Primordiale", "name_pt_PT": "Distintivo da Conquista do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115150, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87186, "buy_price": 435934, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119927, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Conquest", "name_ko_KR": "야성적인 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant primordial", "name_de_DE": "Eroberungsinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente primigenio", "name_ru_RU": "Знак завоевания необузданного бойца", "name_it_IT": "Fregio della Conquista del Combattente Primordiale", "name_pt_PT": "Insígnia da Conquista do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115151, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87505, "buy_price": 437528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.988099992275238, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119928, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Cruelty", "name_ko_KR": "야성적인 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant primordial", "name_de_DE": "Grausamkeitsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente primigenio", "name_ru_RU": "Эмблема жестокости необузданного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Primordiale", "name_pt_PT": "Emblema da Crueldade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115152, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87833, "buy_price": 439166, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9918000102043152, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119929, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Tenacity", "name_ko_KR": "야성적인 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant primordial", "name_de_DE": "Hartnäckigkeitsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente primigenio", "name_ru_RU": "Эмблема упорства необузданного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Primordiale", "name_pt_PT": "Emblema da Tenacidade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115153, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88161, "buy_price": 440805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955000281333923, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119930, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Meditation", "name_ko_KR": "야성적인 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant primordial", "name_de_DE": "Meditationsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente primigenio", "name_ru_RU": "Эмблема медитации необузданного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Primordiale", "name_pt_PT": "Emblema da Meditação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115154, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88488, "buy_price": 442443, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9991999864578247, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119931, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Dominance", "name_ko_KR": "야성적인 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant primordial", "name_de_DE": "Vorherrschaftsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente primigenio", "name_ru_RU": "Жетон господства необузданного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Primordiale", "name_pt_PT": "Distintivo da Dominância do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115155, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 815, "buy_price": 4077, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0027999877929688, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119932, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Dominance", "name_ko_KR": "야성적인 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant primordial", "name_de_DE": "Vorherrschaftsinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente primigenio", "name_ru_RU": "Знак господства необузданного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Primordiale", "name_pt_PT": "Insígnia da Dominância do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115156, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89135, "buy_price": 445675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006500005722046, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119933, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Cruelty", "name_ko_KR": "야성적인 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant primordial", "name_de_DE": "Grausamkeitsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente orgulloso", "name_ru_RU": "Медальон жестокости необузданного бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Primordiale", "name_pt_PT": "Medalhão da Crueldade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115157, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89462, "buy_price": 447314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119934, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Tenacity", "name_ko_KR": "야성적인 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant primordial", "name_de_DE": "Hartnäckigkeitsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente primigenio", "name_ru_RU": "Медальон упорства необузданного бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Primordiale", "name_pt_PT": "Medalhão da Tenacidade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115158, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89790, "buy_price": 448952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0139000415802002, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119935, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Meditation", "name_ko_KR": "야성적인 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant primordial", "name_de_DE": "Meditationsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente primigenio", "name_ru_RU": "Медальон медитации необузданного бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Primordiale", "name_pt_PT": "Medalhão da Meditação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115159, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90109, "buy_price": 450546, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0175000429153442, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119936, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Victory", "name_ko_KR": "야성적인 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant primordial", "name_de_DE": "Siegesabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente primigenio", "name_ru_RU": "Жетон победы необузданного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Primordiale", "name_pt_PT": "Distintivo da Vitória do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115160, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90437, "buy_price": 452185, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119937, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Victory", "name_ko_KR": "야성적인 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant primordial", "name_de_DE": "Siegesinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente primigenio", "name_ru_RU": "Знак победы необузданного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Primordiale", "name_pt_PT": "Insígnia da Vitória do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115495, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 118846, "buy_price": 594234, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006500005722046, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115496, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Adaptation", "name_ko_KR": "야성적인 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur primordial", "name_de_DE": "Anpassungsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador primigenio", "name_ru_RU": "Жетон адаптации необузданного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Adaptação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115496, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 119283, "buy_price": 596419, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115495, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1682, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Adaptation", "name_ko_KR": "야성적인 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur primordial", "name_de_DE": "Anpassungsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador primigenio", "name_ru_RU": "Жетон адаптации необузданного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Adaptação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115521, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 84556, "buy_price": 422783, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954800009727478, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 120049, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1682, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Adaptation", "name_ko_KR": "야성적인 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant primordial", "name_de_DE": "Anpassungsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente primigenio", "name_ru_RU": "Жетон адаптации необузданного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Primordiale", "name_pt_PT": "Distintivo da Adaptação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115749, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113616, "buy_price": 568080, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111222, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Conquest", "name_ko_KR": "야성적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur primordial", "name_de_DE": "Eroberungsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador primigenio", "name_ru_RU": "Жетон завоевания необузданного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Conquista do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115750, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114041, "buy_price": 570205, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9657999873161316, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111223, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Conquest", "name_ko_KR": "야성적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur primordial", "name_de_DE": "Eroberungsinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador primigenio", "name_ru_RU": "Знак завоевания необузданного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Conquista do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115751, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114477, "buy_price": 572389, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111224, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Cruelty", "name_ko_KR": "야성적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur primordial", "name_de_DE": "Grausamkeitsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador primigenio", "name_ru_RU": "Эмблема жестокости необузданного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Primordiale", "name_pt_PT": "Emblema da Crueldade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115752, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114914, "buy_price": 574574, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111225, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Tenacity", "name_ko_KR": "야성적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur primordial", "name_de_DE": "Hartnäckigkeitsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador primigenio", "name_ru_RU": "Эмблема упорства необузданного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Primordiale", "name_pt_PT": "Emblema da Tenacidade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115753, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115351, "buy_price": 576758, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111226, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Meditation", "name_ko_KR": "야성적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur primordial", "name_de_DE": "Meditationsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador primigenio", "name_ru_RU": "Эмблема медитации необузданного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Primordiale", "name_pt_PT": "Emblema da Meditação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115754, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115776, "buy_price": 578884, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111227, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Dominance", "name_ko_KR": "야성적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur primordial", "name_de_DE": "Vorherrschaftsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador primigenio", "name_ru_RU": "Жетон господства необузданного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Dominância do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115755, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1067, "buy_price": 5335, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111228, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Dominance", "name_ko_KR": "야성적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur primordial", "name_de_DE": "Vorherrschaftsinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador primigenio", "name_ru_RU": "Знак господства необузданного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Dominância do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115756, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 119779, "buy_price": 598898, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0144000053405762, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111229, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Cruelty", "name_ko_KR": "야성적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur primordial", "name_de_DE": "Grausamkeitsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador orgulloso", "name_ru_RU": "Медальон жестокости необузданного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Crueldade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115757, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120204, "buy_price": 601024, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111230, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Tenacity", "name_ko_KR": "야성적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur primordial", "name_de_DE": "Hartnäckigkeitsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador primigenio", "name_ru_RU": "Медальон упорства необузданного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115758, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120641, "buy_price": 603208, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111231, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Meditation", "name_ko_KR": "야성적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur primordial", "name_de_DE": "Meditationsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador primigenio", "name_ru_RU": "Медальон медитации необузданного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Meditação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115759, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121078, "buy_price": 605393, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111232, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Victory", "name_ko_KR": "야성적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur primordial", "name_de_DE": "Siegesabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador primigenio", "name_ru_RU": "Жетон победы необузданного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Vitória do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115760, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121515, "buy_price": 607577, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111233, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Victory", "name_ko_KR": "야성적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur primordial", "name_de_DE": "Siegesinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador primigenio", "name_ru_RU": "Знак победы необузданного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Vitória do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116075, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scales of Gennadian", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65474, "buy_price": 327374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879999756813049, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Scales of Gennadian", "name_ko_KR": "제나디안의 비늘", "name_fr_FR": "Écailles de Gennadien", "name_de_DE": "Schuppen von Gennadian", "name_zh_CN": "加纳迪安鳞片", "name_es_ES": "Escamas de Gennadian", "name_ru_RU": "Чешуя Геннадиана", "name_it_IT": "Scaglie di Gennadian", "name_pt_PT": "Escamas de Gennadian", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116077, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pulsating Brain of No'losh", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 668, "buy_price": 3343, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9952999949455261, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Pulsating Brain of No'losh", "name_ko_KR": "노로쉬의 고동치는 두뇌", "name_fr_FR": "Cerveau palpitant de No'losh", "name_de_DE": "Pulsierendes Gehirn von No'losh", "name_zh_CN": "诺洛什的活跃之脑", "name_es_ES": "Cerebro pulsante de No'losh", "name_ru_RU": "Пульсирующий мозг Но'лоша", "name_it_IT": "Cervello Pulsante di No'losh", "name_pt_PT": "Cérebro Pulsante de No'losh", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116127, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bright Coin", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7222, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65256, "buy_price": 326281, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847000241279602, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Bright Coin", "name_ko_KR": "빛나는 동전", "name_fr_FR": "Pièce brillante", "name_de_DE": "Glänzende Münze", "name_zh_CN": "闪亮硬币", "name_es_ES": "Moneda brillante", "name_ru_RU": "Блестящая монетка", "name_it_IT": "Moneta Lucida", "name_pt_PT": "Moeda Brilhante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116154, "race_mask": 18446744073709551615, "desc": "Property of Barov Industries", "pad2": "", "pad1": "", "pad0": "", "name": "Barov Lumberjack Caller", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9126, "buy_price": 36502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0103000402450562, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Barov Lumberjack Caller", "name_ko_KR": "바로브의 나무꾼 호출종", "name_fr_FR": "Signal des bûcherons Barov", "name_de_DE": "Holzfällerrufer von Barov", "name_zh_CN": "巴罗夫伐木工召唤器", "name_es_ES": "Llamador de leñador Barov", "name_ru_RU": "Колокол дровосеков рода Баровых", "name_it_IT": "Campanella del Taglialegna dei Barov", "name_pt_PT": "Convocador de Lenhador de Barov", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116289, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodmaw's Tooth", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 331076, "buy_price": 1655381, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0440000295639038, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Bloodmaw's Tooth", "name_ko_KR": "붉은아귀의 이빨", "name_fr_FR": "Dent de saignegueule", "name_de_DE": "Blutrachenzahn", "name_zh_CN": "血喉之牙", "name_es_ES": "Diente de los Sangrefauce", "name_ru_RU": "Зуб кровавого хищнореза", "name_it_IT": "Dente di Linguarossa", "name_pt_PT": "Dente de Gorjassangue", "on_use": false, "id_encounter": 1128, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 116290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Gushing Wounds", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1135, "buy_price": 5679, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.047700047492981, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Emblem of Gushing Wounds", "name_ko_KR": "피가 솟는 상처의 문장", "name_fr_FR": "Emblème des blessures hémorragiques", "name_de_DE": "Emblem der klaffenden Wunden", "name_zh_CN": "龟裂创伤徽章", "name_es_ES": "Emblema de Heridas sangrantes", "name_ru_RU": "Эмблема кровоточащей раны", "name_it_IT": "Emblema delle Ferite Zampillanti", "name_pt_PT": "Emblema das Feridas Torrentes", "on_use": false, "id_encounter": 971, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 116291, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Immaculate Living Mushroom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2956, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 112328, "buy_price": 561644, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513000249862671, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Immaculate Living Mushroom", "name_ko_KR": "온전한 살아있는 버섯", "name_fr_FR": "Champignon vivant immaculé", "name_de_DE": "Makelloser lebender Pilz", "name_zh_CN": "完美的活性蘑菇", "name_es_ES": "Champiñón viviente inmaculado", "name_ru_RU": "Безупречный живой гриб", "name_it_IT": "Fungo Vivente Immacolato", "name_pt_PT": "Cogumelo Vivo Imaculado", "on_use": false, "id_encounter": 1196, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 116292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mote of the Mountain", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 112754, "buy_price": 563770, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549000263214111, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Mote of the Mountain", "name_ko_KR": "산의 자갈", "name_fr_FR": "Granule de la montagne", "name_de_DE": "Fragment des Berges", "name_zh_CN": "活体之山微粒", "name_es_ES": "Fragmento de la montaña", "name_ru_RU": "Песчинка горы", "name_it_IT": "Granulo della Montagna", "name_pt_PT": "Grânulo da Montanha", "on_use": false, "id_encounter": 1195, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 116293, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of Suppression", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 303993, "buy_price": 1519969, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585999846458435, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Idol of Suppression", "name_ko_KR": "억제의 우상", "name_fr_FR": "Idole de suppression", "name_de_DE": "Götze der Unterdrückung", "name_zh_CN": "抑制雕像", "name_es_ES": "Ídolo de supresión", "name_ru_RU": "Идол усмирения", "name_it_IT": "Idolo della Soppressione", "name_pt_PT": "Ídolo da Supressão", "on_use": false, "id_encounter": 1153, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 116314, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blackheart Enforcer's Medallion", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2819, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113616, "buy_price": 568080, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Blackheart Enforcer's Medallion", "name_ko_KR": "검은심장 집행자의 메달", "name_fr_FR": "Médaillon de massacreur de Cœur-Noir", "name_de_DE": "Medaillon des Schwarzherzvollstreckers", "name_zh_CN": "黑心执行者勋章", "name_es_ES": "Medallón de déspota de Negrozón", "name_ru_RU": "Медальон головореза Черносерда", "name_it_IT": "Medaglione dello Scagnozzo Roccianera", "name_pt_PT": "Medalhão do Impositor Cordisnero", "on_use": false, "id_encounter": 1203, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 116315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Furyheart Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2819, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1047, "buy_price": 5235, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9657999873161316, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Furyheart Talisman", "name_ko_KR": "격노심장 부적", "name_fr_FR": "Talisman du cœur de la fureur", "name_de_DE": "Wutherztalisman", "name_zh_CN": "狂怒之心护符", "name_es_ES": "Talismán de corazón furibundo", "name_ru_RU": "Талисман яростного сердца", "name_it_IT": "Talismano del Cuor Furioso", "name_pt_PT": "Talismã Furicórdeo", "on_use": false, "id_encounter": 1154, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 116316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Captured Flickerspark", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 323898, "buy_price": 1619490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Captured Flickerspark", "name_ko_KR": "포착된 깜부기불", "name_fr_FR": "Escarbille capturée", "name_de_DE": "Gefangener Flimmerfunke", "name_zh_CN": "被禁锢的闪烁之火", "name_es_ES": "Chisparpadeante capturado", "name_ru_RU": "Захваченный искросвет", "name_it_IT": "Scintilla Catturata", "name_pt_PT": "Centelha Capturada", "on_use": false, "id_encounter": 1123, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 116317, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Storage House Key", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 325134, "buy_price": 1625671, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Storage House Key", "name_ko_KR": "창고 열쇠", "name_fr_FR": "Clé d'entrepôt", "name_de_DE": "Schlüssel zum Lager", "name_zh_CN": "储藏室钥匙", "name_es_ES": "Llave de la sala de almacenamiento", "name_ru_RU": "Ключ от склада", "name_it_IT": "Chiave del Magazzino", "name_pt_PT": "Chave do Armazém", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 116318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stoneheart Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3665, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115339, "buy_price": 576699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768000245094299, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Stoneheart Idol", "name_ko_KR": "돌심장 우상", "name_fr_FR": "Idole du cœur de pierre", "name_de_DE": "Steinherzgötze", "name_zh_CN": "岩心雕像", "name_es_ES": "Ídolo de corazón de piedra", "name_ru_RU": "Идол каменного сердца", "name_it_IT": "Idolo di Cuordipietra", "name_pt_PT": "Ídolo Coração de Pedra", "on_use": false, "id_encounter": 1162, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 116799, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Heart of Hyperious", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91774, "buy_price": 458871, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362999439239502, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Smoldering Heart of Hyperious", "name_ko_KR": "하이페리우스의 연기나는 심장", "name_fr_FR": "Cœur fumant d'Hyperius", "name_de_DE": "Qualmendes Herz von Hyperius", "name_zh_CN": "亥伯里奥斯的阴燃之心", "name_es_ES": "Corazón de Hiperioso humeante", "name_ru_RU": "Истлевшее сердце Ярости Огня", "name_it_IT": "Cuore di Iperius Infuocato", "name_pt_PT": "Coração Abrasador de Hipérius", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116823, "race_mask": 18446744073709551615, "desc": "Patent Pending", "pad2": "", "pad1": "", "pad0": "", "name": "Katealystic Konverter", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 794, "buy_price": 3973, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771999716758728, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Katealystic Konverter", "name_ko_KR": "케트야식 변환기", "name_fr_FR": "Convertisseur Katealytique", "name_de_DE": "Katealystischer Konverter", "name_zh_CN": "催化转换器", "name_es_ES": "Konversor Katealístico", "name_ru_RU": "Кейтилитический конвертор", "name_it_IT": "Konvertitore Katalitiko", "name_pt_PT": "Konversor Katalístico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116824, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rabid Talbuk Horn", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86868, "buy_price": 434340, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rabid Talbuk Horn", "name_ko_KR": "광적인 탈부크의 뿔", "name_fr_FR": "Corne de talbuk enragé", "name_de_DE": "Horn eines tollwütigen Talbuks", "name_zh_CN": "狂暴塔布羊角", "name_es_ES": "Cuerno de talbuk rabioso", "name_ru_RU": "Рог бешеного талбука", "name_it_IT": "Corno di Talbuk Rabbioso", "name_pt_PT": "Chifre de Talbuque Raivoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117033, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9921000003814697, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117034, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9957000017166138, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9514999985694885, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117045, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9624999761581421, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Defensor de Pedra da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117052, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9883000254631042, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117055, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9993000030517578, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117066, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9660999774932861, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117069, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9771000146865845, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117081, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.047700047492981, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117084, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9585999846458435, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117097, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0328999757766724, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117100, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0439000129699707, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117112, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0144000053405762, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0254000425338745, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117130, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0068999528884888, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Defensor de Pedra do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.01419997215271, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117145, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9883999824523926, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0068000555038452, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117156, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9552000164985657, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9699000120162964, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117178, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9624000191688538, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d'âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9733999967575073, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d'âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117194, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.047700047492981, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d'âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117195, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9513000249862671, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d'âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117203, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.007099986076355, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117206, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0182000398635864, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Defensor de Pedra Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117211, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0364999771118164, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117214, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0476000308990479, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0032999515533447, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117226, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0180000066757202, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117243, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0068999528884888, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117246, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.017899990081787, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117260, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9957000017166138, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0068000555038452, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117265, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0140999555587769, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9514999985694885, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9587000012397766, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117293, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9697999954223633, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0440000295639038, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9549000263214111, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117337, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4495, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.010699987411499, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117338, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0144000053405762, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0436999797821045, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117349, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9811999797821045, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Defensor de Pedra do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117357, "race_mask": 18446744073709551615, "desc": "The Grim Guzzler's brawls are epic tales of legend.", "pad2": "", "pad1": "", "pad0": "", "name": "Brawler's Statue", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 35965, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.010599970817566, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Brawler's Statue", "name_ko_KR": "싸움꾼의 조각상", "name_fr_FR": "Statue du bagarreur", "name_de_DE": "Muskelprotzstatue", "name_zh_CN": "争斗者雕像", "name_es_ES": "Estatua de camorrista", "name_ru_RU": "Статуя буяна", "name_it_IT": "Pegno dell'Attaccabrighe", "name_pt_PT": "Estátua do Brigão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117358, "race_mask": 18446744073709551615, "desc": "Never stops twice.", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Wristwatch", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 35965, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.01419997215271, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Mithril Wristwatch", "name_ko_KR": "미스릴 손목시계", "name_fr_FR": "Bracelet-montre en mithril", "name_de_DE": "Mithrilarmbanduhr", "name_zh_CN": "秘银腕表", "name_es_ES": "Reloj de pulsera de mitril", "name_ru_RU": "Мифриловые часики", "name_it_IT": "Orologio da Polso di Mithril", "name_pt_PT": "Relógio de Pulso de Mithril", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117359, "race_mask": 18446744073709551615, "desc": "Reeking and rock hard.", "pad2": "", "pad1": "", "pad0": "", "name": "Thousand-Year Pickled Egg", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 35965, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.017899990081787, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Thousand-Year Pickled Egg", "name_ko_KR": "천 년 절인 초란", "name_fr_FR": "Œuf mariné un millier d'années", "name_de_DE": "Tausend Jahre altes Solei", "name_zh_CN": "千年腌蛋", "name_es_ES": "Huevo escabechado milenario", "name_ru_RU": "Тысячелетнее маринованное яйцо", "name_it_IT": "Uovo in Salamoia Millenario", "name_pt_PT": "Ovo em Conserva de Mil Anos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117360, "race_mask": 18446744073709551615, "desc": "Enchanted to fit perfectly beneath any mug, with a frosty finish.", "pad2": "", "pad1": "", "pad0": "", "name": "Coren's Cold Chromium Coaster", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 35965, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0216000080108643, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Coren's Cold Chromium Coaster", "name_ko_KR": "코렌의 차가운 크롬 받침", "name_fr_FR": "Sous-bock de Coren en chrome glacé", "name_de_DE": "Corens kalter Chromuntersetzer", "name_zh_CN": "科林的冷冻铬银杯垫", "name_es_ES": "Posavasos de cromo frío de Coren", "name_ru_RU": "Охлажденная хромированная подставка под чашку Корена", "name_it_IT": "Sottobicchiere Cromato Freddo di Coren", "name_pt_PT": "Porta-copos Cromado e Gelado de Coren", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117361, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bitterest Balebrew Charm", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0252000093460083, "flags_1": 67633152, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Bitterest Balebrew Charm", "name_ko_KR": "가장 쓰면서도 감미로운 고통의 맥주", "name_fr_FR": "Charme torvebière le plus amer", "name_de_DE": "Bitterster Plörrbräuglücksbringer", "name_zh_CN": "黑暗极苦烈酒咒符", "name_es_ES": "Talismán Fardobirra amarguísima", "name_ru_RU": "Амулет самого горького темного варева", "name_it_IT": "Talismano della Birra che fa Malissimo", "name_pt_PT": "Patuá Cervamarga Muito Amarga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117391, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bubbliest Brightbrew Charm", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 67633216, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Bubbliest Brightbrew Charm", "name_ko_KR": "가장 풍부한 거품의 감미로운 투명 맥주", "name_fr_FR": "Charme brillebière le plus pétillant", "name_de_DE": "Perlendster Hellbräuglücksbringer", "name_zh_CN": "光明富泡酒咒符", "name_es_ES": "Talismán Brillobirra más bullente", "name_ru_RU": "Амулет самого крепкого игристого светлого напитка", "name_it_IT": "Talismano della Birra che fa Benissimo", "name_pt_PT": "Patuá Cervaleve Mais Borbulhante de Todos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117402, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ultra-Electrified Reflector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 342, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7692, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2436, "buy_price": 12181, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9550999999046326, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Ultra-Electrified Reflector", "name_ko_KR": "초대전 반사기", "name_fr_FR": "Réflecteur ultra-électrifié", "name_de_DE": "Hochspannungsreflektor", "name_zh_CN": "超级电化反射器", "name_es_ES": "Reflector ultraelectrificado", "name_ru_RU": "Ультраэлектрифицированный отражатель", "name_it_IT": "Riflettore Ultra Elettrificato", "name_pt_PT": "Refletor Ultraeletrificado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117403, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gyro-Radiant Reflector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 342, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7692, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2444, "buy_price": 12220, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9587000012397766, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Gyro-Radiant Reflector", "name_ko_KR": "회전발광 반사기", "name_fr_FR": "Réflecteur à gyro-rayonnement", "name_de_DE": "Gyrostrahlenreflektor", "name_zh_CN": "旋转辐射反射器", "name_es_ES": "Reflector girorradiante", "name_ru_RU": "Гироизлучательный отражатель", "name_it_IT": "Riflettore Giroradiante", "name_pt_PT": "Refletor Girorradiante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117438, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Net Launcher", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7665, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2652, "buy_price": 13260, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0401999950408936, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Gnomish Net Launcher", "name_ko_KR": "노움 그물 발사기", "name_fr_FR": "Lance-filet gnome", "name_de_DE": "Gnomischer Netzwerfer", "name_zh_CN": "侏儒渔网发射器", "name_es_ES": "Lanzarredes gnómico", "name_ru_RU": "Гномский сетемет", "name_it_IT": "Lanciarete degli Gnomi", "name_pt_PT": "Lançador de Rede Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117537, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9623000025749207, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117540, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9998000264167786, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117729, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117930, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Conquest", "name_ko_KR": "토너먼트 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur de tournoi", "name_de_DE": "Eroberungsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador de torneo", "name_ru_RU": "Жетон завоевания состязающегося гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Conquista do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117730, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9882000088691711, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117931, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Conquest", "name_ko_KR": "토너먼트 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur de tournoi", "name_de_DE": "Eroberungsinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador de torneo", "name_ru_RU": "Знак завоевания состязающегося гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Conquista do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117731, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117932, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Cruelty", "name_ko_KR": "토너먼트 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur de tournoi", "name_de_DE": "Grausamkeitsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador de torneo", "name_ru_RU": "Эмблема жестокости состязающегося гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore del Torneo", "name_pt_PT": "Emblema da Crueldade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117732, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117933, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Tenacity", "name_ko_KR": "토너먼트 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur de tournoi", "name_de_DE": "Hartnäckigkeitsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador de torneo", "name_ru_RU": "Эмблема упорства состязающегося гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore del Torneo", "name_pt_PT": "Emblema da Tenacidade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117733, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0257999897003174, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117934, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Meditation", "name_ko_KR": "토너먼트 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur de tournoi", "name_de_DE": "Meditationsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador de torneo", "name_ru_RU": "Эмблема медитации состязающегося гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore del Torneo", "name_pt_PT": "Emblema da Meditação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117734, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0293999910354614, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117935, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Dominance", "name_ko_KR": "토너먼트 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur de tournoi", "name_de_DE": "Vorherrschaftsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador de torneo", "name_ru_RU": "Жетон господства состязающегося гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Dominância do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117735, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0331000089645386, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117936, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Dominance", "name_ko_KR": "토너먼트 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur de tournoi", "name_de_DE": "Vorherrschaftsinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador de torneo", "name_ru_RU": "Знак господства состязающегося гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Dominância do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117736, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0368000268936157, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117937, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Cruelty", "name_ko_KR": "토너먼트 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur de tournoi", "name_de_DE": "Grausamkeitsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador de torneo", "name_ru_RU": "Медальон жестокости состязающегося гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Crueldade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117737, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405000448226929, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117938, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Tenacity", "name_ko_KR": "토너먼트 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur de tournoi", "name_de_DE": "Hartnäckigkeitsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador de torneo", "name_ru_RU": "Медальон упорства состязающегося гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117738, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044100046157837, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117939, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Meditation", "name_ko_KR": "토너먼트 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur de tournoi", "name_de_DE": "Meditationsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador de torneo", "name_ru_RU": "Медальон медитации состязающегося гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Meditação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117739, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0477999448776245, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117940, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Victory", "name_ko_KR": "토너먼트 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur de tournoi", "name_de_DE": "Siegesabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador de torneo", "name_ru_RU": "Жетон победы состязающегося гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Vitória do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117740, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117941, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Victory", "name_ko_KR": "토너먼트 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur de tournoi", "name_de_DE": "Siegesinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador de torneo", "name_ru_RU": "Знак победы состязающегося гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Vitória do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117773, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.025499939918518, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117774, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Adaptation", "name_ko_KR": "토너먼트 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur de tournoi", "name_de_DE": "Anpassungsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador de torneo", "name_ru_RU": "Жетон адаптации состязающегося гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Adaptação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117774, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0291999578475952, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117773, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Adaptation", "name_ko_KR": "토너먼트 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur de tournoi", "name_de_DE": "Anpassungsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador de torneo", "name_ru_RU": "Жетон адаптации состязающегося гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Adaptação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117930, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9663000106811523, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117729, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Conquest", "name_ko_KR": "토너먼트 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur de tournoi", "name_de_DE": "Eroberungsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador de torneo", "name_ru_RU": "Жетон завоевания состязающегося гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Conquista do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117931, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700000286102295, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117730, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Conquest", "name_ko_KR": "토너먼트 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur de tournoi", "name_de_DE": "Eroberungsinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador de torneo", "name_ru_RU": "Знак завоевания состязающегося гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Conquista do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117932, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736999869346619, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117731, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Cruelty", "name_ko_KR": "토너먼트 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur de tournoi", "name_de_DE": "Grausamkeitsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador de torneo", "name_ru_RU": "Эмблема жестокости состязающегося гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore del Torneo", "name_pt_PT": "Emblema da Crueldade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117933, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.977400004863739, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117732, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Tenacity", "name_ko_KR": "토너먼트 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur de tournoi", "name_de_DE": "Hartnäckigkeitsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador de torneo", "name_ru_RU": "Эмблема упорства состязающегося гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore del Torneo", "name_pt_PT": "Emblema da Tenacidade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117934, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9810000061988831, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117733, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Meditation", "name_ko_KR": "토너먼트 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur de tournoi", "name_de_DE": "Meditationsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador de torneo", "name_ru_RU": "Эмблема медитации состязающегося гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore del Torneo", "name_pt_PT": "Emblema da Meditação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117935, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847000241279602, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117734, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Dominance", "name_ko_KR": "토너먼트 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur de tournoi", "name_de_DE": "Vorherrschaftsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador de torneo", "name_ru_RU": "Жетон господства состязающегося гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Dominância do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117936, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883999824523926, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117735, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Dominance", "name_ko_KR": "토너먼트 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur de tournoi", "name_de_DE": "Vorherrschaftsinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador de torneo", "name_ru_RU": "Знак господства состязающегося гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Dominância do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117937, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9921000003814697, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117736, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Cruelty", "name_ko_KR": "토너먼트 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur de tournoi", "name_de_DE": "Grausamkeitsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador de torneo", "name_ru_RU": "Медальон жестокости состязающегося гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Crueldade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117938, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9957000017166138, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117737, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Tenacity", "name_ko_KR": "토너먼트 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur de tournoi", "name_de_DE": "Hartnäckigkeitsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador de torneo", "name_ru_RU": "Медальон упорства состязающегося гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117939, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994000196456909, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117738, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Meditation", "name_ko_KR": "토너먼트 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur de tournoi", "name_de_DE": "Meditationsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador de torneo", "name_ru_RU": "Медальон медитации состязающегося гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Meditação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117940, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003100037574768, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117739, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Victory", "name_ko_KR": "토너먼트 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur de tournoi", "name_de_DE": "Siegesabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador de torneo", "name_ru_RU": "Жетон победы состязающегося гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Vitória do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117941, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006700038909912, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117740, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Victory", "name_ko_KR": "토너먼트 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur de tournoi", "name_de_DE": "Siegesinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador de torneo", "name_ru_RU": "Знак победы состязающегося гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Vitória do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Ancient's Bark", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 48460, "buy_price": 242301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0144000053405762, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Smoldering Ancient's Bark", "name_ko_KR": "연기 나는 고대정령의 껍질", "name_fr_FR": "Ecorce d'ancien fumante", "name_de_DE": "Rinde des schwelenden Urtums", "name_zh_CN": "阴燃的古树树皮", "name_es_ES": "Corteza de anciano humeante", "name_ru_RU": "Тлеющая кора древнего", "name_it_IT": "Corteccia dell'Antico Ardente", "name_pt_PT": "Casca de Anciente Fumegante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118017, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blistered Ancient Bark", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 48632, "buy_price": 243161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Blistered Ancient Bark", "name_ko_KR": "물집 잡힌 고대 껍질", "name_fr_FR": "Ecorce ancienne boursouflée", "name_de_DE": "Blasige uralte Rinde", "name_zh_CN": "起泡的古树树皮", "name_es_ES": "Corteza de anciano con ampollas", "name_ru_RU": "Покрытая волдырями кора древнего", "name_it_IT": "Corteccia Antica Gonfia", "name_pt_PT": "Casca de Anciente Empolada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charred Ancient's Ember", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 519, "buy_price": 2599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Charred Ancient's Ember", "name_ko_KR": "악에물든 고대정령의 잿불", "name_fr_FR": "Braise d'ancien calciné", "name_de_DE": "Glut des verkohlten Urtums", "name_zh_CN": "烧焦的古树余烬", "name_es_ES": "Ascua de anciano carbonizado", "name_ru_RU": "Обгоревший уголек древнего", "name_it_IT": "Brace dell'Antico Carbonizzato", "name_pt_PT": "Brasa do Anciente Calcinado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118019, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of the Magnaron", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4414, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67953, "buy_price": 339767, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Might of the Magnaron", "name_ko_KR": "마그나론의 힘", "name_fr_FR": "Puissance des Magnarons", "name_de_DE": "Macht der Magnaron", "name_zh_CN": "玛戈隆的力量", "name_es_ES": "Poderío del magnarón", "name_ru_RU": "Мощь магнарона", "name_it_IT": "Vigore dei Magnaron", "name_pt_PT": "Poder do Magnaron", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118020, "race_mask": 18446744073709551615, "desc": "A collection of loosely strung bones.", "pad2": "", "pad1": "", "pad0": "", "name": "Goc's Trophy", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5045, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68191, "buy_price": 340959, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0290000438690186, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Goc's Trophy", "name_ko_KR": "고크의 전리품", "name_fr_FR": "Trophée de Goc", "name_de_DE": "Gocs Trophäe", "name_zh_CN": "苟克的战利品", "name_es_ES": "Trofeo de Goc", "name_ru_RU": "Трофей Гока", "name_it_IT": "Trofeo di Goc", "name_pt_PT": "Troféu de Goc", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118021, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goc's Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 693, "buy_price": 3469, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0326999425888062, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Goc's Eye", "name_ko_KR": "고크의 눈", "name_fr_FR": "Oeil de Goc", "name_de_DE": "Gocs Auge", "name_zh_CN": "苟克之眼", "name_es_ES": "Ojo de Goc", "name_ru_RU": "Глаз Гока", "name_it_IT": "Occhio di Goc", "name_pt_PT": "Olho de Goc", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118114, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Meaty Dragonspine Trophy", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6284, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121952, "buy_price": 609762, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0327999591827393, "flags_1": 589824, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Meaty Dragonspine Trophy", "name_ko_KR": "커다란 용뼈 장식", "name_fr_FR": "Trophée charnu de l'Epine-de-Dragon", "name_de_DE": "Blutige Drachenwirbeltrophäe", "name_zh_CN": "多肉龙脊奖章", "name_es_ES": "Trofeo de espinazo de dragón carnoso", "name_ru_RU": "Трофей из драконьего хребта с остатками мяса", "name_it_IT": "Trofeo Spina di Drago Carnosa", "name_pt_PT": "Troféu Espinha do Dragão Carnudo", "on_use": false, "id_encounter": 1161, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 118199, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Poison Cask", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76884, "buy_price": 384421, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Poison Cask", "name_ko_KR": "독 통", "name_fr_FR": "Fût de poison", "name_de_DE": "Giftfass", "name_zh_CN": "毒液桶", "name_es_ES": "Tonel de veneno", "name_ru_RU": "Бочонок с ядом", "name_it_IT": "Barile di Veleno", "name_pt_PT": "Barril de Veneno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118202, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fungus-Infected Hydra Lung", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 749, "buy_price": 3748, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0146000385284424, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fungus-Infected Hydra Lung", "name_ko_KR": "곰팡이에 감염된 히드라 폐", "name_fr_FR": "Poumon d'hydre infesté de champignons", "name_de_DE": "Pilzbefallene Hydralunge", "name_zh_CN": "染菌多头蛇肺叶", "name_es_ES": "Pulmón de hidra infectada por hongos", "name_ru_RU": "Зараженное спорами легкое гидры", "name_it_IT": "Polmone d'Idra Infettato dai Funghi", "name_pt_PT": "Pulmão de Hidra com Infecção Fúngica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118211, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rolkor's Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 60061, "buy_price": 300306, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.047700047492981, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rolkor's Rage", "name_ko_KR": "롤코르의 분노", "name_fr_FR": "Rage de Rolkor", "name_de_DE": "Rolkors Wut", "name_zh_CN": "洛克尔之怒", "name_es_ES": "Ira de Rolkor", "name_ru_RU": "Ярость Ролкора", "name_it_IT": "Rabbia di Rolkor", "name_pt_PT": "Fúria de Rolkor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118229, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resonant Hidecrystal of the Gorger", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 59631, "buy_price": 298156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0401999950408936, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Resonant Hidecrystal of the Gorger", "name_ko_KR": "먹보의 공명하는 등껍질수정", "name_fr_FR": "Cristal de peau de résonance du goinfre", "name_de_DE": "Schwingender Panzerkristall des Schlingers", "name_zh_CN": "吞噬者的共振隐匿水晶", "name_es_ES": "Cristal oculto resonante del Glotón", "name_ru_RU": "Звонкий тайный кристалл Пожирателя", "name_it_IT": "Cristallo Risonante del Bramacarne", "name_pt_PT": "Cristal Ressoante do Devorador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118230, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Cerulean Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 59843, "buy_price": 299217, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0439000129699707, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Smoldering Cerulean Stone", "name_ko_KR": "연기나는 감청색 돌", "name_fr_FR": "Pierre céruléenne fumante", "name_de_DE": "Schwelender himmelblauer Stein", "name_zh_CN": "阴燃的蔚蓝之石", "name_es_ES": "Piedra cerúlea humeante", "name_ru_RU": "Тлеющий лазурный камень", "name_it_IT": "Pietra Cerulea Bruciante", "name_pt_PT": "Pedra Cerúlea Fumegante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118246, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Call of the Wolfmother", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91127, "buy_price": 455638, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0290000438690186, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Call of the Wolfmother", "name_ko_KR": "늑대어미의 부름", "name_fr_FR": "Appel de la mère des loups", "name_de_DE": "Ruf der Wolfsmutter", "name_zh_CN": "狼母的召唤", "name_es_ES": "Llamada de la Madre de Lobos", "name_ru_RU": "Зов волчицы", "name_it_IT": "Richiamo della Madre dei Lupi", "name_pt_PT": "Chamado da Mãe-loba", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118601, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ocean Tarot", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14915, "buy_price": 74575, "vendor_stack": 1, "unk_2": 0.25, "unk_1": 1.0406999588012695, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Ocean Tarot", "name_ko_KR": "바다 카드", "name_fr_FR": "Carte de tarot océanique", "name_de_DE": "Meerestarot", "name_zh_CN": "海洋塔罗牌", "name_es_ES": "Tarot del océano", "name_ru_RU": "Карта Океана", "name_it_IT": "Tarocco dell'Oceano", "name_pt_PT": "Tarô do Oceano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118602, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Laughing Tarot", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17303, "buy_price": 86515, "vendor_stack": 1, "unk_2": 0.25, "unk_1": 1.0443999767303467, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Laughing Tarot", "name_ko_KR": "웃음 카드", "name_fr_FR": "Carte de tarot ricanant", "name_de_DE": "Lachendes Tarot", "name_zh_CN": "蔑笑塔罗牌", "name_es_ES": "Tarot de la risa", "name_ru_RU": "Смеющаяся карта", "name_it_IT": "Tarocco Ridente", "name_pt_PT": "Tarô Ridente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118603, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Savage Tarot", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20073, "buy_price": 100366, "vendor_stack": 1, "unk_2": 0.25, "unk_1": 1.0480999946594238, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Savage Tarot", "name_ko_KR": "야만 카드", "name_fr_FR": "Carte de tarot sauvage", "name_de_DE": "Wildes Tarot", "name_zh_CN": "狂野塔罗牌", "name_es_ES": "Tarot salvaje", "name_ru_RU": "Дикая карта", "name_it_IT": "Tarocco Selvaggio", "name_pt_PT": "Taro Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118677, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Howl of the Frostwolf", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.025499939918518, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 118680, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1445, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Howl of the Frostwolf", "name_ko_KR": "서리늑대의 포효", "name_fr_FR": "Hurlement des Loups-de-Givre", "name_de_DE": "Heulen der Frostwölfe", "name_zh_CN": "霜狼之嗥", "name_es_ES": "Aullido Lobo Gélido", "name_ru_RU": "Вой северного волка", "name_it_IT": "Ululato dei Lupi Bianchi", "name_pt_PT": "Uivo do Lobo do Gelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118680, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tranquility of the Exarchs", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0364999771118164, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 118677, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1731, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Tranquility of the Exarchs", "name_ko_KR": "총독의 평온", "name_fr_FR": "Tranquillité des exarques", "name_de_DE": "Gelassenheit der Exarchen", "name_zh_CN": "主教的宁静", "name_es_ES": "Tranquilidad de los exarcas", "name_ru_RU": "Спокойствие экзархов", "name_it_IT": "Tranquillità degli Esarchi", "name_pt_PT": "Tranquilidade dos Exarcas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118682, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Saberon Protector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.970300018787384, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1515, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Saberon Protector", "name_ko_KR": "서슬니 수호자", "name_fr_FR": "Protecteur sabron", "name_de_DE": "Beschützer der Saberon", "name_zh_CN": "刃牙虎人保护者", "name_es_ES": "Protector sablerón", "name_ru_RU": "Оберег саблеронов", "name_it_IT": "Protettore dei Saberon", "name_pt_PT": "Protetor Saberon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Portable Goon Squad", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739000201225281, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1711, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Portable Goon Squad", "name_ko_KR": "휴대용 깡패", "name_fr_FR": "Bande de casseurs portative", "name_de_DE": "Taschenschlägertruppe", "name_zh_CN": "便携式打手小队", "name_es_ES": "Matones portátiles", "name_ru_RU": "Передвижной отряд громил", "name_it_IT": "Squadra di Sgherri Portatile", "name_pt_PT": "Esquadrão de Capangas Portátil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118684, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Maniacal Grimace", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 118685, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1708, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Maniacal Grimace", "name_ko_KR": "광란의 우거지상", "name_fr_FR": "Grimace forcenée", "name_de_DE": "Irrsinnige Grimasse", "name_zh_CN": "狂热鬼面", "name_es_ES": "Mueca maníaca", "name_ru_RU": "Маниакальная гримаса", "name_it_IT": "Smorfia da Maniaco", "name_pt_PT": "Careta Maníaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sha'tari Protector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9812999963760376, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 118684, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1710, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Sha'tari Protector", "name_ko_KR": "샤타리 수호자", "name_fr_FR": "Protecteur sha'tari", "name_de_DE": "Beschützer der Sha'tar", "name_zh_CN": "沙塔尔保护者", "name_es_ES": "Protector Sha'tari", "name_ru_RU": "Ша'тарский оберег", "name_it_IT": "Protettore degli Sha'tar", "name_pt_PT": "Protetor Sha'tari", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118690, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empty Crawdad Trap", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88532, "buy_price": 442664, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9997000098228455, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Empty Crawdad Trap", "name_ko_KR": "빈 가재 덫", "name_fr_FR": "Piège à écrevisses vide", "name_de_DE": "Leere Flusskrebsfalle", "name_zh_CN": "空的龙虾笼", "name_es_ES": "Trampa de cigalas vacía", "name_ru_RU": "Пустая ловушка для речного рака", "name_it_IT": "Trappola per Astici Vuota", "name_pt_PT": "Armadilha de Lagostim Vazia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118776, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Invader", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.047700047492981, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of the Invader", "name_ko_KR": "침략자의 부적", "name_fr_FR": "Talisman de l'envahisseur", "name_de_DE": "Talisman des Invasoren", "name_zh_CN": "入侵者护符", "name_es_ES": "Dije del invasor", "name_ru_RU": "Талисман налетчика", "name_it_IT": "Talismano dell'Invasore", "name_pt_PT": "Talismã do Invasor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118777, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodcaster's Charm", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.951200008392334, "flags_1": 561152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bloodcaster's Charm", "name_ko_KR": "혈술사의 부적", "name_fr_FR": "Charme du lanceur de sang", "name_de_DE": "Talisman des Blutwirkers", "name_zh_CN": "血法师的符咒", "name_es_ES": "Talismán de lanzador sangriento", "name_ru_RU": "Талисман мага крови", "name_it_IT": "Talismano dell'Invocasangue", "name_pt_PT": "Patuá do Clamassangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118778, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ironmender's Totem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9814000129699707, "flags_1": 561152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ironmender's Totem", "name_ko_KR": "무쇠치유자의 토템", "name_fr_FR": "Totem de soigne-fer", "name_de_DE": "Totem des Eisenheilers", "name_zh_CN": "愈铁者的图腾", "name_es_ES": "Tótem de ensalmador férreo", "name_ru_RU": "Тотем железного штопальщика", "name_it_IT": "Totem del Guaritore Ferroso", "name_pt_PT": "Totem do Cerzeferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bladespike Charm", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850999712944031, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bladespike Charm", "name_ko_KR": "칼가시 부적", "name_fr_FR": "Charme pointelame", "name_de_DE": "Klingenstachelanhänger", "name_zh_CN": "刀刺护符", "name_es_ES": "Talismán de puntafilo", "name_ru_RU": "Талисман шипастого клинка", "name_it_IT": "Talismano di Piccolama", "name_pt_PT": "Patuá Gumespinho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118780, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodburn Protector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9887999892234802, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bloodburn Protector", "name_ko_KR": "피의 연소 수호물", "name_fr_FR": "Protecteur de brûlure sanguine", "name_de_DE": "Blutfeuerbeschützer", "name_zh_CN": "燃血防御者", "name_es_ES": "Protector quemasangre", "name_ru_RU": "Заступник жгучей крови", "name_it_IT": "Protettore della Combustione del Sangue", "name_pt_PT": "Protetor Fervessange", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118875, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pajeet-Nov's Perpetual Puzzle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3703, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88223, "buy_price": 441115, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962000250816345, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 38, "inv_type": 12, "quality": 3, "name_en_US": "Pajeet-Nov's Perpetual Puzzle", "name_ko_KR": "파지트노브의 영원한 수수께끼", "name_fr_FR": "Enigme perpétuelle de Pajeet-Nov", "name_de_DE": "Pajeet-Novs ewiges Rätsel", "name_zh_CN": "帕吉诺夫的永恒之谜", "name_es_ES": "Puzle perpetuo de Pajeet-Nov", "name_ru_RU": "Неразрешимая головоломка Пажит-Нова", "name_it_IT": "Rompicapo Perpetuo di Pajeet-Nov", "name_pt_PT": "Quebra-cabeça Eterno de Pajeet-Nov", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118876, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Double-Sided Coin", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3181, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 118067, "buy_price": 590337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998999834060669, "flags_1": 524288, "flags_2": 8448, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Lucky Double-Sided Coin", "name_ko_KR": "행운의 양면 동전", "name_fr_FR": "Pièce à deux faces porte-bonheur", "name_de_DE": "Doppelseitige Glücksmünze", "name_zh_CN": "双面幸运金币", "name_es_ES": "Moneda de la suerte de dos caras", "name_ru_RU": "Счастливая монетка с двумя орлами", "name_it_IT": "Moneta Fortunata a Due Facce", "name_pt_PT": "Moeda de Duas Caras Sortuda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118877, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fizzlebang's Folly", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3597, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 49768, "buy_price": 248844, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Fizzlebang's Folly", "name_ko_KR": "피즐뱅의 어리석음", "name_fr_FR": "Folie de Flopboum", "name_de_DE": "Zischknalls Torheit", "name_zh_CN": "菲兹班的愚蠢", "name_es_ES": "Locura de Chispobang", "name_ru_RU": "Причуда Непопамса", "name_it_IT": "Follia di Frizzabum", "name_pt_PT": "Insensatez de Chiabangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118878, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Copeland's Clarity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6276, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 118941, "buy_price": 594706, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0073000192642212, "flags_1": 528384, "flags_2": 8448, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Copeland's Clarity", "name_ko_KR": "코프랜드의 청명", "name_fr_FR": "Clarté de Copeland", "name_de_DE": "Copelands Klarsicht", "name_zh_CN": "科普兰的清醒", "name_es_ES": "Claridad de Copeland", "name_ru_RU": "Ясность Коупленда", "name_it_IT": "Lucidità di Copeland", "name_pt_PT": "Clareza de Terranova", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Everblooming Thorny Hibiscus", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3746, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77443, "buy_price": 387217, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0109000205993652, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 38, "inv_type": 12, "quality": 3, "name_en_US": "Everblooming Thorny Hibiscus", "name_ko_KR": "상록숲의 가시투성이 불상화", "name_fr_FR": "Hibiscus épineux sempervirent", "name_de_DE": "Immergrüner Dornenhibiskus", "name_zh_CN": "永茂棘刺木槿", "name_es_ES": "Hibisco espinoso de brote perpetuo", "name_ru_RU": "Вечноцветущая колючая мальва", "name_it_IT": "Ibisco Spinoso Semprefiorente", "name_pt_PT": "Hibisco Espinhento Floreterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118880, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Everburning Candle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7229, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 119803, "buy_price": 599016, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0146000385284424, "flags_1": 524288, "flags_2": 8448, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Everburning Candle", "name_ko_KR": "영원히 타오르는 양초", "name_fr_FR": "Bougie semperardente", "name_de_DE": "Immerflammenkerze", "name_zh_CN": "永燃蜡烛", "name_es_ES": "Vela de llama perpetua", "name_ru_RU": "Негаснущая свеча", "name_it_IT": "Candela Inestinguibile", "name_pt_PT": "Vela da Chama Eterna", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118881, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bajheric Bangle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3746, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 78010, "buy_price": 390051, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 38, "inv_type": 12, "quality": 3, "name_en_US": "Bajheric Bangle", "name_ko_KR": "바제릭 팔찌", "name_fr_FR": "Bracelet de Bajheric", "name_de_DE": "Bajherischer Armreif", "name_zh_CN": "巴赫里克的手镯", "name_es_ES": "Broche de Bajheric", "name_ru_RU": "Бахжерайский браслет", "name_it_IT": "Ciondolo Bajheric", "name_pt_PT": "Pulseira Bajherica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118882, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scabbard of Kyanos", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120677, "buy_price": 603385, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219999551773071, "flags_1": 524288, "flags_2": 8448, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Scabbard of Kyanos", "name_ko_KR": "키아노스의 칼집", "name_fr_FR": "Fourreau de Kyanos", "name_de_DE": "Degenscheide des Kyanos", "name_zh_CN": "奇亚诺斯的剑鞘", "name_es_ES": "Vaina de Kyanos", "name_ru_RU": "Ножны Кианоса", "name_it_IT": "Fodero di Kyanos", "name_pt_PT": "Bainha de Kyanos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118883, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bronzed Elekk Statue", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5510, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90826, "buy_price": 454133, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255999565124512, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Bronzed Elekk Statue", "name_ko_KR": "청동 입힌 엘레크 조각상", "name_fr_FR": "Statue d'elekk en bronze", "name_de_DE": "Talmielekkstatue", "name_zh_CN": "雷象铜像", "name_es_ES": "Estatua de elekk de bronce", "name_ru_RU": "Покрытая бронзой фигурка элекка", "name_it_IT": "Statua di Elekk di Bronzo", "name_pt_PT": "Estátua de Elekk de Bronze", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118884, "race_mask": 18446744073709551615, "desc": "Should've left a long time ago.", "pad2": "", "pad1": "", "pad0": "", "name": "Kyb's Foolish Perseverance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 14934, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121539, "buy_price": 607695, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0292999744415283, "flags_1": 524288, "flags_2": 8448, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Kyb's Foolish Perseverance", "name_ko_KR": "킵의 어리석은 끈기", "name_fr_FR": "Persévérance absurde de Kyb", "name_de_DE": "Kybs törichte Beharrlichkeit", "name_zh_CN": "齐布的愚忠", "name_es_ES": "Perseverancia insensata de Kyb", "name_ru_RU": "Бессмысленное упрямство Киба", "name_it_IT": "Perseveranza Folle di Kyb", "name_pt_PT": "Perseverança Tola de Kyb", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118936, "race_mask": 18446744073709551615, "desc": "The words are written in an ink so dark it seems to pull light away from the pages.", "pad2": "", "pad1": "", "pad0": "", "name": "Manual of Void-Calling", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994999766349792, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Manual of Void-Calling", "name_ko_KR": "공허 소환 안내서", "name_fr_FR": "Manuel d'invocation du Vide", "name_de_DE": "Anleitung zum Leerenrufen", "name_zh_CN": "虚空召唤手册", "name_es_ES": "Manual de llamada del Vacío", "name_ru_RU": "Учебник призыва Бездны", "name_it_IT": "Manuale dell'Evocazione del Vuoto", "name_pt_PT": "Manual de Evocação Caótica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119192, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ironspike Chew Toy", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4426, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113651, "buy_price": 568257, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624999761581421, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Ironspike Chew Toy", "name_ko_KR": "강철쐐기 노리개", "name_fr_FR": "Jouet à mâcher lance-de-fer", "name_de_DE": "Kauspielzeug mit Eisenstacheln", "name_zh_CN": "铁刺狗玩具", "name_es_ES": "Mordedor Pinchoférreo", "name_ru_RU": "Игрушка для питомца с железными шипами", "name_it_IT": "Giocattolo con Punte di Ferro", "name_pt_PT": "Brinquedinho de Morder de Espigaférrea", "on_use": false, "id_encounter": 1122, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 119193, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of Screaming Spirits", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6283, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114088, "buy_price": 570441, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Horn of Screaming Spirits", "name_ko_KR": "울부짖는 영혼의 뿔피리", "name_fr_FR": "Cor des esprits hurlants", "name_de_DE": "Horn der kreischenden Geister", "name_zh_CN": "尖啸之魂号角", "name_es_ES": "Cuerno de espíritus aulladores", "name_ru_RU": "Рог ревущих духов", "name_it_IT": "Corno degli Spiriti Urlanti", "name_pt_PT": "Chifre dos Espíritos Gritantes", "on_use": false, "id_encounter": 1123, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 119194, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goren Soul Repository", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6284, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1051, "buy_price": 5257, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Goren Soul Repository", "name_ko_KR": "고렌 영혼 보관소", "name_fr_FR": "Collecteur d'âmes goren", "name_de_DE": "Gorenseelensammler", "name_zh_CN": "鬣蜥人灵魂容器", "name_es_ES": "Repositorio de almas goren", "name_ru_RU": "Хранилище души горена", "name_it_IT": "Lanterna d'Anime dei Goren", "name_pt_PT": "Repositório de Almas de Goren", "on_use": false, "id_encounter": 1202, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 119483, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0069999694824219, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119484, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.010699987411499, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9664999842643738, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119495, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9775000214576721, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Defensor de Pedra da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119502, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0297000408172607, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119505, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0406999588012695, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9810000061988831, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119519, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0184999704360962, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9624999761581421, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119534, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119547, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0477999448776245, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119550, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119562, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0292999744415283, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119565, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.96670001745224, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0218000411987305, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Defensor de Pedra do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119582, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9556000232696533, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119595, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0032999515533447, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119600, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.048200011253357, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119606, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9700999855995178, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119610, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9847999811172485, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119628, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9772999882698059, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d'âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119631, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0148999691009521, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d'âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9624999761581421, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d'âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9661999940872192, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d'âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119653, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0220999717712402, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119656, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0331000089645386, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Defensor de Pedra Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9513999819755554, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119664, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9889000058174133, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119672, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0183000564575195, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119676, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0329999923706055, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119693, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0218000411987305, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119696, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9592000246047974, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0371999740600586, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119713, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.048200011253357, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9553999900817871, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119718, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9664999842643738, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119740, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9736999869346619, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119743, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.011199951171875, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119756, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9588000178337097, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119759, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.996399998664856, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119787, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4495, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0255999565124512, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119788, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0292999744415283, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119796, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9850999712944031, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119799, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9961000084877014, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Defensor de Pedra do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119805, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0181000232696533, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119808, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9556000232696533, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119926, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86248, "buy_price": 431240, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739000201225281, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115149, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Conquest", "name_ko_KR": "야성적인 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant primordial", "name_de_DE": "Eroberungsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente primigenio", "name_ru_RU": "Жетон завоевания необузданного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Primordiale", "name_pt_PT": "Distintivo da Conquista do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119927, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86575, "buy_price": 432879, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115150, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Conquest", "name_ko_KR": "야성적인 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant primordial", "name_de_DE": "Eroberungsinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente primigenio", "name_ru_RU": "Знак завоевания необузданного бойца", "name_it_IT": "Fregio della Conquista del Combattente Primordiale", "name_pt_PT": "Insígnia da Conquista do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119928, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86903, "buy_price": 434517, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9812999963760376, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115151, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Cruelty", "name_ko_KR": "야성적인 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant primordial", "name_de_DE": "Grausamkeitsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente primigenio", "name_ru_RU": "Эмблема жестокости необузданного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Primordiale", "name_pt_PT": "Emblema da Crueldade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119929, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87222, "buy_price": 436111, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115152, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Tenacity", "name_ko_KR": "야성적인 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant primordial", "name_de_DE": "Hartnäckigkeitsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente primigenio", "name_ru_RU": "Эмблема упорства необузданного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Primordiale", "name_pt_PT": "Emblema da Tenacidade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119930, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87549, "buy_price": 437749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115153, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Meditation", "name_ko_KR": "야성적인 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant primordial", "name_de_DE": "Meditationsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente primigenio", "name_ru_RU": "Эмблема медитации необузданного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Primordiale", "name_pt_PT": "Emblema da Meditação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119931, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87877, "buy_price": 439388, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115154, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Dominance", "name_ko_KR": "야성적인 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant primordial", "name_de_DE": "Vorherrschaftsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente primigenio", "name_ru_RU": "Жетон господства необузданного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Primordiale", "name_pt_PT": "Distintivo da Dominância do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119932, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 809, "buy_price": 4049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115155, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Dominance", "name_ko_KR": "야성적인 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant primordial", "name_de_DE": "Vorherrschaftsinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente primigenio", "name_ru_RU": "Знак господства необузданного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Primordiale", "name_pt_PT": "Insígnia da Dominância do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119933, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88524, "buy_price": 442620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9995999932289124, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115156, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Cruelty", "name_ko_KR": "야성적인 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant primordial", "name_de_DE": "Grausamkeitsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente orgulloso", "name_ru_RU": "Медальон жестокости необузданного бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Primordiale", "name_pt_PT": "Medalhão da Crueldade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119934, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88851, "buy_price": 444258, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0032999515533447, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115157, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Tenacity", "name_ko_KR": "야성적인 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant primordial", "name_de_DE": "Hartnäckigkeitsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente primigenio", "name_ru_RU": "Медальон упорства необузданного бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Primordiale", "name_pt_PT": "Medalhão da Tenacidade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119935, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91526, "buy_price": 457631, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115158, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Meditation", "name_ko_KR": "야성적인 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant primordial", "name_de_DE": "Meditationsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente primigenio", "name_ru_RU": "Медальон медитации необузданного бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Primordiale", "name_pt_PT": "Medalhão da Meditação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119936, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91853, "buy_price": 459269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115159, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Victory", "name_ko_KR": "야성적인 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant primordial", "name_de_DE": "Siegesabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente primigenio", "name_ru_RU": "Жетон победы необузданного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Primordiale", "name_pt_PT": "Distintivo da Vitória do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119937, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92172, "buy_price": 460863, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0407999753952026, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115160, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Victory", "name_ko_KR": "야성적인 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant primordial", "name_de_DE": "Siegesinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente primigenio", "name_ru_RU": "Знак победы необузданного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Primordiale", "name_pt_PT": "Insígnia da Vitória do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 120049, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 91853, "buy_price": 459269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115521, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1681, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Adaptation", "name_ko_KR": "야성적인 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant primordial", "name_de_DE": "Anpassungsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente primigenio", "name_ru_RU": "Жетон адаптации необузданного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Primordiale", "name_pt_PT": "Distintivo da Adaptação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 120337, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Novice Rylak Hunter's Horn", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74348, "buy_price": 371742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Novice Rylak Hunter's Horn", "name_ko_KR": "풋내기 라일라크 사냥꾼의 뿔피리", "name_fr_FR": "Cor du chasseur de rylaks débutant", "name_de_DE": "Horn des Rylakjägernovizen", "name_zh_CN": "新晋双头飞龙猎手的号角", "name_es_ES": "Cuerno de cazador de rylaks novicio", "name_ru_RU": "Рог начинающего охотника на рилаков", "name_it_IT": "Corno del Cacciatore Novizio di Rylak", "name_pt_PT": "Trompa do Caçador de Rylak Novato", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 120341, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burning Pearl", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 48856, "buy_price": 244282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Burning Pearl", "name_ko_KR": "불타는 진주", "name_fr_FR": "Perle ardente", "name_de_DE": "Brennende Perle", "name_zh_CN": "燃烧的珍珠", "name_es_ES": "Perla ardiente", "name_ru_RU": "Горящая жемчужина", "name_it_IT": "Perla Ardente", "name_pt_PT": "Pérola Incandescente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121014, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Preserved Blue Dragon Scale", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 221007, "buy_price": 1105039, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9667999744415283, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Preserved Blue Dragon Scale", "name_ko_KR": "보존된 푸른용 비늘", "name_fr_FR": "Ecaille de dragon bleu préservée", "name_de_DE": "Konservierte blaue Drachenschuppe", "name_zh_CN": "珍藏的蓝龙鳞片", "name_es_ES": "Escama de dragón azul conservada", "name_ru_RU": "Сохранившаяся чешуйка синего дракона", "name_it_IT": "Scaglia di Drago Blu Conservata", "name_pt_PT": "Escama de Dragão Azul Preservada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121015, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Academy Faculty Pin", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 221853, "buy_price": 1109268, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Academy Faculty Pin", "name_ko_KR": "대학 교직원 핀", "name_fr_FR": "Epingle de la faculté de l'académie", "name_de_DE": "Anstecknadel der akademischen Fakultät", "name_zh_CN": "学院教员胸针", "name_es_ES": "Alfiler de profesor de la Academia", "name_ru_RU": "Булавка преподавательницы академии", "name_it_IT": "Spilla da Professore dell'Accademia", "name_pt_PT": "Broche de Professor Universitário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corsair's Spyglass", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 222699, "buy_price": 1113497, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9742000102996826, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Corsair's Spyglass", "name_ko_KR": "해적의 망원경", "name_fr_FR": "Longue-vue de corsaire", "name_de_DE": "Fernrohr des Korsaren", "name_zh_CN": "海盗的望远镜", "name_es_ES": "Catalejo de corsario", "name_ru_RU": "Подзорная труба корсара", "name_it_IT": "Cannocchiale del Corsaro", "name_pt_PT": "Luneta do Corsário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121069, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brulwurm Scale", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 239615, "buy_price": 1198078, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048200011253357, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Brulwurm Scale", "name_ko_KR": "브룰용 비늘", "name_fr_FR": "Ecaille de verbrouf", "name_de_DE": "Brulwurmschuppe", "name_zh_CN": "双生虫鳞片", "name_es_ES": "Escama de Brulgusano", "name_ru_RU": "Чешуйка червебрула", "name_it_IT": "Scaglia di Vermebrul", "name_pt_PT": "Escama de Minholesk", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121070, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hexweaver's Charm", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217556, "buy_price": 1087780, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95169997215271, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Hexweaver's Charm", "name_ko_KR": "사술사의 부적", "name_fr_FR": "Charme de trame-sort", "name_de_DE": "Glücksbringer der Fluchweberin", "name_zh_CN": "妖术师的护身符", "name_es_ES": "Talismán de tejemales", "name_ru_RU": "Талисман проклинательницы", "name_it_IT": "Talismano del Tessimalocchio", "name_pt_PT": "Patuá do Tramandinga", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121071, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enchanted Roc Feather", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218401, "buy_price": 1092009, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Enchanted Roc Feather", "name_ko_KR": "마법 깃든 로크 깃털", "name_fr_FR": "Plume de roc enchantée", "name_de_DE": "Verzauberte Rocfeder", "name_zh_CN": "魔化鹏羽", "name_es_ES": "Pluma de roc encantada", "name_ru_RU": "Зачарованное перо руха", "name_it_IT": "Piuma di Grifalco Incantata", "name_pt_PT": "Pena de Roca Encantada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121124, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormforged Idol", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218493, "buy_price": 1092466, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormforged Idol", "name_ko_KR": "폭풍으로 벼려낸 우상", "name_fr_FR": "Idole de Forge-foudre", "name_de_DE": "Sturmgeschmiedeter Götze", "name_zh_CN": "雷铸雕像", "name_es_ES": "Ídolo Tronaforjado", "name_ru_RU": "Закаленный бурей идол", "name_it_IT": "Idolo dei Forgiatuono", "name_pt_PT": "Ídolo Forjado em Tempestade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121125, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune-Etched Bark", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 219339, "buy_price": 1096695, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595000147819519, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Rune-Etched Bark", "name_ko_KR": "룬이 새겨진 나무껍질", "name_fr_FR": "Ecorce gravée de runes", "name_de_DE": "Runenverzierte Borke", "name_zh_CN": "符文蚀刻树皮", "name_es_ES": "Corteza con runas grabadas", "name_ru_RU": "Кора с вырезанными рунами", "name_it_IT": "Corteccia con Rune Intagliate", "name_pt_PT": "Casca Entalhada com Runas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121126, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormwing Tail Tip", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 220184, "buy_price": 1100924, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9631999731063843, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormwing Tail Tip", "name_ko_KR": "폭풍날개 꼬리 끄트머리", "name_fr_FR": "Extrémité de queue d'aile-tempête", "name_de_DE": "Sturmschwingenschwanzende", "name_zh_CN": "风暴之翼尾尖", "name_es_ES": "Punta de cola de Alatormenta", "name_ru_RU": "Чешуйка штормокрыла", "name_it_IT": "Punta di Coda di Alatempestosa", "name_pt_PT": "Ponta de Cauda de Asatempéria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121179, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Malorne", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 237078, "buy_price": 1185391, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0370999574661255, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mark of Malorne", "name_ko_KR": "말로른의 징표", "name_fr_FR": "Marque de Malorne", "name_de_DE": "Mal von Malorne", "name_zh_CN": "玛洛恩印记", "name_es_ES": "Marca de Malorne", "name_ru_RU": "Знак Малорна", "name_it_IT": "Marchio di Malorne", "name_pt_PT": "Marca de Malorne", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121180, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Lore", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 237924, "buy_price": 1189620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0407999753952026, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mark of Lore", "name_ko_KR": "지식의 징표", "name_fr_FR": "Marque du savoir", "name_de_DE": "Mal der Lehren", "name_zh_CN": "知识印记", "name_es_ES": "Marca de conocimiento", "name_ru_RU": "Знак мудрости", "name_it_IT": "Marchio della Conoscenza", "name_pt_PT": "Marca da Tradição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mangler's Mark", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 238769, "buy_price": 1193849, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0444999933242798, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mangler's Mark", "name_ko_KR": "분쇄자의 징표", "name_fr_FR": "Marque de mutilateur", "name_de_DE": "Mal des Zerfleischers", "name_zh_CN": "绞肉者印记", "name_es_ES": "Marca del mutilador", "name_ru_RU": "Знак уничтожителя", "name_it_IT": "Marchio del Dilaniatore", "name_pt_PT": "Marca do Mutilador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121234, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Koralune Keepsake", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 232803, "buy_price": 1164017, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.018399953842163, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Koralune Keepsake", "name_ko_KR": "코랄룬 기념품", "name_fr_FR": "Souvenir de Koralune", "name_de_DE": "Andenken der Koralune", "name_zh_CN": "库拉伦纪念品", "name_es_ES": "Recuerdo de Koralune", "name_ru_RU": "Коралунский сувенир", "name_it_IT": "Pegno di Koralune", "name_pt_PT": "Lembrança Koraluna", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121235, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sashj'tar Brooch", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 233649, "buy_price": 1168246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sashj'tar Brooch", "name_ko_KR": "사쉬즈타르 브로치", "name_fr_FR": "Broche sashj'tar", "name_de_DE": "Brosche der Sashj'tar", "name_zh_CN": "萨吉塔胸针", "name_es_ES": "Broche Sashj'tar", "name_ru_RU": "Садж'тарская брошь", "name_it_IT": "Spilla dei Sashj'tar", "name_pt_PT": "Broche Sashj'tar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121236, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dawnswood Hunter's Fletchings", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 234472, "buy_price": 1172361, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0256999731063843, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Dawnswood Hunter's Fletchings", "name_ko_KR": "새벽숲 사냥꾼의 화살 깃", "name_fr_FR": "Empennages de chasseur d'Aubesylve", "name_de_DE": "Pfeilfedern des Morgenforstjägers", "name_zh_CN": "晨曦林地猎手箭羽", "name_es_ES": "Remates del cazador Bosque del Alba", "name_ru_RU": "Оперение стрелы охотника Рассветного леса", "name_it_IT": "Penne di Frecce del Cacciatore di Bosco d'Alba", "name_pt_PT": "Flechas do Caçador da Floresta da Aurora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121287, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightmare Bark", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 304911, "buy_price": 1524557, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightmare Bark", "name_ko_KR": "악몽 나무껍질", "name_fr_FR": "Ecorce cauchemardesque", "name_de_DE": "Alptraumborke", "name_zh_CN": "梦魇树皮", "name_es_ES": "Corteza de la Pesadilla", "name_ru_RU": "Кора Кошмара", "name_it_IT": "Corteccia dell'Incubo", "name_pt_PT": "Casca do Pesadelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightmare Thorn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 308173, "buy_price": 1540868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0297000408172607, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightmare Thorn", "name_ko_KR": "악몽 가시", "name_fr_FR": "Epine cauchemardesque", "name_de_DE": "Alptraumdorn", "name_zh_CN": "梦魇之棘", "name_es_ES": "Espina de la Pesadilla", "name_ru_RU": "Шип Кошмара", "name_it_IT": "Spina dell'Incubo", "name_pt_PT": "Espinho do Pesadelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightmare Bloom", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 309251, "buy_price": 1546255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0333000421524048, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightmare Bloom", "name_ko_KR": "악몽 꽃", "name_fr_FR": "Floraison cauchemardesque", "name_de_DE": "Alptraumblüte", "name_zh_CN": "梦魇花蕾", "name_es_ES": "Corola de la Pesadilla", "name_ru_RU": "Кошмарный цветок", "name_it_IT": "Germoglio dell'Incubo", "name_pt_PT": "Flor do Pesadelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121489, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valiana's Secret Recipe", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420811, "buy_price": 2104059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9776999950408936, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Valiana's Secret Recipe", "name_ko_KR": "발리아나의 양조 비법", "name_fr_FR": "Recette secrète de Valiana", "name_de_DE": "Valianas Geheimrezept", "name_zh_CN": "瓦里亚娜的秘方", "name_es_ES": "Receta secreta de Valiana", "name_ru_RU": "Тайный рецепт Валианы", "name_it_IT": "Ricetta Segreta di Valiana", "name_pt_PT": "Receita Secreta de Valiana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Precious Ookin' Coin", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72426, "buy_price": 362134, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9814000129699707, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Precious Ookin' Coin", "name_ko_KR": "소중한 우끼끼 동전", "name_fr_FR": "Pièce précieuse oukarde", "name_de_DE": "Verfiddelt wertvolle Münze", "name_zh_CN": "乌克的宝贝硬币", "name_es_ES": "Moneda dingue preciosa", "name_ru_RU": "Драгоценная монета Уки", "name_it_IT": "Moneta Preziosa dell'Uggatore", "name_pt_PT": "Moeda Fedida Preciosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121491, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shalrala's Engraved Goblet", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72700, "buy_price": 363500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850999712944031, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Shalrala's Engraved Goblet", "name_ko_KR": "샬랄라의 문양이 새겨진 술잔", "name_fr_FR": "Coupe ouvragée de Shalrala", "name_de_DE": "Shalralas gravierter Kelch", "name_zh_CN": "莎莱拉的雕饰酒杯", "name_es_ES": "Cáliz grabado de Shalrala", "name_ru_RU": "Чеканный кубок Шалралы", "name_it_IT": "Calice Inciso di Shalrala", "name_pt_PT": "Cálice Entalhado de Shalrala", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiny Ookin' Bauble", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72965, "buy_price": 364828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886999726295471, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Shiny Ookin' Bauble", "name_ko_KR": "반짝이는 장식품", "name_fr_FR": "Babiole brillante oukarde", "name_de_DE": "Verfiddelte Glänzkugel", "name_zh_CN": "乌克的闪光饰品", "name_es_ES": "Adorno dingue lustroso", "name_ru_RU": "Блестящая безделушка Уки", "name_it_IT": "Bolla dell'Uggatore Luccicante", "name_pt_PT": "Bibelô Fedido Brilhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121493, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Liastrin's Wine Taster", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 427138, "buy_price": 2135694, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9923999905586243, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Liastrin's Wine Taster", "name_ko_KR": "리아스트린의 와인 시음기", "name_fr_FR": "Tâte-vin de Liastrin", "name_de_DE": "Liastrins Weinverkoster", "name_zh_CN": "莉娅丝汀的试酒碟", "name_es_ES": "Catador de vinos de Liastrin", "name_ru_RU": "Дегустатор вина Лиастрин", "name_it_IT": "Assaggia Vino di Liastrin", "name_pt_PT": "Provador de Vinho de Liastrin", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121494, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mundane Ookin' Curio", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75467, "buy_price": 377337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226000547409058, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mundane Ookin' Curio", "name_ko_KR": "무난한 우끼끼 장식", "name_fr_FR": "Bibelot quelconque oukard", "name_de_DE": "Normal verfiddelte Kuriosität", "name_zh_CN": "乌克的普通古玩", "name_es_ES": "Bibelot dingue corriente", "name_ru_RU": "Обычная безделушка Уки", "name_it_IT": "Rarità dell'Uggatore", "name_pt_PT": "Treco Fedido Mundano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121568, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blessing of the Banshee Queen", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 516492, "buy_price": 2582460, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Blessing of the Banshee Queen", "name_ko_KR": "밴시 여왕의 축복", "name_fr_FR": "Bénédiction de la reine banshee", "name_de_DE": "Segen der Bansheekönigin", "name_zh_CN": "女妖之王的祝福", "name_es_ES": "Bendición de la Reina Alma en Pena", "name_ru_RU": "Благословение Королевы-банши", "name_it_IT": "Benedizione della Regina Banshee", "name_pt_PT": "Bênção da Rainha Banshee", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121570, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of the Forsaken", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89214, "buy_price": 446074, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0074000358581543, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Might of the Forsaken", "name_ko_KR": "포세이큰의 힘", "name_fr_FR": "Puissance des Réprouvés", "name_de_DE": "Macht der Verlassenen", "name_zh_CN": "被遗忘者之力", "name_es_ES": "Poder de los Renegados", "name_ru_RU": "Сила Отрекшихся", "name_it_IT": "Vigore del Reietto", "name_pt_PT": "Poder dos Renegados", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sylvanas' Barbed Arrow", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89861, "buy_price": 449306, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0147000551223755, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sylvanas' Barbed Arrow", "name_ko_KR": "실바나스의 가시 화살", "name_fr_FR": "Flèche barbelée de Sylvanas", "name_de_DE": "Sylvanas' gezackter Pfeil", "name_zh_CN": "希尔瓦娜斯的倒钩箭", "name_es_ES": "Flecha dentada de Sylvanas", "name_ru_RU": "Стрела Сильваны с зазубренным наконечником", "name_it_IT": "Freccia Uncinata di Sylvanas", "name_pt_PT": "Flecha Serrilhada de Sylvana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Temple Priestess' Charm", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75445, "buy_price": 377226, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0223000049591064, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Temple Priestess' Charm", "name_ko_KR": "사원 여사제의 부적", "name_fr_FR": "Charme de prêtresse du temple", "name_de_DE": "Talisman der Tempelpriesterin", "name_zh_CN": "神殿女祭司的护符", "name_es_ES": "Talismán de la sacerdotisa del templo", "name_ru_RU": "Амулет жрицы храма", "name_it_IT": "Talismano della Sacerdotessa del Tempio", "name_pt_PT": "Patuá da Sacerdotisa do Templo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121649, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vibrant Temple Masonry", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75991, "buy_price": 379957, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0297000408172607, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Vibrant Temple Masonry", "name_ko_KR": "생동감 넘치는 사원 석조 장식", "name_fr_FR": "Pierre de construction de temple éclatante", "name_de_DE": "Mauerwerk des prächtigen Tempels", "name_zh_CN": "震颤的神殿石砖", "name_es_ES": "Mampostería del templo radiante", "name_ru_RU": "Яркие камни храма", "name_it_IT": "Muratura Vibrante del Tempio", "name_pt_PT": "Alvenaria Vibrante do Templo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121651, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkfiend Dreadbringer Horn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446335, "buy_price": 2231675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0369999408721924, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Darkfiend Dreadbringer Horn", "name_ko_KR": "어둠마귀 공포인도자 뿔", "name_fr_FR": "Corne de porteffroi sombrefiel", "name_de_DE": "Horn des Verdammnisbringers der Schattenteufel", "name_zh_CN": "暗魔恐怖使者的角", "name_es_ES": "Cuerno de extiendevapor maligno oscuro", "name_ru_RU": "Рог мракобеса-ужасня", "name_it_IT": "Corno dell'Araldo del Terrore Cuortruce", "name_pt_PT": "Chifre de Deimarauto Demonero", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121652, "race_mask": 18446744073709551615, "desc": "It held on till the bitter end.", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Leaf", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 846, "buy_price": 4231, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0406999588012695, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ancient Leaf", "name_ko_KR": "고대의 잎사귀", "name_fr_FR": "Feuille ancienne", "name_de_DE": "Uraltes Blatt", "name_zh_CN": "远古树叶", "name_es_ES": "Hoja vieja", "name_ru_RU": "Древний лист", "name_it_IT": "Antica Foglia", "name_pt_PT": "Folha Antiga", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Navarrogg's Guidance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77091, "buy_price": 385455, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Navarrogg's Guidance", "name_ko_KR": "나바로그의 인도", "name_fr_FR": "Soutien de Navarrogg", "name_de_DE": "Navarroggs Führung", "name_zh_CN": "纳瓦罗格的指引", "name_es_ES": "Consejo de Navarrogg", "name_ru_RU": "Наставление Наваррогга", "name_it_IT": "Guida di Navarrogg", "name_pt_PT": "Orientação de Navarrogg", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cleansed Poison Idol", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77364, "buy_price": 386820, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cleansed Poison Idol", "name_ko_KR": "정화된 독 우상", "name_fr_FR": "Idole empoisonnée purifiée", "name_de_DE": "Geläuterter Giftgötze", "name_zh_CN": "净化的剧毒雕像", "name_es_ES": "Ídolo de veneno purificado", "name_ru_RU": "Очищенный ядовитый идол", "name_it_IT": "Idolo Velenoso Purificato", "name_pt_PT": "Ídolo Venenoso Purificado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121728, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stonedark Insignia", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 409707, "buy_price": 2048536, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9519000053405762, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stonedark Insignia", "name_ko_KR": "돌어둠 휘장", "name_fr_FR": "Insigne sombre-pierre", "name_de_DE": "Dunkelsteininsignien", "name_zh_CN": "黯石徽章", "name_es_ES": "Insignia Piedra Lóbrega", "name_ru_RU": "Знак племени Темного Камня", "name_it_IT": "Fregio di Pietrascura", "name_pt_PT": "Insígnia Pedrescura", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121729, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ormgul's Bug Sprayer", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70515, "buy_price": 352577, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9555000066757202, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ormgul's Bug Sprayer", "name_ko_KR": "오름굴의 벌레 분무기", "name_fr_FR": "Pulvérisateur à insectes d'Ormgul", "name_de_DE": "Ormguls Käferspray", "name_zh_CN": "奥姆古尔的杀虫剂", "name_es_ES": "Pulverizador de insectos de Ormgul", "name_ru_RU": "Опрыскиватель Ормгула", "name_it_IT": "Repellente di Ormgul", "name_pt_PT": "Borrifador para Insetos de Ormgul", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121730, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ironbull's Sacrifice", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 412849, "buy_price": 2064246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592000246047974, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ironbull's Sacrifice", "name_ko_KR": "아이언불의 희생", "name_fr_FR": "Sacrifice de Buffle-de-Fer", "name_de_DE": "Eisenstiers Opfer", "name_zh_CN": "铁牛的牺牲", "name_es_ES": "Sacrificio de Asta Férrea", "name_ru_RU": "Жертва Железного Быка", "name_it_IT": "Toro Ferreo Sacrificale", "name_pt_PT": "Sacrifício do Touro de Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121731, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Poison-Resistant Pumpkin", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 414441, "buy_price": 2072208, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9628999829292297, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Poison-Resistant Pumpkin", "name_ko_KR": "독 저항 호박", "name_fr_FR": "Potiron résistant aux poisons", "name_de_DE": "Giftresistenter Kürbis", "name_zh_CN": "抗毒南瓜", "name_es_ES": "Calabaza resistente al veneno", "name_ru_RU": "Устойчивая к яду тыква", "name_it_IT": "Zucca Resistente al Veleno", "name_pt_PT": "Abóbora Resistente a Veneno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121806, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountain Rage Shaker", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 205107, "buy_price": 1025537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Mountain Rage Shaker", "name_ko_KR": "산의 분노 진동기", "name_fr_FR": "Hochet de rage de la montagne", "name_de_DE": "Bergzornerschütterer", "name_zh_CN": "群山的震怒", "name_es_ES": "Enfurecedor de montaña", "name_ru_RU": "Гневный сотрясатель гор", "name_it_IT": "Scuotirabbia della Montagna", "name_pt_PT": "Chocalho de Raiva da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121808, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nether Conductors", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 206650, "buy_price": 1033251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Nether Conductors", "name_ko_KR": "황천의 전도체", "name_fr_FR": "Conducteurs du Néant", "name_de_DE": "Netherleiter", "name_zh_CN": "虚空导体", "name_es_ES": "Conductores abisales", "name_ru_RU": "Проводники Пустоты", "name_it_IT": "Conduttori Fatui", "name_pt_PT": "Condutores Etéreos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pocket Void Portal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1367, "buy_price": 6838, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Pocket Void Portal", "name_ko_KR": "휴대용 공허의 차원문", "name_fr_FR": "Portail du Vide de poche", "name_de_DE": "Miniatur-Leerenportal", "name_zh_CN": "便携式虚空传送门", "name_es_ES": "Portal del Vacío de bolsillo", "name_ru_RU": "Карманные врата Бездны", "name_it_IT": "Portale del Vuoto Tascabile", "name_pt_PT": "Portal do Caos de Bolso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121848, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74102, "buy_price": 370511, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.00409996509552, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Inexorable Stone of Battle", "name_ko_KR": "전투의 거침없는 돌", "name_fr_FR": "Pierre de bataille inexorable", "name_de_DE": "Unerbittlicher Stein des Kampfes", "name_zh_CN": "严酷战争之石", "name_es_ES": "Piedra de batalla inexorable", "name_ru_RU": "Негнущийся камень битвы", "name_it_IT": "Pietra della Battaglia Inflessibile", "name_pt_PT": "Pedra Inexorável de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74375, "buy_price": 371876, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0077999830245972, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Inexorable Idol of Battle", "name_ko_KR": "전투의 거침없는 우상", "name_fr_FR": "Idole de bataille inexorable", "name_de_DE": "Unerbittlicher Götze des Kampfes", "name_zh_CN": "严酷战争雕像", "name_es_ES": "Ídolo de batalla inexorable", "name_ru_RU": "Негнущийся идол битвы", "name_it_IT": "Idolo della Battaglia Inflessibile", "name_pt_PT": "Ídolo Inexorável de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121852, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75187, "buy_price": 375935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Inexorable Defender Idol", "name_ko_KR": "거침없는 수호 우상", "name_fr_FR": "Idole de défenseur inexorable", "name_de_DE": "Unerbittlicher Verteidigergötze", "name_zh_CN": "严酷防御者雕像", "name_es_ES": "Ídolo defensor inexorable", "name_ru_RU": "Негнущийся идол защитника", "name_it_IT": "Idolo della Difesa Inflessibile", "name_pt_PT": "Ídolo Protetor Inexorável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121855, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75998, "buy_price": 379994, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298000574111938, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Inexorable Defender Stone", "name_ko_KR": "거침없는 수호 돌", "name_fr_FR": "Pierre de défenseur inexorable", "name_de_DE": "Unerbittlicher Verteidigerstein", "name_zh_CN": "严酷防御者之石", "name_es_ES": "Piedra defensora inexorable", "name_ru_RU": "Негнущийся камень защитника", "name_it_IT": "Pietra della Difesa Inflessibile", "name_pt_PT": "Pedra Inexorável Protetora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121860, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77356, "buy_price": 386783, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048200011253357, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Idol of Rage", "name_ko_KR": "분노의 양육자 우상", "name_fr_FR": "Idole de rage nourricière", "name_de_DE": "Fürsorgergötze des Zorns", "name_zh_CN": "滋养者狂暴雕像", "name_es_ES": "Ídolo de ira nutricio", "name_ru_RU": "Воспитательский идол ярости", "name_it_IT": "Idolo della Rabbia Corroborante", "name_pt_PT": "Ídolo da Raiva do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121863, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70781, "buy_price": 353906, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9591000080108643, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Stone of Rage", "name_ko_KR": "분노의 양육자 돌", "name_fr_FR": "Pierre de rage nourricière", "name_de_DE": "Fürsorgerstein des Zorns", "name_zh_CN": "滋养者狂暴之石", "name_es_ES": "Piedra de ira nutricia", "name_ru_RU": "Воспитательский камень ярости", "name_it_IT": "Pietra della Rabbia Corroborante", "name_pt_PT": "Pedra da Raiva do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121866, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Idol of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73548, "buy_price": 367743, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Idol of Durability", "name_ko_KR": "내구성의 양육자 우상", "name_fr_FR": "Idole de durabilité nourricière", "name_de_DE": "Fürsorgergötze der Haltbarkeit", "name_zh_CN": "滋养者坚韧雕像", "name_es_ES": "Ídolo de durabilidad nutricio", "name_ru_RU": "Воспитательский прочный идол", "name_it_IT": "Idolo dell'Integrità Corroborante", "name_pt_PT": "Ídolo da Durabilidade do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121869, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Stone of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74360, "buy_price": 371802, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007599949836731, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Stone of Durability", "name_ko_KR": "내구성의 양육자 돌", "name_fr_FR": "Pierre de durabilité nourricière", "name_de_DE": "Fürsorgerstein der Haltbarkeit", "name_zh_CN": "滋养者坚韧之石", "name_es_ES": "Piedra de durabilidad nutricia", "name_ru_RU": "Воспитательский камень прочности", "name_it_IT": "Pietra dell'Integrità Corroborante", "name_pt_PT": "Pedra da Durabilidade do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121876, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76257, "buy_price": 381285, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0333000421524048, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Idol of Destruction", "name_ko_KR": "파괴의 양육자 우상", "name_fr_FR": "Idole de destruction nourricière", "name_de_DE": "Fürsorgergötze der Zerstörung", "name_zh_CN": "滋养者毁灭雕像", "name_es_ES": "Ídolo de destrucción nutricio", "name_ru_RU": "Воспитательский идол разрушения", "name_it_IT": "Idolo della Distruzione Corroborante", "name_pt_PT": "Ídolo da Destruição do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77076, "buy_price": 385381, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0443999767303467, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Stone of Destruction", "name_ko_KR": "파괴의 양육자 돌", "name_fr_FR": "Pierre de destruction nourricière", "name_de_DE": "Fürsorgerstein der Zerstörung", "name_zh_CN": "滋养者毁灭之石", "name_es_ES": "Piedra de destrucción nutricia", "name_ru_RU": "Воспитательский камень разрушения", "name_it_IT": "Pietra della Distruzione Corroborante", "name_pt_PT": "Pedra da Destruição do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121882, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72456, "buy_price": 362282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818000197410583, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Idol of Wisdom", "name_ko_KR": "지혜의 양육자 우상", "name_fr_FR": "Idole de sagesse nourricière", "name_de_DE": "Fürsorgergötze der Weisheit", "name_zh_CN": "滋养者智慧雕像", "name_es_ES": "Ídolo de sabiduría nutricio", "name_ru_RU": "Воспитательский идол мудрости", "name_it_IT": "Idolo della Saggezza Corroborante", "name_pt_PT": "Ídolo da Sabedoria do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121885, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73268, "buy_price": 366341, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9927999973297119, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Stone of Wisdom", "name_ko_KR": "지혜의 양육자 돌", "name_fr_FR": "Pierre de sagesse nourricière", "name_de_DE": "Fürsorgerstein der Weisheit", "name_zh_CN": "滋养者智慧之石", "name_es_ES": "Piedra de sabiduría nutricia", "name_ru_RU": "Воспитательский камень мудрости", "name_it_IT": "Pietra della Saggezza Corroborante", "name_pt_PT": "Pedra da Sabedoria do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121892, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warscout Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75164, "buy_price": 375824, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0184999704360962, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warscout Idol of Rage", "name_ko_KR": "분노의 전쟁정찰병 우상", "name_fr_FR": "Idole de rage d'éclaireur de guerre", "name_de_DE": "Kriegsspähergötze des Zorns", "name_zh_CN": "战地斥候狂暴雕像", "name_es_ES": "Ídolo de ira de explorador de guerra", "name_ru_RU": "Идол ярости военного разведчика", "name_it_IT": "Idolo della Rabbia dell'Avanscoperta", "name_pt_PT": "Ídolo da Raiva do Batedor da Guerra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121895, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warscout Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75976, "buy_price": 379883, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0295000076293945, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warscout Stone of Rage", "name_ko_KR": "분노의 전쟁정찰병 돌", "name_fr_FR": "Pierre de rage d'éclaireur de guerre", "name_de_DE": "Kriegsspäherstein des Zorns", "name_zh_CN": "战地斥候狂暴之石", "name_es_ES": "Piedra de ira de explorador de guerra", "name_ru_RU": "Камень ярости военного разведчика", "name_it_IT": "Pietra della Rabbia dell'Avanscoperta", "name_pt_PT": "Pedra da Raiva do Batedor da Guerra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121909, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Abstruse Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74345, "buy_price": 371728, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0074000358581543, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Abstruse Idol of Destruction", "name_ko_KR": "파괴의 난해한 우상", "name_fr_FR": "Idole de destruction abstruse", "name_de_DE": "Abstruser Götze der Zerstörung", "name_zh_CN": "晦涩毁灭雕像", "name_es_ES": "Ídolo de destrucción abstruso", "name_ru_RU": "Неясный идол разрушения", "name_it_IT": "Idolo della Distruzione Astruso", "name_pt_PT": "Ídolo Abstruso da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121912, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Abstruse Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77113, "buy_price": 385566, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0448999404907227, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Abstruse Stone of Destruction", "name_ko_KR": "파괴의 난해한 돌", "name_fr_FR": "Pierre de destruction abstruse", "name_de_DE": "Abstruser Stein der Zerstörung", "name_zh_CN": "晦涩毁灭之石", "name_es_ES": "Piedra de destrucción abstrusa", "name_ru_RU": "Неясный камень разрушения", "name_it_IT": "Pietra della Distruzione Astrusa", "name_pt_PT": "Pedra Abstrusa da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121924, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72980, "buy_price": 364902, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9889000058174133, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Defender Stone", "name_ko_KR": "조화로운 수호 돌", "name_fr_FR": "Pierre de défenseur harmonieuse", "name_de_DE": "Harmonischer Verteidigerstein", "name_zh_CN": "谐律防御者之石", "name_es_ES": "Piedra defensora armoniosa", "name_ru_RU": "Гармоничный камень защитника", "name_it_IT": "Pietra della Difesa Armoniosa", "name_pt_PT": "Pedra Harmoniosa Protetora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121925, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73246, "buy_price": 366230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Defender Idol", "name_ko_KR": "조화로운 수호 우상", "name_fr_FR": "Idole de défenseur harmonieuse", "name_de_DE": "Harmonischer Verteidigergötze", "name_zh_CN": "谐律防御者雕像", "name_es_ES": "Ídolo defensor armonioso", "name_ru_RU": "Гармоничный идол защитника", "name_it_IT": "Idolo della Difesa Armonioso", "name_pt_PT": "Ídolo Harmonioso do Defensor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121934, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70257, "buy_price": 351286, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520000219345093, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Idol of Wisdom", "name_ko_KR": "지혜의 조화로운 우상", "name_fr_FR": "Idole de sagesse harmonieuse", "name_de_DE": "Harmonischer Götze der Weisheit", "name_zh_CN": "谐律智慧雕像", "name_es_ES": "Ídolo de sabiduría armonioso", "name_ru_RU": "Гармоничный идол мудрости", "name_it_IT": "Idolo della Saggezza Armonioso", "name_pt_PT": "Ídolo Harmonioso da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121936, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70795, "buy_price": 353979, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592999815940857, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Stone of Wisdom", "name_ko_KR": "지혜의 조화로운 돌", "name_fr_FR": "Pierre de sagesse harmonieuse", "name_de_DE": "Harmonischer Stein der Weisheit", "name_zh_CN": "谐律智慧之石", "name_es_ES": "Piedra de sabiduría armoniosa", "name_ru_RU": "Гармоничный камень мудрости", "name_it_IT": "Pietra della Saggezza Armoniosa", "name_pt_PT": "Pedra Harmoniosa da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121939, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 71615, "buy_price": 358075, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9703999757766724, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Idol of Rage", "name_ko_KR": "분노의 조화로운 우상", "name_fr_FR": "Idole de rage harmonieuse", "name_de_DE": "Harmonischer Götze des Zorns", "name_zh_CN": "谐律狂暴雕像", "name_es_ES": "Ídolo de ira armonioso", "name_ru_RU": "Гармоничный идол ярости", "name_it_IT": "Idolo della Rabbia Armonioso", "name_pt_PT": "Ídolo Harmonioso da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121941, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72153, "buy_price": 360769, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9776999950408936, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Stone of Rage", "name_ko_KR": "분노의 조화로운 돌", "name_fr_FR": "Pierre de rage harmonieuse", "name_de_DE": "Harmonischer Stein des Zorns", "name_zh_CN": "谐律狂暴之石", "name_es_ES": "Piedra de ira armoniosa", "name_ru_RU": "Гармоничный камень ярости", "name_it_IT": "Pietra della Rabbia Armoniosa", "name_pt_PT": "Pedra Harmoniosa da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121949, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76279, "buy_price": 381396, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Idol of Wisdom", "name_ko_KR": "지혜의 황혼파괴자 우상", "name_fr_FR": "Idole de sagesse brise-pénombre", "name_de_DE": "Dämmerbrechergötze der Weisheit", "name_zh_CN": "破晓者智慧雕像", "name_es_ES": "Ídolo de sabiduría de rompeocasos", "name_ru_RU": "Идол мудрости рассеивающего сумерки", "name_it_IT": "Idolo della Saggezza Crepuscolare", "name_pt_PT": "Ídolo Quebranoite da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121952, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77091, "buy_price": 385455, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Stone of Wisdom", "name_ko_KR": "지혜의 황혼파괴자 돌", "name_fr_FR": "Pierre de sagesse brise-pénombre", "name_de_DE": "Dämmerbrecherstein der Weisheit", "name_zh_CN": "破晓者智慧之石", "name_es_ES": "Piedra de sabiduría de rompeocasos", "name_ru_RU": "Камень мудрости рассеивающего сумерки", "name_it_IT": "Pietra della Saggezza Crepuscolare", "name_pt_PT": "Pedra Quebranoite da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73829, "buy_price": 369145, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003999471664429, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Stone of Battle", "name_ko_KR": "전투의 황혼파괴자 돌", "name_fr_FR": "Pierre de bataille brise-pénombre", "name_de_DE": "Dämmerbrecherstein des Kampfes", "name_zh_CN": "破晓者战争之石", "name_es_ES": "Piedra de batalla de rompeocasos", "name_ru_RU": "Камень битвы рассеивающего сумерки", "name_it_IT": "Pietra della Battaglia Crepuscolare", "name_pt_PT": "Pedra Quebranoite de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121961, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74102, "buy_price": 370511, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.00409996509552, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Idol of Battle", "name_ko_KR": "전투의 황혼파괴자 우상", "name_fr_FR": "Idole de bataille brise-pénombre", "name_de_DE": "Dämmerbrechergötze des Kampfes", "name_zh_CN": "破晓者战争雕像", "name_es_ES": "Ídolo de batalla de rompeocasos", "name_ru_RU": "Идол битвы рассеивающего сумерки", "name_it_IT": "Idolo della Battaglia Crepuscolare", "name_pt_PT": "Ídolo Quebranoite de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121964, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74914, "buy_price": 374570, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Defender Idol", "name_ko_KR": "황혼파괴자 수호 우상", "name_fr_FR": "Idole de défenseur brise-pénombre", "name_de_DE": "Dämmerbrechergötze des Verteidigers", "name_zh_CN": "破晓者卫士雕像", "name_es_ES": "Ídolo defensor de rompeocasos", "name_ru_RU": "Идол защитника рассеивающего сумерки", "name_it_IT": "Idolo della Difesa Crepuscolare", "name_pt_PT": "Ídolo Quebranoite do Defensor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121967, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75725, "buy_price": 378629, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0261000394821167, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Defender Stone", "name_ko_KR": "황혼파괴자 수호 돌", "name_fr_FR": "Pierre de défenseur brise-pénombre", "name_de_DE": "Dämmerbrecherstein des Verteidigers", "name_zh_CN": "破晓者卫士之石", "name_es_ES": "Piedra defensora de rompeocasos", "name_ru_RU": "Камень защитника рассеивающего сумерки", "name_it_IT": "Pietra della Difesa Crepuscolare", "name_pt_PT": "Pedra Quebranoite Protetora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121975, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulward Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70508, "buy_price": 352540, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Soulward Idol of Destruction", "name_ko_KR": "파괴의 영혼파수꾼 우상", "name_fr_FR": "Idole de destruction garde-âme", "name_de_DE": "Seelenschützergötze der Zerstörung", "name_zh_CN": "护魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de resguardo de alma", "name_ru_RU": "Душеспасительный идол разрушения", "name_it_IT": "Idolo della Distruzione Tutelare", "name_pt_PT": "Ídolo Guardalma da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulward Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73275, "buy_price": 366378, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.992900013923645, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Soulward Stone of Destruction", "name_ko_KR": "파괴의 영혼파수꾼 돌", "name_fr_FR": "Pierre de destruction garde-âme", "name_de_DE": "Seelenschützerstein der Zerstörung", "name_zh_CN": "护魂毁灭之石", "name_es_ES": "Piedra de destrucción de resguardo de alma", "name_ru_RU": "Душеспасительный камень разрушения", "name_it_IT": "Pietra della Distruzione Tutelare", "name_pt_PT": "Pedra Guardalma da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121981, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulward Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74094, "buy_price": 370474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Soulward Idol of Wisdom", "name_ko_KR": "지혜의 영혼파수꾼 우상", "name_fr_FR": "Idole de sagesse garde-âme", "name_de_DE": "Seelenschützergötze der Weisheit", "name_zh_CN": "护魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de resguardo de alma", "name_ru_RU": "Душеспасительный идол мудрости", "name_it_IT": "Idolo della Saggezza Tutelare", "name_pt_PT": "Ídolo Guardalma da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulward Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74906, "buy_price": 374533, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0149999856948853, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Soulward Stone of Wisdom", "name_ko_KR": "지혜의 영혼파수꾼 돌", "name_fr_FR": "Pierre de sagesse garde-âme", "name_de_DE": "Seelenschützerstein der Weisheit", "name_zh_CN": "护魂智慧之石", "name_es_ES": "Piedra de sabiduría de resguardo de alma", "name_ru_RU": "Душеспасительный камень мудрости", "name_it_IT": "Pietra della Saggezza Tutelare", "name_pt_PT": "Pedra Guardalma da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121992, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skulldugger Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 71644, "buy_price": 358223, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.97079998254776, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Skulldugger Idol of Rage", "name_ko_KR": "분노의 해골추적자 우상", "name_fr_FR": "Idole de rage d'arnaqueur", "name_de_DE": "Betrügergötze des Zorns", "name_zh_CN": "凿颅者狂暴雕像", "name_es_ES": "Ídolo de ira de fullero", "name_ru_RU": "Идол ярости мошенника", "name_it_IT": "Idolo della Rabbia Spaccacrani", "name_pt_PT": "Ídolo Trapaçaveira da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skulldugger Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72456, "buy_price": 362282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818000197410583, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Skulldugger Stone of Rage", "name_ko_KR": "분노의 해골추적자 돌", "name_fr_FR": "Pierre de rage d'arnaqueur", "name_de_DE": "Betrügerstein des Zorns", "name_zh_CN": "凿颅者狂暴之石", "name_es_ES": "Piedra de ira de fullero", "name_ru_RU": "Камень ярости мошенника", "name_it_IT": "Pietra della Rabbia Spaccacrani", "name_pt_PT": "Pedra Trapaçaveira da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122006, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75437, "buy_price": 377189, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Idol of Rage", "name_ko_KR": "분노의 폭풍탐구자 우상", "name_fr_FR": "Idole de rage cherche-tempête", "name_de_DE": "Sturmsuchergötze des Zorns", "name_zh_CN": "逐风者狂暴雕像", "name_es_ES": "Ídolo de ira de buscatormentas", "name_ru_RU": "Идол ярости искателя бурь", "name_it_IT": "Idolo della Rabbia del Trovatempeste", "name_pt_PT": "Ídolo Busca-tempestade da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122009, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70818, "buy_price": 354090, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595999717712402, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Stone of Rage", "name_ko_KR": "분노의 폭풍탐구자 돌", "name_fr_FR": "Pierre de rage cherche-tempête", "name_de_DE": "Sturmsucherstein des Zorns", "name_zh_CN": "逐风者狂暴之石", "name_es_ES": "Piedra de ira de buscatormentas", "name_ru_RU": "Камень ярости искателя бурь", "name_it_IT": "Pietra della Rabbia del Trovatempeste", "name_pt_PT": "Pedra Busca-tempestade da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122017, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72987, "buy_price": 364939, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9890000224113464, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Idol of Destruction", "name_ko_KR": "파괴의 폭풍탐구자 우상", "name_fr_FR": "Idole de destruction cherche-tempête", "name_de_DE": "Sturmsuchergötze der Zerstörung", "name_zh_CN": "逐风者毁灭雕像", "name_es_ES": "Ídolo de destrucción de buscatormentas", "name_ru_RU": "Идол разрушения искателя бурь", "name_it_IT": "Idolo della Distruzione del Trovatempeste", "name_pt_PT": "Ídolo Busca-tempestade da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122020, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73799, "buy_price": 368998, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Stone of Destruction", "name_ko_KR": "파괴의 폭풍탐구자 돌", "name_fr_FR": "Pierre de destruction cherche-tempête", "name_de_DE": "Sturmsucherstein der Zerstörung", "name_zh_CN": "逐风者毁灭之石", "name_es_ES": "Piedra de destrucción de buscatormentas", "name_ru_RU": "Камень разрушения искателя бурь", "name_it_IT": "Pietra della Distruzione del Trovatempeste", "name_pt_PT": "Pedra Busca-tempestade da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74611, "buy_price": 373057, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0110000371932983, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Idol of Wisdom", "name_ko_KR": "지혜의 폭풍탐구자 우상", "name_fr_FR": "Idole de sagesse cherche-tempête", "name_de_DE": "Sturmsuchergötze der Weisheit", "name_zh_CN": "逐风者智慧雕像", "name_es_ES": "Ídolo de sabiduría de buscatormentas", "name_ru_RU": "Идол мудрости искателя бурь", "name_it_IT": "Idolo della Saggezza del Trovatempeste", "name_pt_PT": "Ídolo Busca-tempestade da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77386, "buy_price": 386931, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0485999584197998, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Stone of Wisdom", "name_ko_KR": "지혜의 폭풍탐구자 돌", "name_fr_FR": "Pierre de sagesse cherche-tempête", "name_de_DE": "Sturmsucherstein der Weisheit", "name_zh_CN": "逐风者智慧之石", "name_es_ES": "Piedra de sabiduría de buscatormentas", "name_ru_RU": "Камень мудрости искателя бурь", "name_it_IT": "Pietra della Saggezza del Trovatempeste", "name_pt_PT": "Pedra Busca-tempestade da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122037, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruinrain Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72980, "buy_price": 364902, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9889000058174133, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Ruinrain Idol of Destruction", "name_ko_KR": "파괴의 파멸비 우상", "name_fr_FR": "Idole de destruction pluie-de-ruine", "name_de_DE": "Todesregengötze der Zerstörung", "name_zh_CN": "灾雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia ruinosa", "name_ru_RU": "Идол разрушения губительного ливня", "name_it_IT": "Idolo della Distruzione Burrascoso", "name_pt_PT": "Ídolo Chove-ruína da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122040, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruinrain Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73792, "buy_price": 368961, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998999834060669, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Ruinrain Stone of Destruction", "name_ko_KR": "파괴의 파멸비 돌", "name_fr_FR": "Pierre de destruction pluie-de-ruine", "name_de_DE": "Todesregenstein der Zerstörung", "name_zh_CN": "灾雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia ruinosa", "name_ru_RU": "Камень разрушения губительного ливня", "name_it_IT": "Pietra della Distruzione Burrascosa", "name_pt_PT": "Pedra Chove-ruína da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122056, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiant Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72700, "buy_price": 363500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850999712944031, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Defiant Stone of Battle", "name_ko_KR": "전투의 항거의 돌", "name_fr_FR": "Pierre de bataille de rebelle", "name_de_DE": "Unbeugsamer Stein des Kampfes", "name_zh_CN": "挑战战争之石", "name_es_ES": "Piedra de batalla desafiante", "name_ru_RU": "Камень битвы непокорного", "name_it_IT": "Pietra della Battaglia Sprezzante", "name_pt_PT": "Pedra Desafiadora de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122057, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiant Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74921, "buy_price": 374606, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0152000188827515, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Defiant Idol of Battle", "name_ko_KR": "전투의 항거의 우상", "name_fr_FR": "Idole de bataille de rebelle", "name_de_DE": "Unbeugsamer Götze des Kampfes", "name_zh_CN": "挑战战争雕像", "name_es_ES": "Ídolo de batalla desafiante", "name_ru_RU": "Идол битвы непокорного", "name_it_IT": "Idolo della Battaglia Sprezzante", "name_pt_PT": "Ídolo Desafiador de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122060, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiant Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75740, "buy_price": 378702, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262999534606934, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Defiant Defender Idol", "name_ko_KR": "항거의 수호 우상", "name_fr_FR": "Idole de défenseur de rebelle", "name_de_DE": "Unbeugsamer Verteidigergötze", "name_zh_CN": "挑战防御者雕像", "name_es_ES": "Ídolo defensor desafiante", "name_ru_RU": "Идол защитника непокорного", "name_it_IT": "Idolo della Difesa Sprezzante", "name_pt_PT": "Ídolo Desafiador Protetor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122063, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiant Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76552, "buy_price": 382761, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0372999906539917, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Defiant Defender Stone", "name_ko_KR": "항거의 수호 돌", "name_fr_FR": "Pierre de défenseur de rebelle", "name_de_DE": "Unbeugsamer Verteidigerstein", "name_zh_CN": "挑战防御者之石", "name_es_ES": "Piedra defensora desafiante", "name_ru_RU": "Камень защитника непокорного", "name_it_IT": "Pietra della Difesa Sprezzante", "name_pt_PT": "Pedra Desafiadora Protetora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122361, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Swift Hand of Justice", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 7500000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0074000358581543, "flags_1": 134217728, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Swift Hand of Justice", "name_ko_KR": "신속한 정의의 손길", "name_fr_FR": "Main de justice rapide", "name_de_DE": "Schnelle Hand der Gerechtigkeit", "name_zh_CN": "迅捷的正义之手", "name_es_ES": "Mano presta de justicia", "name_ru_RU": "Стремительная рука правосудия", "name_it_IT": "Rapida Mano della Giustizia", "name_pt_PT": "Mão Veloz da Justiça", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122362, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Discerning Eye of the Beast", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 7500000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.037500023841858, "flags_1": 134217728, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Discerning Eye of the Beast", "name_ko_KR": "번뜩이는 괴수의 눈", "name_fr_FR": "Oeil de la Bête perspicace", "name_de_DE": "Scharfes Auge der Bestie", "name_zh_CN": "敏锐的比斯巨兽之眼", "name_es_ES": "Ojo de la bestia exigente", "name_ru_RU": "Прозорливый Глаз Зверя", "name_it_IT": "Occhio Perspicace della Bestia", "name_pt_PT": "Olho Penetrante da Fera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122370, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9667999744415283, "flags_1": 134217728, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Insignia of the Horde", "name_ko_KR": "계승의 호드 계급장", "name_fr_FR": "Insigne de la Horde hérité", "name_de_DE": "Geerbtes Insigne der Horde", "name_zh_CN": "家传的部落徽记", "name_es_ES": "Insignia heredada de la Horda", "name_ru_RU": "Унаследованный знак различия Орды", "name_it_IT": "Fregio Ereditato dell'Orda", "name_pt_PT": "Insígnia Herdada da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122371, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9704999923706055, "flags_1": 134217728, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Insignia of the Alliance", "name_ko_KR": "계승의 얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance hérité", "name_de_DE": "Geerbtes Insigne der Allianz", "name_zh_CN": "家传的联盟徽记", "name_es_ES": "Insignia heredada de la Alianza", "name_ru_RU": "Унаследованный знак различия Альянса", "name_it_IT": "Fregio Ereditato dell'Alleanza", "name_pt_PT": "Insígnia Herdada da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122530, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Mark of Tyranny", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0188000202178955, "flags_1": 134217728, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Mark of Tyranny", "name_ko_KR": "계승의 폭정의 징표", "name_fr_FR": "Marque de tyrannie héritée", "name_de_DE": "Geerbtes Mal der Tyrannei", "name_zh_CN": "祖传的暴君印记", "name_es_ES": "Marca de Tiranía heredada", "name_ru_RU": "Унаследованный знак деспотизма", "name_it_IT": "Marchio Ereditato della Tirannia", "name_pt_PT": "Marca da Tirania Herdada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122601, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of Wind", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 58165, "buy_price": 290829, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9851999878883362, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13187, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2480, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of Wind", "name_ko_KR": "바람의 돌", "name_fr_FR": "Pierre du vent", "name_de_DE": "Stein des Windes", "name_zh_CN": "旋风之石", "name_es_ES": "Piedra del viento", "name_ru_RU": "Камень ветра", "name_it_IT": "Pietra del Vento", "name_pt_PT": "Pedra do Vento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122602, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of the Earth", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 58384, "buy_price": 291921, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9889000058174133, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13185, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2480, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of the Earth", "name_ko_KR": "대지의 돌", "name_fr_FR": "Pierre de la Terre", "name_de_DE": "Stein der Erde", "name_zh_CN": "大地之石", "name_es_ES": "Piedra de la tierra", "name_ru_RU": "Камень земли", "name_it_IT": "Pietra della Terra", "name_pt_PT": "Pedra da Terra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122603, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of the Waters", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 60161, "buy_price": 300807, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0190000534057617, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13186, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2480, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of the Waters", "name_ko_KR": "물의 돌", "name_fr_FR": "Pierre des eaux", "name_de_DE": "Stein des Wassers", "name_zh_CN": "流水之石", "name_es_ES": "Piedra de las aguas", "name_ru_RU": "Камень вод", "name_it_IT": "Pietra dell'Acqua", "name_pt_PT": "Pedra das Águas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122604, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of Fire", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 60379, "buy_price": 301899, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0226999521255493, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13208, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of Fire", "name_ko_KR": "불의 돌", "name_fr_FR": "Pierre du feu", "name_de_DE": "Stein des Feuers", "name_zh_CN": "烈火之石", "name_es_ES": "Piedra del fuego", "name_ru_RU": "Камень огня", "name_it_IT": "Pietra del Fuoco", "name_pt_PT": "Pedra do Fogo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122706, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 112860, "buy_price": 564301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 122707, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Adaptation", "name_ko_KR": "야성적인 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur primordial", "name_de_DE": "Anpassungsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador primigenio", "name_ru_RU": "Медальон адаптации необузданного гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Adaptação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122707, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113297, "buy_price": 566485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595000147819519, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 122706, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Adaptation", "name_ko_KR": "야성적인 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur primordial", "name_de_DE": "Anpassungsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador primigenio", "name_ru_RU": "Медальон адаптации необузданного гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Adaptação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122708, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85291, "buy_price": 426458, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.963100016117096, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 122709, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Adaptation", "name_ko_KR": "야성적인 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant primordial", "name_de_DE": "Anpassungsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente primigenio", "name_ru_RU": "Медальон адаптации необузданного бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Primordiale", "name_pt_PT": "Medalhão da Adaptação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122709, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85619, "buy_price": 428096, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9667999744415283, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 122708, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Adaptation", "name_ko_KR": "야성적인 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant primordial", "name_de_DE": "Anpassungsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente primigenio", "name_ru_RU": "Медальон адаптации необузданного бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Primordiale", "name_pt_PT": "Medalhão da Adaptação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 123959, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy", "name_ko_KR": "악마 상징물", "name_fr_FR": "Trophée de démon", "name_de_DE": "Dämonentrophäe", "name_zh_CN": "恶魔战利品", "name_es_ES": "Trofeo demoníaco", "name_ru_RU": "Демонический трофей", "name_it_IT": "Trofeo Demoniaco", "name_pt_PT": "Troféu do Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 123960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Demonic Fire", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Demonic Fire", "name_ko_KR": "악마의 불 부적", "name_fr_FR": "Charme de feu démoniaque", "name_de_DE": "Glücksbringer des Dämonenfeuers", "name_zh_CN": "魔火护符", "name_es_ES": "Talismán de fuego demoníaco", "name_ru_RU": "Талисман демонического огня", "name_it_IT": "Talismano del Fuoco Demoniaco", "name_pt_PT": "Patuá do Fogo Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 123992, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine of the Colossus", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66290, "buy_price": 265161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9929999709129333, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Figurine of the Colossus", "name_ko_KR": "거대괴수 조각상", "name_fr_FR": "Figurine du colosse", "name_de_DE": "Figur des Kolosses", "name_zh_CN": "巨人塑像", "name_es_ES": "Figura del coloso", "name_ru_RU": "Статуэтка Колосса", "name_it_IT": "Statuetta del Colosso", "name_pt_PT": "Estatueta do Colosso", "on_use": true, "id_encounter": 566, "id_journal_instance": 259, "id_map": 540, "instance_type": 1}, {"id": 124223, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fel-Spring Coil", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4649, "stat_alloc_2": 4649, "stat_alloc_3": 4649, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 381364, "buy_price": 1906821, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Fel-Spring Coil", "name_ko_KR": "지옥용수철 코일", "name_fr_FR": "Torsade de ressort gangrené", "name_de_DE": "Dämonische Windung", "name_zh_CN": "邪能弹簧", "name_es_ES": "Espiral de salto vil", "name_ru_RU": "Завиток Скверны", "name_it_IT": "Bobina a Molla Vile", "name_pt_PT": "Espiral Vil", "on_use": false, "id_encounter": 1425, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124224, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of the Blademaster", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 138561, "buy_price": 692805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3660, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of the Blademaster", "name_ko_KR": "검귀의 거울", "name_fr_FR": "Miroir du maître-lame", "name_de_DE": "Spiegel des Klingenmeisters", "name_zh_CN": "剑圣之镜", "name_es_ES": "Espejo del Maestro de las Espadas", "name_ru_RU": "Зеркало мастера клинка", "name_it_IT": "Specchio del Maestro di Spade", "name_pt_PT": "Espelho do Mestre da Espada", "on_use": true, "id_encounter": 1432, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124225, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Capacitor", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6198, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 139066, "buy_price": 695331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3660, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Soul Capacitor", "name_ko_KR": "영혼 축전기", "name_fr_FR": "Condensateur d'âmes", "name_de_DE": "Seelenkondensator", "name_zh_CN": "灵魂之匣", "name_es_ES": "Condensador de almas", "name_ru_RU": "Конденсатор душ", "name_it_IT": "Condensatore d'Anima", "name_pt_PT": "Capacitor das Almas", "on_use": false, "id_encounter": 1427, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124226, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malicious Censer", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 139557, "buy_price": 697788, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0224000215530396, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3660, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Malicious Censer", "name_ko_KR": "악의의 향로", "name_fr_FR": "Encensoir malveillant", "name_de_DE": "Verpestender Rauchschwenker", "name_zh_CN": "恶毒熏炉", "name_es_ES": "Incensario malicioso", "name_ru_RU": "Курильница злости", "name_it_IT": "Incensiere Maligno", "name_pt_PT": "Cibório Malicioso", "on_use": false, "id_encounter": 1394, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124227, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Reaver Piston", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4649, "stat_alloc_2": 4649, "stat_alloc_3": 4649, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1135, "buy_price": 5677, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524999856948853, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Iron Reaver Piston", "name_ko_KR": "강철절단기 피스톤", "name_fr_FR": "Piston du saccageur de Fer", "name_de_DE": "Kolben des Eisernen Häschers", "name_zh_CN": "钢铁掠夺者活塞", "name_es_ES": "Pistón del atracador de la Horda de Hierro", "name_ru_RU": "Поршень Железного разорителя", "name_it_IT": "Pistone del Razziatore di Ferro", "name_pt_PT": "Pistão do Aniquilador de Ferro", "on_use": false, "id_encounter": 1425, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124228, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Desecrated Shadowmoon Insignia", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1139, "buy_price": 5699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9562000036239624, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Desecrated Shadowmoon Insignia", "name_ko_KR": "훼손된 어둠달 휘장", "name_fr_FR": "Insigne d'Ombrelune désacralisé", "name_de_DE": "Entweihtes Schattenmondinsigne", "name_zh_CN": "亵渎影月徽记", "name_es_ES": "Insignia de Sombraluna profanada", "name_ru_RU": "Оскверненный знак Призрачной Луны", "name_it_IT": "Fregio di Torvaluna Dissacrato", "name_pt_PT": "Insígnia da Lua Negra Profanada", "on_use": false, "id_encounter": 1432, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124229, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unblinking Gaze of Sethe", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6198, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1144, "buy_price": 5721, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9598000049591064, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 1490, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Unblinking Gaze of Sethe", "name_ko_KR": "세드의 깜박이지 않는 눈", "name_fr_FR": "Regard fixe de Sethe", "name_de_DE": "Sethes bohrender Blick", "name_zh_CN": "塞泰的永恒凝视", "name_es_ES": "Mirada imperturbable de Sethe", "name_ru_RU": "Немигающий взор Сете", "name_it_IT": "Sguardo Fisso di Sethe", "name_pt_PT": "Olhar Vidrado de Sethe", "on_use": false, "id_encounter": 1433, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124230, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prophecy of Fear", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6198, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1148, "buy_price": 5743, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Prophecy of Fear", "name_ko_KR": "공포의 예언", "name_fr_FR": "Prophétie de peur", "name_de_DE": "Prophezeiung der Furcht", "name_zh_CN": "恐惧预言", "name_es_ES": "Profecía de miedo", "name_ru_RU": "Предсказание ужаса", "name_it_IT": "Profezia della Paura", "name_pt_PT": "Profecia do Medo", "on_use": false, "id_encounter": 1395, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124231, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flickering Felspark", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3724, "stat_alloc_2": 3724, "stat_alloc_3": 3724, "stat_alloc_4": 3724, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": 5, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 364698, "buy_price": 1823490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Flickering Felspark", "name_ko_KR": "명멸하는 지옥불꽃", "name_fr_FR": "Gangrétincelle vacillante", "name_de_DE": "Flackernder Teufelsfunke", "name_zh_CN": "闪烁的邪火", "name_es_ES": "Llama infernal chisporroteante", "name_ru_RU": "Мерцающая вспышка Скверны", "name_it_IT": "Vilscintilla Lampeggiante", "name_pt_PT": "Vil Fagulha Tremeluzente", "on_use": false, "id_encounter": 1426, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124232, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Intuition's Gift", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4649, "stat_alloc_2": 4649, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 132527, "buy_price": 662639, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Intuition's Gift", "name_ko_KR": "직감의 선물", "name_fr_FR": "Don de l'intuition", "name_de_DE": "Gabe der Intuition", "name_zh_CN": "直觉之赐", "name_es_ES": "Obsequio de intuición", "name_ru_RU": "Дар интуиции", "name_it_IT": "Dono dell'Intuizione", "name_pt_PT": "Dádiva da Intuição", "on_use": true, "id_encounter": 1396, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124233, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Phylactery", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4648, "stat_alloc_2": 4648, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133019, "buy_price": 665096, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9745000004768372, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Phylactery", "name_ko_KR": "악마의 성물함", "name_fr_FR": "Phylactère démoniaque", "name_de_DE": "Dämonisches Phylakterium", "name_zh_CN": "魔化护命匣", "name_es_ES": "Filacteria demoníaca", "name_ru_RU": "Демоническая филактерия", "name_it_IT": "Filatterio Demoniaco", "name_pt_PT": "Filactério Demoníaco", "on_use": false, "id_encounter": 1427, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124234, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Felshadow Emulsion", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133524, "buy_price": 667621, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782000184059143, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Unstable Felshadow Emulsion", "name_ko_KR": "불안정한 지옥어둠 유화액", "name_fr_FR": "Emulsion de gangrombre instable", "name_de_DE": "Instabile Teufelsschattenemulsion", "name_zh_CN": "动荡邪影制剂", "name_es_ES": "Emulsión de sombra vil inestable", "name_ru_RU": "Нестабильная эмульсия тени Скверны", "name_it_IT": "Emulsione Instabile di Vilombra", "name_pt_PT": "Emulsão Instável de Sombravil", "on_use": false, "id_encounter": 1447, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124235, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rumbling Pebble", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4649, "stat_alloc_2": 4649, "stat_alloc_3": 4649, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 370240, "buy_price": 1851204, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818999767303467, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Rumbling Pebble", "name_ko_KR": "우르릉 자갈", "name_fr_FR": "Caillou grondant", "name_de_DE": "Grollender Stein", "name_zh_CN": "低鸣之石", "name_es_ES": "Guijarro resonador", "name_ru_RU": "Грохочущий булыжник", "name_it_IT": "Sassolino Rotolante", "name_pt_PT": "Cascalho Ribombante", "on_use": false, "id_encounter": 1392, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124236, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unending Hunger", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 12397, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 134534, "buy_price": 672672, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Unending Hunger", "name_ko_KR": "그치지 않는 허기", "name_fr_FR": "Appétit insatiable", "name_de_DE": "Nie endender Hunger", "name_zh_CN": "无餍之饥", "name_es_ES": "Apetito inagotable", "name_ru_RU": "Неутолимый голод", "name_it_IT": "Fame Interminabile", "name_pt_PT": "Fome Infinita", "on_use": false, "id_encounter": 1372, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124237, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Discordant Chorus", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 135025, "buy_price": 675129, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9891999959945679, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Discordant Chorus", "name_ko_KR": "불협화음", "name_fr_FR": "Chœur discordant", "name_de_DE": "Kakophonie", "name_zh_CN": "不谐合声", "name_es_ES": "Coro discordante", "name_ru_RU": "Нестройный хор", "name_it_IT": "Ritornello Stonato", "name_pt_PT": "Coro Discordante", "on_use": false, "id_encounter": 1391, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124238, "race_mask": 18446744073709551615, "desc": "A few globules of sizzling green liquid remain.", "pad2": "", "pad1": "", "pad0": "", "name": "Empty Drinking Horn", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 135530, "buy_price": 677654, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.992900013923645, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Empty Drinking Horn", "name_ko_KR": "텅 빈 뿔잔", "name_fr_FR": "Corne à boire vide", "name_de_DE": "Leeres Trinkhorn", "name_zh_CN": "空角杯", "name_es_ES": "Cuerno para beber vacío", "name_ru_RU": "Пустой рог для питья", "name_it_IT": "Corno per Libagioni Vuoto", "name_pt_PT": "Copo de Chifre Vazio", "on_use": false, "id_encounter": 1395, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124239, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Imbued Stone Sigil", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6974, "stat_alloc_2": 4649, "stat_alloc_3": 4649, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 375783, "buy_price": 1878918, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Imbued Stone Sigil", "name_ko_KR": "마력 깃든 바위 인장", "name_fr_FR": "Cachet de pierre imprégné", "name_de_DE": "Durchdrungenes Steinsiegel", "name_zh_CN": "嵌石魔印", "name_es_ES": "Sigilo de piedra imbuido", "name_ru_RU": "Насыщенная каменная печать", "name_it_IT": "Sigillo di Pietra Infusa", "name_pt_PT": "Sigilo Imbuído em Pedra", "on_use": false, "id_encounter": 1392, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124240, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warlord's Unseeing Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 12397, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 136540, "buy_price": 682704, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003000497817993, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3619, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warlord's Unseeing Eye", "name_ko_KR": "전쟁군주의 보지 않는 눈", "name_fr_FR": "Oeil aveugle du seigneur de guerre", "name_de_DE": "Blindes Auge des Kriegsherrn", "name_zh_CN": "督军的迷茫之眼", "name_es_ES": "Ojo ciego del señor de la guerra", "name_ru_RU": "Невидящее око вождя", "name_it_IT": "Occhio Cieco del Signore della Guerra", "name_pt_PT": "Olho Que Não Vê do Senhor da Guerra", "on_use": false, "id_encounter": 1396, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124241, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anzu's Cursed Plume", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137032, "buy_price": 685161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0039000511169434, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3619, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Anzu's Cursed Plume", "name_ko_KR": "안주의 저주받은 깃털", "name_fr_FR": "Plume maudite d'Anzu", "name_de_DE": "Anzus verfluchte Feder", "name_zh_CN": "安苏的诅咒之羽", "name_es_ES": "Pluma maldita de Anzu", "name_ru_RU": "Проклятое перо Анзу", "name_it_IT": "Piuma Maledetta di Anzu", "name_pt_PT": "Penacho Maldito de Anzu", "on_use": false, "id_encounter": 1433, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124242, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrant's Decree", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137537, "buy_price": 687686, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007599949836731, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3619, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tyrant's Decree", "name_ko_KR": "폭군의 법령", "name_fr_FR": "Décret du tyran", "name_de_DE": "Tyrannisches Dekret", "name_zh_CN": "暴君赦令", "name_es_ES": "Decreto de tirano", "name_ru_RU": "Решение деспота", "name_it_IT": "Decreto della Despota", "name_pt_PT": "Decreto do Tirano", "on_use": false, "id_encounter": 1394, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124513, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reaper's Harvest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 129961, "buy_price": 649808, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520999789237976, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Reaper's Harvest", "name_ko_KR": "사신의 수확", "name_fr_FR": "Moisson de la faucheuse", "name_de_DE": "Des Todes Ernte", "name_zh_CN": "收割者的收获", "name_es_ES": "Cosecha de segador", "name_ru_RU": "Жатва Жнеца", "name_it_IT": "Raccolto del Mietitore", "name_pt_PT": "Colheita do Ceifador", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seed of Creation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130466, "buy_price": 652333, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Seed of Creation", "name_ko_KR": "창조의 씨앗", "name_fr_FR": "Graine de création", "name_de_DE": "Saat der Schöpfung", "name_zh_CN": "造物之种", "name_es_ES": "Semilla de la creación", "name_ru_RU": "Семя созидания", "name_it_IT": "Seme della Creazione", "name_pt_PT": "Semente da Criação", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124515, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Master Tracker", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130971, "buy_price": 654858, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595000147819519, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of the Master Tracker", "name_ko_KR": "정예 추적자의 부적", "name_fr_FR": "Talisman du maître pisteur", "name_de_DE": "Talisman des meisterhaften Fährtenlesers", "name_zh_CN": "追猎大师的护符", "name_es_ES": "Dije del maestro rastreador", "name_ru_RU": "Талисман мастера-следопыта", "name_it_IT": "Talismano del Maestro Braccatore", "name_pt_PT": "Talismã do Rastreador Mestre", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Shifting Words", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 135080, "buy_price": 675402, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9896000027656555, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tome of Shifting Words", "name_ko_KR": "변화하는 말의 고서", "name_fr_FR": "Tome des mots changeants", "name_de_DE": "Foliant der wandernden Worte", "name_zh_CN": "百变魔典", "name_es_ES": "Escrito sobre palabras cambiantes", "name_ru_RU": "Фолиант изменчивых слов", "name_it_IT": "Tomo delle Parole Instabili", "name_pt_PT": "Tomo das palavras Cambiantes", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124517, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sacred Draenic Incense", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 135585, "buy_price": 677927, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9933000206947327, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Sacred Draenic Incense", "name_ko_KR": "신성한 드레나이 향", "name_fr_FR": "Encens draenique sacré", "name_de_DE": "Heiliger Draeneiweihrauch", "name_zh_CN": "神圣的德拉诺熏炉", "name_es_ES": "Incienso draénico sagrado", "name_ru_RU": "Священные дренейские благовония", "name_it_IT": "Incenso Draenoriano Sacro", "name_pt_PT": "Incenso Draenoriano Sagrado", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124518, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Libram of Vindication", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 136090, "buy_price": 680452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Libram of Vindication", "name_ko_KR": "구원의 성서", "name_fr_FR": "Libram de justification", "name_de_DE": "Buchband der Verteidigung", "name_zh_CN": "辩护圣契", "name_es_ES": "Tratado sobre vindicación", "name_ru_RU": "Манускрипт оправдания", "name_it_IT": "Libram della Rivendicazione", "name_pt_PT": "Incunábulo da Vindicação", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124519, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Repudiation of War", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 136581, "buy_price": 682909, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Repudiation of War", "name_ko_KR": "전쟁에 대한 거부", "name_fr_FR": "Répudiation de la guerre", "name_de_DE": "Kriegserklärung an den Krieg", "name_zh_CN": "斥战祷言", "name_es_ES": "Repudio de guerra", "name_ru_RU": "Отказ от войн", "name_it_IT": "Ripudio della Guerra", "name_pt_PT": "Repúdio da Guerra", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124520, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bleeding Hollow Toxin Vessel", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137086, "buy_price": 685434, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0042999982833862, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Bleeding Hollow Toxin Vessel", "name_ko_KR": "피눈물 독소 용기", "name_fr_FR": "Porte-toxine de l'Orbite-Sanglante", "name_de_DE": "Toxingefäß des Blutenden Auges", "name_zh_CN": "血环毒药瓶", "name_es_ES": "Vasija de toxinas de los Foso Sangrante", "name_ru_RU": "Сосуд с отравой клана Кровавой Глазницы", "name_it_IT": "Ampolla di Tossina dei Guerci Insanguinati", "name_pt_PT": "Recipiente de Toxinas dos Olhos Sangrentos", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124521, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Core of the Primal Elements", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137592, "buy_price": 687960, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0080000162124634, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Core of the Primal Elements", "name_ko_KR": "원시 정령 핵", "name_fr_FR": "Noyau des éléments primordiaux", "name_de_DE": "Kern der Urelemente", "name_zh_CN": "始祖元素之核", "name_es_ES": "Núcleo de los elementos primigenios", "name_ru_RU": "Ядро изначальных стихий", "name_it_IT": "Nucleo degli Elementi Primordiali", "name_pt_PT": "Núcleo dos Elementos Primevos", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124522, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fragment of the Dark Star", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 138097, "buy_price": 690485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0117000341415405, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Fragment of the Dark Star", "name_ko_KR": "검은 별의 조각", "name_fr_FR": "Fragment de l'Etoile noire", "name_de_DE": "Fragment des dunklen Sterns", "name_zh_CN": "黑暗之星碎片", "name_es_ES": "Fragmento de la Estrella Oscura", "name_ru_RU": "Фрагмент Темной Звезды", "name_it_IT": "Frammento della Stella Oscura", "name_pt_PT": "Fragmento da Estrela Negra", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124523, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Worldbreaker's Resolve", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 138588, "buy_price": 692942, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0153000354766846, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Worldbreaker's Resolve", "name_ko_KR": "세계파괴자의 결의", "name_fr_FR": "Résolution du Brise-monde", "name_de_DE": "Entschlossenheit des Weltenbrechers", "name_zh_CN": "灭世者的决意", "name_es_ES": "Resolución de rompemundos", "name_ru_RU": "Решимость разрушителя миров", "name_it_IT": "Risolutezza del Devastamondi", "name_pt_PT": "Determinação do Quebramundo", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124545, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chipped Soul Prism", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4900, "stat_alloc_2": 4900, "stat_alloc_3": 4900, "stat_alloc_4": 4900, "stat_alloc_5": 0, "stat_alloc_6": 4900, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": 40, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 399466, "buy_price": 1997331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226000547409058, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Chipped Soul Prism", "name_ko_KR": "영혼 파편 프리즘", "name_fr_FR": "Prisme d'âme ébréché", "name_de_DE": "Gesprungenes Seelenprisma", "name_zh_CN": "碎裂的灵魂棱镜", "name_es_ES": "Prisma de almas astillado", "name_ru_RU": "Сколотая призма души", "name_it_IT": "Prisma dell'Anima Fratturata", "name_pt_PT": "Prisma da Alma Lascada", "on_use": false, "id_encounter": 1452, "id_journal_instance": 557, "id_map": 1228, "instance_type": 2}, {"id": 124546, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Supreme Doom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 1990, "stat_alloc_2": 5326, "stat_alloc_3": 5326, "stat_alloc_4": 5326, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 62, "stat_type_3": 63, "stat_type_4": 61, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 400872, "buy_price": 2004362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Mark of Supreme Doom", "name_ko_KR": "무시무시한 멸망의 징표", "name_fr_FR": "Marque de Destin funeste suprême", "name_de_DE": "Übermächtiges Verdammnismal", "name_zh_CN": "终极末日印记", "name_es_ES": "Marca de Fatalidad suprema", "name_ru_RU": "Знак превосходящего рока", "name_it_IT": "Marchio della Rovina Suprema", "name_pt_PT": "Marca da Ruína Suprema", "on_use": false, "id_encounter": 1452, "id_journal_instance": 557, "id_map": 1228, "instance_type": 2}, {"id": 124619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Saberblade Emblem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84475, "buy_price": 422379, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.0264999866485596, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Saberblade Emblem", "name_ko_KR": "서슬날 문장", "name_fr_FR": "Emblème de sabrelame", "name_de_DE": "Säbelklingenemblem", "name_zh_CN": "剑刃徽记", "name_es_ES": "Emblema de filosable", "name_ru_RU": "Эмблема клинка сабли", "name_it_IT": "Emblema della Sciabola", "name_pt_PT": "Emblema da Lâmina do Sabre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124620, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Saberblade Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 251, "buy_price": 1256, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.0302000045776367, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Saberblade Talisman", "name_ko_KR": "서슬날 부적", "name_fr_FR": "Talisman de sabrelame", "name_de_DE": "Säbelklingentalisman", "name_zh_CN": "剑刃护符", "name_es_ES": "Dije de sombramira", "name_ru_RU": "Талисман клинка сабли", "name_it_IT": "Talismano della Sciabola", "name_pt_PT": "Talismã da Lâmina do Sabre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124621, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ardent Seal", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85076, "buy_price": 425383, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.0338000059127808, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Ardent Seal", "name_ko_KR": "헌신의 인장", "name_fr_FR": "Sceau ardent", "name_de_DE": "Siegel der Inbrunst", "name_zh_CN": "热忱印记", "name_es_ES": "Sello candente", "name_ru_RU": "Пылкая печать", "name_it_IT": "Sigillo Ardente", "name_pt_PT": "Selo Ardente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124622, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Saberblade Insignia", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85381, "buy_price": 426905, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.037500023841858, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Saberblade Insignia", "name_ko_KR": "서슬날 휘장", "name_fr_FR": "Insigne de sabrelame", "name_de_DE": "Säbelklingeninsigne", "name_zh_CN": "剑刃徽章", "name_es_ES": "Insignia de filosable", "name_ru_RU": "Знак клинка сабли", "name_it_IT": "Fregio della Sciabola", "name_pt_PT": "Insígnia da Lâmina do Sabre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124623, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spineshard Crest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85685, "buy_price": 428428, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.041200041770935, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Spineshard Crest", "name_ko_KR": "등골파편 문장", "name_fr_FR": "Ecu de pointéchine", "name_de_DE": "Rückgratsplitterwappen", "name_zh_CN": "碎脊徽章", "name_es_ES": "Blasón de fragmentos de espinas", "name_ru_RU": "Герб обломка хребта", "name_it_IT": "Amuleto delle Spine", "name_pt_PT": "Escudo de Estilhaço do Espinhaço", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124856, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 135585, "buy_price": 677927, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9933000206947327, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125335, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Conquest", "name_ko_KR": "거침없는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur farouche", "name_de_DE": "Eroberungsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador salvaje", "name_ru_RU": "Жетон завоевания дикого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Indomito", "name_pt_PT": "Distintivo da Conquista do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124857, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 136090, "buy_price": 680452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125336, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Conquest", "name_ko_KR": "거침없는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur farouche", "name_de_DE": "Eroberungsinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador salvaje", "name_ru_RU": "Знак завоевания дикого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Indomito", "name_pt_PT": "Insígnia da Conquista do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124858, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 136581, "buy_price": 682909, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125337, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Cruelty", "name_ko_KR": "거침없는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur farouche", "name_de_DE": "Grausamkeitsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador salvaje", "name_ru_RU": "Эмблема жестокости дикого гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Indomito", "name_pt_PT": "Emblema da Crueldade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124859, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137086, "buy_price": 685434, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125338, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Tenacity", "name_ko_KR": "거침없는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur farouche", "name_de_DE": "Hartnäckigkeitsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador salvaje", "name_ru_RU": "Эмблема упорства дикого гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Indomito", "name_pt_PT": "Emblema da Tenacidade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124860, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137592, "buy_price": 687960, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125339, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Meditation", "name_ko_KR": "거침없는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur farouche", "name_de_DE": "Meditationsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador salvaje", "name_ru_RU": "Эмблема медитации дикого гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Indomito", "name_pt_PT": "Emblema da Meditação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124861, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 138097, "buy_price": 690485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0117000341415405, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125340, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Dominance", "name_ko_KR": "거침없는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur farouche", "name_de_DE": "Vorherrschaftsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador salvaje", "name_ru_RU": "Жетон господства дикого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Indomito", "name_pt_PT": "Distintivo da Dominância do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124862, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1210, "buy_price": 6052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0153000354766846, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125341, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Dominance", "name_ko_KR": "거침없는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur farouche", "name_de_DE": "Vorherrschaftsinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador salvaje", "name_ru_RU": "Знак господства дикого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Indomito", "name_pt_PT": "Insígnia da Dominância do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124863, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 139093, "buy_price": 695467, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 127124, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Cruelty", "name_ko_KR": "거침없는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur farouche", "name_de_DE": "Grausamkeitsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador salvaje", "name_ru_RU": "Медальон жестокости дикого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Indomito", "name_pt_PT": "Medalhão da Crueldade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124864, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 139598, "buy_price": 697992, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 127123, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Adaptation", "name_ko_KR": "거침없는 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur farouche", "name_de_DE": "Anpassungsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador salvaje", "name_ru_RU": "Медальон адаптации дикого гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Indomito", "name_pt_PT": "Medalhão da Adaptação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124865, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 140103, "buy_price": 700518, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125342, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Tenacity", "name_ko_KR": "거침없는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur farouche", "name_de_DE": "Hartnäckigkeitsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador salvaje", "name_ru_RU": "Медальон упорства дикого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Indomito", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124866, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 140595, "buy_price": 702975, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0299999713897705, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125343, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Meditation", "name_ko_KR": "거침없는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur farouche", "name_de_DE": "Meditationsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador salvaje", "name_ru_RU": "Медальон медитации дикого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Indomito", "name_pt_PT": "Medalhão da Meditação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124867, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141100, "buy_price": 705500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0336999893188477, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125344, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Victory", "name_ko_KR": "거침없는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur farouche", "name_de_DE": "Siegesabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador salvaje", "name_ru_RU": "Жетон победы дикого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Indomito", "name_pt_PT": "Distintivo da Vitória do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124868, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141605, "buy_price": 708025, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0374000072479248, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125345, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Victory", "name_ko_KR": "거침없는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur farouche", "name_de_DE": "Siegesinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador salvaje", "name_ru_RU": "Знак победы дикого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Indomito", "name_pt_PT": "Insígnia da Vitória do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124869, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 132063, "buy_price": 660318, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125346, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Adaptation", "name_ko_KR": "거침없는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur farouche", "name_de_DE": "Anpassungsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador salvaje", "name_ru_RU": "Жетон адаптации дикого гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Indomito", "name_pt_PT": "Distintivo da Adaptação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124870, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 377151, "buy_price": 1885758, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710999727249146, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125347, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Conquest", "name_ko_KR": "거침없는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête de gladiateur farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador salvaje", "name_ru_RU": "Акколада завоевания дикого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Indomito", "name_pt_PT": "Galardão da Conquista do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124871, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 1162, "buy_price": 5810, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9747999906539917, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125348, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Dominance", "name_ko_KR": "거침없는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination de gladiateur farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador salvaje", "name_ru_RU": "Акколада господства дикого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Indomito", "name_pt_PT": "Galardão da Dominância do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124872, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 380025, "buy_price": 1900128, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9785000085830688, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125349, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Victory", "name_ko_KR": "거침없는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire de gladiateur farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador salvaje", "name_ru_RU": "Акколада победы дикого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Indomito", "name_pt_PT": "Galardão da Vitória do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124873, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 381423, "buy_price": 1907119, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9821000099182129, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125350, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Meditation", "name_ko_KR": "거침없는 검투사의 명상 상징", "name_fr_FR": "Décoration de méditation du gladiateur farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想奖章", "name_es_ES": "Galardón de meditación de Gladiador salvaje", "name_ru_RU": "Акколада медитации дикого гладиатора", "name_it_IT": "Decorazione della Meditazione del Gladiatore Indomito", "name_pt_PT": "Galardão da Meditação do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124874, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 382860, "buy_price": 1914304, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98580002784729, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125351, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Endurance", "name_ko_KR": "거침없는 검투사의 인내 상징", "name_fr_FR": "Décoration d'endurance du gladiateur farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的坚韧奖章", "name_es_ES": "Galardón de robustez de Gladiador salvaje", "name_ru_RU": "Акколада выносливости дикого гладиатора", "name_it_IT": "Decorazione della Resistenza del Gladiatore Indomito", "name_pt_PT": "Galardão da Resistência do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125030, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90605, "buy_price": 453026, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0231000185012817, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125507, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Conquest", "name_ko_KR": "거침없는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant farouche", "name_de_DE": "Eroberungsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente salvaje", "name_ru_RU": "Жетон завоевания дикого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Indomito", "name_pt_PT": "Distintivo da Conquista do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125031, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90924, "buy_price": 454620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0267000198364258, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125508, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Conquest", "name_ko_KR": "거침없는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant farouche", "name_de_DE": "Eroberungsinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente salvaje", "name_ru_RU": "Знак завоевания дикого бойца", "name_it_IT": "Fregio della Conquista del Combattente Indomito", "name_pt_PT": "Insígnia da Conquista do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125032, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91251, "buy_price": 456258, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030400037765503, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125509, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Cruelty", "name_ko_KR": "거침없는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant farouche", "name_de_DE": "Grausamkeitsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente salvaje", "name_ru_RU": "Эмблема жестокости дикого бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Indomito", "name_pt_PT": "Emblema da Crueldade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125033, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91579, "buy_price": 457897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.03410005569458, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125510, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Tenacity", "name_ko_KR": "거침없는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant farouche", "name_de_DE": "Hartnäckigkeitsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente salvaje", "name_ru_RU": "Эмблема упорства дикого бойца", "name_it_IT": "Emblema della Tenacia del Combattente Indomito", "name_pt_PT": "Emblema da Tenacidade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125034, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91907, "buy_price": 459535, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377999544143677, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125511, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Meditation", "name_ko_KR": "거침없는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant farouche", "name_de_DE": "Meditationsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente salvaje", "name_ru_RU": "Эмблема медитации дикого бойца", "name_it_IT": "Emblema della Meditazione del Combattente Indomito", "name_pt_PT": "Emblema da Meditação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125035, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92225, "buy_price": 461129, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413999557495117, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125512, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Dominance", "name_ko_KR": "거침없는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant farouche", "name_de_DE": "Vorherrschaftsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente salvaje", "name_ru_RU": "Жетон господства дикого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Indomito", "name_pt_PT": "Distintivo da Dominância do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125036, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 849, "buy_price": 4249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0450999736785889, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125513, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Dominance", "name_ko_KR": "거침없는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant farouche", "name_de_DE": "Vorherrschaftsinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente salvaje", "name_ru_RU": "Знак господства дикого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Indomito", "name_pt_PT": "Insígnia da Dominância do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125037, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92881, "buy_price": 464406, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048799991607666, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125514, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Cruelty", "name_ko_KR": "거침없는 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant farouche", "name_de_DE": "Grausamkeitsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente salvaje", "name_ru_RU": "Медальон жестокости дикого бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Indomito", "name_pt_PT": "Medalhão da Crueldade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125038, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84344, "buy_price": 421720, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524000287055969, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125515, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Adaptation", "name_ko_KR": "거침없는 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant farouche", "name_de_DE": "Anpassungsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente salvaje", "name_ru_RU": "Медальон адаптации дикого бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Indomito", "name_pt_PT": "Medalhão da Adaptação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125039, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84662, "buy_price": 423314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559999704360962, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125516, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Tenacity", "name_ko_KR": "거침없는 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant farouche", "name_de_DE": "Hartnäckigkeitsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente salvaje", "name_ru_RU": "Медальон упорства дикого бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Indomito", "name_pt_PT": "Medalhão da Tenacidade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125040, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84990, "buy_price": 424953, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9596999883651733, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125517, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Meditation", "name_ko_KR": "거침없는 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant farouche", "name_de_DE": "Meditationsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente salvaje", "name_ru_RU": "Медальон медитации дикого бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Indomito", "name_pt_PT": "Medalhão da Meditação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125041, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85318, "buy_price": 426591, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9634000062942505, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125518, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Victory", "name_ko_KR": "거침없는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant farouche", "name_de_DE": "Siegesabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente salvaje", "name_ru_RU": "Жетон победы дикого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Indomito", "name_pt_PT": "Distintivo da Vitória do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125042, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85645, "buy_price": 428229, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9671000242233276, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125519, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Victory", "name_ko_KR": "거침없는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant farouche", "name_de_DE": "Siegesinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente salvaje", "name_ru_RU": "Знак победы дикого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Indomito", "name_pt_PT": "Insígnia da Vitória do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125043, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 85964, "buy_price": 429823, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9707000255584717, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125520, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Adaptation", "name_ko_KR": "거침없는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant farouche", "name_de_DE": "Anpassungsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente salvaje", "name_ru_RU": "Жетон адаптации дикого бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Indomito", "name_pt_PT": "Distintivo da Adaptação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125044, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 267294, "buy_price": 1336471, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.974399983882904, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125521, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Conquest", "name_ko_KR": "거침없는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente salvaje", "name_ru_RU": "Акколада завоевания дикого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Indomito", "name_pt_PT": "Galardão da Conquista do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125045, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 795, "buy_price": 3976, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9781000018119812, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125522, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Dominance", "name_ko_KR": "거침없는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente salvaje", "name_ru_RU": "Акколада господства дикого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Indomito", "name_pt_PT": "Galardão da Dominância do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125046, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 276593, "buy_price": 1382968, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082999467849731, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125523, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Victory", "name_ko_KR": "거침없는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente salvaje", "name_ru_RU": "Акколада победы дикого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Indomito", "name_pt_PT": "Galardão da Vitória do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125047, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 277581, "buy_price": 1387906, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125524, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Meditation", "name_ko_KR": "거침없는 전투원의 명상 상징", "name_fr_FR": "Décoration de méditation du combattant farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想奖章", "name_es_ES": "Galardón de meditación de Combatiente salvaje", "name_ru_RU": "Акколада медитации дикого бойца", "name_it_IT": "Decorazione della Meditazione del Combattente Indomito", "name_pt_PT": "Galardão da Meditação do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125048, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 278596, "buy_price": 1392980, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0155999660491943, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125525, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Endurance", "name_ko_KR": "거침없는 전투원의 인내 상징", "name_fr_FR": "Décoration d'endurance du combattant farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的坚韧奖章", "name_es_ES": "Galardón de robustez de Combatiente salvaje", "name_ru_RU": "Акколада выносливости дикого бойца", "name_it_IT": "Decorazione della Resistenza del Combattente Indomito", "name_pt_PT": "Galardão da Resistência do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125139, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 193226, "buy_price": 966130, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818999767303467, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125616, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Conquest", "name_ko_KR": "거침없는 지원자의 정복 상징", "name_fr_FR": "Décoration de conquête de l'aspirant farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的征服奖章", "name_es_ES": "Galardón de conquista de aspirante salvaje", "name_ru_RU": "Акколада завоевания дикого претендента", "name_it_IT": "Decorazione della Conquista del Pretendente Indomito", "name_pt_PT": "Galardão da Conquista do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125140, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 667, "buy_price": 3339, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125617, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Dominance", "name_ko_KR": "거침없는 지원자의 지배 상징", "name_fr_FR": "Décoration de domination de l'aspirant farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的统御奖章", "name_es_ES": "Galardón de dominancia de aspirante salvaje", "name_ru_RU": "Акколада господства дикого претендента", "name_it_IT": "Decorazione della Dominazione del Pretendente Indomito", "name_pt_PT": "Galardão da Dominância do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125141, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 194662, "buy_price": 973313, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9891999959945679, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125618, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Victory", "name_ko_KR": "거침없는 지원자의 승리 상징", "name_fr_FR": "Décoration de victoire de l'aspirant farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的胜利奖章", "name_es_ES": "Galardón de victoria de aspirante salvaje", "name_ru_RU": "Акколада победы дикого претендента", "name_it_IT": "Decorazione della Vittoria del Pretendente Indomito", "name_pt_PT": "Galardão da Vitória do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125142, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 195390, "buy_price": 976954, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.992900013923645, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125619, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Meditation", "name_ko_KR": "거침없는 지원자의 명상 상징", "name_fr_FR": "Décoration de méditation de l'aspirant farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的冥想奖章", "name_es_ES": "Galardón de meditación de aspirante salvaje", "name_ru_RU": "Акколада медитации дикого претендента", "name_it_IT": "Decorazione della Meditazione del Pretendente Indomito", "name_pt_PT": "Galardão da Meditação do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125143, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 201333, "buy_price": 1006669, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0231000185012817, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125620, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Endurance", "name_ko_KR": "거침없는 지원자의 인내 상징", "name_fr_FR": "Décoration d'endurance de l'aspirant farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的坚韧奖章", "name_es_ES": "Galardón de robustez de aspirante salvaje", "name_ru_RU": "Акколада выносливости дикого претендента", "name_it_IT": "Decorazione della Resistenza del Pretendente Indomito", "name_pt_PT": "Galardão da Resistência do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125335, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 139079, "buy_price": 695399, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124856, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Conquest", "name_ko_KR": "거침없는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur farouche", "name_de_DE": "Eroberungsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador salvaje", "name_ru_RU": "Жетон завоевания дикого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Indomito", "name_pt_PT": "Distintivo da Conquista do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125336, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 143188, "buy_price": 715942, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0490000247955322, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124857, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Conquest", "name_ko_KR": "거침없는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur farouche", "name_de_DE": "Eroberungsinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador salvaje", "name_ru_RU": "Знак завоевания дикого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Indomito", "name_pt_PT": "Insígnia da Conquista do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125337, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130029, "buy_price": 650149, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9526000022888184, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124858, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Cruelty", "name_ko_KR": "거침없는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur farouche", "name_de_DE": "Grausamkeitsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador salvaje", "name_ru_RU": "Эмблема жестокости дикого гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Indomito", "name_pt_PT": "Emblema da Crueldade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125338, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130534, "buy_price": 652674, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563000202178955, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124859, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Tenacity", "name_ko_KR": "거침없는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur farouche", "name_de_DE": "Hartnäckigkeitsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador salvaje", "name_ru_RU": "Эмблема упорства дикого гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Indomito", "name_pt_PT": "Emblema da Tenacidade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125339, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 131040, "buy_price": 655200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599999785423279, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124860, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Meditation", "name_ko_KR": "거침없는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur farouche", "name_de_DE": "Meditationsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador salvaje", "name_ru_RU": "Эмблема медитации дикого гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Indomito", "name_pt_PT": "Emblema da Meditação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125340, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 131531, "buy_price": 657657, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635999798774719, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124861, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Dominance", "name_ko_KR": "거침없는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur farouche", "name_de_DE": "Vorherrschaftsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador salvaje", "name_ru_RU": "Жетон господства дикого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Indomito", "name_pt_PT": "Distintivo da Dominância do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125341, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1153, "buy_price": 5766, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9672999978065491, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124862, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Dominance", "name_ko_KR": "거침없는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur farouche", "name_de_DE": "Vorherrschaftsinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador salvaje", "name_ru_RU": "Знак господства дикого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Indomito", "name_pt_PT": "Insígnia da Dominância do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125342, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 132541, "buy_price": 662707, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710000157356262, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124865, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Tenacity", "name_ko_KR": "거침없는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur farouche", "name_de_DE": "Hartnäckigkeitsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador salvaje", "name_ru_RU": "Медальон упорства дикого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Indomito", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125343, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133046, "buy_price": 665232, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746999740600586, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124866, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Meditation", "name_ko_KR": "거침없는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur farouche", "name_de_DE": "Meditationsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador salvaje", "name_ru_RU": "Медальон медитации дикого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Indomito", "name_pt_PT": "Medalhão da Meditação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125344, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133537, "buy_price": 667689, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782999753952026, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124867, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Victory", "name_ko_KR": "거침없는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur farouche", "name_de_DE": "Siegesabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador salvaje", "name_ru_RU": "Жетон победы дикого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Indomito", "name_pt_PT": "Distintivo da Vitória do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125345, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 134043, "buy_price": 670215, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9819999933242798, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124868, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Victory", "name_ko_KR": "거침없는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur farouche", "name_de_DE": "Siegesinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador salvaje", "name_ru_RU": "Знак победы дикого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Indomito", "name_pt_PT": "Insígnia da Vitória do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125346, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 134548, "buy_price": 672740, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9857000112533569, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124869, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Adaptation", "name_ko_KR": "거침없는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur farouche", "name_de_DE": "Anpassungsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador salvaje", "name_ru_RU": "Жетон адаптации дикого гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Indomito", "name_pt_PT": "Distintivo da Adaptação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125347, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 384259, "buy_price": 1921295, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9894000291824341, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124870, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Conquest", "name_ko_KR": "거침없는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête de gladiateur farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador salvaje", "name_ru_RU": "Акколада завоевания дикого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Indomito", "name_pt_PT": "Galardão da Conquista do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125348, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 1183, "buy_price": 5919, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9929999709129333, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124871, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Dominance", "name_ko_KR": "거침없는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination de gladiateur farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador salvaje", "name_ru_RU": "Акколада господства дикого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Indomito", "name_pt_PT": "Galardão da Dominância do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125349, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 387094, "buy_price": 1935470, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9966999888420105, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124872, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Victory", "name_ko_KR": "거침없는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire de gladiateur farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador salvaje", "name_ru_RU": "Акколада победы дикого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Indomito", "name_pt_PT": "Galardão da Vitória do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125350, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 388531, "buy_price": 1942655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003999471664429, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124873, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Meditation", "name_ko_KR": "거침없는 검투사의 명상 상징", "name_fr_FR": "Décoration de méditation du gladiateur farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想奖章", "name_es_ES": "Galardón de meditación de Gladiador salvaje", "name_ru_RU": "Акколада медитации дикого гладиатора", "name_it_IT": "Decorazione della Meditazione del Gladiatore Indomito", "name_pt_PT": "Galardão da Meditação do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125351, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 389929, "buy_price": 1949646, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124874, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Endurance", "name_ko_KR": "거침없는 검투사의 인내 상징", "name_fr_FR": "Décoration d'endurance du gladiateur farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的坚韧奖章", "name_es_ES": "Galardón de robustez de Gladiador salvaje", "name_ru_RU": "Акколада выносливости дикого гладиатора", "name_it_IT": "Decorazione della Resistenza del Gladiatore Indomito", "name_pt_PT": "Galardão da Resistência do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125507, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92217, "buy_price": 461085, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125030, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Conquest", "name_ko_KR": "거침없는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant farouche", "name_de_DE": "Eroberungsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente salvaje", "name_ru_RU": "Жетон завоевания дикого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Indomito", "name_pt_PT": "Distintivo da Conquista do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125508, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92544, "buy_price": 462723, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0449999570846558, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125031, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Conquest", "name_ko_KR": "거침없는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant farouche", "name_de_DE": "Eroberungsinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente salvaje", "name_ru_RU": "Знак завоевания дикого бойца", "name_it_IT": "Fregio della Conquista del Combattente Indomito", "name_pt_PT": "Insígnia da Conquista do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125509, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92872, "buy_price": 464362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048699975013733, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125032, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Cruelty", "name_ko_KR": "거침없는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant farouche", "name_de_DE": "Grausamkeitsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente salvaje", "name_ru_RU": "Эмблема жестокости дикого бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Indomito", "name_pt_PT": "Emblema da Crueldade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125510, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84326, "buy_price": 421632, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9521999955177307, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125033, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Tenacity", "name_ko_KR": "거침없는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant farouche", "name_de_DE": "Hartnäckigkeitsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente salvaje", "name_ru_RU": "Эмблема упорства дикого бойца", "name_it_IT": "Emblema della Tenacia del Combattente Indomito", "name_pt_PT": "Emblema da Tenacidade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125511, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84654, "buy_price": 423270, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559000134468079, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125034, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Meditation", "name_ko_KR": "거침없는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant farouche", "name_de_DE": "Meditationsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente salvaje", "name_ru_RU": "Эмблема медитации дикого бойца", "name_it_IT": "Emblema della Meditazione del Combattente Indomito", "name_pt_PT": "Emblema da Meditação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125512, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87328, "buy_price": 436642, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9861000180244446, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125035, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Dominance", "name_ko_KR": "거침없는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant farouche", "name_de_DE": "Vorherrschaftsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente salvaje", "name_ru_RU": "Жетон господства дикого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Indomito", "name_pt_PT": "Distintivo da Dominância do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125513, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 804, "buy_price": 4023, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9897000193595886, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125036, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Dominance", "name_ko_KR": "거침없는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant farouche", "name_de_DE": "Vorherrschaftsinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente salvaje", "name_ru_RU": "Знак господства дикого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Indomito", "name_pt_PT": "Insígnia da Dominância do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125514, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87975, "buy_price": 439875, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.993399977684021, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125037, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Cruelty", "name_ko_KR": "거침없는 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant farouche", "name_de_DE": "Grausamkeitsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente salvaje", "name_ru_RU": "Медальон жестокости дикого бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Indomito", "name_pt_PT": "Medalhão da Crueldade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125515, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88302, "buy_price": 441513, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9970999956130981, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125038, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Adaptation", "name_ko_KR": "거침없는 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant farouche", "name_de_DE": "Anpassungsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente salvaje", "name_ru_RU": "Медальон адаптации дикого бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Indomito", "name_pt_PT": "Medalhão da Adaptação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125516, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88630, "buy_price": 443152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0008000135421753, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125039, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Tenacity", "name_ko_KR": "거침없는 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant farouche", "name_de_DE": "Hartnäckigkeitsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente salvaje", "name_ru_RU": "Медальон упорства дикого бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Indomito", "name_pt_PT": "Medalhão da Tenacidade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125517, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88949, "buy_price": 444746, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0044000148773193, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125040, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Meditation", "name_ko_KR": "거침없는 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant farouche", "name_de_DE": "Meditationsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente salvaje", "name_ru_RU": "Медальон медитации дикого бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Indomito", "name_pt_PT": "Medalhão da Meditação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125518, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89276, "buy_price": 446384, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0081000328063965, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125041, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Victory", "name_ko_KR": "거침없는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant farouche", "name_de_DE": "Siegesabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente salvaje", "name_ru_RU": "Жетон победы дикого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Indomito", "name_pt_PT": "Distintivo da Vitória do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125519, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89604, "buy_price": 448022, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118000507354736, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125042, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Victory", "name_ko_KR": "거침없는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant farouche", "name_de_DE": "Siegesinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente salvaje", "name_ru_RU": "Знак победы дикого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Indomito", "name_pt_PT": "Insígnia da Vitória do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125520, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 89932, "buy_price": 449661, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0154999494552612, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125043, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Adaptation", "name_ko_KR": "거침없는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant farouche", "name_de_DE": "Anpassungsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente salvaje", "name_ru_RU": "Жетон адаптации дикого бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Indomito", "name_pt_PT": "Distintivo da Adaptação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125521, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 279556, "buy_price": 1397781, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190999507904053, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125044, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Conquest", "name_ko_KR": "거침없는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente salvaje", "name_ru_RU": "Акколада завоевания дикого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Indomito", "name_pt_PT": "Galardão da Conquista do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125522, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 831, "buy_price": 4158, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0227999687194824, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125045, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Dominance", "name_ko_KR": "거침없는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente salvaje", "name_ru_RU": "Акколада господства дикого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Indomito", "name_pt_PT": "Galardão da Dominância do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125523, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 281586, "buy_price": 1407931, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0264999866485596, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125046, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Victory", "name_ko_KR": "거침없는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente salvaje", "name_ru_RU": "Акколада победы дикого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Indomito", "name_pt_PT": "Galardão da Vitória do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125524, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 282601, "buy_price": 1413006, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0302000045776367, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125047, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Meditation", "name_ko_KR": "거침없는 전투원의 명상 상징", "name_fr_FR": "Décoration de méditation du combattant farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想奖章", "name_es_ES": "Galardón de meditación de Combatiente salvaje", "name_ru_RU": "Акколада медитации дикого бойца", "name_it_IT": "Decorazione della Meditazione del Combattente Indomito", "name_pt_PT": "Galardão da Meditação do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125525, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 283588, "buy_price": 1417943, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0338000059127808, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125048, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Endurance", "name_ko_KR": "거침없는 전투원의 인내 상징", "name_fr_FR": "Décoration d'endurance du combattant farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的坚韧奖章", "name_es_ES": "Galardón de robustez de Combatiente salvaje", "name_ru_RU": "Акколада выносливости дикого бойца", "name_it_IT": "Decorazione della Resistenza del Combattente Indomito", "name_pt_PT": "Galardão da Resistência do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125616, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 202022, "buy_price": 1010112, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0266000032424927, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125139, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Conquest", "name_ko_KR": "거침없는 지원자의 정복 상징", "name_fr_FR": "Décoration de conquête de l'aspirant farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的征服奖章", "name_es_ES": "Galardón de conquista de aspirante salvaje", "name_ru_RU": "Акколада завоевания дикого претендента", "name_it_IT": "Decorazione della Conquista del Pretendente Indomito", "name_pt_PT": "Galardão da Conquista do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125617, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 698, "buy_price": 3490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0303000211715698, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125140, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Dominance", "name_ko_KR": "거침없는 지원자의 지배 상징", "name_fr_FR": "Décoration de domination de l'aspirant farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的统御奖章", "name_es_ES": "Galardón de dominancia de aspirante salvaje", "name_ru_RU": "Акколада господства дикого претендента", "name_it_IT": "Decorazione della Dominazione del Pretendente Indomito", "name_pt_PT": "Galardão da Dominância do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125618, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 203478, "buy_price": 1017394, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034000039100647, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125141, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Victory", "name_ko_KR": "거침없는 지원자의 승리 상징", "name_fr_FR": "Décoration de victoire de l'aspirant farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的胜利奖章", "name_es_ES": "Galardón de victoria de aspirante salvaje", "name_ru_RU": "Акколада победы дикого претендента", "name_it_IT": "Decorazione della Vittoria del Pretendente Indomito", "name_pt_PT": "Galardão da Vitória do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125619, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 204187, "buy_price": 1020936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037600040435791, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125142, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Meditation", "name_ko_KR": "거침없는 지원자의 명상 상징", "name_fr_FR": "Décoration de méditation de l'aspirant farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的冥想奖章", "name_es_ES": "Galardón de meditación de aspirante salvaje", "name_ru_RU": "Акколада медитации дикого претендента", "name_it_IT": "Decorazione della Meditazione del Pretendente Indomito", "name_pt_PT": "Galardão da Meditação do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125620, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 204915, "buy_price": 1024576, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125143, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Endurance", "name_ko_KR": "거침없는 지원자의 인내 상징", "name_fr_FR": "Décoration d'endurance de l'aspirant farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的坚韧奖章", "name_es_ES": "Galardón de robustez de aspirante salvaje", "name_ru_RU": "Акколада выносливости дикого претендента", "name_it_IT": "Decorazione della Resistenza del Pretendente Indomito", "name_pt_PT": "Galardão da Resistência do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125970, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 159072, "buy_price": 795360, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0081000328063965, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126449, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador belicista", "name_ru_RU": "Жетон завоевания воинственного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Conquista do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125971, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 159655, "buy_price": 798279, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118000507354736, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126450, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador belicista", "name_ru_RU": "Знак завоевания воинственного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia da Conquista do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125972, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 160239, "buy_price": 801199, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0154999494552612, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126451, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Cruelty", "name_ko_KR": "전쟁을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur belliqueux", "name_de_DE": "Grausamkeitsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador belicista", "name_ru_RU": "Эмблема жестокости воинственного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Crueldade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125973, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 160807, "buy_price": 804039, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190999507904053, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126452, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Tenacity", "name_ko_KR": "전쟁을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur belliqueux", "name_de_DE": "Hartnäckigkeitsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador belicista", "name_ru_RU": "Эмблема упорства воинственного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Tenacidade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125974, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 161391, "buy_price": 806958, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126453, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador belicista", "name_ru_RU": "Эмблема медитации воинственного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Meditação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125975, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 161975, "buy_price": 809877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126454, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador belicista", "name_ru_RU": "Жетон господства воинственного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Dominância do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125976, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1351, "buy_price": 6756, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126455, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador belicista", "name_ru_RU": "Знак господства воинственного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia da Dominância do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125977, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 163127, "buy_price": 815637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0338000059127808, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 127126, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Cruelty", "name_ko_KR": "전쟁을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur belliqueux", "name_de_DE": "Grausamkeitsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador belicista", "name_ru_RU": "Медальон жестокости воинственного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125978, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 152097, "buy_price": 760488, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638999700546265, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 127125, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Adaptation", "name_ko_KR": "전쟁을 부르는 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur belliqueux", "name_de_DE": "Anpassungsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador belicista", "name_ru_RU": "Медальон адаптации воинственного гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Adaptação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125979, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 152681, "buy_price": 763407, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126456, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Tenacity", "name_ko_KR": "전쟁을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur belliqueux", "name_de_DE": "Hartnäckigkeitsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador belicista", "name_ru_RU": "Медальон упорства воинственного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125980, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 153249, "buy_price": 766247, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9711999893188477, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126457, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador belicista", "name_ru_RU": "Медальон медитации воинственного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Meditação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125981, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 153833, "buy_price": 769166, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9749000072479248, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126458, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur belliqueux", "name_de_DE": "Siegesabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador belicista", "name_ru_RU": "Жетон победы воинственного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Vitória do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125982, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 154417, "buy_price": 772086, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.978600025177002, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126459, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur belliqueux", "name_de_DE": "Siegesinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador belicista", "name_ru_RU": "Знак победы воинственного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia de Vitória do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125983, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 155001, "buy_price": 775005, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9822999835014343, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126460, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Adaptation", "name_ko_KR": "전쟁을 부르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur belliqueux", "name_de_DE": "Anpassungsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador belicista", "name_ru_RU": "Жетон адаптации воинственного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Adaptação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125984, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 394050, "buy_price": 1970251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9858999848365784, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126461, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador belicista", "name_ru_RU": "Акколада завоевания воинственного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125985, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 1297, "buy_price": 6489, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9896000027656555, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126462, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador belicista", "name_ru_RU": "Акколада господства воинственного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125986, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 397007, "buy_price": 1985039, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9933000206947327, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126463, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador belicista", "name_ru_RU": "Акколада победы воинственного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125987, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 398486, "buy_price": 1992433, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126464, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 상징", "name_fr_FR": "Décoration de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想奖章", "name_es_ES": "Galardón de meditación de Gladiador belicista", "name_ru_RU": "Акколада медитации воинственного гладиатора", "name_it_IT": "Decorazione della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125988, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 399925, "buy_price": 1999628, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126465, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 검투사의 인내 상징", "name_fr_FR": "Décoration d'endurance du gladiateur belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的坚韧奖章", "name_es_ES": "Galardón de robustez de Gladiador belicista", "name_ru_RU": "Акколада выносливости воинственного гладиатора", "name_it_IT": "Decorazione della Resistenza del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126144, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 106255, "buy_price": 531275, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0378999710083008, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126621, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant belliqueux", "name_de_DE": "Eroberungsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente belicista", "name_ru_RU": "Жетон завоевания воинственного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Conquista do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126145, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 106633, "buy_price": 533169, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041599988937378, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126622, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant belliqueux", "name_de_DE": "Eroberungsinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente belicista", "name_ru_RU": "Знак завоевания воинственного бойца", "name_it_IT": "Fregio della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Conquista do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126146, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107002, "buy_price": 535011, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045199990272522, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126623, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Cruelty", "name_ko_KR": "전쟁을 부르는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant belliqueux", "name_de_DE": "Grausamkeitsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente belicista", "name_ru_RU": "Эмблема жестокости воинственного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Crueldade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126147, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107381, "buy_price": 536905, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126624, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Tenacity", "name_ko_KR": "전쟁을 부르는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant belliqueux", "name_de_DE": "Hartnäckigkeitsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente belicista", "name_ru_RU": "Эмблема упорства воинственного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Tenacidade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126148, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 97512, "buy_price": 487560, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524999856948853, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126625, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant belliqueux", "name_de_DE": "Meditationsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente belicista", "name_ru_RU": "Эмблема медитации воинственного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Meditação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126149, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 97890, "buy_price": 489454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9562000036239624, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126626, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente belicista", "name_ru_RU": "Жетон господства воинственного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Dominância do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126150, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 858, "buy_price": 4291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9598000049591064, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126627, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente belicista", "name_ru_RU": "Знак господства воинственного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Dominância do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126151, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 98638, "buy_price": 493191, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126628, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Cruelty", "name_ko_KR": "전쟁을 부르는 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant belliqueux", "name_de_DE": "Grausamkeitsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente belicista", "name_ru_RU": "Медальон жестокости воинственного бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Crueldade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126152, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 99017, "buy_price": 495085, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126629, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Adaptation", "name_ko_KR": "전쟁을 부르는 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant belliqueux", "name_de_DE": "Anpassungsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente belicista", "name_ru_RU": "Медальон адаптации воинственного бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Adaptação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126153, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 99395, "buy_price": 496979, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126630, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Tenacity", "name_ko_KR": "전쟁을 부르는 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant belliqueux", "name_de_DE": "Hartnäckigkeitsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente belicista", "name_ru_RU": "Медальон упорства воинственного бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Tenacidade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126154, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 99764, "buy_price": 498822, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9745000004768372, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126631, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant belliqueux", "name_de_DE": "Meditationsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente belicista", "name_ru_RU": "Медальон медитации воинственного бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Meditação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126155, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 102856, "buy_price": 514280, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.004699945449829, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126632, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant belliqueux", "name_de_DE": "Siegesabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente belicista", "name_ru_RU": "Жетон победы воинственного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Vitória do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126156, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103234, "buy_price": 516174, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0083999633789062, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126633, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant belliqueux", "name_de_DE": "Siegesinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente belicista", "name_ru_RU": "Знак победы воинственного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Vitória do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126157, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 103603, "buy_price": 518017, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0119999647140503, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126634, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Adaptation", "name_ko_KR": "전쟁을 부르는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant belliqueux", "name_de_DE": "Anpassungsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente belicista", "name_ru_RU": "Жетон адаптации воинственного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Adaptação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126158, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 295854, "buy_price": 1479274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126635, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente belicista", "name_ru_RU": "Акколада завоевания воинственного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126159, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 911, "buy_price": 4557, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0194000005722046, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126636, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente belicista", "name_ru_RU": "Акколада господства воинственного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126160, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 298010, "buy_price": 1490052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0231000185012817, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126637, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente belicista", "name_ru_RU": "Акколада победы воинственного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126161, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 299059, "buy_price": 1495295, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0267000198364258, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126638, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 상징", "name_fr_FR": "Décoration de méditation du combattant belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想奖章", "name_es_ES": "Galardón de meditación de Combatiente belicista", "name_ru_RU": "Акколада медитации воинственного бойца", "name_it_IT": "Decorazione della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126162, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 300136, "buy_price": 1500684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030400037765503, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126639, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 전투원의 인내 상징", "name_fr_FR": "Décoration d'endurance du combattant belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的坚韧奖章", "name_es_ES": "Galardón de robustez de Combatiente belicista", "name_ru_RU": "Акколада выносливости воинственного бойца", "name_it_IT": "Decorazione della Resistenza del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126253, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 201353, "buy_price": 1006767, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0232000350952148, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126730, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 지원자의 정복 상징", "name_fr_FR": "Décoration de conquête de l'aspirant belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的征服奖章", "name_es_ES": "Galardón de conquista de aspirante belicista", "name_ru_RU": "Акколада завоевания воинственного претендента", "name_it_IT": "Decorazione della Conquista del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126254, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 695, "buy_price": 3479, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.026900053024292, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126731, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 지원자의 지배 상징", "name_fr_FR": "Décoration de domination de l'aspirant belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的统御奖章", "name_es_ES": "Galardón de dominancia de aspirante belicista", "name_ru_RU": "Акколада господства воинственного претендента", "name_it_IT": "Decorazione della Dominazione del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126255, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 202790, "buy_price": 1013950, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030500054359436, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126732, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 지원자의 승리 상징", "name_fr_FR": "Décoration de victoire de l'aspirant belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的胜利奖章", "name_es_ES": "Galardón de victoria de aspirante belicista", "name_ru_RU": "Акколада победы воинственного претендента", "name_it_IT": "Decorazione della Vittoria del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126256, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 203518, "buy_price": 1017590, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0341999530792236, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126733, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 지원자의 명상 상징", "name_fr_FR": "Décoration de méditation de l'aspirant belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的冥想奖章", "name_es_ES": "Galardón de meditación de aspirante belicista", "name_ru_RU": "Акколада медитации воинственного претендента", "name_it_IT": "Decorazione della Meditazione del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126257, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 204246, "buy_price": 1021231, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0378999710083008, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126734, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 지원자의 인내 상징", "name_fr_FR": "Décoration d'endurance de l'aspirant belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的坚韧奖章", "name_es_ES": "Galardón de robustez de aspirante belicista", "name_ru_RU": "Акколада выносливости воинственного претендента", "name_it_IT": "Decorazione della Resistenza del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126449, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 151498, "buy_price": 757490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.960099995136261, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125970, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador belicista", "name_ru_RU": "Жетон завоевания воинственного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Conquista do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126450, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 152081, "buy_price": 760409, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638000130653381, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125971, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador belicista", "name_ru_RU": "Знак завоевания воинственного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia da Conquista do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126451, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 152649, "buy_price": 763249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674000144004822, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125972, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Cruelty", "name_ko_KR": "전쟁을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur belliqueux", "name_de_DE": "Grausamkeitsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador belicista", "name_ru_RU": "Эмблема жестокости воинственного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Crueldade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126452, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 153233, "buy_price": 766168, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710999727249146, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125973, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Tenacity", "name_ko_KR": "전쟁을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur belliqueux", "name_de_DE": "Hartnäckigkeitsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador belicista", "name_ru_RU": "Эмблема упорства воинственного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Tenacidade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126453, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 153817, "buy_price": 769087, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9747999906539917, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125974, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador belicista", "name_ru_RU": "Эмблема медитации воинственного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Meditação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126454, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 154401, "buy_price": 772007, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9785000085830688, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125975, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador belicista", "name_ru_RU": "Жетон господства воинственного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Dominância do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126455, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1288, "buy_price": 6440, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9821000099182129, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125976, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador belicista", "name_ru_RU": "Знак господства воинственного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia da Dominância do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126456, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 155553, "buy_price": 777766, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98580002784729, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125979, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Tenacity", "name_ko_KR": "전쟁을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur belliqueux", "name_de_DE": "Hartnäckigkeitsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador belicista", "name_ru_RU": "Медальон упорства воинственного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126457, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156137, "buy_price": 780685, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9894999861717224, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125980, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador belicista", "name_ru_RU": "Медальон медитации воинственного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Meditação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126458, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156721, "buy_price": 783605, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9932000041007996, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125981, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur belliqueux", "name_de_DE": "Siegesabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador belicista", "name_ru_RU": "Жетон победы воинственного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Vitória do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126459, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 157289, "buy_price": 786445, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9968000054359436, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125982, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur belliqueux", "name_de_DE": "Siegesinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador belicista", "name_ru_RU": "Знак победы воинственного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia de Vitória do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126460, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 157872, "buy_price": 789364, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000499963760376, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125983, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Adaptation", "name_ko_KR": "전쟁을 부르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur belliqueux", "name_de_DE": "Anpassungsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador belicista", "name_ru_RU": "Жетон адаптации воинственного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Adaptação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126461, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 411956, "buy_price": 2059780, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0306999683380127, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125984, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador belicista", "name_ru_RU": "Акколада завоевания воинственного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126462, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 1356, "buy_price": 6782, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0342999696731567, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125985, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador belicista", "name_ru_RU": "Акколада господства воинственного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126463, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 414873, "buy_price": 2074369, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0379999876022339, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125986, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador belicista", "name_ru_RU": "Акколада победы воинственного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126464, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 416352, "buy_price": 2081763, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041700005531311, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125987, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 상징", "name_fr_FR": "Décoration de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想奖章", "name_es_ES": "Galardón de meditación de Gladiador belicista", "name_ru_RU": "Акколада медитации воинственного гладиатора", "name_it_IT": "Decorazione della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126465, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 417831, "buy_price": 2089157, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0454000234603882, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125988, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 검투사의 인내 상징", "name_fr_FR": "Décoration d'endurance du gladiateur belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的坚韧奖章", "name_es_ES": "Galardón de robustez de Gladiador belicista", "name_ru_RU": "Акколада выносливости воинственного гладиатора", "name_it_IT": "Decorazione della Resistenza del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126621, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100583, "buy_price": 502917, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126144, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant belliqueux", "name_de_DE": "Eroberungsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente belicista", "name_ru_RU": "Жетон завоевания воинственного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Conquista do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126622, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100962, "buy_price": 504811, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9861999750137329, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126145, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant belliqueux", "name_de_DE": "Eroberungsinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente belicista", "name_ru_RU": "Знак завоевания воинственного бойца", "name_it_IT": "Fregio della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Conquista do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126623, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 101341, "buy_price": 506705, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9898999929428101, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126146, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Cruelty", "name_ko_KR": "전쟁을 부르는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant belliqueux", "name_de_DE": "Grausamkeitsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente belicista", "name_ru_RU": "Эмблема жестокости воинственного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Crueldade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126624, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 101709, "buy_price": 508547, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9934999942779541, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126147, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Tenacity", "name_ko_KR": "전쟁을 부르는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant belliqueux", "name_de_DE": "Hartnäckigkeitsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente belicista", "name_ru_RU": "Эмблема упорства воинственного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Tenacidade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126625, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 102088, "buy_price": 510441, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126148, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant belliqueux", "name_de_DE": "Meditationsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente belicista", "name_ru_RU": "Эмблема медитации воинственного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Meditação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126626, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 102467, "buy_price": 512335, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126149, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente belicista", "name_ru_RU": "Жетон господства воинственного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Dominância do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126627, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 898, "buy_price": 4491, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126150, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente belicista", "name_ru_RU": "Знак господства воинственного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Dominância do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126628, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103214, "buy_price": 516072, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082000494003296, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126151, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Cruelty", "name_ko_KR": "전쟁을 부르는 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant belliqueux", "name_de_DE": "Grausamkeitsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente belicista", "name_ru_RU": "Медальон жестокости воинственного бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Crueldade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126629, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103593, "buy_price": 517966, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126152, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Adaptation", "name_ko_KR": "전쟁을 부르는 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant belliqueux", "name_de_DE": "Anpassungsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente belicista", "name_ru_RU": "Медальон адаптации воинственного бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Adaptação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126630, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103972, "buy_price": 519860, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0155999660491943, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126153, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Tenacity", "name_ko_KR": "전쟁을 부르는 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant belliqueux", "name_de_DE": "Hartnäckigkeitsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente belicista", "name_ru_RU": "Медальон упорства воинственного бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Tenacidade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126631, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 104350, "buy_price": 521754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0192999839782715, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126154, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant belliqueux", "name_de_DE": "Meditationsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente belicista", "name_ru_RU": "Медальон медитации воинственного бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Meditação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126632, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 104719, "buy_price": 523596, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0228999853134155, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126155, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant belliqueux", "name_de_DE": "Siegesabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente belicista", "name_ru_RU": "Жетон победы воинственного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Vitória do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126633, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 105098, "buy_price": 525490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0266000032424927, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126156, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant belliqueux", "name_de_DE": "Siegesinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente belicista", "name_ru_RU": "Знак победы воинственного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Vitória do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126634, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 105476, "buy_price": 527384, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0303000211715698, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126157, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Adaptation", "name_ko_KR": "전쟁을 부르는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant belliqueux", "name_de_DE": "Anpassungsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente belicista", "name_ru_RU": "Жетон адаптации воинственного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Adaptação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126635, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 301156, "buy_price": 1505781, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126158, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente belicista", "name_ru_RU": "Акколада завоевания воинственного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126636, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 927, "buy_price": 4638, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037600040435791, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126159, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御勋章", "name_es_ES": "Galardón de dominancia de Combatiente belicista", "name_ru_RU": "Акколада господства воинственного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126637, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 281873, "buy_price": 1409367, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9677000045776367, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126160, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente belicista", "name_ru_RU": "Акколада победы воинственного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126638, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 282951, "buy_price": 1414756, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9714000225067139, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126161, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 상징", "name_fr_FR": "Décoration de méditation du combattant belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想奖章", "name_es_ES": "Galardón de meditación de Combatiente belicista", "name_ru_RU": "Акколада медитации воинственного бойца", "name_it_IT": "Decorazione della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126639, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 283999, "buy_price": 1419999, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750000238418579, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126162, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 전투원의 인내 상징", "name_fr_FR": "Décoration d'endurance du combattant belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的坚韧奖章", "name_es_ES": "Galardón de robustez de Combatiente belicista", "name_ru_RU": "Акколада выносливости воинственного бойца", "name_it_IT": "Decorazione della Resistenza del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126730, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 204935, "buy_price": 1024675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413999557495117, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126253, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 지원자의 정복 상징", "name_fr_FR": "Décoration de conquête de l'aspirant belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的征服奖章", "name_es_ES": "Galardón de conquista de aspirante belicista", "name_ru_RU": "Акколада завоевания воинственного претендента", "name_it_IT": "Decorazione della Conquista del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126731, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 708, "buy_price": 3540, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0450999736785889, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126254, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 지원자의 지배 상징", "name_fr_FR": "Décoration de domination de l'aspirant belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的统御奖章", "name_es_ES": "Galardón de dominancia de aspirante belicista", "name_ru_RU": "Акколада господства воинственного претендента", "name_it_IT": "Decorazione della Dominazione del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126732, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 206391, "buy_price": 1031956, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048799991607666, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126255, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 지원자의 승리 상징", "name_fr_FR": "Décoration de victoire de l'aspirant belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的胜利奖章", "name_es_ES": "Galardón de victoria de aspirante belicista", "name_ru_RU": "Акколада победы воинственного претендента", "name_it_IT": "Decorazione della Vittoria del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126733, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 187401, "buy_price": 937006, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9523000121116638, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126256, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 지원자의 명상 상징", "name_fr_FR": "Décoration de méditation de l'aspirant belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的冥想奖章", "name_es_ES": "Galardón de meditación de aspirante belicista", "name_ru_RU": "Акколада медитации воинственного претендента", "name_it_IT": "Decorazione della Meditazione del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126734, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 193344, "buy_price": 966721, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126257, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 지원자의 인내 상징", "name_fr_FR": "Décoration d'endurance de l'aspirant belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的坚韧奖章", "name_es_ES": "Galardón de robustez de aspirante belicista", "name_ru_RU": "Акколада выносливости воинственного претендента", "name_it_IT": "Decorazione della Resistenza del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126941, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9598000049591064, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Accolade of Conquest", "name_ko_KR": "토너먼트 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur de tournoi", "name_de_DE": "Eroberungsauszeichnung des Turniergladiators", "name_zh_CN": "竞技角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador de torneo", "name_ru_RU": "Акколада завоевания состязающегося гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore del Torneo", "name_pt_PT": "Galardão da Conquista do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126942, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Accolade of Dominance", "name_ko_KR": "토너먼트 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur de tournoi", "name_de_DE": "Vorherrschaftsauszeichnung des Turniergladiators", "name_zh_CN": "竞技角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador de torneo", "name_ru_RU": "Акколада господства состязающегося гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore del Torneo", "name_pt_PT": "Galardão da Dominância do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126943, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937000274658203, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Accolade of Victory", "name_ko_KR": "토너먼트 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur de tournoi", "name_de_DE": "Siegesauszeichnung des Turniergladiators", "name_zh_CN": "竞技角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador de torneo", "name_ru_RU": "Акколада победы состязающегося гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore del Torneo", "name_pt_PT": "Galardão da Vitória do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126944, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973000288009644, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Accolade of Meditation", "name_ko_KR": "토너먼트 검투사의 명상 상징", "name_fr_FR": "Décoration de méditation du gladiateur de tournoi", "name_de_DE": "Meditationsauszeichnung des Turniergladiators", "name_zh_CN": "竞技角斗士的冥想奖章", "name_es_ES": "Galardón de meditación de Gladiador de torneo", "name_ru_RU": "Акколада медитации состязающегося гладиатора", "name_it_IT": "Decorazione della Meditazione del Gladiatore del Torneo", "name_pt_PT": "Galardão da Meditação do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126945, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0010000467300415, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Accolade of Endurance", "name_ko_KR": "토너먼트 검투사의 인내 상징", "name_fr_FR": "Décoration d'endurance du gladiateur de tournoi", "name_de_DE": "Beständigkeitsauszeichnung des Turniergladiators", "name_zh_CN": "狂野候选者的坚韧奖章", "name_es_ES": "Galardón de robustez de Gladiador de torneo", "name_ru_RU": "Акколада выносливости состязающегося гладиатора", "name_it_IT": "Decorazione della Resistenza del Gladiatore del Torneo", "name_pt_PT": "Galardão da Resistência do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defending Champion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 5259, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0119999647140503, "flags_1": 134742080, "flags_2": 159744, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Defending Champion", "name_ko_KR": "난공불락의 용사", "name_fr_FR": "Champion défendant", "name_de_DE": "Verteidigender Champion", "name_zh_CN": "卫冕勇士", "name_es_ES": "Campeón defensor", "name_ru_RU": "Действующий чемпион", "name_it_IT": "Campione In Carica", "name_pt_PT": "Campeão Atual", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126949, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Returning Champion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 5259, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 134742080, "flags_2": 159744, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Returning Champion", "name_ko_KR": "돌아온 용사", "name_fr_FR": "Retour du champion", "name_de_DE": "Zurückkehrender Champion", "name_zh_CN": "回归勇士", "name_es_ES": "Campeón retornado", "name_ru_RU": "Вернувшийся чемпион", "name_it_IT": "Campione di Ritorno", "name_pt_PT": "Campeão Obstinado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127123, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 142710, "buy_price": 713553, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124864, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Adaptation", "name_ko_KR": "거침없는 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur farouche", "name_de_DE": "Anpassungsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador salvaje", "name_ru_RU": "Медальон адаптации дикого гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Indomito", "name_pt_PT": "Medalhão da Adaptação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127124, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 143215, "buy_price": 716079, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0492000579833984, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124863, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Cruelty", "name_ko_KR": "거침없는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur farouche", "name_de_DE": "Grausamkeitsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador salvaje", "name_ru_RU": "Медальон жестокости дикого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Indomito", "name_pt_PT": "Medalhão da Crueldade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127125, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 150330, "buy_price": 751651, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9527000188827515, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125978, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Adaptation", "name_ko_KR": "전쟁을 부르는 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur belliqueux", "name_de_DE": "Anpassungsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador belicista", "name_ru_RU": "Медальон адаптации воинственного гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Adaptação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127126, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 150914, "buy_price": 754570, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125977, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Cruelty", "name_ko_KR": "전쟁을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur belliqueux", "name_de_DE": "Grausamkeitsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador belicista", "name_ru_RU": "Медальон жестокости воинственного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127173, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiffar's Nexus-Horn", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0083999633789062, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Shiffar's Nexus-Horn", "name_ko_KR": "쉬파르의 연합 뿔피리", "name_fr_FR": "Corne-nexus de Shiffar", "name_de_DE": "Shiffars Nexushorn", "name_zh_CN": "希法尔的节点号角", "name_es_ES": "Cuerno-nexo de Shiffar", "name_ru_RU": "Астральный рог Шиффара", "name_it_IT": "Corno del Nexus di Shiffar", "name_pt_PT": "Trompa-Nexus de Shiffar", "on_use": false, "id_encounter": 551, "id_journal_instance": 254, "id_map": 552, "instance_type": 1}, {"id": 127184, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Runed Fungalcap", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1807, "buy_price": 7230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9751999974250793, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Runed Fungalcap", "name_ko_KR": "룬새김 곰팡이버섯", "name_fr_FR": "Chapeau de champignon runique", "name_de_DE": "Runenverzierte Fungushülle", "name_zh_CN": "符文菌帽", "name_es_ES": "Seta rúnica", "name_ru_RU": "Рунический гриб", "name_it_IT": "Funghetto Runico", "name_pt_PT": "Cogumelo Rúnico", "on_use": true, "id_encounter": 571, "id_journal_instance": 260, "id_map": 547, "instance_type": 1}, {"id": 127201, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Quagmirran's Eye", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9639999866485596, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Quagmirran's Eye", "name_ko_KR": "쿠아그미란의 눈", "name_fr_FR": "Oeil de Bourbierreux", "name_de_DE": "Quagmirrans Auge", "name_zh_CN": "夸格米拉之眼", "name_es_ES": "Ojo de Quagmirran", "name_ru_RU": "Око Зыбуна", "name_it_IT": "Occhio di Bragatur", "name_pt_PT": "Olho de Atolaço", "on_use": false, "id_encounter": 572, "id_journal_instance": 260, "id_map": 547, "instance_type": 1}, {"id": 127245, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warp-Scarab Brooch", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9783999919891357, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Warp-Scarab Brooch", "name_ko_KR": "차원의 쇠똥구리 브로치", "name_fr_FR": "Broche du scarabée dimensionnel", "name_de_DE": "Sphärenskarabäusbrosche", "name_zh_CN": "星界甲虫", "name_es_ES": "Broche de escarabajo de distorsión", "name_ru_RU": "Покореженная скарабеем брошь", "name_it_IT": "Spilla degli Scarabei Distorti", "name_pt_PT": "Broche do Escaravelho Dimensional", "on_use": true, "id_encounter": 537, "id_journal_instance": 250, "id_map": 557, "instance_type": 1}, {"id": 127397, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Splendid Skettis Sapphire", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 7889, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 517008, "buy_price": 2585042, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0010000467300415, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Splendid Skettis Sapphire", "name_ko_KR": "화려한 스케티스 사파이어", "name_fr_FR": "Splendide saphir de Skettis", "name_de_DE": "Herrlicher Skettissaphir", "name_zh_CN": "璀璨的斯克提斯蓝宝石", "name_es_ES": "Zafiro de Skettis espléndido", "name_ru_RU": "Великолепный сапфир из Скеттиса", "name_it_IT": "Splendido Zaffiro di Skettis", "name_pt_PT": "Safira Skettis Esplêndida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127401, "race_mask": 18446744073709551615, "desc": "Screams and weeping are heard faintly in the distance as you clutch the skull.", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Skull", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524600, "buy_price": 2623004, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Skull", "name_ko_KR": "고통 받는 해골", "name_fr_FR": "Crâne tourmenté", "name_de_DE": "Gequälter Schädel", "name_zh_CN": "苦难颅骨", "name_es_ES": "Calavera atormentada", "name_ru_RU": "Изувеченный череп", "name_it_IT": "Teschio Tormentato", "name_pt_PT": "Caveira Atormentada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127418, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soothing Incense Brazier", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88966, "buy_price": 444834, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Soothing Incense Brazier", "name_ko_KR": "마음을 가라앉히는 향로", "name_fr_FR": "Brasero d'encens apaisant", "name_de_DE": "Besänftigender Weihrauchbrenner", "name_zh_CN": "宁神熏香炉", "name_es_ES": "Blandón de incienso reconfortante", "name_ru_RU": "Жаровня с умиротворяющими благовониями", "name_it_IT": "Braciere di Incenso Rilassante", "name_pt_PT": "Braseiro de Incenso Reconfortante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127441, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hourglass of the Unraveller", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0419000387191772, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Hourglass of the Unraveller", "name_ko_KR": "해결사의 모래시계", "name_fr_FR": "Sablier du détrameur", "name_de_DE": "Stundenglas des Entwirrers", "name_zh_CN": "分解者的沙漏", "name_es_ES": "Reloj de arena del liberador", "name_ru_RU": "Песочные часы Расплетающего", "name_it_IT": "Clessidra del Dipanatore", "name_pt_PT": "Ampulheta do Desembaraçador", "on_use": false, "id_encounter": 553, "id_journal_instance": 255, "id_map": 269, "instance_type": 1}, {"id": 127448, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scarab of the Infinite Cycle", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Scarab of the Infinite Cycle", "name_ko_KR": "무한한 세월의 스카라베", "name_fr_FR": "Scarabée du cycle infini", "name_de_DE": "Skarabäus des unendlichen Kreislaufs", "name_zh_CN": "无尽循环甲虫", "name_es_ES": "Escarabajo del ciclo infinito", "name_ru_RU": "Скарабей бесконечного цикла", "name_it_IT": "Scarabeo del Ciclo Eterno", "name_pt_PT": "Escaravelho do Ciclo Infinito", "on_use": false, "id_encounter": 554, "id_journal_instance": 255, "id_map": 269, "instance_type": 1}, {"id": 127474, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vestige of Haldor", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75560, "buy_price": 302242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0160000324249268, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Vestige of Haldor", "name_ko_KR": "할도르의 형적", "name_fr_FR": "Vestige d'Haldor", "name_de_DE": "Überreste von Haldor", "name_zh_CN": "赫尔多之痕", "name_es_ES": "Vestigio de Haldor", "name_ru_RU": "Останки Галдора", "name_it_IT": "Vestigia di Haldor", "name_pt_PT": "Vestígio de Haldor", "on_use": false, "id_encounter": 644, "id_journal_instance": 286, "id_map": 575, "instance_type": 1}, {"id": 127493, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Meteorite Whetstone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0121999979019165, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Meteorite Whetstone", "name_ko_KR": "유성 숫돌", "name_fr_FR": "Pierre à aiguiser météorique", "name_de_DE": "Meteoritenschleifstein", "name_zh_CN": "陨星磨石", "name_es_ES": "Piedra de afilar de meteorito", "name_ru_RU": "Метеоритный оселок", "name_it_IT": "Cote di Meteorite", "name_pt_PT": "Pedra-ume de Meteorito", "on_use": false, "id_encounter": 644, "id_journal_instance": 286, "id_map": 575, "instance_type": 1}, {"id": 127512, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Winged Talisman", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0083999633789062, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Winged Talisman", "name_ko_KR": "날개 달린 부적", "name_fr_FR": "Talisman ailé", "name_de_DE": "Geflügelter Talisman", "name_zh_CN": "展翼护符", "name_es_ES": "Dije alado", "name_ru_RU": "Крылатый талисман", "name_it_IT": "Talismano Alato", "name_pt_PT": "Talismã Alado", "on_use": true, "id_encounter": 599, "id_journal_instance": 275, "id_map": 602, "instance_type": 1}, {"id": 127550, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Offering of Sacrifice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0006999969482422, "flags_1": 524288, "flags_2": 33579008, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Offering of Sacrifice", "name_ko_KR": "희생의 제물", "name_fr_FR": "Offrande de sacrifice", "name_de_DE": "Hingebungsvolle Opfergabe", "name_zh_CN": "献祭供品", "name_es_ES": "Ofrenda de sacrificio", "name_ru_RU": "Жертвоприношение", "name_it_IT": "Offerta di Sacrificio", "name_pt_PT": "Oferenda Sacrificial", "on_use": true, "id_encounter": 596, "id_journal_instance": 274, "id_map": 604, "instance_type": 1}, {"id": 127594, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sphere of Red Dragon's Blood", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041700005531311, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sphere of Red Dragon's Blood", "name_ko_KR": "붉은용 피의 구슬", "name_fr_FR": "Sphère de sang de dragon rouge", "name_de_DE": "Rote Drachenblutsphäre", "name_zh_CN": "红龙血珠", "name_es_ES": "Esfera de sangre de dragón Rojo", "name_ru_RU": "Сфера крови красного дракона", "name_it_IT": "Sfera di Sangue del Drago Rosso", "name_pt_PT": "Esfera de Sangue de Dragão Vermelho", "on_use": true, "id_encounter": 617, "id_journal_instance": 281, "id_map": 576, "instance_type": 1}, {"id": 127654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burning Agony", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85699, "buy_price": 428495, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9677000045776367, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Burning Agony", "name_ko_KR": "불타는 고뇌", "name_fr_FR": "Agonie brûlante", "name_de_DE": "Brennende Pein", "name_zh_CN": "炽燃之殇", "name_es_ES": "Agonía ardiente", "name_ru_RU": "Жаркая агония", "name_it_IT": "Agonia Bruciante", "name_pt_PT": "Agonia Ardente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127657, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Encroaching Void", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86673, "buy_price": 433366, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9786999821662903, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Encroaching Void", "name_ko_KR": "공허의 침해", "name_fr_FR": "Vide envahissant", "name_de_DE": "Übergreifende Leere", "name_zh_CN": "侵蚀虚空", "name_es_ES": "Vacío invasor", "name_ru_RU": "Подкрадывающаяся Бездна", "name_it_IT": "Vuoto Opprimente", "name_pt_PT": "Caos Envolvente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127660, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Contained Flame", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 32, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87647, "buy_price": 438236, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9897000193595886, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Contained Flame", "name_ko_KR": "병에 든 불꽃", "name_fr_FR": "Flamme contenue", "name_de_DE": "Eingedämmte Flamme", "name_zh_CN": "可控烈焰", "name_es_ES": "Llama contenida", "name_ru_RU": "Обузданный огонь", "name_it_IT": "Fiamma Trattenuta", "name_pt_PT": "Chama Contida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fang of Rasthe", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 36, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87975, "buy_price": 439875, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.993399977684021, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fang of Rasthe", "name_ko_KR": "라스더의 송곳니", "name_fr_FR": "Croc de Rasthe", "name_de_DE": "Zahn von Rasthe", "name_zh_CN": "拉瑟之牙", "name_es_ES": "Colmillo de Rasthe", "name_ru_RU": "Клык Расте", "name_it_IT": "Zanna di Rasthe", "name_pt_PT": "Presa de Rasthe", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127673, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638999700546265, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Adaptation", "name_ko_KR": "토너먼트 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur de tournoi", "name_de_DE": "Anpassungsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador de torneo", "name_ru_RU": "Медальон адаптации состязающегося гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Adaptação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127674, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Adaptation", "name_ko_KR": "토너먼트 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur de tournoi", "name_de_DE": "Anpassungsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador de torneo", "name_ru_RU": "Медальон адаптации состязающегося гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Adaptação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127842, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Infernal Alchemist Stone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47522, "buy_price": 237610, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0489000082015991, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2479, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Infernal Alchemist Stone", "name_ko_KR": "불지옥 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste infernale", "name_de_DE": "Infernaler Alchemistenstein", "name_zh_CN": "地狱火炼金石", "name_es_ES": "Piedra de alquimista infernal", "name_ru_RU": "Инфернальный алхимический камень", "name_it_IT": "Pietra Alchemica Infernale", "name_pt_PT": "Pedra do Alquimista Infernal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128023, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of the Wilds", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70352, "buy_price": 351760, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0307999849319458, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13217, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of the Wilds", "name_ko_KR": "야생의 돌", "name_fr_FR": "Pierre des étendues sauvages", "name_de_DE": "Stein der Wildnis", "name_zh_CN": "荒野之石", "name_es_ES": "Piedra de las espesuras", "name_ru_RU": "Камень дикости", "name_it_IT": "Pietra Selvaggia", "name_pt_PT": "Pedra dos Ermos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128024, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of the Elements", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 81618, "buy_price": 408094, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.034500002861023, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13218, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of the Elements", "name_ko_KR": "원소의 돌", "name_fr_FR": "Pierre des éléments", "name_de_DE": "Stein der Elemente", "name_zh_CN": "元素之石", "name_es_ES": "Piedra de los elementos", "name_ru_RU": "Камень стихий", "name_it_IT": "Pietra Elementale", "name_pt_PT": "Pedra dos Elementos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128140, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Felblade Remnant", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382397, "buy_price": 1911988, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Smoldering Felblade Remnant", "name_ko_KR": "연기를 뿜는 지옥칼날 잔해", "name_fr_FR": "Vestige de gangrelame fumante", "name_de_DE": "Schwelende Dämonenklingenüberreste", "name_zh_CN": "阴燃的魔刃残片", "name_es_ES": "Remanente de hoja mácula candente", "name_ru_RU": "Тлеющий обломок клинка Скверны", "name_it_IT": "Resti Fumanti della Vilspada", "name_pt_PT": "Restos de Lâmina Vil Fumegante", "on_use": false, "id_encounter": 1432, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128141, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crackling Fel-Spark Plug", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 383751, "buy_price": 1918755, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0492000579833984, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Crackling Fel-Spark Plug", "name_ko_KR": "파지직거리는 지옥불티 플러그", "name_fr_FR": "Gangrebougie crépitante", "name_de_DE": "Knisternder Teufelsfunkenstecker", "name_zh_CN": "开裂的邪能火花塞", "name_es_ES": "Bujías viles crepitantes", "name_ru_RU": "Потрескивающая запальная свеча Скверны", "name_it_IT": "Spina della Vilscintilla Crepitante", "name_pt_PT": "Plugue de Chispa Vil Fasicante", "on_use": false, "id_encounter": 1425, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128142, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pledge of Iron Loyalty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 348455, "buy_price": 1742277, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9527000188827515, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Pledge of Iron Loyalty", "name_ko_KR": "강철 같은 충성의 서약", "name_fr_FR": "Serment de loyauté de fer", "name_de_DE": "Eiserner Treueeid", "name_zh_CN": "死忠誓词", "name_es_ES": "Juramento de Lealtad de Hierro", "name_ru_RU": "Клятва верности Железной Орде", "name_it_IT": "Pegno della Lealtà di Ferro", "name_pt_PT": "Jura de Lealdade de Ferro", "on_use": false, "id_encounter": 1426, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128143, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fragmented Runestone Etching", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 351972, "buy_price": 1759861, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Fragmented Runestone Etching", "name_ko_KR": "식각 마법석 파편", "name_fr_FR": "Gravure sur pierre runique fragmentée", "name_de_DE": "Verätzte Runensteinsplitter", "name_zh_CN": "铭刻符文石碎片", "name_es_ES": "Inscripción de piedra rúnica fragmentada", "name_ru_RU": "Фрагмент узора рунического камня", "name_it_IT": "Incisione su Pietra Runica Spezzata", "name_pt_PT": "Gravura de Pedra Rúnica Fragmentada", "on_use": false, "id_encounter": 1392, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128144, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Vile Viscera", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 40, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 351162, "buy_price": 1755810, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.960099995136261, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Vile Viscera", "name_ko_KR": "더러운 내장이 든 병", "name_fr_FR": "Fiole de vils viscères", "name_de_DE": "Phiole mit faulenden Innereien", "name_zh_CN": "邪心之瓶", "name_es_ES": "Vial de vísceras inmundas", "name_ru_RU": "Пузырек с отвратительными внутренностями", "name_it_IT": "Fiala di Viscere Vili", "name_pt_PT": "Vidro de Vísceras Vis", "on_use": false, "id_encounter": 1396, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128145, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Howling Soul Gem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 352478, "buy_price": 1762394, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.963699996471405, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Howling Soul Gem", "name_ko_KR": "울부짖는 영혼 보석", "name_fr_FR": "Gemme d'âme hurlante", "name_de_DE": "Heulender Seelenedelstein", "name_zh_CN": "哀嚎的灵魂宝石", "name_es_ES": "Gema de alma aullante", "name_ru_RU": "Воющий самоцвет души", "name_it_IT": "Gemma dell'Anima Ululante", "name_pt_PT": "Gema Anímica Ululante", "on_use": false, "id_encounter": 1427, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128146, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ensnared Orb of the Sky", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 353832, "buy_price": 1769160, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674000144004822, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Ensnared Orb of the Sky", "name_ko_KR": "얼기설기한 하늘 보주", "name_fr_FR": "Orbe du ciel piégé", "name_de_DE": "Eingeschlossene Himmelskugel", "name_zh_CN": "被俘的天空宝珠", "name_es_ES": "Orbe celeste atrapado", "name_ru_RU": "Захваченная небесная сфера", "name_it_IT": "Globo del Cielo Intrappolato", "name_pt_PT": "Orbe Aprisionado do Céu", "on_use": false, "id_encounter": 1433, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128147, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Teardrop of Blood", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 355185, "buy_price": 1775927, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710999727249146, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Teardrop of Blood", "name_ko_KR": "피의 눈물방울", "name_fr_FR": "Larme de sang", "name_de_DE": "Blutige Träne", "name_zh_CN": "血泪晶珠", "name_es_ES": "Lágrima de sangre", "name_ru_RU": "Кровавая слеза", "name_it_IT": "Lacrima di Sangue", "name_pt_PT": "Lágrima de Sangue", "on_use": false, "id_encounter": 1396, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128148, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetid Salivation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 368496, "buy_price": 1842481, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0012999773025513, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Fetid Salivation", "name_ko_KR": "구린내 나는 타액", "name_fr_FR": "Salivation fétide", "name_de_DE": "Übelriechendes Speichelsekret", "name_zh_CN": "腐臭灵液", "name_es_ES": "Salivación fétida", "name_ru_RU": "Вонючие слюни", "name_it_IT": "Salivazione Fetida", "name_pt_PT": "Salivação Fétida", "on_use": false, "id_encounter": 1372, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128149, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Accusation of Inferiority", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 40, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 369821, "buy_price": 1849105, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0048999786376953, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Accusation of Inferiority", "name_ko_KR": "열등함의 고발", "name_fr_FR": "Accusation d'infériorité", "name_de_DE": "Schuldspruch der Minderwertigkeit", "name_zh_CN": "卑贱之罪", "name_es_ES": "Acusación de inferioridad", "name_ru_RU": "Обвинение в неполноценности", "name_it_IT": "Accusa d'Inferiorità", "name_pt_PT": "Acusação de Inferioridade", "on_use": false, "id_encounter": 1394, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pressure-Compressed Loop", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 371182, "buy_price": 1855913, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0085999965667725, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Pressure-Compressed Loop", "name_ko_KR": "기압 압축 실반지", "name_fr_FR": "Jonc comprimé", "name_de_DE": "Druckgehärtetes Band", "name_zh_CN": "压力指环", "name_es_ES": "Aro comprimido a presión", "name_ru_RU": "Сжатая под давлением петля", "name_it_IT": "Anello Compresso a Pressione", "name_pt_PT": "Anel Comprimido", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128151, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Portent of Disaster", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 372544, "buy_price": 1862722, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0123000144958496, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Portent of Disaster", "name_ko_KR": "재앙의 징조", "name_fr_FR": "Auspice du désastre", "name_de_DE": "Omen des Unheils", "name_zh_CN": "潜伏灾难", "name_es_ES": "Augurio de desastre", "name_ru_RU": "Предвестие бедствия", "name_it_IT": "Portento del Disastro", "name_pt_PT": "Agoiro do Desastre", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128152, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Decree of Demonic Sovereignty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 373906, "buy_price": 1869530, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0160000324249268, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Decree of Demonic Sovereignty", "name_ko_KR": "악마 통치의 칙령", "name_fr_FR": "Décret de souveraineté démoniaque", "name_de_DE": "Erklärung der dämonischen Obergewalt", "name_zh_CN": "恶魔主宰谕令", "name_es_ES": "Decreto de soberanía demoníaca", "name_ru_RU": "Декрет демонического владычества", "name_it_IT": "Decreto della Sovranità Demoniaca", "name_pt_PT": "Decreto de Soberania Demoníaca", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128153, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unquenchable Doomfire Censer", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 32, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 375230, "buy_price": 1876154, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0196000337600708, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Unquenchable Doomfire Censer", "name_ko_KR": "꺼지지 않는 파멸불꽃 향로", "name_fr_FR": "Encensoir du feu funeste inextinguible", "name_de_DE": "Unauslöschbarer Teufelsqualmschwenker", "name_zh_CN": "不灭的魔火熏炉", "name_es_ES": "Incensario de Fuego apocalíptico insaciable", "name_ru_RU": "Неугасимая курильница Рокового Огня", "name_it_IT": "Incensiere del Fuoco della Rovina Inestinguibile", "name_pt_PT": "Cibório da Chama da Ruína Inextinguível", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128154, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grasp of the Defiler", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 40, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 376592, "buy_price": 1882963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023300051689148, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grasp of the Defiler", "name_ko_KR": "더럽히는 자의 손아귀", "name_fr_FR": "Torsade du profanateur", "name_de_DE": "Griff des Entweihers", "name_zh_CN": "污染者之握", "name_es_ES": "Alcance del Corruptor", "name_ru_RU": "Хватка Осквернителя", "name_it_IT": "Stretta del Profanatore", "name_pt_PT": "Guante do Profanador", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128217, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fel Shard", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 495987, "buy_price": 2479936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9603000283241272, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Fel Shard", "name_ko_KR": "지옥 파편", "name_fr_FR": "Éclat gangrené", "name_de_DE": "Teufelssplitter", "name_zh_CN": "邪能碎片", "name_es_ES": "Fragmento vil", "name_ru_RU": "Осколок Скверны", "name_it_IT": "Vilscheggia", "name_pt_PT": "Fragmento Vil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128220, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grannok's Lidless Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 501720, "buy_price": 2508601, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9714000225067139, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Grannok's Lidless Eye", "name_ko_KR": "그란노크의 눈꺼풀 없는 눈", "name_fr_FR": "Œil sans paupière de Grannok", "name_de_DE": "Grannoks lidloses Auge", "name_zh_CN": "格兰诺克的不瞑之目", "name_es_ES": "Ojo sin párpado de Grannok", "name_ru_RU": "Глазное яблоко Граннока", "name_it_IT": "Occhio Senza Palpebra di Grannok", "name_pt_PT": "Olho Sem Pálpebra de Grannok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smokeglass Lens Spyglass", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 505490, "buy_price": 2527453, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9786999821662903, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Smokeglass Lens Spyglass", "name_ko_KR": "간유리 렌즈 망원경", "name_fr_FR": "Longue-vue à verres fumés", "name_de_DE": "Rauchglasfernrohr", "name_zh_CN": "茶晶望远镜", "name_es_ES": "Catalejo de cristal ahumado", "name_ru_RU": "Подзорная труба с мутными линзами", "name_it_IT": "Cannocchiale con Lente Annerita", "name_pt_PT": "Luneta de Lente de Fumovítreo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Touch of the Void", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9898999929428101, "flags_1": 134742080, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2053, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Touch of the Void", "name_ko_KR": "공허의 손길", "name_fr_FR": "Toucher du Vide", "name_de_DE": "Berührung der Leere", "name_zh_CN": "虚空之触", "name_es_ES": "Toque del Vacío", "name_ru_RU": "Касание Бездны", "name_it_IT": "Tocco del Vuoto", "name_pt_PT": "Toque do Caos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128705, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Dominion", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Dominion", "name_ko_KR": "다크문 카드 한 벌: 지배", "name_fr_FR": "Suite de Sombrelune : Domination", "name_de_DE": "Dunkelmondkartenset: Herrschaft", "name_zh_CN": "暗月套牌:统御", "name_es_ES": "Colección de la Luna Negra: Dominio", "name_ru_RU": "Колода карт Новолуния \"Господство\"", "name_it_IT": "Mazzo del Dominio di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Domínio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128709, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Hellfire", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.960099995136261, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Hellfire", "name_ko_KR": "다크문 카드 한 벌: 지옥불", "name_fr_FR": "Suite de Sombrelune : Flammes infernales", "name_de_DE": "Dunkelmondkartenset: Höllenfeuer", "name_zh_CN": "暗月套牌:地狱火", "name_es_ES": "Colección de la Luna Negra: Fuego Infernal", "name_ru_RU": "Колода карт Новолуния \"Адское пламя\"", "name_it_IT": "Mazzo del Fuoco Infernale di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Fogo do Inferno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Promises", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.963699996471405, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 131072, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Promises", "name_ko_KR": "다크문 카드 한 벌: 약속", "name_fr_FR": "Suite de Sombrelune : Promesses", "name_de_DE": "Dunkelmondkartenset: Verheißung", "name_zh_CN": "暗月套牌:应许", "name_es_ES": "Colección de la Luna Negra: Promesas", "name_ru_RU": "Колода карт Новолуния \"Обещания\"", "name_it_IT": "Mazzo delle Promesse di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Promessas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128711, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Immortality", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9939000010490417, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Immortality", "name_ko_KR": "다크문 카드 한 벌: 불멸", "name_fr_FR": "Suite de Sombrelune : Immortalité", "name_de_DE": "Dunkelmondkartenset: Unsterblichkeit", "name_zh_CN": "暗月套牌:不朽", "name_es_ES": "Colección de la Luna Negra: Inmortalidad", "name_ru_RU": "Колода карт Новолуния \"Бессмертие\"", "name_it_IT": "Mazzo dell'Immortalità di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Imortalidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128958, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lekos' Leash", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 108437, "buy_price": 542185, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9975000023841858, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Lekos' Leash", "name_ko_KR": "레코스의 목줄", "name_fr_FR": "Laisse de Lekos", "name_de_DE": "Lekos' Leine", "name_zh_CN": "勒考斯的缰绳", "name_es_ES": "Correa de Lekos", "name_ru_RU": "Поводок Лекоса", "name_it_IT": "Guinzaglio di Lekos", "name_pt_PT": "Coleira de Lekos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128959, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of House Wrynn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 36324, "buy_price": 181621, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.001099944114685, "flags_1": 32768, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 129104, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Seal of House Wrynn", "name_ko_KR": "린 가문의 인장", "name_fr_FR": "Sceau de la maison Wrynn", "name_de_DE": "Siegel des Hauses Wrynn", "name_zh_CN": "乌瑞恩王室印章", "name_es_ES": "Sello de la casa Wrynn", "name_ru_RU": "Печать дома Риннов", "name_it_IT": "Sigillo di Casa Wrynn", "name_pt_PT": "Selo da Casa Wrynn", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prophecy Tarot", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 32, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 4, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9973000288009644, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Prophecy Tarot", "name_ko_KR": "예언 카드", "name_fr_FR": "Tarot prophétique", "name_de_DE": "Tarot der Prophezeiung", "name_zh_CN": "先知塔罗牌", "name_es_ES": "Tarot de profecía", "name_ru_RU": "Карта Таро Пророчества", "name_it_IT": "Tarocco della Profezia", "name_pt_PT": "Tarô da Profecia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129044, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frothing Helhound's Fury", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92589, "buy_price": 462945, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Frothing Helhound's Fury", "name_ko_KR": "거품 무는 지옥개의 분노", "name_fr_FR": "Fureur du molosse de Hel écumant", "name_de_DE": "Schäumende Wut des Helhunds", "name_zh_CN": "冥狱之犬的沸腾之怒", "name_es_ES": "Furia de infercan rabioso", "name_ru_RU": "Кипящая ярость адской гончей", "name_it_IT": "Furia del Segugio Infernale Schiumante", "name_pt_PT": "Fúria do Cão Raivoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129056, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadlord's Hamstring", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524755, "buy_price": 2623779, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0160000324249268, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Dreadlord's Hamstring", "name_ko_KR": "공포의 군주의 오금줄", "name_fr_FR": "Tendon jambier de seigneur de l'effroi", "name_de_DE": "Kniesehne eines Schreckenslords", "name_zh_CN": "恐惧魔王的肌腱", "name_es_ES": "Tendón de Señor del Terror", "name_ru_RU": "Сухожилие повелителя ужаса", "name_it_IT": "Tendine del Signore del Terrore", "name_pt_PT": "Cordão do Senhor do Medo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129091, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golza's Iron Fin", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 3, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 515097, "buy_price": 2575487, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973000288009644, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Golza's Iron Fin", "name_ko_KR": "골자의 강철 지느러미", "name_fr_FR": "Nageoire de fer de Golza", "name_de_DE": "Golzas Eisenflosse", "name_zh_CN": "贡尔扎的铁鳍", "name_es_ES": "Aleta de hierro de Golza", "name_ru_RU": "Железный плавник Голзы", "name_it_IT": "Pinna di Ferro di Golza", "name_pt_PT": "Barbatana de Ferro de Golza", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129101, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alpha's Paw", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85061, "buy_price": 425307, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9605000019073486, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Alpha's Paw", "name_ko_KR": "우두머리의 앞발", "name_fr_FR": "Patte d'alpha", "name_de_DE": "Die Pranke des Alphas", "name_zh_CN": "头狼的爪子", "name_es_ES": "Zarpa del alfa", "name_ru_RU": "Лапа вожака стаи", "name_it_IT": "Zampa di Alfa", "name_pt_PT": "Pata do Alfa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129104, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brand of the Banshee Queen", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35250, "buy_price": 176251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9714999794960022, "flags_1": 32768, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 128959, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Brand of the Banshee Queen", "name_ko_KR": "밴시 여왕의 낙인", "name_fr_FR": "Marque de la reine banshee", "name_de_DE": "Marke der Bansheekönigin", "name_zh_CN": "女妖之王的铭牌", "name_es_ES": "Marca de la Reina Alma en Pena", "name_ru_RU": "Клеймо Королевы-банши", "name_it_IT": "Distintivo della Regina Banshee", "name_pt_PT": "Marca da Rainha Banshee", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129107, "race_mask": 18446744073709551615, "desc": "This demon laughed in the face of death...", "pad2": "", "pad1": "", "pad0": "", "name": "Flaming Demon Skull", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 9999, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Flaming Demon Skull", "name_ko_KR": "불타오르는 악마 해골", "name_fr_FR": "Crâne de démon enflammé", "name_de_DE": "Flammender Dämonenschädel", "name_zh_CN": "炽燃的恶魔之颅", "name_es_ES": "Cráneo de demonio llameante", "name_ru_RU": "Пылающий череп демона", "name_it_IT": "Teschio di Demone in Fiamme", "name_pt_PT": "Crânio de Demônio Flamejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lost Etin's Strength", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88019, "buy_price": 440096, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9939000010490417, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Lost Etin's Strength", "name_ko_KR": "잃어버린 거인의 힘", "name_fr_FR": "Force de l'ettin perdu", "name_de_DE": "Stärke des verlorenen Ettin", "name_zh_CN": "迷失双头怪之力", "name_es_ES": "Fuerza del ettin perdido", "name_ru_RU": "Утраченная сила эттина", "name_it_IT": "Forza dell'Ettin Perduto", "name_pt_PT": "Força de Gorjala Perdida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129258, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sylvanas' Broken Arrow", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88683, "buy_price": 443417, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0013999938964844, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sylvanas' Broken Arrow", "name_ko_KR": "실바나스의 부러진 화살", "name_fr_FR": "Flèche brisée de Sylvanas", "name_de_DE": "Sylvanas' zerbrochener Pfeil", "name_zh_CN": "希尔瓦娜斯的断箭", "name_es_ES": "Flecha partida de Sylvanas", "name_ru_RU": "Сломанная стрела Сильваны", "name_it_IT": "Freccia Rotta di Sylvanas", "name_pt_PT": "Flecha Quebrada de Sylvana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129259, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bane of the Darklady", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 519126, "buy_price": 2595630, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0051000118255615, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Bane of the Darklady", "name_ko_KR": "어둠 여왕의 파멸", "name_fr_FR": "Fléau de la Dame noire", "name_de_DE": "Bann der Lady der Finsternis", "name_zh_CN": "黑暗女王克星", "name_es_ES": "El terror de la dama oscura", "name_ru_RU": "Проклятие Темной Госпожи", "name_it_IT": "Esilio della Dama Oscura", "name_pt_PT": "Ruína da Dama Sombria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129260, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tenacity of Cursed Blood", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89330, "buy_price": 446650, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0087000131607056, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Tenacity of Cursed Blood", "name_ko_KR": "저주받은 피의 끈기", "name_fr_FR": "Ténacité de sang maudit", "name_de_DE": "Hartnäckigkeit des verfluchten Blutes", "name_zh_CN": "诅咒血脉之韧", "name_es_ES": "Tenacidad de sangre maldita", "name_ru_RU": "Упорство проклятой крови", "name_it_IT": "Tenacia del Sangue Maledetto", "name_pt_PT": "Tenacidade do Sangue Amaldiçoado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129317, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lodestone of the Mystic", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73600, "buy_price": 368001, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973000288009644, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lodestone of the Mystic", "name_ko_KR": "비술사의 자철석", "name_fr_FR": "Magnétite de mystique", "name_de_DE": "Leitstein des Mystikers", "name_zh_CN": "秘法师的磁石", "name_es_ES": "Magnetita del místico", "name_ru_RU": "Магнетит мистика", "name_it_IT": "Magnetite del Mistico", "name_pt_PT": "Magnetita do Místico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lodestone of the Galeborn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430840, "buy_price": 2154202, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0010000467300415, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lodestone of the Galeborn", "name_ko_KR": "질풍살이의 자철석", "name_fr_FR": "Magnétite des typhon-nés", "name_de_DE": "Leitstein des Sturmgeborenen", "name_zh_CN": "风裔骑士的磁石", "name_es_ES": "Magnetita de tempesnato", "name_ru_RU": "Магнетит сына бури", "name_it_IT": "Magnetite dello Sferzavento", "name_pt_PT": "Magnetita do Natéolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lodestone of the Stormbreaker", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74146, "buy_price": 370732, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.004699945449829, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lodestone of the Stormbreaker", "name_ko_KR": "폭풍파괴자의 자철석", "name_fr_FR": "Magnétite du Brise-tempête", "name_de_DE": "Leitstein des Sturmbrechers", "name_zh_CN": "破风者的磁石", "name_es_ES": "Magnetita de Rompetormentas", "name_ru_RU": "Магнетит рассекателя туч", "name_it_IT": "Magnetite del Solcatempeste", "name_pt_PT": "Magnetita do Rompe-procelas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129375, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0161000490188599, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129378, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0270999670028687, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129386, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9829000234603882, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9976000189781189, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129411, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.001099944114685, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0120999813079834, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129440, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9605000019073486, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129441, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9641000032424927, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9934999942779541, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.031000018119812, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Defensor de Pedra da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129459, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.95660001039505, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9677000045776367, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129477, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.049299955368042, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Defensor de Pedra do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129479, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9564999938011169, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0307999849319458, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129497, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0491000413894653, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129503, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9976000189781189, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0123000144958496, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129511, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0269999504089355, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9643999934196472, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129542, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9936000108718872, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129543, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9973000288009644, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129551, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9531000256538391, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129554, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6777, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9641000032424927, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Defensor de Pedra do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129560, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9861999750137329, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129563, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0236999988555908, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129574, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9639999866485596, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9750000238418579, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129589, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455999374389648, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129592, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9564999938011169, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129605, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0307999849319458, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129608, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129611, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.979200005531311, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129614, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9901999831199646, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129616, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9976000189781189, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0085999965667725, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0157999992370605, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9531999826431274, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129671, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9787999987602234, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d'âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129674, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.989799976348877, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d'âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129687, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9639999866485596, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d'âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129688, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9677000045776367, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d'âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129696, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0235999822616577, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129699, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.034600019454956, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Defensor de Pedra Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129705, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9564999938011169, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129708, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9940000176429749, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129848, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodlust Brooch", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15853, "buy_price": 79268, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0196000337600708, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Bloodlust Brooch", "name_ko_KR": "피의 욕망 브로치", "name_fr_FR": "Broche sanguinaire", "name_de_DE": "Kampfrauschbrosche", "name_zh_CN": "嗜血胸针", "name_es_ES": "Broche Ansia de sangre", "name_ru_RU": "Брошь Кровожадности", "name_it_IT": "Spilla della Brama di Sangue", "name_pt_PT": "Broche Sede de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomeregan Auto-Blocker 601", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15911, "buy_price": 79555, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023300051689148, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Gnomeregan Auto-Blocker 601", "name_ko_KR": "놈리건 자동차단기 601", "name_fr_FR": "Auto-bloqueur de Gnomeregan 601", "name_de_DE": "Gnomereganischer Blockifizierer 601", "name_zh_CN": "诺莫瑞根自动格挡器601型", "name_es_ES": "Autobloqueador 601 de Gnomeregan", "name_ru_RU": "Гномреганский автоблокиратор 601", "name_it_IT": "Auto-Bloccatore 601 di Gnomeregan", "name_pt_PT": "Autobloqueio Gnomeregan 601", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129850, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of the Silver Crescent", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 265, "buy_price": 1328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0269999504089355, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Icon of the Silver Crescent", "name_ko_KR": "은빛 초승달의 상징", "name_fr_FR": "Icône du croissant d'argent", "name_de_DE": "Ikone des Silberwappens", "name_zh_CN": "银色新月徽记", "name_es_ES": "Icono de media luna de plata", "name_ru_RU": "Икона Серебряного Полумесяца", "name_it_IT": "Icona della Falce d'Argento", "name_pt_PT": "Ícone do Crescente Prateado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129851, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Martyr", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16024, "buy_price": 80123, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0305999517440796, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Essence of the Martyr", "name_ko_KR": "순교자의 정수", "name_fr_FR": "Essence du martyr", "name_de_DE": "Essenz des Märtyrers", "name_zh_CN": "殉难者精华", "name_es_ES": "Esencia del mártir", "name_ru_RU": "Сущность Мученика", "name_it_IT": "Essenza del Martire", "name_pt_PT": "Essência do Mártir", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129893, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sundial of the Exiled", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 332, "buy_price": 1661, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9641000032424927, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Sundial of the Exiled", "name_ko_KR": "추방자의 해시계", "name_fr_FR": "Cadran solaire de l'exilé", "name_de_DE": "Sonnenuhr des Exilierten", "name_zh_CN": "流放者的日晷", "name_es_ES": "Reloj de sol del Exiliado", "name_ru_RU": "Солнечные часы изгнанника", "name_it_IT": "Meridiana dell'Esiliato", "name_pt_PT": "Relógio Solar do Exilado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129895, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valor Medal of the First War", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23336, "buy_price": 116682, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9714999794960022, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Valor Medal of the First War", "name_ko_KR": "1차 대전쟁 무공 훈장", "name_fr_FR": "Médaille du courage de la Première guerre", "name_de_DE": "Ehrenmedaille des Ersten Krieges", "name_zh_CN": "第一次大战勇气勋章", "name_es_ES": "Medalla al valor de la Primera Guerra", "name_ru_RU": "Медаль Первой войны \"За отвагу\"", "name_it_IT": "Medaglia al Valore della Prima Guerra", "name_pt_PT": "Medalha de Bravura da Primeira Guerra", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129896, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Truth", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23422, "buy_price": 117114, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750999808311462, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Mirror of Truth", "name_ko_KR": "진실의 거울", "name_fr_FR": "Miroir de vérité", "name_de_DE": "Spiegel der Wahrheit", "name_zh_CN": "真实之镜", "name_es_ES": "Espejo de verdad", "name_ru_RU": "Правдивое зеркальце", "name_it_IT": "Specchio della Verità", "name_pt_PT": "Espelho da Verdade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129897, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Egg of Mortal Essence", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23511, "buy_price": 117558, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9787999987602234, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "The Egg of Mortal Essence", "name_ko_KR": "필멸의 정수 알", "name_fr_FR": "L'œuf d'essence mortelle", "name_de_DE": "Ei der sterblichen Essenz", "name_zh_CN": "精魄", "name_es_ES": "El huevo de Esencia mortal", "name_ru_RU": "Яйцо смертной сущности", "name_it_IT": "Uovo dell'Essenza Mortale", "name_pt_PT": "O Ovo da Essência Mortal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129898, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Supremacy", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23600, "buy_price": 118003, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Supremacy", "name_ko_KR": "궁극의 징표", "name_fr_FR": "Marque de suprématie", "name_de_DE": "Mal der Überlegenheit", "name_zh_CN": "霸权印记", "name_es_ES": "Marca de Supremacía", "name_ru_RU": "Знак превосходства", "name_it_IT": "Marchio della Supremazia", "name_pt_PT": "Signo de Supremacia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129937, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Fury", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15628, "buy_price": 78140, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0051000118255615, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Emblem of Fury", "name_ko_KR": "격노의 문장", "name_fr_FR": "Emblème de fureur", "name_de_DE": "Emblem der Wut", "name_zh_CN": "愤怒徽章", "name_es_ES": "Emblema de furia", "name_ru_RU": "Эмблема ярости", "name_it_IT": "Emblema della Furia", "name_pt_PT": "Emblema da Fúria", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 130126, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Branch", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524910, "buy_price": 2624554, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0162999629974365, "flags_1": 589824, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Iron Branch", "name_ko_KR": "강철 가지", "name_fr_FR": "Branche en fer", "name_de_DE": "Eisenzweig", "name_zh_CN": "钢铁枝桠", "name_es_ES": "Rama de hierro", "name_ru_RU": "Железная ветвь", "name_it_IT": "Ramo di Ferro", "name_pt_PT": "Galho de Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 130185, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mercenary's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0123000144958496, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mercenary's Medallion of Adaptation", "name_ko_KR": "용병의 적응 메달", "name_fr_FR": "Médaillon d'adaptation de mercenaire", "name_de_DE": "Anpassungsmedaillon des Söldners", "name_zh_CN": "雇佣兵的同化勋章", "name_es_ES": "Medallón de adaptación de mercenario", "name_ru_RU": "Медальон адаптации наемника", "name_it_IT": "Medaglione dell'Adattamento del Mercenario", "name_pt_PT": "Medalhão da Adaptação do Mercenário", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 131735, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Imp Generator", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 10000, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3, "buy_price": 15, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9682999849319458, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Imp Generator", "name_ko_KR": "임프 생성기", "name_fr_FR": "Générateur de diablotins", "name_de_DE": "Wichtelgenerator", "name_zh_CN": "小鬼传送器", "name_es_ES": "Generador de diablillos", "name_ru_RU": "Генератор бесов", "name_it_IT": "Generatore di Imp", "name_pt_PT": "Gerador de Diabrete", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 131799, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zugdug's Piece of Paradise", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89365, "buy_price": 446827, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0090999603271484, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Zugdug's Piece of Paradise", "name_ko_KR": "저그더그의 천국 문", "name_fr_FR": "Morceau de paradis de Zugdug", "name_de_DE": "Zugdugs Stück vom Glück", "name_zh_CN": "祖格都格的天堂碎片", "name_es_ES": "Pedazo de paraíso de Cavazug", "name_ru_RU": "Кусочек рая Зугдуга", "name_it_IT": "Pezzo di Paradiso di Zugdug", "name_pt_PT": "Pedacinho de Céu de Zugdug", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 131803, "race_mask": 18446744073709551615, "desc": "Every hunter loves a trophy.", "pad2": "", "pad1": "", "pad0": "", "name": "Spine of Barax", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90667, "buy_price": 453336, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023800015449524, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Spine of Barax", "name_ko_KR": "바락스의 척추", "name_fr_FR": "Echine de Barax", "name_de_DE": "Barax' Rückgrat", "name_zh_CN": "巴拉克斯的脊骨", "name_es_ES": "Espina de Barax", "name_ru_RU": "Хребет Баракса", "name_it_IT": "Spina Dorsale di Barax", "name_pt_PT": "Espinha de Barax", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132091, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmth of Uriah", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84760, "buy_price": 423801, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.957099974155426, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Warmth of Uriah", "name_ko_KR": "우리아의 온기", "name_fr_FR": "Chaleur d'Uriah", "name_de_DE": "Uriahs Wärme", "name_zh_CN": "乌拉的温暖", "name_es_ES": "Calor de Uriah", "name_ru_RU": "Тепло Урии", "name_it_IT": "Calore di Uriah", "name_pt_PT": "Cordialidade de Uriah", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132092, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solace of Uriah", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 496245, "buy_price": 2481227, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9607999920845032, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Solace of Uriah", "name_ko_KR": "우리아의 위안", "name_fr_FR": "Réconfort d'Uriah", "name_de_DE": "Uriahs Trost", "name_zh_CN": "乌拉的慰藉", "name_es_ES": "Consuelo de Uriah", "name_ru_RU": "Утешение Урии", "name_it_IT": "Conforto di Uriah", "name_pt_PT": "Consolação de Uriah", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132093, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Courage of Uriah", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 498156, "buy_price": 2490782, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9645000100135803, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Courage of Uriah", "name_ko_KR": "우리아의 용기", "name_fr_FR": "Courage d'Uriah", "name_de_DE": "Uriahs Mut", "name_zh_CN": "乌拉的勇气", "name_es_ES": "Coraje de Uriah", "name_ru_RU": "Храбрость Урии", "name_it_IT": "Coraggio di Uriah", "name_pt_PT": "Coragem de Uriah", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132895, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Watcher's Divine Inspiration", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 838, "buy_price": 4193, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "The Watcher's Divine Inspiration", "name_ko_KR": "감시자의 신성한 감화", "name_fr_FR": "Inspiration divine du guetteur", "name_de_DE": "Göttliche Inspiration der Behüterin", "name_zh_CN": "守护者的神圣鼓舞", "name_es_ES": "Inspiración divina del vigía", "name_ru_RU": "Божественное воодушевление стража", "name_it_IT": "Ispirazione Divina del Guardiano", "name_pt_PT": "Inspiração Divina da Observadora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132962, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Jailer's Key", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 423136, "buy_price": 2115680, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9830999970436096, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "The Jailer's Key", "name_ko_KR": "간수의 열쇠", "name_fr_FR": "Clé du geôlier", "name_de_DE": "Schlüssel des Gefängniswärters", "name_zh_CN": "狱卒的钥匙", "name_es_ES": "La llave del carcelero", "name_ru_RU": "Ключ тюремщика", "name_it_IT": "Chiave del Carceriere", "name_pt_PT": "Chave do Carcereiro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132963, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Young Drake's Impulse", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72825, "buy_price": 364127, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868000149726868, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Young Drake's Impulse", "name_ko_KR": "어린 비룡의 충동", "name_fr_FR": "Impulsion de jeune drake", "name_de_DE": "Impuls des Jungdrachen", "name_zh_CN": "幼龙的冲动", "name_es_ES": "Impulso del draco joven", "name_ru_RU": "Импульсивность молодого дракона", "name_it_IT": "Impulso del Giovane Draco", "name_pt_PT": "Impulso do Jovem Draco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132964, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stellagosa's Breath", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73098, "buy_price": 365492, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904999732971191, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stellagosa's Breath", "name_ko_KR": "스텔라고사의 숨결", "name_fr_FR": "Souffle de Stellagosa", "name_de_DE": "Stellagosas Atem", "name_zh_CN": "丝黛拉苟萨之息", "name_es_ES": "Aliento de Stellagosa", "name_ru_RU": "Дыхание Стеллагосы", "name_it_IT": "Respiro di Stellagosa", "name_pt_PT": "Sopro de Stellagosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Lost Blue Flight", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 434197, "buy_price": 2170988, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0088000297546387, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Talisman of the Lost Blue Flight", "name_ko_KR": "잃어버린 푸른용군단의 부적", "name_fr_FR": "Talisman du Vol bleu perdu", "name_de_DE": "Talisman des verlorenen blauen Drachenschwarms", "name_zh_CN": "失落的蓝龙军团护符", "name_es_ES": "Talismán del Vuelo Azul perdido", "name_ru_RU": "Талисман утраты синих драконов", "name_it_IT": "Talismano dello Stormo Blu Perduto", "name_pt_PT": "Talismã da Revoada Azul Perdida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132970, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Runas' Nearly Depleted Ley Crystal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 704, "buy_price": 3520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0390000343322754, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Runas' Nearly Depleted Ley Crystal", "name_ko_KR": "루나스의 마력이 거의 고갈된 지맥 수정", "name_fr_FR": "Cristal tellurique presque épuisé de Runas", "name_de_DE": "Runas' fast entleerter Leykristall", "name_zh_CN": "鲁纳斯的报废魔网水晶", "name_es_ES": "Cristal Ley casi agotado de Runas", "name_ru_RU": "Почти пустой силовой кристалл Рунаса", "name_it_IT": "Cristallo di Faglia Quasi Esaurito di Runas", "name_pt_PT": "Cristal de Meridiano Quase Exaurido de Runas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132971, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightfallen's Desperation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76950, "buy_price": 384754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0427000522613525, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Nightfallen's Desperation", "name_ko_KR": "나이트폴른의 절망", "name_fr_FR": "Désespoir des Souffrenuit", "name_de_DE": "Verzweiflung der Nachtsüchtigen", "name_zh_CN": "堕夜精灵的绝望", "name_es_ES": "Desesperación de los Caídos de la Noche", "name_ru_RU": "Отчаяние помраченных", "name_it_IT": "Disperazione degli Esuli Oscuri", "name_pt_PT": "Desespero dos Caianoite", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133062, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy of Insanity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 400, "buy_price": 1600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0089999437332153, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy of Insanity", "name_ko_KR": "광기의 악마 상징물", "name_fr_FR": "Trophée démoniaque de démence", "name_de_DE": "Dämonentrophäe des Wahnsinns", "name_zh_CN": "恶魔的癫狂战利品", "name_es_ES": "Trofeo de demencia demoníaco", "name_ru_RU": "Демонический трофей безумия", "name_it_IT": "Trofeo Demoniaco della Pazzia", "name_pt_PT": "Troféu Demoníaco da Insanidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133192, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Porcelain Crab", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 101, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 416, "buy_price": 2081, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9977999925613403, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Porcelain Crab", "name_ko_KR": "도자기 게", "name_fr_FR": "Crabe en porcelaine", "name_de_DE": "Porzellankrebs", "name_zh_CN": "瓷蟹", "name_es_ES": "Cangrejo de porcelana", "name_ru_RU": "Фарфоровый краб", "name_it_IT": "Granchio di Porcellana", "name_pt_PT": "Caranguejo de Porcelana", "on_use": false, "id_encounter": 103, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 133197, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of the Ocean", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 100, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0427000522613525, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Might of the Ocean", "name_ko_KR": "대양의 힘", "name_fr_FR": "Puissance de l'océan", "name_de_DE": "Macht des Ozeans", "name_zh_CN": "海洋之力", "name_es_ES": "Poderío del océano", "name_ru_RU": "Мощь океана", "name_it_IT": "Forza dell'Oceano", "name_pt_PT": "Poder do Oceano", "on_use": true, "id_encounter": 104, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 133201, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sea Star", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 102, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Sea Star", "name_ko_KR": "불가사리", "name_fr_FR": "Etoile de mer", "name_de_DE": "Seestern", "name_zh_CN": "碧海之星", "name_es_ES": "Estrella de mar", "name_ru_RU": "Морская звезда", "name_it_IT": "Stella Marina", "name_pt_PT": "Estrela do Mar", "on_use": false, "id_encounter": 104, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 133206, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Key to the Endless Chamber", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 105, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.975600004196167, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Key to the Endless Chamber", "name_ko_KR": "무한한 방의 열쇠", "name_fr_FR": "Clé de la chambre sans fin", "name_de_DE": "Schlüssel zur unendlichen Kammer", "name_zh_CN": "无尽密室之匙", "name_es_ES": "Llave a la Cámara sin Fin", "name_ru_RU": "Ключ от Бесконечного Чертога", "name_it_IT": "Chiave della Sala Sconfinata", "name_pt_PT": "Chave da Câmara Infinda", "on_use": false, "id_encounter": 110, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 133216, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tendrils of Burrowing Dark", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 109, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0389000177383423, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tendrils of Burrowing Dark", "name_ko_KR": "파고드는 어둠의 덩굴", "name_fr_FR": "Vrilles de noirceur fouisseuse", "name_de_DE": "Ranken des vergrabenen Dunkels", "name_zh_CN": "黑暗潜藏卷须", "name_es_ES": "Zarcillos de oscuridad penetrante", "name_ru_RU": "Витки могильной тьмы", "name_it_IT": "Tentacoli dell'Oscurità Nascosta", "name_pt_PT": "Gavinhas da Escuridão Penetrante", "on_use": false, "id_encounter": 112, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 133222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magnetite Mirror", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 107, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9607999920845032, "flags_1": 524288, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Magnetite Mirror", "name_ko_KR": "자철석 거울", "name_fr_FR": "Miroir en magnétite", "name_de_DE": "Magnetitspiegel", "name_zh_CN": "磁力之镜", "name_es_ES": "Espejo de calamita", "name_ru_RU": "Магнетитовое зерцало", "name_it_IT": "Specchio di Magnetite", "name_pt_PT": "Espelho de Magnetita", "on_use": true, "id_encounter": 113, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 133224, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leaden Despair", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 106, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9682000279426575, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Leaden Despair", "name_ko_KR": "납빛 절망", "name_fr_FR": "Désespoir plombé", "name_de_DE": "Bleierne Verzweiflung", "name_zh_CN": "沉重绝望", "name_es_ES": "Desesperación plomiza", "name_ru_RU": "Мрак отчаяния", "name_it_IT": "Disperazione Cupa", "name_pt_PT": "Desespero Plúmbeo", "on_use": false, "id_encounter": 113, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 133227, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tear of Blood", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 108, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0056999921798706, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tear of Blood", "name_ko_KR": "피눈물", "name_fr_FR": "Larme de sang", "name_de_DE": "Blutträne", "name_zh_CN": "血红之泪", "name_es_ES": "Lágrima de sangre", "name_ru_RU": "Кровавая слеза", "name_it_IT": "Lacrima di Sangue", "name_pt_PT": "Lágrima de Sangue", "on_use": false, "id_encounter": 112, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 133246, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Thunder", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 110, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0018999576568604, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Thunder", "name_ko_KR": "천둥의 심장", "name_fr_FR": "Cœur de tonnerre", "name_de_DE": "Herz des Sturms", "name_zh_CN": "雷霆之心", "name_es_ES": "Corazón de trueno", "name_ru_RU": "Сердце Грома", "name_it_IT": "Cuore di Tuono", "name_pt_PT": "Coração do Trovão", "on_use": false, "id_encounter": 116, "id_journal_instance": 68, "id_map": 657, "instance_type": 1}, {"id": 133252, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rainsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023900032043457, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Rainsong", "name_ko_KR": "비의 노래", "name_fr_FR": "Chantepluie", "name_de_DE": "Regengesang", "name_zh_CN": "雨歌", "name_es_ES": "Cantolluvia", "name_ru_RU": "Песнь дождя", "name_it_IT": "Canto della Pioggia", "name_pt_PT": "Canção da Chuva", "on_use": false, "id_encounter": 114, "id_journal_instance": 68, "id_map": 657, "instance_type": 1}, {"id": 133268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Solace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 112, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0090999603271484, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Solace", "name_ko_KR": "위안의 심장", "name_fr_FR": "Cœur de réconfort", "name_de_DE": "Herz des Trostes", "name_zh_CN": "抚慰之心", "name_es_ES": "Corazón de consuelo", "name_ru_RU": "Сердце Утешения", "name_it_IT": "Cuore di Conforto", "name_pt_PT": "Coração do Consolo", "on_use": false, "id_encounter": 119, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 133269, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tia's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 114, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0127999782562256, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tia's Grace", "name_ko_KR": "티아의 은총", "name_fr_FR": "Grâce de Tia", "name_de_DE": "Tias Gunst", "name_zh_CN": "提亚的优雅", "name_es_ES": "Gracia de Tia", "name_ru_RU": "Благоволение Тиа", "name_it_IT": "Grazia di Siamat", "name_pt_PT": "Graça de Tia", "on_use": false, "id_encounter": 122, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 133275, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sorrowsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 113, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9611999988555908, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Sorrowsong", "name_ko_KR": "슬픔의 노래", "name_fr_FR": "Tristechant", "name_de_DE": "Klagelied", "name_zh_CN": "悲歌", "name_es_ES": "Canción de penas", "name_ru_RU": "Песнь печали", "name_it_IT": "Canto della Tristezza", "name_pt_PT": "Canção do Pesar", "on_use": false, "id_encounter": 122, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 133281, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impetuous Query", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9832000136375427, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Impetuous Query", "name_ko_KR": "성급한 의혹", "name_fr_FR": "Demande impétueuse", "name_de_DE": "Ungestümes Ersuchen", "name_zh_CN": "鲁莽之询", "name_es_ES": "Petición impetuosa", "name_ru_RU": "Допрос с пристрастием", "name_it_IT": "Richiesta Impetuosa", "name_pt_PT": "Dúvida Impetuosa", "on_use": true, "id_encounter": 118, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 133282, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skardyn's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868999719619751, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Skardyn's Grace", "name_ko_KR": "스카르딘의 은총", "name_fr_FR": "Grâce de Skardyn", "name_de_DE": "Gunst der Skardyn", "name_zh_CN": "灰鳞的优雅", "name_es_ES": "Gracia de skardyn", "name_ru_RU": "Милость Скардина", "name_it_IT": "Grazia di Skardyn", "name_pt_PT": "Graça dos Skardyn", "on_use": true, "id_encounter": 131, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 133291, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Throngus's Finger", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0199999809265137, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Throngus's Finger", "name_ko_KR": "트롱구스의 손가락", "name_fr_FR": "Doigt de Throngus", "name_de_DE": "Finger von Throngus", "name_zh_CN": "索朗格斯的指节", "name_es_ES": "Dedo de Throngus", "name_ru_RU": "Палец Тронга", "name_it_IT": "Dito di Throngus", "name_pt_PT": "Dedo de Throngus", "on_use": false, "id_encounter": 132, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 133300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Khardros", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9793999791145325, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Khardros", "name_ko_KR": "카드로스의 징표", "name_fr_FR": "Marque de Khardros", "name_de_DE": "Mal von Khardros", "name_zh_CN": "卡德罗斯的印记", "name_es_ES": "Marca de Khardros", "name_ru_RU": "Знак Кардроса", "name_it_IT": "Contrassegno di Khardros", "name_pt_PT": "Marca de Khardros", "on_use": true, "id_encounter": 134, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 133304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gale of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940999746322632, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Gale of Shadows", "name_ko_KR": "암흑 돌풍", "name_fr_FR": "Bourrasque d'ombres", "name_de_DE": "Schattensturm", "name_zh_CN": "暗影飓风", "name_es_ES": "Vendaval de sombras", "name_ru_RU": "Буря теней", "name_it_IT": "Zefiro delle Ombre", "name_pt_PT": "Vendaval de Sombras", "on_use": false, "id_encounter": 132, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 133305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Egg Shell", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9977999925613403, "flags_1": 528384, "flags_2": 24584, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Egg Shell", "name_ko_KR": "썩은 알껍질", "name_fr_FR": "Coquille d'œuf corrompu", "name_de_DE": "Verderbte Eierschale", "name_zh_CN": "被腐蚀的蛋壳", "name_es_ES": "Cáscara de huevo corrupto", "name_ru_RU": "Оскверненная яичная скорлупа", "name_it_IT": "Guscio d'Uovo Corrotto", "name_pt_PT": "Casca de Ovo Corrompido", "on_use": true, "id_encounter": 134, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 133420, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arrow of Time", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 524288, "flags_2": 134242304, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Arrow of Time", "name_ko_KR": "시간의 화살", "name_fr_FR": "Flèche du Temps", "name_de_DE": "Pfeil der Zeit", "name_zh_CN": "时光之箭", "name_es_ES": "Flecha de tiempo", "name_ru_RU": "Стрела времени", "name_it_IT": "Freccia del Tempo", "name_pt_PT": "Flecha do Tempo", "on_use": false, "id_encounter": 289, "id_journal_instance": 184, "id_map": 938, "instance_type": 1}, {"id": 133461, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timbal's Focusing Crystal", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035099983215332, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Timbal's Focusing Crystal", "name_ko_KR": "팀발의 집중 수정", "name_fr_FR": "Cristal focalisateur de Timbal", "name_de_DE": "Timbals Fokussierungskristall", "name_zh_CN": "提巴尔的聚焦水晶", "name_es_ES": "Cristal de enfoque de Timbal", "name_ru_RU": "Фокусирующий кристалл Тимбала", "name_it_IT": "Cristallo Focalizzante di Timbal", "name_pt_PT": "Cristal de Concentração de Timbal", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 133462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of the Sunwell", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038699984550476, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Vial of the Sunwell", "name_ko_KR": "태양샘 약병", "name_fr_FR": "Fiole du Puits de soleil", "name_de_DE": "Phiole des Sonnenbrunnens", "name_zh_CN": "太阳之井的水瓶", "name_es_ES": "Vial de La Fuente del Sol", "name_ru_RU": "Флакон воды из Солнечного Колодца", "name_it_IT": "Fiala del Pozzo Solare", "name_pt_PT": "Ampola da Nascente do Sol", "on_use": true, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 133463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of Contempt", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0424000024795532, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Shard of Contempt", "name_ko_KR": "경멸의 파편", "name_fr_FR": "Éclat du mépris", "name_de_DE": "Scherbe der Verachtung", "name_zh_CN": "耻辱碎片", "name_es_ES": "Fragmento de desprecio", "name_ru_RU": "Осколок презрения", "name_it_IT": "Frammento del Disprezzo", "name_pt_PT": "Estilhaço do Desprezo", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 133464, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Commendation of Kael'thas", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0461000204086304, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Commendation of Kael'thas", "name_ko_KR": "캘타스의 증표", "name_fr_FR": "Recommandation de Kael'thas", "name_de_DE": "Belobigung von Kael'thas", "name_zh_CN": "凯尔萨斯的赞誉", "name_es_ES": "Mención de honor de Kael'thas", "name_ru_RU": "Рекомендация Кель'таса", "name_it_IT": "Distintivo d'Encomio di Kael'thas", "name_pt_PT": "Comenda de Kael'thas", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 133537, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kiroptyric Sigil", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 181, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463000535964966, "flags_1": 36864, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Kiroptyric Sigil", "name_ko_KR": "익수류 인장", "name_fr_FR": "Cachet kiroptyrique", "name_de_DE": "Kiroptyrisches Siegel", "name_zh_CN": "基洛普泰里克的印记", "name_es_ES": "Sigilo quiroptérico", "name_ru_RU": "Кироптировая печать", "name_it_IT": "Suggello Kiroptirico", "name_pt_PT": "Signo Quiroptírico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133538, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Wishes", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 180, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0499999523162842, "flags_1": 36864, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bottled Wishes", "name_ko_KR": "병에 담긴 소원", "name_fr_FR": "Souhait en bouteille", "name_de_DE": "Wünsche in der Flasche", "name_zh_CN": "瓶中的愿望", "name_es_ES": "Deseos embotellados", "name_ru_RU": "Желания в бутылке", "name_it_IT": "Desideri in Bottiglia", "name_pt_PT": "Desejos Engarrafados", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133539, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reflection of the Light", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 179, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 36864, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Reflection of the Light", "name_ko_KR": "빛의 투영", "name_fr_FR": "Reflet de la Lumière", "name_de_DE": "Lichtreflexion", "name_zh_CN": "圣光投影", "name_es_ES": "Reflejo de luz", "name_ru_RU": "Отражение Света", "name_it_IT": "Riflesso della Luce", "name_pt_PT": "Reflexo da Luz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133540, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rotting Skull", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 182, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 36864, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Rotting Skull", "name_ko_KR": "썩어가는 해골", "name_fr_FR": "Crâne putréfié", "name_de_DE": "Verrottender Schädel", "name_zh_CN": "腐败之颅", "name_es_ES": "Calavera putrefacta", "name_ru_RU": "Гниющий череп", "name_it_IT": "Teschio Marcio", "name_pt_PT": "Caveira Apodrecida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133541, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fire of the Deep", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 183, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9609000086784363, "flags_1": 36864, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Fire of the Deep", "name_ko_KR": "심연의 불", "name_fr_FR": "Feu des profondeurs", "name_de_DE": "Feuer aus den Tiefen", "name_zh_CN": "地渊之烈火", "name_es_ES": "Fuego de las profundidades", "name_ru_RU": "Огонь глубин", "name_it_IT": "Fiamma del Profondo", "name_pt_PT": "Fogo das Profundezas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brutarg's Sword Tip", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 104034, "buy_price": 520172, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9570000171661377, "flags_1": 32832, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Brutarg's Sword Tip", "name_ko_KR": "브루타그의 검날", "name_fr_FR": "Pointe de l'épée de Brutarg", "name_de_DE": "Brutargs Schwertspitze", "name_zh_CN": "布鲁塔格的剑尖", "name_es_ES": "Punta de la espada de Brutarg", "name_ru_RU": "Острие меча Брутарга", "name_it_IT": "Punta della Spada di Brutarg", "name_pt_PT": "Ponta da Espada de Brutarg", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133585, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Judgment of the Naaru", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 349, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0018999576568604, "flags_1": 134742080, "flags_2": 159808, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2054, "id_curve": 1690, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Judgment of the Naaru", "name_ko_KR": "나루의 심판", "name_fr_FR": "Jugement des Naaru", "name_de_DE": "Urteil der Naaru", "name_zh_CN": "纳鲁的审判", "name_es_ES": "Sentencia de los naaru", "name_ru_RU": "Суждение наару", "name_it_IT": "Giudizio del Naaru", "name_pt_PT": "Julgamento dos Naarus", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133595, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gronntooth War Horn", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 349, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2666, "stat_alloc_2": 2666, "stat_alloc_3": 2666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 32, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038599967956543, "flags_1": 134742080, "flags_2": 159808, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2054, "id_curve": 1690, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Gronntooth War Horn", "name_ko_KR": "그론이빨 전쟁 뿔피리", "name_fr_FR": "Cor de guerre en dent de Gronn", "name_de_DE": "Gronnzahnkriegshorn", "name_zh_CN": "戈隆獠牙战争号角", "name_es_ES": "Cuerno de guerra de diente de gronn", "name_ru_RU": "Боевой рог из зуба гронна", "name_it_IT": "Corno da Guerra di Dente di Gronn", "name_pt_PT": "Trompa de Guerra de Dente de Gronn", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133596, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Orb of Voidsight", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 349, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0422999858856201, "flags_1": 134742080, "flags_2": 159808, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2054, "id_curve": 1690, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Orb of Voidsight", "name_ko_KR": "공허시선의 보주", "name_fr_FR": "Orbe de vision du Vide", "name_de_DE": "Kugel der Leerensicht", "name_zh_CN": "虚空透视之球", "name_es_ES": "Orbe de visión del Vacío", "name_ru_RU": "Сфера видения Бездны", "name_it_IT": "Globo della Visione del Vuoto", "name_pt_PT": "Orbe da Visão do Caos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infallible Tracking Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 349, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 134742080, "flags_2": 159808, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2054, "id_curve": 1690, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Infallible Tracking Charm", "name_ko_KR": "틀림없는 추적 부적", "name_fr_FR": "Charme de pistage infaillible", "name_de_DE": "Unfehlbare Spurensucherkette", "name_zh_CN": "精准追踪护符", "name_es_ES": "Talismán de rastreo infalible", "name_ru_RU": "Безупречный охотничий талисман", "name_it_IT": "Talismano del Rintracciamento Infallibile", "name_pt_PT": "Berloque de Rastreamento Infalível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133598, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Shard of the Third Moon", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 349, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9760000109672546, "flags_1": 134742080, "flags_2": 159808, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2054, "id_curve": 1690, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Purified Shard of the Third Moon", "name_ko_KR": "정화된 세 번째 달의 파편", "name_fr_FR": "Éclat de la troisième lune purifié", "name_de_DE": "Gereinigter Splitter des dritten Monds", "name_zh_CN": "纯净的第三月碎片", "name_es_ES": "Fragmento purificado de la tercera luna", "name_ru_RU": "Очищенный осколок третьей луны", "name_it_IT": "Frammento Purificato della Terza Luna", "name_pt_PT": "Estilhaço Purificado da Terceira Lua", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Skovald", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1369, "buy_price": 6849, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868000149726868, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Eye of Skovald", "name_ko_KR": "스코발드의 눈", "name_fr_FR": "Oeil de Skovald", "name_de_DE": "Auge von Skovald", "name_zh_CN": "斯科瓦尔德之眼", "name_es_ES": "Ojo de Skovald", "name_ru_RU": "Глаз Сковальда", "name_it_IT": "Occhio di Skovald", "name_pt_PT": "Olho de Skovald", "on_use": false, "id_encounter": 1488, "id_journal_instance": 721, "id_map": 1477, "instance_type": 1}, {"id": 133642, "race_mask": 18446744073709551615, "desc": "The strongest Vrykul are awaited by Odyn at the Halls of Valor, to become Valarjar. They fight eternal, shiny and gold.", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of Valor", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67314, "buy_price": 336571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904999732971191, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Horn of Valor", "name_ko_KR": "용맹의 뿔피리", "name_fr_FR": "Cor de vaillance", "name_de_DE": "Horn der Ehre", "name_zh_CN": "勇气号角", "name_es_ES": "Cuerno del valor", "name_ru_RU": "Рог доблести", "name_it_IT": "Corno del Valore", "name_pt_PT": "Trompa da Bravura", "on_use": true, "id_encounter": 1485, "id_journal_instance": 721, "id_map": 1477, "instance_type": 1}, {"id": 133644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Memento of Angerboda", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 72, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67810, "buy_price": 339051, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9977999925613403, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Memento of Angerboda", "name_ko_KR": "앵거보다의 기념품", "name_fr_FR": "Souvenir d'Angrboda", "name_de_DE": "Andenken an Angerboda", "name_zh_CN": "安格博达的回忆", "name_es_ES": "Recuerdo de Inquinoda", "name_ru_RU": "Память об Ангербоде", "name_it_IT": "Cimelio di Angrboda", "name_pt_PT": "Recordação de Angerboda", "on_use": false, "id_encounter": 1502, "id_journal_instance": 727, "id_map": 1492, "instance_type": 1}, {"id": 133645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Naglfar Fare", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69862, "buy_price": 349313, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027999997138977, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Naglfar Fare", "name_ko_KR": "나글파르 뱃삯", "name_fr_FR": "Prix pour le Naglfar", "name_de_DE": "Fährmannslohn der Naglfar", "name_zh_CN": "纳格法尔船票", "name_es_ES": "Bono del Naglfar", "name_ru_RU": "Плата за проезд на \"Нагльфаре\"", "name_it_IT": "Obolo della Naglfar", "name_pt_PT": "Passagem do Naglfar", "on_use": false, "id_encounter": 1512, "id_journal_instance": 727, "id_map": 1492, "instance_type": 1}, {"id": 133646, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mote of Sanctification", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70114, "buy_price": 350571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mote of Sanctification", "name_ko_KR": "축성의 티끌", "name_fr_FR": "Granule de sanctification", "name_de_DE": "Partikel der Weihe", "name_zh_CN": "圣灵微粒", "name_es_ES": "Mota de santificación", "name_ru_RU": "Частица освящения", "name_it_IT": "Granulo della Santificazione", "name_pt_PT": "Partícula de Santificação", "on_use": true, "id_encounter": 1486, "id_journal_instance": 721, "id_map": 1477, "instance_type": 1}, {"id": 133647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gift of Radiance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 5666, "stat_alloc_3": 5666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 72, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70358, "buy_price": 351794, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0353000164031982, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Gift of Radiance", "name_ko_KR": "광휘의 선물", "name_fr_FR": "Don de radiance", "name_de_DE": "Gabe des Glanzes", "name_zh_CN": "光辉之赐", "name_es_ES": "Ofrenda de radiancia", "name_ru_RU": "Светозарный дар", "name_it_IT": "Dono della Radiosità", "name_pt_PT": "Dádiva do Esplendor", "on_use": true, "id_encounter": 1489, "id_journal_instance": 721, "id_map": 1477, "instance_type": 1}, {"id": 133766, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nether Anti-Toxin", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65058, "buy_price": 325290, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Nether Anti-Toxin", "name_ko_KR": "황천 해독제", "name_fr_FR": "Antitoxine du Néant", "name_de_DE": "Nethergegengift", "name_zh_CN": "虚空抗体", "name_es_ES": "Antitoxina abisal", "name_ru_RU": "Противоядие Пустоты", "name_it_IT": "Antitossina Fatua", "name_pt_PT": "Antitoxina Etérea", "on_use": false, "id_encounter": 1500, "id_journal_instance": 726, "id_map": 1516, "instance_type": 1}, {"id": 134146, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brulstone Idol", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295454, "buy_price": 1477270, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872000217437744, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Brulstone Idol", "name_ko_KR": "브룰바위 우상", "name_fr_FR": "Idole en broufpierre", "name_de_DE": "Brulsteingötze", "name_zh_CN": "蛮石雕像", "name_es_ES": "Ídolo de piedra brul", "name_ru_RU": "Идол из камня брулов", "name_it_IT": "Idolo di Pietrabrulla", "name_pt_PT": "Ídolo de Pedralesk", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134159, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rocksunder Lucky Statue", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287702, "buy_price": 1438512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9613000154495239, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Rocksunder Lucky Statue", "name_ko_KR": "바위가름 행운의 조각상", "name_fr_FR": "Statue porte-bonheur de brise-caillou", "name_de_DE": "Steinspalterglücksstatue", "name_zh_CN": "裂石者幸运雕像", "name_es_ES": "Estatua de la suerte Agrietarroca", "name_ru_RU": "Статуэтка-талисман из расколотого камня", "name_it_IT": "Statua della Fortuna del Fendiroccia", "name_pt_PT": "Estátua da Sorte Dividerrocha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Huge Roggstone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288809, "buy_price": 1444049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9649999737739563, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Huge Roggstone", "name_ko_KR": "커다란 로그바위", "name_fr_FR": "Enorme pierre de rogg", "name_de_DE": "Riesiger Roggstein", "name_zh_CN": "巨型赤岩", "name_es_ES": "Piedra rogg enorme", "name_ru_RU": "Огромный камень роггов", "name_it_IT": "Pietrarogg Enorme", "name_pt_PT": "Pedra-rogg Enorme", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134190, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ironrune Charm", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 299763, "buy_price": 1498818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0016000270843506, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Ironrune Charm", "name_ko_KR": "강철룬 부적", "name_fr_FR": "Charme runefer", "name_de_DE": "Eisenrunenamulett", "name_zh_CN": "铁符护身符", "name_es_ES": "Talismán Runaférrea", "name_ru_RU": "Амулет Железной Руны", "name_it_IT": "Talismano di Runaferrea", "name_pt_PT": "Patuá Runaferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134203, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Three-Toed Rabbit Foot", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292042, "buy_price": 1460210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9757999777793884, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Three-Toed Rabbit Foot", "name_ko_KR": "세 발가락 토끼 발", "name_fr_FR": "Patte de lapin à trois doigts", "name_de_DE": "Dreizehige Hasenpfote", "name_zh_CN": "三趾兔脚", "name_es_ES": "Pata de conejo con tres dedos", "name_ru_RU": "Трехпалая кроличья лапка", "name_it_IT": "Zampa di Coniglio a Tre Dita", "name_pt_PT": "Pé de Coelho de Três Dedos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134204, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bleached Skull Talisman", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293119, "buy_price": 1465598, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9793999791145325, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Bleached Skull Talisman", "name_ko_KR": "하얗게 바랜 해골 호신부", "name_fr_FR": "Talisman au crâne blanchi", "name_de_DE": "Gebleichter Schädeltalisman", "name_zh_CN": "破颅护身符", "name_es_ES": "Talismán de calavera blanquecina", "name_ru_RU": "Талисман из отбеленного черепа", "name_it_IT": "Talismano con Teschio Sbiancato", "name_pt_PT": "Talismã de Crânio Alvejado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134234, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Barnacled Azsharan Insignia", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 312004, "buy_price": 1560022, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0425000190734863, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Barnacled Azsharan Insignia", "name_ko_KR": "따개비 덮인 아즈샤라 휘장", "name_fr_FR": "Insigne d'Azshara couvert de bigorneaux", "name_de_DE": "Muschelverkrustetes azsharisches Insigne", "name_zh_CN": "长满藤壶的艾萨拉徽记", "name_es_ES": "Insignia de Azshara erosionada por el agua", "name_ru_RU": "Обросший ракушками знак Азшары", "name_it_IT": "Insegna di Azshara Incrostata di Conchiglie", "name_pt_PT": "Insígnia Azsharana com Cracas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134247, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Silent Seashell", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 304282, "buy_price": 1521414, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Silent Seashell", "name_ko_KR": "소리 없는 조개껍질", "name_fr_FR": "Coquillage silencieux", "name_de_DE": "Stumme Seemuschelschale", "name_zh_CN": "静默贝壳", "name_es_ES": "Caracola silenciosa", "name_ru_RU": "Безмолвная морская ракушка", "name_it_IT": "Conchiglia Silente", "name_pt_PT": "Concha Silenciosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134248, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leycoral Shard", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 305390, "buy_price": 1526951, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020400047302246, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Leycoral Shard", "name_ko_KR": "지맥산호 조각", "name_fr_FR": "Éclat de corail tellurique", "name_de_DE": "Leykorallensplitter", "name_zh_CN": "魔珊瑚碎片", "name_es_ES": "Fragmento de coral Ley", "name_ru_RU": "Осколок коралла силы", "name_it_IT": "Scheggia di Corallo di Faglia", "name_pt_PT": "Estilhaço de Coral do Meridiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134278, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightborne Defender's Badge", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294316, "buy_price": 1471583, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9833999872207642, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightborne Defender's Badge", "name_ko_KR": "나이트본 방어병의 휘장", "name_fr_FR": "Ecusson de défenseur sacrenuit", "name_de_DE": "Abzeichen des Verteidigers der Nachtgeborenen", "name_zh_CN": "夜之子防御者徽章", "name_es_ES": "Distintivo de defensor Nocheterna", "name_ru_RU": "Жетон ночнорожденного-защитника", "name_it_IT": "Distintivo del Difensore Nobile Oscuro", "name_pt_PT": "Distintivo de Defensor Filho da Noite", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134291, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightborne's Hunting Horn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286565, "buy_price": 1432826, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574999809265137, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightborne's Hunting Horn", "name_ko_KR": "나이트본의 사냥용 뿔피리", "name_fr_FR": "Cor de chasse sacrenuit", "name_de_DE": "Jagdhorn der Nachtgeborenen", "name_zh_CN": "夜之子的狩猎号角", "name_es_ES": "Cuerno de caza de los Nocheterna", "name_ru_RU": "Охотничий рог ночнорожденных", "name_it_IT": "Corno da Caccia dei Nobili Oscuri", "name_pt_PT": "Trompa de Caça dos Filhos da Noite", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightborne Researcher's Phial", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287672, "buy_price": 1438363, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9611999988555908, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightborne Researcher's Phial", "name_ko_KR": "나이트본 연구원의 약병", "name_fr_FR": "Flasque de chercheur sacrenuit", "name_de_DE": "Forschungsphiole der Nachtgeborenen", "name_zh_CN": "夜之子研究员的药瓶", "name_es_ES": "Ampolla de investigador Nocheterna", "name_ru_RU": "Фиал исследователя-ночнорожденного", "name_it_IT": "Fiala del Ricercatore Nobile Oscuro", "name_pt_PT": "Frasco do Pesquisador Filho da Noite", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134322, "race_mask": 18446744073709551615, "desc": "No more mana, but still packs a wallop.", "pad2": "", "pad1": "", "pad0": "", "name": "Drained Mana Crystal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 306557, "buy_price": 1532787, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Drained Mana Crystal", "name_ko_KR": "고갈된 마나 결정", "name_fr_FR": "Cristal de mana drainé", "name_de_DE": "Ausgelaugter Manakristall", "name_zh_CN": "干涸的法力水晶", "name_es_ES": "Cristal de maná drenado", "name_ru_RU": "Истощенный кристалл маны", "name_it_IT": "Cristallo di Mana Prosciugato", "name_pt_PT": "Cristal do Mana Drenado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134335, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mana Crystal Shard", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290904, "buy_price": 1454524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mana Crystal Shard", "name_ko_KR": "마나 결정 파편", "name_fr_FR": "Éclat de cristal de mana", "name_de_DE": "Manakristallsplitter", "name_zh_CN": "法力水晶碎片", "name_es_ES": "Fragmento de cristal de maná", "name_ru_RU": "Осколок кристалла маны", "name_it_IT": "Frammento di Cristallo di Mana", "name_pt_PT": "Estilhaço de Cristal de Mana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134336, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Mana Crystal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 299913, "buy_price": 1499566, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stolen Mana Crystal", "name_ko_KR": "도둑맞은 마나 결정", "name_fr_FR": "Cristal de mana volé", "name_de_DE": "Gestohlener Manakristall", "name_zh_CN": "失窃的法力水晶", "name_es_ES": "Cristal de maná robado", "name_ru_RU": "Украденный кристалл маны", "name_it_IT": "Cristallo di Mana Rubato", "name_pt_PT": "Cristal de Mana Roubado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134366, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Legionnaire's Mandate", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 310867, "buy_price": 1554336, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038699984550476, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Legionnaire's Mandate", "name_ko_KR": "용사의 지령", "name_fr_FR": "Mandat de légionnaire", "name_de_DE": "Legionärsmandat", "name_zh_CN": "军团士兵指令", "name_es_ES": "Mandato de Legionario", "name_ru_RU": "Предписание легионера", "name_it_IT": "Ordine del Legionario", "name_pt_PT": "Mandato do Legionário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134379, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infernal Bloodstone Shard", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 303145, "buy_price": 1515728, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0128999948501587, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Infernal Bloodstone Shard", "name_ko_KR": "조각난 지옥 혈석", "name_fr_FR": "Éclat de pierre de sang infernale", "name_de_DE": "Höllischer Blutsteinsplitter", "name_zh_CN": "狱火血石碎片", "name_es_ES": "Fragmento de sangrita infernal", "name_ru_RU": "Осколок инфернального кровавого камня", "name_it_IT": "Scheggia di Sanguinite Infernale", "name_pt_PT": "Lasca de Pedra-sangrenta Infernal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134380, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burning Portal Key", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 304253, "buy_price": 1521265, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0166000127792358, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Burning Portal Key", "name_ko_KR": "불타는 차원문 열쇠", "name_fr_FR": "Clé de portail ardente", "name_de_DE": "Brennender Portalschlüssel", "name_zh_CN": "燃烧的传送门之钥", "name_es_ES": "Llave de portal ardiente", "name_ru_RU": "Ключ от портала Легиона", "name_it_IT": "Chiave del Portale Infuocato", "name_pt_PT": "Chave do Portal Ardente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Accolade", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 28362, "buy_price": 141814, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535000324249268, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Recruit's Accolade", "name_ko_KR": "훈련생용 상징", "name_fr_FR": "Décoration de recrue", "name_de_DE": "Auszeichnung des Rekruten", "name_zh_CN": "新兵奖章", "name_es_ES": "Galardón de recluta", "name_ru_RU": "Акколада новичка", "name_it_IT": "Decorazione della Recluta", "name_pt_PT": "Galardão do Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134690, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Distinction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 29258, "buy_price": 146291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836000204086304, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Recruit's Distinction", "name_ko_KR": "훈련생용 훈장", "name_fr_FR": "Distinction de recrue", "name_de_DE": "Ehrennadel des Rekruten", "name_zh_CN": "新兵的荣耀", "name_es_ES": "Distinción de recluta", "name_ru_RU": "Знак отличия новичка", "name_it_IT": "Onorificenza della Recluta", "name_pt_PT": "Distinção do Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134691, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Badge", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 29368, "buy_price": 146841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Recruit's Badge", "name_ko_KR": "훈련생용 휘장", "name_fr_FR": "Ecusson de recrue", "name_de_DE": "Abzeichen des Rekruten", "name_zh_CN": "新兵徽章", "name_es_ES": "Distintivo de recluta", "name_ru_RU": "Жетон новичка", "name_it_IT": "Distintivo della Recluta", "name_pt_PT": "Distintivo do Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134692, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enveloping Accolade", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 295890, "buy_price": 1479454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9909999966621399, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Enveloping Accolade", "name_ko_KR": "휘감는 상징", "name_fr_FR": "Décoration enveloppante", "name_de_DE": "Einhüllende Auszeichnung", "name_zh_CN": "遮蔽奖章", "name_es_ES": "Galardón envolvente", "name_ru_RU": "Опутывающая акколада", "name_it_IT": "Decorazione Avvolgente", "name_pt_PT": "Galardão Envolvente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134698, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enveloping Distinction", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 302459, "buy_price": 1512297, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0130000114440918, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Enveloping Distinction", "name_ko_KR": "휘감는 훈장", "name_fr_FR": "Distinction enveloppante", "name_de_DE": "Einhüllende Ehrennadel", "name_zh_CN": "遮蔽荣耀", "name_es_ES": "Distinción envolvente", "name_ru_RU": "Опутывающий знак отличия", "name_it_IT": "Onorificenza Avvolgente", "name_pt_PT": "Distinção Envolvente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enveloping Badge", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 299145, "buy_price": 1495726, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0018999576568604, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Enveloping Badge", "name_ko_KR": "휘감는 휘장", "name_fr_FR": "Ecusson enveloppant", "name_de_DE": "Einhüllendes Abzeichen", "name_zh_CN": "遮蔽徽章", "name_es_ES": "Distintivo envolvente", "name_ru_RU": "Опутывающий жетон", "name_it_IT": "Distintivo Avvolgente", "name_pt_PT": "Distintivo Envolvente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134743, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cold-Touched Accolade", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 72826, "buy_price": 364130, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574999809265137, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cold-Touched Accolade", "name_ko_KR": "차가운 손길의 상징", "name_fr_FR": "Décoration touchée par le froid", "name_de_DE": "Kältedurchdrungene Auszeichnung", "name_zh_CN": "寒触奖章", "name_es_ES": "Galardón de tacto frío", "name_ru_RU": "Тронутая холодом акколада", "name_it_IT": "Decorazione Toccata dal Freddo", "name_pt_PT": "Galardão Tocado pelo Frio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134744, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cold-Touched Distinction", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 73107, "buy_price": 365537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9611999988555908, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cold-Touched Distinction", "name_ko_KR": "차가운 손길의 훈장", "name_fr_FR": "Distinction touchée par le froid", "name_de_DE": "Kältedurchdrungene Ehrennadel", "name_zh_CN": "寒触荣耀", "name_es_ES": "Distinción de tacto frío", "name_ru_RU": "Тронутый холодом знак отличия", "name_it_IT": "Onorificenza Toccata dal Freddo", "name_pt_PT": "Distinção Tocada pelo Frio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134745, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cold-Touched Badge", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 73388, "buy_price": 366944, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.964900016784668, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cold-Touched Badge", "name_ko_KR": "차가운 손길의 휘장", "name_fr_FR": "Ecusson touché par le froid", "name_de_DE": "Kältedurchdrungenes Abzeichen", "name_zh_CN": "寒触徽章", "name_es_ES": "Distintivo de tacto frío", "name_ru_RU": "Тронутый холодом жетон", "name_it_IT": "Distintivo Toccato dal Freddo", "name_pt_PT": "Distintivo Tocado pelo Frio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134777, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seasoned Accolade", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 203734, "buy_price": 1018673, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0353000164031982, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Seasoned Accolade", "name_ko_KR": "숙련의 상징", "name_fr_FR": "Décoration aguerrie", "name_de_DE": "Bewährte Auszeichnung", "name_zh_CN": "老兵奖章", "name_es_ES": "Galardón avezado", "name_ru_RU": "Ветеранская акколада", "name_it_IT": "Decorazione Capace", "name_pt_PT": "Galardão Experiente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134788, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seasoned Distinction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 197201, "buy_price": 986006, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Seasoned Distinction", "name_ko_KR": "숙련의 훈장", "name_fr_FR": "Distinction aguerrie", "name_de_DE": "Bewährte Ehrennadel", "name_zh_CN": "老兵荣耀", "name_es_ES": "Distinción avezada", "name_ru_RU": "Ветеранский знак отличия", "name_it_IT": "Onorificenza Capace", "name_pt_PT": "Distinção do Experiente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134804, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seasoned Badge", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 194288, "buy_price": 971443, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Seasoned Badge", "name_ko_KR": "숙련의 휘장", "name_fr_FR": "Ecusson aguerri", "name_de_DE": "Bewährtes Abzeichen", "name_zh_CN": "老兵徽章", "name_es_ES": "Distintivo avezado", "name_ru_RU": "Ветеранский жетон", "name_it_IT": "Distintivo Capace", "name_pt_PT": "Distintivo de Experiente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135691, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281338, "buy_price": 1406692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135804, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador vindicativo", "name_ru_RU": "Жетон завоевания карающего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135692, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 484394, "buy_price": 2421974, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135805, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador vindicativo", "name_ru_RU": "Акколада завоевания карающего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135693, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283423, "buy_price": 1417118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135806, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador vindicativo", "name_ru_RU": "Знак завоевания карающего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135694, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284466, "buy_price": 1422332, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135807, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador vindicativo", "name_ru_RU": "Эмблема жестокости карающего гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Astioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135695, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285480, "buy_price": 1427404, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135808, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador vindicativo", "name_ru_RU": "Эмблема упорства карающего гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Astioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135696, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286523, "buy_price": 1432617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135809, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Meditation", "name_ko_KR": "앙갚음하는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador vindicativo", "name_ru_RU": "Эмблема медитации карающего гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Astioso", "name_pt_PT": "Emblema da Meditação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135697, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287566, "buy_price": 1437830, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135810, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador vindicativo", "name_ru_RU": "Жетон господства карающего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominância do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135698, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 495077, "buy_price": 2475387, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135811, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador vindicativo", "name_ru_RU": "Акколада господства карающего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135699, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1902, "buy_price": 9512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135812, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador vindicativo", "name_ru_RU": "Знак господства карающего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135700, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290665, "buy_price": 1453328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135813, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador vindicativo", "name_ru_RU": "Жетон победы карающего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Astioso", "name_pt_PT": "Distintivo da Vitória do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135701, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500394, "buy_price": 2501973, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0351999998092651, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135814, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador vindicativo", "name_ru_RU": "Акколада победы карающего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Astioso", "name_pt_PT": "Galardão da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135702, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271983, "buy_price": 1359915, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135815, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador vindicativo", "name_ru_RU": "Знак победы карающего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Astioso", "name_pt_PT": "Insígnia da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135703, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273025, "buy_price": 1365128, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135816, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Adaptation", "name_ko_KR": "앙갚음하는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador vindicativo", "name_ru_RU": "Жетон адаптации карающего гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Astioso", "name_pt_PT": "Distintivo da Adaptação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135804, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281338, "buy_price": 1406692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135691, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador vindicativo", "name_ru_RU": "Жетон завоевания карающего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135805, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 484394, "buy_price": 2421974, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135692, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador vindicativo", "name_ru_RU": "Акколада завоевания карающего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135806, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283423, "buy_price": 1417118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135693, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador vindicativo", "name_ru_RU": "Знак завоевания карающего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135807, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284466, "buy_price": 1422332, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135694, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador vindicativo", "name_ru_RU": "Эмблема жестокости карающего гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Astioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135808, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285480, "buy_price": 1427404, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135695, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador vindicativo", "name_ru_RU": "Эмблема упорства карающего гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Astioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135809, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286523, "buy_price": 1432617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135696, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Meditation", "name_ko_KR": "앙갚음하는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador vindicativo", "name_ru_RU": "Эмблема медитации карающего гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Astioso", "name_pt_PT": "Emblema da Meditação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135810, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287566, "buy_price": 1437830, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135697, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador vindicativo", "name_ru_RU": "Жетон господства карающего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominância do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135811, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 495077, "buy_price": 2475387, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135698, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador vindicativo", "name_ru_RU": "Акколада господства карающего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135812, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1902, "buy_price": 9512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135699, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador vindicativo", "name_ru_RU": "Знак господства карающего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135813, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290665, "buy_price": 1453328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135700, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador vindicativo", "name_ru_RU": "Жетон победы карающего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Astioso", "name_pt_PT": "Distintivo da Vitória do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135814, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500394, "buy_price": 2501973, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0351999998092651, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135701, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador vindicativo", "name_ru_RU": "Акколада победы карающего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Astioso", "name_pt_PT": "Galardão da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135815, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271983, "buy_price": 1359915, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135702, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador vindicativo", "name_ru_RU": "Знак победы карающего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Astioso", "name_pt_PT": "Insígnia da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135816, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273025, "buy_price": 1365128, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135703, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Adaptation", "name_ko_KR": "앙갚음하는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador vindicativo", "name_ru_RU": "Жетон адаптации карающего гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Astioso", "name_pt_PT": "Distintivo da Adaptação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135917, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211003, "buy_price": 1055019, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136030, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente vindicativo", "name_ru_RU": "Жетон завоевания карающего бойца", "name_it_IT": "Distintivo della Conquista del Combattente Astioso", "name_pt_PT": "Distintivo da Dominação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135918, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 359896, "buy_price": 1799480, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136031, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente vindicativo", "name_ru_RU": "Акколада завоевания карающего бойца", "name_it_IT": "Decorazione della Conquista del Combattente Astioso", "name_pt_PT": "Galardão da Dominação do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135919, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212567, "buy_price": 1062839, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136032, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente vindicativo", "name_ru_RU": "Знак завоевания карающего бойца", "name_it_IT": "Fregio della Conquista del Combattente Astioso", "name_pt_PT": "Insígnia da Dominação do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135920, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 213349, "buy_price": 1066749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136033, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente vindicativo", "name_ru_RU": "Эмблема жестокости карающего бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Astioso", "name_pt_PT": "Emblema da Crueldade do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135921, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214110, "buy_price": 1070553, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136034, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente vindicativo", "name_ru_RU": "Эмблема упорства карающего бойца", "name_it_IT": "Emblema della Tenacia del Combattente Astioso", "name_pt_PT": "Emblema da Tenacidade do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135922, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214892, "buy_price": 1074463, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136035, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Meditation", "name_ko_KR": "앙갚음하는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente vindicativo", "name_ru_RU": "Эмблема медитации карающего бойца", "name_it_IT": "Emblema della Meditazione del Combattente Astioso", "name_pt_PT": "Emblema da Meditação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135923, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 215674, "buy_price": 1078372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136036, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente vindicativo", "name_ru_RU": "Жетон господства карающего бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Astioso", "name_pt_PT": "Distintivo da Dominância do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135924, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367833, "buy_price": 1839165, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136037, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente vindicativo", "name_ru_RU": "Акколада господства карающего бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Astioso", "name_pt_PT": "Galardão da Dominância do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135925, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1426, "buy_price": 7134, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136038, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente vindicativo", "name_ru_RU": "Знак господства карающего бойца", "name_it_IT": "Fregio della Dominazione del Combattente Astioso", "name_pt_PT": "Insígnia da Dominância do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135926, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217999, "buy_price": 1089996, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136039, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente vindicativo", "name_ru_RU": "Жетон победы карающего бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Astioso", "name_pt_PT": "Distintivo da Vitória do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135927, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 345350, "buy_price": 1726754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136040, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente vindicativo", "name_ru_RU": "Акколада победы карающего бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Astioso", "name_pt_PT": "Galardão da Vitória do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135928, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203987, "buy_price": 1019936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136041, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente vindicativo", "name_ru_RU": "Знак победы карающего бойца", "name_it_IT": "Fregio della Vittoria del Combattente Astioso", "name_pt_PT": "Insígnia da Vitória do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135929, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204769, "buy_price": 1023846, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136042, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Adaptation", "name_ko_KR": "앙갚음하는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente vindicativo", "name_ru_RU": "Жетон адаптации карающего бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Astioso", "name_pt_PT": "Distintivo da Adaptação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136030, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211003, "buy_price": 1055019, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135917, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente vindicativo", "name_ru_RU": "Жетон завоевания карающего бойца", "name_it_IT": "Distintivo della Conquista del Combattente Astioso", "name_pt_PT": "Distintivo da Dominação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136031, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 359896, "buy_price": 1799480, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135918, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente vindicativo", "name_ru_RU": "Акколада завоевания карающего бойца", "name_it_IT": "Decorazione della Conquista del Combattente Astioso", "name_pt_PT": "Galardão da Dominação do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136032, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212567, "buy_price": 1062839, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135919, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente vindicativo", "name_ru_RU": "Знак завоевания карающего бойца", "name_it_IT": "Fregio della Conquista del Combattente Astioso", "name_pt_PT": "Insígnia da Dominação do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136033, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 213349, "buy_price": 1066749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135920, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente vindicativo", "name_ru_RU": "Эмблема жестокости карающего бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Astioso", "name_pt_PT": "Emblema da Crueldade do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136034, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214110, "buy_price": 1070553, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135921, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente vindicativo", "name_ru_RU": "Эмблема упорства карающего бойца", "name_it_IT": "Emblema della Tenacia del Combattente Astioso", "name_pt_PT": "Emblema da Tenacidade do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136035, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214892, "buy_price": 1074463, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135922, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Meditation", "name_ko_KR": "앙갚음하는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente vindicativo", "name_ru_RU": "Эмблема медитации карающего бойца", "name_it_IT": "Emblema della Meditazione del Combattente Astioso", "name_pt_PT": "Emblema da Meditação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136036, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 215674, "buy_price": 1078372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135923, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente vindicativo", "name_ru_RU": "Жетон господства карающего бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Astioso", "name_pt_PT": "Distintivo da Dominância do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136037, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367833, "buy_price": 1839165, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135924, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente vindicativo", "name_ru_RU": "Акколада господства карающего бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Astioso", "name_pt_PT": "Galardão da Dominância do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136038, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1426, "buy_price": 7134, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135925, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente vindicativo", "name_ru_RU": "Знак господства карающего бойца", "name_it_IT": "Fregio della Dominazione del Combattente Astioso", "name_pt_PT": "Insígnia da Dominância do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136039, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217999, "buy_price": 1089996, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135926, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente vindicativo", "name_ru_RU": "Жетон победы карающего бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Astioso", "name_pt_PT": "Distintivo da Vitória do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136040, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 345350, "buy_price": 1726754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135927, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente vindicativo", "name_ru_RU": "Акколада победы карающего бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Astioso", "name_pt_PT": "Galardão da Vitória do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136041, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203987, "buy_price": 1019936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135928, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente vindicativo", "name_ru_RU": "Знак победы карающего бойца", "name_it_IT": "Fregio della Vittoria del Combattente Astioso", "name_pt_PT": "Insígnia da Vitória do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136042, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204769, "buy_price": 1023846, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135929, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Adaptation", "name_ko_KR": "앙갚음하는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente vindicativo", "name_ru_RU": "Жетон адаптации карающего бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Astioso", "name_pt_PT": "Distintivo da Adaptação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136143, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281338, "buy_price": 1406692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136256, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador vindicativo", "name_ru_RU": "Жетон завоевания карающего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136144, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 501395, "buy_price": 2506977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136257, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador vindicativo", "name_ru_RU": "Акколада завоевания карающего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136145, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283423, "buy_price": 1417118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136258, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador vindicativo", "name_ru_RU": "Знак завоевания карающего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136146, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284466, "buy_price": 1422332, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136259, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador vindicativo", "name_ru_RU": "Эмблема жестокости карающего гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Astioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136147, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285480, "buy_price": 1427404, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136260, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador vindicativo", "name_ru_RU": "Эмблема упорства карающего гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Astioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136148, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286523, "buy_price": 1432617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136261, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Meditation", "name_ko_KR": "앙갚음하는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador vindicativo", "name_ru_RU": "Эмблема медитации карающего гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Astioso", "name_pt_PT": "Emblema da Meditação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136149, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287566, "buy_price": 1437830, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136262, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador vindicativo", "name_ru_RU": "Жетон господства карающего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominância do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136150, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 512453, "buy_price": 2562265, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136263, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador vindicativo", "name_ru_RU": "Акколада господства карающего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136151, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1902, "buy_price": 9512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136264, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador vindicativo", "name_ru_RU": "Знак господства карающего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136152, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269926, "buy_price": 1349630, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136265, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador vindicativo", "name_ru_RU": "Жетон победы карающего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Astioso", "name_pt_PT": "Distintivo da Vitória do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136153, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 481131, "buy_price": 2405657, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136266, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador vindicativo", "name_ru_RU": "Акколада победы карающего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Astioso", "name_pt_PT": "Galardão da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136154, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271983, "buy_price": 1359915, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136267, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador vindicativo", "name_ru_RU": "Знак победы карающего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Astioso", "name_pt_PT": "Insígnia da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136155, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273025, "buy_price": 1365128, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136268, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Adaptation", "name_ko_KR": "앙갚음하는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador vindicativo", "name_ru_RU": "Жетон адаптации карающего гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Astioso", "name_pt_PT": "Distintivo da Adaptação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136256, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281338, "buy_price": 1406692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136143, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador vindicativo", "name_ru_RU": "Жетон завоевания карающего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136257, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 501395, "buy_price": 2506977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136144, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador vindicativo", "name_ru_RU": "Акколада завоевания карающего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136258, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283423, "buy_price": 1417118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136145, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador vindicativo", "name_ru_RU": "Знак завоевания карающего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136259, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284466, "buy_price": 1422332, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136146, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador vindicativo", "name_ru_RU": "Эмблема жестокости карающего гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Astioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136260, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285480, "buy_price": 1427404, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136147, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador vindicativo", "name_ru_RU": "Эмблема упорства карающего гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Astioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136261, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286523, "buy_price": 1432617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136148, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Meditation", "name_ko_KR": "앙갚음하는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador vindicativo", "name_ru_RU": "Эмблема медитации карающего гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Astioso", "name_pt_PT": "Emblema da Meditação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136262, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287566, "buy_price": 1437830, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136149, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador vindicativo", "name_ru_RU": "Жетон господства карающего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominância do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136263, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 512403, "buy_price": 2562015, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136150, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador vindicativo", "name_ru_RU": "Акколада господства карающего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136264, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1902, "buy_price": 9512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136151, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador vindicativo", "name_ru_RU": "Знак господства карающего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136265, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269926, "buy_price": 1349630, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136152, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador vindicativo", "name_ru_RU": "Жетон победы карающего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Astioso", "name_pt_PT": "Distintivo da Vitória do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136266, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 481131, "buy_price": 2405657, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136153, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador vindicativo", "name_ru_RU": "Акколада победы карающего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Astioso", "name_pt_PT": "Galardão da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136267, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271983, "buy_price": 1359915, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136154, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador vindicativo", "name_ru_RU": "Знак победы карающего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Astioso", "name_pt_PT": "Insígnia da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136268, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273025, "buy_price": 1365128, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136155, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Adaptation", "name_ko_KR": "앙갚음하는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador vindicativo", "name_ru_RU": "Жетон адаптации карающего гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Astioso", "name_pt_PT": "Distintivo da Adaptação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136714, "race_mask": 18446744073709551615, "desc": "This oversized bone is slowly leaking soul energy.", "pad2": "", "pad1": "", "pad0": "", "name": "Amalgam's Seventh Spine", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1416, "buy_price": 7083, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Amalgam's Seventh Spine", "name_ko_KR": "융합체의 일곱 번째 척추뼈", "name_fr_FR": "Septième vertèbre de l'amalgame", "name_de_DE": "Siebenter Stachel des Amalgams", "name_zh_CN": "融合怪的第七块脊柱", "name_es_ES": "Séptimo espinazo de la amalgama", "name_ru_RU": "Седьмой шип Слияния", "name_it_IT": "Settima Spina Dorsale dell'Amalgama", "name_pt_PT": "Espinha da Sétima Amálgama", "on_use": false, "id_encounter": 1518, "id_journal_instance": 740, "id_map": 1501, "instance_type": 1}, {"id": 136715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spiked Counterweight", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1319, "buy_price": 6597, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9505000114440918, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Spiked Counterweight", "name_ko_KR": "가시 돋친 평형추", "name_fr_FR": "Contrepoids pointu", "name_de_DE": "Stachelbesetztes Gegengewicht", "name_zh_CN": "倒刺砝码", "name_es_ES": "Contrapeso con púas", "name_ru_RU": "Шипастый противовес", "name_it_IT": "Contrappeso Puntuto", "name_pt_PT": "Contrapeso Espinhento", "on_use": false, "id_encounter": 1664, "id_journal_instance": 740, "id_map": 1501, "instance_type": 1}, {"id": 136716, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Caged Horror", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1324, "buy_price": 6623, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954200029373169, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Caged Horror", "name_ko_KR": "우리에 갇힌 공포", "name_fr_FR": "Horreur en cage", "name_de_DE": "Eingefangener Schrecken", "name_zh_CN": "笼中恐魔", "name_es_ES": "Horror enjaulado", "name_ru_RU": "Заточенный ужас", "name_it_IT": "Orrore in Gabbia", "name_pt_PT": "Terror Enjaulado", "on_use": false, "id_encounter": 1672, "id_journal_instance": 740, "id_map": 1501, "instance_type": 1}, {"id": 136736, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badge of the Wardens", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285547, "buy_price": 1427738, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9541000127792358, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Badge of the Wardens", "name_ko_KR": "감시관의 휘장", "name_fr_FR": "Ecusson des Gardiennes", "name_de_DE": "Abzeichen der Wächterinnen", "name_zh_CN": "守望者徽章", "name_es_ES": "Distintivo de las Celadoras", "name_ru_RU": "Жетон Стражей", "name_it_IT": "Distintivo delle Custodi", "name_pt_PT": "Distintivo das Guardiãs", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136749, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Sentinel", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 307754, "buy_price": 1538773, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mark of the Sentinel", "name_ko_KR": "파수꾼의 징표", "name_fr_FR": "Marque de la Sentinelle", "name_de_DE": "Zeichen der Schildwache", "name_zh_CN": "哨兵印记", "name_es_ES": "Marca del centinela", "name_ru_RU": "Знак часового", "name_it_IT": "Marchio della Sentinella", "name_pt_PT": "Marca da Sentinela", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136750, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vault Guardian's Talisman", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 308861, "buy_price": 1544309, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Vault Guardian's Talisman", "name_ko_KR": "금고 경비병의 부적", "name_fr_FR": "Talisman de gardien du caveau", "name_de_DE": "Talisman des Verlieswächters", "name_zh_CN": "地窟守护者的护符", "name_es_ES": "Talismán de guardián de la cámara", "name_ru_RU": "Талисман стража Казематов", "name_it_IT": "Talismano delle Custodi delle Segrete", "name_pt_PT": "Talismã do Guardião da Câmara", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136975, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hunger of the Pack", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69883, "buy_price": 349415, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Hunger of the Pack", "name_ko_KR": "무리의 굶주림", "name_fr_FR": "Faim de la meute", "name_de_DE": "Hunger des Rudels", "name_zh_CN": "狼群之饥", "name_es_ES": "El hambre de la manada", "name_ru_RU": "Голод стаи", "name_it_IT": "Fame del Branco", "name_pt_PT": "Fome da Matilha", "on_use": false, "id_encounter": 1487, "id_journal_instance": 721, "id_map": 1477, "instance_type": 1}, {"id": 136978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ember of Nullification", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1442, "buy_price": 7214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0393999814987183, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Ember of Nullification", "name_ko_KR": "무효화의 잿불", "name_fr_FR": "Braise d'invalidation", "name_de_DE": "Funke der Nullifikation", "name_zh_CN": "废灵余烬", "name_es_ES": "Ascua de anulación", "name_ru_RU": "Уголек нейтрализации", "name_it_IT": "Brace della Nullificazione", "name_pt_PT": "Brasa de Nulificação", "on_use": false, "id_encounter": 1653, "id_journal_instance": 740, "id_map": 1501, "instance_type": 1}, {"id": 137301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Starlight", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1324, "buy_price": 6622, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9541000127792358, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Starlight", "name_ko_KR": "더럽혀진 별빛", "name_fr_FR": "Lumétoile corrompue", "name_de_DE": "Verderbtes Sternenlicht", "name_zh_CN": "腐化星光", "name_es_ES": "Luz estelar corrupta", "name_ru_RU": "Оскверненный звездный свет", "name_it_IT": "Luce Stellare Corrotta", "name_pt_PT": "Luz Estelar Corrompida", "on_use": false, "id_encounter": 1654, "id_journal_instance": 762, "id_map": 1466, "instance_type": 1}, {"id": 137306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oakheart's Gnarled Root", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1349, "buy_price": 6749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oakheart's Gnarled Root", "name_ko_KR": "나무심장의 비틀린 뿌리", "name_fr_FR": "Racine noueuse de Chênecœur", "name_de_DE": "Runzelwurzel von Eichenherz", "name_zh_CN": "橡树之心的瘤节之根", "name_es_ES": "Raíz nudosa de Corazón de Roble", "name_ru_RU": "Узловатый корень Дубосерда", "name_it_IT": "Radice Contorta di Cuorquercia", "name_pt_PT": "Raiz Nodosa do Coração de Carvalho", "on_use": false, "id_encounter": 1655, "id_journal_instance": 762, "id_map": 1466, "instance_type": 1}, {"id": 137312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightmare Egg Shell", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1417, "buy_price": 7087, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0210000276565552, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Nightmare Egg Shell", "name_ko_KR": "악몽의 알 껍질", "name_fr_FR": "Coquille d'œuf cauchemardesque", "name_de_DE": "Alptraumeierschale", "name_zh_CN": "梦魇蛋壳", "name_es_ES": "Cáscara de huevo de la Pesadilla", "name_ru_RU": "Скорлупа кошмарного яйца", "name_it_IT": "Guscio d'Uovo dell'Incubo", "name_pt_PT": "Casca de Ovo do Pesadelo", "on_use": false, "id_encounter": 1656, "id_journal_instance": 762, "id_map": 1466, "instance_type": 1}, {"id": 137315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Writhing Heart of Darkness", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1432, "buy_price": 7163, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Writhing Heart of Darkness", "name_ko_KR": "몸서리치는 어둠의 심장", "name_fr_FR": "Cœur des ténèbres grouillant", "name_de_DE": "Zuckendes Herz der Dunkelheit", "name_zh_CN": "蠕动的黑暗之心", "name_es_ES": "Corazón avieso de la oscuridad", "name_ru_RU": "Бьющееся сердце Тьмы", "name_it_IT": "Cuore di Tenebra Vorticante", "name_pt_PT": "Coração das Trevas Convulsente", "on_use": false, "id_encounter": 1657, "id_journal_instance": 762, "id_map": 1466, "instance_type": 1}, {"id": 137329, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurehead of the Naglfar", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1401, "buy_price": 7009, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0097999572753906, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Figurehead of the Naglfar", "name_ko_KR": "나글파르의 선수상", "name_fr_FR": "Figure de proue du Naglfar", "name_de_DE": "Galionsfigur der Naglfar", "name_zh_CN": "纳格法尔号船首像", "name_es_ES": "Mascarón del Naglfar", "name_ru_RU": "Резная фигура \"Нагльфара\"", "name_it_IT": "Statuetta della Naglfar", "name_pt_PT": "Carranca dos Naglfar", "on_use": true, "id_encounter": 1663, "id_journal_instance": 727, "id_map": 1492, "instance_type": 1}, {"id": 137338, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of Rokmora", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 72, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70875, "buy_price": 354376, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0428999662399292, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shard of Rokmora", "name_ko_KR": "로크모라의 파편", "name_fr_FR": "Éclat de Rokmora", "name_de_DE": "Splitter von Rokmora", "name_zh_CN": "洛克莫拉的碎片", "name_es_ES": "Fragmento de Rokmora", "name_ru_RU": "Осколок Рокморы", "name_it_IT": "Scheggia di Rokmora", "name_pt_PT": "Estilhaço de Rokmora", "on_use": true, "id_encounter": 1662, "id_journal_instance": 767, "id_map": 1458, "instance_type": 1}, {"id": 137344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Cragshaper", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67368, "buy_price": 336843, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9912999868392944, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of the Cragshaper", "name_ko_KR": "바위구체자의 부적", "name_fr_FR": "Talisman de Sculpte-Roche", "name_de_DE": "Talisman des Klippenformers", "name_zh_CN": "塑山的护符", "name_es_ES": "Dije del Formarriscos", "name_ru_RU": "Талисман Скаломола", "name_it_IT": "Talismano del Plasmarupi", "name_pt_PT": "Talismã do Fazpenhasco", "on_use": true, "id_encounter": 1665, "id_journal_instance": 767, "id_map": 1458, "instance_type": 1}, {"id": 137349, "race_mask": 18446744073709551615, "desc": "This thing is enormous. It must weigh a tongue!", "pad2": "", "pad1": "", "pad0": "", "name": "Naraxas' Spiked Tongue", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1401, "buy_price": 7008, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0096999406814575, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Naraxas' Spiked Tongue", "name_ko_KR": "나락사스의 가시 돋친 혀", "name_fr_FR": "Langue à pointes de Naraxas", "name_de_DE": "Naraxas' Hakenzunge", "name_zh_CN": "纳拉萨斯的尖刺之舌", "name_es_ES": "Lengua con pinchos de Naraxas", "name_ru_RU": "Шипастый язык Нараксас", "name_it_IT": "Lingua Biforcuta di Naraxas", "name_pt_PT": "Língua Espinhenta de Naraxas", "on_use": false, "id_encounter": 1673, "id_journal_instance": 767, "id_map": 1458, "instance_type": 1}, {"id": 137357, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Dargrul", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70617, "buy_price": 353085, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Dargrul", "name_ko_KR": "다르그룰의 징표", "name_fr_FR": "Marque de Dargrul", "name_de_DE": "Mal von Dargrul", "name_zh_CN": "达古尔的印记", "name_es_ES": "Marca de Dargrul", "name_ru_RU": "Знак Даргрула", "name_it_IT": "Marchio di Dargrul", "name_pt_PT": "Marca de Dargrul", "on_use": false, "id_encounter": 1687, "id_journal_instance": 767, "id_map": 1458, "instance_type": 1}, {"id": 137362, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Parjesh's Medallion", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66865, "buy_price": 334328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9839000105857849, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Parjesh's Medallion", "name_ko_KR": "파르제쉬의 메달", "name_fr_FR": "Médaillon de Parjesh", "name_de_DE": "Parjeshs Medaillon", "name_zh_CN": "帕杰什的勋章", "name_es_ES": "Medallón de Parjesh", "name_ru_RU": "Медальон Паржеша", "name_it_IT": "Medaglione di Parjesh", "name_pt_PT": "Medalhão de Parjesh", "on_use": false, "id_encounter": 1480, "id_journal_instance": 716, "id_map": 1456, "instance_type": 1}, {"id": 137367, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormsinger Fulmination Charge", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1391, "buy_price": 6956, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Stormsinger Fulmination Charge", "name_ko_KR": "폭풍노래꾼 부르짖음의 충전체", "name_fr_FR": "Charge de fulmination chante-orage", "name_de_DE": "Gespeicherte Entladung des Sturmsängers", "name_zh_CN": "风暴歌者的爆鸣冲击", "name_es_ES": "Carga de fulminación de cantatormentas", "name_ru_RU": "Заряд молнии певца бури", "name_it_IT": "Carica Fulminante del Cantatuoni", "name_pt_PT": "Carga Fulminante do Cantempesta", "on_use": false, "id_encounter": 1490, "id_journal_instance": 716, "id_map": 1456, "instance_type": 1}, {"id": 137369, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Giant Ornamental Pearl", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68612, "buy_price": 343061, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.009600043296814, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Giant Ornamental Pearl", "name_ko_KR": "거대한 장식용 진주", "name_fr_FR": "Perle ornementale géante", "name_de_DE": "Riesige Schmuckperle", "name_zh_CN": "巨型观赏珍珠", "name_es_ES": "Perla decorativa gigante", "name_ru_RU": "Огромная украшенная резьбой жемчужина", "name_it_IT": "Perla Gigante Ornamentale", "name_pt_PT": "Pérola Ornamental Gigante", "on_use": true, "id_encounter": 1491, "id_journal_instance": 716, "id_map": 1456, "instance_type": 1}, {"id": 137373, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tempered Egg of Serpentrix", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69611, "buy_price": 348056, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Tempered Egg of Serpentrix", "name_ko_KR": "서펜트릭스의 달궈진 알", "name_fr_FR": "Œuf de Serpentrix tempéré", "name_de_DE": "Gehärtetes Ei von Serpentrix", "name_zh_CN": "瑟芬崔斯克的淬炼之蛋", "name_es_ES": "Huevo de Serpentrix templado", "name_ru_RU": "Закаленное яйцо Змеикса", "name_it_IT": "Uovo di Serpentrix Temprato", "name_pt_PT": "Ovo Temperado de Serpentrix", "on_use": false, "id_encounter": 1479, "id_journal_instance": 716, "id_map": 1456, "instance_type": 1}, {"id": 137378, "race_mask": 18446744073709551615, "desc": "Compressing the raging storm into a tiny flask had been accomplished by others, but keeping it cold was Stormcaller Inayad's greatest contribution to the field.", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Hurricane", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65853, "buy_price": 329265, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968999981880188, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Bottled Hurricane", "name_ko_KR": "병 속의 태풍", "name_fr_FR": "Ouragan en bouteille", "name_de_DE": "Hurrikan in der Flasche", "name_zh_CN": "飓风之瓶", "name_es_ES": "Huracán embotellado", "name_ru_RU": "Ураган в бутылке", "name_it_IT": "Uragano in Bottiglia", "name_pt_PT": "Furacão Engarrafado", "on_use": true, "id_encounter": 1492, "id_journal_instance": 716, "id_map": 1456, "instance_type": 1}, {"id": 137398, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Portable Manacracker", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1345, "buy_price": 6725, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Portable Manacracker", "name_ko_KR": "휴대용 마나부수개", "name_fr_FR": "Pétard de mana portable", "name_de_DE": "Tragbarer Manabrecher", "name_zh_CN": "便携式魔力裂化器", "name_es_ES": "Rompemaná portátil", "name_ru_RU": "Портативный манокол", "name_it_IT": "Spezzamana Portatile", "name_pt_PT": "Quebra-mana Portátil", "on_use": false, "id_encounter": 1497, "id_journal_instance": 726, "id_map": 1516, "instance_type": 1}, {"id": 137400, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coagulated Nightwell Residue", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66349, "buy_price": 331746, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9763000011444092, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Coagulated Nightwell Residue", "name_ko_KR": "응고된 밤샘 잔류물", "name_fr_FR": "Résidu du Puits de la nuit coagulé", "name_de_DE": "Geronnene Nachtbrunnenrückstände", "name_zh_CN": "凝固的暗夜井残渣", "name_es_ES": "Residuo de la Fuente de la Noche coagulado", "name_ru_RU": "Загустевшая мана из Ночного Колодца", "name_it_IT": "Residuo del Pozzo Oscuro Coagulato", "name_pt_PT": "Resíduo da Nascente da Noite Coagulado", "on_use": true, "id_encounter": 1498, "id_journal_instance": 726, "id_map": 1516, "instance_type": 1}, {"id": 137406, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terrorbound Nexus", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69645, "buy_price": 348226, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Terrorbound Nexus", "name_ko_KR": "공포결속 연합체", "name_fr_FR": "Nexus ancré dans la terreur", "name_de_DE": "Schreckensgebundener Nexus", "name_zh_CN": "缚恐魔枢", "name_es_ES": "Nexo de terror", "name_ru_RU": "Скованное страхом средоточие", "name_it_IT": "Nexus del Terrore", "name_pt_PT": "Nexus Terrorizado", "on_use": false, "id_encounter": 1499, "id_journal_instance": 726, "id_map": 1516, "instance_type": 1}, {"id": 137419, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chrono Shard", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66084, "buy_price": 330421, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1294, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Chrono Shard", "name_ko_KR": "시간의 파편", "name_fr_FR": "Éclat de temps", "name_de_DE": "Chronosplitter", "name_zh_CN": "时光碎片", "name_es_ES": "Cronofragmento", "name_ru_RU": "Осколок времени", "name_it_IT": "Cronoframmento", "name_pt_PT": "Estilhaço de Tempo", "on_use": false, "id_encounter": 1501, "id_journal_instance": 726, "id_map": 1516, "instance_type": 1}, {"id": 137430, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impenetrable Nerubian Husk", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70637, "buy_price": 353187, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0393999814987183, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Impenetrable Nerubian Husk", "name_ko_KR": "뚫을 수 없는 네루비안 껍질", "name_fr_FR": "Carcasse de nérubien impénétrable", "name_de_DE": "Undurchdringlicher nerubischer Panzer", "name_zh_CN": "坚固的蛛魔甲壳", "name_es_ES": "Caparazón nerubiano impenetrable", "name_ru_RU": "Непробиваемый панцирь неруба", "name_it_IT": "Guscio di Nerubiano Impenetrabile", "name_pt_PT": "Carcaça Nerubiana Impenetrável", "on_use": false, "id_encounter": 1696, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137433, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obelisk of the Void", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1319, "buy_price": 6596, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502999782562256, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Obelisk of the Void", "name_ko_KR": "공허의 방첨탑", "name_fr_FR": "Obélisque du Vide", "name_de_DE": "Obelisk der Leere", "name_zh_CN": "虚空方尖碑", "name_es_ES": "Obelisco del Vacío", "name_ru_RU": "Обелиск Бездны", "name_it_IT": "Obelisco del Vuoto", "name_pt_PT": "Obelisco do Caos", "on_use": true, "id_encounter": 1686, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137439, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Oozeling in a Jar", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67878, "buy_price": 339391, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987999796867371, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Tiny Oozeling in a Jar", "name_ko_KR": "단지 안에 든 작은 수액덩어리", "name_fr_FR": "Petit suinteux en pot", "name_de_DE": "Winziger Schlammling im Krug", "name_zh_CN": "罐装迷你软泥怪", "name_es_ES": "Moquito diminuto en un tarro", "name_ru_RU": "Миниатюрный слизнюченыш в колбе", "name_it_IT": "Piccole Melmette in Scatola", "name_pt_PT": "Gosmícula numa Jarra", "on_use": true, "id_encounter": 1693, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137440, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shivermaw's Jawbone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68129, "buy_price": 340649, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shivermaw's Jawbone", "name_ko_KR": "한기아귀 턱뼈", "name_fr_FR": "Mâchoire de Froidegueule", "name_de_DE": "Zitterschlunds Kieferknochen", "name_zh_CN": "颤栗之喉的颚骨", "name_es_ES": "Mandíbula de Estremefauce", "name_ru_RU": "Челюсть Ледопасти", "name_it_IT": "Mandibola di Tremafauci", "name_pt_PT": "Mandíbula de Gorjafria", "on_use": true, "id_encounter": 1694, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137446, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elementium Bomb Squirrel Generator", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1422, "buy_price": 7111, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0245000123977661, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Elementium Bomb Squirrel Generator", "name_ko_KR": "엘레멘티움 폭탄 다람쥐 생성기", "name_fr_FR": "Générateur d'écureuil-bombe en élémentium", "name_de_DE": "Generator für Elementiumbombeneichhörnchen", "name_zh_CN": "源质炸弹松鼠发生器", "name_es_ES": "Generador de ardillas bomba de elementium", "name_ru_RU": "Генератор элементиевых бомбелок", "name_it_IT": "Generatore di Bombe Scoiattolo d'Elementio", "name_pt_PT": "Gerador de Esquilos-bombas de Elemêntio", "on_use": false, "id_encounter": 1688, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thrumming Gossamer", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 71126, "buy_price": 355634, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0465999841690063, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Thrumming Gossamer", "name_ko_KR": "짜고 남은 거미줄", "name_fr_FR": "Tulle grondante", "name_de_DE": "Klimperndes Gespinst", "name_zh_CN": "流苏蛛丝", "name_es_ES": "Delicadeza vibrante", "name_ru_RU": "Распушенная паутинка", "name_it_IT": "Stoffa Finissima Vibrante", "name_pt_PT": "Escumilha Franjada", "on_use": false, "id_encounter": 1697, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137459, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chaos Talisman", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67871, "buy_price": 339357, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987000226974487, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Chaos Talisman", "name_ko_KR": "혼돈의 부적", "name_fr_FR": "Talisman du chaos", "name_de_DE": "Chaostalisman", "name_zh_CN": "混沌护符", "name_es_ES": "Talismán del caos", "name_ru_RU": "Талисман Хаоса", "name_it_IT": "Talismano del Caos", "name_pt_PT": "Talismã do Caos", "on_use": false, "id_encounter": 1711, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jewel of Insatiable Desire", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68619, "buy_price": 343095, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0096999406814575, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Jewel of Insatiable Desire", "name_ko_KR": "만족을 모르는 욕망의 보석", "name_fr_FR": "Joyau de désir insatiable", "name_de_DE": "Juwel der unersättlichen Begierde", "name_zh_CN": "无尽欲望珠宝", "name_es_ES": "Joya de deseo insaciable", "name_ru_RU": "Самоцвет ненасытного желания", "name_it_IT": "Gioiello dell'Insaziabile Desiderio", "name_pt_PT": "Joia do Desejo Insaciável", "on_use": true, "id_encounter": 1702, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137484, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flask of the Solemn Night", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69108, "buy_price": 345542, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0168999433517456, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Flask of the Solemn Night", "name_ko_KR": "엄숙한 밤의 영약", "name_fr_FR": "Flacon de la nuit solennelle", "name_de_DE": "Fläschchen der ehrwürdigen Nacht", "name_zh_CN": "庄严静夜合剂", "name_es_ES": "Frasco de la noche solemne", "name_ru_RU": "Настой священной ночи", "name_it_IT": "Tonico della Notte Solenne", "name_pt_PT": "Frasco da Noite Solene", "on_use": false, "id_encounter": 1718, "id_journal_instance": 800, "id_map": 1571, "instance_type": 1}, {"id": 137485, "race_mask": 18446744073709551615, "desc": "This document is concise and exact. Brevity is the soul of writ.", "pad2": "", "pad1": "", "pad0": "", "name": "Infernal Writ", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1416, "buy_price": 7084, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0205999612808228, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Infernal Writ", "name_ko_KR": "지옥의 계약서", "name_fr_FR": "Écrit infernal", "name_de_DE": "Teuflischer Erlass", "name_zh_CN": "地狱火文书", "name_es_ES": "Escrito infernal", "name_ru_RU": "Инфернальное писание", "name_it_IT": "Encomio Infernale", "name_pt_PT": "Decreto Infernal", "on_use": false, "id_encounter": 1719, "id_journal_instance": 800, "id_map": 1571, "instance_type": 1}, {"id": 137486, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windscar Whetstone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64609, "buy_price": 323047, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506999850273132, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Windscar Whetstone", "name_ko_KR": "바람상처 숫돌", "name_fr_FR": "Pierre à aiguiser brèche-vent", "name_de_DE": "Windnarbenschleifstein", "name_zh_CN": "风痕磨石", "name_es_ES": "Piedra de afilar de viento cortante", "name_ru_RU": "Точильный камень секущих ветров", "name_it_IT": "Cote di Scaglie di Vento", "name_pt_PT": "Pedra-ume Cortavento", "on_use": true, "id_encounter": 1720, "id_journal_instance": 800, "id_map": 1571, "instance_type": 1}, {"id": 137537, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tirathon's Betrayal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 3, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69135, "buy_price": 345678, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017300009727478, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Tirathon's Betrayal", "name_ko_KR": "티라손의 배신", "name_fr_FR": "Trahison de Tirathon", "name_de_DE": "Tirathons Verrat", "name_zh_CN": "提拉宋的背叛", "name_es_ES": "Traición de Tirathon", "name_ru_RU": "Предательство Тиратона", "name_it_IT": "Tradimento di Tirathon", "name_pt_PT": "Traição de Tirathon", "on_use": true, "id_encounter": 1467, "id_journal_instance": 707, "id_map": 1493, "instance_type": 1}, {"id": 137538, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Orb of Torment", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69387, "buy_price": 346935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0210000276565552, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Orb of Torment", "name_ko_KR": "고문의 보주", "name_fr_FR": "Orbe de tourment", "name_de_DE": "Kugel der Qual", "name_zh_CN": "折磨宝珠", "name_es_ES": "Orbe de tormento", "name_ru_RU": "Сфера истязания", "name_it_IT": "Globo del Tormento", "name_pt_PT": "Orbe do Tormento", "on_use": true, "id_encounter": 1695, "id_journal_instance": 707, "id_map": 1493, "instance_type": 1}, {"id": 137539, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faulty Countermeasure", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69638, "buy_price": 348192, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247000455856323, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Faulty Countermeasure", "name_ko_KR": "망가진 방어 장치", "name_fr_FR": "Contre-mesure défaillante", "name_de_DE": "Fehlerhafte Gegenmaßnahme", "name_zh_CN": "残次的反制机关", "name_es_ES": "Contramedida defectuosa", "name_ru_RU": "Неисправная система безопасности", "name_it_IT": "Contromisura Fallace", "name_pt_PT": "Contramedida Defeituosa", "on_use": true, "id_encounter": 1468, "id_journal_instance": 707, "id_map": 1493, "instance_type": 1}, {"id": 137540, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Concave Reflecting Lens", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69883, "buy_price": 349415, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Concave Reflecting Lens", "name_ko_KR": "오목 반사 렌즈", "name_fr_FR": "Lentille réfléchissante concave", "name_de_DE": "Konkave Reflexionslinse", "name_zh_CN": "凹面反射透镜", "name_es_ES": "Lente reflectora cóncava", "name_ru_RU": "Выпуклые отражающие линзы", "name_it_IT": "Lenti Riflettenti Concave", "name_pt_PT": "Lente Reflexiva Côncava", "on_use": false, "id_encounter": 1469, "id_journal_instance": 707, "id_map": 1493, "instance_type": 1}, {"id": 137541, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moonlit Prism", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1432, "buy_price": 7163, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Moonlit Prism", "name_ko_KR": "달빛 프리즘", "name_fr_FR": "Prisme de clair de lune", "name_de_DE": "Monderleuchtetes Prisma", "name_zh_CN": "月光棱镜", "name_es_ES": "Prisma luniscente", "name_ru_RU": "Призма лунного света", "name_it_IT": "Prisma Monolitico", "name_pt_PT": "Prisma do Brilho Lunar", "on_use": true, "id_encounter": 1470, "id_journal_instance": 707, "id_map": 1493, "instance_type": 1}, {"id": 138084, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Wrought Insignia of Conquest", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87428, "buy_price": 437141, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Iron Wrought Insignia of Conquest", "name_ko_KR": "철세공 정복 계급장", "name_fr_FR": "Insigne de conquête en fer forgé", "name_de_DE": "Schmiedeeisernes Eroberungsinsigne", "name_zh_CN": "铁铸征服徽记", "name_es_ES": "Insignia de conquista de hierro forjado", "name_ru_RU": "Железный кованый знак завоевания", "name_it_IT": "Fregio della Conquista in Ferro Battuto", "name_pt_PT": "Insígnia da Dominação Forjada em Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138090, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Wrought Insignia of Dominance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89305, "buy_price": 446525, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0468000173568726, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Iron Wrought Insignia of Dominance", "name_ko_KR": "철세공 지배 계급장", "name_fr_FR": "Insigne de domination en fer forgé", "name_de_DE": "Schmiedeeisernes Vorherrschaftsinsigne", "name_zh_CN": "铁铸统御徽记", "name_es_ES": "Insignia de dominancia de hierro forjado", "name_ru_RU": "Железный кованый знак господства", "name_it_IT": "Fregio della Dominazione in Ferro Battuto", "name_pt_PT": "Insígnia da Dominância Forjada em Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138093, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Wrought Insignia of Victory", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 81703, "buy_price": 408518, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Iron Wrought Insignia of Victory", "name_ko_KR": "철세공 승리 계급장", "name_fr_FR": "Insigne de victoire en fer forgé", "name_de_DE": "Schmiedeeisernes Siegesinsigne", "name_zh_CN": "铁铸胜利徽记", "name_es_ES": "Insignia de victoria de hierro forjado", "name_ru_RU": "Железный кованый знак победы", "name_it_IT": "Fregio della Vittoria in Ferro Battuto", "name_pt_PT": "Insígnia da Vitória Forjada em Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mo'arg Clan Token", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 359, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292548, "buy_price": 1462742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013200044631958, "flags_1": 593920, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mo'arg Clan Token", "name_ko_KR": "모아그 부족 징표", "name_fr_FR": "Marque du clan mo'arg", "name_de_DE": "Klanabzeichen der Mo'arg", "name_zh_CN": "莫尔葛氏族徽记", "name_es_ES": "Marca del clan Mo'arg", "name_ru_RU": "Знак клана мо'аргов", "name_it_IT": "Emblema del Clan dei Mo'arg", "name_pt_PT": "Símbolo do Clã Mo'arg", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138170, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felstalker Spine", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 359, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280854, "buy_price": 1404272, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9726999998092651, "flags_1": 593920, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Felstalker Spine", "name_ko_KR": "지옥사냥개 척추", "name_fr_FR": "Echine de traqueur gangrené", "name_de_DE": "Teufelspirscherrückgrat", "name_zh_CN": "魔犬脊骨", "name_es_ES": "Espinazo de acechador vil", "name_ru_RU": "Хребет ловца Скверны", "name_it_IT": "Spina Dorsale di Vilpredatore", "name_pt_PT": "Coluna de Espreitador Vil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138171, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inquisitor's Talisman", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 359, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281922, "buy_price": 1409614, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764000177383423, "flags_1": 593920, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Inquisitor's Talisman", "name_ko_KR": "심문관의 부적", "name_fr_FR": "Talisman d'inquisiteur", "name_de_DE": "Talisman des Inquisitors", "name_zh_CN": "审判官的护符", "name_es_ES": "Dije del inquisidor", "name_ru_RU": "Талисман инквизитора", "name_it_IT": "Talismano dell'Inquisitore", "name_pt_PT": "Talismã do Inquisidor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Nightmare Fog", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293906, "buy_price": 1469531, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0429999828338623, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Nightmare Fog", "name_ko_KR": "악몽 안개 약병", "name_fr_FR": "Fiole de brouillard cauchemardesque", "name_de_DE": "Phiole mit Alptraumnebel", "name_zh_CN": "一瓶梦魇之雾", "name_es_ES": "Vial de niebla de la Pesadilla", "name_ru_RU": "Фиал кошмарного тумана", "name_it_IT": "Fiala di Nebbia dell'Incubo", "name_pt_PT": "Frasco de Nevoeiro do Pesadelo", "on_use": false, "id_encounter": 1704, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 138224, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Horrorslime", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1759, "buy_price": 8795, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502999782562256, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Unstable Horrorslime", "name_ko_KR": "불안정한 공포수액", "name_fr_FR": "Gelée horrifique instable", "name_de_DE": "Instabiler Schreckensschleim", "name_zh_CN": "不稳定的恐怖软泥", "name_es_ES": "Baba horrorosa inestable", "name_ru_RU": "Взрывоопасная жуткая слизь", "name_it_IT": "Orrore Melmoso Instabile", "name_pt_PT": "Gosmorrenda Instável", "on_use": false, "id_encounter": 1704, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 138225, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Phantasmal Echo", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 268798, "buy_price": 1343994, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9538999795913696, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Phantasmal Echo", "name_ko_KR": "실체 없는 메아리", "name_fr_FR": "Echo fantasmatique", "name_de_DE": "Phantomhaftes Echo", "name_zh_CN": "幻影回响", "name_es_ES": "Eco fantasmal", "name_ru_RU": "Призрачное эхо", "name_it_IT": "Eco Fantasma", "name_pt_PT": "Eco Fantasmagórico", "on_use": false, "id_encounter": 1704, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 138773, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Favor of House Wrynn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 512574, "buy_price": 2562871, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991599977016449, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 138775, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Favor of House Wrynn", "name_ko_KR": "린 가문의 문장", "name_fr_FR": "Faveur de la maison Wrynn", "name_de_DE": "Gunst des Hauses Wrynn", "name_zh_CN": "乌瑞恩家族的青睐", "name_es_ES": "Favor de la casa Wrynn", "name_ru_RU": "Милость дома Риннов", "name_it_IT": "Dono di Casa Wrynn", "name_pt_PT": "Distintivo da Casa Wrynn", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138774, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Accolade of House Wrynn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 337191, "buy_price": 1685957, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9952999949455261, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 138776, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Accolade of House Wrynn", "name_ko_KR": "린 가문의 상징", "name_fr_FR": "Décoration de la maison Wrynn", "name_de_DE": "Auszeichnung des Hauses Wrynn", "name_zh_CN": "乌瑞恩家族奖章", "name_es_ES": "Galardón de la casa Wrynn", "name_ru_RU": "Акколада дома Риннов", "name_it_IT": "Decorazione di Casa Wrynn", "name_pt_PT": "Galardão da Casa Wrynn", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138775, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Token of the Banshee Queen", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 516347, "buy_price": 2581738, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 138773, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Token of the Banshee Queen", "name_ko_KR": "밴시 여왕의 징표", "name_fr_FR": "Gage de la reine banshee", "name_de_DE": "Abzeichen der Bansheekönigin", "name_zh_CN": "女妖之王的徽记", "name_es_ES": "Marca de la Reina Alma en Pena", "name_ru_RU": "Знак Королевы-банши", "name_it_IT": "Emblema della Regina Banshee", "name_pt_PT": "Símbolo da Rainha Banshee", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138776, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Accolade of the Banshee Queen", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 518260, "buy_price": 2591301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 138774, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Accolade of the Banshee Queen", "name_ko_KR": "밴시 여왕의 상징", "name_fr_FR": "Décoration de la reine banshee", "name_de_DE": "Auszeichnung der Bansheekönigin", "name_zh_CN": "女妖之王奖章", "name_es_ES": "Galardón de la Reina Alma en Pena", "name_ru_RU": "Акколада Королевы-банши", "name_it_IT": "Decorazione della Regina Banshee", "name_pt_PT": "Galardão da Rainha Banshee", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138819, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiance of the Stalwart Survivors", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 436177, "buy_price": 2180887, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0133999586105347, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Defiance of the Stalwart Survivors", "name_ko_KR": "강인한 생존자들의 저항", "name_fr_FR": "Défiance des vaillants survivants", "name_de_DE": "Widerstand des tapferen Überlebenden", "name_zh_CN": "坚忍幸存者的反抗", "name_es_ES": "Desafío de los supervivientes adeptos", "name_ru_RU": "Отвага стойких выживших", "name_it_IT": "Sfida dei Sopravvissuti Robusti", "name_pt_PT": "Desobediência dos Sobreviventes Impávidos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138823, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Starlance's Protective Ward", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70441, "buy_price": 352208, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545000195503235, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Starlance's Protective Ward", "name_ko_KR": "스타랜스의 호신부", "name_fr_FR": "Gardien protecteur de Lancétoile", "name_de_DE": "Schutzzauber der Sternenlanze", "name_zh_CN": "星矛的防护结界", "name_es_ES": "Resguardo protector de Picaestrella", "name_ru_RU": "Идол защиты Звездного Копья", "name_it_IT": "Guardia Protettiva dei Lanciastellare", "name_pt_PT": "Manancial de Proteção dos Estrelança", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138837, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ghostly Defenses", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76190, "buy_price": 380953, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ghostly Defenses", "name_ko_KR": "유령 같은 방어", "name_fr_FR": "Défenses fantomatiques", "name_de_DE": "Geisterhafte Verteidigung", "name_zh_CN": "幽灵防护", "name_es_ES": "Defensas fantasmales", "name_ru_RU": "Призрачная защита", "name_it_IT": "Difese Spettrali", "name_pt_PT": "Defesas Fantasmagóricas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139064, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resilient Heart of the Forest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 310089, "buy_price": 1550445, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0361000299453735, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Resilient Heart of the Forest", "name_ko_KR": "굴하지 않는 숲의 심장", "name_fr_FR": "Cœur de la forêt résistant", "name_de_DE": "Widerstandsfähiges Herz des Waldes", "name_zh_CN": "坚韧的森林之心", "name_es_ES": "Corazón del bosque resistente", "name_ru_RU": "Стойкое лесное сердце", "name_it_IT": "Cuore Resiliente della Foresta", "name_pt_PT": "Coração da Floresta Resiliente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139075, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forest Creeper's Guile", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292221, "buy_price": 1461108, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764000177383423, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Forest Creeper's Guile", "name_ko_KR": "숲거미의 간계", "name_fr_FR": "Fourberie du rampant forestier", "name_de_DE": "Arglist des Waldkrabblers", "name_zh_CN": "森林爬行者的狡诈", "name_es_ES": "Astucia de trepador del bosque", "name_ru_RU": "Хитрость лесного ползуна", "name_it_IT": "Ingegno della Fanghiglia delle Foreste", "name_pt_PT": "Astúcia do Rastejante da Floresta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139076, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloom of New Growth", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293299, "buy_price": 1466495, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9800000190734863, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Bloom of New Growth", "name_ko_KR": "새로운 성장의 꽃", "name_fr_FR": "Floraison de jeune pousse", "name_de_DE": "Blüte des neuen Wachstums", "name_zh_CN": "新生之蕾", "name_es_ES": "Flor de nuevo crecimiento", "name_ru_RU": "Цветение нового роста", "name_it_IT": "Bocciolo della Prossima Fioritura", "name_pt_PT": "Florescer de um Novo Crescimento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139102, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "An'she's Invigoring Charm", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 307814, "buy_price": 1539072, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.028499960899353, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "An'she's Invigoring Charm", "name_ko_KR": "안쉬의 활기 부적", "name_fr_FR": "Charme revigorant d'An'she", "name_de_DE": "An'shes belebender Talisman", "name_zh_CN": "安瑟的振作护符", "name_es_ES": "Talismán vigorizante de An'she", "name_ru_RU": "Живительный талисман Ан'ше", "name_it_IT": "Talismano Rinvigorente di An'she", "name_pt_PT": "Patuá Revigorante de An'she", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "An'she's Token of Guile", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 297878, "buy_price": 1489391, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9952999949455261, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "An'she's Token of Guile", "name_ko_KR": "안쉬의 간계 징표", "name_fr_FR": "Gage de fourberie d'An'she", "name_de_DE": "An'shes Zeichen der Arglist", "name_zh_CN": "安瑟的诡诈徽记", "name_es_ES": "Marca de astucia de An'she", "name_ru_RU": "Знак коварства Ан'ше", "name_it_IT": "Emblema dell'Astuzia di An'she", "name_pt_PT": "Símbolo de Astúcia de An'she", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139114, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "An'she's Infusion of Light", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 298955, "buy_price": 1494778, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "An'she's Infusion of Light", "name_ko_KR": "안쉬의 빛 주입", "name_fr_FR": "Imprégnation de lumière d'An'she", "name_de_DE": "An'shes Lichtinfusion", "name_zh_CN": "安瑟的光之鼓舞", "name_es_ES": "Infusión de Luz de An'she", "name_ru_RU": "Прилив Света Ан'ше", "name_it_IT": "Infusione di Luce di An'she", "name_pt_PT": "Infusão de Luz de An'she", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139320, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ravaged Seed Pod", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281535, "buy_price": 1407679, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9991000294685364, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ravaged Seed Pod", "name_ko_KR": "훼손된 씨앗 꼬투리", "name_fr_FR": "Cosse ravagée", "name_de_DE": "Verheerte Samenkapsel", "name_zh_CN": "残缺的种荚", "name_es_ES": "Vaina de semilla devastada", "name_ru_RU": "Обломки скорлупы", "name_it_IT": "Contenitore di Semi Devastato", "name_pt_PT": "Vagem Devastada", "on_use": true, "id_encounter": 1703, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139321, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Swarming Plaguehive", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1855, "buy_price": 9279, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0026999711990356, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Swarming Plaguehive", "name_ko_KR": "들끓는 역병 군락", "name_fr_FR": "Ruchepeste grouillante", "name_de_DE": "Schwärmender Pestbau", "name_zh_CN": "瘟疫虫巢", "name_es_ES": "Pestecolmena enjambradora", "name_ru_RU": "Чумной улей", "name_it_IT": "Alveare della Piaga Sciamante", "name_pt_PT": "Colmeia Pestilenta Fervilhante", "on_use": false, "id_encounter": 1703, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139322, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cocoon of Enforced Solitude", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283592, "buy_price": 1417964, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0063999891281128, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cocoon of Enforced Solitude", "name_ko_KR": "강제된 고독의 고치", "name_fr_FR": "Cocon de solitude imposée", "name_de_DE": "Kokon der erzwungenen Einsamkeit", "name_zh_CN": "隔离之茧", "name_es_ES": "Crisálida de soledad forzada", "name_ru_RU": "Кокон вынужденного одиночества", "name_it_IT": "Bozzolo della Solitudine Forzata", "name_pt_PT": "Casulo de Solidão Forçada", "on_use": true, "id_encounter": 1744, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139323, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Twisting Wind", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1869, "buy_price": 9348, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.01010000705719, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Twisting Wind", "name_ko_KR": "뒤틀린 바람", "name_fr_FR": "Vent sinueux", "name_de_DE": "Wirbelnder Wind", "name_zh_CN": "扭曲之风", "name_es_ES": "Viento agitado", "name_ru_RU": "Ураганный ветер", "name_it_IT": "Vento Vorticoso", "name_pt_PT": "Vento de Distorção", "on_use": false, "id_encounter": 1744, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139324, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblet of Nightmarish Ichor", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285678, "buy_price": 1428390, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013800024986267, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Goblet of Nightmarish Ichor", "name_ko_KR": "악몽 수액 술잔", "name_fr_FR": "Coupe d'ichor cauchemardesque", "name_de_DE": "Becher mit Alptraumsekret", "name_zh_CN": "梦魇脓液杯", "name_es_ES": "Cáliz de icor de tormento", "name_ru_RU": "Чаша кошмарного гноя", "name_it_IT": "Calice di Icore dell'Incubo", "name_pt_PT": "Cálice de Linfa Pesadelar", "on_use": false, "id_encounter": 1738, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139325, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spontaneous Appendages", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286692, "buy_price": 1433462, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0174000263214111, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Spontaneous Appendages", "name_ko_KR": "자생 부속물", "name_fr_FR": "Appendices spontanés", "name_de_DE": "Spontane Gliedmaßen", "name_zh_CN": "天然附肢", "name_es_ES": "Apéndices espontáneos", "name_ru_RU": "Дикие щупальца", "name_it_IT": "Appendici Spontanee", "name_pt_PT": "Membros Espontâneos", "on_use": false, "id_encounter": 1738, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139326, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wriggling Sinew", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1890, "buy_price": 9450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211000442504883, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Wriggling Sinew", "name_ko_KR": "꿈틀대는 힘줄", "name_fr_FR": "Tendon frétillant", "name_de_DE": "Zuckende Sehne", "name_zh_CN": "蠕动肌腱", "name_es_ES": "Tendón sinuoso", "name_ru_RU": "Извивающееся сухожилие", "name_it_IT": "Tendine Scalpitante", "name_pt_PT": "Tendão Contorcido", "on_use": true, "id_encounter": 1738, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139327, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unbridled Fury", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288777, "buy_price": 1443888, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Unbridled Fury", "name_ko_KR": "굴레를 벗어난 격노", "name_fr_FR": "Fureur débridée", "name_de_DE": "Ungezügelte Wut", "name_zh_CN": "不羁之怒", "name_es_ES": "Furia desbocada", "name_ru_RU": "Неукротимая ярость", "name_it_IT": "Furia Sfrenata", "name_pt_PT": "Fúria Descontrolada", "on_use": true, "id_encounter": 1667, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139328, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ursoc's Rending Paw", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289792, "buy_price": 1448961, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.02839994430542, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ursoc's Rending Paw", "name_ko_KR": "우르속의 분쇄 앞발", "name_fr_FR": "Patte étripeuse d'Ursoc", "name_de_DE": "Ursocs reißende Pranke", "name_zh_CN": "乌索克的撕裂之爪", "name_es_ES": "Zarpa desgarradora de Ursoc", "name_ru_RU": "Раздирающая лапа Урсока", "name_it_IT": "Zampata Lacerante di Ursoc", "name_pt_PT": "Pata Dilacerante de Ursoc", "on_use": false, "id_encounter": 1667, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139329, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Instinct", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290834, "buy_price": 1454174, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.032099962234497, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Bloodthirsty Instinct", "name_ko_KR": "피에 굶주린 본능", "name_fr_FR": "Instinct assoiffé de sang", "name_de_DE": "Blutrünstiger Instinkt", "name_zh_CN": "嗜血本能", "name_es_ES": "Instinto sanguinario", "name_ru_RU": "Инстинкт жажды крови", "name_it_IT": "Istinto Assetato di Sangue", "name_pt_PT": "Instinto de Sede de Sangue", "on_use": false, "id_encounter": 1667, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139330, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heightened Senses", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 291877, "buy_price": 1459387, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0357999801635742, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Heightened Senses", "name_ko_KR": "향상된 감각", "name_fr_FR": "Sens amplifiés", "name_de_DE": "Geschärfte Sinne", "name_zh_CN": "强化感知", "name_es_ES": "Sentidos agudizados", "name_ru_RU": "Обостренные чувства", "name_it_IT": "Sensi Affinati", "name_pt_PT": "Sentidos Aguçados", "on_use": false, "id_encounter": 1667, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139333, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of Cenarius", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294977, "buy_price": 1474885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0468000173568726, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Horn of Cenarius", "name_ko_KR": "세나리우스의 뿔피리", "name_fr_FR": "Cor de Cénarius", "name_de_DE": "Horn des Cenarius", "name_zh_CN": "塞纳留斯之角", "name_es_ES": "Cuerno de Cenarius", "name_ru_RU": "Рог Кенария", "name_it_IT": "Corno di Cenarius", "name_pt_PT": "Trompa de Cenarius", "on_use": true, "id_encounter": 1750, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139334, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nature's Call", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2222, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 36, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 267812, "buy_price": 1339063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9503999948501587, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Nature's Call", "name_ko_KR": "자연의 부름", "name_fr_FR": "Appel de la nature", "name_de_DE": "Der Ruf der Natur", "name_zh_CN": "自然的召唤", "name_es_ES": "La llamada de la naturaleza", "name_ru_RU": "Зов природы", "name_it_IT": "Chiamata della Natura", "name_pt_PT": "Chamado da Natureza", "on_use": false, "id_encounter": 1750, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139335, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grotesque Statuette", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276322, "buy_price": 1381613, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9805999994277954, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Grotesque Statuette", "name_ko_KR": "괴기한 조각상", "name_fr_FR": "Statuette grotesque", "name_de_DE": "Groteske Statue", "name_zh_CN": "诡异雕像", "name_es_ES": "Estatuilla grotesca", "name_ru_RU": "Гротескная статуэтка", "name_it_IT": "Statuetta Grottesca", "name_pt_PT": "Estatueta Grotesca", "on_use": false, "id_encounter": 1726, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139336, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bough of Corruption", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1821, "buy_price": 9108, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Bough of Corruption", "name_ko_KR": "타락의 가지", "name_fr_FR": "Rameau de corruption", "name_de_DE": "Zweig der Verderbnis", "name_zh_CN": "腐蚀树枝", "name_es_ES": "Rama de corrupción", "name_ru_RU": "Ветвь порчи", "name_it_IT": "Albero della Corruzione", "name_pt_PT": "Galho da corrupção", "on_use": false, "id_encounter": 1726, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139630, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Etching of Sargeras", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4649, "stat_alloc_2": 4649, "stat_alloc_3": 4649, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 406146, "buy_price": 2030730, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0397000312805176, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Etching of Sargeras", "name_ko_KR": "살게라스의 부조", "name_fr_FR": "Gravure de Sargeras", "name_de_DE": "Gravur von Sargeras", "name_zh_CN": "萨格拉斯蚀刻", "name_es_ES": "Inscripción de Sargeras", "name_ru_RU": "Гравировка Саргераса", "name_it_IT": "Incisione di Sargeras", "name_pt_PT": "Entalhe de Sargeras", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 140026, "race_mask": 18446744073709551615, "desc": "Pulled from a fallen handler during a 'feeding' incident.", "pad2": "", "pad1": "", "pad0": "", "name": "The Devilsaur's Bite", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 201768, "buy_price": 1008841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9546999931335449, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "The Devilsaur's Bite", "name_ko_KR": "데빌사우루스의 이빨", "name_fr_FR": "La morsure du diablosaure", "name_de_DE": "Der Teufelssaurierbiss", "name_zh_CN": "魔暴龙之牙", "name_es_ES": "Mordedura de demosaurio", "name_ru_RU": "Укус дьявозавра", "name_it_IT": "Morso del Gigantosauro", "name_pt_PT": "A Mordida do Demossauro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140027, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ley Spark", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 168791, "buy_price": 843959, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9584000110626221, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Ley Spark", "name_ko_KR": "지맥 불꽃", "name_fr_FR": "Etincelle tellurique", "name_de_DE": "Leyfunke", "name_zh_CN": "魔网火花", "name_es_ES": "Chispa Ley", "name_ru_RU": "Магическая вспышка", "name_it_IT": "Scintilla di Faglia", "name_pt_PT": "Centelha do Meridiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140030, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Devilsaur Shock-Baton", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1345, "buy_price": 6728, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9693999886512756, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Devilsaur Shock-Baton", "name_ko_KR": "데빌사우루스 전기 충격 봉", "name_fr_FR": "Aiguillon électrique pour diablosaure", "name_de_DE": "Teufelssaurierschockstab", "name_zh_CN": "魔暴龙电击棍", "name_es_ES": "Bastón eléctrico de demosaurio", "name_ru_RU": "Электрошокер дьявозавра", "name_it_IT": "Bacchetta Folgorante del Gigantosauro", "name_pt_PT": "Bastão de Choque de Demossauro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140031, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mana Spark", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1125, "buy_price": 5628, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mana Spark", "name_ko_KR": "마나 불꽃", "name_fr_FR": "Etincelle de mana", "name_de_DE": "Manafunke", "name_zh_CN": "魔力火花", "name_es_ES": "Chispa de maná", "name_ru_RU": "Искорка маны", "name_it_IT": "Scintilla di Mana", "name_pt_PT": "Centelha de Mana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140034, "race_mask": 18446744073709551615, "desc": "Must go faster!", "pad2": "", "pad1": "", "pad0": "", "name": "Impact Tremor", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207981, "buy_price": 1039908, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9840999841690063, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Impact Tremor", "name_ko_KR": "충돌 진동", "name_fr_FR": "Secousse d'impact", "name_de_DE": "Einschlagsbeben", "name_zh_CN": "冲击之颤", "name_es_ES": "Temblor de impacto", "name_ru_RU": "Ударное сотрясение", "name_it_IT": "Tremore d'Impatto", "name_pt_PT": "Tremor de Impacto", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140035, "race_mask": 18446744073709551615, "desc": "Capable of handling 1.21 mana sparks.", "pad2": "", "pad1": "", "pad0": "", "name": "Fluctuating Arc Capacitor", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 173969, "buy_price": 869848, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Fluctuating Arc Capacitor", "name_ko_KR": "요동치는 아크 축전기", "name_fr_FR": "Condensateur à arc variable", "name_de_DE": "Fluktuierender Bogenkondensator", "name_zh_CN": "不稳定的魔力电容", "name_es_ES": "Condensador de arco oscilante", "name_ru_RU": "Пульсирующий разрядный конденсатор", "name_it_IT": "Condensatore ad Arco Fluttuante", "name_pt_PT": "Arc-capacitor Flutuante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hargal's Favorite Trinket", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203289, "buy_price": 1016449, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Hargal's Favorite Trinket", "name_ko_KR": "하르갈이 가장 아끼는 장신구", "name_fr_FR": "Bijou préféré de Hargal", "name_de_DE": "Hargals Lieblingsschmuckstück", "name_zh_CN": "哈尔加的心爱饰品", "name_es_ES": "Abalorio favorito de Hargal", "name_ru_RU": "Любимая безделушка Харгала", "name_it_IT": "Monile Preferito di Hargal", "name_pt_PT": "Berloque Favorito de Hargal", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140400, "race_mask": 18446744073709551615, "desc": "The petals are all perfectly intact.", "pad2": "", "pad1": "", "pad0": "", "name": "Perfect Dreamgrove Blossom", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218992, "buy_price": 1094963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362000465393066, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 42, "inv_type": 12, "quality": 3, "name_en_US": "Perfect Dreamgrove Blossom", "name_ko_KR": "완벽한 꿈숲 꽃", "name_fr_FR": "Fleur parfaite de la Sylverêve", "name_de_DE": "Perfekte Traumhainblüte", "name_zh_CN": "完美的梦境林地花蕾", "name_es_ES": "Flor de la Arboleda de los Sueños perfecta", "name_ru_RU": "Идеальный побег Рощи Снов", "name_it_IT": "Bocciolo Perfetto del Bosco dei Sogni", "name_pt_PT": "Flor do Bosque Onírico Perfeita", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140533, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Huntmaster's Injector", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91747, "buy_price": 458738, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0360000133514404, "flags_1": 589824, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Huntmaster's Injector", "name_ko_KR": "전문사냥꾼의 주입 장치", "name_fr_FR": "Injecteur de maître chasseur", "name_de_DE": "Injektor des Jagdmeisters", "name_zh_CN": "狩猎大师的注射器", "name_es_ES": "Inyector del Maestro de caza", "name_ru_RU": "Инжектор Охотника", "name_it_IT": "Iniettore del Maestro Cacciatore", "name_pt_PT": "Injetor do Mestre da Caça", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140789, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Animated Exoskeleton", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281507, "buy_price": 1407538, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9990000128746033, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Animated Exoskeleton", "name_ko_KR": "살아 움직이는 외골격", "name_fr_FR": "Exosquelette animé", "name_de_DE": "Animiertes Exoskelett", "name_zh_CN": "活性骨壳", "name_es_ES": "Exoesqueleto animado", "name_ru_RU": "Оживленный экзоскелет", "name_it_IT": "Esoscheletro Animato", "name_pt_PT": "Exoesqueleto Animado", "on_use": true, "id_encounter": 1706, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140790, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Claw of the Crystalline Scorpid", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282550, "buy_price": 1412751, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0026999711990356, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Claw of the Crystalline Scorpid", "name_ko_KR": "수정 전갈의 집게", "name_fr_FR": "Pince du scorpide cristallin", "name_de_DE": "Klaue des kristallinen Skorpiden", "name_zh_CN": "晶化幼蝎之爪", "name_es_ES": "Pinza del escórpido cristalino", "name_ru_RU": "Коготь кристаллического скорпида", "name_it_IT": "Pungiglione di Scorpide Cristallino", "name_pt_PT": "Garra do Escorpídeo Cristalino", "on_use": false, "id_encounter": 1706, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140791, "race_mask": 18446744073709551615, "desc": "Sand trickles from a cracked glass orb in the base of the hilt.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Dagger Haft", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283592, "buy_price": 1417964, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0063999891281128, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Royal Dagger Haft", "name_ko_KR": "왕실 단검 자루", "name_fr_FR": "Manche de dague royale", "name_de_DE": "Königliches Dolchheft", "name_zh_CN": "皇家匕首刀柄", "name_es_ES": "Empuñadura de daga real", "name_ru_RU": "Рукоять королевского кинжала", "name_it_IT": "Impugnatura di Pugnale Reale", "name_pt_PT": "Empunhadura de Adaga Real", "on_use": false, "id_encounter": 1725, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140792, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Erratic Metronome", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1869, "buy_price": 9348, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.01010000705719, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Erratic Metronome", "name_ko_KR": "고장난 메트로놈", "name_fr_FR": "Métronome erratique", "name_de_DE": "Unstetes Metronom", "name_zh_CN": "变速节拍器", "name_es_ES": "Metrónomo errático", "name_ru_RU": "Расстроенный метроном", "name_it_IT": "Metronomo Irregolare", "name_pt_PT": "Metrônomo Caótico", "on_use": false, "id_encounter": 1725, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140793, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Perfectly Preserved Cake", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285649, "buy_price": 1428249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013700008392334, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Perfectly Preserved Cake", "name_ko_KR": "완벽하게 보존된 케이크", "name_fr_FR": "Gâteau parfaitement conservé", "name_de_DE": "Perfekt erhaltener Kuchen", "name_zh_CN": "保存完好的糕点", "name_es_ES": "Pastel perfectamente preservado", "name_ru_RU": "Идеально сохранившийся торт", "name_it_IT": "Torta Perfettamente Conservata", "name_pt_PT": "Bolo Perfeitamente Preservado", "on_use": true, "id_encounter": 1731, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140794, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcanogolem Digit", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286692, "buy_price": 1433462, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0174000263214111, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Arcanogolem Digit", "name_ko_KR": "비전골렘 손가락", "name_fr_FR": "Doigt d'arcanogolem", "name_de_DE": "Finger des Arkanogolems", "name_zh_CN": "魔像之指", "name_es_ES": "Dedo de Arcanogólem", "name_ru_RU": "Палец чародейского голема", "name_it_IT": "Dito di Golem Arcano", "name_pt_PT": "Dedo de Arcanogolem", "on_use": false, "id_encounter": 1731, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140795, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aluriel's Mirror", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287735, "buy_price": 1438675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211000442504883, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Aluriel's Mirror", "name_ko_KR": "알루리엘의 거울", "name_fr_FR": "Miroir d'Aluriel", "name_de_DE": "Aluriels Spiegel", "name_zh_CN": "奥鲁瑞尔的镜子", "name_es_ES": "Espejo de Aluriel", "name_ru_RU": "Зеркало Алуриэль", "name_it_IT": "Specchio di Aluriel", "name_pt_PT": "Espelho de Aluriel", "on_use": false, "id_encounter": 1751, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140796, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Entwined Elemental Foci", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288777, "buy_price": 1443888, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Entwined Elemental Foci", "name_ko_KR": "휘감긴 정령 매개체", "name_fr_FR": "Focalisateurs élémentaires entremêlés", "name_de_DE": "Verschlungene Elementarfokusse", "name_zh_CN": "纠缠元素焦镜", "name_es_ES": "Focos elementales entrelazados", "name_ru_RU": "Переплетенные средоточия стихий", "name_it_IT": "Focus Elementali Intrecciati", "name_pt_PT": "Foco Elemental Entrelaçado", "on_use": false, "id_encounter": 1751, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140797, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fang of Tichondrius", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269052, "buy_price": 1345262, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954800009727478, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fang of Tichondrius", "name_ko_KR": "티콘드리우스의 송곳니", "name_fr_FR": "Croc de Tichondrius", "name_de_DE": "Eckzahn von Tichondrius", "name_zh_CN": "提克迪奥斯之牙", "name_es_ES": "Colmillo de Tichondrius", "name_ru_RU": "Клык Тихондрия", "name_it_IT": "Zanna di Tichondrius", "name_pt_PT": "Presa de Taecondrius", "on_use": true, "id_encounter": 1762, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140798, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of Rot", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1774, "buy_price": 8870, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585000276565552, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Icon of Rot", "name_ko_KR": "부패의 상징", "name_fr_FR": "Icône de pourriture", "name_de_DE": "Ikone des Verrottens", "name_zh_CN": "腐烂圣像", "name_es_ES": "Icono de podredumbre", "name_ru_RU": "Знак гниения", "name_it_IT": "Icona di Putrefazione", "name_pt_PT": "Ícone da Putrefação", "on_use": false, "id_encounter": 1762, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140799, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of Krosus", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271137, "buy_price": 1355688, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Might of Krosus", "name_ko_KR": "크로서스의 힘", "name_fr_FR": "Puissance de Krosus", "name_de_DE": "Macht von Krosus", "name_zh_CN": "克洛苏斯之力", "name_es_ES": "Poderío de Krosus", "name_ru_RU": "Мощь Кроса", "name_it_IT": "Vigore di Krosus", "name_pt_PT": "Poder de Krosus", "on_use": true, "id_encounter": 1713, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140800, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pharamere's Forbidden Grimoire", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1787, "buy_price": 8939, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9659000039100647, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Pharamere's Forbidden Grimoire", "name_ko_KR": "파라미어의 금지된 흑마법서", "name_fr_FR": "Grimoire interdit de Pharamere", "name_de_DE": "Pharameres verbotenes Grimoire", "name_zh_CN": "法拉米尔的禁忌魔典", "name_es_ES": "Grimorio prohibido de Pharamere", "name_ru_RU": "Запретный гримуар Фарамеры", "name_it_IT": "Grimorio Proibito di Faramere", "name_pt_PT": "Grimório Proibido de Faraméria", "on_use": true, "id_encounter": 1713, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140801, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fury of the Burning Sky", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1794, "buy_price": 8972, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fury of the Burning Sky", "name_ko_KR": "불타는 하늘의 격노", "name_fr_FR": "Fureur du ciel brûlant", "name_de_DE": "Zorn des brennenden Himmels", "name_zh_CN": "炽燃苍穹之怒", "name_es_ES": "Furia del cielo en llamas", "name_ru_RU": "Ярость пылающего неба", "name_it_IT": "Furia del Cielo Ardente", "name_pt_PT": "Fúria do Céu Ardente", "on_use": false, "id_encounter": 1761, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140802, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightblooming Frond", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274237, "buy_price": 1371187, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Nightblooming Frond", "name_ko_KR": "밤꽃 잎사귀", "name_fr_FR": "Fronde d'éclosion nocturne", "name_de_DE": "Nachtblühender Wedel", "name_zh_CN": "暗夜之花复叶", "name_es_ES": "Fronda de la noche floreciente", "name_ru_RU": "Побег ночноцвета", "name_it_IT": "Fronda Notturna", "name_pt_PT": "Fronde do Florescer Noturno", "on_use": false, "id_encounter": 1761, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140803, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Etraeus' Celestial Map", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275280, "buy_price": 1376400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Etraeus' Celestial Map", "name_ko_KR": "에트레우스의 천상 지도", "name_fr_FR": "Carte céleste d'Etraeus", "name_de_DE": "Etraeus' Himmelskarte", "name_zh_CN": "艾塔乌斯的星图", "name_es_ES": "Mapa celestial de Etraeus", "name_ru_RU": "Звездная карта Этрея", "name_it_IT": "Mappa Celestiale di Etraeus", "name_pt_PT": "Mapa Celestial de Etraeus", "on_use": false, "id_encounter": 1732, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140804, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Star Gate", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1815, "buy_price": 9075, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9805999994277954, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Star Gate", "name_ko_KR": "별의 관문", "name_fr_FR": "Porte astrale", "name_de_DE": "Sternentor", "name_zh_CN": "星辰之门", "name_es_ES": "Puerta estelar", "name_ru_RU": "Звездные врата", "name_it_IT": "Varco Stellare", "name_pt_PT": "Portal Estelar", "on_use": false, "id_encounter": 1732, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140805, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ephemeral Paradox", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277337, "buy_price": 1386685, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ephemeral Paradox", "name_ko_KR": "덧없는 역설", "name_fr_FR": "Paradoxe éphémère", "name_de_DE": "Flüchtiges Paradoxon", "name_zh_CN": "刹那之悖论", "name_es_ES": "Paradoja efímera", "name_ru_RU": "Эфемерный парадокс", "name_it_IT": "Paradosso Effimero", "name_pt_PT": "Paradoxo Efêmero", "on_use": false, "id_encounter": 1743, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140806, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Convergence of Fates", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 278379, "buy_price": 1391898, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Convergence of Fates", "name_ko_KR": "운명의 수렴", "name_fr_FR": "Convergence des destins", "name_de_DE": "Konvergenz der Schicksale", "name_zh_CN": "凝结的命运", "name_es_ES": "Convergencia de destinos", "name_ru_RU": "Соприкосновение судеб", "name_it_IT": "Convergenza di Destini", "name_pt_PT": "Convergência de Destinos", "on_use": false, "id_encounter": 1743, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140807, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infernal Contract", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279422, "buy_price": 1397111, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991599977016449, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Infernal Contract", "name_ko_KR": "지옥의 계약", "name_fr_FR": "Contrat infernal", "name_de_DE": "Höllischer Vertrag", "name_zh_CN": "地狱火契约", "name_es_ES": "Contrato infernal", "name_ru_RU": "Инфернальный договор", "name_it_IT": "Costrutto Infernale", "name_pt_PT": "Contrato Infernal", "on_use": true, "id_encounter": 1737, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140808, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draught of Souls", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280436, "buy_price": 1402184, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.995199978351593, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Draught of Souls", "name_ko_KR": "영혼의 비약", "name_fr_FR": "Breuvage des âmes", "name_de_DE": "Destillat der Seelen", "name_zh_CN": "灵魂之引", "name_es_ES": "Jarabe de almas", "name_ru_RU": "Настой душ", "name_it_IT": "Fiasca d'Anime", "name_pt_PT": "Tragada das Almas", "on_use": true, "id_encounter": 1737, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140809, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whispers in the Dark", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1848, "buy_price": 9244, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Whispers in the Dark", "name_ko_KR": "어둠 속의 속삭임", "name_fr_FR": "Murmures dans les ténèbres", "name_de_DE": "Flüstern im Dunkel", "name_zh_CN": "黑暗低语", "name_es_ES": "Susurros en la oscuridad", "name_ru_RU": "Шепот во тьме", "name_it_IT": "Sussurri nell'Oscurità", "name_pt_PT": "Sussurros no Escuro", "on_use": false, "id_encounter": 1737, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 141482, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Arcanocrystal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5555, "stat_alloc_2": 5555, "stat_alloc_3": 5555, "stat_alloc_4": 5555, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276294, "buy_price": 1381472, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 528384, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Unstable Arcanocrystal", "name_ko_KR": "불안정한 비전수정", "name_fr_FR": "Arcanocristal instable", "name_de_DE": "Instabiler Arkanokristall", "name_zh_CN": "不稳定的奥术水晶", "name_es_ES": "Arcanocristal inestable", "name_ru_RU": "Нестабильный чародейский кристалл", "name_it_IT": "Arcanocristallo Instabile", "name_pt_PT": "Cristal Arcano Instável", "on_use": false, "id_encounter": 1796, "id_journal_instance": 822, "id_map": 1520, "instance_type": 2}, {"id": 141535, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ettin Fingernail", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 2222, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 472131, "buy_price": 2360659, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9544000029563904, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ettin Fingernail", "name_ko_KR": "거인 손톱", "name_fr_FR": "Ongle d'ettin", "name_de_DE": "Ettinfingernagel", "name_zh_CN": "双头怪的指甲", "name_es_ES": "Uña de ettin", "name_ru_RU": "Ноготь эттина", "name_it_IT": "Unghia di Ettin", "name_pt_PT": "Unha de Gorjala", "on_use": false, "id_encounter": 1789, "id_journal_instance": 822, "id_map": 1520, "instance_type": 2}, {"id": 141536, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Padawsen's Unlucky Charm", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 2222, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 473962, "buy_price": 2369811, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581000208854675, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Padawsen's Unlucky Charm", "name_ko_KR": "파다우센의 불운 부적", "name_fr_FR": "Porte-malheur de Padawsen", "name_de_DE": "Padawsens Unglücksbringer", "name_zh_CN": "帕达沃森的不幸符", "name_es_ES": "Talismán desafortunado de Padawsen", "name_ru_RU": "Несчастливый амулет Падосена", "name_it_IT": "Portasfortuna di Padawsen", "name_pt_PT": "Patuá da Má Sorte de Padawsen", "on_use": false, "id_encounter": 1770, "id_journal_instance": 822, "id_map": 1520, "instance_type": 2}, {"id": 141537, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thrice-Accursed Compass", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 2222, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 488901, "buy_price": 2444509, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Thrice-Accursed Compass", "name_ko_KR": "세 번 저주받은 나침반", "name_fr_FR": "Boussole trois fois maudite", "name_de_DE": "Dreimal verfluchter Kompass", "name_zh_CN": "三重诅咒罗盘", "name_es_ES": "Brújula tres veces maldita", "name_ru_RU": "Треклятый компас", "name_it_IT": "Bussola Tre Volte Maledetta", "name_pt_PT": "Bússola Três Vezes Amaldiçoada", "on_use": false, "id_encounter": 1756, "id_journal_instance": 822, "id_map": 1520, "instance_type": 2}, {"id": 141584, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eyasu's Mulligan", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285649, "buy_price": 1428249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013700008392334, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Eyasu's Mulligan", "name_ko_KR": "이야스의 손패", "name_fr_FR": "Deuxième chance d'Eyasu", "name_de_DE": "Eyasus wilde Mischung", "name_zh_CN": "艾亚苏的神奇卡牌", "name_es_ES": "Segunda oportunidad de Eyasu", "name_ru_RU": "Мешанина Эйасу", "name_it_IT": "Colpo Aggiuntivo di Eyasu", "name_pt_PT": "Segunda Chance de Eyasu", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 141585, "race_mask": 18446744073709551615, "desc": "Powerful enough to cool down even the mightiest beings who are caught in its breeze.", "pad2": "", "pad1": "", "pad0": "", "name": "Six-Feather Fan", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294159, "buy_price": 1470799, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0439000129699707, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Six-Feather Fan", "name_ko_KR": "여섯 깃털의 부채", "name_fr_FR": "Éventail à six plumes", "name_de_DE": "Sechsfedriger Fächer", "name_zh_CN": "六禽羽扇", "name_es_ES": "Abanico de seis plumas", "name_ru_RU": "Шестиперый веер", "name_it_IT": "Ventaglio a Sei Piume", "name_pt_PT": "Leque de Seis Penas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 141586, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Marfisi's Giant Censer", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295202, "buy_price": 1476012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0476000308990479, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Marfisi's Giant Censer", "name_ko_KR": "마르피시의 거대 향로", "name_fr_FR": "Encensoir géant de Marfisi", "name_de_DE": "Marfisis riesiges Räuchergefäß", "name_zh_CN": "玛菲斯的巨型香炉", "name_es_ES": "Incensario gigante de Marfisi", "name_ru_RU": "Огромное кадило Марфиси", "name_it_IT": "Incensiere Gigante di Marfisi", "name_pt_PT": "Incensário Gigante de Marfisi", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 141618, "race_mask": 18446744073709551615, "desc": "Death brings new life.", "pad2": "", "pad1": "", "pad0": "", "name": "Life-Giving Berries", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75120, "buy_price": 375603, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017899990081787, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Life-Giving Berries", "name_ko_KR": "생명을 주는 열매", "name_fr_FR": "Baies donneuses de vie", "name_de_DE": "Lebensspendende Beeren", "name_zh_CN": "赐生浆果", "name_es_ES": "Bayas de energía vital", "name_ru_RU": "Животворные ягоды", "name_it_IT": "Bacche del Dono della Vita", "name_pt_PT": "Frutinhas da Vida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 141619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mana-Infused Berries", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75393, "buy_price": 376968, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0216000080108643, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mana-Infused Berries", "name_ko_KR": "마나 깃든 열매", "name_fr_FR": "Baies imprégnées de mana", "name_de_DE": "Manaerfüllte Beeren", "name_zh_CN": "灌魔浆果", "name_es_ES": "Bayas imbuidas de maná", "name_ru_RU": "Насыщенные маной ягоды", "name_it_IT": "Bacche Infuse di Mana", "name_pt_PT": "Frutinhas Imbuídas de Mana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142157, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Aran's Relaxing Ruby", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1794, "buy_price": 8972, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Aran's Relaxing Ruby", "name_ko_KR": "아란의 마음이 편안해지는 루비", "name_fr_FR": "Rubis apaisant d'Aran", "name_de_DE": "Arans Entspannungsrubin", "name_zh_CN": "埃兰的舒缓红玉", "name_es_ES": "Rubí relajante de Aran", "name_ru_RU": "Успокаивающий рубин Арана", "name_it_IT": "Rubino Rilassante di Aran", "name_pt_PT": "Rubi Relaxante de Aran", "on_use": false, "id_encounter": 1817, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142158, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Faith's Crucible", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88184, "buy_price": 440923, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Faith's Crucible", "name_ko_KR": "신념의 도가니", "name_fr_FR": "Creuset de la foi", "name_de_DE": "Prüfung des Glaubens", "name_zh_CN": "信仰的试炼", "name_es_ES": "Crisol de fe", "name_ru_RU": "Горнило веры", "name_it_IT": "Crogiolo della Fede", "name_pt_PT": "Crisol da Fé", "on_use": true, "id_encounter": 1825, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142159, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodstained Handkerchief", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88520, "buy_price": 442600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Bloodstained Handkerchief", "name_ko_KR": "피로 물든 손수건", "name_fr_FR": "Mouchoir maculé de sang", "name_de_DE": "Blutbeflecktes Taschentuch", "name_zh_CN": "染血手帕", "name_es_ES": "Pañuelo manchado de sangre", "name_ru_RU": "Окровавленный носовой платок", "name_it_IT": "Fazzoletto Macchiato di Sangue", "name_pt_PT": "Lenço Manchado de Sangue", "on_use": true, "id_encounter": 1837, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142160, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Mrrgria's Favor", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1814, "buy_price": 9074, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Mrrgria's Favor", "name_ko_KR": "아옳리아의 호의", "name_fr_FR": "Faveur de Mrrgria", "name_de_DE": "Mrrgrias Gunst", "name_zh_CN": "玛吉亚的青睐", "name_es_ES": "Favor de Mrrgria", "name_ru_RU": "Благосклонность Мрргрии", "name_it_IT": "Favore di Mrrgria", "name_pt_PT": "Favor de Mrrgria", "on_use": true, "id_encounter": 1826, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142161, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Inescapable Dread", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89181, "buy_price": 445907, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Inescapable Dread", "name_ko_KR": "떨칠 수 없는 공포", "name_fr_FR": "Irrésistible terreur", "name_de_DE": "Unentrinnbarer Schrecken", "name_zh_CN": "缠身恐惧", "name_es_ES": "Pavor inexorable", "name_ru_RU": "Неотвязный страх", "name_it_IT": "Terrore Inevitabile", "name_pt_PT": "Pavor Inescapável", "on_use": false, "id_encounter": 1835, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142162, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Fluctuating Energy", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89516, "buy_price": 447583, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Fluctuating Energy", "name_ko_KR": "요동치는 마력", "name_fr_FR": "Énergie fluctuante", "name_de_DE": "Schwingende Energie", "name_zh_CN": "波动能量", "name_es_ES": "Energía oscilante", "name_ru_RU": "Колеблющаяся энергия", "name_it_IT": "Energia Fluttuante", "name_pt_PT": "Energia Flutuante", "on_use": false, "id_encounter": 1818, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142164, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Toe Knee's Promise", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92579, "buy_price": 462897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Toe Knee's Promise", "name_ko_KR": "토우니의 약속", "name_fr_FR": "Promesse de Tony Truand", "name_de_DE": "Jettonys Versprechen", "name_zh_CN": "托尼的承诺", "name_es_ES": "Promesa de Tony", "name_ru_RU": "Обещание Тонни", "name_it_IT": "Promessa di Tonny", "name_pt_PT": "Promessa do Tonhão", "on_use": true, "id_encounter": 1826, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142165, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Deteriorated Construct Core", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1898, "buy_price": 9490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Deteriorated Construct Core", "name_ko_KR": "상태가 나쁜 피조물 핵", "name_fr_FR": "Noyau d'assemblage ébréché", "name_de_DE": "Zersetzter Konstruktkern", "name_zh_CN": "变质的构造体核心", "name_es_ES": "Núcleo de ensamblaje deteriorado", "name_ru_RU": "Разряженное ядро голема", "name_it_IT": "Nucleo di Costrutto Deteriorato", "name_pt_PT": "Núcleo Deteriorado de Constructo", "on_use": false, "id_encounter": 1836, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ethereal Urn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93250, "buy_price": 466250, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ethereal Urn", "name_ko_KR": "실체 없는 단지", "name_fr_FR": "Urne éthérée", "name_de_DE": "Ätherische Urne", "name_zh_CN": "虚灵之瓶", "name_es_ES": "Urna etérea", "name_ru_RU": "Астральная урна", "name_it_IT": "Urna Eterea", "name_pt_PT": "Urna Etérea", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142167, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Command", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93585, "buy_price": 467926, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0327999591827393, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Command", "name_ko_KR": "지휘의 눈", "name_fr_FR": "Oeil de commandement", "name_de_DE": "Auge des Befehls", "name_zh_CN": "命令之眼", "name_es_ES": "Ojo de orden", "name_ru_RU": "Око властности", "name_it_IT": "Occhio del Comando", "name_pt_PT": "Olho do Comando", "on_use": false, "id_encounter": 1838, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142168, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Majordomo's Dinner Bell", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93911, "buy_price": 469557, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0363999605178833, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Majordomo's Dinner Bell", "name_ko_KR": "청지기의 저녁 식사 종", "name_fr_FR": "Cloche de dîner du chambellan", "name_de_DE": "Essensglöckchen des Majordomus", "name_zh_CN": "管理者的就餐铃", "name_es_ES": "Campanilla para la cena de mayordomo", "name_ru_RU": "Обеденный колокольчик мажордома", "name_it_IT": "Campanella della Cena del Maggiordomo", "name_pt_PT": "Sineta da Janta do Senescal", "on_use": true, "id_encounter": 1827, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142169, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Raven Eidolon", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8499, "stat_alloc_2": 5666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 94246, "buy_price": 471233, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0400999784469604, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Raven Eidolon", "name_ko_KR": "까마귀 허깨비", "name_fr_FR": "Eidolon de corbeau", "name_de_DE": "Rabenphantom", "name_zh_CN": "渡鸦之灵", "name_es_ES": "Cuervo Eidolon", "name_ru_RU": "Фигурка ворона", "name_it_IT": "Eidolon Corvo", "name_pt_PT": "Espectro Corvídeo", "on_use": true, "id_encounter": 1817, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142368, "race_mask": 18446744073709551615, "desc": "A reminder of past deeds.", "pad2": "", "pad1": "", "pad0": "", "name": "Cracked Falcosaur Beak", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 2000000, "buy_price": 10000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879999756813049, "flags_1": 67670016, "flags_2": 90112, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 2018, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cracked Falcosaur Beak", "name_ko_KR": "금이 간 팔코사우루스 부리", "name_fr_FR": "Bec de falcosaure fendu", "name_de_DE": "Zersplitterter Falkosaurierschnabel", "name_zh_CN": "开裂的隼龙喙", "name_es_ES": "Pico de falcosaurio rajado", "name_ru_RU": "Треснувший клюв грифозавра", "name_it_IT": "Becco di Falcosauro Spezzato", "name_pt_PT": "Bico de Falcossauro Rachado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142506, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Guarm", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507945, "buy_price": 2539729, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0326999425888062, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Guarm", "name_ko_KR": "구아름의 눈", "name_fr_FR": "Oeil de Guarm", "name_de_DE": "Guarms Auge", "name_zh_CN": "高姆之眼", "name_es_ES": "Ojo de Guarm", "name_ru_RU": "Глаз Гарма", "name_it_IT": "Occhio di Guarm", "name_pt_PT": "Olho de Guarm", "on_use": false, "id_encounter": 1830, "id_journal_instance": 861, "id_map": 1648, "instance_type": 2}, {"id": 142507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brinewater Slime in a Bottle", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 509765, "buy_price": 2548828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0363999605178833, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Brinewater Slime in a Bottle", "name_ko_KR": "병에 든 소금물 점액", "name_fr_FR": "Limon d'eau salée en bouteille", "name_de_DE": "Flasche mit Salzlakenschleim", "name_zh_CN": "瓶装盐水软泥", "name_es_ES": "Babosa de agua salobre en botella", "name_ru_RU": "Соленая слизь в бутылке", "name_it_IT": "Melma Brinosa in Bottiglia", "name_pt_PT": "Visgo de Água Suja na Garrafa", "on_use": false, "id_encounter": 1829, "id_journal_instance": 861, "id_map": 1648, "instance_type": 2}, {"id": 142508, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chains of the Valorous", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 511585, "buy_price": 2557928, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0400999784469604, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Chains of the Valorous", "name_ko_KR": "용맹스러운 자의 사슬", "name_fr_FR": "Entraves des Valeureux", "name_de_DE": "Ketten der Tapferen", "name_zh_CN": "勇武项链", "name_es_ES": "Cadenas del valeroso", "name_ru_RU": "Цепи доблести", "name_it_IT": "Catene del Valoroso", "name_pt_PT": "Correntes dos Valorosos", "on_use": false, "id_encounter": 1819, "id_journal_instance": 861, "id_map": 1648, "instance_type": 2}, {"id": 142660, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 291990, "buy_price": 1459951, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362000465393066, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142773, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador intrépido", "name_ru_RU": "Жетон завоевания бесстрашного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temerario", "name_pt_PT": "Distintivo da Conquista do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142661, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 502618, "buy_price": 2513091, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0398000478744507, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142774, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador intrépido", "name_ru_RU": "Акколада завоевания бесстрашного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Temerario", "name_pt_PT": "Galardão da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142662, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273307, "buy_price": 1366537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142775, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador intrépido", "name_ru_RU": "Знак завоевания бесстрашного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temerario", "name_pt_PT": "Insígnia da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142663, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274350, "buy_price": 1371750, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142776, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador intrépido", "name_ru_RU": "Эмблема жестокости бесстрашного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temerario", "name_pt_PT": "Emblema da Crueldade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142664, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275392, "buy_price": 1376963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772999882698059, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142777, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador intrépido", "name_ru_RU": "Эмблема упорства бесстрашного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temerario", "name_pt_PT": "Emblema da Tenacidade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142665, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276407, "buy_price": 1382036, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142778, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador intrépido", "name_ru_RU": "Эмблема медитации бесстрашного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temerario", "name_pt_PT": "Emblema da Meditação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142666, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277449, "buy_price": 1387249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142779, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador intrépido", "name_ru_RU": "Жетон господства бесстрашного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temerario", "name_pt_PT": "Distintivo da Dominância do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142667, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 477724, "buy_price": 2388621, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142780, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador intrépido", "name_ru_RU": "Акколада господства бесстрашного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Temerario", "name_pt_PT": "Galardão da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142668, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1836, "buy_price": 9180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142781, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador intrépido", "name_ru_RU": "Знак господства бесстрашного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temerario", "name_pt_PT": "Insígnia da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142669, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280549, "buy_price": 1402747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142782, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador intrépido", "name_ru_RU": "Жетон победы бесстрашного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temerario", "name_pt_PT": "Distintivo da Vitória do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142670, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483041, "buy_price": 2415207, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142783, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador intrépido", "name_ru_RU": "Акколада победы бесстрашного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Temerario", "name_pt_PT": "Galardão da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142671, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282634, "buy_price": 1413173, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142784, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador intrépido", "name_ru_RU": "Знак победы бесстрашного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temerario", "name_pt_PT": "Insígnia da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142672, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283649, "buy_price": 1418246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142785, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador intrépido", "name_ru_RU": "Жетон адаптации бесстрашного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Temerario", "name_pt_PT": "Distintivo da Adaptação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142773, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 291990, "buy_price": 1459951, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362000465393066, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142660, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador intrépido", "name_ru_RU": "Жетон завоевания бесстрашного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temerario", "name_pt_PT": "Distintivo da Conquista do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142774, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 467041, "buy_price": 2335207, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142661, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador intrépido", "name_ru_RU": "Акколада завоевания бесстрашного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Temerario", "name_pt_PT": "Galardão da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142775, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273307, "buy_price": 1366537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142662, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador intrépido", "name_ru_RU": "Знак завоевания бесстрашного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temerario", "name_pt_PT": "Insígnia da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142776, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274350, "buy_price": 1371750, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142663, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador intrépido", "name_ru_RU": "Эмблема жестокости бесстрашного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temerario", "name_pt_PT": "Emblema da Crueldade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142777, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275392, "buy_price": 1376963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772999882698059, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142664, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador intrépido", "name_ru_RU": "Эмблема упорства бесстрашного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temerario", "name_pt_PT": "Emblema da Tenacidade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142778, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276407, "buy_price": 1382036, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142665, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador intrépido", "name_ru_RU": "Эмблема медитации бесстрашного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temerario", "name_pt_PT": "Emblema da Meditação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142779, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277449, "buy_price": 1387249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142666, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador intrépido", "name_ru_RU": "Жетон господства бесстрашного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temerario", "name_pt_PT": "Distintivo da Dominância do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142780, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 477724, "buy_price": 2388621, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142667, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador intrépido", "name_ru_RU": "Акколада господства бесстрашного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Temerario", "name_pt_PT": "Galardão da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142781, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1836, "buy_price": 9180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142668, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador intrépido", "name_ru_RU": "Знак господства бесстрашного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temerario", "name_pt_PT": "Insígnia da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142782, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280549, "buy_price": 1402747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142669, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador intrépido", "name_ru_RU": "Жетон победы бесстрашного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temerario", "name_pt_PT": "Distintivo da Vitória do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142783, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483041, "buy_price": 2415207, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142670, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador intrépido", "name_ru_RU": "Акколада победы бесстрашного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Temerario", "name_pt_PT": "Galardão da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142784, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282634, "buy_price": 1413173, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142671, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador intrépido", "name_ru_RU": "Знак победы бесстрашного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temerario", "name_pt_PT": "Insígnia da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142785, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283649, "buy_price": 1418246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142672, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador intrépido", "name_ru_RU": "Жетон адаптации бесстрашного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Temerario", "name_pt_PT": "Distintivo da Adaptação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142886, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218992, "buy_price": 1094963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362000465393066, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142999, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente impávido", "name_ru_RU": "Жетон завоевания бесстрашного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Temerario", "name_pt_PT": "Distintivo da Conquista do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142887, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 347002, "buy_price": 1735014, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143000, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente impávido", "name_ru_RU": "Акколада завоевания бесстрашного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Temerario", "name_pt_PT": "Galardão da Conquista do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142888, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204980, "buy_price": 1024903, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143001, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente impávido", "name_ru_RU": "Знак завоевания бесстрашного бойца", "name_it_IT": "Fregio della Conquista del Combattente Temerario", "name_pt_PT": "Insígnia da Conquista do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142889, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 205762, "buy_price": 1028813, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143002, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente impávido", "name_ru_RU": "Эмблема жестокости бесстрашного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Temerario", "name_pt_PT": "Emblema da Crueldade do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142890, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 206544, "buy_price": 1032722, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772999882698059, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143003, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente impávido", "name_ru_RU": "Эмблема упорства бесстрашного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Temerario", "name_pt_PT": "Emblema da Tenacidade do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142891, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207305, "buy_price": 1036527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143004, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente impávido", "name_ru_RU": "Эмблема медитации бесстрашного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Temerario", "name_pt_PT": "Emblema da Meditação do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142892, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208087, "buy_price": 1040436, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143005, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente impávido", "name_ru_RU": "Жетон господства бесстрашного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Temerario", "name_pt_PT": "Distintivo da Dominância do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142893, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 354939, "buy_price": 1774699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143006, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente impávido", "name_ru_RU": "Акколада господства бесстрашного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Temerario", "name_pt_PT": "Galardão da Dominância do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142894, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1377, "buy_price": 6885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143007, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente impávido", "name_ru_RU": "Знак господства бесстрашного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Temerario", "name_pt_PT": "Insígnia da Dominância do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142895, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 210412, "buy_price": 1052060, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143008, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente impávido", "name_ru_RU": "Жетон победы бесстрашного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Temerario", "name_pt_PT": "Distintivo da Vitória do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142896, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 358890, "buy_price": 1794452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143009, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente impávido", "name_ru_RU": "Акколада победы бесстрашного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Temerario", "name_pt_PT": "Galardão da Vitória do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142897, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211976, "buy_price": 1059880, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143010, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente impávido", "name_ru_RU": "Знак победы бесстрашного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Temerario", "name_pt_PT": "Insígnia da Vitória do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142898, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212736, "buy_price": 1063684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143011, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente impávido", "name_ru_RU": "Жетон адаптации бесстрашного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Temerario", "name_pt_PT": "Distintivo da Adaptação do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142999, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203437, "buy_price": 1017189, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142886, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente impávido", "name_ru_RU": "Жетон завоевания бесстрашного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Temerario", "name_pt_PT": "Distintivo da Conquista do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143000, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 347002, "buy_price": 1735014, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142887, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente impávido", "name_ru_RU": "Акколада завоевания бесстрашного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Temerario", "name_pt_PT": "Galardão da Conquista do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143001, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204980, "buy_price": 1024903, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142888, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente impávido", "name_ru_RU": "Знак завоевания бесстрашного бойца", "name_it_IT": "Fregio della Conquista del Combattente Temerario", "name_pt_PT": "Insígnia da Conquista do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143002, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 205762, "buy_price": 1028813, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142889, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente impávido", "name_ru_RU": "Эмблема жестокости бесстрашного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Temerario", "name_pt_PT": "Emblema da Crueldade do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143003, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 206523, "buy_price": 1032617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772000312805176, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142890, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente impávido", "name_ru_RU": "Эмблема упорства бесстрашного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Temerario", "name_pt_PT": "Emblema da Tenacidade do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143004, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207305, "buy_price": 1036527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142891, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente impávido", "name_ru_RU": "Эмблема медитации бесстрашного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Temerario", "name_pt_PT": "Emblema da Meditação do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143005, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208087, "buy_price": 1040436, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142892, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente impávido", "name_ru_RU": "Жетон господства бесстрашного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Temerario", "name_pt_PT": "Distintivo da Dominância do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143006, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 354939, "buy_price": 1774699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142893, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente impávido", "name_ru_RU": "Акколада господства бесстрашного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Temerario", "name_pt_PT": "Galardão da Dominância do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143007, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1377, "buy_price": 6885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142894, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente impávido", "name_ru_RU": "Знак господства бесстрашного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Temerario", "name_pt_PT": "Insígnia da Dominância do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143008, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 210412, "buy_price": 1052060, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142895, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente impávido", "name_ru_RU": "Жетон победы бесстрашного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Temerario", "name_pt_PT": "Distintivo da Vitória do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143009, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 358890, "buy_price": 1794452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142896, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente impávido", "name_ru_RU": "Акколада победы бесстрашного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Temerario", "name_pt_PT": "Galardão da Vitória do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143010, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211976, "buy_price": 1059880, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142897, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente impávido", "name_ru_RU": "Знак победы бесстрашного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Temerario", "name_pt_PT": "Insígnia da Vitória do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143011, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212736, "buy_price": 1063684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142898, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente impávido", "name_ru_RU": "Жетон адаптации бесстрашного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Temerario", "name_pt_PT": "Distintivo da Adaptação do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143112, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271250, "buy_price": 1356252, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143225, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador intrépido", "name_ru_RU": "Жетон завоевания бесстрашного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temerario", "name_pt_PT": "Distintivo da Conquista do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143113, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483433, "buy_price": 2417165, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143226, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador intrépido", "name_ru_RU": "Акколада завоевания бесстрашного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Temerario", "name_pt_PT": "Galardão da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143114, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273307, "buy_price": 1366537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143227, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador intrépido", "name_ru_RU": "Знак завоевания бесстрашного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temerario", "name_pt_PT": "Insígnia da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143115, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274350, "buy_price": 1371750, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143228, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador intrépido", "name_ru_RU": "Эмблема жестокости бесстрашного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temerario", "name_pt_PT": "Emblema da Crueldade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143116, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275364, "buy_price": 1376823, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772000312805176, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143229, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador intrépido", "name_ru_RU": "Эмблема упорства бесстрашного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temerario", "name_pt_PT": "Emblema da Tenacidade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143117, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276407, "buy_price": 1382036, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143230, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador intrépido", "name_ru_RU": "Эмблема медитации бесстрашного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temerario", "name_pt_PT": "Emblema da Meditação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143118, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277449, "buy_price": 1387249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143231, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador intrépido", "name_ru_RU": "Жетон господства бесстрашного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temerario", "name_pt_PT": "Distintivo da Dominância do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143119, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 494490, "buy_price": 2472454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143232, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador intrépido", "name_ru_RU": "Акколада господства бесстрашного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Temerario", "name_pt_PT": "Galardão da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143120, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1836, "buy_price": 9180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143233, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador intrépido", "name_ru_RU": "Знак господства бесстрашного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temerario", "name_pt_PT": "Insígnia da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143121, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280549, "buy_price": 1402747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143234, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador intrépido", "name_ru_RU": "Жетон победы бесстрашного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temerario", "name_pt_PT": "Distintivo da Vitória do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143122, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499994, "buy_price": 2499972, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143235, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador intrépido", "name_ru_RU": "Акколада победы бесстрашного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Temerario", "name_pt_PT": "Galardão da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143123, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282634, "buy_price": 1413173, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143236, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador intrépido", "name_ru_RU": "Знак победы бесстрашного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temerario", "name_pt_PT": "Insígnia da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143124, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283649, "buy_price": 1418246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143237, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador intrépido", "name_ru_RU": "Жетон адаптации бесстрашного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Temerario", "name_pt_PT": "Distintivo da Adaptação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143225, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271250, "buy_price": 1356252, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143112, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador intrépido", "name_ru_RU": "Жетон завоевания бесстрашного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temerario", "name_pt_PT": "Distintivo da Conquista do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143226, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483433, "buy_price": 2417165, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143113, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador intrépido", "name_ru_RU": "Акколада завоевания бесстрашного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Temerario", "name_pt_PT": "Galardão da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143227, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273307, "buy_price": 1366537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143114, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador intrépido", "name_ru_RU": "Знак завоевания бесстрашного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temerario", "name_pt_PT": "Insígnia da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143228, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274350, "buy_price": 1371750, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143115, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador intrépido", "name_ru_RU": "Эмблема жестокости бесстрашного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temerario", "name_pt_PT": "Emblema da Crueldade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143229, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275364, "buy_price": 1376823, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772000312805176, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143116, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador intrépido", "name_ru_RU": "Эмблема упорства бесстрашного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temerario", "name_pt_PT": "Emblema da Tenacidade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143230, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276407, "buy_price": 1382036, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143117, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador intrépido", "name_ru_RU": "Эмблема медитации бесстрашного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temerario", "name_pt_PT": "Emblema da Meditação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143231, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277449, "buy_price": 1387249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143118, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador intrépido", "name_ru_RU": "Жетон господства бесстрашного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temerario", "name_pt_PT": "Distintivo da Dominância do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143232, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 494490, "buy_price": 2472454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143119, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador intrépido", "name_ru_RU": "Акколада господства бесстрашного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Temerario", "name_pt_PT": "Galardão da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143233, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1836, "buy_price": 9180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143120, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador intrépido", "name_ru_RU": "Знак господства бесстрашного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temerario", "name_pt_PT": "Insígnia da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143234, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280549, "buy_price": 1402747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143121, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador intrépido", "name_ru_RU": "Жетон победы бесстрашного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temerario", "name_pt_PT": "Distintivo da Vitória do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143235, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499994, "buy_price": 2499972, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143122, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador intrépido", "name_ru_RU": "Акколада победы бесстрашного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Temerario", "name_pt_PT": "Galardão da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143236, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282634, "buy_price": 1413173, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143123, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador intrépido", "name_ru_RU": "Знак победы бесстрашного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temerario", "name_pt_PT": "Insígnia da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143237, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283649, "buy_price": 1418246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143124, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador intrépido", "name_ru_RU": "Жетон адаптации бесстрашного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Temerario", "name_pt_PT": "Distintivo da Adaptação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144070, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shado-Pan Dragon Gun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 2958300, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0401999950408936, "flags_1": 561216, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Shado-Pan Dragon Gun", "name_ko_KR": "음영파 용화포", "name_fr_FR": "Fusil-dragon pandashan", "name_de_DE": "Drachengewehr der Shado-Pan", "name_zh_CN": "影踪派龙枪", "name_es_ES": "Pistola de dragón del Shadopan", "name_ru_RU": "Драконье ружье Шадо-Пан", "name_it_IT": "Archibugio del Drago degli Shandaren", "name_pt_PT": "Arma-dragão Shado-Pan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windswept Pages", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.977400004863739, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Windswept Pages", "name_ko_KR": "바람을 맞은 책장", "name_fr_FR": "Pages emportées par le vent", "name_de_DE": "Windgepeitschte Seiten", "name_zh_CN": "风中的书页", "name_es_ES": "Páginas arrastradas por el viento", "name_ru_RU": "Унесенные ветром страницы", "name_it_IT": "Pagine Scombinate dal Vento", "name_pt_PT": "Páginas Levadas pelo Vento", "on_use": false, "id_encounter": 664, "id_journal_instance": 313, "id_map": 960, "instance_type": 1}, {"id": 144119, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empty Fruit Barrel", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994000196456909, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Empty Fruit Barrel", "name_ko_KR": "빈 과일 통", "name_fr_FR": "Baril de fruits vide", "name_de_DE": "Leeres Fruchtfass", "name_zh_CN": "空的水果桶", "name_es_ES": "Barril de fruta vacío", "name_ru_RU": "Пустой бочонок из-под фруктов", "name_it_IT": "Barile di Frutta Vuoto", "name_pt_PT": "Barril de Frutas Vazio", "on_use": false, "id_encounter": 668, "id_journal_instance": 302, "id_map": 961, "instance_type": 1}, {"id": 144122, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carbonic Carbuncle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104000568389893, "flags_1": 524288, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Carbonic Carbuncle", "name_ko_KR": "탄소 몽돌", "name_fr_FR": "Escarboucle carbonique", "name_de_DE": "Kohlenstoffhaltiger Karfunkel", "name_zh_CN": "钙化红玉", "name_es_ES": "Carbunco carbónico", "name_ru_RU": "Углеродный карбункул", "name_it_IT": "Granato Carbonico", "name_pt_PT": "Carbúnculo Carbônico", "on_use": false, "id_encounter": 670, "id_journal_instance": 302, "id_map": 961, "instance_type": 1}, {"id": 144128, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Fire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Fire", "name_ko_KR": "불의 심장", "name_fr_FR": "Cœur de feu", "name_de_DE": "Flammendes Herz", "name_zh_CN": "炽热之心", "name_es_ES": "Corazón de fuego", "name_ru_RU": "Сердце огня", "name_it_IT": "Cuore di Fuoco", "name_pt_PT": "Coração de Fogo", "on_use": true, "id_encounter": 657, "id_journal_instance": 312, "id_map": 959, "instance_type": 1}, {"id": 144136, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vision of the Predator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21256, "buy_price": 106282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 3, "name_en_US": "Vision of the Predator", "name_ko_KR": "약탈자의 환영", "name_fr_FR": "Vision du prédateur", "name_de_DE": "Sicht des Raubtiers", "name_zh_CN": "掠食者幻象", "name_es_ES": "Visión del depredador", "name_ru_RU": "Взгляд хищника", "name_it_IT": "Visione del Predatore", "name_pt_PT": "Visão do Predador", "on_use": false, "id_encounter": 675, "id_journal_instance": 303, "id_map": 962, "instance_type": 1}, {"id": 144146, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Protector Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 524288, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Iron Protector Talisman", "name_ko_KR": "무쇠의 수호자 부적", "name_fr_FR": "Talisman de protecteur en fer", "name_de_DE": "Eiserner Schutztalisman", "name_zh_CN": "钢铁保护者护符", "name_es_ES": "Dije protector de hierro", "name_ru_RU": "Талисман железного защитника", "name_it_IT": "Talismano del Protettore di Ferro", "name_pt_PT": "Talismã do Protetor de Ferro", "on_use": false, "id_encounter": 690, "id_journal_instance": 321, "id_map": 994, "instance_type": 1}, {"id": 144156, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashfrozen Resin Globule", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.988099992275238, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Flashfrozen Resin Globule", "name_ko_KR": "급속 냉동된 나뭇진 방울", "name_fr_FR": "Globule de résine surgelée", "name_de_DE": "Schockgefrorenes Harzkügelchen", "name_zh_CN": "闪冻松脂球", "name_es_ES": "Glóbulo de resina congelado rápidamente", "name_ru_RU": "Замороженная капля смолы", "name_it_IT": "Globulo di Linfa Congelato", "name_pt_PT": "Glóbulo de Resina Supercongelado", "on_use": true, "id_encounter": 693, "id_journal_instance": 324, "id_map": 1011, "instance_type": 1}, {"id": 144157, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Ichorous Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Ichorous Blood", "name_ko_KR": "끈끈한 피가 든 병", "name_fr_FR": "Fiole de sang ichoreux", "name_de_DE": "Phiole mit eitrigem Blut", "name_zh_CN": "腐败血瓶", "name_es_ES": "Vial de sangre icorosa", "name_ru_RU": "Сосуд с кровью и гноем", "name_it_IT": "Fiala di Sangue di Icore", "name_pt_PT": "Frasco de Sangue Icoroso", "on_use": true, "id_encounter": 692, "id_journal_instance": 324, "id_map": 1011, "instance_type": 1}, {"id": 144158, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashing Steel Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219999551773071, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Flashing Steel Talisman", "name_ko_KR": "번쩍이는 강철 부적", "name_fr_FR": "Talisman d'acier miroitant", "name_de_DE": "Blitzender Stahltalisman", "name_zh_CN": "炫目精钢护符", "name_es_ES": "Dije de acero ostentoso", "name_ru_RU": "Талисман стальной вспышки", "name_it_IT": "Talismano d'Acciaio Lampeggiante", "name_pt_PT": "Talismã do Clarão de Aço", "on_use": true, "id_encounter": 674, "id_journal_instance": 316, "id_map": 1004, "instance_type": 1}, {"id": 144159, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Price of Progress", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255999565124512, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Price of Progress", "name_ko_KR": "연구의 대가", "name_fr_FR": "Prix du progrès", "name_de_DE": "Preis des Fortschritts", "name_zh_CN": "进修的代价", "name_es_ES": "Precio del progreso", "name_ru_RU": "Цена продвижения", "name_it_IT": "Prezzo del Progresso", "name_pt_PT": "Preço do Progresso", "on_use": false, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 144160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Searing Words", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0292999744415283, "flags_1": 524288, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Searing Words", "name_ko_KR": "혹독한 주문", "name_fr_FR": "Mots incendiaires", "name_de_DE": "Sengende Worte", "name_zh_CN": "灼热之语", "name_es_ES": "Palabras abrasadoras", "name_ru_RU": "Обжигающие слова", "name_it_IT": "Parole di Fuoco", "name_pt_PT": "Palavras Calcinantes", "on_use": false, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 144161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lessons of the Darkmaster", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0329999923706055, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Lessons of the Darkmaster", "name_ko_KR": "암흑스승의 가르침", "name_fr_FR": "Leçons du Sombre Maître", "name_de_DE": "Lektionen des Dunkelmeisters", "name_zh_CN": "黑暗院长遗训", "name_es_ES": "Lecciones del maestro oscuro", "name_ru_RU": "Уроки темного магистра", "name_it_IT": "Lezioni del Maestro Oscuro", "name_pt_PT": "Lições do Mestre da Escuridão", "on_use": true, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 144249, "race_mask": 18446744073709551615, "desc": "Archimonde the Defiler, overlord of the legion army and wielder of limitless magics, has destroyed countless worlds across the infinity of the universes.", "pad2": "", "pad1": "", "pad0": "", "name": "Archimonde's Hatred Reborn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 357, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 417738, "buy_price": 2088693, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 561408, "flags_2": 12352, "flags_3": 276824064, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 5, "name_en_US": "Archimonde's Hatred Reborn", "name_ko_KR": "다시 태어난 아키몬드의 증오", "name_fr_FR": "Haine renouvelée d'Archimonde", "name_de_DE": "Archimondes wiedergeborener Hass", "name_zh_CN": "阿克蒙德的重生之恨", "name_es_ES": "Odio renacido de Archimonde", "name_ru_RU": "Перерожденная ненависть Архимонда", "name_it_IT": "Odio Rinato di Archimonde", "name_pt_PT": "Renascimento do Ódio de Arquimonde", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144258, "race_mask": 18446744073709551615, "desc": "Velen the Ageless One, known by his people as the Prophet, blessed with the gift of Sight, and aided by the Light, has led the draenei for over 25,000 years.", "pad2": "", "pad1": "", "pad0": "", "name": "Velen's Future Sight", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 357, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 2222, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 49, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442888, "buy_price": 2214442, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0477999448776245, "flags_1": 561408, "flags_2": 12352, "flags_3": 276824064, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 5, "name_en_US": "Velen's Future Sight", "name_ko_KR": "벨렌의 미래를 보는 눈", "name_fr_FR": "Vision future de Velen", "name_de_DE": "Velens Blick in die Zukunft", "name_zh_CN": "维伦的未来预言", "name_es_ES": "Visión futura de Velen", "name_ru_RU": "Предвидение Велена", "name_it_IT": "Visione di Velen", "name_pt_PT": "Visão do Futuro de Velen", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144259, "race_mask": 18446744073709551615, "desc": "Kil'jaeden the Deceiver, supreme commander of the Burning Legion, has a simple agenda: consume all life and magic, assimilate every race into the Legion's ranks, slay any who dare resist, and destroy all of creation.", "pad2": "", "pad1": "", "pad0": "", "name": "Kil'jaeden's Burning Wish", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 357, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 2222, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 49, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 402141, "buy_price": 2010708, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 561472, "flags_2": 12352, "flags_3": 276824064, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 5, "name_en_US": "Kil'jaeden's Burning Wish", "name_ko_KR": "킬제덴의 불타는 소원", "name_fr_FR": "Souhait ardent de Kil'jaeden", "name_de_DE": "Kil'jaedens brennender Wunsch", "name_zh_CN": "基尔加丹的炽燃决心", "name_es_ES": "Voluntad ardiente de Kil'jaeden", "name_ru_RU": "Пылкое желание Кил'джедена", "name_it_IT": "Desiderio Ardente di Kil'jaeden", "name_pt_PT": "Anseio Ardente de Kil'jaeden", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144477, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Splinters of Agronox", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67660, "buy_price": 338304, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Splinters of Agronox", "name_ko_KR": "아그로녹스의 부목", "name_fr_FR": "Echardes d'Agronox", "name_de_DE": "Splitter von Agronax", "name_zh_CN": "阿格洛诺克斯的碎木", "name_es_ES": "Astillas de Agronox", "name_ru_RU": "Щепки Агронокса", "name_it_IT": "Schegge di Agronox", "name_pt_PT": "Farpas de Agronox", "on_use": false, "id_encounter": 1905, "id_journal_instance": 900, "id_map": 1677, "instance_type": 1}, {"id": 144480, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadstone of Endless Shadows", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70209, "buy_price": 351046, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0331000089645386, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Dreadstone of Endless Shadows", "name_ko_KR": "끝없는 그림자의 공포석", "name_fr_FR": "Pierre d'effroi des ombres éternelles", "name_de_DE": "Schreckensstein der endlosen Schatten", "name_zh_CN": "无尽暗影恐惧石", "name_es_ES": "Piedra de terror de sombras infinitas", "name_ru_RU": "Страхолит бесконечных теней", "name_it_IT": "Pietracupa delle Ombre Imperiture", "name_pt_PT": "Medolita da Sombra Infinita", "on_use": false, "id_encounter": 1878, "id_journal_instance": 900, "id_map": 1677, "instance_type": 1}, {"id": 144482, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fel-Oiled Infernal Machine", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70712, "buy_price": 353561, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405000448226929, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Fel-Oiled Infernal Machine", "name_ko_KR": "지옥 기름을 친 불지옥 기계", "name_fr_FR": "Machine infernale gangrelubrifiée", "name_de_DE": "Teufelsgeölte Höllenmaschine", "name_zh_CN": "魔油地狱火机械", "name_es_ES": "Máquina infernal engrasada con vileza", "name_ru_RU": "Смазанная Скверной адская машина", "name_it_IT": "Macchina Infernale Viloliata", "name_pt_PT": "Máquina Infernal Vilubrificada", "on_use": true, "id_encounter": 1906, "id_journal_instance": 900, "id_map": 1677, "instance_type": 1}, {"id": 144730, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295230, "buy_price": 1476153, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.047700047492981, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144731, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador cruel", "name_ru_RU": "Жетон завоевания лютого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Maligno", "name_pt_PT": "Distintivo da Conquista do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144731, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 268066, "buy_price": 1340331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513000249862671, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144730, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador cruel", "name_ru_RU": "Жетон завоевания лютого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Maligno", "name_pt_PT": "Distintivo da Conquista do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144732, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 461579, "buy_price": 2307897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549000263214111, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144733, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador cruel", "name_ru_RU": "Акколада завоевания лютого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Maligno", "name_pt_PT": "Galardão da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144733, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 463367, "buy_price": 2316839, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585999846458435, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144732, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador cruel", "name_ru_RU": "Акколада завоевания лютого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Maligno", "name_pt_PT": "Galardão da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144734, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271165, "buy_price": 1355829, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9623000025749207, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144735, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador cruel", "name_ru_RU": "Знак завоевания лютого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Maligno", "name_pt_PT": "Insígnia da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144735, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279675, "buy_price": 1398379, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144734, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador cruel", "name_ru_RU": "Знак завоевания лютого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Maligno", "name_pt_PT": "Insígnia da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144736, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280690, "buy_price": 1403452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9961000084877014, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144737, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador cruel", "name_ru_RU": "Жетон господства лютого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Maligno", "name_pt_PT": "Distintivo da Dominância do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144737, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281733, "buy_price": 1408665, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998000264167786, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144736, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador cruel", "name_ru_RU": "Жетон господства лютого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Maligno", "name_pt_PT": "Distintivo da Dominância do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144738, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 485071, "buy_price": 2425358, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003499984741211, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144739, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador cruel", "name_ru_RU": "Акколада господства лютого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Maligno", "name_pt_PT": "Galardão da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144739, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 486811, "buy_price": 2434059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007099986076355, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144738, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador cruel", "name_ru_RU": "Акколада господства лютого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Maligno", "name_pt_PT": "Galardão da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144740, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1870, "buy_price": 9354, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0108000040054321, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144741, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador cruel", "name_ru_RU": "Знак господства лютого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Maligno", "name_pt_PT": "Insígnia da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144741, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1877, "buy_price": 9389, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0145000219345093, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144740, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador cruel", "name_ru_RU": "Знак господства лютого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Maligno", "name_pt_PT": "Insígnia da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144742, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286917, "buy_price": 1434589, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0182000398635864, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144743, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Victory", "name_ko_KR": "잔혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador cruel", "name_ru_RU": "Жетон победы лютого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Maligno", "name_pt_PT": "Distintivo da Vitória do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144743, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287932, "buy_price": 1439662, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0218000411987305, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144742, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Victory", "name_ko_KR": "잔혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador cruel", "name_ru_RU": "Жетон победы лютого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Maligno", "name_pt_PT": "Distintivo da Vitória do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144744, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 495706, "buy_price": 2478530, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255000591278076, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144745, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Victory", "name_ko_KR": "잔혹한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador cruel", "name_ru_RU": "Акколада победы лютого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Maligno", "name_pt_PT": "Galardão da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144745, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 497494, "buy_price": 2487472, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0291999578475952, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144744, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Victory", "name_ko_KR": "잔혹한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador cruel", "name_ru_RU": "Акколада победы лютого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Maligno", "name_pt_PT": "Galardão da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144746, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 291060, "buy_price": 1455301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0328999757766724, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144747, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Victory", "name_ko_KR": "잔혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador cruel", "name_ru_RU": "Знак победы лютого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Maligno", "name_pt_PT": "Insígnia da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144747, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292074, "buy_price": 1460373, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0364999771118164, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144746, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Victory", "name_ko_KR": "잔혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador cruel", "name_ru_RU": "Знак победы лютого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Maligno", "name_pt_PT": "Insígnia da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144976, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274462, "buy_price": 1372314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739999771118164, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144977, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador cruel", "name_ru_RU": "Жетон завоевания лютого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Maligno", "name_pt_PT": "Distintivo da Conquista do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144977, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275477, "buy_price": 1377386, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144976, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador cruel", "name_ru_RU": "Жетон завоевания лютого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Maligno", "name_pt_PT": "Distintivo da Conquista do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144978, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 490988, "buy_price": 2454941, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9812999963760376, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144979, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador cruel", "name_ru_RU": "Акколада завоевания лютого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Maligno", "name_pt_PT": "Galardão da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144979, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 492839, "buy_price": 2464198, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850000143051147, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144978, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador cruel", "name_ru_RU": "Акколада завоевания лютого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Maligno", "name_pt_PT": "Galardão da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144980, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 278577, "buy_price": 1392885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144981, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador cruel", "name_ru_RU": "Знак завоевания лютого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Maligno", "name_pt_PT": "Insígnia da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144981, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279619, "buy_price": 1398098, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144980, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador cruel", "name_ru_RU": "Знак завоевания лютого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Maligno", "name_pt_PT": "Insígnia da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144982, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280662, "buy_price": 1403311, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144983, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador cruel", "name_ru_RU": "Жетон господства лютого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Maligno", "name_pt_PT": "Distintivo da Dominância do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144983, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281704, "buy_price": 1408524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9997000098228455, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144982, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador cruel", "name_ru_RU": "Жетон господства лютого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Maligno", "name_pt_PT": "Distintivo da Dominância do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144984, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 501995, "buy_price": 2509979, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0032999515533447, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144985, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador cruel", "name_ru_RU": "Акколада господства лютого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Maligno", "name_pt_PT": "Galardão da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144985, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 503847, "buy_price": 2519236, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0069999694824219, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144984, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador cruel", "name_ru_RU": "Акколада господства лютого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Maligno", "name_pt_PT": "Galardão da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144986, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1870, "buy_price": 9354, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010699987411499, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144987, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador cruel", "name_ru_RU": "Знак господства лютого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Maligno", "name_pt_PT": "Insígnia da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144987, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1877, "buy_price": 9388, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0144000053405762, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144986, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador cruel", "name_ru_RU": "Знак господства лютого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Maligno", "name_pt_PT": "Insígnia da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144988, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286861, "buy_price": 1434308, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144989, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Victory", "name_ko_KR": "잔혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador cruel", "name_ru_RU": "Жетон победы лютого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Maligno", "name_pt_PT": "Distintivo da Vitória do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144989, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287904, "buy_price": 1439521, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144988, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Victory", "name_ko_KR": "잔혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador cruel", "name_ru_RU": "Жетон победы лютого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Maligno", "name_pt_PT": "Distintivo da Vitória do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144990, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 513053, "buy_price": 2565268, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144991, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Victory", "name_ko_KR": "잔혹한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador cruel", "name_ru_RU": "Акколада победы лютого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Maligno", "name_pt_PT": "Galardão da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144991, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 514904, "buy_price": 2574524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144990, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Victory", "name_ko_KR": "잔혹한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador cruel", "name_ru_RU": "Акколада победы лютого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Maligno", "name_pt_PT": "Galardão da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144992, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270264, "buy_price": 1351321, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9591000080108643, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144993, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Victory", "name_ko_KR": "잔혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador cruel", "name_ru_RU": "Знак победы лютого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Maligno", "name_pt_PT": "Insígnia da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144993, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271306, "buy_price": 1356534, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9628000259399414, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144992, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Victory", "name_ko_KR": "잔혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador cruel", "name_ru_RU": "Знак победы лютого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Maligno", "name_pt_PT": "Insígnia da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145222, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 205804, "buy_price": 1029024, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.973800003528595, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145223, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente cruel", "name_ru_RU": "Жетон завоевания лютого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Maligno", "name_pt_PT": "Distintivo da Conquista do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145223, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 206586, "buy_price": 1032934, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775000214576721, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145222, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente cruel", "name_ru_RU": "Жетон завоевания лютого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Maligno", "name_pt_PT": "Distintivo da Conquista do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145224, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 352389, "buy_price": 1761949, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145225, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente cruel", "name_ru_RU": "Акколада завоевания лютого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Maligno", "name_pt_PT": "Galardão da Conquista do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145225, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 353682, "buy_price": 1768414, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847999811172485, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145224, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente cruel", "name_ru_RU": "Акколада завоевания лютого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Maligno", "name_pt_PT": "Galardão da Conquista do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145226, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208911, "buy_price": 1044558, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9884999990463257, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145227, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente cruel", "name_ru_RU": "Знак завоевания лютого бойца", "name_it_IT": "Fregio della Conquista del Combattente Maligno", "name_pt_PT": "Insígnia da Conquista do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145227, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 209693, "buy_price": 1048467, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922000169754028, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145226, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente cruel", "name_ru_RU": "Знак завоевания лютого бойца", "name_it_IT": "Fregio della Conquista del Combattente Maligno", "name_pt_PT": "Insígnia da Conquista do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145228, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 210475, "buy_price": 1052377, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9958999752998352, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145229, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente cruel", "name_ru_RU": "Жетон господства лютого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Maligno", "name_pt_PT": "Distintivo da Dominância do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145229, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211236, "buy_price": 1056181, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994999766349792, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145228, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente cruel", "name_ru_RU": "Жетон господства лютого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Maligno", "name_pt_PT": "Distintivo da Dominância do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145230, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 360291, "buy_price": 1801455, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0032000541687012, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145231, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente cruel\r\n", "name_ru_RU": "Акколада господства лютого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Maligno", "name_pt_PT": "Galardão da Dominância do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145231, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 361619, "buy_price": 1808099, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068999528884888, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145230, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente cruel\r\n", "name_ru_RU": "Акколада господства лютого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Maligno", "name_pt_PT": "Galardão da Dominância do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145232, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1402, "buy_price": 7014, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010599970817566, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145233, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente cruel", "name_ru_RU": "Знак господства лютого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Maligno", "name_pt_PT": "Insígnia da Dominância do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145233, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1407, "buy_price": 7039, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.01419997215271, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145232, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente cruel", "name_ru_RU": "Знак господства лютого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Maligno", "name_pt_PT": "Insígnia da Dominância do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145234, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 220725, "buy_price": 1103628, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0443999767303467, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145235, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Victory", "name_ko_KR": "잔혹한 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente cruel", "name_ru_RU": "Жетон победы лютого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Maligno", "name_pt_PT": "Distintivo da Vitória do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145235, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 221507, "buy_price": 1107538, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0480999946594238, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145234, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Victory", "name_ko_KR": "잔혹한 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente cruel", "name_ru_RU": "Жетон победы лютого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Maligno", "name_pt_PT": "Distintivo da Vitória do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145236, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 341759, "buy_price": 1708797, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9516000151634216, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145237, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Victory", "name_ko_KR": "잔혹한 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente cruel", "name_ru_RU": "Акколада победы лютого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Maligno", "name_pt_PT": "Galardão da Vitória do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145237, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 343088, "buy_price": 1715441, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.955299973487854, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145236, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Victory", "name_ko_KR": "잔혹한 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente cruel", "name_ru_RU": "Акколада победы лютого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Maligno", "name_pt_PT": "Galardão da Vitória do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145238, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 202677, "buy_price": 1013385, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145239, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Victory", "name_ko_KR": "잔혹한 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente cruel", "name_ru_RU": "Знак победы лютого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Maligno", "name_pt_PT": "Insígnia da Vitória do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145239, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203458, "buy_price": 1017294, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9627000093460083, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145238, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Victory", "name_ko_KR": "잔혹한 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente cruel", "name_ru_RU": "Знак победы лютого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Maligno", "name_pt_PT": "Insígnia da Vitória do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145572, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293258, "buy_price": 1466291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0406999588012695, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145573, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Conquest", "name_ko_KR": "사나운 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador feroz", "name_ru_RU": "Жетон завоевания озлобленного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Feroce", "name_pt_PT": "Distintivo da Conquista do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145573, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294300, "buy_price": 1471504, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0443999767303467, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145572, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Conquest", "name_ko_KR": "사나운 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador feroz", "name_ru_RU": "Жетон завоевания озлобленного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Feroce", "name_pt_PT": "Distintivo da Conquista do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145574, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 506630, "buy_price": 2533151, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0480999946594238, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145575, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Conquest", "name_ko_KR": "사나운 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador feroz", "name_ru_RU": "Акколада завоевания озлобленного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Feroce", "name_pt_PT": "Galardão da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145575, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 459984, "buy_price": 2299921, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9516000151634216, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145574, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Conquest", "name_ko_KR": "사나운 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador feroz", "name_ru_RU": "Акколада завоевания озлобленного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Feroce", "name_pt_PT": "Galardão da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145576, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269193, "buy_price": 1345967, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.955299973487854, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145577, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Conquest", "name_ko_KR": "사나운 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador feroz", "name_ru_RU": "Знак завоевания озлобленного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Feroce", "name_pt_PT": "Insígnia da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145577, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270236, "buy_price": 1351180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145576, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Conquest", "name_ko_KR": "사나운 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador feroz", "name_ru_RU": "Знак завоевания озлобленного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Feroce", "name_pt_PT": "Insígnia da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145578, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271278, "buy_price": 1356393, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9627000093460083, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145579, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Dominance", "name_ko_KR": "사나운 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador feroz", "name_ru_RU": "Жетон господства озлобленного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Feroce", "name_pt_PT": "Distintivo da Dominância do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145579, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 272293, "buy_price": 1361465, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9663000106811523, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145578, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Dominance", "name_ko_KR": "사나운 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador feroz", "name_ru_RU": "Жетон господства озлобленного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Feroce", "name_pt_PT": "Distintivo da Dominância do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145580, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 468878, "buy_price": 2344392, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700000286102295, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145581, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Dominance", "name_ko_KR": "사나운 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador feroz", "name_ru_RU": "Акколада господства озлобленного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Feroce", "name_pt_PT": "Galardão da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145581, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 470666, "buy_price": 2353334, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736999869346619, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145580, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Dominance", "name_ko_KR": "사나운 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador feroz", "name_ru_RU": "Акколада господства озлобленного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Feroce", "name_pt_PT": "Galardão da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145582, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1809, "buy_price": 9045, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.977400004863739, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145583, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Dominance", "name_ko_KR": "사나운 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador feroz", "name_ru_RU": "Знак господства озлобленного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Feroce", "name_pt_PT": "Insígnia da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145583, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1815, "buy_price": 9079, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9810000061988831, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145582, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Dominance", "name_ko_KR": "사나운 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador feroz", "name_ru_RU": "Знак господства озлобленного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Feroce", "name_pt_PT": "Insígnia da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145584, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277478, "buy_price": 1387390, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847000241279602, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145585, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Victory", "name_ko_KR": "사나운 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur féroce", "name_de_DE": "Siegesabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador feroz", "name_ru_RU": "Жетон победы озлобленного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Feroce", "name_pt_PT": "Distintivo da Vitória do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145585, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 278520, "buy_price": 1392603, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883999824523926, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145584, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Victory", "name_ko_KR": "사나운 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur féroce", "name_de_DE": "Siegesabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador feroz", "name_ru_RU": "Жетон победы озлобленного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Feroce", "name_pt_PT": "Distintivo da Vitória do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145586, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 479561, "buy_price": 2397805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9921000003814697, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145587, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Victory", "name_ko_KR": "사나운 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador feroz", "name_ru_RU": "Акколада победы озлобленного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Feroce", "name_pt_PT": "Galardão da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145587, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 494110, "buy_price": 2470554, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145586, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Victory", "name_ko_KR": "사나운 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador feroz", "name_ru_RU": "Акколада победы озлобленного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Feroce", "name_pt_PT": "Galardão da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145588, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289087, "buy_price": 1445438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0259000062942505, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145589, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Victory", "name_ko_KR": "사나운 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur féroce", "name_de_DE": "Siegesinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador feroz", "name_ru_RU": "Знак победы озлобленного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Feroce", "name_pt_PT": "Insígnia da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145589, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290130, "buy_price": 1450651, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0296000242233276, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145588, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Victory", "name_ko_KR": "사나운 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur féroce", "name_de_DE": "Siegesinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador feroz", "name_ru_RU": "Знак победы озлобленного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Feroce", "name_pt_PT": "Insígnia da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145818, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293230, "buy_price": 1466150, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405999422073364, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145819, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Conquest", "name_ko_KR": "사나운 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador feroz", "name_ru_RU": "Жетон завоевания озлобленного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Feroce", "name_pt_PT": "Distintivo da Conquista do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145819, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294272, "buy_price": 1471363, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0442999601364136, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145818, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Conquest", "name_ko_KR": "사나운 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador feroz", "name_ru_RU": "Жетон завоевания озлобленного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Feroce", "name_pt_PT": "Distintivo da Conquista do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145820, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524311, "buy_price": 2621556, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0478999614715576, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145821, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Conquest", "name_ko_KR": "사나운 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador feroz", "name_ru_RU": "Акколада завоевания озлобленного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Feroce", "name_pt_PT": "Galardão da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145821, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 476078, "buy_price": 2380390, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9514999985694885, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145820, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Conquest", "name_ko_KR": "사나운 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador feroz", "name_ru_RU": "Акколада завоевания озлобленного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Feroce", "name_pt_PT": "Galardão da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145822, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269165, "buy_price": 1345826, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9552000164985657, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145823, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Conquest", "name_ko_KR": "사나운 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador feroz", "name_ru_RU": "Знак завоевания озлобленного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Feroce", "name_pt_PT": "Insígnia da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145823, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270207, "buy_price": 1351039, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145822, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Conquest", "name_ko_KR": "사나운 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador feroz", "name_ru_RU": "Знак завоевания озлобленного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Feroce", "name_pt_PT": "Insígnia da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145824, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271222, "buy_price": 1356111, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624999761581421, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145825, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Dominance", "name_ko_KR": "사나운 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador feroz", "name_ru_RU": "Жетон господства озлобленного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Feroce", "name_pt_PT": "Distintivo da Dominância do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145825, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 272264, "buy_price": 1361324, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145824, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Dominance", "name_ko_KR": "사나운 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador feroz", "name_ru_RU": "Жетон господства озлобленного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Feroce", "name_pt_PT": "Distintivo da Dominância do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145826, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 485284, "buy_price": 2426422, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145827, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Dominance", "name_ko_KR": "사나운 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador feroz", "name_ru_RU": "Акколада господства озлобленного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Feroce", "name_pt_PT": "Galardão da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145827, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 487085, "buy_price": 2435428, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9735000133514404, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145826, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Dominance", "name_ko_KR": "사나운 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador feroz", "name_ru_RU": "Акколада господства озлобленного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Feroce", "name_pt_PT": "Galardão da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145828, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1857, "buy_price": 9289, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0037000179290771, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145829, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Dominance", "name_ko_KR": "사나운 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador feroz", "name_ru_RU": "Знак господства озлобленного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Feroce", "name_pt_PT": "Insígnia da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145829, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1864, "buy_price": 9323, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0074000358581543, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145828, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Dominance", "name_ko_KR": "사나운 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador feroz", "name_ru_RU": "Знак господства озлобленного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Feroce", "name_pt_PT": "Insígnia da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145830, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284917, "buy_price": 1424586, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0111000537872314, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145831, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Victory", "name_ko_KR": "사나운 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur féroce", "name_de_DE": "Siegesabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador feroz", "name_ru_RU": "Жетон победы озлобленного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Feroce", "name_pt_PT": "Distintivo da Vitória do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145831, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285931, "buy_price": 1429658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0147000551223755, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145830, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Victory", "name_ko_KR": "사나운 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur féroce", "name_de_DE": "Siegesabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador feroz", "name_ru_RU": "Жетон победы озлобленного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Feroce", "name_pt_PT": "Distintivo da Vitória do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145832, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 509551, "buy_price": 2547755, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.018399953842163, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145833, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Victory", "name_ko_KR": "사나운 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador feroz", "name_ru_RU": "Акколада победы озлобленного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Feroce", "name_pt_PT": "Galardão da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145833, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 511402, "buy_price": 2557012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145832, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Victory", "name_ko_KR": "사나운 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador feroz", "name_ru_RU": "Акколада победы озлобленного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Feroce", "name_pt_PT": "Galardão da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145834, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289059, "buy_price": 1445297, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0257999897003174, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145835, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Victory", "name_ko_KR": "사나운 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur féroce", "name_de_DE": "Siegesinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador feroz", "name_ru_RU": "Знак победы озлобленного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Feroce", "name_pt_PT": "Insígnia da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145835, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290074, "buy_price": 1450370, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0293999910354614, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145834, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Victory", "name_ko_KR": "사나운 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur féroce", "name_de_DE": "Siegesinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador feroz", "name_ru_RU": "Знак победы озлобленного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Feroce", "name_pt_PT": "Insígnia da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146064, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 219901, "buy_price": 1099507, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405000448226929, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146065, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Conquest", "name_ko_KR": "사나운 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente feroz", "name_ru_RU": "Жетон завоевания озлобленного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Feroce", "name_pt_PT": "Distintivo da Conquista do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146065, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 220662, "buy_price": 1103311, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044100046157837, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146064, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Conquest", "name_ko_KR": "사나운 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente feroz", "name_ru_RU": "Жетон завоевания озлобленного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Feroce", "name_pt_PT": "Distintivo da Conquista do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146066, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 376308, "buy_price": 1881544, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0477999448776245, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146067, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Conquest", "name_ko_KR": "사나운 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente feroz", "name_ru_RU": "Акколада завоевания озлобленного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Feroce", "name_pt_PT": "Galardão da Conquista do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146067, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 341687, "buy_price": 1708437, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146066, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Conquest", "name_ko_KR": "사나운 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente feroz", "name_ru_RU": "Акколада завоевания озлобленного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Feroce", "name_pt_PT": "Galardão da Conquista do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146068, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 201831, "buy_price": 1009158, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549999833106995, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146069, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Conquest", "name_ko_KR": "사나운 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente feroz", "name_ru_RU": "Знак завоевания озлобленного бойца", "name_it_IT": "Fregio della Conquista del Combattente Feroce", "name_pt_PT": "Insígnia da Conquista do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146069, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208214, "buy_price": 1041070, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146068, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Conquest", "name_ko_KR": "사나운 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente feroz", "name_ru_RU": "Знак завоевания озлобленного бойца", "name_it_IT": "Fregio della Conquista del Combattente Feroce", "name_pt_PT": "Insígnia da Conquista do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146070, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208996, "buy_price": 1044980, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9889000058174133, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146071, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Dominance", "name_ko_KR": "사나운 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente feroz", "name_ru_RU": "Жетон господства озлобленного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Feroce", "name_pt_PT": "Distintivo da Dominância do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146071, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 209778, "buy_price": 1048890, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926000237464905, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146070, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Dominance", "name_ko_KR": "사나운 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente feroz", "name_ru_RU": "Жетон господства озлобленного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Feroce", "name_pt_PT": "Distintivo da Dominância do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146072, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 357777, "buy_price": 1788885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962000250816345, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146073, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Dominance", "name_ko_KR": "사나운 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente feroz", "name_ru_RU": "Акколада господства озлобленного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Feroce", "name_pt_PT": "Galardão da Dominância do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146073, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 359105, "buy_price": 1795529, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998999834060669, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146072, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Dominance", "name_ko_KR": "사나운 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente feroz", "name_ru_RU": "Акколада господства озлобленного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Feroce", "name_pt_PT": "Galardão da Dominância do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146074, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1393, "buy_price": 6966, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146075, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Dominance", "name_ko_KR": "사나운 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente feroz", "name_ru_RU": "Знак господства озлобленного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Feroce", "name_pt_PT": "Insígnia da Dominância do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146075, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1398, "buy_price": 6991, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0073000192642212, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146074, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Dominance", "name_ko_KR": "사나운 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente feroz", "name_ru_RU": "Знак господства озлобленного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Feroce", "name_pt_PT": "Insígnia da Dominância do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146076, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 213645, "buy_price": 1068228, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0109000205993652, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146077, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Victory", "name_ko_KR": "사나운 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant féroce", "name_de_DE": "Siegesabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente feroz", "name_ru_RU": "Жетон победы озлобленного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Feroce", "name_pt_PT": "Distintivo da Vitória do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146077, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214427, "buy_price": 1072138, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0146000385284424, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146076, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Victory", "name_ko_KR": "사나운 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant féroce", "name_de_DE": "Siegesabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente feroz", "name_ru_RU": "Жетон победы озлобленного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Feroce", "name_pt_PT": "Distintivo da Vitória do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146078, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 365714, "buy_price": 1828570, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146079, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Victory", "name_ko_KR": "사나운 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente feroz", "name_ru_RU": "Акколада победы озлобленного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Feroce", "name_pt_PT": "Galardão da Vitória do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146079, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367042, "buy_price": 1835214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219999551773071, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146078, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Victory", "name_ko_KR": "사나운 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente feroz", "name_ru_RU": "Акколада победы озлобленного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Feroce", "name_pt_PT": "Galardão da Vitória do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146080, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 216752, "buy_price": 1083762, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255999565124512, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146081, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Victory", "name_ko_KR": "사나운 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant féroce", "name_de_DE": "Siegesinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente feroz", "name_ru_RU": "Знак победы озлобленного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Feroce", "name_pt_PT": "Insígnia da Vitória do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146081, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217534, "buy_price": 1087671, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0292999744415283, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146080, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Victory", "name_ko_KR": "사나운 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant féroce", "name_de_DE": "Siegesinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente feroz", "name_ru_RU": "Знак победы озлобленного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Feroce", "name_pt_PT": "Insígnia da Vitória do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 147002, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of the Rising Tide", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294357, "buy_price": 1471786, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Charm of the Rising Tide", "name_ko_KR": "일어나는 물결의 부적", "name_fr_FR": "Charme de la marée montante", "name_de_DE": "Talisman der steigenden Flut", "name_zh_CN": "涨潮符咒", "name_es_ES": "Talismán de marea creciente", "name_ru_RU": "Талисман поднимающегося прилива", "name_it_IT": "Talismano delle Marea Crescente", "name_pt_PT": "Patuá da Maré Alta", "on_use": true, "id_encounter": 1856, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147003, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Barbaric Mindslaver", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295399, "buy_price": 1476999, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Barbaric Mindslaver", "name_ko_KR": "야만적인 정신지배자", "name_fr_FR": "Charme-esprit barbare", "name_de_DE": "Barbarischer Gedankenknechter", "name_zh_CN": "野蛮驭灵器", "name_es_ES": "Doblegamentes barbárico", "name_ru_RU": "Варварский поработитель разума", "name_it_IT": "Schiavista Barbarico", "name_pt_PT": "Mentecaptor Bárbaro", "on_use": false, "id_encounter": 1867, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147004, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sea Star of the Depthmother", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 268235, "buy_price": 1341176, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9519000053405762, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Sea Star of the Depthmother", "name_ko_KR": "심연의 여왕의 불가사리", "name_fr_FR": "Astérie de la Mère des profondeurs", "name_de_DE": "Meeresstern der Tiefenmutter", "name_zh_CN": "深海主母的海星", "name_es_ES": "Estrella de mar de La Madre de las Profundidades", "name_ru_RU": "Морская звезда Матери Глубин", "name_it_IT": "Stella Marina della Madre delle Profondità", "name_pt_PT": "Estrela Marinha da Mãe do Abismo", "on_use": false, "id_encounter": 1861, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147005, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chalice of Moonlight", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269277, "buy_price": 1346389, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9556000232696533, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Chalice of Moonlight", "name_ko_KR": "달빛의 성배", "name_fr_FR": "Calice du clair de lune", "name_de_DE": "Kelch des Mondlichts", "name_zh_CN": "月光圣杯", "name_es_ES": "Cáliz de luz de luna", "name_ru_RU": "Чаша лунного света", "name_it_IT": "Calice del Chiaro di Luna", "name_pt_PT": "Cálice do Luar", "on_use": false, "id_encounter": 1903, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147006, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Archive of Faith", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270292, "buy_price": 1351462, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592000246047974, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Archive of Faith", "name_ko_KR": "신념의 기록", "name_fr_FR": "Archive de foi", "name_de_DE": "Archiv des Glaubens", "name_zh_CN": "信仰档案", "name_es_ES": "Archivo de fe", "name_ru_RU": "Архив веры", "name_it_IT": "Archivio della Fede", "name_pt_PT": "Arquivo da Fé", "on_use": true, "id_encounter": 1873, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147007, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Deceiver's Grand Design", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271335, "buy_price": 1356675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9628999829292297, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "The Deceiver's Grand Design", "name_ko_KR": "기만자의 대계", "name_fr_FR": "Grand dessein du Trompeur", "name_de_DE": "Des Betrügers großer Plan", "name_zh_CN": "欺诈者的伟大蓝图", "name_es_ES": "Gran plan del Impostor", "name_ru_RU": "Великое творение Искусителя", "name_it_IT": "Grande Piano dell'Ingannatore", "name_pt_PT": "Grã Marca do Enganador", "on_use": true, "id_encounter": 1898, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147009, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infernal Cinders", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273420, "buy_price": 1367101, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.970300018787384, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Infernal Cinders", "name_ko_KR": "지옥불 잿불", "name_fr_FR": "Cendres infernales", "name_de_DE": "Höllenasche", "name_zh_CN": "地狱火余烬", "name_es_ES": "Cenizas infernales", "name_ru_RU": "Инфернальные угли", "name_it_IT": "Braci Infernali", "name_pt_PT": "Cinzas Infernais", "on_use": false, "id_encounter": 1862, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147010, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cradle of Anguish", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274434, "buy_price": 1372173, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739000201225281, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cradle of Anguish", "name_ko_KR": "고통의 요람", "name_fr_FR": "Berceau d'angoisse", "name_de_DE": "Wiege des Kummers", "name_zh_CN": "痛苦摇篮", "name_es_ES": "Cuna de angustia", "name_ru_RU": "Колыбель страданий", "name_it_IT": "Culla dell'Angoscia", "name_pt_PT": "Germe da Angústia", "on_use": false, "id_encounter": 1867, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147011, "race_mask": 18446744073709551615, "desc": "Once more, with eeling.", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Ceaseless Toxins", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275477, "buy_price": 1377386, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Ceaseless Toxins", "name_ko_KR": "멎지 않는 독이 든 병", "name_fr_FR": "Fiole de toxines persistantes", "name_de_DE": "Phiole des unablässigen Toxins", "name_zh_CN": "无尽毒药之瓶", "name_es_ES": "Vial de toxinas incesantes", "name_ru_RU": "Фиал бесконечной отравы", "name_it_IT": "Fiala di Tossine Incessanti", "name_pt_PT": "Ampola de Toxinas Incessantes", "on_use": true, "id_encounter": 1861, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147012, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Umbral Moonglaives", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276519, "buy_price": 1382599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9812999963760376, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Umbral Moonglaives", "name_ko_KR": "암영의 반월도", "name_fr_FR": "Glaives lunaires ombreux", "name_de_DE": "Umbralmondgleven", "name_zh_CN": "阴影月刃", "name_es_ES": "Gujas lunares umbrías", "name_ru_RU": "Лунные глефы затмения", "name_it_IT": "Lame Lunari Ombrose", "name_pt_PT": "Glaives Lunares do Umbral", "on_use": true, "id_encounter": 1903, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147015, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Engine of Eradication", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279619, "buy_price": 1398098, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Engine of Eradication", "name_ko_KR": "박멸의 기계", "name_fr_FR": "Vecteur d'éradication", "name_de_DE": "Auslöschungsmaschine", "name_zh_CN": "灭绝引擎", "name_es_ES": "Dispositivo de erradicación", "name_ru_RU": "Двигатель искоренения", "name_it_IT": "Congegno dell'Estirpazione", "name_pt_PT": "Engenho da Erradicação", "on_use": false, "id_encounter": 1897, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terror From Below", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1843, "buy_price": 9217, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Terror From Below", "name_ko_KR": "아래에서 덮치는 공포", "name_fr_FR": "Terreur des profondeurs", "name_de_DE": "Schrecken aus der Tiefe", "name_zh_CN": "地底恐惧", "name_es_ES": "Terror de las profundidades", "name_ru_RU": "Ужас из глубин", "name_it_IT": "Terrore dagli Abissi", "name_pt_PT": "O Horror que Vem de Baixo", "on_use": false, "id_encounter": 1861, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147017, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tarnished Sentinel Medallion", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1850, "buy_price": 9251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9995999932289124, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Tarnished Sentinel Medallion", "name_ko_KR": "빛바랜 파수꾼 메달", "name_fr_FR": "Médaillon de sentinelle terni", "name_de_DE": "Angelaufenes Schildwachenmedaillon", "name_zh_CN": "生锈的哨兵奖章", "name_es_ES": "Medallón de centinela deslustrado", "name_ru_RU": "Потускневший медальон часового", "name_it_IT": "Medaglione Annerito della Sentinella", "name_pt_PT": "Medalhão da Sentinela Maculada", "on_use": true, "id_encounter": 1903, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Thurible", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1906, "buy_price": 9530, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298000574111938, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Spectral Thurible", "name_ko_KR": "유령의 훈로", "name_fr_FR": "Encensoir spectral", "name_de_DE": "Spektrales Weihrauchfass", "name_zh_CN": "幽魂香炉", "name_es_ES": "Turíbulo espectral", "name_ru_RU": "Призрачное кадило", "name_it_IT": "Turibolo Spettrale", "name_pt_PT": "Turíbulo Espectral", "on_use": false, "id_encounter": 1896, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147019, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Unraveling Sanity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1913, "buy_price": 9565, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Tome of Unraveling Sanity", "name_ko_KR": "해체되는 이성의 고서", "name_fr_FR": "Tome de la raison déclinante", "name_de_DE": "Foliant des zerrinnenden Verstands", "name_zh_CN": "醒神宝典", "name_es_ES": "Tomo de cordura desenredada", "name_ru_RU": "Фолиант слабеющего рассудка", "name_it_IT": "Tomo della Sanità Svanente", "name_pt_PT": "Tomo da Sanidade Deslindante", "on_use": true, "id_encounter": 1898, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147022, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Feverish Carapace", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294329, "buy_price": 1471645, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0444999933242798, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Feverish Carapace", "name_ko_KR": "열병의 등껍질", "name_fr_FR": "Carapace fiévreuse", "name_de_DE": "Fiebriger Rückenpanzer", "name_zh_CN": "狂热甲壳", "name_es_ES": "Caparazón febril", "name_ru_RU": "Лихорадочный панцирь", "name_it_IT": "Carapace Febbrile", "name_pt_PT": "Carapaça Febril", "on_use": false, "id_encounter": 1862, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leviathan's Hunger", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295371, "buy_price": 1476858, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048200011253357, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Leviathan's Hunger", "name_ko_KR": "거대괴수의 굶주림", "name_fr_FR": "Faim du Léviathan", "name_de_DE": "Hunger des Leviathans", "name_zh_CN": "巨兽之饥", "name_es_ES": "Hambre de leviatán", "name_ru_RU": "Голод левиафана", "name_it_IT": "Fame del Leviatano", "name_pt_PT": "Fome do Leviatã", "on_use": true, "id_encounter": 1861, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147024, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reliquary of the Damned", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 268207, "buy_price": 1341035, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9517999887466431, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Reliquary of the Damned", "name_ko_KR": "저주받은 자의 성물함", "name_fr_FR": "Reliquaire des damnés", "name_de_DE": "Reliquiar der Verdammten", "name_zh_CN": "诅咒者的骨匣", "name_es_ES": "Relicario de los malditos", "name_ru_RU": "Реликварий проклятых", "name_it_IT": "Reliquiario del Dannato", "name_pt_PT": "Relicário dos Malditos", "on_use": true, "id_encounter": 1896, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147025, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recompiled Guardian Module", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269221, "buy_price": 1346108, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Recompiled Guardian Module", "name_ko_KR": "다시 컴파일한 수호자 모듈", "name_fr_FR": "Module gardien recompilé", "name_de_DE": "Rekonfiguriertes Wächtermodul", "name_zh_CN": "重新编译的守护者模块", "name_es_ES": "Módulo de guardián recopilado", "name_ru_RU": "Перекомпилированный модуль стража", "name_it_IT": "Modulo del Guardiano Ricompilato", "name_pt_PT": "Módulo do Guardião Recompilado", "on_use": false, "id_encounter": 1897, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shifting Cosmic Sliver", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270264, "buy_price": 1351321, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9591000080108643, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Shifting Cosmic Sliver", "name_ko_KR": "아른거리는 우주 파편", "name_fr_FR": "Esquille cosmique changeante", "name_de_DE": "Unbeständiger kosmischer Splitter", "name_zh_CN": "变幻宇宙裂片", "name_es_ES": "Esquirla cósmica cambiante", "name_ru_RU": "Переливчатый космический осколок", "name_it_IT": "Scaglia Cosmica di Fase", "name_pt_PT": "Lasca Cósmica Cambiante", "on_use": true, "id_encounter": 1898, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147275, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beguiler's Talisman", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67705, "buy_price": 338526, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 0.9965000152587891, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Beguiler's Talisman", "name_ko_KR": "현혹의 부적", "name_fr_FR": "Talisman de l'endormeur", "name_de_DE": "Talisman des Blenders", "name_zh_CN": "欺诈者的护符", "name_es_ES": "Talismán de cautivador", "name_ru_RU": "Талисман обманщика", "name_it_IT": "Talismano dell'Impostore", "name_pt_PT": "Talismã do Encantador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 147276, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spellbinder's Seal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67956, "buy_price": 339783, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.0002000331878662, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Spellbinder's Seal", "name_ko_KR": "역술사의 인장", "name_fr_FR": "Sceau du lieur de sort", "name_de_DE": "Siegel des Zauberbinders", "name_zh_CN": "缚法者之印", "name_es_ES": "Sello de vinculahechizos", "name_ru_RU": "Печать чароплета", "name_it_IT": "Sigillo del Vincolamagie", "name_pt_PT": "Selo do Mesmerizador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 147278, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stalwart Crest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68452, "buy_price": 342263, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.0075000524520874, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stalwart Crest", "name_ko_KR": "옹골진 문장", "name_fr_FR": "Ecu infrangible", "name_de_DE": "Wappen der Tapferen", "name_zh_CN": "坚定纹章", "name_es_ES": "Blasón de adepto", "name_ru_RU": "Стойкий герб", "name_it_IT": "Amuleto Animoso", "name_pt_PT": "Brasão Impávido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148105, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279704, "buy_price": 1398520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926000237464905, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148106, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador fiero", "name_ru_RU": "Жетон завоевания неудержимого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Violento", "name_pt_PT": "Distintivo da Conquista do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148106, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280718, "buy_price": 1403593, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962000250816345, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148105, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador fiero", "name_ru_RU": "Жетон завоевания неудержимого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Violento", "name_pt_PT": "Distintivo da Conquista do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148107, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 743435, "buy_price": 3717177, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998999834060669, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148108, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador fiero", "name_ru_RU": "Акколада завоевания неудержимого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Violento", "name_pt_PT": "Galardão da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148108, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 746186, "buy_price": 3730932, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148107, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador fiero", "name_ru_RU": "Акколада завоевания неудержимого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Violento", "name_pt_PT": "Galardão da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148109, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283818, "buy_price": 1419091, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007200002670288, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148110, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador fiero", "name_ru_RU": "Знак завоевания неудержимого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Violento", "name_pt_PT": "Insígnia da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148110, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284860, "buy_price": 1424304, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0109000205993652, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148109, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador fiero", "name_ru_RU": "Знак завоевания неудержимого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Violento", "name_pt_PT": "Insígnia da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148111, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293370, "buy_price": 1466854, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041100025177002, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148112, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador fiero", "name_ru_RU": "Жетон господства неудержимого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Violento", "name_pt_PT": "Distintivo da Dominância do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148112, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294413, "buy_price": 1472067, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044800043106079, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148111, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador fiero", "name_ru_RU": "Жетон господства неудержимого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Violento", "name_pt_PT": "Distintivo da Dominância do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148113, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 779495, "buy_price": 3897478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0484000444412231, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148114, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador fiero", "name_ru_RU": "Акколада господства неудержимого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Violento", "name_pt_PT": "Galardão da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148114, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 707821, "buy_price": 3539106, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520000219345093, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148113, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador fiero", "name_ru_RU": "Акколада господства неудержимого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Violento", "name_pt_PT": "Galardão da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148115, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1769, "buy_price": 8845, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9556999802589417, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148116, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador fiero", "name_ru_RU": "Знак господства неудержимого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Violento", "name_pt_PT": "Insígnia da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148116, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1775, "buy_price": 8879, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9593999981880188, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148115, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador fiero", "name_ru_RU": "Знак господства неудержимого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Violento", "name_pt_PT": "Insígnia da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148117, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271363, "buy_price": 1356816, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9629999995231628, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148118, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Victory", "name_ko_KR": "맹렬한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador fiero", "name_ru_RU": "Жетон победы неудержимого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Violento", "name_pt_PT": "Distintivo da Vitória do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148118, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 272405, "buy_price": 1362029, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.96670001745224, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148117, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Victory", "name_ko_KR": "맹렬한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador fiero", "name_ru_RU": "Жетон победы неудержимого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Violento", "name_pt_PT": "Distintivo da Vitória do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148119, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 721501, "buy_price": 3607509, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9703999757766724, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148120, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Victory", "name_ko_KR": "맹렬한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador fiero", "name_ru_RU": "Акколада победы неудержимого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Violento", "name_pt_PT": "Galardão da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148120, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 724252, "buy_price": 3621264, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9740999937057495, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148119, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Victory", "name_ko_KR": "맹렬한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador fiero", "name_ru_RU": "Акколада победы неудержимого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Violento", "name_pt_PT": "Galardão da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148121, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275505, "buy_price": 1377527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9776999950408936, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148122, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Victory", "name_ko_KR": "맹렬한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador fiero", "name_ru_RU": "Знак победы неудержимого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Violento", "name_pt_PT": "Insígnia da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148122, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276548, "buy_price": 1382740, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9814000129699707, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148121, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Victory", "name_ko_KR": "맹렬한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador fiero", "name_ru_RU": "Знак победы неудержимого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Violento", "name_pt_PT": "Insígnia da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148351, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279647, "buy_price": 1398239, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9923999905586243, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148352, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador fiero", "name_ru_RU": "Жетон завоевания неудержимого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Violento", "name_pt_PT": "Distintivo da Conquista do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148352, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288157, "buy_price": 1440789, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226000547409058, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148351, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador fiero", "name_ru_RU": "Жетон завоевания неудержимого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Violento", "name_pt_PT": "Distintivo da Conquista do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148353, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 763064, "buy_price": 3815320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262999534606934, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148354, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador fiero", "name_ru_RU": "Акколада завоевания неудержимого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Violento", "name_pt_PT": "Galardão da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148354, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 765740, "buy_price": 3828703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148353, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador fiero", "name_ru_RU": "Акколада завоевания неудержимого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Violento", "name_pt_PT": "Galardão da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148355, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 291257, "buy_price": 1456287, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148356, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador fiero", "name_ru_RU": "Знак завоевания неудержимого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Violento", "name_pt_PT": "Insígnia da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148356, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292300, "buy_price": 1461500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0372999906539917, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148355, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador fiero", "name_ru_RU": "Знак завоевания неудержимого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Violento", "name_pt_PT": "Insígnia da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148357, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293342, "buy_price": 1466713, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0410000085830688, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148358, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador fiero", "name_ru_RU": "Жетон господства неудержимого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Violento", "name_pt_PT": "Distintivo da Dominância do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148358, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294357, "buy_price": 1471786, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148357, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador fiero", "name_ru_RU": "Жетон господства неудержимого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Violento", "name_pt_PT": "Distintivo da Dominância do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148359, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 779421, "buy_price": 3897106, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148360, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador fiero", "name_ru_RU": "Акколада господства неудержимого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Violento", "name_pt_PT": "Galardão da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148360, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 707747, "buy_price": 3538735, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9519000053405762, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148359, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador fiero", "name_ru_RU": "Акколада господства неудержимого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Violento", "name_pt_PT": "Galardão da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148361, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1768, "buy_price": 8844, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9556000232696533, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148362, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador fiero", "name_ru_RU": "Знак господства неудержимого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Violento", "name_pt_PT": "Insígnia da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148362, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1775, "buy_price": 8877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592000246047974, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148361, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador fiero", "name_ru_RU": "Знак господства неудержимого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Violento", "name_pt_PT": "Insígnia da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148363, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271335, "buy_price": 1356675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9628999829292297, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148364, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Victory", "name_ko_KR": "맹렬한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador fiero", "name_ru_RU": "Жетон победы неудержимого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Violento", "name_pt_PT": "Distintivo da Vitória do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148364, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 272377, "buy_price": 1361888, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9666000008583069, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148363, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Victory", "name_ko_KR": "맹렬한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador fiero", "name_ru_RU": "Жетон победы неудержимого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Violento", "name_pt_PT": "Distintivo da Vitória do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148365, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 721353, "buy_price": 3606766, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9702000021934509, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148366, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Victory", "name_ko_KR": "맹렬한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador fiero", "name_ru_RU": "Акколада победы неудержимого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Violento", "name_pt_PT": "Galardão da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148366, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 724104, "buy_price": 3620521, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739000201225281, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148365, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Victory", "name_ko_KR": "맹렬한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador fiero", "name_ru_RU": "Акколада победы неудержимого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Violento", "name_pt_PT": "Galardão da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148367, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275477, "buy_price": 1377386, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148368, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Victory", "name_ko_KR": "맹렬한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador fiero", "name_ru_RU": "Знак победы неудержимого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Violento", "name_pt_PT": "Insígnia da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148368, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283987, "buy_price": 1419936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0077999830245972, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148367, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Victory", "name_ko_KR": "맹렬한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador fiero", "name_ru_RU": "Знак победы неудержимого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Violento", "name_pt_PT": "Insígnia da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148598, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288129, "buy_price": 1440648, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148599, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Conquest", "name_ko_KR": "군림하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador dominante", "name_ru_RU": "Жетон завоевания господствующего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Dominante", "name_pt_PT": "Distintivo da Conquista do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148599, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289144, "buy_price": 1445720, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0261000394821167, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148598, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Conquest", "name_ko_KR": "군림하는 검투사의 정복 휘장", "name_fr_FR": "Écusson de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador dominante", "name_ru_RU": "Жетон завоевания господствующего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Dominante", "name_pt_PT": "Distintivo da Conquista do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148600, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 497784, "buy_price": 2488922, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298000574111938, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148601, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Conquest", "name_ko_KR": "군림하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador dominante", "name_ru_RU": "Акколада завоевания господствующего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Dominante", "name_pt_PT": "Galardão da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148601, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499573, "buy_price": 2497865, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148600, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Conquest", "name_ko_KR": "군림하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador dominante", "name_ru_RU": "Акколада завоевания господствующего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Dominante", "name_pt_PT": "Galardão da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148602, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292271, "buy_price": 1461359, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148603, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Conquest", "name_ko_KR": "군림하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador dominante", "name_ru_RU": "Знак завоевания господствующего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Dominante", "name_pt_PT": "Insígnia da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148603, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293286, "buy_price": 1466432, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0407999753952026, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148602, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Conquest", "name_ko_KR": "군림하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador dominante", "name_ru_RU": "Знак завоевания господствующего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Dominante", "name_pt_PT": "Insígnia da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148604, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294329, "buy_price": 1471645, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0444999933242798, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148605, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Dominance", "name_ko_KR": "군림하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador dominante", "name_ru_RU": "Жетон господства господствующего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Dominante", "name_pt_PT": "Distintivo da Dominância do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148605, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295371, "buy_price": 1476858, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048200011253357, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148604, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Dominance", "name_ko_KR": "군림하는 검투사의 지배 휘장", "name_fr_FR": "Écusson de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador dominante", "name_ru_RU": "Жетон господства господствующего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Dominante", "name_pt_PT": "Distintivo da Dominância do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148606, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 460032, "buy_price": 2300162, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95169997215271, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148607, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Dominance", "name_ko_KR": "군림하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador dominante", "name_ru_RU": "Акколада господства господствующего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Dominante", "name_pt_PT": "Galardão da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148607, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 461821, "buy_price": 2309105, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148606, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Dominance", "name_ko_KR": "군림하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador dominante", "name_ru_RU": "Акколада господства господствующего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Dominante", "name_pt_PT": "Galardão da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148608, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1775, "buy_price": 8876, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9591000080108643, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148609, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Dominance", "name_ko_KR": "군림하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador dominante", "name_ru_RU": "Знак господства господствующего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Dominante", "name_pt_PT": "Insígnia da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148609, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1831, "buy_price": 9155, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989300012588501, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148608, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Dominance", "name_ko_KR": "군림하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador dominante", "name_ru_RU": "Знак господства господствующего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Dominante", "name_pt_PT": "Insígnia da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148610, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279788, "buy_price": 1398943, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.992900013923645, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148611, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Victory", "name_ko_KR": "군림하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador dominante", "name_ru_RU": "Жетон победы господствующего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Dominante", "name_pt_PT": "Distintivo da Vitória do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148611, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280831, "buy_price": 1404156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148610, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Victory", "name_ko_KR": "군림하는 검투사의 승리 휘장", "name_fr_FR": "Écusson de victoire du gladiateur autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador dominante", "name_ru_RU": "Жетон победы господствующего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Dominante", "name_pt_PT": "Distintivo da Vitória do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148612, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483524, "buy_price": 2417624, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003000497817993, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148613, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Victory", "name_ko_KR": "군림하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador dominante", "name_ru_RU": "Акколада победы господствующего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Dominante", "name_pt_PT": "Galardão da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148613, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 485313, "buy_price": 2426566, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148612, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Victory", "name_ko_KR": "군림하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador dominante", "name_ru_RU": "Акколада победы господствующего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Dominante", "name_pt_PT": "Galardão da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148614, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283930, "buy_price": 1419654, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007599949836731, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148615, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Victory", "name_ko_KR": "군림하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur autoritaire", "name_de_DE": "Siegesinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador dominante", "name_ru_RU": "Знак победы господствующего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Dominante", "name_pt_PT": "Insígnia da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148615, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284973, "buy_price": 1424868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.011299967765808, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148614, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Victory", "name_ko_KR": "군림하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur autoritaire", "name_de_DE": "Siegesinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador dominante", "name_ru_RU": "Знак победы господствующего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Dominante", "name_pt_PT": "Insígnia da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148844, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288073, "buy_price": 1440366, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0223000049591064, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148845, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Conquest", "name_ko_KR": "군림하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador dominante", "name_ru_RU": "Жетон завоевания господствующего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Dominante", "name_pt_PT": "Distintivo da Conquista do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148845, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289115, "buy_price": 1445579, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0260000228881836, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148844, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Conquest", "name_ko_KR": "군림하는 검투사의 정복 휘장", "name_fr_FR": "Écusson de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador dominante", "name_ru_RU": "Жетон завоевания господствующего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Dominante", "name_pt_PT": "Distintivo da Conquista do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148846, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 515205, "buy_price": 2576025, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0297000408172607, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148847, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Conquest", "name_ko_KR": "군림하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador dominante", "name_ru_RU": "Акколада завоевания господствующего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Dominante", "name_pt_PT": "Galardão da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148847, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 517006, "buy_price": 2585031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0333000421524048, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148846, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Conquest", "name_ko_KR": "군림하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador dominante", "name_ru_RU": "Акколада завоевания господствующего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Dominante", "name_pt_PT": "Galardão da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148848, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292215, "buy_price": 1461078, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0369999408721924, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148849, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Conquest", "name_ko_KR": "군림하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador dominante", "name_ru_RU": "Знак завоевания господствующего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Dominante", "name_pt_PT": "Insígnia da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148849, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293258, "buy_price": 1466291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0406999588012695, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148848, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Conquest", "name_ko_KR": "군림하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador dominante", "name_ru_RU": "Знак завоевания господствующего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Dominante", "name_pt_PT": "Insígnia da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148850, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273561, "buy_price": 1367805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.97079998254776, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148851, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Dominance", "name_ko_KR": "군림하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador dominante", "name_ru_RU": "Жетон господства господствующего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Dominante", "name_pt_PT": "Distintivo da Dominância do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148851, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274575, "buy_price": 1372877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.974399983882904, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148850, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Dominance", "name_ko_KR": "군림하는 검투사의 지배 휘장", "name_fr_FR": "Écusson de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador dominante", "name_ru_RU": "Жетон господства господствующего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Dominante", "name_pt_PT": "Distintivo da Dominância do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148852, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 489387, "buy_price": 2446936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9781000018119812, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148853, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Dominance", "name_ko_KR": "군림하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador dominante", "name_ru_RU": "Акколада господства господствующего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Dominante", "name_pt_PT": "Galardão da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148853, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 491238, "buy_price": 2456192, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818000197410583, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148852, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Dominance", "name_ko_KR": "군림하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador dominante", "name_ru_RU": "Акколада господства господствующего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Dominante", "name_pt_PT": "Galardão da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148854, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1824, "buy_price": 9120, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9854999780654907, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148855, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Dominance", "name_ko_KR": "군림하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador dominante", "name_ru_RU": "Знак господства господствующего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Dominante", "name_pt_PT": "Insígnia da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148855, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1830, "buy_price": 9154, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9890999794006348, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148854, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Dominance", "name_ko_KR": "군림하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador dominante", "name_ru_RU": "Знак господства господствующего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Dominante", "name_pt_PT": "Insígnia da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148856, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279760, "buy_price": 1398802, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9927999973297119, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148857, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Victory", "name_ko_KR": "군림하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador dominante", "name_ru_RU": "Жетон победы господствующего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Dominante", "name_pt_PT": "Distintivo da Vitória do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148857, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280803, "buy_price": 1404015, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965000152587891, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148856, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Victory", "name_ko_KR": "군림하는 검투사의 승리 휘장", "name_fr_FR": "Écusson de victoire du gladiateur autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador dominante", "name_ru_RU": "Жетон победы господствующего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Dominante", "name_pt_PT": "Distintivo da Vitória do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148858, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500444, "buy_price": 2502224, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0002000331878662, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148859, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Victory", "name_ko_KR": "군림하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador dominante", "name_ru_RU": "Акколада победы господствующего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Dominante", "name_pt_PT": "Galardão da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148859, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 502246, "buy_price": 2511230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0038000345230103, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148858, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Victory", "name_ko_KR": "군림하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador dominante", "name_ru_RU": "Акколада победы господствующего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Dominante", "name_pt_PT": "Galardão da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148860, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283902, "buy_price": 1419514, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0075000524520874, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148861, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Victory", "name_ko_KR": "군림하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur autoritaire", "name_de_DE": "Siegesinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador dominante", "name_ru_RU": "Знак победы господствующего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Dominante", "name_pt_PT": "Insígnia da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148861, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284945, "buy_price": 1424727, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.011199951171875, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148860, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Victory", "name_ko_KR": "군림하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur autoritaire", "name_de_DE": "Siegesinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador dominante", "name_ru_RU": "Знак победы господствующего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Dominante", "name_pt_PT": "Insígnia da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149090, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92624, "buy_price": 463124, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149091, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Conquest", "name_ko_KR": "악마적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador demoníaco", "name_ru_RU": "Жетон завоевания демонического гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Conquista do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149091, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86290, "buy_price": 431454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9523000121116638, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149090, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Conquest", "name_ko_KR": "악마적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador demoníaco", "name_ru_RU": "Жетон завоевания демонического гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Conquista do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149092, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86617, "buy_price": 433085, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559000134468079, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149093, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Conquest", "name_ko_KR": "악마적인 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador demoníaco", "name_ru_RU": "Акколада завоевания демонического гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149093, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86952, "buy_price": 434762, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595999717712402, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149092, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Conquest", "name_ko_KR": "악마적인 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador demoníaco", "name_ru_RU": "Акколада завоевания демонического гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149094, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87287, "buy_price": 436438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149095, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Conquest", "name_ko_KR": "악마적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador demoníaco", "name_ru_RU": "Знак завоевания демонического гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149095, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87622, "buy_price": 438114, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9670000076293945, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149094, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Conquest", "name_ko_KR": "악마적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador demoníaco", "name_ru_RU": "Знак завоевания демонического гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149096, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87949, "buy_price": 439745, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9706000089645386, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149097, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Dominance", "name_ko_KR": "악마적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador demoníaco", "name_ru_RU": "Жетон господства демонического гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Dominância do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149097, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88284, "buy_price": 441422, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9743000268936157, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149096, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Dominance", "name_ko_KR": "악마적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador demoníaco", "name_ru_RU": "Жетон господства демонического гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Dominância do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149098, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88619, "buy_price": 443098, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9779999852180481, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149099, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Dominance", "name_ko_KR": "악마적인 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador demoníaco", "name_ru_RU": "Акколада господства демонического гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149099, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88954, "buy_price": 444774, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9817000031471252, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149098, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Dominance", "name_ko_KR": "악마적인 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador demoníaco", "name_ru_RU": "Акколада господства демонического гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149100, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1823, "buy_price": 9118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9853000044822693, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149101, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Dominance", "name_ko_KR": "악마적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador demoníaco", "name_ru_RU": "Знак господства демонического гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149101, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1830, "buy_price": 9153, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9890000224113464, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149100, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Dominance", "name_ko_KR": "악마적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador demoníaco", "name_ru_RU": "Знак господства демонического гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149102, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89951, "buy_price": 449758, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926999807357788, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149103, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Victory", "name_ko_KR": "악마적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador demoníaco", "name_ru_RU": "Жетон победы демонического гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Vitória do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149103, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90277, "buy_price": 451389, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962999820709229, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149102, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Victory", "name_ko_KR": "악마적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador demoníaco", "name_ru_RU": "Жетон победы демонического гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Vitória do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149104, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90613, "buy_price": 453066, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149105, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Victory", "name_ko_KR": "악마적인 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador demoníaco", "name_ru_RU": "Акколада победы демонического гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149105, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90948, "buy_price": 454742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0037000179290771, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149104, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Victory", "name_ko_KR": "악마적인 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador demoníaco", "name_ru_RU": "Акколада победы демонического гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149106, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91283, "buy_price": 456418, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0074000358581543, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149107, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Victory", "name_ko_KR": "악마적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador demoníaco", "name_ru_RU": "Знак победы демонического гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149107, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 94011, "buy_price": 470056, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037500023841858, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149106, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Victory", "name_ko_KR": "악마적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador demoníaco", "name_ru_RU": "Знак победы демонического гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149336, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 95017, "buy_price": 475085, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0485999584197998, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149337, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Conquest", "name_ko_KR": "악마적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador demoníaco", "name_ru_RU": "Жетон завоевания демонического гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Conquista do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149337, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86272, "buy_price": 431364, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520999789237976, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149336, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Conquest", "name_ko_KR": "악마적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador demoníaco", "name_ru_RU": "Жетон завоевания демонического гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Conquista do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149338, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86608, "buy_price": 433040, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149339, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Conquest", "name_ko_KR": "악마적인 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador demoníaco", "name_ru_RU": "Акколада завоевания демонического гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149339, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86943, "buy_price": 434716, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595000147819519, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149338, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Conquest", "name_ko_KR": "악마적인 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador demoníaco", "name_ru_RU": "Акколада завоевания демонического гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149340, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87278, "buy_price": 436393, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9631999731063843, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149341, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Conquest", "name_ko_KR": "악마적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador demoníaco", "name_ru_RU": "Знак завоевания демонического гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149341, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87604, "buy_price": 438024, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9667999744415283, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149340, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Conquest", "name_ko_KR": "악마적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador demoníaco", "name_ru_RU": "Знак завоевания демонического гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149342, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87940, "buy_price": 439700, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149343, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Dominance", "name_ko_KR": "악마적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador demoníaco", "name_ru_RU": "Жетон господства демонического гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Dominância do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149343, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88275, "buy_price": 441376, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9742000102996826, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149342, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Dominance", "name_ko_KR": "악마적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador demoníaco", "name_ru_RU": "Жетон господства демонического гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Dominância do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149344, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88601, "buy_price": 443007, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149345, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Dominance", "name_ko_KR": "악마적인 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador demoníaco", "name_ru_RU": "Акколада господства демонического гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149345, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88936, "buy_price": 444684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9815000295639038, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149344, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Dominance", "name_ko_KR": "악마적인 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador demoníaco", "name_ru_RU": "Акколада господства демонического гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149346, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1823, "buy_price": 9118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149347, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Dominance", "name_ko_KR": "악마적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador demoníaco", "name_ru_RU": "Знак господства демонического гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149347, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1830, "buy_price": 9152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9889000058174133, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149346, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Dominance", "name_ko_KR": "악마적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador demoníaco", "name_ru_RU": "Знак господства демонического гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149348, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92334, "buy_price": 461674, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149349, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Victory", "name_ko_KR": "악마적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador demoníaco", "name_ru_RU": "Жетон победы демонического гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Vitória do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149349, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92670, "buy_price": 463350, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149348, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Victory", "name_ko_KR": "악마적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador demoníaco", "name_ru_RU": "Жетон победы демонического гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Vitória do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149350, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93005, "buy_price": 465026, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149351, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Victory", "name_ko_KR": "악마적인 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador demoníaco", "name_ru_RU": "Акколада победы демонического гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149351, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93340, "buy_price": 466703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0300999879837036, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149350, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Victory", "name_ko_KR": "악마적인 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador demoníaco", "name_ru_RU": "Акколада победы демонического гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149352, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93666, "buy_price": 468334, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0336999893188477, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149353, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Victory", "name_ko_KR": "악마적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador demoníaco", "name_ru_RU": "Знак победы демонического гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149353, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 94002, "buy_price": 470010, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0374000072479248, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149352, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Victory", "name_ko_KR": "악마적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador demoníaco", "name_ru_RU": "Знак победы демонического гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149702, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211447, "buy_price": 1057238, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000499963760376, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149703, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente fiero", "name_ru_RU": "Жетон завоевания неудержимого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Violento", "name_pt_PT": "Distintivo da Conquista do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149703, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212229, "buy_price": 1061148, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0041999816894531, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149702, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente fiero", "name_ru_RU": "Жетон завоевания неудержимого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Violento", "name_pt_PT": "Distintivo da Conquista do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149704, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 361979, "buy_price": 1809895, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0078999996185303, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149705, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente fiero", "name_ru_RU": "Акколада завоевания неудержимого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Violento", "name_pt_PT": "Galardão da Conquista do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149705, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 363307, "buy_price": 1816539, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0116000175476074, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149704, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente fiero", "name_ru_RU": "Акколада завоевания неудержимого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Violento", "name_pt_PT": "Galardão da Conquista do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149706, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214554, "buy_price": 1072772, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0152000188827515, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149707, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente fiero", "name_ru_RU": "Знак завоевания неудержимого бойца", "name_it_IT": "Fregio della Conquista del Combattente Violento", "name_pt_PT": "Insígnia da Conquista do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149707, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 215336, "buy_price": 1076682, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149706, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente fiero", "name_ru_RU": "Знак завоевания неудержимого бойца", "name_it_IT": "Fregio della Conquista del Combattente Violento", "name_pt_PT": "Insígnia da Conquista do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149708, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 216118, "buy_price": 1080592, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226000547409058, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149709, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente fiero", "name_ru_RU": "Жетон господства неудержимого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Violento", "name_pt_PT": "Distintivo da Dominância do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149709, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 216900, "buy_price": 1084501, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262999534606934, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149708, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente fiero", "name_ru_RU": "Жетон господства неудержимого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Violento", "name_pt_PT": "Distintivo da Dominância do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149710, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 369880, "buy_price": 1849400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149711, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente fiero", "name_ru_RU": "Акколада господства неудержимого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Violento", "name_pt_PT": "Galardão da Dominância do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149711, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 371209, "buy_price": 1856045, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149710, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente fiero", "name_ru_RU": "Акколада господства неудержимого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Violento", "name_pt_PT": "Galardão da Dominância do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149712, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1440, "buy_price": 7200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0372999906539917, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149713, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente fiero", "name_ru_RU": "Знак господства неудержимого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Violento", "name_pt_PT": "Insígnia da Dominância do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149713, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1445, "buy_price": 7225, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0408999919891357, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149712, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente fiero", "name_ru_RU": "Знак господства неудержимого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Violento", "name_pt_PT": "Insígnia da Dominância do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149714, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 220767, "buy_price": 1103839, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149715, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Victory", "name_ko_KR": "맹렬한 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente fiero", "name_ru_RU": "Жетон победы неудержимого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Violento", "name_pt_PT": "Distintivo da Vitória do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149715, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 221549, "buy_price": 1107749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149714, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Victory", "name_ko_KR": "맹렬한 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente fiero", "name_ru_RU": "Жетон победы неудержимого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Violento", "name_pt_PT": "Distintivo da Vitória do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149716, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 341867, "buy_price": 1709335, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9519000053405762, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149717, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Victory", "name_ko_KR": "맹렬한 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente fiero", "name_ru_RU": "Акколада победы неудержимого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Violento", "name_pt_PT": "Galardão da Vitória do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149717, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 343160, "buy_price": 1715800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9555000066757202, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149716, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Victory", "name_ko_KR": "맹렬한 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente fiero", "name_ru_RU": "Акколада победы неудержимого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Violento", "name_pt_PT": "Galardão da Vitória do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149718, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208319, "buy_price": 1041599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9857000112533569, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149719, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Victory", "name_ko_KR": "맹렬한 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente fiero", "name_ru_RU": "Знак победы неудержимого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Violento", "name_pt_PT": "Insígnia da Vitória do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149719, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 209101, "buy_price": 1045509, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9894000291824341, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149718, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Victory", "name_ko_KR": "맹렬한 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente fiero", "name_ru_RU": "Знак победы неудержимого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Violento", "name_pt_PT": "Insígnia da Vitória do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149952, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214533, "buy_price": 1072666, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149953, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Conquest", "name_ko_KR": "군림하는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente dominante", "name_ru_RU": "Жетон завоевания господствующего бойца", "name_it_IT": "Distintivo della Conquista del Combattente Dominante", "name_pt_PT": "Distintivo da Conquista do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149953, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 215315, "buy_price": 1076576, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149952, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Conquest", "name_ko_KR": "군림하는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente dominante", "name_ru_RU": "Жетон завоевания господствующего бойца", "name_it_IT": "Distintivo della Conquista del Combattente Dominante", "name_pt_PT": "Distintivo da Conquista do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149954, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367186, "buy_price": 1835933, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0224000215530396, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149955, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Conquest", "name_ko_KR": "군림하는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente dominante", "name_ru_RU": "Акколада завоевания господствующего бойца", "name_it_IT": "Decorazione della Conquista del Combattente Dominante", "name_pt_PT": "Galardão da Conquista do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149955, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 368515, "buy_price": 1842577, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0261000394821167, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149954, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Conquest", "name_ko_KR": "군림하는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente dominante", "name_ru_RU": "Акколада завоевания господствующего бойца", "name_it_IT": "Decorazione della Conquista del Combattente Dominante", "name_pt_PT": "Galardão da Conquista do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149956, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217640, "buy_price": 1088200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298000574111938, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149957, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Conquest", "name_ko_KR": "군림하는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente dominante", "name_ru_RU": "Знак завоевания господствующего бойца", "name_it_IT": "Fregio della Conquista del Combattente Dominante", "name_pt_PT": "Insígnia da Conquista do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149957, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218422, "buy_price": 1092110, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149956, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Conquest", "name_ko_KR": "군림하는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente dominante", "name_ru_RU": "Знак завоевания господствующего бойца", "name_it_IT": "Fregio della Conquista del Combattente Dominante", "name_pt_PT": "Insígnia da Conquista do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149958, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 219182, "buy_price": 1095914, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0370999574661255, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149959, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Dominance", "name_ko_KR": "군림하는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente dominante", "name_ru_RU": "Жетон господства господствующего бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Dominante", "name_pt_PT": "Distintivo da Dominância do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149959, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204410, "buy_price": 1022050, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149958, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Dominance", "name_ko_KR": "군림하는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente dominante", "name_ru_RU": "Жетон господства господствующего бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Dominante", "name_pt_PT": "Distintivo da Dominância do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149960, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 348690, "buy_price": 1743454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149961, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Dominance", "name_ko_KR": "군림하는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente dominante", "name_ru_RU": "Акколада господства господствующего бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Dominante", "name_pt_PT": "Galardão da Dominância do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149961, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 350019, "buy_price": 1750098, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746000170707703, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149960, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Dominance", "name_ko_KR": "군림하는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente dominante", "name_ru_RU": "Акколада господства господствующего бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Dominante", "name_pt_PT": "Galardão da Dominância do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149962, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1357, "buy_price": 6789, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782000184059143, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149963, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Dominance", "name_ko_KR": "군림하는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente dominante", "name_ru_RU": "Знак господства господствующего бойца", "name_it_IT": "Fregio della Dominazione del Combattente Dominante", "name_pt_PT": "Insígnia da Dominância do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149963, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1363, "buy_price": 6815, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818999767303467, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149962, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Dominance", "name_ko_KR": "군림하는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente dominante", "name_ru_RU": "Знак господства господствующего бойца", "name_it_IT": "Fregio della Dominazione del Combattente Dominante", "name_pt_PT": "Insígnia da Dominância do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149964, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208298, "buy_price": 1041493, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149965, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Victory", "name_ko_KR": "군림하는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente dominante", "name_ru_RU": "Жетон победы господствующего бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Dominante", "name_pt_PT": "Distintivo da Vitória do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149965, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 209080, "buy_price": 1045403, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989300012588501, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149964, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Victory", "name_ko_KR": "군림하는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente dominante", "name_ru_RU": "Жетон победы господствующего бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Dominante", "name_pt_PT": "Distintivo da Vitória do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149966, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 356591, "buy_price": 1782959, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.992900013923645, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149967, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Victory", "name_ko_KR": "군림하는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente dominante", "name_ru_RU": "Акколада победы господствующего бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Dominante", "name_pt_PT": "Galardão da Vitória do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149967, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 357920, "buy_price": 1789603, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149966, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Victory", "name_ko_KR": "군림하는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente dominante", "name_ru_RU": "Акколада победы господствующего бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Dominante", "name_pt_PT": "Galardão da Vitória do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149968, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211405, "buy_price": 1057027, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003000497817993, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149969, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Victory", "name_ko_KR": "군림하는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant autoritaire", "name_de_DE": "Siegesinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente dominante", "name_ru_RU": "Знак победы господствующего бойца", "name_it_IT": "Fregio della Vittoria del Combattente Dominante", "name_pt_PT": "Insígnia da Vitória do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149969, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212166, "buy_price": 1060831, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0039000511169434, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149968, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Victory", "name_ko_KR": "군림하는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant autoritaire", "name_de_DE": "Siegesinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente dominante", "name_ru_RU": "Знак победы господствующего бойца", "name_it_IT": "Fregio della Vittoria del Combattente Dominante", "name_pt_PT": "Insígnia da Vitória do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150198, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68979, "buy_price": 344896, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0149999856948853, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150199, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Conquest", "name_ko_KR": "악마적인 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente demoníaco", "name_ru_RU": "Жетон завоевания демонического бойца", "name_it_IT": "Distintivo della Conquista del Combattente Demoniaco", "name_pt_PT": "Distintivo da Conquista do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150199, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69223, "buy_price": 346119, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0185999870300293, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150198, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Conquest", "name_ko_KR": "악마적인 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente demoníaco", "name_ru_RU": "Жетон завоевания демонического бойца", "name_it_IT": "Distintivo della Conquista del Combattente Demoniaco", "name_pt_PT": "Distintivo da Conquista do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150200, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 71276, "buy_price": 356381, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048799991607666, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150201, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Conquest", "name_ko_KR": "악마적인 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente demoníaco", "name_ru_RU": "Акколада завоевания демонического бойца", "name_it_IT": "Decorazione della Conquista del Combattente Demoniaco", "name_pt_PT": "Galardão da Conquista do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150201, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64725, "buy_price": 323625, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524000287055969, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150200, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Conquest", "name_ko_KR": "악마적인 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente demoníaco", "name_ru_RU": "Акколада завоевания демонического бойца", "name_it_IT": "Decorazione della Conquista del Combattente Demoniaco", "name_pt_PT": "Galardão da Conquista do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150202, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64976, "buy_price": 324882, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9560999870300293, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150203, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Conquest", "name_ko_KR": "악마적인 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente demoníaco", "name_ru_RU": "Знак завоевания демонического бойца", "name_it_IT": "Fregio della Conquista del Combattente Demoniaco", "name_pt_PT": "Insígnia da Conquista do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150203, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65221, "buy_price": 326105, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9596999883651733, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150202, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Conquest", "name_ko_KR": "악마적인 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente demoníaco", "name_ru_RU": "Знак завоевания демонического бойца", "name_it_IT": "Fregio della Conquista del Combattente Demoniaco", "name_pt_PT": "Insígnia da Conquista do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150204, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65472, "buy_price": 327362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9634000062942505, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150205, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Dominance", "name_ko_KR": "악마적인 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente demoníaco", "name_ru_RU": "Жетон господства демонического бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Demoniaco", "name_pt_PT": "Distintivo da Dominância do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150205, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65724, "buy_price": 328620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9671000242233276, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150204, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Dominance", "name_ko_KR": "악마적인 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente demoníaco", "name_ru_RU": "Жетон господства демонического бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Demoniaco", "name_pt_PT": "Distintivo da Dominância do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150206, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65975, "buy_price": 329877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.97079998254776, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150207, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Dominance", "name_ko_KR": "악마적인 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente demoníaco", "name_ru_RU": "Акколада господства демонического бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Demoniaco", "name_pt_PT": "Galardão da Dominância do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150207, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66220, "buy_price": 331100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.974399983882904, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150206, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Dominance", "name_ko_KR": "악마적인 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente demoníaco", "name_ru_RU": "Акколада господства демонического бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Demoniaco", "name_pt_PT": "Galardão da Dominância do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150208, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1357, "buy_price": 6789, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9781000018119812, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150209, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Dominance", "name_ko_KR": "악마적인 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente demoníaco", "name_ru_RU": "Знак господства демонического бойца", "name_it_IT": "Fregio della Dominazione del Combattente Demoniaco", "name_pt_PT": "Insígnia da Dominância do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150209, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1362, "buy_price": 6814, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818000197410583, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150208, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Dominance", "name_ko_KR": "악마적인 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente demoníaco", "name_ru_RU": "Знак господства демонического бойца", "name_it_IT": "Fregio della Dominazione del Combattente Demoniaco", "name_pt_PT": "Insígnia da Dominância do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150210, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66967, "buy_price": 334838, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9854000210762024, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150211, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Victory", "name_ko_KR": "악마적인 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente demoníaco", "name_ru_RU": "Жетон победы демонического бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Demoniaco", "name_pt_PT": "Distintivo da Vitória do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150211, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67219, "buy_price": 336095, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9890999794006348, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150210, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Victory", "name_ko_KR": "악마적인 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente demoníaco", "name_ru_RU": "Жетон победы демонического бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Demoniaco", "name_pt_PT": "Distintivo da Vitória do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150212, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67470, "buy_price": 337352, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9927999973297119, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150213, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Victory", "name_ko_KR": "악마적인 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente demoníaco", "name_ru_RU": "Акколада победы демонического бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Demoniaco", "name_pt_PT": "Galardão da Vitória do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150213, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67722, "buy_price": 338610, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965000152587891, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150212, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Victory", "name_ko_KR": "악마적인 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente demoníaco", "name_ru_RU": "Акколада победы демонического бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Demoniaco", "name_pt_PT": "Galardão da Vitória do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150214, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67966, "buy_price": 339833, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000100016593933, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150215, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Victory", "name_ko_KR": "악마적인 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente demoníaco", "name_ru_RU": "Знак победы демонического бойца", "name_it_IT": "Fregio della Vittoria del Combattente Demoniaco", "name_pt_PT": "Insígnia da Vitória do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150215, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68218, "buy_price": 341090, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0038000345230103, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150214, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Victory", "name_ko_KR": "악마적인 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente demoníaco", "name_ru_RU": "Знак победы демонического бойца", "name_it_IT": "Fregio della Vittoria del Combattente Demoniaco", "name_pt_PT": "Insígnia da Vitória do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150388, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hibernation Crystal", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 266, "buy_price": 1334, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 524288, "flags_2": 8256, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Hibernation Crystal", "name_ko_KR": "휴면의 수정", "name_fr_FR": "Cristal d'hibernation", "name_de_DE": "Hibernationskristall", "name_zh_CN": "休眠水晶", "name_es_ES": "Cristal de hibernación", "name_ru_RU": "Кристалл спячки", "name_it_IT": "Cristallo dell'Ibernazione", "name_pt_PT": "Cristal de Hibernação", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150522, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Skull of Gul'dan", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 364, "buy_price": 1822, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599000215530396, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "The Skull of Gul'dan", "name_ko_KR": "굴단의 해골", "name_fr_FR": "Le crâne de Gul'dan", "name_de_DE": "Der Schädel des Gul'dan", "name_zh_CN": "古尔丹之颅", "name_es_ES": "La calavera de Gul'dan", "name_ru_RU": "Череп Гул'дана", "name_it_IT": "Teschio di Gul'dan", "name_pt_PT": "O Crânio de Gul'dan", "on_use": true, "id_encounter": 1590, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 150523, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Memento of Tyrande", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 365, "buy_price": 1829, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Memento of Tyrande", "name_ko_KR": "추억이 담긴 티란데의 기념품", "name_fr_FR": "Souvenir de Tyrande", "name_de_DE": "Tyrandes Andenken", "name_zh_CN": "泰兰德的记忆", "name_es_ES": "Recuerdo de Tyrande", "name_ru_RU": "Память о Тиранде", "name_it_IT": "Memento di Tyrande", "name_pt_PT": "Recordação de Tyrande", "on_use": false, "id_encounter": 1590, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 150526, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowmoon Insignia", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 336, "buy_price": 1681, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746000170707703, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Shadowmoon Insignia", "name_ko_KR": "어둠달 휘장", "name_fr_FR": "Insigne d'Ombrelune", "name_de_DE": "Insigne des Schattenmondklans", "name_zh_CN": "影月徽记", "name_es_ES": "Insignia de Sombraluna", "name_ru_RU": "Знак клана Призрачной Луны", "name_it_IT": "Fregio di Torvaluna", "name_pt_PT": "Insígnia da Lua Negra", "on_use": true, "id_encounter": 1586, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 150527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Madness of the Betrayer", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 337, "buy_price": 1687, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782000184059143, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Madness of the Betrayer", "name_ko_KR": "배신자의 광기", "name_fr_FR": "Folie du traître", "name_de_DE": "Wahnsinn des Verräters", "name_zh_CN": "背叛者的疯狂", "name_es_ES": "Locura de El Traidor", "name_ru_RU": "Безумие Предателя", "name_it_IT": "Follia del Traditore", "name_pt_PT": "Insânia do Traidor", "on_use": false, "id_encounter": 1589, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 150709, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lacquered Carving", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 5, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0374000072479248, "flags_1": 32768, "flags_2": 4218880, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Lacquered Carving", "name_ko_KR": "옻칠한 조각", "name_fr_FR": "Sculpture laquée", "name_de_DE": "Lackierte Schnitzarbeit", "name_zh_CN": "喷漆雕像", "name_es_ES": "Talla lacada", "name_ru_RU": "Лакированная резная фигурка", "name_it_IT": "Pittogramma Laccato", "name_pt_PT": "Entalhe Envernizado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burnished Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 5, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041100025177002, "flags_1": 32768, "flags_2": 4218880, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Burnished Charm", "name_ko_KR": "빛나는 부적", "name_fr_FR": "Charme bruni", "name_de_DE": "Brünierter Glücksbringer", "name_zh_CN": "抛光护符", "name_es_ES": "Talismán bruñido", "name_ru_RU": "Отполированный амулет", "name_it_IT": "Talismano Brunito", "name_pt_PT": "Patuá Lustrado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 151190, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Specter of Betrayal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280859, "buy_price": 1404297, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9966999888420105, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Specter of Betrayal", "name_ko_KR": "배신의 유령", "name_fr_FR": "Spectre de trahison", "name_de_DE": "Gespenst des Verrats", "name_zh_CN": "背叛幽灵", "name_es_ES": "Espectro de traición", "name_ru_RU": "Призрак предательства", "name_it_IT": "Spettro del Tradimento", "name_pt_PT": "Espectro da Traição", "on_use": true, "id_encounter": 1898, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 151307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void Stalker's Contract", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68734, "buy_price": 343673, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Void Stalker's Contract", "name_ko_KR": "공허 추적자의 계약", "name_fr_FR": "Contrat de traqueur du Vide", "name_de_DE": "Vertrag des Leerenpirschers", "name_zh_CN": "虚空追猎者的契约", "name_es_ES": "Contrato de acechador del Vacío", "name_ru_RU": "Контракт ловчего Бездны", "name_it_IT": "Contratto dell'Inseguitore del Vuoto", "name_pt_PT": "Contrato de Espreitador do Caos", "on_use": true, "id_encounter": 1980, "id_journal_instance": 945, "id_map": 1753, "instance_type": 1}, {"id": 151310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reality Breacher", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1456, "buy_price": 7280, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Reality Breacher", "name_ko_KR": "현실 파괴 장치", "name_fr_FR": "Disrupteur de réalités", "name_de_DE": "Realitätsbrecher", "name_zh_CN": "现实突破者", "name_es_ES": "Alterador de la realidad", "name_ru_RU": "Разрушитель реальности", "name_it_IT": "Breccia nella Realtà", "name_pt_PT": "Abre-dimensões", "on_use": false, "id_encounter": 1981, "id_journal_instance": 945, "id_map": 1753, "instance_type": 1}, {"id": 151312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ampoule of Pure Void", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64983, "buy_price": 324916, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9562000036239624, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Ampoule of Pure Void", "name_ko_KR": "순수한 공허의 유리병", "name_fr_FR": "Ampoule de Vide pur", "name_de_DE": "Ampulle der reinen Leere", "name_zh_CN": "纯净虚空之瓶", "name_es_ES": "Ampolleta de Vacío puro", "name_ru_RU": "Флакон чистейшей Бездны", "name_it_IT": "Ampolla di Puro Vuoto", "name_pt_PT": "Ampola de Puro Caos", "on_use": true, "id_encounter": 1979, "id_journal_instance": 945, "id_map": 1753, "instance_type": 1}, {"id": 151340, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Echo of L'ura", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66967, "buy_price": 334838, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9854000210762024, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Echo of L'ura", "name_ko_KR": "르우라의 메아리", "name_fr_FR": "Echo de L'ura", "name_de_DE": "Echo von L'ura", "name_zh_CN": "鲁拉的回响", "name_es_ES": "Eco de L'ura", "name_ru_RU": "Тень Л'уры", "name_it_IT": "Eco di L'ura", "name_pt_PT": "Eco de L'ura", "on_use": true, "id_encounter": 1982, "id_journal_instance": 945, "id_map": 1753, "instance_type": 1}, {"id": 151351, "race_mask": 18446744073709551615, "desc": "Maybe don't shake it.", "pad2": "", "pad1": "", "pad0": "", "name": "Glowing Gift", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30000, "buy_price": 120000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9521999955177307, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Glowing Gift", "name_ko_KR": "번뜩이는 선물", "name_fr_FR": "Cadeau luminescent", "name_de_DE": "Leuchtendes Geschenk", "name_zh_CN": "发光的礼物", "name_es_ES": "Regalo resplandeciente", "name_ru_RU": "Сверкающий подарок", "name_it_IT": "Regalo Luminoso", "name_pt_PT": "Presente Chamejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 151607, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Astral Alchemist Stone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45999, "buy_price": 229998, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0153000354766846, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2479, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Astral Alchemist Stone", "name_ko_KR": "천공의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste astrale", "name_de_DE": "Astraler Alchemistenstein", "name_zh_CN": "星界炼金石", "name_es_ES": "Piedra de alquimista astral", "name_ru_RU": "Звездный алхимический камень", "name_it_IT": "Pietra Alchemica Astrale", "name_pt_PT": "Pedra do Alquimista Astral", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 151955, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Acrid Catalyst Injector", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1804, "buy_price": 9021, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9747999906539917, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Acrid Catalyst Injector", "name_ko_KR": "독한 촉매의 주입기", "name_fr_FR": "Injecteur de catalyseur âcre", "name_de_DE": "Ätzende Katalysatoreinspritzdüse", "name_zh_CN": "苛性催化剂注射器", "name_es_ES": "Inyector de catalizador acre", "name_ru_RU": "Инжектор едкого катализатора", "name_it_IT": "Iniettore di Catalizzatore Acre", "name_pt_PT": "Injetor de Catalisador Acre", "on_use": false, "id_encounter": 2004, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151956, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Garothi Feedback Conduit", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275730, "buy_price": 1378654, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9785000085830688, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Garothi Feedback Conduit", "name_ko_KR": "가로시 역순환 도관", "name_fr_FR": "Conduit de boucle garothi", "name_de_DE": "Rückkopplungsleitung der Garothi", "name_zh_CN": "加洛西反馈电路", "name_es_ES": "Conducto de realimentación garothi", "name_ru_RU": "Проводник резонанса Кин'гарота", "name_it_IT": "Condotto di Retroazione dei Garothi", "name_pt_PT": "Conduíte de Ciclo Elétrico Garothi", "on_use": false, "id_encounter": 1992, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151957, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ishkar's Felshield Emitter", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276745, "buy_price": 1383726, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9821000099182129, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ishkar's Felshield Emitter", "name_ko_KR": "이쉬카르의 지옥보호막 생성기", "name_fr_FR": "Emetteur de gangrebouclier d'Ishkar", "name_de_DE": "Ishkars Teufelsschildemitter", "name_zh_CN": "伊什卡的邪能护盾发生器", "name_es_ES": "Emisor de Escudo vil de Ishkar", "name_ru_RU": "Генератор щита Скверны Ишкара", "name_it_IT": "Emettitore del Vilscudo di Ishkar", "name_pt_PT": "Emissor de Escudo Vil de Ishkar", "on_use": true, "id_encounter": 1997, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151958, "race_mask": 18446744073709551615, "desc": "A prison world for rebellious demons, the radiance of Tarratus' sun is breathtaking to behold.", "pad2": "", "pad1": "", "pad0": "", "name": "Tarratus Keystone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277788, "buy_price": 1388940, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98580002784729, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Tarratus Keystone", "name_ko_KR": "타라투스 쐐기돌", "name_fr_FR": "Clé de Tarratus", "name_de_DE": "Schlüsselstein von Tarratus", "name_zh_CN": "塔拉图斯钥石", "name_es_ES": "Piedra angular de Tarratus", "name_ru_RU": "Краеугольный камень Таррата", "name_it_IT": "Chiave di Tarratus", "name_pt_PT": "Pedra-chave de Tarratus", "on_use": true, "id_encounter": 1985, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carafe of Searing Light", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279873, "buy_price": 1399366, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9932000041007996, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Carafe of Searing Light", "name_ko_KR": "이글거리는 빛의 유리병", "name_fr_FR": "Carafe de lumière incendiaire", "name_de_DE": "Karaffe des sengenden Lichts", "name_zh_CN": "灼光之瓶", "name_es_ES": "Garrafa de Luz abrasadora", "name_ru_RU": "Графин опаляющего света", "name_it_IT": "Caraffa della Luce Rovente", "name_pt_PT": "Jarra de Água da Luz Calcinante", "on_use": true, "id_encounter": 1983, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151961, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Legionsteel Flywheel", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532565, "buy_price": 2662825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9968000054359436, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Legionsteel Flywheel", "name_ko_KR": "군단강철 정속바퀴", "name_fr_FR": "Volant en acier de la Légion", "name_de_DE": "Legionsstählernes Schwungrad", "name_zh_CN": "军团钢铁飞轮", "name_es_ES": "Volante de acero de la Legión", "name_ru_RU": "Маховик из стали Легиона", "name_it_IT": "Volano di Legionacciaio", "name_pt_PT": "Volante de Aço da Legião", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 151962, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prototype Personnel Decimator", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1851, "buy_price": 9259, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000499963760376, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Prototype Personnel Decimator", "name_ko_KR": "시험생산형 인간 척살기", "name_fr_FR": "Prototype de décimateur de personnel", "name_de_DE": "Prototyp eines Personaldezimierers", "name_zh_CN": "实验型部队屠戮者", "name_es_ES": "Prototipo de exterminador personal", "name_ru_RU": "Прототип полевого дециматора", "name_it_IT": "Prototipo del Decimatore Personale", "name_pt_PT": "Protótipo de Dizimador Pessoal", "on_use": false, "id_encounter": 1992, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151963, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forgefiend's Fabricator", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282972, "buy_price": 1414864, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0041999816894531, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Forgefiend's Fabricator", "name_ko_KR": "괴철로마귀의 구성기", "name_fr_FR": "Fabricateur de forgefiel", "name_de_DE": "Fabrikator des Schmiedeschreckens", "name_zh_CN": "铸魔装配器", "name_es_ES": "Fabricador de forjadicto", "name_ru_RU": "Конструктор стража Кузни", "name_it_IT": "Fabbricante del Demonio della Forgia", "name_pt_PT": "Engendrador do Demônio da Forja", "on_use": true, "id_encounter": 2004, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151964, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seeping Scourgewing", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284015, "buy_price": 1420077, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0078999996185303, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Seeping Scourgewing", "name_ko_KR": "스며드는 스컬지날개", "name_fr_FR": "Aile du fléau suintante", "name_de_DE": "Triefende Geißelschwinge", "name_zh_CN": "渗漏的天灾之翼", "name_es_ES": "Plaga alada impregnante", "name_ru_RU": "Сочащийся хлестокрыл", "name_it_IT": "Ala del Flagello Colante", "name_pt_PT": "Flagelasa Infiltrante", "on_use": false, "id_encounter": 1983, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151968, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadow-Singed Fang", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295625, "buy_price": 1478126, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0491000413894653, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Shadow-Singed Fang", "name_ko_KR": "그림자에 물든 송곳니", "name_fr_FR": "Croc roussi par l'ombre", "name_de_DE": "Schattenversengter Reißzahn", "name_zh_CN": "影灼之牙", "name_es_ES": "Colmillo chamuscado por las Sombras", "name_ru_RU": "Опаленный тенями клык", "name_it_IT": "Artiglio Bruciato dall'Ombra", "name_pt_PT": "Presa Chamuscada de Sombras", "on_use": false, "id_encounter": 1987, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terminus Signaling Beacon", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1763, "buy_price": 8816, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9526000022888184, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Terminus Signaling Beacon", "name_ko_KR": "종착지 신호기", "name_fr_FR": "Balise de terminus", "name_de_DE": "Signalfeuer des Terminus", "name_zh_CN": "终端信号道标", "name_es_ES": "Terminal de baliza de señalización", "name_ru_RU": "Маячок конца пути", "name_it_IT": "Dislocatore di Segnalazione di Terminus", "name_pt_PT": "Sinalizador do Términus", "on_use": true, "id_encounter": 1997, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151970, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vitality Resonator", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1770, "buy_price": 8850, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563000202178955, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vitality Resonator", "name_ko_KR": "활력의 공명체", "name_fr_FR": "Résonateur de vitalité", "name_de_DE": "Vitalitätsresonator", "name_zh_CN": "生命共鸣器", "name_es_ES": "Resonador de vitalidad", "name_ru_RU": "Резонатор жизненных сил", "name_it_IT": "Risonatore della Vitalità", "name_pt_PT": "Ressonador de Vitalidade", "on_use": true, "id_encounter": 2025, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151971, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sheath of Asara", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1776, "buy_price": 8884, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599999785423279, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Sheath of Asara", "name_ko_KR": "아사라의 칼집", "name_fr_FR": "Fourreau d'Asara", "name_de_DE": "Hülle von Asara", "name_zh_CN": "奥萨拉的剑鞘", "name_es_ES": "Vaina de Asara", "name_ru_RU": "Ножны Асары", "name_it_IT": "Guaina di Asara", "name_pt_PT": "Bainha de Asara", "on_use": false, "id_encounter": 1986, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151974, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Shatug", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 361, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273617, "buy_price": 1368087, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710000157356262, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Shatug", "name_ko_KR": "샤투그 눈", "name_fr_FR": "Œil de Shatug", "name_de_DE": "Auge von Shatug", "name_zh_CN": "沙图格之眼", "name_es_ES": "Ojo de Shatug", "name_ru_RU": "Око Шатуга", "name_it_IT": "Occhio di Shatug", "name_pt_PT": "Olho de Shatug", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 151975, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Apocalypse Drive", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274660, "buy_price": 1373300, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746999740600586, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Apocalypse Drive", "name_ko_KR": "대재앙 가동 장치", "name_fr_FR": "Résolution apocalyptique", "name_de_DE": "Apokalypseeinheit", "name_zh_CN": "天启引擎", "name_es_ES": "Impulso apocalíptico", "name_ru_RU": "Реактор апокалипсиса", "name_it_IT": "Programma Apocalisse", "name_pt_PT": "Módulo do Apocalipse", "on_use": true, "id_encounter": 2004, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151976, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Riftworld Codex", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275674, "buy_price": 1378372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782999753952026, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Riftworld Codex", "name_ko_KR": "균열세계 전서", "name_fr_FR": "Codex du monde des failles", "name_de_DE": "Kodex der Risswelt", "name_zh_CN": "裂隙世界法典", "name_es_ES": "Códice de mundo de fallas", "name_ru_RU": "Кодекс портала", "name_it_IT": "Codice del Mondo del Varco", "name_pt_PT": "Códice de Fissúria", "on_use": false, "id_encounter": 1985, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151977, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Diima's Glacial Aegis", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276717, "buy_price": 1383586, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9819999933242798, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Diima's Glacial Aegis", "name_ko_KR": "디마의 빙하 아이기스", "name_fr_FR": "Egide glaciaire de Diima", "name_de_DE": "Diimas Frostaegis", "name_zh_CN": "蒂玛的冰河护盾", "name_es_ES": "Égida glacial de Diima", "name_ru_RU": "Ледяная эгида Диимы", "name_it_IT": "Egida Glaciale di Diima", "name_pt_PT": "Égide Glacial de Deema", "on_use": true, "id_encounter": 1986, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Titanguard", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277759, "buy_price": 1388799, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9857000112533569, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Smoldering Titanguard", "name_ko_KR": "이글거리는 티탄의 수호", "name_fr_FR": "Garde des Titans fumant", "name_de_DE": "Schwelender Titanenschutz", "name_zh_CN": "阴燃之泰坦结界", "name_es_ES": "Protección de titanes humeante", "name_ru_RU": "Пылающий титановый страж", "name_it_IT": "Guardia Titanica Ardente", "name_pt_PT": "Espada Titã em Brasa", "on_use": true, "id_encounter": 1984, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 152093, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gorshalach's Legacy", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279816, "buy_price": 1399084, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9929999709129333, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 6, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Gorshalach's Legacy", "name_ko_KR": "고르샤라크의 유산", "name_fr_FR": "Héritage de Gorshalach", "name_de_DE": "Gorshalachs Vermächtnis", "name_zh_CN": "高沙拉克的遗产", "name_es_ES": "Legado de Gorshalach", "name_ru_RU": "Наследие Горшалака", "name_it_IT": "Eredità di Gorshalach", "name_pt_PT": "Legado de Gorshalak", "on_use": false, "id_encounter": 1984, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 152289, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Highfather's Machination", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269503, "buy_price": 1347516, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Highfather's Machination", "name_ko_KR": "대부의 책략", "name_fr_FR": "Machination du Patriarche", "name_de_DE": "Werk des Hochvaters", "name_zh_CN": "众神之父的规划", "name_es_ES": "Maquinación del Gran Padre", "name_ru_RU": "Интрига Великого Отца", "name_it_IT": "Macchinazione del Sommo Padre", "name_pt_PT": "Maquinação do Grande Pai", "on_use": false, "id_encounter": 1986, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 152632, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Surging Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218326, "buy_price": 1091631, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9710999727249146, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2478, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Surging Alchemist Stone", "name_ko_KR": "솟구치는 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste déferlante", "name_de_DE": "Wallender Alchemistenstein", "name_zh_CN": "潮涌炼金石", "name_es_ES": "Piedra de alquimista impetuosa", "name_ru_RU": "Пульсирующий алхимический камень", "name_it_IT": "Pietra Alchemica Eruttante", "name_pt_PT": "Pedra do Alquimista Jorrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Endless Tincture of Renewed Combat", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115146, "buy_price": 575734, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9785000085830688, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 52, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Endless Tincture of Renewed Combat", "name_ko_KR": "새로운 전투의 무한한 용액", "name_fr_FR": "Teinture infinie du combat renouvelé", "name_de_DE": "Endlose Tinktur des erneuerten Kampfgeists", "name_zh_CN": "崛起再战无穷酊剂", "name_es_ES": "Tintura de combate renovado interminable", "name_ru_RU": "Бесконечная настойка непрекращающегося боя", "name_it_IT": "Tintura Infinita del Combattimento Rinnovato", "name_pt_PT": "Tintura do Combate Renovado Infinita", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152636, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Endless Tincture of Fractional Power", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 221631, "buy_price": 1108155, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.98580002784729, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Endless Tincture of Fractional Power", "name_ko_KR": "부분적인 힘의 무한한 용액", "name_fr_FR": "Teinture infinie de puissance fractionnée", "name_de_DE": "Endlose Tinktur der bruchstückhaften Macht", "name_zh_CN": "分馏之力无穷酊剂", "name_es_ES": "Tintura de poder ínfimo interminable", "name_ru_RU": "Бесконечная настойка поделенной мощи", "name_it_IT": "Tintura Infinita del Potere Infinitesimale", "name_pt_PT": "Tintura de Poder Fracionado Infinita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152637, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Siren's Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 116441, "buy_price": 582206, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9894999861717224, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2478, "ilevel": 52, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Siren's Alchemist Stone", "name_ko_KR": "세이렌의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste de sirène", "name_de_DE": "Alchemistenstein der Sirene", "name_zh_CN": "海妖的炼金石", "name_es_ES": "Piedra de alquimista de sirena", "name_ru_RU": "Алхимический камень сирены", "name_it_IT": "Pietra Alchemica della Sirena", "name_pt_PT": "Pedra do Alquimista da Sirena", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Shatug", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 361, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294582, "buy_price": 1472913, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0454000234603882, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Shatug", "name_ko_KR": "샤투그 눈", "name_fr_FR": "Oeil de Shatug", "name_de_DE": "Auge von Shatug", "name_zh_CN": "沙图格之眼", "name_es_ES": "Ojo de Shatug", "name_ru_RU": "Око Шатуга", "name_it_IT": "Occhio di Shatug", "name_pt_PT": "Olho de Shatug", "on_use": true, "id_encounter": 1987, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 152781, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unblemished Sigil of Argus", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 362877, "buy_price": 1814388, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9562000036239624, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Unblemished Sigil of Argus", "name_ko_KR": "흠집 없는 아르거스 인장", "name_fr_FR": "Cachet d'Argus impeccable", "name_de_DE": "Unbeflecktes Argussiegel", "name_zh_CN": "无瑕的阿古斯印记", "name_es_ES": "Sigilo de Argus inmaculado", "name_ru_RU": "Незапятнанная печать Аргуса", "name_it_IT": "Sigillo di Argus Intatto", "name_pt_PT": "Signo de Argus Primoroso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152782, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Venerable Triad Statuette", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 364243, "buy_price": 1821219, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9598000049591064, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Venerable Triad Statuette", "name_ko_KR": "신성한 삼두 조각상", "name_fr_FR": "Statuette vénérable de la triade", "name_de_DE": "Verehrte Statue der Triade", "name_zh_CN": "庄严的三人执政团雕像", "name_es_ES": "Estatuilla de tríada venerable", "name_ru_RU": "Статуэтка почитаемой троицы", "name_it_IT": "Statuetta di Triade Venerabile", "name_pt_PT": "Estatueta da Tríade Venerável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152783, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eredath Focusing Amethyst", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 365648, "buy_price": 1828240, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Eredath Focusing Amethyst", "name_ko_KR": "에레다스 집중의 자수정", "name_fr_FR": "Améthyste de focalisation d’Érédath", "name_de_DE": "Fokussieramethyst von Eredath", "name_zh_CN": "艾瑞达斯聚焦紫晶", "name_es_ES": "Amatista de enfoque de Eredath", "name_ru_RU": "Фокусирующий аметист Эредата", "name_it_IT": "Ametista della Concentrazione di Eredath", "name_pt_PT": "Ametista Focalizadora de Eredath", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153172, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Doomed Exarch's Memento", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 389556, "buy_price": 1947783, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0264999866485596, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Doomed Exarch's Memento", "name_ko_KR": "파멸한 총독의 기념물", "name_fr_FR": "Souvenir de l'exarque condamné", "name_de_DE": "Andenken des verdammten Exarchen", "name_zh_CN": "末日主教的纪念品", "name_es_ES": "Recuerdo de exarca condenado", "name_ru_RU": "Реликвия обреченного экзарха", "name_it_IT": "Ricordo dell'Esarca Condannato", "name_pt_PT": "Memento do Exarca Condenado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153408, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 455298, "buy_price": 2276493, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9896000027656555, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154979, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153409, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457001, "buy_price": 2285005, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9933000206947327, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154980, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153410, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 458703, "buy_price": 2293516, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154981, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153411, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 460359, "buy_price": 2301798, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154982, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153412, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oceanographer's Weather Log", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 462061, "buy_price": 2310309, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0042999982833862, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154983, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oceanographer's Weather Log", "name_ko_KR": "바다 낚시꾼의 날씨 일지", "name_fr_FR": "Journal météorologique d’océanographe", "name_de_DE": "Wetteraufzeichnungen des Meeresforschers", "name_zh_CN": "海洋学家的气候日志", "name_es_ES": "Informe meteorológico de oceanógrafo", "name_ru_RU": "Журнал погоды океанографа", "name_it_IT": "Diario Meteorologico dell'Oceanografo", "name_pt_PT": "Registro Climático do Oceanógrafo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Privateer's Spyglass", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 463764, "buy_price": 2318821, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0080000162124634, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154984, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Privateer's Spyglass", "name_ko_KR": "선원의 망원경", "name_fr_FR": "Longue-vue de corsaire", "name_de_DE": "Freibeuterfernrohr", "name_zh_CN": "水手的望远镜", "name_es_ES": "Catalejo de corsario", "name_ru_RU": "Пиратская подзорная труба", "name_it_IT": "Cannocchiale del Corsaro", "name_pt_PT": "Luneta do Corsário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153544, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of F'harg", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 361, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 5106, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 50, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289397, "buy_price": 1446988, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0269999504089355, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Eye of F'harg", "name_ko_KR": "프하르그 눈", "name_fr_FR": "Oeil de F'harg", "name_de_DE": "Auge von F'harg", "name_zh_CN": "法尔格之眼", "name_es_ES": "Ojo de F'harg", "name_ru_RU": "Око Ф'арга", "name_it_IT": "Occhio di F'harg", "name_pt_PT": "Olho de F'harg", "on_use": true, "id_encounter": 1987, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 153731, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0044000148773193, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153732, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0081000328063965, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153740, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9638999700546265, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153743, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9749000072479248, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Defensor de Pedra da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153750, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153753, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0382000207901, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153764, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9785000085830688, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153767, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9894999861717224, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9599999785423279, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153782, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9710000157356262, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153795, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.045199990272522, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153798, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9562000036239624, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153801, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9937000274658203, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153804, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.004699945449829, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153816, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9751999974250793, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153819, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9861999750137329, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153834, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9677000045776367, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Defensor de Pedra do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153836, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9750000238418579, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.049299955368042, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153854, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9675999879837036, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153860, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153864, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153882, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.023300051689148, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d'âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153885, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0342999696731567, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d'âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153898, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0084999799728394, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d'âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153899, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0121999979019165, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d'âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153907, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.041599988937378, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153910, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9524999856948853, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Defensor de Pedra Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153915, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9973000288009644, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153918, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0083999633789062, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153926, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0377999544143677, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153930, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9789000153541565, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153947, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9677000045776367, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153950, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9786999821662903, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153964, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9564999938011169, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153967, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9675999879837036, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9749000072479248, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153972, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9858999848365784, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153994, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.019700050354004, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153997, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0306999683380127, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154010, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0047999620437622, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154013, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0157999992370605, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154044, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9825000166893005, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154047, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9934999942779541, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Defensor de Pedra do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9526000022888184, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9563000202178955, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154172, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aman'Thul's Vision", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5556, "stat_alloc_2": 5556, "stat_alloc_3": 5556, "stat_alloc_4": 5556, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407467, "buy_price": 2037337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9639999866485596, "flags_1": 1073774848, "flags_2": 12352, "flags_3": 268435456, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 5, "name_en_US": "Aman'Thul's Vision", "name_ko_KR": "아만툴의 환영", "name_fr_FR": "Vision d’Aman’Thul", "name_de_DE": "Aman'thuls Vision", "name_zh_CN": "阿曼苏尔的预见", "name_es_ES": "Visión de Aman'thul", "name_ru_RU": "Видения Аман'тула", "name_it_IT": "Visione di Aman'thul", "name_pt_PT": "Visão de Aman'Thul", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154173, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aggramar's Conviction", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 315227, "buy_price": 1576136, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9677000045776367, "flags_1": 32768, "flags_2": 12352, "flags_3": 2147483648, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 51, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Aggramar's Conviction", "name_ko_KR": "아그라마르의 자각", "name_fr_FR": "Conviction d’Aggramar", "name_de_DE": "Aggramars Überzeugung", "name_zh_CN": "阿格拉玛的信念", "name_es_ES": "Convicción de Aggramar", "name_ru_RU": "Решимость Агграмара", "name_it_IT": "Convinzione di Aggramar", "name_pt_PT": "Convicção de Aggramar", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154174, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golganneth's Vitality", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 316432, "buy_price": 1582162, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9714000225067139, "flags_1": 32768, "flags_2": 12352, "flags_3": 2147483648, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 51, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Golganneth's Vitality", "name_ko_KR": "골가네스의 활력", "name_fr_FR": "Vitalité de Golganneth", "name_de_DE": "Golganneths Lebenskraft", "name_zh_CN": "高戈奈斯的活力", "name_es_ES": "Vitalidad de Golganneth", "name_ru_RU": "Живость Голганнета", "name_it_IT": "Vitalità di Golganneth", "name_pt_PT": "Vitalidade de Golganneth", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154175, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eonar's Compassion", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 317605, "buy_price": 1588026, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750000238418579, "flags_1": 32768, "flags_2": 12352, "flags_3": 2147483648, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 51, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Eonar's Compassion", "name_ko_KR": "이오나의 연민", "name_fr_FR": "Compassion d’Eonar", "name_de_DE": "Eonars Mitgefühl", "name_zh_CN": "艾欧娜尔的怜悯", "name_es_ES": "Compasión de Eonar", "name_ru_RU": "Сострадание Эонар", "name_it_IT": "Compassione di Eonar", "name_pt_PT": "Compaixão de Eonar", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154176, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Khaz'goroth's Courage", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 318810, "buy_price": 1594052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9786999821662903, "flags_1": 32768, "flags_2": 12352, "flags_3": 2147483648, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 51, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Khaz'goroth's Courage", "name_ko_KR": "카즈고로스의 용기", "name_fr_FR": "Courage de Khaz’goroth", "name_de_DE": "Khaz'goroths Kühnheit", "name_zh_CN": "卡兹格罗斯的勇气", "name_es_ES": "Coraje de Khaz'goroth", "name_ru_RU": "Отвага Каз'горота", "name_it_IT": "Coraggio di Khaz'goroth", "name_pt_PT": "Coragem de Khaz'goroth", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154177, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Norgannon's Prowess", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1927, "buy_price": 9637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9824000000953674, "flags_1": 32768, "flags_2": 12352, "flags_3": 2147483648, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 51, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Norgannon's Prowess", "name_ko_KR": "노르간논의 기량", "name_fr_FR": "Prouesse de Norgannon", "name_de_DE": "Norgannons Heldenmut", "name_zh_CN": "诺甘农的威能", "name_es_ES": "Destreza de Norgannon", "name_ru_RU": "Удаль Норганнона", "name_it_IT": "Abilità di Norgannon", "name_pt_PT": "Perícia de Norgannon", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154743, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9861000180244446, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy", "name_ko_KR": "악마 상징물", "name_fr_FR": "Trophée de démon", "name_de_DE": "Dämonentrophäe", "name_zh_CN": "恶魔战利品", "name_es_ES": "Trofeo demoníaco", "name_ru_RU": "Демонический трофей", "name_it_IT": "Trofeo Demoniaco", "name_pt_PT": "Troféu do Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154744, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Demonic Fire", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9897000193595886, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Demonic Fire", "name_ko_KR": "악마의 불 부적", "name_fr_FR": "Charme de feu démoniaque", "name_de_DE": "Glücksbringer des Dämonenfeuers", "name_zh_CN": "魔火护符", "name_es_ES": "Talismán de fuego demoníaco", "name_ru_RU": "Талисман демонического огня", "name_it_IT": "Talismano del Fuoco Demoniaco", "name_pt_PT": "Patuá do Fogo Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154979, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482765, "buy_price": 2413828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.049299955368042, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153408, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154980, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 438413, "buy_price": 2192068, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9528999924659729, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153409, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154981, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 440069, "buy_price": 2200349, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9564999938011169, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153410, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154982, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 441772, "buy_price": 2208861, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9602000117301941, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153411, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154983, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bijou of the Golden City", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 443474, "buy_price": 2217372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638999700546265, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153412, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Bijou of the Golden City", "name_ko_KR": "황금 도시의 장신구", "name_fr_FR": "Bijou de la cité d’or", "name_de_DE": "Schmuckstück der Goldenen Stadt", "name_zh_CN": "黄金城宝石", "name_es_ES": "Joya de la ciudad dorada", "name_ru_RU": "Украшение Золотого города", "name_it_IT": "Bijou della Città Dorata", "name_pt_PT": "Bijuteria da Cidade Dourada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enchanted Devilsaur Claw", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 445176, "buy_price": 2225884, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153413, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Enchanted Devilsaur Claw", "name_ko_KR": "마법 깃든 데빌사우루스 발톱", "name_fr_FR": "Griffe de diablosaure enchantée", "name_de_DE": "Verzauberte Teufelssaurierklaue", "name_zh_CN": "附魔的魔暴龙之爪", "name_es_ES": "Garra de demosaurio encantada", "name_ru_RU": "Зачарованный коготь дьявозавра", "name_it_IT": "Artiglio di Gigantosauro Incantato", "name_pt_PT": "Garra de Demossauro Encantada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155564, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mercy's Psalter", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 184783, "buy_price": 923917, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0492000579833984, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161223, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mercy's Psalter", "name_ko_KR": "메르시의 성시집", "name_fr_FR": "Psautier de Clémence", "name_de_DE": "Huldas Psalter", "name_zh_CN": "仁慈诗篇", "name_es_ES": "Salterio de Mercy", "name_ru_RU": "Псалтырь Ангелы", "name_it_IT": "Libro dei Salmi di Mercy", "name_pt_PT": "Saltério de Clemência", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155565, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trunksy", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 167787, "buy_price": 838939, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9527000188827515, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Trunksy", "name_ko_KR": "코순이", "name_fr_FR": "Latrompe", "name_de_DE": "Rüsselchen", "name_zh_CN": "鼻鼻", "name_es_ES": "Trompita", "name_ru_RU": "Хоботуша", "name_it_IT": "Nasone", "name_pt_PT": "Trombinha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155567, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mr. Munchykins", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 169091, "buy_price": 845456, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.960099995136261, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mr. Munchykins", "name_ko_KR": "냠냠 씨", "name_fr_FR": "M. Mangetout", "name_de_DE": "Herr Leckermaul", "name_zh_CN": "芒基金先生", "name_es_ES": "Sr. Tragoncete", "name_ru_RU": "Мистер Манчи", "name_it_IT": "Signor Dino", "name_pt_PT": "Sr. Fofucho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155568, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Galewind Chimes", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 444813, "buy_price": 2224068, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9901999831199646, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Galewind Chimes", "name_ko_KR": "돌풍바람 풍경", "name_fr_FR": "Carillon du grand vent", "name_de_DE": "Böenwindspiel", "name_zh_CN": "狂风风铃", "name_es_ES": "Campanillas de vendaval", "name_ru_RU": "Песнь урагана", "name_it_IT": "Campane del Vento Burrascoso", "name_pt_PT": "Sininhos da Ventania", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155569, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mayor Striggs", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175044, "buy_price": 875220, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9939000010490417, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mayor Striggs", "name_ko_KR": "실밥 시장님", "name_fr_FR": "Maire Striggs", "name_de_DE": "Bürgermeister Stricks", "name_zh_CN": "斯崔格镇长", "name_es_ES": "Alcalde Striggs", "name_ru_RU": "Мэр Стриггс", "name_it_IT": "Sindaco Striggs", "name_pt_PT": "Prefeito Espiga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155881, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harlan's Loaded Dice", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 468487, "buy_price": 2342437, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0419000387191772, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Harlan's Loaded Dice", "name_ko_KR": "할란의 납 주사위", "name_fr_FR": "Dé pipé d’Harlan", "name_de_DE": "Harlans gezinkter Würfel", "name_zh_CN": "哈兰的注铅骰子", "name_es_ES": "Dados trucados de Harlan", "name_ru_RU": "Шулерские кости Харлана", "name_it_IT": "Dadi Truccati di Harlan", "name_pt_PT": "Dados Viciados de Arlão", "on_use": false, "id_encounter": 2095, "id_journal_instance": 1001, "id_map": 1754, "instance_type": 1}, {"id": 155947, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Living Flame", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 455, "buy_price": 2275, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9900000095367432, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Living Flame", "name_ko_KR": "살아있는 불꽃", "name_fr_FR": "Flamme vivante", "name_de_DE": "Lebende Flamme", "name_zh_CN": "活化烈焰", "name_es_ES": "Llama viva", "name_ru_RU": "Живой жар", "name_it_IT": "Fiamma Vivente", "name_pt_PT": "Chama Viva", "on_use": true, "id_encounter": 1639, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 155952, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Iron", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32297, "buy_price": 161485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0083999633789062, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Iron", "name_ko_KR": "무쇠의 심장", "name_fr_FR": "Cœur de fer", "name_de_DE": "Eisernes Herz", "name_zh_CN": "钢铁之心", "name_es_ES": "Corazón de hierro", "name_ru_RU": "Железное сердце", "name_it_IT": "Cuore di Ferro", "name_pt_PT": "Coração de Ferro", "on_use": true, "id_encounter": 1638, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156000, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wrathstone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30871, "buy_price": 154358, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638999700546265, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Wrathstone", "name_ko_KR": "분노의 돌", "name_fr_FR": "Pierre du courroux", "name_de_DE": "Zornstein", "name_zh_CN": "天谴之石", "name_es_ES": "Piedra de cólera", "name_ru_RU": "Камень гнева", "name_it_IT": "Pietra dell'Ira", "name_pt_PT": "Pedra da Ira", "on_use": true, "id_encounter": 1642, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pyrite Infuser", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33603, "buy_price": 168018, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0492000579833984, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Pyrite Infuser", "name_ko_KR": "황철석 주입기", "name_fr_FR": "Infuseur en pyrite", "name_de_DE": "Pyriteinspritzung", "name_zh_CN": "燃铁灌注器", "name_es_ES": "Inyector de pirita", "name_ru_RU": "Нагнетатель колчедана", "name_it_IT": "Infusore di Pirite", "name_pt_PT": "Infusor de Pirita", "on_use": false, "id_encounter": 1637, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156021, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Energy Siphon", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31832, "buy_price": 159163, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9939000010490417, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Energy Siphon", "name_ko_KR": "원기 흡수기", "name_fr_FR": "Siphon d’énergie", "name_de_DE": "Energiesiphon", "name_zh_CN": "能量虹吸", "name_es_ES": "Succión de energía", "name_ru_RU": "Вытягивание энергии", "name_it_IT": "Risucchio Energetico", "name_pt_PT": "Sifão de Energia", "on_use": true, "id_encounter": 1637, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156036, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of the Broodmother", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 448, "buy_price": 2241, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9753999710083008, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Eye of the Broodmother", "name_ko_KR": "여왕의 눈", "name_fr_FR": "Oeil de la mère des couvées", "name_de_DE": "Auge der Brutmutter", "name_zh_CN": "龙母之眼", "name_es_ES": "Ojo de la madre de linaje", "name_ru_RU": "Глаз матери стаи", "name_it_IT": "Occhio della Madre della Stirpe", "name_pt_PT": "Olho da Grande Mãe", "on_use": false, "id_encounter": 1639, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Furnace Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31829, "buy_price": 159147, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937999844551086, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Furnace Stone", "name_ko_KR": "용광로 돌", "name_fr_FR": "Pierre de la fournaise", "name_de_DE": "Stein des Eisenwerks", "name_zh_CN": "熔炉之石", "name_es_ES": "Piedra de caldera", "name_ru_RU": "Печной камень", "name_it_IT": "Pietra della Fornace", "name_pt_PT": "Pedra da Fornalha", "on_use": true, "id_encounter": 1638, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156187, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scale of Fates", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30996, "buy_price": 154983, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9678000211715698, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Scale of Fates", "name_ko_KR": "숙명의 비늘", "name_fr_FR": "Écaille des destinées", "name_de_DE": "Waagschale der Schicksale", "name_zh_CN": "命运之鳞", "name_es_ES": "Escama de fortunas", "name_ru_RU": "Чешуйка судеб", "name_it_IT": "Scaglia dei Destini", "name_pt_PT": "Balança do Destino", "on_use": true, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156207, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pandora's Plea", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 444, "buy_price": 2223, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9677000045776367, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Pandora's Plea", "name_ko_KR": "판도라의 탄원", "name_fr_FR": "Supplique de Pandore", "name_de_DE": "Pandoras Bitte", "name_zh_CN": "潘多拉的恳求", "name_es_ES": "Petición de Pandora", "name_ru_RU": "Мольба Пандоры", "name_it_IT": "Canto di Pandora", "name_pt_PT": "Apelo de Pandora", "on_use": false, "id_encounter": 1647, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156221, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The General's Heart", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33488, "buy_price": 167442, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455999374389648, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "The General's Heart", "name_ko_KR": "장군의 심장", "name_fr_FR": "Le cœur du général", "name_de_DE": "Das Herz des Generals", "name_zh_CN": "将军之心", "name_es_ES": "El corazón del General", "name_ru_RU": "Сердце генерала", "name_it_IT": "Cuore del Generale", "name_pt_PT": "O Coração do General", "on_use": false, "id_encounter": 1648, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156230, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flare of the Heavens", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 461, "buy_price": 2309, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0051000118255615, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Flare of the Heavens", "name_ko_KR": "천상의 빛줄기", "name_fr_FR": "Embrasement des cieux", "name_de_DE": "Leuchtfeuer der Himmel", "name_zh_CN": "天堂之焰", "name_es_ES": "Bengala de los cielos", "name_ru_RU": "Небесная вспышка", "name_it_IT": "Fiamma del Paradiso", "name_pt_PT": "Labareda dos Céus", "on_use": false, "id_encounter": 1648, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156234, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood of the Old God", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32662, "buy_price": 163310, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0197999477386475, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Blood of the Old God", "name_ko_KR": "고대 신의 피", "name_fr_FR": "Sang du Dieu très ancien", "name_de_DE": "Blut des Alten Gottes", "name_zh_CN": "古神之血", "name_es_ES": "Sangre del dios antiguo", "name_ru_RU": "Кровь Древнего бога", "name_it_IT": "Sangue del Dio Antico", "name_pt_PT": "Sangue do Deus Antigo", "on_use": false, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156245, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Show of Faith", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31598, "buy_price": 157994, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9865999817848206, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Show of Faith", "name_ko_KR": "신념의 표시", "name_fr_FR": "Démonstration de foi", "name_de_DE": "Demonstration des Glaubens", "name_zh_CN": "信仰的证明", "name_es_ES": "Prueba de fe", "name_ru_RU": "Доказательство веры", "name_it_IT": "Icona della Fede", "name_pt_PT": "Prova da Fé", "on_use": false, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156277, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Hope", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30647, "buy_price": 153237, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9569000005722046, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Hope", "name_ko_KR": "희망의 불꽃", "name_fr_FR": "Étincelle d’espoir", "name_de_DE": "Funken der Hoffnung", "name_zh_CN": "希望的火花", "name_es_ES": "Chispa de esperanza", "name_ru_RU": "Искра надежды", "name_it_IT": "Barlume di Speranza", "name_pt_PT": "Centelha de Esperança", "on_use": false, "id_encounter": 1642, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156288, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elemental Focus Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 458, "buy_price": 2291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973000288009644, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Elemental Focus Stone", "name_ko_KR": "정기 집중의 돌", "name_fr_FR": "Pierre de focalisation élémentaire", "name_de_DE": "Elementarer Fokusstein", "name_zh_CN": "元素聚焦之石", "name_es_ES": "Piedra de enfoque elemental", "name_ru_RU": "Камень средоточия стихий", "name_it_IT": "Pietra del Focus Elementale", "name_pt_PT": "Pedra da Concentração Elemental", "on_use": false, "id_encounter": 1643, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sif's Remembrance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32787, "buy_price": 163935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0236999988555908, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sif's Remembrance", "name_ko_KR": "시프의 추억", "name_fr_FR": "Souvenir de Sif", "name_de_DE": "Sifs Erinnerung", "name_zh_CN": "西芙的记忆", "name_es_ES": "Recuerdo de Sif", "name_ru_RU": "Воспоминание Сиф", "name_it_IT": "Ricordo di Sif", "name_pt_PT": "Lembrança de Sif", "on_use": false, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mjolnir Runestone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33020, "buy_price": 165104, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031000018119812, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mjolnir Runestone", "name_ko_KR": "묠니르 마법석", "name_fr_FR": "Pierre runique de Mjolnir", "name_de_DE": "Runenstein von Mjolnir", "name_zh_CN": "雷神符石", "name_es_ES": "Piedra rúnica de Mjolnir", "name_ru_RU": "Рунический камень Мьольнира", "name_it_IT": "Pietra Runica di Mjolnir", "name_pt_PT": "Pedra Rúnica de Mjolnir", "on_use": false, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156345, "race_mask": 18446744073709551615, "desc": "Covered in blood that doesn't seem to wash away.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of King Llane", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32425, "buy_price": 162125, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0124000310897827, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Royal Seal of King Llane", "name_ko_KR": "국왕 레인의 옥새", "name_fr_FR": "Sceau royal du roi Llane", "name_de_DE": "König Llanes hoheitliches Siegel", "name_zh_CN": "莱恩国王的皇家徽记", "name_es_ES": "Sello real del rey Llane", "name_ru_RU": "Печать короля Ллейна", "name_it_IT": "Sigillo Reale di Re Llane", "name_pt_PT": "Selo Real do Rei Llane", "on_use": true, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156458, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vanquished Clutches of Yogg-Saron", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 465, "buy_price": 2326, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0124000310897827, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Vanquished Clutches of Yogg-Saron", "name_ko_KR": "요그사론의 패배한 손", "name_fr_FR": "Étreintes de Yogg-Saron vaincu", "name_de_DE": "Bezwungene Klauen von Yogg-Saron", "name_zh_CN": "被征服的尤格-萨隆之爪", "name_es_ES": "Garras derrotadas de Yogg-Saron", "name_ru_RU": "Ослабшая хватка Йогг-Сарона", "name_it_IT": "Chele Dominate di Yogg-Saron", "name_pt_PT": "Garras Subjugadas de Yogg-Saron", "on_use": true, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 157746, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Graven Keepsake", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 5, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9569000005722046, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 16, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 2, "name_en_US": "Graven Keepsake", "name_ko_KR": "새김무늬 기념물", "name_fr_FR": "Souvenir sculpté", "name_de_DE": "Geschnitztes Andenken", "name_zh_CN": "雕饰纪念品", "name_es_ES": "Recuerdo grabado", "name_ru_RU": "Сувенир с гравировкой", "name_it_IT": "Pegno Inciso", "name_pt_PT": "Lembrança Gravada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 157747, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Illuminated Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 5, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9606000185012817, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 16, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 2, "name_en_US": "Illuminated Charm", "name_ko_KR": "찬란한 부적", "name_fr_FR": "Charme illuminé", "name_de_DE": "Illuminierter Glücksbringer", "name_zh_CN": "光辉护符", "name_es_ES": "Talismán iluminado", "name_ru_RU": "Светящийся оберег", "name_it_IT": "Talismano Illuminato", "name_pt_PT": "Patuá Iluminado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 157763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Engine of Eradication", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294723, "buy_price": 1473617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0458999872207642, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Engine of Eradication", "name_ko_KR": "박멸의 기계", "name_fr_FR": "Vecteur d’éradication", "name_de_DE": "Auslöschungsmaschine", "name_zh_CN": "灭绝引擎", "name_es_ES": "Dispositivo de erradicación", "name_ru_RU": "Двигатель искоренения", "name_it_IT": "Congegno dell'Estirpazione", "name_pt_PT": "Engenho da Erradicação", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 157764, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Claw of the Crystalline Scorpid", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295737, "buy_price": 1478689, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0494999885559082, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Claw of the Crystalline Scorpid", "name_ko_KR": "수정 전갈의 집게", "name_fr_FR": "Pince du scorpide cristallin", "name_de_DE": "Klaue des kristallinen Skorpiden", "name_zh_CN": "晶化幼蝎之爪", "name_es_ES": "Pinza del escórpido cristalino", "name_ru_RU": "Коготь кристаллического скорпида", "name_it_IT": "Pungiglione di Scorpide Cristallino", "name_pt_PT": "Garra do Escorpídeo Cristalino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 157765, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draught of Souls", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 268573, "buy_price": 1342867, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9531000256538391, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Draught of Souls", "name_ko_KR": "영혼의 비약", "name_fr_FR": "Breuvage des âmes", "name_de_DE": "Destillat der Seelen", "name_zh_CN": "灵魂之引", "name_es_ES": "Jarabe de almas", "name_ru_RU": "Настой душ", "name_it_IT": "Fiasca d'Anime", "name_pt_PT": "Tragada das Almas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 157766, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Nightmare Fog", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269616, "buy_price": 1348080, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9567999839782715, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Nightmare Fog", "name_ko_KR": "악몽 안개 약병", "name_fr_FR": "Fiole de brouillard cauchemardesque", "name_de_DE": "Phiole mit Alptraumnebel", "name_zh_CN": "一瓶梦魇之雾", "name_es_ES": "Vial de niebla de la Pesadilla", "name_ru_RU": "Фиал кошмарного тумана", "name_it_IT": "Fiala di Nebbia dell'Incubo", "name_pt_PT": "Frasco de Nevoeiro do Pesadelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158153, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gilded Loa Figurine", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 454786, "buy_price": 2273932, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0124000310897827, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Gilded Loa Figurine", "name_ko_KR": "화려한 로아 조각상", "name_fr_FR": "Figurine de Loa dorée", "name_de_DE": "Vergoldete Loafigur", "name_zh_CN": "鎏金洛阿神灵造像", "name_es_ES": "Figurilla de loa dorada", "name_ru_RU": "Золоченая статуэтка лоа", "name_it_IT": "Statuetta del Loa Dorata", "name_pt_PT": "Estatueta Dourada de Loa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158154, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Zandalar", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 456448, "buy_price": 2282242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0161000490188599, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Emblem of Zandalar", "name_ko_KR": "잔달라의 문장", "name_fr_FR": "Emblème de Zandalar", "name_de_DE": "Emblem von Zandalar", "name_zh_CN": "赞达拉纹章", "name_es_ES": "Emblema de Zandalar", "name_ru_RU": "Зандаларская эмблема", "name_it_IT": "Emblema di Zandalar", "name_pt_PT": "Emblema de Zandalar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158155, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dinobone Charm", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 458065, "buy_price": 2290328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.019700050354004, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Dinobone Charm", "name_ko_KR": "공룡뼈 부적", "name_fr_FR": "Charme en os de dinosaure", "name_de_DE": "Dinoknochentalisman", "name_zh_CN": "恐龙骨护符", "name_es_ES": "Talismán de hueso de dinosaurio", "name_ru_RU": "Амулет из кости ящера", "name_it_IT": "Talismano d'Ossa di Dinosauro", "name_pt_PT": "Patuá de Osso de Dino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158162, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pearl Diver's Compass", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 436593, "buy_price": 2182965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9718999862670898, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Pearl Diver's Compass", "name_ko_KR": "진주 잠수부의 나침반", "name_fr_FR": "Boussole de pêcheur de perle", "name_de_DE": "Perlentaucherkompass", "name_zh_CN": "采珠人的罗盘", "name_es_ES": "Brújula de buscador de perlas", "name_ru_RU": "Компас ныряльщика за жемчугом", "name_it_IT": "Bussola del Cercatore di Perle", "name_pt_PT": "Bússola do Mergulhador Peroleiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "First Mate's Spyglass", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 438210, "buy_price": 2191051, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9754999876022339, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "First Mate's Spyglass", "name_ko_KR": "일등항해사의 망원경", "name_fr_FR": "Longue-vue de second", "name_de_DE": "Fernrohr des Ersten Maats", "name_zh_CN": "大副的望远镜", "name_es_ES": "Catalejo de contramaestre", "name_ru_RU": "Подзорная труба первого помощника", "name_it_IT": "Cannocchiale del Primo Ufficiale", "name_pt_PT": "Luneta do Imediato", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158164, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Plunderbeard's Flask", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 439872, "buy_price": 2199362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.979200005531311, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Plunderbeard's Flask", "name_ko_KR": "플런더비어드의 영약", "name_fr_FR": "Flacon de Barbapille", "name_de_DE": "Ramschbarts Buddel", "name_zh_CN": "普兰比尔德的合剂", "name_es_ES": "Frasco de Barbarrapiña", "name_ru_RU": "Фляга Жадноборода", "name_it_IT": "Fiasca di Fregabarba", "name_pt_PT": "Frasco de Barbapilha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158215, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whirlwing's Plumage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 469835, "buy_price": 2349175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0458999872207642, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Whirlwing's Plumage", "name_ko_KR": "휘리릭날개의 깃털", "name_fr_FR": "Plumage d’Aile-du-Vent", "name_de_DE": "Wirbelschwinges Gefieder", "name_zh_CN": "旋风之翼飞羽", "name_es_ES": "Plumaje de Alatornado", "name_ru_RU": "Перо Вихрекрыла", "name_it_IT": "Piumaggio del Turbine", "name_pt_PT": "Plumagem de Espiralasa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158216, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Living Oil Canister", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 471452, "buy_price": 2357261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0494999885559082, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Living Oil Canister", "name_ko_KR": "살아있는 기름통", "name_fr_FR": "Ampoule d’huile bouillonnante", "name_de_DE": "Lebender Ölkanister", "name_zh_CN": "活油罐", "name_es_ES": "Bote de petróleo viviente", "name_ru_RU": "Канистра с бурлящей нефтью", "name_it_IT": "Contenitore d'Olio Vivente", "name_pt_PT": "Cilindro de Óleo Vivo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158218, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dadalea's Wing", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 429809, "buy_price": 2149049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9567999839782715, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Dadalea's Wing", "name_ko_KR": "다달리아의 날개", "name_fr_FR": "Aile de Dadalea", "name_de_DE": "Dadaleas Flügel", "name_zh_CN": "代达勒娅之翼", "name_es_ES": "Ala de Dadalea", "name_ru_RU": "Крыло Дадалии", "name_it_IT": "Ala di Dadalea", "name_pt_PT": "Asa de Dandara", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158219, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petula's Locket", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 169144, "buy_price": 845720, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9603999853134155, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159763, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Petula's Locket", "name_ko_KR": "페툴라의 정표", "name_fr_FR": "Médaillon de Petula", "name_de_DE": "Petulas Medaillon", "name_zh_CN": "佩图拉的坠饰", "name_es_ES": "Guardapelo de Petula", "name_ru_RU": "Медальон Петулы", "name_it_IT": "Medaglione di Petula", "name_pt_PT": "Medalhão de Pétala", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158220, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cooper's Horseshoe", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 174462, "buy_price": 872314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9905999898910522, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159764, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cooper's Horseshoe", "name_ko_KR": "쿠퍼의 편자", "name_fr_FR": "Fer à cheval de Cooper", "name_de_DE": "Böttchers Hufeisen", "name_zh_CN": "库珀的马掌", "name_es_ES": "Herradura de Cooper", "name_ru_RU": "Подкова бондаря", "name_it_IT": "Zoccolo di Cooper", "name_pt_PT": "Ferradura de Cooper", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158224, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Storms", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 451596, "buy_price": 2257984, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053000450134277, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Storms", "name_ko_KR": "폭풍의 약병", "name_fr_FR": "Fiole des tempêtes", "name_de_DE": "Phiole der Stürme", "name_zh_CN": "暴风之瓶", "name_es_ES": "Vial de tormentas", "name_ru_RU": "Фиал бури", "name_it_IT": "Fiala delle Tempeste", "name_pt_PT": "Frasco das Tempestades", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158225, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Over-Engineered Flash Bulb", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 177703, "buy_price": 888517, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0089999437332153, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159765, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Over-Engineered Flash Bulb", "name_ko_KR": "과도한 기술의 섬광구", "name_fr_FR": "Ampoule sur-bricolée", "name_de_DE": "Übertrieben komplizierte Blitzleuchte", "name_zh_CN": "过度调试的闪光灯", "name_es_ES": "Bombilla de destello muy sofisticada", "name_ru_RU": "Технически переусложненная вспышечная лампа", "name_it_IT": "Lampadina Ultraingegneristica", "name_pt_PT": "Lâmpada de Flash Supercomplexa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "My'das Talisman", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2375, "buy_price": 11877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0127999782562256, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "My'das Talisman", "name_ko_KR": "마이다스의 부적", "name_fr_FR": "Talisman de My’das", "name_de_DE": "My'dastalisman", "name_zh_CN": "点金护符", "name_es_ES": "Talismán de My'das", "name_ru_RU": "Талисман Ми'даса", "name_it_IT": "Talismano di My'das", "name_pt_PT": "Talismã de My'das", "on_use": true, "id_encounter": 2082, "id_journal_instance": 968, "id_map": 1763, "instance_type": 1}, {"id": 158320, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Revitalizing Voodoo Totem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2384, "buy_price": 11920, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0164999961853027, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Revitalizing Voodoo Totem", "name_ko_KR": "활력의 부두 토템", "name_fr_FR": "Totem vaudou revitalisant", "name_de_DE": "Lebenspendendes Voodoototem", "name_zh_CN": "活力巫毒图腾", "name_es_ES": "Tótem vudú revitalizante", "name_ru_RU": "Исцеляющий тотем вуду", "name_it_IT": "Totem del Vudù Rivitalizzante", "name_pt_PT": "Totem Vodu Revitalizante", "on_use": true, "id_encounter": 2036, "id_journal_instance": 968, "id_map": 1763, "instance_type": 1}, {"id": 158367, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Merektha's Fang", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 435393, "buy_price": 2176967, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9682999849319458, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Merektha's Fang", "name_ko_KR": "메레크타의 송곳니", "name_fr_FR": "Croc de Merekpha", "name_de_DE": "Merekthas Fangzahn", "name_zh_CN": "米利克萨之牙", "name_es_ES": "Colmillo de Merektha", "name_ru_RU": "Клык Меректы", "name_it_IT": "Zanna di Merektha", "name_pt_PT": "Presa de Merektha", "on_use": true, "id_encounter": 2143, "id_journal_instance": 1030, "id_map": 1877, "instance_type": 1}, {"id": 158368, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fangs of Intertwined Essence", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 437057, "buy_price": 2185285, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fangs of Intertwined Essence", "name_ko_KR": "엮인 정수의 송곳니", "name_fr_FR": "Crochets d’essence entrelacée", "name_de_DE": "Fangzähne der verknüpften Essenz", "name_zh_CN": "缠结精华之牙", "name_es_ES": "Colmillos de esencia entrelazada", "name_ru_RU": "Клыки переплетенной сущности", "name_it_IT": "Zanne dell'Essenza Intrecciata", "name_pt_PT": "Presas de Essência Interligada", "on_use": true, "id_encounter": 2145, "id_journal_instance": 1030, "id_map": 1877, "instance_type": 1}, {"id": 158374, "race_mask": 18446744073709551615, "desc": "Phenomenal lightning power, itty bitty containment space.", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Electromental in a Jar", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446949, "buy_price": 2234746, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940000176429749, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Tiny Electromental in a Jar", "name_ko_KR": "단지 안의 전자정령", "name_fr_FR": "Petit électromentaire en bouteille", "name_de_DE": "Winziger Elektromentar im Glas", "name_zh_CN": "瓶中的电荷元素", "name_es_ES": "Electromental diminuto en un tarro", "name_ru_RU": "Крохотный электроменталь в банке", "name_it_IT": "Piccolo Elettromentale Sottovuoto", "name_pt_PT": "Eletromental Pequeno no Pote", "on_use": false, "id_encounter": 2144, "id_journal_instance": 1030, "id_map": 1877, "instance_type": 1}, {"id": 158511, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 378568, "buy_price": 1892841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035099983215332, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158512, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 379921, "buy_price": 1899607, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0388000011444092, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158513, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 381238, "buy_price": 1906190, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0424000024795532, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382591, "buy_price": 1912956, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0461000204086304, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158515, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oceanographer's Weather Log", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 383944, "buy_price": 1919722, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0498000383377075, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Oceanographer's Weather Log", "name_ko_KR": "바다 낚시꾼의 날씨 일지", "name_fr_FR": "Journal météorologique d’océanographe", "name_de_DE": "Wetteraufzeichnungen des Meeresforschers", "name_zh_CN": "海洋学家的气候日志", "name_es_ES": "Informe meteorológico de oceanógrafo", "name_ru_RU": "Журнал погоды океанографа", "name_it_IT": "Diario Meteorologico dell'Oceanografo", "name_pt_PT": "Registro Climático do Oceanógrafo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Privateer's Spyglass", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 348688, "buy_price": 1743440, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9534000158309937, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Privateer's Spyglass", "name_ko_KR": "선원의 망원경", "name_fr_FR": "Longue-vue de corsaire", "name_de_DE": "Freibeuterfernrohr", "name_zh_CN": "水手的望远镜", "name_es_ES": "Catalejo de corsario", "name_ru_RU": "Пиратская подзорная труба", "name_it_IT": "Cannocchiale del Corsaro", "name_pt_PT": "Luneta do Corsário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158555, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Doom Shroom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 471452, "buy_price": 2357261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0494999885559082, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Doom Shroom", "name_ko_KR": "파멸의 버섯", "name_fr_FR": "Champignon funeste", "name_de_DE": "Verdammnispilz", "name_zh_CN": "毁灭蘑菇", "name_es_ES": "Seta de calamidad", "name_ru_RU": "Роковой гриб", "name_it_IT": "Fungo della Rovina", "name_pt_PT": "Cogumelo da Ruína", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158556, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Siren's Tongue", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 428147, "buy_price": 2140739, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9531000256538391, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Siren's Tongue", "name_ko_KR": "세이렌의 혀", "name_fr_FR": "Langue de sirène", "name_de_DE": "Sirenenzunge", "name_zh_CN": "海妖之舌", "name_es_ES": "Lengua de sirena", "name_ru_RU": "Язык сирены", "name_it_IT": "Lingua della Sirena", "name_pt_PT": "Língua da Sirena", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158557, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heartsbane Charm", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 168510, "buy_price": 842550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9567999839782715, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159078, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Heartsbane Charm", "name_ko_KR": "심장파멸 부적", "name_fr_FR": "Charme malecarde", "name_de_DE": "Herzbannamulett", "name_zh_CN": "毒心护符", "name_es_ES": "Talismán Aterracorazón", "name_ru_RU": "Оберег ковена Мертвых Сердец", "name_it_IT": "Talismano delle Frangicuore", "name_pt_PT": "Patuá Sangra-coração", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158558, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Luminous Honey Jar", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 173811, "buy_price": 869056, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868999719619751, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159978, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Luminous Honey Jar", "name_ko_KR": "영롱한 꿀단지", "name_fr_FR": "Pot de miel lumineux", "name_de_DE": "Leuchtender Honigtopf", "name_zh_CN": "夜光蜂蜜罐", "name_es_ES": "Tarro de miel luminoso", "name_ru_RU": "Светящаяся баночка меда", "name_it_IT": "Vaso di Miele Luminoso", "name_pt_PT": "Pote de Mel Luminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158570, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 377068, "buy_price": 1885344, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031000018119812, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158571, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 378422, "buy_price": 1892110, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0347000360488892, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 379775, "buy_price": 1898876, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384000539779663, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158573, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 381091, "buy_price": 1905459, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0420000553131104, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158574, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bijou of the Golden City", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 355527, "buy_price": 1777636, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972100019454956, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Bijou of the Golden City", "name_ko_KR": "황금 도시의 장신구", "name_fr_FR": "Bijou de la cité d’or", "name_de_DE": "Schmuckstück der Goldenen Stadt", "name_zh_CN": "黄金城宝石", "name_es_ES": "Joya de la ciudad dorada", "name_ru_RU": "Украшение Золотого города", "name_it_IT": "Bijou della Città Dorata", "name_pt_PT": "Bijuteria da Cidade Dourada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158575, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enchanted Devilsaur Claw", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 356880, "buy_price": 1784402, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9757999777793884, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Enchanted Devilsaur Claw", "name_ko_KR": "마법 깃든 데빌사우루스 발톱", "name_fr_FR": "Griffe de diablosaure enchantée", "name_de_DE": "Verzauberte Teufelssaurierklaue", "name_zh_CN": "附魔的魔暴龙之爪", "name_es_ES": "Garra de demosaurio encantada", "name_ru_RU": "Зачарованный коготь дьявозавра", "name_it_IT": "Artiglio di Gigantosauro Incantato", "name_pt_PT": "Garra de Demossauro Encantada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158679, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Maokka's Carving", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 178989, "buy_price": 894945, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0162999629974365, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161182, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Maokka's Carving", "name_ko_KR": "마오카의 새김석", "name_fr_FR": "Gravure de Maokka", "name_de_DE": "Maokkas Schnitzarbeit", "name_zh_CN": "毛卡的雕刻", "name_es_ES": "Talla de Maokka", "name_ru_RU": "Безделушка Маокки", "name_it_IT": "Intaglio di Maokka", "name_pt_PT": "Entalhe de Maokka", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158680, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rikal's Ritual Beads", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 179640, "buy_price": 898203, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0199999809265137, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159976, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rikal's Ritual Beads", "name_ko_KR": "리칼의 의식용 구슬", "name_fr_FR": "Chapelet rituel de Rikal", "name_de_DE": "Rikals Ritualperlen", "name_zh_CN": "里卡尔的仪式念珠", "name_es_ES": "Cuentas rituales de Rikal", "name_ru_RU": "Ритуальные четки Рикала", "name_it_IT": "Perle Rituali di Rikal", "name_pt_PT": "Contas de Oração de Rikal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158681, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning Tether", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180292, "buy_price": 901461, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0236999988555908, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159979, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lightning Tether", "name_ko_KR": "번개 올가미", "name_fr_FR": "Longe éclair", "name_de_DE": "Blitzkette", "name_zh_CN": "闪电之链", "name_es_ES": "Collar de relámpagos", "name_ru_RU": "Привязь молнии", "name_it_IT": "Fune di Fulmini", "name_pt_PT": "Corrente Elétrica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158712, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rezan's Gleaming Eye", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2322, "buy_price": 11614, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904000163078308, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rezan's Gleaming Eye", "name_ko_KR": "레잔의 번뜩이는 눈", "name_fr_FR": "Œil luisant de Rezan", "name_de_DE": "Rezans glänzendes Auge", "name_zh_CN": "莱赞的微光之眼", "name_es_ES": "Ojo reluciente de Rezan", "name_ru_RU": "Сияющий глаз Резана", "name_it_IT": "Occhio Luminoso di Rezan", "name_pt_PT": "Olho Brilhante de Rezan", "on_use": false, "id_encounter": 2083, "id_journal_instance": 968, "id_map": 1763, "instance_type": 1}, {"id": 159074, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jarkadiax's Other Eye", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180996, "buy_price": 904984, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276999473571777, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 155569, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Jarkadiax's Other Eye", "name_ko_KR": "자르카디악스의 다른 눈", "name_fr_FR": "Deuxième œil de Jarkadiax", "name_de_DE": "Jarkadiax' anderes Auge", "name_zh_CN": "加卡迪克斯的另一只眼珠", "name_es_ES": "Otro ojo de Jarkadiax", "name_ru_RU": "Второй глаз Джаркадиакса", "name_it_IT": "Altro Occhio di Jarkadiax", "name_pt_PT": "Outro Olho de Jarkadiax", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159075, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodhex Talisman", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 181648, "buy_price": 908242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 155565, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Bloodhex Talisman", "name_ko_KR": "혈저주 부적", "name_fr_FR": "Talisman de maléfice", "name_de_DE": "Talisman der Blutverhexung", "name_zh_CN": "鲜血妖术护符", "name_es_ES": "Talismán de maldición de sangre", "name_ru_RU": "Талисман кровавой порчи", "name_it_IT": "Talismano della Maledizione del Sangue", "name_pt_PT": "Talismã da Bagata Sanguínea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159077, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticker's Spare Catalyst", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 182951, "buy_price": 914758, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0388000011444092, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 155567, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ticker's Spare Catalyst", "name_ko_KR": "티커의 예비 촉매", "name_fr_FR": "Catalyseur de rechange de Tocant", "name_de_DE": "Tickers Ersatzkatalysator", "name_zh_CN": "钟摆的备用催化剂", "name_es_ES": "Catalizador de repuesto de Tictac", "name_ru_RU": "Запасной катализатор Тиккера", "name_it_IT": "Catalizzatore di Scorta di Schiaffo", "name_pt_PT": "Catalisador Sobressalente de Tique", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159078, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Potency Manipulator", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 183585, "buy_price": 917929, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0424000024795532, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158557, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Potency Manipulator", "name_ko_KR": "위력 조작기", "name_fr_FR": "Manipulateur de toute-puissance", "name_de_DE": "Potenzmanipulator", "name_zh_CN": "效能操纵器", "name_es_ES": "Manipulador de potencia", "name_ru_RU": "Регулятор мощности", "name_it_IT": "Manipolatore della Potenza", "name_pt_PT": "Manipulador de Potência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159125, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Fathoms", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9943000078201294, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Fathoms", "name_ko_KR": "다크문 카드 한 벌: 나락", "name_fr_FR": "Suite de Sombrelune : Fonds", "name_de_DE": "Dunkelmondkartenset: Tiefen", "name_zh_CN": "暗月套牌:深渊", "name_es_ES": "Colección de la Luna Negra: Profundidades", "name_ru_RU": "Колода карт Новолуния \"Глубины\"", "name_it_IT": "Mazzo degli Abissi di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Profundezas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159126, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Squalls", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9980000257492065, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Squalls", "name_ko_KR": "다크문 카드 한 벌: 돌풍", "name_fr_FR": "Suite de Sombrelune : Bourrasques", "name_de_DE": "Dunkelmondkartenset: Sturmböen", "name_zh_CN": "暗月套牌:狂风", "name_es_ES": "Colección de la Luna Negra: Borrascas", "name_ru_RU": "Колода карт Новолуния \"Шквал\"", "name_it_IT": "Mazzo delle Burrasche di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Rajadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159127, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Tides", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0016000270843506, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Tides", "name_ko_KR": "다크문 카드 한 벌: 파도", "name_fr_FR": "Suite de Sombrelune : Marées", "name_de_DE": "Dunkelmondkartenset: Gezeiten", "name_zh_CN": "暗月套牌:浪涛", "name_es_ES": "Colección de la Luna Negra: Mareas", "name_ru_RU": "Колода карт Новолуния \"Приливы\"", "name_it_IT": "Mazzo delle Maree di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Marés", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159128, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Blockades", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0053000450134277, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Blockades", "name_ko_KR": "다크문 카드 한 벌: 봉쇄", "name_fr_FR": "Suite de Sombrelune : Blocus", "name_de_DE": "Dunkelmondkartenset: Blockaden", "name_zh_CN": "暗月套牌:封锁", "name_es_ES": "Colección de la Luna Negra: Bloqueos", "name_ru_RU": "Колода карт Новолуния \"Блокада\"", "name_it_IT": "Mazzo delle Barricate di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Bloqueios", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159610, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vessel of Skittering Shadows", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2271, "buy_price": 11355, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9682999849319458, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Vessel of Skittering Shadows", "name_ko_KR": "기어다니는 암흑의 유리병", "name_fr_FR": "Réceptacle d’ombres fourmillantes", "name_de_DE": "Gefäß der krabbelnden Schatten", "name_zh_CN": "飞掠之影容器", "name_es_ES": "Vasija de sombras reptadoras", "name_ru_RU": "Сосуд ползучих теней", "name_it_IT": "Vaso d'Ombre Striscianti", "name_pt_PT": "Receptáculo das Sombras Pateantes", "on_use": false, "id_encounter": 2030, "id_journal_instance": 968, "id_map": 1763, "instance_type": 1}, {"id": 159611, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Razdunk's Big Red Button", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 437057, "buy_price": 2185285, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Razdunk's Big Red Button", "name_ko_KR": "라즈덩크의 큰 적색 단추", "name_fr_FR": "Gros bouton rouge de Razzbam", "name_de_DE": "Ratztunks großer roter Knopf", "name_zh_CN": "拉兹敦克的大红按钮", "name_es_ES": "Gran botón rojo de Razdunk", "name_ru_RU": "Большая красная кнопка Разданка", "name_it_IT": "Grosso Pulsante Rosso di Trucirazzi", "name_pt_PT": "Grande Botão Vermelho de Frustrus", "on_use": true, "id_encounter": 2116, "id_journal_instance": 1012, "id_map": 1594, "instance_type": 1}, {"id": 159612, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Azerokk's Resonating Heart", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 438675, "buy_price": 2193379, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.975600004196167, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Azerokk's Resonating Heart", "name_ko_KR": "아제로크의 공명하는 심장", "name_fr_FR": "Cœur résonnant d’Azerokk", "name_de_DE": "Azerokks resonierendes Herz", "name_zh_CN": "艾泽洛克的共鸣之心", "name_es_ES": "Corazón resonador de Azerokk", "name_ru_RU": "Резонирующее сердце Азерокка", "name_it_IT": "Cuore Risonante di Azerokk", "name_pt_PT": "Coração Ressoante de Azerokk", "on_use": false, "id_encounter": 2114, "id_journal_instance": 1012, "id_map": 1594, "instance_type": 1}, {"id": 159614, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Galecaller's Boon", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442003, "buy_price": 2210016, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9829999804496765, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Galecaller's Boon", "name_ko_KR": "강풍술사의 은혜", "name_fr_FR": "Faveur de mande-trombe", "name_de_DE": "Segen der Sturmbeschwörerin", "name_zh_CN": "唤风者之赐", "name_es_ES": "Favor de clamavendavales", "name_ru_RU": "Дар призывательницы штормов", "name_it_IT": "Dono dell'Invocabrezza", "name_pt_PT": "Bênção do Chamatormenta", "on_use": true, "id_encounter": 2154, "id_journal_instance": 1036, "id_map": 1864, "instance_type": 1}, {"id": 159615, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ignition Mage's Fuse", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2314, "buy_price": 11571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9866999983787537, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ignition Mage's Fuse", "name_ko_KR": "점화 마법사의 도화선", "name_fr_FR": "Mèche de la mageflamme", "name_de_DE": "Zünder der Brandmagierin", "name_zh_CN": "炎法师的引线", "name_es_ES": "Mecha del mago de ignición", "name_ru_RU": "Запал мага-поджигателя", "name_it_IT": "Miccia della Maga dell'Ignizione", "name_pt_PT": "Estopim do Mago de Ignição", "on_use": true, "id_encounter": 2099, "id_journal_instance": 1002, "id_map": 1771, "instance_type": 1}, {"id": 159616, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gore-Crusted Butcher's Block", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2322, "buy_price": 11613, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9902999997138977, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Gore-Crusted Butcher's Block", "name_ko_KR": "선혈껍질 도살자의 돌판", "name_fr_FR": "Billot de boucher incrusté de sang", "name_de_DE": "Blutverkrusteter Schlachtblock", "name_zh_CN": "血渍屠夫隔板", "name_es_ES": "Bloque de carnicero con costra de sangre", "name_ru_RU": "Залитый кровью блок мясника", "name_it_IT": "Ceppo del Macellaio Sporco di Sangue", "name_pt_PT": "Bloco Ensanguentado do Açougueiro", "on_use": false, "id_encounter": 2127, "id_journal_instance": 1021, "id_map": 1862, "instance_type": 1}, {"id": 159617, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lustrous Golden Plumage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446949, "buy_price": 2234746, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940000176429749, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Lustrous Golden Plumage", "name_ko_KR": "반짝이는 금빛 깃털", "name_fr_FR": "Plumage doré satiné", "name_de_DE": "Glänzend goldenes Gefieder", "name_zh_CN": "金辉飞羽", "name_es_ES": "Plumaje dorado lustroso", "name_ru_RU": "Блестящий золотой плюмаж", "name_it_IT": "Piumaggio Dorato Lucido", "name_pt_PT": "Plumagem Dourada Lustrosa", "on_use": true, "id_encounter": 2165, "id_journal_instance": 1041, "id_map": 1762, "instance_type": 1}, {"id": 159618, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mchimba's Ritual Bandages", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 448613, "buy_price": 2243065, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9976999759674072, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mchimba's Ritual Bandages", "name_ko_KR": "음침바의 의식 붕대", "name_fr_FR": "Bandages rituels de Mchimba", "name_de_DE": "Mchimbas Ritualbandagen", "name_zh_CN": "姆沁巴的仪式绷带", "name_es_ES": "Vendajes rituales de Mchimba", "name_ru_RU": "Ритуальные бинты Мчимбы", "name_it_IT": "Bende Rituali di Mchimba", "name_pt_PT": "Bandagens Rituais de Muquimba", "on_use": true, "id_encounter": 2171, "id_journal_instance": 1041, "id_map": 1762, "instance_type": 1}, {"id": 159619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Briny Barnacle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 462192, "buy_price": 2310961, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027899980545044, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Briny Barnacle", "name_ko_KR": "바닷물 따개비", "name_fr_FR": "Bigorneau saumâtre", "name_de_DE": "Salzige Seepocke", "name_zh_CN": "咸水藤壶", "name_es_ES": "Crustáceo salobre", "name_ru_RU": "Просоленная ракушка", "name_it_IT": "Cirripede Salmastro", "name_pt_PT": "Craca Salmoura", "on_use": false, "id_encounter": 2153, "id_journal_instance": 1036, "id_map": 1864, "instance_type": 1}, {"id": 159620, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Conch of Dark Whispers", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2419, "buy_price": 12096, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Conch of Dark Whispers", "name_ko_KR": "어두운 속삭임의 소라", "name_fr_FR": "Conque des sombres murmures", "name_de_DE": "Muschel des dunklen Flüsterns", "name_zh_CN": "黑暗低语海螺", "name_es_ES": "Caracola de susurros oscuros", "name_ru_RU": "Раковина темного шепота", "name_it_IT": "Conchiglia dei Sussurri Oscuri", "name_pt_PT": "Concha dos Sussurros Sombrios", "on_use": false, "id_encounter": 2156, "id_journal_instance": 1036, "id_map": 1864, "instance_type": 1}, {"id": 159622, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hadal's Nautilus", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2436, "buy_price": 12183, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0389000177383423, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Hadal's Nautilus", "name_ko_KR": "하달의 앵무조개", "name_fr_FR": "Nautile de Hadal", "name_de_DE": "Hadals Nautilus", "name_zh_CN": "哈达尔的鹦鹉螺", "name_es_ES": "Nautilus de Hadal", "name_ru_RU": "Наутилус Хадала", "name_it_IT": "Nautilus di Hadal", "name_pt_PT": "Náutilo de Hadal", "on_use": false, "id_encounter": 2134, "id_journal_instance": 1023, "id_map": 1822, "instance_type": 1}, {"id": 159623, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dead-Eye Spyglass", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 468802, "buy_price": 2344011, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0426000356674194, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Dead-Eye Spyglass", "name_ko_KR": "명사수의 망원경", "name_fr_FR": "Longue-vue d’œil-mort", "name_de_DE": "Fernrohr des Scharfschützen", "name_zh_CN": "亡眼望远镜", "name_es_ES": "Catalejo certero", "name_ru_RU": "Подзорная труба зоркого глаза", "name_it_IT": "Cannocchiale Occhio di Falco", "name_pt_PT": "Luneta do Caolho", "on_use": false, "id_encounter": 2173, "id_journal_instance": 1023, "id_map": 1822, "instance_type": 1}, {"id": 159624, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rotcrusted Voodoo Doll", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2453, "buy_price": 12268, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0462000370025635, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rotcrusted Voodoo Doll", "name_ko_KR": "부패범벅 부두 인형", "name_fr_FR": "Poupée vaudou couverte de moisissures", "name_de_DE": "Vermoderte Voodoopuppe", "name_zh_CN": "朽烂外壳巫毒人偶", "name_es_ES": "Muñeco de vudú de corteza podrida", "name_ru_RU": "Подгнившая кукла вуду", "name_it_IT": "Bambola Vudù Incrostata di Marcio", "name_pt_PT": "Boneca Vodu Apodrecida", "on_use": true, "id_encounter": 2157, "id_journal_instance": 1022, "id_map": 1841, "instance_type": 1}, {"id": 159625, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Animated Blood", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 472084, "buy_price": 2360423, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0499000549316406, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Animated Blood", "name_ko_KR": "살아 움직이는 피가 든 약병", "name_fr_FR": "Fiole de sang animé", "name_de_DE": "Phiole mit beseeltem Blut", "name_zh_CN": "活性血瓶", "name_es_ES": "Vial de sangre animada", "name_ru_RU": "Пузырек с оживленной кровью", "name_it_IT": "Fiala di Sangue Animato", "name_pt_PT": "Ampola da Animação Sanguínea", "on_use": true, "id_encounter": 2158, "id_journal_instance": 1022, "id_map": 1841, "instance_type": 1}, {"id": 159626, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lingering Sporepods", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 428738, "buy_price": 2143693, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535000324249268, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Lingering Sporepods", "name_ko_KR": "머무는 포자씨앗", "name_fr_FR": "Bogues de spores persistantes", "name_de_DE": "Nachhaltige Sporenkapseln", "name_zh_CN": "萦索孢子囊", "name_es_ES": "Vainas de esporas persistentes", "name_ru_RU": "Коробочка с дремлющими спорами", "name_it_IT": "Baccelli Persistenti", "name_pt_PT": "Guarda-esporo Duradouro", "on_use": false, "id_encounter": 2130, "id_journal_instance": 1022, "id_map": 1841, "instance_type": 1}, {"id": 159627, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jes' Howler", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430402, "buy_price": 2152011, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9571999907493591, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Jes' Howler", "name_ko_KR": "제스의 울부짖음", "name_fr_FR": "Hurleur de Jes", "name_de_DE": "Jes' Knurrer", "name_zh_CN": "杰斯的咆哮", "name_es_ES": "Aullido de Jes", "name_ru_RU": "Завывашка Джеса", "name_it_IT": "Belva di Jes", "name_pt_PT": "Uivador do Lou", "on_use": true, "id_encounter": 2098, "id_journal_instance": 1002, "id_map": 1771, "instance_type": 1}, {"id": 159628, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kul Tiran Cannonball Runner", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432021, "buy_price": 2160105, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9607999920845032, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kul Tiran Cannonball Runner", "name_ko_KR": "쿨 티란 포탄 주자", "name_fr_FR": "Canon mobile kultirassien", "name_de_DE": "Kanonenkugelwerfer von Kul Tiras", "name_zh_CN": "库尔提拉斯便携火炮", "name_es_ES": "Lanzacañonazos de Kul Tiras", "name_ru_RU": "Кул-тирасская мобильная пушка", "name_it_IT": "Binario del Cannone di Kul Tiras", "name_pt_PT": "Fura-bloqueio Kultireno", "on_use": false, "id_encounter": 2096, "id_journal_instance": 1002, "id_map": 1771, "instance_type": 1}, {"id": 159630, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Balefire Branch", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2270, "buy_price": 11354, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9682000279426575, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Balefire Branch", "name_ko_KR": "재앙불꽃 가지", "name_fr_FR": "Branche de bûcher", "name_de_DE": "Unheilfeuerzweig", "name_zh_CN": "怨火柳枝", "name_es_ES": "Rama de Fuegotorvo", "name_ru_RU": "Ветвь гибельного огня", "name_it_IT": "Ramo della Maestra della Pira", "name_pt_PT": "Galho de Fogaréu", "on_use": true, "id_encounter": 2126, "id_journal_instance": 1021, "id_map": 1862, "instance_type": 1}, {"id": 159631, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lady Waycrest's Music Box", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2279, "buy_price": 11396, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9718000292778015, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1439, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Lady Waycrest's Music Box", "name_ko_KR": "부인 웨이크레스트의 음악 상자", "name_fr_FR": "Boîte à musique de dame Malvoie", "name_de_DE": "Lady Kronsteigs Spieluhr", "name_zh_CN": "维克雷斯夫人的音乐盒", "name_es_ES": "Caja de música de lady Crestavía", "name_ru_RU": "Музыкальная шкатулка леди Уэйкрест", "name_it_IT": "Carillon di Dama Crestabianca", "name_pt_PT": "Caixa de Música de Lady Capelo", "on_use": false, "id_encounter": 2128, "id_journal_instance": 1021, "id_map": 1862, "instance_type": 1}, {"id": 159763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of Vol'jamba", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175149, "buy_price": 875748, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944999814033508, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158219, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Idol of Vol'jamba", "name_ko_KR": "볼잠바의 우상", "name_fr_FR": "Idole de Vol’jamba", "name_de_DE": "Vol'jambas Götze", "name_zh_CN": "沃加巴雕像", "name_es_ES": "Ídolo de Vol'jamba", "name_ru_RU": "Идол Вол'джамбы", "name_it_IT": "Idolo di Vol'jamba", "name_pt_PT": "Ídolo de Vol'jamba", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159764, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enraged Diemetradon Fin", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175801, "buy_price": 879006, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.998199999332428, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158220, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Enraged Diemetradon Fin", "name_ko_KR": "격노한 디메트로돈 지느러미", "name_fr_FR": "Aileron de dimeurtrodon enragé", "name_de_DE": "Segel des wütenden Dimetrodons", "name_zh_CN": "暴怒双帆龙背鳍", "name_es_ES": "Aleta de diemetradón iracundo", "name_ru_RU": "Гребень бешеного деметродона", "name_it_IT": "Pinna di Diemetradonte Infuriato", "name_pt_PT": "Barbatana de Dimetrodonte Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159765, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empowered Shark's Tooth", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 176452, "buy_price": 882264, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0018999576568604, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158225, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Empowered Shark's Tooth", "name_ko_KR": "강화된 상어 이빨", "name_fr_FR": "Dent de requin surpuissante", "name_de_DE": "Machterfüllter Haifischzahn", "name_zh_CN": "强化的鲨鱼利齿", "name_es_ES": "Diente de tiburón potenciado", "name_ru_RU": "Усиленный зуб акулы", "name_it_IT": "Dente di Squalo Potenziato", "name_pt_PT": "Dente de Tubarão Fortalecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159976, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Liberated Idol of Binding", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 179711, "buy_price": 898556, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020400047302246, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158680, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Liberated Idol of Binding", "name_ko_KR": "풀려난 속박의 우상", "name_fr_FR": "Idole de lien libérée", "name_de_DE": "Entwendeter Götze der Bindung", "name_zh_CN": "解放的束缚雕像", "name_es_ES": "Ídolo de vinculación liberado", "name_ru_RU": "Реквизированный идол привязывания", "name_it_IT": "Idolo del Vincolo Liberato", "name_pt_PT": "Ídolo da Vinculação Libertado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159977, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Golem Core", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180362, "buy_price": 901814, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161289, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Vindictive Golem Core", "name_ko_KR": "앙갚음하는 골렘 핵", "name_fr_FR": "Noyau de golem vindicatif", "name_de_DE": "Kraftkern des rachgierigen Golems", "name_zh_CN": "守备魔像核心", "name_es_ES": "Núcleo de gólem vindicativo", "name_ru_RU": "Ядро голема-карателя", "name_it_IT": "Nucleo del Golem Vendicativo", "name_pt_PT": "Núcleo de Golem Vingativo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Junji's Egg Timer", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180996, "buy_price": 904984, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276999473571777, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158558, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Junji's Egg Timer", "name_ko_KR": "준지의 계란 초시계", "name_fr_FR": "Minuteur de Junji", "name_de_DE": "Junjis Eieruhr", "name_zh_CN": "祖恩基的煮蛋计时器", "name_es_ES": "Temporizador huevo de Junji", "name_ru_RU": "Яичный таймер Джунджи", "name_it_IT": "Cronometro a Uovo di Junji", "name_pt_PT": "Temporizador de Ovo de Junji", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159979, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rorgog's Antenna", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 181648, "buy_price": 908242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158681, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rorgog's Antenna", "name_ko_KR": "로르고그의 뾰족더듬이", "name_fr_FR": "Antenne de Rorgog", "name_de_DE": "Rorgogs Antenne", "name_zh_CN": "洛果戈的触须", "name_es_ES": "Antena de Rorgog", "name_ru_RU": "Усик Роргога", "name_it_IT": "Antenna di Rorgog", "name_pt_PT": "Antena de Rorgog", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 160262, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "\"Relic of the Makers\"", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 184307, "buy_price": 921539, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0464999675750732, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161222, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "\"Relic of the Makers\"", "name_ko_KR": "\"창조주의 유물\"", "name_fr_FR": "« Relique des Faiseurs »", "name_de_DE": "\"Relikt der Schöpfer\"", "name_zh_CN": "“造物者的遗物”", "name_es_ES": "\"Reliquia de los Creadores\"", "name_ru_RU": "\"Реликвия Творцов\"", "name_it_IT": "\"Reliquia dei Creatori\"", "name_pt_PT": "\"Relíquia dos Criadores\"", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 160263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Snowpelt Mangler", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 426800, "buy_price": 2134001, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9501000046730042, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Snowpelt Mangler", "name_ko_KR": "눈가죽 훼손자", "name_fr_FR": "Griffes de neigepoil", "name_de_DE": "Schneepelzzerfleischer", "name_zh_CN": "雪毛嗥狼", "name_es_ES": "Mutilador Nievepelaje", "name_ru_RU": "Снегошкурый уничтожитель", "name_it_IT": "Dilaniatore dei Pellenevosa", "name_pt_PT": "Mutilador Courofrio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 160648, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenetic Corpuscle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 633488, "buy_price": 3167442, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983000159263611, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Frenetic Corpuscle", "name_ko_KR": "부산스러운 혈구", "name_fr_FR": "Corpuscule frénétique", "name_de_DE": "Frenetisches Korpuskel", "name_zh_CN": "狂热血珠", "name_es_ES": "Corpúsculo frenético", "name_ru_RU": "Нестабильная частица", "name_it_IT": "Corpuscolo Frenetico", "name_pt_PT": "Corpúsculo Frenético", "on_use": false, "id_encounter": 2146, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160649, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inoculating Extract", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 635836, "buy_price": 3179181, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Inoculating Extract", "name_ko_KR": "예방의 추출물", "name_fr_FR": "Extrait d’inoculation", "name_de_DE": "Immunisierendes Extrakt", "name_zh_CN": "疫苗提取物", "name_es_ES": "Extracto inoculador", "name_ru_RU": "Укрепляющий экстракт", "name_it_IT": "Estratto Inoculante", "name_pt_PT": "Extrato de Inoculação", "on_use": true, "id_encounter": 2166, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160650, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Disc of Systematic Regression", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 638184, "buy_price": 3190921, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0056999921798706, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Disc of Systematic Regression", "name_ko_KR": "구조적 역행의 원반", "name_fr_FR": "Disque de régression systématique", "name_de_DE": "Scheibe der systematischen Regression", "name_zh_CN": "系统复原圆盘", "name_es_ES": "Disco de regresión sistemática", "name_ru_RU": "Диск систематической регрессии", "name_it_IT": "Disco della Regressione Sistematica", "name_pt_PT": "Disco da Regressão Sistemática", "on_use": false, "id_encounter": 2169, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160651, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vigilant's Bloodshaper", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3346, "buy_price": 16730, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0094000101089478, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Vigilant's Bloodshaper", "name_ko_KR": "감시자의 피구체기", "name_fr_FR": "Sculpte-sang du vigilant", "name_de_DE": "Blutformer der Wachsamen", "name_zh_CN": "戒卫的塑血者", "name_es_ES": "Modelasangre del vigilante", "name_ru_RU": "Кроводел стража", "name_it_IT": "Plasmasangue del Vigilante", "name_pt_PT": "Moldassangue do Vigilante", "on_use": false, "id_encounter": 2168, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160652, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Construct Overcharger", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 642816, "buy_price": 3214083, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0130000114440918, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Construct Overcharger", "name_ko_KR": "피조물 과부하기", "name_fr_FR": "Surchargeur d’assemblage", "name_de_DE": "Konstruktüberlader", "name_zh_CN": "构造体过载器", "name_es_ES": "Sobrecargador de ensamblaje", "name_ru_RU": "Нагнетатель голема", "name_it_IT": "Sovraccaricatore del Costrutto", "name_pt_PT": "Sobrecarregador do Constructo", "on_use": false, "id_encounter": 2168, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160653, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Xalzaix's Veiled Eye", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 645164, "buy_price": 3225822, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Xalzaix's Veiled Eye", "name_ko_KR": "잘자익스의 가리어진 눈", "name_fr_FR": "Œil voilé de Xalzaix", "name_de_DE": "Xalzaix' verschleiertes Auge", "name_zh_CN": "夏尔扎克斯的迷蒙之眼", "name_es_ES": "Ojo velado de Xalzaix", "name_ru_RU": "Затуманенный глаз Залзеикса", "name_it_IT": "Occhio Velato di Xalzaix", "name_pt_PT": "Olho Velado de Xalzaix", "on_use": false, "id_encounter": 2194, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vanquished Tendril of G'huun", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3382, "buy_price": 16913, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020400047302246, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Vanquished Tendril of G'huun", "name_ko_KR": "정복당한 그훈의 촉수", "name_fr_FR": "Tentacule de G’huun vaincu", "name_de_DE": "G'huuns bezwungenes Tentakel", "name_zh_CN": "被征服的戈霍恩的触须", "name_es_ES": "Zarcillo derrotado de G'huun", "name_ru_RU": "Поверженное щупальце Г'ууна", "name_it_IT": "Tentacolo Sconfitto di G'huun", "name_pt_PT": "Tentáculo de G'huun Derrotado", "on_use": false, "id_encounter": 2147, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160655, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Syringe of Bloodborne Infirmity", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 649796, "buy_price": 3248984, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240000486373901, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Syringe of Bloodborne Infirmity", "name_ko_KR": "유전적 병약의 주사기", "name_fr_FR": "Seringue d’infirmité consanguine", "name_de_DE": "Spritze der blutübertragenen Schwäche", "name_zh_CN": "血源疫病注射器", "name_es_ES": "Jeringa de dolencia de sangre", "name_ru_RU": "Распылитель зараженной крови", "name_it_IT": "Siringa dell'Infermità del Sangue", "name_pt_PT": "Seringa da Enfermidade Sanguínea", "on_use": false, "id_encounter": 2166, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160656, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Twitching Tentacle of Xalzaix", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3406, "buy_price": 17034, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276999473571777, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Twitching Tentacle of Xalzaix", "name_ko_KR": "잘자익스의 꿈틀거리는 촉수", "name_fr_FR": "Tentacule de Xalzaix frémissant", "name_de_DE": "Zuckendes Tentakel von Xalzaix", "name_zh_CN": "夏尔扎克斯的痉挛触须", "name_es_ES": "Tentáculo retorcido de Xalzaix", "name_ru_RU": "Извивающееся щупальце Залзеикса", "name_it_IT": "Tentacolo Contorcente di Xalzaix", "name_pt_PT": "Tentáculo Agitado de Xalzaix", "on_use": false, "id_encounter": 2194, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160753, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sanguinating Totem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 234378, "buy_price": 1171893, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0425000190734863, "flags_1": 134774784, "flags_2": 139264, "flags_3": 128, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Sanguinating Totem", "name_ko_KR": "다혈 토템", "name_fr_FR": "Totem sanguin", "name_de_DE": "Schröpfendes Totem", "name_zh_CN": "血色图腾", "name_es_ES": "Tótem sanguino", "name_ru_RU": "Тотем вытягивания крови", "name_it_IT": "Totem Sanguinante", "name_pt_PT": "Totem Sanguinante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 160833, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of the Tormented Mind", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217719, "buy_price": 1088595, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9684000015258789, "flags_1": 134774784, "flags_2": 139264, "flags_3": 128, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fetish of the Tormented Mind", "name_ko_KR": "괴로운 마음의 우상", "name_fr_FR": "Fétiche de l’esprit tourmenté", "name_de_DE": "Fetisch des gequälten Geistes", "name_zh_CN": "折磨心魂雕像", "name_es_ES": "Fetiche de mente atormentada", "name_ru_RU": "Идол измученного разума", "name_it_IT": "Feticcio della Mente Tormentata", "name_pt_PT": "Fetiche da Mente Atormentada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Incessantly Ticking Clock", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 436862, "buy_price": 2184313, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9725000262260437, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Incessantly Ticking Clock", "name_ko_KR": "쉴 틈 없이 똑딱거리는 시계", "name_fr_FR": "Tic-tac incessant", "name_de_DE": "Unaufhörlich tickende Uhr", "name_zh_CN": "永不间断的时钟", "name_es_ES": "Reloj de tictac incesante", "name_ru_RU": "Беспрерывно тикающие часы", "name_it_IT": "Orologio del Ticchettio Incessante", "name_pt_PT": "Relógio de Tique-taque Incessante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cursed Captain's Charm", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 440141, "buy_price": 2200709, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797999858856201, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Cursed Captain's Charm", "name_ko_KR": "저주받은 대장의 부적", "name_fr_FR": "Charme du capitaine maudit", "name_de_DE": "Talisman des verfluchten Kapitäns", "name_zh_CN": "咒缚船长的护符", "name_es_ES": "Talismán del capitán maldito", "name_ru_RU": "Оберег проклятого капитана", "name_it_IT": "Talismano del Capitano Maledetto", "name_pt_PT": "Patuá do Capitão Amaldiçoado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Berserker's Juju", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 443466, "buy_price": 2217330, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872000217437744, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Berserker's Juju", "name_ko_KR": "광전사의 부적", "name_fr_FR": "Juju du berserker", "name_de_DE": "Juju des Berserkers", "name_zh_CN": "狂战士的魂能战符", "name_es_ES": "Juju de rabioso", "name_ru_RU": "Джуджу берсерка", "name_it_IT": "Juju del Berserker", "name_pt_PT": "Urucubaca do Berserker", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161119, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ravasaur Skull Bijou", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446745, "buy_price": 2233727, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944999814033508, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Ravasaur Skull Bijou", "name_ko_KR": "라바사우루스 해골 비쥬", "name_fr_FR": "Bijou en crâne de ravasaure", "name_de_DE": "Ravasaurusschädelschmuckstück", "name_zh_CN": "暴掠龙颅骨宝石", "name_es_ES": "Joya de calavera de ravasaurio", "name_ru_RU": "Украшение из черепа равазавра", "name_it_IT": "Bijou con Teschio di Devasauro", "name_pt_PT": "Bijuteria de Caveira de Ravassauro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161125, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kaja-fied Banana", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 456673, "buy_price": 2283365, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0166000127792358, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Kaja-fied Banana", "name_ko_KR": "카자화된 바나나", "name_fr_FR": "Banane kajafiée", "name_de_DE": "Kajafizierte Banane", "name_zh_CN": "灌注卡亚精华的香蕉", "name_es_ES": "Plátano kajificado", "name_ru_RU": "Каджабанан", "name_it_IT": "Banana Kajata", "name_pt_PT": "Banana Jakificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161182, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cracked Crawg Shackles", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 181701, "buy_price": 908506, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158679, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cracked Crawg Shackles", "name_ko_KR": "부서진 크로그 족쇄", "name_fr_FR": "Menottes de crogg fendues", "name_de_DE": "Gesprengte Kroggfesseln", "name_zh_CN": "开裂的抱齿兽镣铐", "name_es_ES": "Grilletes de tragadón agrietados", "name_ru_RU": "Разбитые оковы крога", "name_it_IT": "Catene del Crog Spezzate", "name_pt_PT": "Grilhões de Crorg Rachados", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Latency Manipulator", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 181648, "buy_price": 908242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 0, "flags_2": 8193, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 160262, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Latency Manipulator", "name_ko_KR": "잠재력 조작기", "name_fr_FR": "Manipulateur de latence", "name_de_DE": "Latenzmanipulator", "name_zh_CN": "潜伏操纵器", "name_es_ES": "Manipulador de latencia", "name_ru_RU": "Регулятор задержки", "name_it_IT": "Manipolatore della Latenza", "name_pt_PT": "Manipulador de Latência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161223, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Agency Manipulator", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 182300, "buy_price": 911500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035099983215332, "flags_1": 0, "flags_2": 8193, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 155564, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Agency Manipulator", "name_ko_KR": "소속 조작기", "name_fr_FR": "Manipulateur de capacité d’action", "name_de_DE": "Wirkungsmanipulator", "name_zh_CN": "代理操纵器", "name_es_ES": "Manipulador de voluntad", "name_ru_RU": "Регулятор воздействия", "name_it_IT": "Manipolatore dell'Organizzazione", "name_pt_PT": "Manipulador de Agência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161289, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rikal's Shark Teeth", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 173141, "buy_price": 865709, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9830999970436096, "flags_1": 0, "flags_2": 8194, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159977, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rikal's Shark Teeth", "name_ko_KR": "리칼의 상어 이빨", "name_fr_FR": "Dent de requin de Rikal", "name_de_DE": "Rikals Haifischzähne", "name_zh_CN": "里卡尔的鲨鱼利齿", "name_es_ES": "Dientes de tiburón de Rikal", "name_ru_RU": "Акульи зубы Рикала", "name_it_IT": "Denti Affilati di Rikal", "name_pt_PT": "Dente de Tubarão de Rikal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161374, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthlessness Protocol Augment", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3162, "buy_price": 15810, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9538999795913696, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ruthlessness Protocol Augment", "name_ko_KR": "무정함의 작동규약 증폭기", "name_fr_FR": "Implant de protocole de cruauté", "name_de_DE": "Ergänzung für Skrupellosigkeitsprotokoll", "name_zh_CN": "无情协议强化器", "name_es_ES": "Aumento de protocolo de crueldad", "name_ru_RU": "Протокол усиления безжалостности", "name_it_IT": "Potenziamento Protocollo della Spietatezza", "name_pt_PT": "Incremento de Protocolo de Malevolência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161375, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Clockwork Re-Sharpener", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 607598, "buy_price": 3037990, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574999809265137, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Clockwork Re-Sharpener", "name_ko_KR": "태엽돌이 거듭깎이", "name_fr_FR": "Aiguisoir mécanique", "name_de_DE": "Aufziehnachschärfer", "name_zh_CN": "发条往复切削器", "name_es_ES": "Reafilador de relojería", "name_ru_RU": "Механическое точило", "name_it_IT": "Rimolatore Meccanico", "name_pt_PT": "Reafiador de Corda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prism of Dark Intensity", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 609946, "buy_price": 3049730, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9611999988555908, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Prism of Dark Intensity", "name_ko_KR": "집중된 암흑의 프리즘", "name_fr_FR": "Prisme d’intensité ténébreuse", "name_de_DE": "Prisma der dunklen Intensität", "name_zh_CN": "黑暗炽烈棱镜", "name_es_ES": "Prisma de intensidad oscura", "name_ru_RU": "Призма темной напряженности", "name_it_IT": "Prisma dell'Intensità Oscura", "name_pt_PT": "Prisma da Intensidade Sombria", "on_use": false, "id_encounter": 2198, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161377, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Azurethos' Singed Plumage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3198, "buy_price": 15993, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.964900016784668, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Azurethos' Singed Plumage", "name_ko_KR": "아주레토스의 그을린 깃털", "name_fr_FR": "Plumage roussi d’Azuréthos", "name_de_DE": "Azurethos' versengtes Gefieder", "name_zh_CN": "蔚索斯的焦灼飞羽", "name_es_ES": "Plumaje chamuscado de Azurethos", "name_ru_RU": "Опаленное перо Лазуретоса", "name_it_IT": "Piumaggio Bruciato di Azurethos", "name_pt_PT": "Plumagem Chamuscada de Lazureto", "on_use": true, "id_encounter": 2199, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161378, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Plume of the Seaborne Avian", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 614578, "buy_price": 3072891, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968500018119812, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Plume of the Seaborne Avian", "name_ko_KR": "바다새의 깃", "name_fr_FR": "Plume d’oiseau aquatique", "name_de_DE": "Daune des Meeresfliegers", "name_zh_CN": "海栖飞鸟之羽", "name_es_ES": "Pluma aviar marina", "name_ru_RU": "Перо морской птицы", "name_it_IT": "Piuma del Rapace Marino", "name_pt_PT": "Pluma da Ave Marítima", "on_use": false, "id_encounter": 2199, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161379, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Galecaller's Beak", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 616926, "buy_price": 3084631, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9721999764442444, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Galecaller's Beak", "name_ko_KR": "폭풍의 부리", "name_fr_FR": "Bec de mande-trombe", "name_de_DE": "Schnabel des Sturmbeschwörers", "name_zh_CN": "唤风者之喙", "name_es_ES": "Pico del clamavendavales", "name_ru_RU": "Клюв призывателя штормов", "name_it_IT": "Becco dell'Invocabrezza", "name_pt_PT": "Bico do Chamatormenta", "on_use": true, "id_encounter": 2199, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161380, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Drust-Runed Icicle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3235, "buy_price": 16175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9758999943733215, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Drust-Runed Icicle", "name_ko_KR": "드러스트 룬 고드름", "name_fr_FR": "Glaçon orné de runes drust", "name_de_DE": "Drustruneneiszapfen", "name_zh_CN": "德鲁斯特符文冰锥", "name_es_ES": "Carámbano con runas Drust", "name_ru_RU": "Покрытый рунами друстов кристалл льда", "name_it_IT": "Frammento di Ghiaccio con Rune dei Drust", "name_pt_PT": "Sincelo com Runas Drustas", "on_use": false, "id_encounter": 2197, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161381, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Permafrost-Encrusted Heart", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 621622, "buy_price": 3108110, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9796000123023987, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Permafrost-Encrusted Heart", "name_ko_KR": "영구적인 서리가 박힌 심장", "name_fr_FR": "Cœur incrusté de pergélisol", "name_de_DE": "Permafrostvereistes Herz", "name_zh_CN": "永冻护壳之心", "name_es_ES": "Corazón con escarcha permanente incrustada", "name_ru_RU": "Замерзшее окаменелое сердце", "name_it_IT": "Cuore Incrostato di Permagelo", "name_pt_PT": "Coração Incrustado de Permafrio", "on_use": false, "id_encounter": 2197, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161382, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wind-Up Utility Pylon", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 623906, "buy_price": 3119532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9832000136375427, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Wind-Up Utility Pylon", "name_ko_KR": "태엽식 다용도 변환기", "name_fr_FR": "Pylône électrique mécanique", "name_de_DE": "Hilfspylon zum Aufziehen", "name_zh_CN": "实用发条晶塔", "name_es_ES": "Pilón eléctrico de cuerda", "name_ru_RU": "Заводной многофункциональный пилон", "name_it_IT": "Pilone d'Utilità a Carica Manuale", "name_pt_PT": "Pilar Utilitário de Corda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161411, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "T'zane's Barkspines", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3456, "buy_price": 17282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0427000522613525, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "T'zane's Barkspines", "name_ko_KR": "티제인의 나무등뼈", "name_fr_FR": "Aiguillons d’écorce de T’zane", "name_de_DE": "T'zanes Borkenstacheln", "name_zh_CN": "提赞的树脊", "name_es_ES": "Vaina espinosa de T'zane", "name_ru_RU": "Шипы с коры Т'зейна", "name_it_IT": "Schegge di Corteccia di T'zane", "name_pt_PT": "Cascacúleos de T'zane", "on_use": true, "id_encounter": 2139, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161412, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritbound Voodoo Burl", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 663947, "buy_price": 3319738, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463000535964966, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Spiritbound Voodoo Burl", "name_ko_KR": "영혼결속 부두 옹이", "name_fr_FR": "Nœud vaudou lié par les esprits", "name_de_DE": "Geistgebundener Voodooknoten", "name_zh_CN": "缚魂巫毒瘤节", "name_es_ES": "Lobanillo vudú de vínculo espiritual", "name_ru_RU": "Узловатый тотем вуду", "name_it_IT": "Nodo Vudù Vincolato agli Spiriti", "name_pt_PT": "Cerne Vodu do Espírito Vinculado", "on_use": false, "id_encounter": 2139, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Knot of Ancient Fury", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 666295, "buy_price": 3331477, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0499999523162842, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 166795, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Knot of Ancient Fury", "name_ko_KR": "고대의 분노 매듭", "name_fr_FR": "Nœud de la fureur des anciens", "name_de_DE": "Knoten der urzeitlichen Wut", "name_zh_CN": "远古愤怒之结", "name_es_ES": "Nudo de furia antigua", "name_ru_RU": "Сучок древней ярости", "name_it_IT": "Nodo della Furia Antica", "name_pt_PT": "Nó da Fúria Antiga", "on_use": true, "id_encounter": 2345, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Self-Accelerating Drive Shaft", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3161, "buy_price": 15805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Self-Accelerating Drive Shaft", "name_ko_KR": "자가 가속화 구동축", "name_fr_FR": "Arbre de transmission à accélération automatique", "name_de_DE": "Selbstbeschleunigende Antriebswelle", "name_zh_CN": "自加速驱动轴", "name_es_ES": "Eje de motor de autoaceleración", "name_ru_RU": "Саморазгоняющийся приводной вал", "name_it_IT": "Leva di Guida Autoaccelerante", "name_pt_PT": "Eixo de Transmissão Autoacelerado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161415, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forest Lord's Razorleaf", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 607471, "buy_price": 3037356, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 166794, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Forest Lord's Razorleaf", "name_ko_KR": "숲군주의 칼날잎새", "name_fr_FR": "Tranchefeuille du seigneur de la forêt", "name_de_DE": "Klingenblatt des Waldlords", "name_zh_CN": "森林之王的刀叶", "name_es_ES": "Hojafilo del Señor del Bosque", "name_ru_RU": "Бритволист лесного властелина", "name_it_IT": "Fogliafina del Signore della Foresta", "name_pt_PT": "Folhâmina do Senhor da Floresta", "on_use": false, "id_encounter": 2345, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161416, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Galvanic Turbo-Charger", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 609755, "buy_price": 3048778, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9609000086784363, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Galvanic Turbo-Charger", "name_ko_KR": "전류 발생식 과충전기", "name_fr_FR": "Turbocompresseur galvanique", "name_de_DE": "Galvanisierter Turbolader", "name_zh_CN": "流电涡轮充能器", "name_es_ES": "Turbocargador galvánico", "name_ru_RU": "Гальванический турбозарядник", "name_it_IT": "Turbocaricatore Galvanico", "name_pt_PT": "Turbocarregador Galvânico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161417, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Knot of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3197, "buy_price": 15988, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9646000266075134, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 166793, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Knot of Wisdom", "name_ko_KR": "고대의 지혜 매듭", "name_fr_FR": "Ancien nœud de sagesse", "name_de_DE": "Uralter Knorren der Weisheit", "name_zh_CN": "远古智慧之结", "name_es_ES": "Antiguo nudo de sabiduría", "name_ru_RU": "Сучок древней мудрости", "name_it_IT": "Antico Nodo della Saggezza", "name_pt_PT": "Nó Antigo da Sabedoria", "on_use": true, "id_encounter": 2345, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161418, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deployable Vibro Enhancer", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 614451, "buy_price": 3072257, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9682999849319458, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Deployable Vibro Enhancer", "name_ko_KR": "휴대용 진동 강화기", "name_fr_FR": "Vibro-améliorateur dépliable", "name_de_DE": "Einsetzbarer Vibroverstärker", "name_zh_CN": "折叠式振动强化器", "name_es_ES": "Vibropotenciador desplegable", "name_ru_RU": "Персональный виброусилитель", "name_it_IT": "Potenziatore Vibrante Portatile", "name_pt_PT": "Aprimorador Vibratório Portátil", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161419, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kraulok's Claw", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 633615, "buy_price": 3168076, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9984999895095825, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Kraulok's Claw", "name_ko_KR": "크롤로크의 발톱", "name_fr_FR": "Griffe de Kraulok", "name_de_DE": "Krauloks Klaue", "name_zh_CN": "克劳洛克的利爪", "name_es_ES": "Garra de Kraulok", "name_ru_RU": "Коготь Краулока", "name_it_IT": "Artiglio di Kraulok", "name_pt_PT": "Garra de Kraulok", "on_use": false, "id_encounter": 2210, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161461, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Doom's Hatred", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3333, "buy_price": 16666, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0054999589920044, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161472, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Doom's Hatred", "name_ko_KR": "파멸의 증오", "name_fr_FR": "Haine du Héraut", "name_de_DE": "Hass der Verdammnis", "name_zh_CN": "末日仇恨", "name_es_ES": "Odio de fatalidad", "name_ru_RU": "Гибельная ненависть", "name_it_IT": "Risentimento della Condanna", "name_pt_PT": "Ódio da Ruína", "on_use": false, "id_encounter": 2212, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Doom's Wake", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 640405, "buy_price": 3202026, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0091999769210815, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161473, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Doom's Wake", "name_ko_KR": "깨어난 파멸", "name_fr_FR": "Sillage du malheur", "name_de_DE": "Sog der Verdammnis", "name_zh_CN": "末日余波", "name_es_ES": "Estela de fatalidad", "name_ru_RU": "Гибельное эхо", "name_it_IT": "Risveglio della Condanna", "name_pt_PT": "Rastro da Ruína", "on_use": true, "id_encounter": 2212, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Doom's Fury", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 642753, "buy_price": 3213765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0128999948501587, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161474, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Doom's Fury", "name_ko_KR": "파멸의 분노", "name_fr_FR": "Fureur du Héraut", "name_de_DE": "Zorn der Verdammnis", "name_zh_CN": "末日狂怒", "name_es_ES": "Furia de fatalidad", "name_ru_RU": "Гибельная ярость", "name_it_IT": "Furia della Condanna", "name_pt_PT": "Fúria da Ruína", "on_use": true, "id_encounter": 2212, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161472, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lion's Grace", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3223, "buy_price": 16117, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161461, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Lion's Grace", "name_ko_KR": "사자의 은총", "name_fr_FR": "Grâce du Lion", "name_de_DE": "Anmut des Löwen", "name_zh_CN": "雄狮圣恩", "name_es_ES": "Gracia del León", "name_ru_RU": "Грация льва", "name_it_IT": "Grazia del Leone", "name_pt_PT": "Graça do Leão", "on_use": false, "id_encounter": 2213, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161473, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lion's Guile", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 619337, "buy_price": 3096688, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9760000109672546, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161462, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Lion's Guile", "name_ko_KR": "사자의 간계", "name_fr_FR": "Ruse du Lion", "name_de_DE": "List des Löwen", "name_zh_CN": "雄狮谋略", "name_es_ES": "Astucia del León", "name_ru_RU": "Коварство льва", "name_it_IT": "Astuzia del Leone", "name_pt_PT": "Perspicácia do Leão", "on_use": true, "id_encounter": 2213, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161474, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lion's Strength", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 621685, "buy_price": 3108427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797000288963318, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161463, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Lion's Strength", "name_ko_KR": "사자의 힘", "name_fr_FR": "Force du Lion", "name_de_DE": "Löwenstärke", "name_zh_CN": "雄狮之力", "name_es_ES": "Fuerza del León", "name_ru_RU": "Сила льва", "name_it_IT": "Forza del Leone", "name_pt_PT": "Força do Leão", "on_use": true, "id_encounter": 2213, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161674, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Gladiator's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 617761, "buy_price": 3088809, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Dread Gladiator's Medallion", "name_ko_KR": "공포를 부르는 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur menaçant", "name_de_DE": "Medaillon des gefürchteten Gladiators", "name_zh_CN": "悚然角斗士的勋章", "name_es_ES": "Medallón de Gladiador aterrador", "name_ru_RU": "Медальон ужасающего гладиатора", "name_it_IT": "Medaglione del Gladiatore Terrificante", "name_pt_PT": "Medalhão do Gladiador Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161675, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Gladiator's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 619978, "buy_price": 3099890, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035099983215332, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Dread Gladiator's Emblem", "name_ko_KR": "공포를 부르는 검투사의 문장", "name_fr_FR": "Emblème du gladiateur menaçant", "name_de_DE": "Emblem des gefürchteten Gladiators", "name_zh_CN": "悚然角斗士的纹章", "name_es_ES": "Emblema de Gladiador aterrador", "name_ru_RU": "Эмблема ужасающего гладиатора", "name_it_IT": "Emblema del Gladiatore Terrificante", "name_pt_PT": "Emblema do Gladiador Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161676, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Gladiator's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 578051, "buy_price": 2890256, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9650999903678894, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Dread Gladiator's Insignia", "name_ko_KR": "공포를 부르는 검투사의 계급장", "name_fr_FR": "Insigne du gladiateur menaçant", "name_de_DE": "Insigne des gefürchteten Gladiators", "name_zh_CN": "悚然角斗士的徽记", "name_es_ES": "Insignia de Gladiador aterrador", "name_ru_RU": "Знак ужасающего гладиатора", "name_it_IT": "Fregio del Gladiatore Terrificante", "name_pt_PT": "Insígnia do Gladiador Medonho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161902, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Gladiator's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 578051, "buy_price": 2890256, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9650999903678894, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Dread Gladiator's Badge", "name_ko_KR": "공포를 부르는 검투사의 표장", "name_fr_FR": "Écusson du gladiateur menaçant", "name_de_DE": "Abzeichen des gefürchteten Gladiators", "name_zh_CN": "悚然角斗士的徽章", "name_es_ES": "Distintivo de Gladiador aterrador", "name_ru_RU": "Жетон ужасающего гладиатора", "name_it_IT": "Distintivo del Gladiatore Terrificante", "name_pt_PT": "Distintivo do Gladiador Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 162897, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Aspirant's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430304, "buy_price": 2151520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dread Aspirant's Medallion", "name_ko_KR": "공포를 부르는 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant menaçant", "name_de_DE": "Medaillon des gefürchteten Aspiranten", "name_zh_CN": "悚然候选者的勋章", "name_es_ES": "Medallón de aspirante aterrador", "name_ru_RU": "Медальон ужасающего претендента", "name_it_IT": "Medaglione del Pretendente Terrificante", "name_pt_PT": "Medalhão do Aspirante Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 162898, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Aspirant's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 431966, "buy_price": 2159831, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dread Aspirant's Emblem", "name_ko_KR": "공포를 부르는 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant menaçant", "name_de_DE": "Emblem des gefürchteten Aspiranten", "name_zh_CN": "悚然候选者的纹章", "name_es_ES": "Emblema de aspirante aterrador", "name_ru_RU": "Эмблема ужасающего претендента", "name_it_IT": "Emblema del Pretendente Terrificante", "name_pt_PT": "Emblema do Aspirante Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 162899, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Aspirant's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 433628, "buy_price": 2168141, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dread Aspirant's Insignia", "name_ko_KR": "공포를 부르는 지원자의 계급장", "name_fr_FR": "Insigne de l’aspirant menaçant", "name_de_DE": "Insigne des gefürchteten Aspiranten", "name_zh_CN": "悚然候选者的徽记", "name_es_ES": "Insignia de aspirante aterrador", "name_ru_RU": "Знак ужасающего претендента", "name_it_IT": "Fregio del Pretendente Terrificante", "name_pt_PT": "Insígnia do Aspirante Medonho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 162966, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Aspirant's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 456897, "buy_price": 2284488, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0170999765396118, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dread Aspirant's Badge", "name_ko_KR": "공포를 부르는 지원자의 표장", "name_fr_FR": "Écusson de l’aspirant menaçant", "name_de_DE": "Abzeichen des gefürchteten Aspiranten", "name_zh_CN": "悚然候选者的徽章", "name_es_ES": "Distintivo de aspirante aterrador", "name_ru_RU": "Жетон ужасающего претендента", "name_it_IT": "Distintivo del Pretendente Terrificante", "name_pt_PT": "Distintivo do Aspirante Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 163703, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crawg Gnawed Femur", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 466960, "buy_price": 2334800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0394999980926514, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Crawg Gnawed Femur", "name_ko_KR": "크로그가 갉아먹은 다리뼈", "name_fr_FR": "Fémur rongé par les croggs", "name_de_DE": "Kroggzerkauter Oberschenkelknochen", "name_zh_CN": "被抱齿兽咬过的大腿骨", "name_es_ES": "Fémur mordisqueado por tragadón", "name_ru_RU": "Пожеванная бедренная кость крога", "name_it_IT": "Femore di Crog Morsicato", "name_pt_PT": "Fêmur Mordiscado por Crorg", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 163935, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Landoi's Scrutiny", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 610072, "buy_price": 3050364, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961400032043457, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Landoi's Scrutiny", "name_ko_KR": "란도이의 철저", "name_fr_FR": "Regard scrutateur de Landoi", "name_de_DE": "Landois Prüfung", "name_zh_CN": "兰多伊的审视", "name_es_ES": "Escrutinio de Landoi", "name_ru_RU": "Дотошность Ландоя", "name_it_IT": "Sguardo Indagatore di Landoi", "name_pt_PT": "Escrutínio de Landoi", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 163936, "race_mask": 18446744073709551615, "desc": "Everything you need to know to run a smooth operation.", "pad2": "", "pad1": "", "pad0": "", "name": "'Bygone Bee' Almanac", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612420, "buy_price": 3062104, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9650999903678894, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "'Bygone Bee' Almanac", "name_ko_KR": "'한물간 철자법' 연감", "name_fr_FR": "Almanach du « mielénaire »", "name_de_DE": "Almanach 'Geschehen ist geschehen'", "name_zh_CN": "“逝去之蜂”年鉴", "name_es_ES": "Anuario de 'Abeja de antaño'", "name_ru_RU": "Альманах \"Пчелы прошлого\"", "name_it_IT": "Almanacco \"Addio Api\"", "name_pt_PT": "Almanaque \"Abelhas de Outrora\"", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 163937, "race_mask": 18446744073709551615, "desc": "This titan repository is said to contain a myriad of secrets - if one can properly query the device.", "pad2": "", "pad1": "", "pad0": "", "name": "Leyshock's Grand Compilation", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 614768, "buy_price": 3073843, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9688000082969666, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Leyshock's Grand Compilation", "name_ko_KR": "리쇼크의 위대한 장치", "name_fr_FR": "Compilation ambitieuse du choc tellurique", "name_de_DE": "Leyschocks großes Repositorium", "name_zh_CN": "雷萧克的鸿篇汇编", "name_es_ES": "Gran recopilación del traumatizador Ley", "name_ru_RU": "Всеобъемлющая компиляция", "name_it_IT": "Gran Collezione della Folgore di Faglia", "name_pt_PT": "Grande Compilação do Choque Meridiânico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 164754, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017199993133545, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy", "name_ko_KR": "악마 상징물", "name_fr_FR": "Trophée de démon", "name_de_DE": "Dämonentrophäe", "name_zh_CN": "恶魔战利品", "name_es_ES": "Trofeo demoníaco", "name_ru_RU": "Демонический трофей", "name_it_IT": "Trofeo Demoniaco", "name_pt_PT": "Troféu do Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 164755, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Demonic Fire", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020900011062622, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Demonic Fire", "name_ko_KR": "악마의 불 부적", "name_fr_FR": "Charme de feu démoniaque", "name_de_DE": "Glücksbringer des Dämonenfeuers", "name_zh_CN": "魔火护符", "name_es_ES": "Talismán de fuego demoníaco", "name_ru_RU": "Талисман демонического огня", "name_it_IT": "Talismano del Fuoco Demoniaco", "name_pt_PT": "Patuá do Fogo Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165055, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 650304, "buy_price": 3251522, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 160, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Medallion", "name_ko_KR": "사악한 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur sinistre", "name_de_DE": "Medaillon des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的勋章", "name_es_ES": "Medallón de Gladiador siniestro", "name_ru_RU": "Медальон зловещего гладиатора", "name_it_IT": "Medaglione del Gladiatore Sinistro", "name_pt_PT": "Medalhão do Gladiador Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165056, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 652652, "buy_price": 3263261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.028499960899353, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 160, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Emblem", "name_ko_KR": "사악한 검투사의 문장", "name_fr_FR": "Emblème du gladiateur sinistre", "name_de_DE": "Emblem des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的纹章", "name_es_ES": "Emblema de Gladiador siniestro", "name_ru_RU": "Эмблема зловещего гладиатора", "name_it_IT": "Emblema del Gladiatore Sinistro", "name_pt_PT": "Emblema do Gladiador Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165057, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 654936, "buy_price": 3274684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.032099962234497, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 160, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Insignia", "name_ko_KR": "사악한 검투사의 계급장", "name_fr_FR": "Insigne du gladiateur sinistre", "name_de_DE": "Insigne des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的徽记", "name_es_ES": "Insignia de Gladiador siniestro", "name_ru_RU": "Знак зловещего гладиатора", "name_it_IT": "Fregio del Gladiatore Sinistro", "name_pt_PT": "Insígnia do Gladiador Sinistro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165058, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 657284, "buy_price": 3286423, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0357999801635742, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 160, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Badge", "name_ko_KR": "사악한 검투사의 표장", "name_fr_FR": "Écusson du gladiateur sinistre", "name_de_DE": "Abzeichen des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的徽章", "name_es_ES": "Distintivo de Gladiador siniestro", "name_ru_RU": "Жетон зловещего гладиатора", "name_it_IT": "Distintivo del Gladiatore Sinistro", "name_pt_PT": "Distintivo do Gladiador Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165220, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Aspirant's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 473545, "buy_price": 2367729, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9950000047683716, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Sinister Aspirant's Medallion", "name_ko_KR": "사악한 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant sinistre", "name_de_DE": "Medaillon des düsteren Aspiranten", "name_zh_CN": "惊恶候选者的勋章", "name_es_ES": "Medallón de aspirante siniestro", "name_ru_RU": "Медальон зловещего претендента", "name_it_IT": "Medaglione del Pretendente Sinistro", "name_pt_PT": "Medalhão do Aspirante Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165221, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Aspirant's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 475306, "buy_price": 2376533, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987000226974487, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Sinister Aspirant's Emblem", "name_ko_KR": "사악한 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant sinistre", "name_de_DE": "Emblem des düsteren Aspiranten", "name_zh_CN": "惊恶候选者的纹章", "name_es_ES": "Emblema de aspirante siniestro", "name_ru_RU": "Эмблема зловещего претендента", "name_it_IT": "Emblema del Pretendente Sinistro", "name_pt_PT": "Emblema do Aspirante Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Aspirant's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 477067, "buy_price": 2385338, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0024000406265259, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Sinister Aspirant's Insignia", "name_ko_KR": "사악한 지원자의 계급장", "name_fr_FR": "Insigne de l’aspirant sinistre", "name_de_DE": "Insigne des düsteren Aspiranten", "name_zh_CN": "惊恶候选者的徽记", "name_es_ES": "Insignia de aspirante siniestro", "name_ru_RU": "Знак зловещего претендента", "name_it_IT": "Fregio del Pretendente Sinistro", "name_pt_PT": "Insígnia do Aspirante Sinistro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165223, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Aspirant's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 478780, "buy_price": 2393904, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.00600004196167, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Sinister Aspirant's Badge", "name_ko_KR": "사악한 지원자의 표장", "name_fr_FR": "Écusson de l’aspirant sinistre", "name_de_DE": "Abzeichen des düsteren Aspiranten", "name_zh_CN": "惊恶候选者的徽章", "name_es_ES": "Distintivo de aspirante siniestro", "name_ru_RU": "Жетон зловещего претендента", "name_it_IT": "Distintivo del Pretendente Sinistro", "name_pt_PT": "Distintivo do Aspirante Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165568, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Invocation of Yu'lon", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 605694, "buy_price": 3028472, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545000195503235, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Invocation of Yu'lon", "name_ko_KR": "위론의 기원", "name_fr_FR": "Invocation de Yu’lon", "name_de_DE": "Anrufung von Yu'lon", "name_zh_CN": "玉珑之祈", "name_es_ES": "Invocación de Yu'lon", "name_ru_RU": "Молитва к Юй-лун", "name_it_IT": "Invocazione: Yu'lon", "name_pt_PT": "Invocação de Yu'lon", "on_use": true, "id_encounter": 2323, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165569, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ward of Envelopment", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 607978, "buy_price": 3039894, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581000208854675, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ward of Envelopment", "name_ko_KR": "봉합의 수호물", "name_fr_FR": "Égide d’enveloppement", "name_de_DE": "Zauberschutz der Umhüllung", "name_zh_CN": "密闭结界", "name_es_ES": "Resguardo envolvente", "name_ru_RU": "Ограждающий оберег", "name_it_IT": "Protezione dell'Avvolgimento", "name_pt_PT": "Proteção de Envolvimento", "on_use": true, "id_encounter": 2333, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165570, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Everchill Anchor", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 610326, "buy_price": 3051633, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9617999792098999, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Everchill Anchor", "name_ko_KR": "영원한기 닻", "name_fr_FR": "Ancre de froidure éternelle", "name_de_DE": "Anker der ewigen Kälte", "name_zh_CN": "永冻之锚", "name_es_ES": "Ancla de escalofrío eterno", "name_ru_RU": "Якорь обжигающего холода", "name_it_IT": "Ancora del Brivido Eterno", "name_pt_PT": "Âncora do Frio Perene", "on_use": false, "id_encounter": 2343, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165571, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Incandescent Sliver", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612674, "buy_price": 3063373, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Incandescent Sliver", "name_ko_KR": "빛나는 조각", "name_fr_FR": "Esquille incandescente", "name_de_DE": "Strahlender Span", "name_zh_CN": "耀辉裂片", "name_es_ES": "Esquirla incandescente", "name_ru_RU": "Сияющий осколок", "name_it_IT": "Scheggia Incandescente", "name_pt_PT": "Lasca Incandescente", "on_use": false, "id_encounter": 2342, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Variable Intensity Gigavolt Oscillating Reactor", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 615022, "buy_price": 3075112, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692000150680542, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Variable Intensity Gigavolt Oscillating Reactor", "name_ko_KR": "원자 기폭형 촉매 진화기", "name_fr_FR": "Appendice Gigavoltaïque à Intensité Longitudinale", "name_de_DE": "Piepsender oszillierender Wirbelenergiereaktor", "name_zh_CN": "变频千兆振荡反应堆", "name_es_ES": "Reactor oscilante de gigavoltios de intensidad variable", "name_ru_RU": "Гигавольтный осциллирующий реактор аннигиляции", "name_it_IT": "Validatore Instabile a Gigavolt Oscillante del Reattore Esterno", "name_pt_PT": "Reator Gigavolt Oscilante de Intensidade Variável", "on_use": true, "id_encounter": 2334, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165573, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Diamond-Laced Refracting Prism", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 617307, "buy_price": 3086535, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9728000164031982, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Diamond-Laced Refracting Prism", "name_ko_KR": "다이아몬드 장식 굴절 분광기", "name_fr_FR": "Prisme réfringent incrusté de diamants", "name_de_DE": "Diamantbeschichtetes Refraktionsprisma", "name_zh_CN": "镶钻折射棱镜", "name_es_ES": "Prisma refractante diamantino", "name_ru_RU": "Рефракторная алмазная призма", "name_it_IT": "Prisma Rifrangente Ricoperto di Diamanti", "name_pt_PT": "Prisma Refrator com Diamante", "on_use": false, "id_encounter": 2342, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165574, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grong's Primal Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 619654, "buy_price": 3098274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764999747276306, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Grong's Primal Rage", "name_ko_KR": "그롱의 원초적 분노", "name_fr_FR": "Rage primordiale de Grong", "name_de_DE": "Grongs Urfuror", "name_zh_CN": "格洛恩的原始暴怒", "name_es_ES": "Rabia primigenia de Grong", "name_ru_RU": "Звериная ярость Гронга", "name_it_IT": "Rabbia Primordiale di Grong", "name_pt_PT": "Raiva Primeva de Grong", "on_use": true, "id_encounter": 2325, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tidestorm Codex", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3261, "buy_price": 16308, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9839000105857849, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Tidestorm Codex", "name_ko_KR": "파도폭풍 전서", "name_fr_FR": "Codex vaguerage", "name_de_DE": "Kodex des Gezeitensturms", "name_zh_CN": "潮风法典", "name_es_ES": "Códice de tormenta de las mareas", "name_ru_RU": "Гримуар морских штормов", "name_it_IT": "Codice della Tempesta Mareale", "name_pt_PT": "Códice da Borrasca", "on_use": true, "id_encounter": 2343, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bwonsamdi's Bargain", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 626635, "buy_price": 3133175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 67633152, "flags_2": 73728, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Bwonsamdi's Bargain", "name_ko_KR": "브원삼디의 거래", "name_fr_FR": "Marché de Bwonsamdi", "name_de_DE": "Bwonsamdis Handel", "name_zh_CN": "邦桑迪的交易", "name_es_ES": "Trato de Bwonsamdi", "name_ru_RU": "Сделка с Бвонсамди", "name_it_IT": "Accordo di Bwonsamdi", "name_pt_PT": "Barganha de Bwonsamdi", "on_use": false, "id_encounter": 2335, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165578, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Entwined Fate", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 628983, "buy_price": 3144915, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9911999702453613, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Entwined Fate", "name_ko_KR": "뒤얽힌 운명의 거울", "name_fr_FR": "Miroir de destin lié", "name_de_DE": "Spiegel des geteilten Schicksals", "name_zh_CN": "纠缠命运之镜", "name_es_ES": "Espejo de destino entrelazado", "name_ru_RU": "Зеркало сплетенных судеб", "name_it_IT": "Specchio del Destino Intrecciato", "name_pt_PT": "Espelho do Destino Entrelaçado", "on_use": true, "id_encounter": 2335, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kimbul's Razor Claw", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 631330, "buy_price": 3156654, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9948999881744385, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Kimbul's Razor Claw", "name_ko_KR": "킴불의 서슬 발톱", "name_fr_FR": "Griffe rasoir de Kimbul", "name_de_DE": "Kimbuls messerscharfe Kralle", "name_zh_CN": "吉布尔的利爪", "name_es_ES": "Zarpa cortante de Kimbul", "name_ru_RU": "Острый коготь Кимбула", "name_it_IT": "Artiglio Affilato di Kimbul", "name_pt_PT": "Garra Pontiaguda de Kimbul", "on_use": false, "id_encounter": 2330, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ramping Amplitude Gigavolt Engine", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 633678, "buy_price": 3168394, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9986000061035156, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ramping Amplitude Gigavolt Engine", "name_ko_KR": "정격 말소식 격리 분석기", "name_fr_FR": "Réacteur Amplifié à Gigavoltaïsation Extrême", "name_de_DE": "Rasant ausschlagende gigavoltgeladene Erfindung", "name_zh_CN": "增幅千兆怒火引擎", "name_es_ES": "Fabricador ultraespecial de reacciones e interacciones arcovoltaicas", "name_ru_RU": "Гигавольтный радиатор огромной мощности", "name_it_IT": "Rabbioso Amplificatore Bipolare Bisonoro Instabile Automatico", "name_pt_PT": "Motor Gigavolt de Amplitude Crescente", "on_use": true, "id_encounter": 2334, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165581, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crest of Pa'ku", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 635963, "buy_price": 3179816, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 166418, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Crest of Pa'ku", "name_ko_KR": "파쿠의 문장", "name_fr_FR": "Écu de Pa’ku", "name_de_DE": "Pa'kus Wappen", "name_zh_CN": "帕库冠羽", "name_es_ES": "Blasón de Pa'ku", "name_ru_RU": "Гребень Па'ку", "name_it_IT": "Pennacchio di Pa'ku", "name_pt_PT": "Brasão de Pa'kul", "on_use": true, "id_encounter": 2330, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165660, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chargestone of the Thunder King's Court", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 460221, "buy_price": 2301109, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0245000123977661, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Chargestone of the Thunder King's Court", "name_ko_KR": "천둥왕 궁정의 충전석", "name_fr_FR": "Pierre chargée de la cour du roi-tonnerre", "name_de_DE": "Aufladungsstein vom Hof des Donnerkönigs", "name_zh_CN": "雷电王廷的充能石", "name_es_ES": "Piedra de carga de la Corte del Rey del Trueno", "name_ru_RU": "Камень из двора Властелина Грома", "name_it_IT": "Pietrelettrica della Corte del Re del Tuono", "name_pt_PT": "Pedra de Carga da Corte do Rei Trovão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Tuskarr Sea Charm", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 461884, "buy_price": 2309420, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0282000303268433, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ancient Tuskarr Sea Charm", "name_ko_KR": "고대의 투스카르 바다 부적", "name_fr_FR": "Charme des mers rohart ancien", "name_de_DE": "Uralter Meerestalisman der Tuskarr", "name_zh_CN": "古代海象人的海波护符", "name_es_ES": "Colgante marino colmillarr antiguo", "name_ru_RU": "Древний клыкаррский оберег", "name_it_IT": "Antico Talismano Marino dei Tuskarr", "name_pt_PT": "Patuá Marítimo Morsano Antigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165662, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kezan Stamped Bijou", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430483, "buy_price": 2152419, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958299994468689, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kezan Stamped Bijou", "name_ko_KR": "케잔 징표가 찍힌 장신구", "name_fr_FR": "Bijou estampillé de Kezan", "name_de_DE": "Kezangeprägtes Kleinod", "name_zh_CN": "科赞铭刻宝石", "name_es_ES": "Presea estampada de Kezan", "name_ru_RU": "Штампованная блестяшка из Кезана", "name_it_IT": "Bijou Stampato di Kezan", "name_pt_PT": "Bijuteria com Alto Relevo de Kezan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165664, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sea Giant's Tidestone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 433763, "buy_price": 2168815, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sea Giant's Tidestone", "name_ko_KR": "바다 거인의 해일석", "name_fr_FR": "Pierre des marées du géant des mers", "name_de_DE": "Gezeitenstein des Meeresriesen", "name_zh_CN": "海巨人的潮汐之石", "name_es_ES": "Piedramar de gigante marino", "name_ru_RU": "Приливный камень морского великана", "name_it_IT": "Pietra delle Maree del Gigante del Mare", "name_pt_PT": "Pedramar do Gigante do Mar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165665, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ritual Feather of Unng Ak", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 435425, "buy_price": 2177125, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692999720573425, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ritual Feather of Unng Ak", "name_ko_KR": "웅 아크의 의식용 깃털", "name_fr_FR": "Plume rituelle d’Unng Ak", "name_de_DE": "Ritualfeder von Unng Ak", "name_zh_CN": "昂克的仪式之羽", "name_es_ES": "Pluma de ritual de Unng Ak", "name_ru_RU": "Ритуальное перо Уннг Ака", "name_it_IT": "Piuma Rituale di Unng Ak", "name_pt_PT": "Pena Ritual de Unng Ak", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165666, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moonstone of Zin-Azshari", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 437087, "buy_price": 2185436, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9729999899864197, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Moonstone of Zin-Azshari", "name_ko_KR": "진아즈샤리의 월장석", "name_fr_FR": "Pierre de lune de Zin-Azshari", "name_de_DE": "Mondstein von Zin-Azshari", "name_zh_CN": "辛艾萨莉的月亮石", "name_es_ES": "Piedra lunar de Zin-Azshari", "name_ru_RU": "Лунный камень Зин-Азшари", "name_it_IT": "Pietraluna di Zin-Azshari", "name_pt_PT": "Pedra-da-lua de Zin-Azshari", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165667, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Razzashi Tooth Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 438704, "buy_price": 2193522, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Razzashi Tooth Medallion", "name_ko_KR": "래즈자쉬 이빨 메달", "name_fr_FR": "Médaillon de dent razzashi", "name_de_DE": "Razzashizahnmedaillon", "name_zh_CN": "拉扎什利齿奖章", "name_es_ES": "Medallón de dientes Razzashi", "name_ru_RU": "Оберег из клыка Раззаши", "name_it_IT": "Medaglione con Dente di Razzashi", "name_pt_PT": "Medalhão de Dentes de Razzashi", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165806, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Maledict", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 633615, "buy_price": 3168076, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9984999895095825, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Maledict", "name_ko_KR": "사악한 검투사의 저주", "name_fr_FR": "Bijou maudit du gladiateur sinistre", "name_de_DE": "Verhängnis des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的咒徽", "name_es_ES": "Maldición de Gladiador siniestro", "name_ru_RU": "Темный фетиш зловещего гладиатора", "name_it_IT": "Maledizione del Gladiatore Sinistro", "name_pt_PT": "Imprecação do Gladiador Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165807, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Safeguard", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 652779, "buy_price": 3263896, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0286999940872192, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Safeguard", "name_ko_KR": "사악한 검투사의 안전장치", "name_fr_FR": "Sauvegarde du gladiateur sinistre", "name_de_DE": "Schutzwall des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的护徽", "name_es_ES": "Salvaguarda de Gladiador siniestro", "name_ru_RU": "Оберег зловещего гладиатора", "name_it_IT": "Salvaguardia del Gladiatore Sinistro", "name_pt_PT": "Salvaguarda do Gladiador Sinistro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165926, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Tidal Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 305737, "buy_price": 1528689, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9506999850273132, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 130, "req_skill": 2478, "ilevel": 66, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Tidal Alchemist Stone", "name_ko_KR": "파도의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste des marées", "name_de_DE": "Gezeitenalchemistenstein", "name_zh_CN": "汐辉炼金石", "name_es_ES": "Piedra de alquimista de marea", "name_ru_RU": "Приливный алхимический камень", "name_it_IT": "Pietra Alchemica Mareale", "name_pt_PT": "Pedra Marítima do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165927, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Spirited Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 311007, "buy_price": 1555038, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9542999863624573, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2478, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Spirited Alchemist Stone", "name_ko_KR": "활력 깃든 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste robuste", "name_de_DE": "Lebendiger Alchemistenstein", "name_zh_CN": "风发炼金石", "name_es_ES": "Piedra de alquimista animada", "name_ru_RU": "Одушевленный алхимический камень", "name_it_IT": "Pietra Alchemica Spiritica", "name_pt_PT": "Pedra Sagaz do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165928, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 316341, "buy_price": 1581707, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9580000042915344, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2478, "ilevel": 78, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Alchemist Stone", "name_ko_KR": "영원의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste éternelle", "name_de_DE": "Ewiger Alchemistenstein", "name_zh_CN": "永恒炼金石", "name_es_ES": "Piedra de alquimista eterna", "name_ru_RU": "Вечный алхимический камень", "name_it_IT": "Pietra Alchemica Eterna", "name_pt_PT": "Pedra Eterna do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166418, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crest of Pa'ku", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 619908, "buy_price": 3099543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 165581, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Crest of Pa'ku", "name_ko_KR": "파쿠의 문장", "name_fr_FR": "Écu de Pa’ku", "name_de_DE": "Pa'kus Wappen", "name_zh_CN": "帕库冠羽", "name_es_ES": "Blasón de Pa'ku", "name_ru_RU": "Гребень Па'ку", "name_it_IT": "Pennacchio di Pa'ku", "name_pt_PT": "Brasão de Pa'kul", "on_use": false, "id_encounter": 2330, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 166753, "race_mask": 12261800583900083122, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Orcish War Horn", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0357999801635742, "flags_1": 134742080, "flags_2": 155649, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166769, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Orcish War Horn", "name_ko_KR": "오크족 전쟁 뿔피리", "name_fr_FR": "Cor de guerre orc", "name_de_DE": "Orcisches Kriegshorn", "name_zh_CN": "兽人战争号角", "name_es_ES": "Cuerno de guerra de los orcos", "name_ru_RU": "Орочий боевой рог", "name_it_IT": "Corno da Guerra Orchesco", "name_pt_PT": "Trompa de Guerra Órquica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166754, "race_mask": 12261800583900083122, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Thalassian Hymns", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0394999980926514, "flags_1": 134742080, "flags_2": 155649, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166768, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Tome of Thalassian Hymns", "name_ko_KR": "탈라시안 성가집", "name_fr_FR": "Tome d’hymnes thalassiens", "name_de_DE": "Foliant thalassischer Hymnen", "name_zh_CN": "萨拉斯圣歌谱", "name_es_ES": "Escrito de himnos thalassianos", "name_ru_RU": "Фолиант кель'таласских гимнов", "name_it_IT": "Tomo degli Inni Thalassiani", "name_pt_PT": "Tomo de Hinos Talassianos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166755, "race_mask": 12261800583900083122, "desc": "A dark powder used to conceal soldiers for infiltrations undertaken at night.", "pad2": "", "pad1": "", "pad0": "", "name": "Deathstalkers' Gloaming Powder", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 134742080, "flags_2": 155649, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166767, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Deathstalkers' Gloaming Powder", "name_ko_KR": "죽음추적자의 해거름 가루", "name_fr_FR": "Poudre crépusculaire des nécrotraqueurs", "name_de_DE": "Dämmerungspulver des Todespirschers", "name_zh_CN": "死亡猎手的薄暮之粉", "name_es_ES": "Polvo del ocaso de mortacechador", "name_ru_RU": "Сумеречная пыльца ловчего смерти", "name_it_IT": "Polvere Crepuscolare dell'Inseguitore della Morte", "name_pt_PT": "Pó Crepuscular do Sicário", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166756, "race_mask": 12261800583900083122, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Loa-Touched Warscroll", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 134742080, "flags_2": 155649, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166766, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Loa-Touched Warscroll", "name_ko_KR": "로아의 힘이 담긴 전쟁 두루마리", "name_fr_FR": "Parchemin de guerre marqué par les Loas", "name_de_DE": "Loaberührte Kriegsrolle", "name_zh_CN": "神灵赐福战争卷轴", "name_es_ES": "Pergamino de guerra tocado por los loa", "name_ru_RU": "Зачарованный лоа боевой свиток", "name_it_IT": "Pergamena di Guerra Toccata dai Loa", "name_pt_PT": "Pergaminho-de-guerra Tocado pelos Loas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166766, "race_mask": 6130900294268439629, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Tidesages' Warscroll", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0099999904632568, "flags_1": 134742080, "flags_2": 155650, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166756, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Tidesages' Warscroll", "name_ko_KR": "파도현자의 전쟁 두루마리", "name_fr_FR": "Parchemin de guerre des eaugures", "name_de_DE": "Kriegsrolle der Gezeitenweisen", "name_zh_CN": "海潮贤者的战争卷轴", "name_es_ES": "Pergamino de guerra de los Sabiomar", "name_ru_RU": "Боевой свиток жрецов моря", "name_it_IT": "Pergamena di Guerra dei Saggi delle Maree", "name_pt_PT": "Pergaminho de Guerra dos Sábios das Marés", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166767, "race_mask": 6130900294268439629, "desc": "A dark powder used to conceal soldiers for infiltrations undertaken at night.", "pad2": "", "pad1": "", "pad0": "", "name": "Kaldorei Powder of Twilight", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 134742080, "flags_2": 155650, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166755, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Kaldorei Powder of Twilight", "name_ko_KR": "칼도레이 황혼의 가루", "name_fr_FR": "Poudre de crépuscule kaldorei", "name_de_DE": "Kaldoreipulver des Zwielichts", "name_zh_CN": "卡多雷的暮光之粉", "name_es_ES": "Polvo del crepúsculo kaldorei", "name_ru_RU": "Калдорайский сумеречный порошок", "name_it_IT": "Polvere del Crepuscolo dei Kaldorei", "name_pt_PT": "Pó Crepuscular Kaldorei", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166768, "race_mask": 6130900294268439629, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Hymnal of the 7th Legion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017300009727478, "flags_1": 134742080, "flags_2": 155650, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166754, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Hymnal of the 7th Legion", "name_ko_KR": "7군단의 성가집", "name_fr_FR": "Hymnaire de la 7e Légion", "name_de_DE": "Gesangbuch der 7. Legion", "name_zh_CN": "第七军团赞美诗", "name_es_ES": "Cantoral de la Séptima Legión", "name_ru_RU": "Гимнарий 7-го легиона", "name_it_IT": "Innario della VII Legione", "name_pt_PT": "Hinário da 7ª Legião", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166769, "race_mask": 6130900294268439629, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Dwarven War Horn", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0210000276565552, "flags_1": 134742080, "flags_2": 155650, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166753, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Dwarven War Horn", "name_ko_KR": "드워프족 전쟁 뿔피리", "name_fr_FR": "Cor de guerre nain", "name_de_DE": "Zwergisches Kriegshorn", "name_zh_CN": "矮人战争号角", "name_es_ES": "Cuerno de guerra de los enanos", "name_ru_RU": "Дворфийский боевой рог", "name_it_IT": "Corno da Guerra Nanico", "name_pt_PT": "Trompa de Guerra Enânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166793, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Knot of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3188, "buy_price": 15943, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 161417, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Knot of Wisdom", "name_ko_KR": "고대의 지혜 매듭", "name_fr_FR": "Ancien nœud de sagesse", "name_de_DE": "Uralter Knorren der Weisheit", "name_zh_CN": "远古智慧之结", "name_es_ES": "Antiguo nudo de sabiduría", "name_ru_RU": "Сучок древней мудрости", "name_it_IT": "Antico Nodo della Saggezza", "name_pt_PT": "Nó Antigo da Sabedoria", "on_use": true, "id_encounter": 2329, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 166794, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forest Lord's Razorleaf", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612738, "buy_price": 3063690, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 161415, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Forest Lord's Razorleaf", "name_ko_KR": "숲군주의 칼날잎새", "name_fr_FR": "Tranchefeuille du seigneur de la forêt", "name_de_DE": "Klingenblatt des Waldlords", "name_zh_CN": "森林之王的刀叶", "name_es_ES": "Hojafilo del Señor del Bosque", "name_ru_RU": "Бритволист лесного властелина", "name_it_IT": "Fogliafina del Signore della Foresta", "name_pt_PT": "Folhâmina do Senhor da Floresta", "on_use": false, "id_encounter": 2329, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 166795, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Knot of Ancient Fury", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 615085, "buy_price": 3075429, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692999720573425, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 161413, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Knot of Ancient Fury", "name_ko_KR": "고대의 분노 매듭", "name_fr_FR": "Nœud de la fureur des anciens", "name_de_DE": "Knoten der urzeitlichen Wut", "name_zh_CN": "远古愤怒之结", "name_es_ES": "Nudo de furia antigua", "name_ru_RU": "Сучок древней ярости", "name_it_IT": "Nodo della Furia Antica", "name_pt_PT": "Nó da Fúria Antiga", "on_use": true, "id_encounter": 2329, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 166974, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Sanguinated Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 322804, "buy_price": 1614021, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0174000263214111, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2478, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sanguinated Alchemist Stone", "name_ko_KR": "혈기 왕성한 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste sanguicellaire", "name_de_DE": "Blutiger Alchemistenstein", "name_zh_CN": "血色炼金石", "name_es_ES": "Piedra de alquimista sanguinaria", "name_ru_RU": "Кровяной алхимический камень", "name_it_IT": "Pietra Alchemica Insanguinata", "name_pt_PT": "Pedra do Alquimista Sanguinolenta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166975, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Imbued Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 323978, "buy_price": 1619891, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0211000442504883, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2478, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Imbued Alchemist Stone", "name_ko_KR": "마력 깃든 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste imprégnée", "name_de_DE": "Machtgetränkter Alchemistenstein", "name_zh_CN": "灌魔炼金石", "name_es_ES": "Piedra de alquimista imbuida", "name_ru_RU": "Усиленный алхимический камень", "name_it_IT": "Pietra Alchemica Infusa", "name_pt_PT": "Pedra do Alquimista Imbuída", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166976, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Emblazoned Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 329567, "buy_price": 1647839, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0247999429702759, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2478, "ilevel": 66, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Emblazoned Alchemist Stone", "name_ko_KR": "문장장식 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste ornée", "name_de_DE": "Verzierter Alchemistenstein", "name_zh_CN": "纹饰炼金石", "name_es_ES": "Piedra de alquimista blasonada", "name_ru_RU": "Украшенный гербом алхимический камень", "name_it_IT": "Pietra Alchemica Incisa", "name_pt_PT": "Pedra do Alquimista Brasonada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167377, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 607978, "buy_price": 3039894, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581000208854675, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Medallion", "name_ko_KR": "악명 높은 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur notoire", "name_de_DE": "Medaillon des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的勋章", "name_es_ES": "Medallón de Gladiador déspota", "name_ru_RU": "Медальон отъявленного гладиатора", "name_it_IT": "Medaglione del Gladiatore Famigerato", "name_pt_PT": "Medalhão do Gladiador Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167378, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 610326, "buy_price": 3051633, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9617999792098999, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Emblem", "name_ko_KR": "악명 높은 검투사의 문장", "name_fr_FR": "Emblème du gladiateur notoire", "name_de_DE": "Emblem des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的纹章", "name_es_ES": "Emblema de Gladiador déspota", "name_ru_RU": "Эмблема отъявленного гладиатора", "name_it_IT": "Emblema del Gladiatore Famigerato", "name_pt_PT": "Emblema do Gladiador Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167379, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612674, "buy_price": 3063373, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Insignia", "name_ko_KR": "악명 높은 검투사의 계급장", "name_fr_FR": "Insigne du gladiateur notoire", "name_de_DE": "Insigne des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的徽记", "name_es_ES": "Insignia de Gladiador déspota", "name_ru_RU": "Знак отъявленного гладиатора", "name_it_IT": "Fregio del Gladiatore Famigerato", "name_pt_PT": "Insígnia do Gladiador Notório", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167380, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 614959, "buy_price": 3074795, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9690999984741211, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Badge", "name_ko_KR": "악명 높은 검투사의 표장", "name_fr_FR": "Écusson du gladiateur notoire", "name_de_DE": "Abzeichen des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的徽章", "name_es_ES": "Distintivo de Gladiador déspota", "name_ru_RU": "Жетон отъявленного гладиатора", "name_it_IT": "Distintivo del Gladiatore Famigerato", "name_pt_PT": "Distintivo do Gladiador Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167383, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Maledict", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 638818, "buy_price": 3194094, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006700038909912, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Maledict", "name_ko_KR": "악명 높은 검투사의 저주", "name_fr_FR": "Bijou maudit du gladiateur notoire", "name_de_DE": "Verhängnis des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的咒徽", "name_es_ES": "Maldición de Gladiador déspota", "name_ru_RU": "Темный фетиш отъявленного гладиатора", "name_it_IT": "Maledizione del Gladiatore Famigerato", "name_pt_PT": "Imprecação do Gladiador Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167384, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Safeguard", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 641103, "buy_price": 3205516, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0103000402450562, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Safeguard", "name_ko_KR": "악명 높은 검투사의 안전장치", "name_fr_FR": "Sauvegarde du gladiateur notoire", "name_de_DE": "Schutzwall des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的护徽", "name_es_ES": "Salvaguarda de Gladiador déspota", "name_ru_RU": "Оберег отъявленного гладиатора", "name_it_IT": "Salvaguardia del Gladiatore Famigerato", "name_pt_PT": "Salvaguarda do Gladiador Notório", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167525, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Aspirant's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 659696, "buy_price": 3298480, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0396000146865845, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Aspirant's Medallion", "name_ko_KR": "악명 높은 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant notoire", "name_de_DE": "Medaillon des berüchtigten Aspiranten", "name_zh_CN": "罪邪候选者的勋章", "name_es_ES": "Medallón de aspirante déspota", "name_ru_RU": "Медальон отъявленного претендента", "name_it_IT": "Medaglione del Pretendente Famigerato", "name_pt_PT": "Medalhão do Aspirante Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167526, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Aspirant's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 615339, "buy_price": 3076699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696999788284302, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Aspirant's Emblem", "name_ko_KR": "악명 높은 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant notoire", "name_de_DE": "Emblem des berüchtigten Aspiranten", "name_zh_CN": "罪邪候选者的纹章", "name_es_ES": "Emblema de aspirante déspota", "name_ru_RU": "Эмблема отъявленного претендента", "name_it_IT": "Emblema del Pretendente Famigerato", "name_pt_PT": "Emblema do Aspirante Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Aspirant's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 617624, "buy_price": 3088121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732999801635742, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Aspirant's Insignia", "name_ko_KR": "악명 높은 지원자의 계급장", "name_fr_FR": "Insigne de l’aspirant notoire", "name_de_DE": "Insigne des berüchtigten Aspiranten", "name_zh_CN": "罪邪候选者的徽记", "name_es_ES": "Insignia de aspirante déspota", "name_ru_RU": "Знак отъявленного претендента", "name_it_IT": "Fregio del Pretendente Famigerato", "name_pt_PT": "Insígnia do Aspirante Notório", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Aspirant's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 619972, "buy_price": 3099860, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9769999980926514, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Aspirant's Badge", "name_ko_KR": "악명 높은 지원자의 표장", "name_fr_FR": "Écusson de l’aspirant notoire", "name_de_DE": "Abzeichen des berüchtigten Aspiranten", "name_zh_CN": "罪邪候选者的徽章", "name_es_ES": "Distintivo de aspirante déspota", "name_ru_RU": "Жетон отъявленного претендента", "name_it_IT": "Distintivo del Pretendente Famigerato", "name_pt_PT": "Distintivo do Aspirante Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167555, "race_mask": 18446744073709551615, "desc": "Several slots are visible on the underside of this device, roughly the right shape for punch cards.", "pad2": "", "pad1": "", "pad0": "", "name": "Pocket-Sized Computation Device", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0025999546051025, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 19, "socket_color_2": 20, "socket_color_3": 21, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Pocket-Sized Computation Device", "name_ko_KR": "소형 산출 장치", "name_fr_FR": "Appareil de calcul de poche", "name_de_DE": "Rechengerät im Taschenformat", "name_zh_CN": "口袋计算装置", "name_es_ES": "Dispositivo de cómputo de bolsillo", "name_ru_RU": "Карманное вычислительное устройство", "name_it_IT": "Dispositivo di Calcolo Tascabile", "name_pt_PT": "Dispositivo Computacional de Bolso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167865, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 615339, "buy_price": 3076699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696999788284302, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Void Stone", "name_ko_KR": "공허의 돌", "name_fr_FR": "Pierre de Vide", "name_de_DE": "Leerenstein", "name_zh_CN": "虚空石", "name_es_ES": "Piedra del Vacío", "name_ru_RU": "Камень Бездны", "name_it_IT": "Pietra del Vuoto", "name_pt_PT": "Pedra do Caos", "on_use": true, "id_encounter": 2332, "id_journal_instance": 1177, "id_map": 2096, "instance_type": 2}, {"id": 167866, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lurker's Insidious Gift", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 617624, "buy_price": 3088121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732999801635742, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Lurker's Insidious Gift", "name_ko_KR": "잠복자의 은밀한 선물", "name_fr_FR": "Don insidieux de rôdeur", "name_de_DE": "Des Lauerers tückisches Geschenk", "name_zh_CN": "潜伏者的险恶赐福", "name_es_ES": "Obsequio insidioso del merodeador", "name_ru_RU": "Коварный дар сокрытого", "name_it_IT": "Dono Insidioso del Guardingo", "name_pt_PT": "Dádiva Insidiosa do Tocaieiro", "on_use": true, "id_encounter": 2332, "id_journal_instance": 1177, "id_map": 2096, "instance_type": 2}, {"id": 167867, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harbinger's Inscrutable Will", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3238, "buy_price": 16193, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9769999980926514, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Harbinger's Inscrutable Will", "name_ko_KR": "전령의 불가해한 의지", "name_fr_FR": "Volonté insondable de messager", "name_de_DE": "Unergründlicher Wille des Vorboten", "name_zh_CN": "先锋的晦密意志", "name_es_ES": "Voluntad inescrutable del presagista", "name_ru_RU": "Непостижимая воля глашатая", "name_it_IT": "Volontà Imperscrutabile dell'Araldo", "name_pt_PT": "Vontade Inescrutável do Emissário", "on_use": false, "id_encounter": 2332, "id_journal_instance": 1177, "id_map": 2096, "instance_type": 2}, {"id": 167868, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of Indiscriminate Consumption", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 622320, "buy_price": 3111600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807000160217285, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Idol of Indiscriminate Consumption", "name_ko_KR": "무차별적인 잠식의 우상", "name_fr_FR": "Idole de dévoration aveugle", "name_de_DE": "Götze des willkürlichen Verschlingens", "name_zh_CN": "肆意侵吞法器", "name_es_ES": "Ídolo de consumo indiscriminado", "name_ru_RU": "Идол неразборчивого поглощения", "name_it_IT": "Idolo della Consunzione Indiscriminata", "name_pt_PT": "Ídolo da Consumição Indiscriminada", "on_use": true, "id_encounter": 2332, "id_journal_instance": 1177, "id_map": 2096, "instance_type": 2}, {"id": 168320, "race_mask": 18446744073709551615, "desc": "Only the most perfect pearls will do for the guests of Suva!", "pad2": "", "pad1": "", "pad0": "", "name": "Shiniest Roundiest Pearl of Goodness", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2, "buy_price": 12, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807000160217285, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Shiniest Roundiest Pearl of Goodness", "name_ko_KR": "가장 반짝이면서도 둥근 선의 진주", "name_fr_FR": "Perle de bonté rondissime et brillantissime", "name_de_DE": "Glänzendste rundeste allerbeste Perle", "name_zh_CN": "最亮最圆的优质珍珠", "name_es_ES": "Perla de bondad increíblemente brillante y redonda", "name_ru_RU": "Ярчайшая и круглейшая великолепная жемчужина", "name_it_IT": "Perla Rotondissima e Lucentissima della Divinità", "name_pt_PT": "Pérola Brilhante e Redondinha e Bonitona", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 168674, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Abyssal Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 632693, "buy_price": 3163465, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 165, "req_skill": 2478, "ilevel": 76, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Abyssal Alchemist Stone", "name_ko_KR": "심연의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste abyssale", "name_de_DE": "Abyssischer Alchemistenstein", "name_zh_CN": "深渊炼金石", "name_es_ES": "Piedra de alquimista abisal", "name_ru_RU": "Глубинный алхимический камень", "name_it_IT": "Pietra Alchemica Abissale", "name_pt_PT": "Pedra do Alquimista Abissal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 168675, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Crushing Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 643449, "buy_price": 3217249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9659000039100647, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 165, "req_skill": 2478, "ilevel": 82, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Crushing Alchemist Stone", "name_ko_KR": "분쇄의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste écrasante", "name_de_DE": "Zermalmender Alchemistenstein", "name_zh_CN": "碾压炼金石", "name_es_ES": "Piedra de alquimista aplastante", "name_ru_RU": "Пучинный алхимический камень", "name_it_IT": "Pietra Alchemica Devastante", "name_pt_PT": "Pedra do Alquimista Esmagadora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 168676, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Ascended Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 654206, "buy_price": 3271030, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 165, "req_skill": 2478, "ilevel": 95, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ascended Alchemist Stone", "name_ko_KR": "승천의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste sublimée", "name_de_DE": "Erwachter Alchemistenstein", "name_zh_CN": "升腾炼金石", "name_es_ES": "Piedra de alquimista ascendida", "name_ru_RU": "Алхимический камень вознесения", "name_it_IT": "Pietra Alchemica Ascesa", "name_pt_PT": "Pedra do Alquimista Elevada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 168905, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiver Venom Relic", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6540, "buy_price": 32700, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Shiver Venom Relic", "name_ko_KR": "전율의 맹독 유물", "name_fr_FR": "Relique des convulsions venimeuses", "name_de_DE": "Zittergiftrelikt", "name_zh_CN": "颤栗剧毒圣物", "name_es_ES": "Reliquia de veneno de escalofrío", "name_ru_RU": "Реликвия леденящего яда", "name_it_IT": "Reliquia dei Brividi Velenosi", "name_pt_PT": "Relíquia do Calafrio Peçonhento", "on_use": true, "id_encounter": 2352, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 168965, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Modular Platinum Plating", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 664845, "buy_price": 3324227, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006700038909912, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 78, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Modular Platinum Plating", "name_ko_KR": "규격화된 백금 판", "name_fr_FR": "Placage en platine modulaire", "name_de_DE": "Modulare Platinpanzerung", "name_zh_CN": "模块化的白金外壳", "name_es_ES": "Blindaje de platino modular", "name_ru_RU": "Многослойная платиновая обшивка", "name_it_IT": "Placcatura in Platino Modulare", "name_pt_PT": "Blindagem de Platina Modular", "on_use": true, "id_encounter": 2336, "id_journal_instance": 1178, "id_map": 2097, "instance_type": 1}, {"id": 169301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Highborne Compendium of Swirling Tides", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9955999851226807, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Highborne Compendium of Swirling Tides", "name_ko_KR": "소용돌이치는 파도의 명가 전서", "name_fr_FR": "Compendium bien-né des flots tourbillonnants", "name_de_DE": "Hochgeborenenkompendium der wirbelnden Fluten", "name_zh_CN": "上层精灵的漩潮纲要", "name_es_ES": "Compendio Altonato de Mareas espirales", "name_ru_RU": "Компендиум высокорожденных: \"Бурлящие волны\"", "name_it_IT": "Compendio degli Alti Nobili sulle Maree Turbinanti", "name_pt_PT": "Compêndio Altaneiro das Marés Rodopiantes", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 169302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Highborne Compendium of Mystical Bulwark", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9993000030517578, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Highborne Compendium of Mystical Bulwark", "name_ko_KR": "신비한 보루의 명가 전서", "name_fr_FR": "Compendium bien-né du rempart mystique", "name_de_DE": "Hochgeborenenkompendium des mystischen Bollwerks", "name_zh_CN": "上层精灵的秘壁纲要", "name_es_ES": "Compendio Altonato de Baluarte místico", "name_ru_RU": "Компендиум высокорожденных: \"Таинственный бастион\"", "name_it_IT": "Compendio degli Alti Nobili sul Baluardo Mistico", "name_pt_PT": "Compêndio Altaneiro do Baluarte Místico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 169304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leviathan's Lure", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6714, "buy_price": 33571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Leviathan's Lure", "name_ko_KR": "거대괴수의 유혹", "name_fr_FR": "Appât de léviathan", "name_de_DE": "Köder des Leviathans", "name_zh_CN": "海兽的诱饵", "name_es_ES": "Cebo de leviatán", "name_ru_RU": "Приманка для левиафана", "name_it_IT": "Esca del Leviatano", "name_pt_PT": "Isca de Leviatã", "on_use": false, "id_encounter": 2347, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aquipotent Nautilus", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6738, "buy_price": 33694, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0103000402450562, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Aquipotent Nautilus", "name_ko_KR": "수력충만 앵무조개", "name_fr_FR": "Nautile aquipotent", "name_de_DE": "Äquipotenter Nautilus", "name_zh_CN": "等效海能鹦鹉螺", "name_es_ES": "Nautilus acuipotente", "name_ru_RU": "Могучий наутилус", "name_it_IT": "Nautilus Acquipotente", "name_pt_PT": "Náutilo Aquipotente", "on_use": true, "id_encounter": 2354, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Za'qul's Portal Key", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6763, "buy_price": 33817, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Za'qul's Portal Key", "name_ko_KR": "자쿨의 차원문 열쇠", "name_fr_FR": "Clé du portail de Za’qul", "name_de_DE": "Za'quls Portalschlüssel", "name_zh_CN": "扎库尔的传送门钥匙", "name_es_ES": "Llave del portal de Za'qul", "name_ru_RU": "Ключ к порталу За'кула", "name_it_IT": "Chiave del Portale di Za'qul", "name_pt_PT": "Chave do Portal de Za'qul", "on_use": false, "id_encounter": 2349, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vision of Demise", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 663339, "buy_price": 3316698, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017699956893921, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Vision of Demise", "name_ko_KR": "파멸의 환영", "name_fr_FR": "Vision de trépas", "name_de_DE": "Vision des Untergangs", "name_zh_CN": "殒命预言", "name_es_ES": "Visión del fin", "name_ru_RU": "Видение смерти", "name_it_IT": "Visione di Disfatta", "name_pt_PT": "Visão do Óbito", "on_use": true, "id_encounter": 2349, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chain of Suffering", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 665686, "buy_price": 3328430, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.021299958229065, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Chain of Suffering", "name_ko_KR": "괴로움의 사슬", "name_fr_FR": "Chaîne de souffrance", "name_de_DE": "Kette des Leidens", "name_zh_CN": "苦楚锁链", "name_es_ES": "Cadena de sufrimiento", "name_ru_RU": "Цепочка страданий", "name_it_IT": "Catena della Sofferenza", "name_pt_PT": "Corrente de Sofrimento", "on_use": true, "id_encounter": 2349, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zoatroid Egg Sac", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 668097, "buy_price": 3340489, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024999976158142, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Zoatroid Egg Sac", "name_ko_KR": "조아트로이드 알주머니", "name_fr_FR": "Cocon d’œufs zoatroïdes", "name_de_DE": "Zoatroideneiersack", "name_zh_CN": "虚悯者卵囊", "name_es_ES": "Saco de huevos zoatroides", "name_ru_RU": "Кладка яиц зоатроида", "name_it_IT": "Sacca di Uova di Zoatroidi", "name_pt_PT": "Bolsa de Ovos de Zoatroide", "on_use": false, "id_encounter": 2351, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Urchin", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 622536, "buy_price": 3112684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9550999999046326, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Bloodthirsty Urchin", "name_ko_KR": "피에 굶주린 성게", "name_fr_FR": "Oursin assoiffé de sang", "name_de_DE": "Blutrünstiger Seeigel", "name_zh_CN": "嗜血海胆", "name_es_ES": "Erizo de mar sediento de sangre", "name_ru_RU": "Кровожадный морской еж", "name_it_IT": "Riccio Sanguinario", "name_pt_PT": "Pivete Sedento de Sangue", "on_use": false, "id_encounter": 2354, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashvane's Razor Coral", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 624948, "buy_price": 3124742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9588000178337097, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ashvane's Razor Coral", "name_ko_KR": "애쉬베인의 칼날 산호", "name_fr_FR": "Corail rasoir de Corsandre", "name_de_DE": "Aschenwinds Klingenkoralle", "name_zh_CN": "艾什凡的锋锐珊瑚", "name_es_ES": "Coral afilado de Gobernalle", "name_ru_RU": "Острый коралл Эшвейн", "name_it_IT": "Corallo Tagliente dei Bracescura", "name_pt_PT": "Coral-navalha de Grimpagris", "on_use": true, "id_encounter": 2354, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Luminous Jellyweed", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 627295, "buy_price": 3136475, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624000191688538, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Luminous Jellyweed", "name_ko_KR": "영롱한 해파리초", "name_fr_FR": "Algue gélatineuse luisante", "name_de_DE": "Leuchtendes Quallenkraut", "name_zh_CN": "辉光凝藻", "name_es_ES": "Yerbamedusa luminosa", "name_ru_RU": "Флуоресцентная желейная водоросль", "name_it_IT": "Alga Gelatinosa Luminosa", "name_pt_PT": "Algosma Luminosa", "on_use": false, "id_encounter": 2347, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169313, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Phial of the Arcane Tempest", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 629706, "buy_price": 3148533, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9660999774932861, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Phial of the Arcane Tempest", "name_ko_KR": "비전 폭풍우의 유리병", "name_fr_FR": "Flasque de tempête arcanique", "name_de_DE": "Phiole des arkanen Sturms", "name_zh_CN": "魔力风暴之瓶", "name_es_ES": "Ampolla de la tempestad Arcana", "name_ru_RU": "Фиал чародейской бури", "name_it_IT": "Fiala della Tempesta Arcana", "name_pt_PT": "Frasco da Intempérie Arcana", "on_use": false, "id_encounter": 2353, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169314, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Azshara's Font of Power", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 632118, "buy_price": 3160591, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Azshara's Font of Power", "name_ko_KR": "아즈샤라의 마력의 샘", "name_fr_FR": "Source de pouvoir d’Azshara", "name_de_DE": "Azsharas Born der Macht", "name_zh_CN": "艾萨拉的能量之泉", "name_es_ES": "Fuente de poder de Azshara", "name_ru_RU": "Источник энергии Азшары", "name_it_IT": "Fonte del Potere di Azshara", "name_pt_PT": "Fonte de Poder de Azshara", "on_use": true, "id_encounter": 2361, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Edicts of the Faithless", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 634530, "buy_price": 3172650, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9735000133514404, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Edicts of the Faithless", "name_ko_KR": "부정한 자의 칙령", "name_fr_FR": "Édits des Infidèles", "name_de_DE": "Erlasse der Ungläubigen", "name_zh_CN": "无信者之裁", "name_es_ES": "Edictos de los infieles", "name_ru_RU": "Эдикты отступников", "name_it_IT": "Editti dei Senzafede", "name_pt_PT": "Édito dos Ímpios", "on_use": true, "id_encounter": 2359, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deferred Sentence", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 636876, "buy_price": 3184382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Deferred Sentence", "name_ko_KR": "선고 유예", "name_fr_FR": "Peine ajournée", "name_de_DE": "Aufgeschobenes Urteil", "name_zh_CN": "缓刑令", "name_es_ES": "Sentencia aplazada", "name_ru_RU": "Отсроченный приговор", "name_it_IT": "Sentenza Rinviata", "name_pt_PT": "Sentença Deferida", "on_use": false, "id_encounter": 2359, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169317, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enthraller's Bindstone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6542, "buy_price": 32710, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Enthraller's Bindstone", "name_ko_KR": "속박꾼의 귀속석", "name_fr_FR": "Pierre de lien de sorceleuse", "name_de_DE": "Bindungsstein des Bezauberers", "name_zh_CN": "奴役者的束缚之石", "name_es_ES": "Piedra vinculante del sometedor", "name_ru_RU": "Связующий камень Поработителя", "name_it_IT": "Pietra Legatoria dello Schiavista", "name_pt_PT": "Pedra de Vínculo do Encantador", "on_use": false, "id_encounter": 2362, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 169318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shockbiter's Fang", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6566, "buy_price": 32834, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Shockbiter's Fang", "name_ko_KR": "전격아귀의 송곳니", "name_fr_FR": "Croc du mordeur électrisant", "name_de_DE": "Schockbeißers Reißzahn", "name_zh_CN": "震咬者的尖牙", "name_es_ES": "Colmillo del mordedor galvánico", "name_ru_RU": "Клык электрозубой", "name_it_IT": "Zanna di Mordifolgore", "name_pt_PT": "Presa de Morde-choque", "on_use": true, "id_encounter": 2363, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 169319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dribbling Inkpod", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 644111, "buy_price": 3220557, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9882000088691711, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Dribbling Inkpod", "name_ko_KR": "흘러내리는 잉크함", "name_fr_FR": "Encrier dégoulinant", "name_de_DE": "Tröpfelnde Tintenkapsel", "name_zh_CN": "流液墨囊", "name_es_ES": "Vaina de tinta goteante", "name_ru_RU": "Протекающий чернильный мешочек", "name_it_IT": "Inchiostro Sgocciolante", "name_pt_PT": "Cápsula de Tinta Gotejante", "on_use": false, "id_encounter": 2351, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169321, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Highborne Compendium of Sundering", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9955000281333923, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Highborne Compendium of Sundering", "name_ko_KR": "분리의 명가 전서", "name_fr_FR": "Compendium bien-né de la fracture", "name_de_DE": "Hochgeborenenkompendium der Zerschlagung", "name_zh_CN": "上层精灵的裂击纲要", "name_es_ES": "Compendio Altonato del Cataclismo", "name_ru_RU": "Компендиум высокорожденных: \"Раскол\"", "name_it_IT": "Compendio degli Alti Nobili sulla Separazione", "name_pt_PT": "Compêndio Altaneiro da Cisão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 169328, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Highborne Compendium of Storms", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.047700047492981, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Highborne Compendium of Storms", "name_ko_KR": "폭풍의 명가 전서", "name_fr_FR": "Compendium bien-né des tempêtes", "name_de_DE": "Hochgeborenenkompendium der Stürme", "name_zh_CN": "上层精灵的风暴纲要", "name_es_ES": "Compendio Altonato de las tormentas", "name_ru_RU": "Компендиум высокорожденных: \"Буря\"", "name_it_IT": "Compendio degli Alti Nobili sulle Tempeste", "name_pt_PT": "Compêndio Altaneiro das Tempestades", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 169344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ingenious Mana Battery", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 682148, "buy_price": 3410742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0328999757766724, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 78, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ingenious Mana Battery", "name_ko_KR": "기발한 마나 전지", "name_fr_FR": "Batterie de mana ingénieuse", "name_de_DE": "Geniale Manabatterie", "name_zh_CN": "新颖的法力电池", "name_es_ES": "Batería de maná ingeniosa", "name_ru_RU": "Оригинальное манахранилище", "name_it_IT": "Batteria di Mana Ingegnosa", "name_pt_PT": "Bateria de Mana Engenhosa", "on_use": true, "id_encounter": 2348, "id_journal_instance": 1178, "id_map": 2097, "instance_type": 1}, {"id": 169769, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Remote Guidance Device", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 647740, "buy_price": 3238702, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 78, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Remote Guidance Device", "name_ko_KR": "원격 유도 장치", "name_fr_FR": "Appareil de guidage à distance", "name_de_DE": "Fernleitgerät", "name_zh_CN": "远程导航装置", "name_es_ES": "Dispositivo de teledirección", "name_ru_RU": "Устройство для дистанционного управления", "name_it_IT": "Dispositivo di Guida Remota", "name_pt_PT": "Dispositivo de Orientação Remota", "on_use": true, "id_encounter": 2360, "id_journal_instance": 1178, "id_map": 2097, "instance_type": 1}, {"id": 170273, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oxidized Refuse Remover", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3152, "buy_price": 15762, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509999752044678, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Oxidized Refuse Remover", "name_ko_KR": "산화된 쓰레기 투척기", "name_fr_FR": "Destructeur de déchets oxydés", "name_de_DE": "Oxidierter Unratentferner", "name_zh_CN": "氧化废料清除器", "name_es_ES": "Eliminador de desechos oxidado", "name_ru_RU": "Окисленный утилизатор отходов", "name_it_IT": "Rimuovi-Rifiuti Ossidato", "name_pt_PT": "Removedor de Refugo Oxidado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170596, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9922999739646912, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9959999918937683, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170600, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0069999694824219, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170603, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0181000232696533, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Pedra Defensora da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170607, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0326999425888062, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170610, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0437999963760376, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170613, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9811999797821045, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170616, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9922000169754028, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170620, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0068999528884888, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170623, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.017899990081787, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170628, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9627000093460083, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170631, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9736999869346619, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9847000241279602, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170637, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9957000017166138, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0104000568389893, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0214999914169312, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170650, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9699000120162964, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Pedra Defensora do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170652, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9772000312805176, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9846000075340271, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170658, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9993000030517578, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0368000268936157, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170665, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9513999819755554, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170669, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9660999774932861, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d’âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170672, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9771000146865845, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d’âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170682, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0404000282287598, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d’âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0440000295639038, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d’âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170686, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9549000263214111, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d’âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9660000205039978, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d’âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Pedra Defensora Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170691, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9732999801635742, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170694, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0108000040054321, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170697, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0219000577926636, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170700, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0328999757766724, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170706, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.954800009727478, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170709, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9922999739646912, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0144000053405762, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170718, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0254000425338745, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170720, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0326999425888062, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170723, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0437999963760376, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170729, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9922000169754028, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170732, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0032000541687012, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170737, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0216000080108643, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170740, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0326000452041626, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170749, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9921000003814697, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170752, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.003100037574768, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Pedra Defensora do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170755, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0140999555587769, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170756, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.017799973487854, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170935, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy", "name_ko_KR": "악마 상징물", "name_fr_FR": "Trophée de démon", "name_de_DE": "Dämonentrophäe", "name_zh_CN": "恶魔战利品", "name_es_ES": "Trofeo demoníaco", "name_ru_RU": "Демонический трофей", "name_it_IT": "Trofeo Demoniaco", "name_pt_PT": "Troféu do Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170936, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Demonic Fire", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Demonic Fire", "name_ko_KR": "악마의 불 부적", "name_fr_FR": "Charme de feu démoniaque", "name_de_DE": "Glücksbringer des Dämonenfeuers", "name_zh_CN": "魔火护符", "name_es_ES": "Talismán de fuego demoníaco", "name_ru_RU": "Талисман демонического огня", "name_it_IT": "Talismano del Fuoco Demoniaco", "name_pt_PT": "Patuá do Fogo Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171085, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Peerless Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 678882, "buy_price": 3394412, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9810000061988831, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 175, "req_skill": 2478, "ilevel": 125, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Peerless Alchemist Stone", "name_ko_KR": "독보적인 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste sans pareille", "name_de_DE": "Unvergleichlicher Alchemistenstein", "name_zh_CN": "无双炼金石", "name_es_ES": "Piedra de alquimista incomparable", "name_ru_RU": "Бесподобный алхимический камень", "name_it_IT": "Pietra Alchemica Impareggiabile", "name_pt_PT": "Pedra do Alquimista Inigualável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171087, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Awakened Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 675481, "buy_price": 3377407, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883999824523926, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 170, "req_skill": 2478, "ilevel": 110, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Awakened Alchemist Stone", "name_ko_KR": "각성한 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste éveillée", "name_de_DE": "Erweckter Alchemistenstein", "name_zh_CN": "觉醒炼金石", "name_es_ES": "Piedra de alquimista despierta", "name_ru_RU": "Пробужденный алхимический камень", "name_it_IT": "Pietra Alchemica Risvegliata", "name_pt_PT": "Pedra do Alquimista Desperta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171088, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Unbound Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 669456, "buy_price": 3347281, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9921000003814697, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 165, "req_skill": 2478, "ilevel": 95, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Unbound Alchemist Stone", "name_ko_KR": "해방된 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste déliée", "name_de_DE": "Entfesselter Alchemistenstein", "name_zh_CN": "无拘炼金石", "name_es_ES": "Piedra de alquimista desatada", "name_ru_RU": "Высвобожденный алхимический камень", "name_it_IT": "Pietra Alchemica Indomabile", "name_pt_PT": "Pedra do Alquimista Desvinculada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171323, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritual Alchemy Stone", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253504, "buy_price": 1267521, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9514999985694885, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2750, "ilevel": 165, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Spiritual Alchemy Stone", "name_ko_KR": "영적인 연금술 돌", "name_fr_FR": "Pierre d’alchimiste spirituelle", "name_de_DE": "Spiritueller Alchemiestein", "name_zh_CN": "灵魂炼金石", "name_es_ES": "Piedra de alquimia espiritual", "name_ru_RU": "Духовный алхимический камень", "name_it_IT": "Pietra Alchemica Spirituale", "name_pt_PT": "Pedra de Alquimia Espiritual", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171482, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prism of Inner Calm", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 9999, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998000264167786, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Prism of Inner Calm", "name_ko_KR": "내적인 고요의 프리즘", "name_fr_FR": "Prisme du calme intérieur", "name_de_DE": "Prisma der inneren Ruhe", "name_zh_CN": "心灵平静棱柱", "name_es_ES": "Prisma de calma interior", "name_ru_RU": "Призма Внутреннего Покоя", "name_it_IT": "Prisma della Calma Interiore", "name_pt_PT": "Prisma da Calma Interior", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Dead", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0216000080108643, "flags_1": 524288, "flags_2": 24577, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 171549, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Dead", "name_ko_KR": "생명이 없는 자의 통치", "name_fr_FR": "Règne de la mort", "name_de_DE": "Herrschaft der Toten", "name_zh_CN": "亡者的统治", "name_es_ES": "Reino de los muertos", "name_ru_RU": "Власть мертвых", "name_it_IT": "Regno della Morte", "name_pt_PT": "Rédeas dos Mortos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171549, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Unliving", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9514999985694885, "flags_1": 524288, "flags_2": 24578, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 171528, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Unliving", "name_ko_KR": "생명이 사라진 자의 통치", "name_fr_FR": "Règne des non-vivants", "name_de_DE": "Herrschaft der Leblosen", "name_zh_CN": "死者的统治", "name_es_ES": "Reino de los sin vida", "name_ru_RU": "Власть неживых", "name_it_IT": "Regno Senza Vita", "name_pt_PT": "Rédeas do Vivo-morto", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171631, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prestor's Talisman of Machination", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 98, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847999811172485, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Prestor's Talisman of Machination", "name_ko_KR": "계략의 프레스톨 부적", "name_fr_FR": "Talisman de machination de Prestor", "name_de_DE": "Prestors Talisman der Intrige", "name_zh_CN": "普瑞斯托的诡计护符", "name_es_ES": "Dije de maquinación de Prestor", "name_ru_RU": "Талисман интриг Престора", "name_it_IT": "Talismano della Macchinazione di Prestor", "name_pt_PT": "Talismã da Maquinação do Prestor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171640, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Variable Pulse Lightning Capacitor", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 133, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017899990081787, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Variable Pulse Lightning Capacitor", "name_ko_KR": "가변 파동 번개 축전기", "name_fr_FR": "Condensateur de foudre à pulsation variable", "name_de_DE": "Wechselimpulsblitzkondensator", "name_zh_CN": "变压脉冲电容器", "name_es_ES": "Condensador de relámpagos de pulso variable", "name_ru_RU": "Нестабильный конденсатор молний", "name_it_IT": "Condensatore Variabile a Luce Pulsata", "name_pt_PT": "Capacitor de Relâmpagos de Pulso Variável", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jaws of Defeat", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 134, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0480999946594238, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Jaws of Defeat", "name_ko_KR": "타도의 턱뼈", "name_fr_FR": "Mâchoires de défaite", "name_de_DE": "Fänge des Schicksals", "name_zh_CN": "绝境逢生", "name_es_ES": "Mandíbulas de la derrota", "name_ru_RU": "Челюсти погибели", "name_it_IT": "Fauci della Sconfitta", "name_pt_PT": "Mandíbulas da Derrota", "on_use": true, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171642, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Hungerer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 135, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95169997215271, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "The Hungerer", "name_ko_KR": "갈구하는 마음", "name_fr_FR": "L’Affameur", "name_de_DE": "Der Hungerleider", "name_zh_CN": "饥不择食", "name_es_ES": "El Hambriento", "name_ru_RU": "Ненасыть", "name_it_IT": "Monile Famelico", "name_pt_PT": "Fome Incontrolável", "on_use": false, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171643, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spidersilk Spindle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 137, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.955299973487854, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Spidersilk Spindle", "name_ko_KR": "거미비단 물레", "name_fr_FR": "Fuseau à soie d’araignée", "name_de_DE": "Spinnenseidenspindel", "name_zh_CN": "蛛丝纺锤", "name_es_ES": "Huso de seda de araña", "name_ru_RU": "Веретено паучьего шелка", "name_it_IT": "Fuso di Seta di Ragno", "name_pt_PT": "Fuso de Seda de Aranha", "on_use": false, "id_encounter": 192, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Necromantic Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 138, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Necromantic Focus", "name_ko_KR": "강령술 집중 장치", "name_fr_FR": "Focalisation nécromantique", "name_de_DE": "Nekromantischer Fokus", "name_zh_CN": "巫术聚焦器", "name_es_ES": "Foco nigromántico", "name_ru_RU": "Средоточие некромантии", "name_it_IT": "Focalizzatore Negromantico", "name_pt_PT": "Foco Necromântico", "on_use": false, "id_encounter": 196, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Blazing Power", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 139, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9627000093460083, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Blazing Power", "name_ko_KR": "타오르는 힘의 눈", "name_fr_FR": "Œil de la puissance flamboyante", "name_de_DE": "Auge der lodernden Kraft", "name_zh_CN": "炽焰能量之眼", "name_es_ES": "Ojo de Poder llameante", "name_ru_RU": "Око пылающей энергии", "name_it_IT": "Occhio del Potere Splendente", "name_pt_PT": "Olho do Poder Fulgurante", "on_use": false, "id_encounter": 194, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171646, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Matrix Restabilizer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 140, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9664000272750854, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Matrix Restabilizer", "name_ko_KR": "행렬 재안정기", "name_fr_FR": "Restabilisateur de matrice", "name_de_DE": "Matrixrestabilisator", "name_zh_CN": "矩阵回稳器", "name_es_ES": "Estabilizador de matriz", "name_ru_RU": "Рестабилизатор матрицы", "name_it_IT": "Ristabilizzatore della Matrice", "name_pt_PT": "Reestabilizador Matricial", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vessel of Acceleration", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 141, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700000286102295, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vessel of Acceleration", "name_ko_KR": "가속의 용기", "name_fr_FR": "Calice d’accélération", "name_de_DE": "Gefäß der Beschleunigung", "name_zh_CN": "爆焰魔瓶", "name_es_ES": "Vasija de aceleración", "name_ru_RU": "Сосуд ускорения", "name_it_IT": "Vaso dell'Accelerazione", "name_pt_PT": "Instrumento da Aceleração", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171852, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fall of Mortality", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 91, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9664999842643738, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Fall of Mortality", "name_ko_KR": "필멸의 몰락", "name_fr_FR": "Baisse de la mortalité", "name_de_DE": "Untergang der Sterblichen", "name_zh_CN": "生命之殒", "name_es_ES": "Caída de mortalidad", "name_ru_RU": "Поступь смерти", "name_it_IT": "Caduta della Mortalità", "name_pt_PT": "Queda da Mortalidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172666, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 620226, "buy_price": 3101130, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.977400004863739, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Medallion", "name_ko_KR": "타락한 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur corrompu", "name_de_DE": "Medaillon des verderbten Gladiators", "name_zh_CN": "腐化角斗士的勋章", "name_es_ES": "Medallón de Gladiador corrupto", "name_ru_RU": "Медальон падшего гладиатора", "name_it_IT": "Medaglione del Gladiatore Corrotto", "name_pt_PT": "Medalhão do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172667, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 622510, "buy_price": 3112552, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9810000061988831, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Emblem", "name_ko_KR": "타락한 검투사의 문장", "name_fr_FR": "Emblème du gladiateur corrompu", "name_de_DE": "Emblem des verderbten Gladiators", "name_zh_CN": "腐化角斗士的纹章", "name_es_ES": "Emblema de Gladiador corrupto", "name_ru_RU": "Эмблема падшего гладиатора", "name_it_IT": "Emblema del Gladiatore Corrotto", "name_pt_PT": "Emblema do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172668, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 624858, "buy_price": 3124291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847000241279602, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Insignia", "name_ko_KR": "타락한 검투사의 계급장", "name_fr_FR": "Insigne du gladiateur corrompu", "name_de_DE": "Insigne des verderbten Gladiators", "name_zh_CN": "腐化角斗士的徽记", "name_es_ES": "Insignia de Gladiador corrupto", "name_ru_RU": "Знак падшего гладиатора", "name_it_IT": "Fregio del Gladiatore Corrotto", "name_pt_PT": "Insígnia do Gladiador Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172669, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 627206, "buy_price": 3136031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883999824523926, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Badge", "name_ko_KR": "타락한 검투사의 표장", "name_fr_FR": "Écusson du gladiateur corrompu", "name_de_DE": "Abzeichen des verderbten Gladiators", "name_zh_CN": "腐化角斗士的徽章", "name_es_ES": "Distintivo de Gladiador corrupto", "name_ru_RU": "Жетон падшего гладиатора", "name_it_IT": "Distintivo del Gladiatore Corrotto", "name_pt_PT": "Distintivo do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172672, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Maledict", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 651002, "buy_price": 3255012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0259000062942505, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Maledict", "name_ko_KR": "타락한 검투사의 저주", "name_fr_FR": "Bijou maudit du gladiateur corrompu", "name_de_DE": "Verhängnis des verderbten Gladiators", "name_zh_CN": "腐化角斗士的咒徽", "name_es_ES": "Maldición de Gladiador corrupto", "name_ru_RU": "Темный фетиш падшего гладиатора", "name_it_IT": "Maledizione del Gladiatore Corrotto", "name_pt_PT": "Imprecação do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172673, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Safeguard", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 653350, "buy_price": 3266752, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0296000242233276, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Safeguard", "name_ko_KR": "타락한 검투사의 안전장치", "name_fr_FR": "Sauvegarde du gladiateur corrompu", "name_de_DE": "Schutzwall des verderbten Gladiators", "name_zh_CN": "腐化角斗士的护徽", "name_es_ES": "Salvaguarda de Gladiador corrupto", "name_ru_RU": "Оберег падшего гладиатора", "name_it_IT": "Salvaguardia del Gladiatore Corrotto", "name_pt_PT": "Salvaguarda do Gladiador Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172846, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Bauble", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 606392, "buy_price": 3031962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9556000232696533, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Aspirant's Bauble", "name_ko_KR": "타락한 지원자의 장신구", "name_fr_FR": "Babiole de l’aspirant corrompu", "name_de_DE": "Kleinod des verderbten Aspiranten", "name_zh_CN": "腐化候选者的饰物", "name_es_ES": "Adorno de aspirante corrupto", "name_ru_RU": "Безделушка падшего претендента", "name_it_IT": "Ninnolo del Pretendente Corrotto", "name_pt_PT": "Berloque do Aspirante Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172847, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 608740, "buy_price": 3043701, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592999815940857, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Aspirant's Emblem", "name_ko_KR": "타락한 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant corrompu", "name_de_DE": "Emblem des verderbten Aspiranten", "name_zh_CN": "腐化候选者的纹章", "name_es_ES": "Emblema de aspirante corrupto", "name_ru_RU": "Эмблема падшего претендента", "name_it_IT": "Emblema del Pretendente Corrotto", "name_pt_PT": "Emblema do Aspirante Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172848, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 611024, "buy_price": 3055123, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9628999829292297, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Aspirant's Insignia", "name_ko_KR": "타락한 지원자의 계급장", "name_fr_FR": "Insigne de l’aspirant corrompu", "name_de_DE": "Insigne des verderbten Aspiranten", "name_zh_CN": "腐化候选者的徽记", "name_es_ES": "Insignia de aspirante corrupto", "name_ru_RU": "Знак падшего претендента", "name_it_IT": "Fregio del Pretendente Corrotto", "name_pt_PT": "Insígnia do Aspirante Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 613372, "buy_price": 3066863, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9666000008583069, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Aspirant's Badge", "name_ko_KR": "타락한 지원자의 표장", "name_fr_FR": "Écusson de l’aspirant corrompu", "name_de_DE": "Abzeichen des verderbten Aspiranten", "name_zh_CN": "腐化候选者的徽章", "name_es_ES": "Distintivo de aspirante corrupto", "name_ru_RU": "Жетон падшего претендента", "name_it_IT": "Distintivo del Pretendente Corrotto", "name_pt_PT": "Distintivo do Aspirante Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173069, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Putrescence", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 627488, "buy_price": 3137440, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0182000398635864, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Putrescence", "name_ko_KR": "다크문 카드 한 벌: 부패", "name_fr_FR": "Suite de Sombrelune : Putrescence", "name_de_DE": "Dunkelmond-Kartenset: Fäulnis", "name_zh_CN": "暗月套牌:腐化", "name_es_ES": "Colección de la Luna Negra: Putrescencia", "name_ru_RU": "Колода карт Новолуния \"Гниение\"", "name_it_IT": "Mazzo della Putrescenza di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Putrescência", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173078, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Repose", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 602467, "buy_price": 3012337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Repose", "name_ko_KR": "다크문 카드 한 벌: 안식", "name_fr_FR": "Suite de Sombrelune : Quiétude", "name_de_DE": "Dunkelmond-Kartenset: Rast", "name_zh_CN": "暗月套牌:休憩", "name_es_ES": "Colección de la Luna Negra: Reposo", "name_ru_RU": "Колода карт Новолуния \"Покой\"", "name_it_IT": "Mazzo del Riposo di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Repouso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173087, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Voracity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 622866, "buy_price": 3114330, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010699987411499, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Voracity", "name_ko_KR": "다크문 카드 한 벌: 탐식", "name_fr_FR": "Suite de Sombrelune : Voracité", "name_de_DE": "Dunkelmond-Kartenset: Gier", "name_zh_CN": "暗月套牌:贪婪", "name_es_ES": "Colección de la Luna Negra: Voracidad", "name_ru_RU": "Колода карт Новолуния \"Ненасытность\"", "name_it_IT": "Mazzo della Voracità di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Voracidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173096, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Indomitable", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 597845, "buy_price": 2989227, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700999855995178, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Indomitable", "name_ko_KR": "다크문 카드 한 벌: 불굴", "name_fr_FR": "Suite de Sombrelune : Invincibilité", "name_de_DE": "Dunkelmond-Kartenset: Unbeugsamkeit", "name_zh_CN": "暗月套牌:不屈", "name_es_ES": "Colección de la Luna Negra: Indómito", "name_ru_RU": "Колода карт Новолуния \"Неукротимость\"", "name_it_IT": "Mazzo dell'Indomabile di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Indomável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173349, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Misfiring Centurion Controller", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 427432, "buy_price": 2137161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Misfiring Centurion Controller", "name_ko_KR": "오작동하는 백인대장 제어기", "name_fr_FR": "Contrôleur de centurion défectueux", "name_de_DE": "Versagende Zenturiosteuerung", "name_zh_CN": "无法启动的百心长控制器", "name_es_ES": "Controlador de centurión averiado", "name_ru_RU": "Сбоящий контролер центурионов", "name_it_IT": "Controllore del Centurione Inceppato", "name_pt_PT": "Controlador de Centurião Engasgado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173666, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lacquered Carving", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 199739, "buy_price": 998699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0149999856948853, "flags_1": 0, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lacquered Carving", "name_ko_KR": "옻칠한 조각", "name_fr_FR": "Sculpture laquée", "name_de_DE": "Lackierte Schnitzarbeit", "name_zh_CN": "喷漆雕像", "name_es_ES": "Talla lacada", "name_ru_RU": "Лакированная резная фигурка", "name_it_IT": "Pittogramma Laccato", "name_pt_PT": "Entalhe Envernizado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173667, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burnished Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200467, "buy_price": 1002339, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0187000036239624, "flags_1": 0, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Burnished Charm", "name_ko_KR": "빛나는 부적", "name_fr_FR": "Charme bruni", "name_de_DE": "Brünierter Glücksbringer", "name_zh_CN": "抛光护符", "name_es_ES": "Talismán bruñido", "name_ru_RU": "Отполированный амулет", "name_it_IT": "Talismano Brunito", "name_pt_PT": "Patuá Lustrado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173940, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Warding", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 649302, "buy_price": 3246511, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Warding", "name_ko_KR": "수호의 인장", "name_fr_FR": "Cachet de sauvegarde", "name_de_DE": "Zeichen des Schutzes", "name_zh_CN": "结界印记", "name_es_ES": "Sigilo de amparo", "name_ru_RU": "Защитная печать", "name_it_IT": "Sigillo della Protezione", "name_pt_PT": "Signo de Proteção", "on_use": true, "id_encounter": 2365, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 173943, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Torment in a Jar", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 656661, "buy_price": 3283309, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9815000295639038, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Torment in a Jar", "name_ko_KR": "단지 안의 고통", "name_fr_FR": "Tourment en bouteille", "name_de_DE": "Qual im Glas", "name_zh_CN": "瓶中之刑", "name_es_ES": "Tormento en un tarro", "name_ru_RU": "Накопленные муки", "name_it_IT": "Tormento in Vitro", "name_pt_PT": "Tormento no Pote", "on_use": false, "id_encounter": 2377, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 173944, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forbidden Obsidian Claw", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14016, "buy_price": 70083, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Forbidden Obsidian Claw", "name_ko_KR": "금단의 흑요석 발톱", "name_fr_FR": "Griffe d’obsidienne interdite", "name_de_DE": "Verbotene Obsidianklaue", "name_zh_CN": "禁断黑曜之爪", "name_es_ES": "Garra de obsidiana prohibida", "name_ru_RU": "Запретный обсидиановый коготь", "name_it_IT": "Artiglio d'Ossidiana Proibito", "name_pt_PT": "Garra de Obsidiana Proibida", "on_use": true, "id_encounter": 2365, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 173946, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Writhing Segment of Drest'agath", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 664088, "buy_price": 3320440, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926000237464905, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Writhing Segment of Drest'agath", "name_ko_KR": "드레스타가스의 꿈틀대는 몸체", "name_fr_FR": "Fragment frétillant de Drest’agath", "name_de_DE": "Zuckendes Segment von Drest'agath", "name_zh_CN": "扭动的德雷阿佳丝碎片", "name_es_ES": "Segmento sinuoso de Drest'agath", "name_ru_RU": "Извивающийся сегмент Дест'агат", "name_it_IT": "Segmento Fremente di Drest'agath", "name_pt_PT": "Segmento of Drest'agath Contorcido", "on_use": true, "id_encounter": 2373, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174044, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Humming Black Dragonscale", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14385, "buy_price": 71925, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0111000537872314, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Humming Black Dragonscale", "name_ko_KR": "고동치는 검은용 비늘", "name_fr_FR": "Écaille de dragon noir vrombissante", "name_de_DE": "Summende schwarze Drachenschuppe", "name_zh_CN": "嗡鸣的黑龙鳞片", "name_es_ES": "Dragontina negra zumbante", "name_ru_RU": "Гудящая чешуйка черного дракона", "name_it_IT": "Scaglia di Drago Nero Vibrante", "name_pt_PT": "Escama Zumbidora de Dragão Negro", "on_use": true, "id_encounter": 2368, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174060, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Psyche Shredder", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14173, "buy_price": 70865, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962000250816345, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Psyche Shredder", "name_ko_KR": "정신 파쇄기", "name_fr_FR": "Déchiqueteur de psyché", "name_de_DE": "Psychenreißer", "name_zh_CN": "心智切割器", "name_es_ES": "Desgarrador de psiques", "name_ru_RU": "Рассекатель души", "name_it_IT": "Squarciapsiche", "name_pt_PT": "Retalhador de Psiquê", "on_use": false, "id_encounter": 2369, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174103, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Manifesto of Madness", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23488, "buy_price": 117443, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 95, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Manifesto of Madness", "name_ko_KR": "광기의 선언", "name_fr_FR": "Manifeste de la folie", "name_de_DE": "Manifest des Wahnsinns", "name_zh_CN": "癫狂宣言", "name_es_ES": "Manifiesto de locura", "name_ru_RU": "Манифест безумия", "name_it_IT": "Manifesto della Follia", "name_pt_PT": "Manifesto da Loucura", "on_use": true, "id_encounter": 2375, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174180, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oozing Coagulum", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 683757, "buy_price": 3418789, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219999551773071, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Oozing Coagulum", "name_ko_KR": "수액 응혈", "name_fr_FR": "Coagulum suintant", "name_de_DE": "Schleimiges Koagulum", "name_zh_CN": "渗漏凝块", "name_es_ES": "Coágulo rezumante", "name_ru_RU": "Сочащийся коагулят", "name_it_IT": "Coagulo Melmoso", "name_pt_PT": "Coágulo Gosmento", "on_use": false, "id_encounter": 2374, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174276, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Breach", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 655571, "buy_price": 3277857, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0331000089645386, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Breach", "name_ko_KR": "타락한 검투사의 틈새", "name_fr_FR": "Brèche du gladiateur corrompu", "name_de_DE": "Bresche des verderbten Gladiators", "name_zh_CN": "腐化角斗士的破痕", "name_es_ES": "Brecha de Gladiador corrupto", "name_ru_RU": "Пролом падшего гладиатора", "name_it_IT": "Breccia del Gladiatore Corrotto", "name_pt_PT": "Fenda do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 174277, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lingering Psychic Shell", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 649954, "buy_price": 3249774, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9631999731063843, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 95, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Lingering Psychic Shell", "name_ko_KR": "잔존하는 정신의 껍질", "name_fr_FR": "Carapace psychique rémanente", "name_de_DE": "Anhaltender psychischer Panzer", "name_zh_CN": "残留的心灵护壳", "name_es_ES": "Caparazón psíquico persistente", "name_ru_RU": "Остатки ментального панциря", "name_it_IT": "Guscio Psichico Persistente", "name_pt_PT": "Carapaça Psíquica Duradoura", "on_use": true, "id_encounter": 2375, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174472, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Spite", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 632346, "buy_price": 3161731, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965000152587891, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Spite", "name_ko_KR": "타락한 검투사의 원한", "name_fr_FR": "Dépit du gladiateur corrompu", "name_de_DE": "Groll des verderbten Gladiators", "name_zh_CN": "腐化角斗士的怨念", "name_es_ES": "Maldad de Gladiador corrupto", "name_ru_RU": "Злоба падшего гладиатора", "name_it_IT": "Perfidia del Gladiatore Corrotto", "name_pt_PT": "Malevolência do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 174500, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vita-Charged Titanshard", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14594, "buy_price": 72971, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0257999897003174, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1452, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Vita-Charged Titanshard", "name_ko_KR": "생령으로 충만한 티탄의 파편", "name_fr_FR": "Éclat des Titans chargé de vita", "name_de_DE": "Vitageladener Titanensplitter", "name_zh_CN": "生命充能的泰坦裂片", "name_es_ES": "Fragmento titánico cargado de vita", "name_ru_RU": "Заряженный жизненной силой осколок титанов", "name_it_IT": "Scheggia Titanica Caricata di Vita", "name_pt_PT": "Estilhaço Titânico de Vita Carregada", "on_use": false, "id_encounter": 2364, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void-Twisted Titanshard", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13962, "buy_price": 69812, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9814000129699707, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1452, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Void-Twisted Titanshard", "name_ko_KR": "공허로 뒤틀린 티탄의 파편", "name_fr_FR": "Éclat des Titans altéré par le Vide", "name_de_DE": "Leerenentstellter Titanensplitter", "name_zh_CN": "虚空扭曲的泰坦裂片", "name_es_ES": "Fragmento titánico alterado por el Vacío", "name_ru_RU": "Зараженный Бездной осколок титанов", "name_it_IT": "Scheggia Titanica Distorta dal Vuoto", "name_pt_PT": "Estilhaço Titânico Pervertido pelo Caos", "on_use": false, "id_encounter": 2364, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 175718, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ascended Defender's Crest", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 421285, "buy_price": 2106427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0075000524520874, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Ascended Defender's Crest", "name_ko_KR": "승천자 수호병의 문장", "name_fr_FR": "Écu du défenseur transcendé", "name_de_DE": "Emblem des aufgestiegenen Verteidigers", "name_zh_CN": "晋升防御者纹章", "name_es_ES": "Cresta de defensor ascendido", "name_ru_RU": "Знак отличия перерожденного защитника", "name_it_IT": "Emblema del Difensore Asceso", "name_pt_PT": "Brasão do Defensor Ascendido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175719, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Agthia's Void-Tinged Speartip", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 422832, "buy_price": 2114163, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.011199951171875, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Agthia's Void-Tinged Speartip", "name_ko_KR": "아그티아의 공허에 물든 창끝", "name_fr_FR": "Fer de lance teinté de Vide d’Agthia", "name_de_DE": "Agthias leerenberührte Speerspitze", "name_zh_CN": "艾格茜娅的虚色矛尖", "name_es_ES": "Punta de lanza teñida de Vacío de Agthia", "name_ru_RU": "Тронутый Бездной наконечник копья Агфии", "name_it_IT": "Punta di Lancia Venata di Vuoto di Agthia", "name_pt_PT": "Ponta de Lança Manchada de Caos de Agthia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175722, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Caustic Liquid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9089, "buy_price": 45447, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Vial of Caustic Liquid", "name_ko_KR": "부식성 액체가 든 병", "name_fr_FR": "Fiole de liquide caustique", "name_de_DE": "Phiole voll ätzender Flüssigkeit", "name_zh_CN": "腐蚀流液之瓶", "name_es_ES": "Vial de líquido cáustico", "name_ru_RU": "Флакон с едкой жидкостью", "name_it_IT": "Fiala di Liquido Caustico", "name_pt_PT": "Ampola de Líquido Cáustico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175723, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rejuvenating Serum", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 398203, "buy_price": 1991018, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9523000121116638, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Rejuvenating Serum", "name_ko_KR": "원기 회복의 약", "name_fr_FR": "Sérum de récupération", "name_de_DE": "Verjüngungsserum", "name_zh_CN": "康复血清", "name_es_ES": "Suero rejuvenecedor", "name_ru_RU": "Омолаживающая сыворотка", "name_it_IT": "Siero Rinvigorente", "name_pt_PT": "Soro Rejuvenescedor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175725, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Newcomer's Gladiatorial Badge", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 401256, "buy_price": 2006280, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595999717712402, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Newcomer's Gladiatorial Badge", "name_ko_KR": "신참의 검투사 훈장", "name_fr_FR": "Écusson de gladiateur du nouveau venu", "name_de_DE": "Gladiatorenabzeichen des Neulings", "name_zh_CN": "新手的角斗士徽章", "name_es_ES": "Distintivo gladiatorio de recién llegado", "name_ru_RU": "Гладиаторский значок новичка", "name_it_IT": "Distintivo Gladiatorio dell'Esordiente", "name_pt_PT": "Distintivo Gladiatório do Novato", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primalist's Kelpling", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 402803, "buy_price": 2014016, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Primalist's Kelpling", "name_ko_KR": "원시술사의 물풀장식", "name_fr_FR": "Alguelin de primaliste", "name_de_DE": "Tangling des Primalisten", "name_zh_CN": "仪祭师的幼藻", "name_es_ES": "Alguita de primalista", "name_ru_RU": "Водоросток шамана стихий", "name_it_IT": "Alghetta del Primalista", "name_pt_PT": "Alguim do Primevista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elder's Stormseed", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 404350, "buy_price": 2021752, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9670000076293945, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Elder's Stormseed", "name_ko_KR": "장로의 폭풍씨앗", "name_fr_FR": "Graine-orage d’ancien", "name_de_DE": "Sturmsaat des Ältesten", "name_zh_CN": "长者的风暴之种", "name_es_ES": "Semilla de tormenta de anciano", "name_ru_RU": "Семя бури старейшины", "name_it_IT": "Seme Tempestoso dell'Anziano", "name_pt_PT": "Semente-tempesta do Ancião", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175728, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulsifter Root", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 511951, "buy_price": 2559756, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9706000089645386, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Soulsifter Root", "name_ko_KR": "영혼여과 뿌리", "name_fr_FR": "Racine tamisâme", "name_de_DE": "Seelensieberwurzeln", "name_zh_CN": "捋魂者之根", "name_es_ES": "Raíz ciernealmas", "name_ru_RU": "Корень просеивателя душ", "name_it_IT": "Radice del Setacciatore d'Anime", "name_pt_PT": "Raiz de Peneira-d'alma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175729, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rotbriar Sprout", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 516066, "buy_price": 2580332, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9743000268936157, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Rotbriar Sprout", "name_ko_KR": "썩은덤불 묘목", "name_fr_FR": "Pousse putréronce", "name_de_DE": "Fauldornspross", "name_zh_CN": "腐楠幼芽", "name_es_ES": "Brote pudrezarza", "name_ru_RU": "Росток гнилошипа", "name_it_IT": "Germoglio di Rovomarcio", "name_pt_PT": "Broto de Putrissarça", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175730, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Master Duelist's Chit", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 408950, "buy_price": 2044750, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9779999852180481, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Master Duelist's Chit", "name_ko_KR": "대가 결투사의 전표", "name_fr_FR": "Note de maître duelliste", "name_de_DE": "Marke des Meisterduellanten", "name_zh_CN": "决斗大师的便条", "name_es_ES": "Bono de maestro duelista", "name_ru_RU": "Карточка опытного дуэлянта", "name_it_IT": "Nota del Maestro dei Duellanti", "name_pt_PT": "Bilhete do Duelista Mestre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175731, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Maw Badge", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 410497, "buy_price": 2052486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9817000031471252, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Stolen Maw Badge", "name_ko_KR": "도둑맞은 나락 훈장", "name_fr_FR": "Écusson de l’Antre dérobé", "name_de_DE": "Gestohlenes Schlundabzeichen", "name_zh_CN": "失窃的噬渊徽章", "name_es_ES": "Insignia de Las Fauces robada", "name_ru_RU": "Украденный жетон Утробы", "name_it_IT": "Distintivo della Fauce Rubato", "name_pt_PT": "Insígnia da Gorja Roubada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175732, "race_mask": 18446744073709551615, "desc": "Sometimes a tool in the wrong hands is a weapon.", "pad2": "", "pad1": "", "pad0": "", "name": "Tablet of Despair", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 412002, "buy_price": 2060012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9853000044822693, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Tablet of Despair", "name_ko_KR": "절망의 서판", "name_fr_FR": "Tablette de désespoir", "name_de_DE": "Tafel der Verzweiflung", "name_zh_CN": "绝望石板", "name_es_ES": "Tablilla de desesperación", "name_ru_RU": "Табличка отчаяния", "name_it_IT": "Tavoletta della Disperazione", "name_pt_PT": "Tabuleta do Desespero", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175733, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brimming Ember Shard", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 496259, "buy_price": 2481298, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9890000224113464, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Brimming Ember Shard", "name_ko_KR": "충만한 잿불 조각", "name_fr_FR": "Éclat de braise palpitant", "name_de_DE": "Aufgeladener Glutsplitter", "name_zh_CN": "充盈灰烬碎片", "name_es_ES": "Fragmento de ascua rebosante", "name_ru_RU": "Жарко тлеющий осколок", "name_it_IT": "Scheggia di Brace Vibrante", "name_pt_PT": "Estilhaço de Brasa Radiante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175884, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 534823, "buy_price": 2674115, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0078999996185303, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Badge of Ferocity", "name_ko_KR": "죄 많은 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant impénitent", "name_de_DE": "Wildheitsabzeichen des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante pecaminoso", "name_ru_RU": "Жетон свирепости грешного претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Peccatore", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175921, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 722808, "buy_price": 3614040, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Badge of Ferocity", "name_ko_KR": "죄 많은 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur impénitent", "name_de_DE": "Wildheitsabzeichen des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的凶猛徽章", "name_es_ES": "Distintivo de victoria de Gladiador pecaminoso", "name_ru_RU": "Жетон свирепости грешного гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Peccatore", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175941, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritual Alchemy Stone", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 265493, "buy_price": 1327467, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9965000152587891, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2750, "ilevel": 165, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Spiritual Alchemy Stone", "name_ko_KR": "영적인 연금술 돌", "name_fr_FR": "Pierre d’alchimiste spirituelle", "name_de_DE": "Spiritueller Alchemiestein", "name_zh_CN": "灵魂炼金石", "name_es_ES": "Piedra de alquimia espiritual", "name_ru_RU": "Духовный алхимический камень", "name_it_IT": "Pietra Alchemica Spirituale", "name_pt_PT": "Pedra de Alquimia Espiritual", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175942, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritual Alchemy Stone", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 266479, "buy_price": 1332395, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0002000331878662, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2750, "ilevel": 165, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Spiritual Alchemy Stone", "name_ko_KR": "영적인 연금술 돌", "name_fr_FR": "Pierre d’alchimiste spirituelle", "name_de_DE": "Spiritueller Alchemiestein", "name_zh_CN": "灵魂炼金石", "name_es_ES": "Piedra de alquimia espiritual", "name_ru_RU": "Духовный алхимический камень", "name_it_IT": "Pietra Alchemica Spirituale", "name_pt_PT": "Pedra de Alquimia Espiritual", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175943, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritual Alchemy Stone", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 267438, "buy_price": 1337191, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0038000345230103, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2750, "ilevel": 165, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Spiritual Alchemy Stone", "name_ko_KR": "영적인 연금술 돌", "name_fr_FR": "Pierre d’alchimiste spirituelle", "name_de_DE": "Spiritueller Alchemiestein", "name_zh_CN": "灵魂炼金石", "name_es_ES": "Piedra de alquimia espiritual", "name_ru_RU": "Духовный алхимический камень", "name_it_IT": "Pietra Alchemica Spirituale", "name_pt_PT": "Pedra de Alquimia Espiritual", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177147, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 479637, "buy_price": 2398188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0077999830245972, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177148, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 481350, "buy_price": 2406754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177149, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483111, "buy_price": 2415559, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 484872, "buy_price": 2424364, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177151, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oceanographer's Weather Log", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 486586, "buy_price": 2432930, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0224000215530396, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oceanographer's Weather Log", "name_ko_KR": "바다 낚시꾼의 날씨 일지", "name_fr_FR": "Journal météorologique d’océanographe", "name_de_DE": "Wetteraufzeichnungen des Meeresforschers", "name_zh_CN": "海洋学家的气候日志", "name_es_ES": "Informe meteorológico de oceanógrafo", "name_ru_RU": "Журнал погоды океанографа", "name_it_IT": "Diario Meteorologico dell'Oceanografo", "name_pt_PT": "Registro Climático do Oceanógrafo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177152, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Privateer's Spyglass", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 488347, "buy_price": 2441735, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0261000394821167, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Privateer's Spyglass", "name_ko_KR": "선원의 망원경", "name_fr_FR": "Longue-vue de corsaire", "name_de_DE": "Freibeuterfernrohr", "name_zh_CN": "水手的望远镜", "name_es_ES": "Catalejo de corsario", "name_ru_RU": "Пиратская подзорная труба", "name_it_IT": "Cannocchiale del Corsaro", "name_pt_PT": "Luneta do Corsário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177154, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 456840, "buy_price": 2284204, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599000215530396, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177155, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 458554, "buy_price": 2292770, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177156, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 460315, "buy_price": 2301575, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177157, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bijou of the Golden City", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 462075, "buy_price": 2310379, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Bijou of the Golden City", "name_ko_KR": "황금 도시의 장신구", "name_fr_FR": "Bijou de la cité d’or", "name_de_DE": "Schmuckstück der Goldenen Stadt", "name_zh_CN": "黄金城宝石", "name_es_ES": "Joya de la ciudad dorada", "name_ru_RU": "Украшение Золотого города", "name_it_IT": "Bijou della Città Dorata", "name_pt_PT": "Bijuteria da Cidade Dourada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177158, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enchanted Devilsaur Claw", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 463836, "buy_price": 2319184, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746000170707703, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Enchanted Devilsaur Claw", "name_ko_KR": "마법 깃든 데빌사우루스 발톱", "name_fr_FR": "Griffe de diablosaure enchantée", "name_de_DE": "Verzauberte Teufelssaurierklaue", "name_zh_CN": "附魔的魔暴龙之爪", "name_es_ES": "Garra de demosaurio encantada", "name_ru_RU": "Зачарованный коготь дьявозавра", "name_it_IT": "Artiglio di Gigantosauro Incantato", "name_pt_PT": "Garra de Demossauro Encantada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 477829, "buy_price": 2389145, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9781000018119812, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177293, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9818000197410583, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177296, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9927999973297119, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177299, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0303000211715698, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Pedra Defensora da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0413000583648682, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9523000121116638, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9632999897003174, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9743000268936157, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0154999494552612, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0264999866485596, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177322, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.041200041770935, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177325, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9520999789237976, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177328, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.963100016117096, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177331, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0006999969482422, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177335, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0154000520706177, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177338, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0263999700546265, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0484000444412231, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Pedra Defensora do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9556999802589417, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177348, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9894999861717224, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177352, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0041999816894531, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177355, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0152000188827515, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0298999547958374, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177363, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9710000157356262, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d’âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177366, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9819999933242798, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d’âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177375, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0151000022888184, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d’âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0188000202178955, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d’âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177379, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9562000036239624, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d’âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177382, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.967199981212616, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d’âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Pedra Defensora Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177384, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9746000170707703, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177387, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9855999946594238, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9965999722480774, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177393, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.007599949836731, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177398, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9524000287055969, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177401, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9634000062942505, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177407, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9854999780654907, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177410, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9965000152587891, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177412, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0303000211715698, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177415, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0413000583648682, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177421, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9632999897003174, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9743000268936157, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177575, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9932000041007996, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy", "name_ko_KR": "악마 상징물", "name_fr_FR": "Trophée de démon", "name_de_DE": "Dämonentrophäe", "name_zh_CN": "恶魔战利品", "name_es_ES": "Trofeo demoníaco", "name_ru_RU": "Демонический трофей", "name_it_IT": "Trofeo Demoniaco", "name_pt_PT": "Troféu do Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Demonic Fire", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9969000220298767, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Demonic Fire", "name_ko_KR": "악마의 불 부적", "name_fr_FR": "Charme de feu démoniaque", "name_de_DE": "Glücksbringer des Dämonenfeuers", "name_zh_CN": "魔火护符", "name_es_ES": "Talismán de fuego demoníaco", "name_ru_RU": "Талисман демонического огня", "name_it_IT": "Talismano del Fuoco Demoniaco", "name_pt_PT": "Patuá do Fogo Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177584, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0262000560760498, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177587, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0372999906539917, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177596, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9966999888420105, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177599, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0077999830245972, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Pedra Defensora do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177602, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0188000202178955, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177603, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0224000215530396, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177657, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overflowing Ember Mirror", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 515076, "buy_price": 2575382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0264999866485596, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Overflowing Ember Mirror", "name_ko_KR": "넘치는 잿불의 거울", "name_fr_FR": "Miroir de braise débordant", "name_de_DE": "Überquellender Glutspiegel", "name_zh_CN": "满溢灰烬之镜", "name_es_ES": "Espejo de ascuas desbordante", "name_ru_RU": "Зеркало изобильных углей", "name_it_IT": "Specchio Traboccante di Braci", "name_pt_PT": "Espelho da Brasa Vertente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177813, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hopebreaker's Badge", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 408163, "buy_price": 2040818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.963699996471405, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 100, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Hopebreaker's Badge", "name_ko_KR": "희망파괴자의 훈장", "name_fr_FR": "Écusson de brisespoir", "name_de_DE": "Abzeichen des Hoffnungsbrechers", "name_zh_CN": "灭愿者徽章", "name_es_ES": "Distintivo de rompeesperanzas", "name_ru_RU": "Жетон сокрушителя надежды", "name_it_IT": "Distintivo del Frangifede", "name_pt_PT": "Distintivo do Quebrafé", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178168, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmaul Ritual Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3731, "buy_price": 18658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 12, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Darkmaul Ritual Stone", "name_ko_KR": "암흑망치 의식용 돌", "name_fr_FR": "Pierre rituelle cognenuit", "name_de_DE": "Finsterbrecherritualstein", "name_zh_CN": "暗槌仪式石", "name_es_ES": "Piedra ritual de Magulladura Oscura", "name_ru_RU": "Ритуальный камень Темного Молота", "name_it_IT": "Pietra Rituale dei Maglioscuro", "name_pt_PT": "Pedra Ritual de Malhonegro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178298, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 550688, "buy_price": 2753444, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377999544143677, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Insignia of Alacrity", "name_ko_KR": "죄 많은 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant impénitent", "name_de_DE": "Inbrunstinsigne des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante pecaminoso", "name_ru_RU": "Знак расторопности грешного претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Peccatore", "name_pt_PT": "Insígnia de Diligência do Aspirante Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178334, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542729, "buy_price": 2713646, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0227999687194824, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Emblem", "name_ko_KR": "죄 많은 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant impénitent", "name_de_DE": "Emblem des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的纹章", "name_es_ES": "Emblema de aspirante pecaminoso", "name_ru_RU": "Эмблема грешного претендента", "name_it_IT": "Emblema del Pretendente Peccatore", "name_pt_PT": "Emblema do Aspirante Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178386, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 720269, "buy_price": 3601348, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9930999875068665, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Insignia of Alacrity", "name_ko_KR": "죄 많은 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur impénitent", "name_de_DE": "Inbrunstinsigne des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador pecaminoso", "name_ru_RU": "Знак расторопности грешного гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Peccatore", "name_pt_PT": "Insígnia de Diligência do Gladiador Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178447, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 741810, "buy_price": 3709051, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0227999687194824, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Emblem", "name_ko_KR": "죄 많은 검투사의 문장", "name_fr_FR": "Emblème du gladiateur impénitent", "name_de_DE": "Emblem des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的纹章", "name_es_ES": "Emblema de Gladiador pecaminoso", "name_ru_RU": "Эмблема грешного гладиатора", "name_it_IT": "Emblema del Gladiatore Peccatore", "name_pt_PT": "Emblema do Gladiador Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178708, "race_mask": 18446744073709551615, "desc": "This strange critter has a rather unsettling habit of staring at you while you eat.", "pad2": "", "pad1": "", "pad0": "", "name": "Unbound Changeling", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532859, "buy_price": 2664298, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0041999816894531, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unbound Changeling", "name_ko_KR": "속박 풀린 변신수", "name_fr_FR": "Changelin délié", "name_de_DE": "Unbändiger Wechselbalg", "name_zh_CN": "无羁拟态者", "name_es_ES": "Cambiante desatado", "name_ru_RU": "Освобожденный подменыш", "name_it_IT": "Servan Svincolato", "name_pt_PT": "Metamorfo Liberto", "on_use": false, "id_encounter": 2400, "id_journal_instance": 1184, "id_map": 2290, "instance_type": 1}, {"id": 178715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistcaller Ocarina", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507442, "buy_price": 2537212, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563000202178955, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Mistcaller Ocarina", "name_ko_KR": "미스트콜러 오카리나", "name_fr_FR": "Ocarina de mandebrume", "name_de_DE": "Okarina der Nebelruferin", "name_zh_CN": "唤雾者的陶笛", "name_es_ES": "Ocarina de Clamaneblina", "name_ru_RU": "Окарина Призывательницы Туманов", "name_it_IT": "Ocarina dell'Evocanebbie", "name_pt_PT": "Ocarina da Chamabruma", "on_use": false, "id_encounter": 2402, "id_journal_instance": 1184, "id_map": 2290, "instance_type": 1}, {"id": 178742, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Flayedwing Toxin", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 521026, "buy_price": 2605132, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818999767303467, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Bottled Flayedwing Toxin", "name_ko_KR": "병에 든 가죽뜯깃 독소", "name_fr_FR": "Toxine d’aile-écorchée en bouteille", "name_de_DE": "Abgefülltes Fledderflügeltoxin", "name_zh_CN": "瓶装绽翼兽毒素", "name_es_ES": "Toxina de alacortada embotellada", "name_ru_RU": "Токсин костекрыла в бутылке", "name_it_IT": "Tossina di Alalacera Imbottigliata", "name_pt_PT": "Toxina de Esfolasa Engarrafada", "on_use": true, "id_encounter": 2391, "id_journal_instance": 1182, "id_map": 2286, "instance_type": 1}, {"id": 178751, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spare Meat Hook", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 552652, "buy_price": 2763260, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0414999723434448, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Spare Meat Hook", "name_ko_KR": "예비용 고기 갈고리", "name_fr_FR": "Crochet à viande de rechange", "name_de_DE": "Ersatzfleischerhaken", "name_zh_CN": "备用肉钩", "name_es_ES": "Gancho de carnicero de repuesto", "name_ru_RU": "Запасной мясницкий крюк", "name_it_IT": "Gancio per Carne di Riserva", "name_pt_PT": "Gancho de Carne Sobressalente", "on_use": true, "id_encounter": 2392, "id_journal_instance": 1182, "id_map": 2286, "instance_type": 1}, {"id": 178769, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infinitely Divisible Ooze", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 201677, "buy_price": 1008388, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034000039100647, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Infinitely Divisible Ooze", "name_ko_KR": "무한하게 분열하는 수액", "name_fr_FR": "Limon miscible à l’infini", "name_de_DE": "Endlos teilbarer Schleim", "name_zh_CN": "无尽切分污泥", "name_es_ES": "Moco infinitamente divisible", "name_ru_RU": "Бесконечно разделяющаяся слизь", "name_it_IT": "Melma Infinitamente Divisibile", "name_pt_PT": "Gosma Infinitamente Divisível", "on_use": false, "id_encounter": 2404, "id_journal_instance": 1183, "id_map": 2289, "instance_type": 1}, {"id": 178770, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Slimy Consumptive Organ", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 550635, "buy_price": 2753178, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0376999378204346, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Slimy Consumptive Organ", "name_ko_KR": "끈적끈적한 소모성 장기", "name_fr_FR": "Organe phtisique visqueux", "name_de_DE": "Schleimiges zehrendes Organ", "name_zh_CN": "粘滑的痨病器官", "name_es_ES": "Órgano consuntivo baboso", "name_ru_RU": "Осклизлый переваривающий орган", "name_it_IT": "Organo Tisico Viscido", "name_pt_PT": "Órgão Devorador Gosmento", "on_use": true, "id_encounter": 2419, "id_journal_instance": 1183, "id_map": 2289, "instance_type": 1}, {"id": 178771, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Phial of Putrefaction", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 552546, "buy_price": 2762730, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Phial of Putrefaction", "name_ko_KR": "부패의 약병", "name_fr_FR": "Flasque de putréfaction", "name_de_DE": "Phiole der Fäulnis", "name_zh_CN": "腐质之瓶", "name_es_ES": "Ampolla de putrefacción", "name_ru_RU": "Флакон тлетворной массы", "name_it_IT": "Fiala della Putrefazione", "name_pt_PT": "Frasco de Putrefação", "on_use": false, "id_encounter": 2403, "id_journal_instance": 1183, "id_map": 2289, "instance_type": 1}, {"id": 178772, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Satchel of Misbegotten Minions", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203823, "buy_price": 1019116, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0449999570846558, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Satchel of Misbegotten Minions", "name_ko_KR": "그릇된 하수인 주머니", "name_fr_FR": "Sacoche de serviteurs défectueux", "name_de_DE": "Säckchen der scheußlichen Diener", "name_zh_CN": "卑贱爪牙挎包", "name_es_ES": "Cartera de esbirros desdichados", "name_ru_RU": "Сумка негодных прислужников", "name_it_IT": "Borsa dei Servitori Sbagliati", "name_pt_PT": "Algibeira dos Lacaios Espúrios", "on_use": false, "id_encounter": 2392, "id_journal_instance": 1182, "id_map": 2286, "instance_type": 1}, {"id": 178783, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Siphoning Phylactery Shard", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536892, "buy_price": 2684462, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118000507354736, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Siphoning Phylactery Shard", "name_ko_KR": "흡수하는 성물함 조각", "name_fr_FR": "Éclat de phylactère drainant", "name_de_DE": "Entziehender Phylakteriumsplitter", "name_zh_CN": "虹吸护命匣碎片", "name_es_ES": "Fragmento de filacteria succionadora", "name_ru_RU": "Вытягивающий осколок филактерии", "name_it_IT": "Scheggia del Filatterio Prosciugante", "name_pt_PT": "Fragmento de Filactério Drenante", "on_use": true, "id_encounter": 2396, "id_journal_instance": 1182, "id_map": 2286, "instance_type": 1}, {"id": 178808, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Viscera of Coalesced Hatred", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 546549, "buy_price": 2732749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0299999713897705, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Viscera of Coalesced Hatred", "name_ko_KR": "응축된 증오의 내장", "name_fr_FR": "Viscères de haine amalgamée", "name_de_DE": "Eingeweide des verdichteten Hasses", "name_zh_CN": "凝恨脏器", "name_es_ES": "Vísceras de odio fusionado", "name_ru_RU": "Внутренности сгустка ненависти", "name_it_IT": "Viscere d'Odio Condensato", "name_pt_PT": "Vísceras do Ódio Coalescido", "on_use": false, "id_encounter": 2401, "id_journal_instance": 1187, "id_map": 2293, "instance_type": 1}, {"id": 178809, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulletting Ruby", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 509458, "buy_price": 2547294, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.960099995136261, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Soulletting Ruby", "name_ko_KR": "영혼 방출의 루비", "name_fr_FR": "Rubis d’effusion d’âmes", "name_de_DE": "Seelenlassender Rubin", "name_zh_CN": "释魂红玉", "name_es_ES": "Rubí de extracción de almas", "name_ru_RU": "Рубин иссечения душ", "name_it_IT": "Rubino del Liberanime", "name_pt_PT": "Rubi Sangralma", "on_use": true, "id_encounter": 2389, "id_journal_instance": 1187, "id_map": 2293, "instance_type": 1}, {"id": 178810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Spectral Essence", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 511422, "buy_price": 2557110, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638000130653381, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Spectral Essence", "name_ko_KR": "혼령의 정수 약병", "name_fr_FR": "Fiole d’essence spectrale", "name_de_DE": "Phiole der spektralen Essenz", "name_zh_CN": "鬼灵精华之瓶", "name_es_ES": "Vial de esencia espectral", "name_ru_RU": "Флакон с призрачной сущностью", "name_it_IT": "Fiala di Essenza Spettrale", "name_pt_PT": "Ampola de Essência Espectral", "on_use": true, "id_encounter": 2397, "id_journal_instance": 1187, "id_map": 2293, "instance_type": 1}, {"id": 178811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grim Codex", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 513385, "buy_price": 2566927, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Grim Codex", "name_ko_KR": "음울한 전서", "name_fr_FR": "Codex sinistre", "name_de_DE": "Finsterer Kodex", "name_zh_CN": "阴森法典", "name_es_ES": "Códice siniestro", "name_ru_RU": "Мрачный кодекс", "name_it_IT": "Codice Tetro", "name_pt_PT": "Códice Sinistro", "on_use": true, "id_encounter": 2417, "id_journal_instance": 1187, "id_map": 2293, "instance_type": 1}, {"id": 178825, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pulsating Stoneheart", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540659, "buy_price": 2703299, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Pulsating Stoneheart", "name_ko_KR": "고동치는 돌심장", "name_fr_FR": "Cœur-de-pierre palpitant", "name_de_DE": "Pulsierendes Steinherz", "name_zh_CN": "跳动的石心", "name_es_ES": "Corazón de piedra palpitante", "name_ru_RU": "Пульсирующее каменное сердце", "name_it_IT": "Cuordipietra Pulsante", "name_pt_PT": "Coração de Pedra Pulsante", "on_use": true, "id_encounter": 2387, "id_journal_instance": 1185, "id_map": 2287, "instance_type": 1}, {"id": 178826, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunblood Amethyst", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204622, "buy_price": 1023114, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0491000413894653, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sunblood Amethyst", "name_ko_KR": "태양피 자수정", "name_fr_FR": "Améthyste solsang", "name_de_DE": "Sonnenblutamethyst", "name_zh_CN": "阳血紫晶", "name_es_ES": "Amatista sangresol", "name_ru_RU": "Аметист крови солнца", "name_it_IT": "Ametista di Sanguesolare", "name_pt_PT": "Ametista Sanguessol", "on_use": true, "id_encounter": 2411, "id_journal_instance": 1185, "id_map": 2287, "instance_type": 1}, {"id": 178849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overflowing Anima Cage", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 187224, "buy_price": 936124, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599000215530396, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Overflowing Anima Cage", "name_ko_KR": "넘쳐흐르는 령 우리", "name_fr_FR": "Cage d’anima débordante", "name_de_DE": "Überfließender Animakäfig", "name_zh_CN": "充盈的心能牢狱", "name_es_ES": "Jaula de ánima desbordante", "name_ru_RU": "Переполненная клетка с анимой", "name_it_IT": "Gabbia dell'Animum Traboccante", "name_pt_PT": "Jaula de Ânima Transbordante", "on_use": true, "id_encounter": 2415, "id_journal_instance": 1189, "id_map": 2284, "instance_type": 1}, {"id": 178850, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lingering Sunmote", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 511263, "buy_price": 2556315, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Lingering Sunmote", "name_ko_KR": "잔존하는 태양티끌", "name_fr_FR": "Granule de soleil rémanent", "name_de_DE": "Verbleibendes Sonnenpartikel", "name_zh_CN": "残留的太阳之尘", "name_es_ES": "Mota de sol persistente", "name_ru_RU": "Стойкая частица солнца", "name_it_IT": "Granulo del Sole Persistente", "name_pt_PT": "Partícula de Sol Duradoura", "on_use": true, "id_encounter": 2421, "id_journal_instance": 1189, "id_map": 2284, "instance_type": 1}, {"id": 178861, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Decanter of Anima-Charged Winds", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 546762, "buy_price": 2733811, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030400037765503, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Decanter of Anima-Charged Winds", "name_ko_KR": "령으로 충만한 바람 유리병", "name_fr_FR": "Carafe des vents chargés d’anima", "name_de_DE": "Dekanter der animageladenen Winde", "name_zh_CN": "心能充能的缕风瓶", "name_es_ES": "Decantador de vientos cargados de ánima", "name_ru_RU": "Декантер заряженных анимой ветров", "name_it_IT": "Caraffa di Venti Carichi d'Animum", "name_pt_PT": "Decantador dos Ventos Carregados de Ânima", "on_use": false, "id_encounter": 2407, "id_journal_instance": 1189, "id_map": 2284, "instance_type": 1}, {"id": 178862, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bladedancer's Armor Kit", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 548725, "buy_price": 2743627, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.03410005569458, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Bladedancer's Armor Kit", "name_ko_KR": "칼춤꾼의 방어구 강화도구", "name_fr_FR": "Renfort d’armure de danse-lame", "name_de_DE": "Rüstungsset des Klingentänzers", "name_zh_CN": "刃舞者的护甲片", "name_es_ES": "Refuerzo para armadura de danzante de espadas", "name_ru_RU": "Накладки для доспехов танцующего с клинком", "name_it_IT": "Potenziamento d'Armatura del Danzalame", "name_pt_PT": "Kit de Armadura do Dançarino da Lâmina", "on_use": true, "id_encounter": 2407, "id_journal_instance": 1189, "id_map": 2284, "instance_type": 1}, {"id": 179331, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood-Spattered Scale", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542835, "buy_price": 2714177, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0230000019073486, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Blood-Spattered Scale", "name_ko_KR": "피로 칠갑된 비늘", "name_fr_FR": "Écaille maculée de sang", "name_de_DE": "Blutbespritzte Schuppe", "name_zh_CN": "溅血之鳞", "name_es_ES": "Escama salpicada de sangre", "name_ru_RU": "Забрызганная кровью чешуйка", "name_it_IT": "Scaglia Schizzata di Sangue", "name_pt_PT": "Escama Ensaguentada", "on_use": true, "id_encounter": 2408, "id_journal_instance": 1188, "id_map": 2291, "instance_type": 1}, {"id": 179342, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overwhelming Power Crystal", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 525218, "buy_price": 2626092, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989799976348877, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Overwhelming Power Crystal", "name_ko_KR": "압도적인 마력의 수정", "name_fr_FR": "Cristal de puissance accablante", "name_de_DE": "Überwältigender Machtkristall", "name_zh_CN": "压制能量水晶", "name_es_ES": "Cristal de poder sobrecogedor", "name_ru_RU": "Переполненный энергией кристалл", "name_it_IT": "Cristallo Energetico Opprimente", "name_pt_PT": "Cristal de Poder Avassalador", "on_use": true, "id_encounter": 2409, "id_journal_instance": 1188, "id_map": 2291, "instance_type": 1}, {"id": 179350, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscrutable Quantum Device", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540766, "buy_price": 2703830, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190999507904053, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Inscrutable Quantum Device", "name_ko_KR": "불가해한 양자 장치", "name_fr_FR": "Appareil quantique insondable", "name_de_DE": "Unergründliches Quantengerät", "name_zh_CN": "不可思议的量子装置", "name_es_ES": "Dispositivo cuántico inescrutable", "name_ru_RU": "Непостижимое квантовое устройство", "name_it_IT": "Dispositivo Quantico Imperscrutabile", "name_pt_PT": "Dispositivo Quântico Inescrutável", "on_use": true, "id_encounter": 2398, "id_journal_instance": 1188, "id_map": 2291, "instance_type": 1}, {"id": 179356, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowgrasp Totem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 513438, "buy_price": 2567192, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Shadowgrasp Totem", "name_ko_KR": "어둠손아귀 토템", "name_fr_FR": "Totem d’emprise de l’ombre", "name_de_DE": "Schattengrifftotem", "name_zh_CN": "影握图腾", "name_es_ES": "Tótem de agarre sombrío", "name_ru_RU": "Тотем хватки смерти", "name_it_IT": "Totem della Stretta d'Ombra", "name_pt_PT": "Totem da Garra de Sombra", "on_use": true, "id_encounter": 2410, "id_journal_instance": 1188, "id_map": 2291, "instance_type": 1}, {"id": 179927, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glowing Endmire Stinger", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6446, "buy_price": 32234, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9896000027656555, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Glowing Endmire Stinger", "name_ko_KR": "빛나는 끝수렁 독침", "name_fr_FR": "Dard luminescent du marais des Affres", "name_de_DE": "Leuchtender Endmoraststachel", "name_zh_CN": "发光的末日迷沼钉刺", "name_es_ES": "Aguijón del Cenagal del Fin resplandeciente", "name_ru_RU": "Светящееся жало из Гиблотопи", "name_it_IT": "Pungitore di Ultimo Limo Luminoso", "name_pt_PT": "Aguilhoador Brilhante do Charco Derradeiro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 180116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overcharged Anima Battery", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 531108, "buy_price": 2655543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Overcharged Anima Battery", "name_ko_KR": "과충전된 령 전지", "name_fr_FR": "Accumulateur d’anima surchargé", "name_de_DE": "Überladene Animabatterie", "name_zh_CN": "过载的心能电池", "name_es_ES": "Batería de ánima sobrecargada", "name_ru_RU": "Перегруженный аккумулятор анимы", "name_it_IT": "Batteria di Animum Sovraccaricata", "name_pt_PT": "Bateria Anímica Sobrecarregada", "on_use": true, "id_encounter": 2416, "id_journal_instance": 1186, "id_map": 2285, "instance_type": 1}, {"id": 180117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empyreal Ordnance", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 195943, "buy_price": 979717, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Empyreal Ordnance", "name_ko_KR": "최고천의 폭발물", "name_fr_FR": "Munition empyréenne", "name_de_DE": "Himmlische Munition", "name_zh_CN": "天域军火", "name_es_ES": "Artillería empírea", "name_ru_RU": "Небесный снаряд", "name_it_IT": "Ordigno Empireo", "name_pt_PT": "Armamento Empíreo", "on_use": true, "id_encounter": 2414, "id_journal_instance": 1186, "id_map": 2285, "instance_type": 1}, {"id": 180118, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anima Field Emitter", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 535035, "buy_price": 2675176, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082999467849731, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Anima Field Emitter", "name_ko_KR": "령의 장 발생기", "name_fr_FR": "Émetteur de champ d’anima", "name_de_DE": "Animafeldemitter", "name_zh_CN": "心能力场发生器", "name_es_ES": "Emisor de campo de ánima", "name_ru_RU": "Излучатель поля анимы", "name_it_IT": "Emettitore del Campo dell'Animum", "name_pt_PT": "Emissor de Campo de Ânima", "on_use": false, "id_encounter": 2414, "id_journal_instance": 1186, "id_map": 2285, "instance_type": 1}, {"id": 180119, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Boon of the Archon", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536945, "buy_price": 2684727, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Boon of the Archon", "name_ko_KR": "집정관의 은혜", "name_fr_FR": "Faveur de l’Archonte", "name_de_DE": "Gunst der Archon", "name_zh_CN": "执政官的恩赐", "name_es_ES": "Bendición de la Arconte", "name_ru_RU": "Благословение Архонта", "name_it_IT": "Dono dell'Arconte", "name_pt_PT": "Dom da Arconte", "on_use": false, "id_encounter": 2412, "id_journal_instance": 1186, "id_map": 2285, "instance_type": 1}, {"id": 180827, "race_mask": 18446744073709551615, "desc": "A warhorn made of bone. Runes are inscribed along the stone fittings.", "pad2": "", "pad1": "", "pad0": "", "name": "Maldraxxian Warhorn", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407653, "buy_price": 2038269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9749000072479248, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Maldraxxian Warhorn", "name_ko_KR": "말드락시 전쟁 뿔피리", "name_fr_FR": "Cor de guerre maldraxxi", "name_de_DE": "Maldraxxisches Kriegshorn", "name_zh_CN": "玛卓克萨斯战争号角", "name_es_ES": "Cuerno de guerra maldraxxi", "name_ru_RU": "Малдраксийский боевой рог", "name_it_IT": "Corno da Guerra di Maldraxxus", "name_pt_PT": "Trompa de Guerra Maldraxxi", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181333, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 710043, "buy_price": 3550216, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9789999723434448, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Medallion", "name_ko_KR": "죄 많은 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur impénitent", "name_de_DE": "Medaillon des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的勋章", "name_es_ES": "Medallón de Gladiador pecaminoso", "name_ru_RU": "Медальон грешного гладиатора", "name_it_IT": "Medaglione del Gladiatore Peccatore", "name_pt_PT": "Medalhão do Gladiador Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181334, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence Extractor", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 518333, "buy_price": 2591667, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.982699990272522, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Essence Extractor", "name_ko_KR": "정수 추출기", "name_fr_FR": "Extracteur d’essence", "name_de_DE": "Essenzextraktor", "name_zh_CN": "精华提取器", "name_es_ES": "Extractor de esencia", "name_ru_RU": "Экстрактор сущностей", "name_it_IT": "Estrattore d'Essenza", "name_pt_PT": "Extrator de Essência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181335, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 715337, "buy_price": 3576688, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.986299991607666, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Relentless Brooch", "name_ko_KR": "죄 많은 검투사의 가혹한 브로치", "name_fr_FR": "Broche implacable du gladiateur impénitent", "name_de_DE": "Unerbittliche Brosche des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的无情垂饰", "name_es_ES": "Broche implacable de Gladiador pecaminoso", "name_ru_RU": "Непреклонная брошь грешного гладиатора", "name_it_IT": "Spilla Implacabile del Gladiatore Peccatore", "name_pt_PT": "Broche Incansável do Gladiador Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181357, "race_mask": 18446744073709551615, "desc": "Sometimes a tool in the wrong hands is a weapon.", "pad2": "", "pad1": "", "pad0": "", "name": "Tablet of Despair", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524030, "buy_price": 2620150, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9934999942779541, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Tablet of Despair", "name_ko_KR": "절망의 서판", "name_fr_FR": "Tablette de désespoir", "name_de_DE": "Tafel der Verzweiflung", "name_zh_CN": "绝望石板", "name_es_ES": "Tablilla de desesperación", "name_ru_RU": "Табличка отчаяния", "name_it_IT": "Tavoletta della Disperazione", "name_pt_PT": "Tabuleta do Desespero", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181358, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Master Duelist's Chit", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 525981, "buy_price": 2629908, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Master Duelist's Chit", "name_ko_KR": "대가 결투사의 전표", "name_fr_FR": "Note de maître duelliste", "name_de_DE": "Marke des Meisterduellanten", "name_zh_CN": "决斗大师的便条", "name_es_ES": "Bono de maestro duelista", "name_ru_RU": "Карточка опытного дуэлянта", "name_it_IT": "Nota del Maestro dei Duellanti", "name_pt_PT": "Bilhete do Duelista Mestre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overflowing Ember Mirror", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 527933, "buy_price": 2639666, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Overflowing Ember Mirror", "name_ko_KR": "넘치는 잿불의 거울", "name_fr_FR": "Miroir de braise débordant", "name_de_DE": "Überquellender Glutspiegel", "name_zh_CN": "满溢灰烬之镜", "name_es_ES": "Espejo de ascuas desbordante", "name_ru_RU": "Зеркало изобильных углей", "name_it_IT": "Specchio Traboccante di Braci", "name_pt_PT": "Espelho da Brasa Vertente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181360, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brimming Ember Shard", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 529884, "buy_price": 2649424, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Brimming Ember Shard", "name_ko_KR": "충만한 잿불 조각", "name_fr_FR": "Éclat de braise palpitant", "name_de_DE": "Aufgeladener Glutsplitter", "name_zh_CN": "充盈灰烬碎片", "name_es_ES": "Fragmento de ascua rebosante", "name_ru_RU": "Жарко тлеющий осколок", "name_it_IT": "Scheggia di Brace Vibrante", "name_pt_PT": "Estilhaço de Brasa Radiante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181457, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wakener's Frond", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 537691, "buy_price": 2688456, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0194000005722046, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Wakener's Frond", "name_ko_KR": "선각자의 잎사귀", "name_fr_FR": "Fronde d’éveilleur", "name_de_DE": "Wedel des Erweckers", "name_zh_CN": "唤醒者的复叶", "name_es_ES": "Fronda del heraldo", "name_ru_RU": "Побег пробудителя", "name_it_IT": "Fronda del Risvegliatore", "name_pt_PT": "Fronde do Arauto do Despertar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181458, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Queensguard's Vigil", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539642, "buy_price": 2698214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0231000185012817, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Queensguard's Vigil", "name_ko_KR": "여왕 근위병의 경계", "name_fr_FR": "Veille de garde de la reine", "name_de_DE": "Wacht der Königinnenwache", "name_zh_CN": "女王护卫的警戒", "name_es_ES": "Vigilia de la Guardia de la Reina", "name_ru_RU": "Дозор королевской стражи", "name_it_IT": "Vigilanza della Guardia della Regina", "name_pt_PT": "Vigília da Guarda da Rainha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181459, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Withergrove Shardling", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 118351, "buy_price": 591758, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0267000198364258, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Withergrove Shardling", "name_ko_KR": "시들숲 파편", "name_fr_FR": "Éclaté fanebosquet", "name_de_DE": "Dörrhainsteinling", "name_zh_CN": "枯萎林地碎片", "name_es_ES": "Fragmentizo sotomarchito", "name_ru_RU": "Осколок племени Иссохшей рощи", "name_it_IT": "Scheggiola di Avvizzibosco", "name_pt_PT": "Estilha do Bosque Murcho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181501, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flame of Battle", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 506465, "buy_price": 2532328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9602000117301941, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Flame of Battle", "name_ko_KR": "전투의 업화", "name_fr_FR": "Feu du combat", "name_de_DE": "Flamme der Schlacht", "name_zh_CN": "战斗烈焰", "name_es_ES": "Llama de batalla", "name_ru_RU": "Пламя битвы", "name_it_IT": "Fiamma della Battaglia", "name_pt_PT": "Chama da Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181502, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rejuvenating Serum", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 508417, "buy_price": 2542086, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638999700546265, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Rejuvenating Serum", "name_ko_KR": "원기 회복의 약", "name_fr_FR": "Sérum de récupération", "name_de_DE": "Verjüngungsserum", "name_zh_CN": "康复血清", "name_es_ES": "Suero rejuvenecedor", "name_ru_RU": "Омолаживающая сыворотка", "name_it_IT": "Siero Rinvigorente", "name_pt_PT": "Soro Rejuvenescedor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181503, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Caustic Liquid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 111538, "buy_price": 557694, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Caustic Liquid", "name_ko_KR": "부식성 액체가 든 병", "name_fr_FR": "Fiole de liquide caustique", "name_de_DE": "Phiole voll ätzender Flüssigkeit", "name_zh_CN": "腐蚀流液之瓶", "name_es_ES": "Vial de líquido cáustico", "name_ru_RU": "Флакон с едкой жидкостью", "name_it_IT": "Fiala di Liquido Caustico", "name_pt_PT": "Ampola de Líquido Cáustico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beating Abomination Core", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 518122, "buy_price": 2590612, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9822999835014343, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Beating Abomination Core", "name_ko_KR": "고동치는 누더기골렘 핵", "name_fr_FR": "Noyau palpitant d’abomination", "name_de_DE": "Schlagendes Herz einer Monstrosität", "name_zh_CN": "跳动的憎恶核心", "name_es_ES": "Núcleo de abominación palpitante", "name_ru_RU": "Бьющееся ядро поганища", "name_it_IT": "Nucleo Pulsante d'Abominio", "name_pt_PT": "Núcleo de Abominação Pulsante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181816, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 758491, "buy_price": 3792457, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045799970626831, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Sigil of Adaptation", "name_ko_KR": "죄 많은 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur impénitent", "name_de_DE": "Siegel der Anpassung des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador pecaminoso", "name_ru_RU": "Печать адаптации грешного гладиатора", "name_it_IT": "Suggello dell'Adattamento del Gladiatore Peccatore", "name_pt_PT": "Signo da Adaptação do Gladiador Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182451, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glimmerdust's Grand Design", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 534181, "buy_price": 2670907, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0084999799728394, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Glimmerdust's Grand Design", "name_ko_KR": "글리머더스트의 원대한 계획", "name_fr_FR": "Grand dessein de Luisimpinpin", "name_de_DE": "Glimmerstaubs großer Plan", "name_zh_CN": "光尘的宏图", "name_es_ES": "Gran plan de Polvodestello", "name_ru_RU": "Великий план Мерцающей Пыли", "name_it_IT": "Piano Maestoso di Pulvilume", "name_pt_PT": "Grã-marca de Relúzia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Everchill Brambles", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536141, "buy_price": 2680706, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0121999979019165, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Everchill Brambles", "name_ko_KR": "영원한기 가시나무", "name_fr_FR": "Ronces de froidure éternelle", "name_de_DE": "Dornenranken der ewigen Kälte", "name_zh_CN": "永冻荆棘", "name_es_ES": "Zarzas de escalofrío eterno", "name_ru_RU": "Шипы обжигающего холода", "name_it_IT": "Rovi del Brivido Eterno", "name_pt_PT": "Espinheiras do Frio Perene", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182453, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Twilight Bloom", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538048, "buy_price": 2690241, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0157999992370605, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Twilight Bloom", "name_ko_KR": "피어나는 황혼", "name_fr_FR": "Floraison crépusculaire", "name_de_DE": "Zwielichtwachstum", "name_zh_CN": "暮光花", "name_es_ES": "Flor crepuscular", "name_ru_RU": "Сумеречный цветок", "name_it_IT": "Bocciolo Crepuscolare", "name_pt_PT": "Florescer Crepuscular", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182454, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Murmurs in the Dark", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540008, "buy_price": 2700040, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0195000171661377, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Murmurs in the Dark", "name_ko_KR": "어둠 속의 넋두리", "name_fr_FR": "Murmures dans les ténèbres", "name_de_DE": "Gemurmel im Dunkel", "name_zh_CN": "黑暗低语", "name_es_ES": "Murmullos en la oscuridad", "name_ru_RU": "Нашептывания во тьме", "name_it_IT": "Mormorii nell'Oscurità", "name_pt_PT": "Murmúrios na Escuridão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182455, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreamer's Mending", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 541967, "buy_price": 2709839, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0232000350952148, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Dreamer's Mending", "name_ko_KR": "꿈꾸는 자의 치유", "name_fr_FR": "Guérison de la Rêveuse", "name_de_DE": "Besserung der Träumerin", "name_zh_CN": "沉睡者之愈", "name_es_ES": "Alivio de la Soñadora", "name_ru_RU": "Исцеление Дремлющей", "name_it_IT": "Guarigione del Sognatore", "name_pt_PT": "Recomposição da Sonhadora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182682, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Book-Borrower Identification", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 521917, "buy_price": 2609588, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.026900053024292, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 100, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Book-Borrower Identification", "name_ko_KR": "서적 대출 인식표", "name_fr_FR": "Carte d’emprunt de livres", "name_de_DE": "Ausweis des Buchleihers", "name_zh_CN": "借书证", "name_es_ES": "Identificación de usuario de biblioteca", "name_ru_RU": "Идентификатор похитителя книг", "name_it_IT": "Identificativo del Prestatore di Libri", "name_pt_PT": "Documento de Filiado da Biblioteca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heirloom Trinket", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384999513626099, "flags_1": 65536, "flags_2": 6299648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 7, "name_en_US": "Heirloom Trinket", "name_ko_KR": "계승 장신구", "name_fr_FR": "Bijou d’héritage", "name_de_DE": "Erbstück", "name_zh_CN": "传家宝饰品", "name_es_ES": "Abalorio reliquia", "name_ru_RU": "Наследуемый аксессуар", "name_it_IT": "Monile Cimelio", "name_pt_PT": "Berloque de Herança", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heirloom Trinket", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9751999974250793, "flags_1": 65536, "flags_2": 6299648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 7, "name_en_US": "Heirloom Trinket", "name_ko_KR": "계승 장신구", "name_fr_FR": "Bijou d’héritage", "name_de_DE": "Erbstück", "name_zh_CN": "传家宝饰品", "name_es_ES": "Abalorio reliquia", "name_ru_RU": "Наследуемый аксессуар", "name_it_IT": "Monile Cimelio", "name_pt_PT": "Berloque de Herança", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183650, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Minuscule Abomination in a Jar", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 50, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 673595, "buy_price": 3367975, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940000176429749, "flags_1": 0, "flags_2": 8256, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 100, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Minuscule Abomination in a Jar", "name_ko_KR": "단지 안에 든 왜소한 누더기골렘", "name_fr_FR": "Minuscule abomination en bouteille", "name_de_DE": "Klitzekleine Monstrosität im Glas", "name_zh_CN": "瓶中的小小憎恶", "name_es_ES": "Abominación minúscula en un tarro", "name_ru_RU": "Крохотное поганище в бутылке", "name_it_IT": "Piccolo Abominio in Vaso", "name_pt_PT": "Abominação Miúda num Pote", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulsifter Root", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 435753, "buy_price": 2178767, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.042099952697754, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Soulsifter Root", "name_ko_KR": "영혼여과 뿌리", "name_fr_FR": "Racine tamisâme", "name_de_DE": "Seelensieberwurzeln", "name_zh_CN": "捋魂者之根", "name_es_ES": "Raíz ciernealmas", "name_ru_RU": "Корень просеивателя душ", "name_it_IT": "Radice del Setacciatore d'Anime", "name_pt_PT": "Raiz de Peneira-d'alma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183850, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wakener's Frond", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 437258, "buy_price": 2186294, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045699954032898, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Wakener's Frond", "name_ko_KR": "선각자의 잎사귀", "name_fr_FR": "Fronde d’éveilleur", "name_de_DE": "Wedel des Erweckers", "name_zh_CN": "唤醒者的复叶", "name_es_ES": "Fronda del heraldo", "name_ru_RU": "Побег пробудителя", "name_it_IT": "Fronda del Risvegliatore", "name_pt_PT": "Fronde do Arauto do Despertar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183851, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Withergrove Shardling", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9331, "buy_price": 46656, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.049399971961975, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Withergrove Shardling", "name_ko_KR": "시들숲 파편", "name_fr_FR": "Éclaté fanebosquet", "name_de_DE": "Dörrhainsteinling", "name_zh_CN": "枯萎林地碎片", "name_es_ES": "Fragmentizo sotomarchito", "name_ru_RU": "Осколыш племени Иссохшей рощи", "name_it_IT": "Scheggiola di Avvizzibosco", "name_pt_PT": "Estilha do Bosque Murcho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skulker's Wing", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 739489, "buy_price": 3697447, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0196000337600708, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Skulker's Wing", "name_ko_KR": "잠복꾼의 날개", "name_fr_FR": "Aile de furtif", "name_de_DE": "Schleicherflügel", "name_zh_CN": "隐匿者之翼", "name_es_ES": "Ala de vagador", "name_ru_RU": "Крыло тихоступа", "name_it_IT": "Ala di Furtivo", "name_pt_PT": "Asa de Sorrateiro", "on_use": true, "id_encounter": 2393, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184017, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bargast's Leash", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 761392, "buy_price": 3806963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0498000383377075, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Bargast's Leash", "name_ko_KR": "바르가스트의 목줄", "name_fr_FR": "Laisse de Bargast", "name_de_DE": "Bargasts Leine", "name_zh_CN": "巴加斯特的狗绳", "name_es_ES": "Correa de Bargast", "name_ru_RU": "Поводок Баргаста", "name_it_IT": "Guinzaglio di Bargast", "name_pt_PT": "Coleira de Bargast", "on_use": true, "id_encounter": 2429, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Splintered Heart of Al'ar", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 691476, "buy_price": 3457381, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9534000158309937, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Splintered Heart of Al'ar", "name_ko_KR": "알라르의 조각난 심장", "name_fr_FR": "Cœur brisé d’Al’ar", "name_de_DE": "Zersplittertes Herz von Al'ar", "name_zh_CN": "奥的裂解之心", "name_es_ES": "Corazón astillado de Al'ar", "name_ru_RU": "Расколотое сердце Ал'ара", "name_it_IT": "Cuore di Al'ar Spezzato", "name_pt_PT": "Coração Partido de Al'ar", "on_use": false, "id_encounter": 2422, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184019, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Igniter", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446254, "buy_price": 2231272, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9570000171661377, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Soul Igniter", "name_ko_KR": "영혼 점화기", "name_fr_FR": "Brûleur d’âme", "name_de_DE": "Seelenzünder", "name_zh_CN": "燃魂者", "name_es_ES": "Detonador de alma", "name_ru_RU": "Поджигатель душ", "name_it_IT": "Brucianima", "name_pt_PT": "Ignição de Alma", "on_use": true, "id_encounter": 2422, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184020, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tuft of Smoldering Plumage", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 696770, "buy_price": 3483853, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9606999754905701, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Tuft of Smoldering Plumage", "name_ko_KR": "이글거리는 깃털 뭉치", "name_fr_FR": "Aigrette fumante", "name_de_DE": "Büschel schwelendes Gefieder", "name_zh_CN": "焖燃飞羽绒簇", "name_es_ES": "Mechón de plumaje humeante", "name_ru_RU": "Пучок огненных перьев", "name_it_IT": "Ciuffo di Piumaggio Infuocato", "name_pt_PT": "Tufo de Plumagem Fumegante", "on_use": true, "id_encounter": 2422, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184021, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glyph of Assimilation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 449705, "buy_price": 2248525, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9643999934196472, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Glyph of Assimilation", "name_ko_KR": "동화 작용의 문양", "name_fr_FR": "Glyphe d’assimilation", "name_de_DE": "Glyphe der Assimilierung", "name_zh_CN": "同化雕文", "name_es_ES": "Glifo de asimilación", "name_ru_RU": "Символ ассимиляции", "name_it_IT": "Glifo dell'Assimilazione", "name_pt_PT": "Glifo de Assimilação", "on_use": true, "id_encounter": 2418, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184022, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Consumptive Infusion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 702137, "buy_price": 3510688, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9681000113487244, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Consumptive Infusion", "name_ko_KR": "섭취의 주입", "name_fr_FR": "Infusion phtisique", "name_de_DE": "Zehrende Infusion", "name_zh_CN": "噬灭灌注", "name_es_ES": "Infusión consuntiva", "name_ru_RU": "Алчное насыщение", "name_it_IT": "Infusione Tisica", "name_pt_PT": "Infusão Devoradora", "on_use": false, "id_encounter": 2428, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gluttonous Spike", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 704748, "buy_price": 3523743, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9717000126838684, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Gluttonous Spike", "name_ko_KR": "걸신들린 쐐기", "name_fr_FR": "Pointe gloutonne", "name_de_DE": "Gefräßiger Stachel", "name_zh_CN": "暴食尖刺", "name_es_ES": "Pincho glotón", "name_ru_RU": "Всепожирающий шип", "name_it_IT": "Punta Ingorda", "name_pt_PT": "Espeto Glutão", "on_use": false, "id_encounter": 2428, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184024, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Macabre Sheet Music", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 707432, "buy_price": 3537161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9753999710083008, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Macabre Sheet Music", "name_ko_KR": "죽음의 악보", "name_fr_FR": "Partition de musique macabre", "name_de_DE": "Makabres Notenblatt", "name_zh_CN": "断魂乐谱", "name_es_ES": "Partitura macabra", "name_ru_RU": "Макабрическая партитура", "name_it_IT": "Spartito Macabro", "name_pt_PT": "Partitura Macabra", "on_use": true, "id_encounter": 2426, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184025, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Memory of Past Sins", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 710115, "buy_price": 3550578, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9790999889373779, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Memory of Past Sins", "name_ko_KR": "옛 죄악의 기억", "name_fr_FR": "Souvenir de péchés passés", "name_de_DE": "Erinnerung an vergangene Sünden", "name_zh_CN": "昔日罪孽之忆", "name_es_ES": "Recuerdo de pecados pasados", "name_ru_RU": "Воспоминание о былых грехах", "name_it_IT": "Ricordo dei Peccati Passati", "name_pt_PT": "Memória de Pecados do Passado", "on_use": true, "id_encounter": 2420, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hateful Chain", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 712799, "buy_price": 3563996, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9828000068664551, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Hateful Chain", "name_ko_KR": "원한에 찬 사슬", "name_fr_FR": "Chaîne haineuse", "name_de_DE": "Hasserfüllte Kette", "name_zh_CN": "愤懑锁链", "name_es_ES": "Cadena de odio", "name_ru_RU": "Цепь ненависти", "name_it_IT": "Catena d'Odio", "name_pt_PT": "Corrente Odiosa", "on_use": false, "id_encounter": 2394, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184027, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stone Legion Heraldry", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718331, "buy_price": 3591655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9864000082015991, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Stone Legion Heraldry", "name_ko_KR": "돌 군단의 문장", "name_fr_FR": "Blason de la Légion de pierre", "name_de_DE": "Wappenbuch der Steinlegion", "name_zh_CN": "顽石军团纹章", "name_es_ES": "Escudo de armas de la Legión Pétrea", "name_ru_RU": "Геральдика Каменного легиона", "name_it_IT": "Araldica della Legione di Pietra", "name_pt_PT": "Heráldica da Legião de Pedra", "on_use": false, "id_encounter": 2425, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184028, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cabalist's Hymnal", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 508880, "buy_price": 2544400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9901000261306763, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cabalist's Hymnal", "name_ko_KR": "밀사의 성가집", "name_fr_FR": "Hymnaire de cabaliste", "name_de_DE": "Gesangbuch des Kabalisten", "name_zh_CN": "秘法师的赞美诗", "name_es_ES": "Cantoral de cabalista", "name_ru_RU": "Гимнарий кабалиста", "name_it_IT": "Innario del Cabalista", "name_pt_PT": "Hinário do Cabalista", "on_use": false, "id_encounter": 2424, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184029, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Manabound Mirror", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723719, "buy_price": 3618599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937999844551086, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Manabound Mirror", "name_ko_KR": "마나결속 거울", "name_fr_FR": "Miroir lié au mana", "name_de_DE": "Managebundener Spiegel", "name_zh_CN": "法缚威镜", "name_es_ES": "Espejo vinculado al maná", "name_ru_RU": "Зеркало маны", "name_it_IT": "Specchio Vincolato dal Mana", "name_pt_PT": "Espelho Manatado", "on_use": true, "id_encounter": 2424, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184030, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadfire Vessel", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 512683, "buy_price": 2563417, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9975000023841858, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Dreadfire Vessel", "name_ko_KR": "공포화염 그릇", "name_fr_FR": "Réceptacle brûle-effroi", "name_de_DE": "Schreckensfeuergefäß", "name_zh_CN": "骇火法器", "name_es_ES": "Receptáculo de fuego aterrador", "name_ru_RU": "Сосуд жуткого огня", "name_it_IT": "Ricettacolo del Fuoco del Terrore", "name_pt_PT": "Recipiente de Fogo Mórbido", "on_use": true, "id_encounter": 2424, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184031, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sanguine Vintage", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 729036, "buy_price": 3645180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.001099944114685, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sanguine Vintage", "name_ko_KR": "핏빛 포도주", "name_fr_FR": "Millésime sanguin", "name_de_DE": "Blutiger Jahrgang", "name_zh_CN": "赤红陈酿", "name_es_ES": "Añada sanguina", "name_ru_RU": "Кровавый винтаж", "name_it_IT": "Monile del Passato Sanguigno", "name_pt_PT": "Safra Sanguínea", "on_use": true, "id_encounter": 2424, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184052, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 547186, "buy_price": 2735933, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0312000513076782, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Medallion", "name_ko_KR": "죄 많은 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant impénitent", "name_de_DE": "Medaillon des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的勋章", "name_es_ES": "Medallón de aspirante pecaminoso", "name_ru_RU": "Медальон грешного претендента", "name_it_IT": "Medaglione del Pretendente Peccatore", "name_pt_PT": "Medalhão do Aspirante Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184053, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 549097, "buy_price": 2745485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0348000526428223, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Relentless Brooch", "name_ko_KR": "죄 많은 지원자의 가혹한 브로치", "name_fr_FR": "Broche implacable de l’aspirant impénitent", "name_de_DE": "Unerbittliche Brosche des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的无情垂饰", "name_es_ES": "Broche implacable de aspirante pecaminoso", "name_ru_RU": "Непреклонная брошь грешного претендента", "name_it_IT": "Spilla Implacabile del Pretendente Peccatore", "name_pt_PT": "Broche Incansável do Aspirante Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184054, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 551060, "buy_price": 2755301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384999513626099, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Sigil of Adaptation", "name_ko_KR": "죄 많은 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant impénitent", "name_de_DE": "Siegel der Anpassung des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante pecaminoso", "name_ru_RU": "Печать адаптации грешного претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Peccatore", "name_pt_PT": "Signo de Adaptação do Aspirante Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184055, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 565257, "buy_price": 2826286, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.042199969291687, "flags_1": 4096, "flags_2": 4202496, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 195, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Gladiator's Medallion", "name_ko_KR": "타락한 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur corrompu", "name_de_DE": "Medaillon des verderbten Gladiators", "name_zh_CN": "腐化角斗士的勋章", "name_es_ES": "Medallón de Gladiador corrupto", "name_ru_RU": "Медальон падшего гладиатора", "name_it_IT": "Medaglione del Gladiatore Corrotto", "name_pt_PT": "Medalhão do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184056, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 567264, "buy_price": 2836320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0458999872207642, "flags_1": 4096, "flags_2": 4202496, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 195, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Gladiator's Relentless Brooch", "name_ko_KR": "타락한 검투사의 가혹한 브로치", "name_fr_FR": "Broche implacable du gladiateur corrompu", "name_de_DE": "Unerbittliche Brosche des verderbten Gladiators", "name_zh_CN": "腐化角斗士的无情垂饰", "name_es_ES": "Broche implacable de Gladiador corrupto", "name_ru_RU": "Непреклонная брешь падшего гладиатора", "name_it_IT": "Spilla Implacabile del Gladiatore Corrotto", "name_pt_PT": "Broche Incansável do Gladiador Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184057, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 569216, "buy_price": 2846082, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0494999885559082, "flags_1": 4096, "flags_2": 4202496, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 195, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Gladiator's Sigil of Adaptation", "name_ko_KR": "타락한 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur corrompu", "name_de_DE": "Siegel der Anpassung des verderbten Gladiators", "name_zh_CN": "腐化角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador corrupto", "name_ru_RU": "Печать адаптации падшего гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Corrotto", "name_pt_PT": "Signo de Adaptação do Gladiador Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184058, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9531000256538391, "flags_1": 4096, "flags_2": 4218880, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 175, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Aspirant's Medallion", "name_ko_KR": "타락한 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant corrompu", "name_de_DE": "Medaillon des verderbten Aspiranten", "name_zh_CN": "腐化候选者的勋章", "name_es_ES": "Medallón de aspirante corrupto", "name_ru_RU": "Медальон падшего претендента", "name_it_IT": "Medaglione del Pretendente Corrotto", "name_pt_PT": "Medalhão do Aspirante Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184059, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Relentless Brooch", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9567999839782715, "flags_1": 4096, "flags_2": 4218880, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 175, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Aspirant's Relentless Brooch", "name_ko_KR": "타락한 지원자의 가혹한 브로치", "name_fr_FR": "Broche implacable de l’aspirant corrompu", "name_de_DE": "Unerbittliche Brosche des verderbten Aspiranten", "name_zh_CN": "腐化候选者的无情垂饰", "name_es_ES": "Broche implacable de aspirante corrupto", "name_ru_RU": "Непреклонная брешь падшего претендента", "name_it_IT": "Spilla Implacabile del Pretendente Corrotto", "name_pt_PT": "Broche Incansável do Aspirante Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184060, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Sigil of Adaptation", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9605000019073486, "flags_1": 4096, "flags_2": 4218880, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 175, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Aspirant's Sigil of Adaptation", "name_ko_KR": "타락한 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant corrompu", "name_de_DE": "Siegel der Anpassung des verderbten Aspiranten", "name_zh_CN": "腐化候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante corrupto", "name_ru_RU": "Печать адаптации падшего претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Corrotto", "name_pt_PT": "Signo de Adaptação do Aspirante Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184268, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9678999781608582, "flags_1": 528384, "flags_2": 24576, "flags_3": 67108864, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Emblem", "name_ko_KR": "검투사의 문장", "name_fr_FR": "Emblème de gladiateur", "name_de_DE": "Emblem des Gladiators", "name_zh_CN": "角斗士的纹章", "name_es_ES": "Emblema de Gladiador", "name_ru_RU": "Эмблема гладиатора", "name_it_IT": "Emblema del Gladiatore", "name_pt_PT": "Emblema do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184269, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9715999960899353, "flags_1": 528384, "flags_2": 24576, "flags_3": 67108864, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Medallion", "name_ko_KR": "검투사의 메달", "name_fr_FR": "Médaillon de gladiateur", "name_de_DE": "Medaillon des Gladiators", "name_zh_CN": "角斗士的勋章", "name_es_ES": "Medallón de Gladiador", "name_ru_RU": "Медальон гладиатора", "name_it_IT": "Medaglione del Gladiatore", "name_pt_PT": "Medalhão do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184279, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Siphoning Blood-Drinker", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 519241, "buy_price": 2596206, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0348000526428223, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Siphoning Blood-Drinker", "name_ko_KR": "착취의 흡혈귀", "name_fr_FR": "Buveur de sang siphonneur", "name_de_DE": "Entziehender Bluttrinker", "name_zh_CN": "虹吸饮血者", "name_es_ES": "Bebesangre succionador", "name_ru_RU": "Вытягивающий кровопийца", "name_it_IT": "Succhiasangue Aspirante", "name_pt_PT": "Bebe-sangue Sifonante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184807, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of the First Ones", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 761806, "buy_price": 3809033, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0461000204086304, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Relic of the First Ones", "name_ko_KR": "태초의 존재의 유물", "name_fr_FR": "Relique des Fondateurs", "name_de_DE": "Relikt der Ersten", "name_zh_CN": "初诞者的圣物", "name_es_ES": "Reliquia de los Primeros", "name_ru_RU": "Реликвия Предвечных", "name_it_IT": "Reliquia dei Primi", "name_pt_PT": "Relíquia dos Primogênitos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184839, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Misfiring Centurion Controller", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536161, "buy_price": 2680807, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0164999961853027, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Misfiring Centurion Controller", "name_ko_KR": "오작동하는 백인대장 제어기", "name_fr_FR": "Contrôleur de centurion défectueux", "name_de_DE": "Versagende Zenturiosteuerung", "name_zh_CN": "无法启动的百心长控制器", "name_es_ES": "Controlador de centurión averiado", "name_ru_RU": "Сбоящий контролер центурионов", "name_it_IT": "Controllore del Centurione Inceppato", "name_pt_PT": "Controlador de Centurião Engasgado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184840, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hymnal of the Path", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538060, "buy_price": 2690302, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0200999975204468, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Hymnal of the Path", "name_ko_KR": "길의 성가집", "name_fr_FR": "Hymnaire de la voie", "name_de_DE": "Gesangbuch des Pfades", "name_zh_CN": "命途赞美诗", "name_es_ES": "Cantoral del camino", "name_ru_RU": "Гимнарий Пути", "name_it_IT": "Innario della Via", "name_pt_PT": "Hinário do Caminho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184841, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lyre of Sacred Purpose", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540012, "buy_price": 2700060, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023800015449524, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Lyre of Sacred Purpose", "name_ko_KR": "신성한 목적의 수금", "name_fr_FR": "Lyre de dessein sacré", "name_de_DE": "Lyra der Heiligen Aufgaben", "name_zh_CN": "神圣天命竖琴", "name_es_ES": "Lira del propósito sagrado", "name_ru_RU": "Лира священной цели", "name_it_IT": "Lira del Sacro Scopo", "name_pt_PT": "Lira do Propósito Sagrado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184842, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Instructor's Divine Bell", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 541963, "buy_price": 2709818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027500033378601, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Instructor's Divine Bell", "name_ko_KR": "교관의 천상의 종", "name_fr_FR": "Cloche divine d’instructeur", "name_de_DE": "Heilige Glocke des Ausbilders", "name_zh_CN": "导师的圣钟", "name_es_ES": "Campana Divina de instructor", "name_ru_RU": "Божественный колокол инструктора", "name_it_IT": "Campana Divina dell'Istruttore", "name_pt_PT": "Sino Divino do Instrutor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184873, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Igniter (Test)", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 463601, "buy_price": 2318005, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9941999912261963, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Soul Igniter (Test)", "name_ko_KR": "Soul Igniter (Test)", "name_fr_FR": "Soul Igniter (Test)", "name_de_DE": "Soul Igniter (Test)", "name_zh_CN": "Soul Igniter (Test)", "name_es_ES": "", "name_ru_RU": "Soul Igniter (Test)", "name_it_IT": "Soul Igniter (Test)", "name_pt_PT": "Soul Igniter (Test)", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545276, "buy_price": 2726382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276000499725342, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Badge of Ferocity", "name_ko_KR": "속박을 벗어던진 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant déchaîné", "name_de_DE": "Wildheitsabzeichen des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante desencadenado", "name_ru_RU": "Жетон свирепости освобожденного претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Liberato", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185197, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 734484, "buy_price": 3672424, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0126999616622925, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Badge of Ferocity", "name_ko_KR": "속박을 벗어던진 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur déchaîné", "name_de_DE": "Wildheitsabzeichen des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador desencadenado", "name_ru_RU": "Жетон свирепости освобожденного гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Liberato", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185238, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539174, "buy_price": 2695871, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0161000490188599, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Insignia of Alacrity", "name_ko_KR": "속박을 벗어던진 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant déchaîné", "name_de_DE": "Inbrunstinsigne des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante desencadenado", "name_ru_RU": "Знак расторопности освобожденного претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Liberato", "name_pt_PT": "Insígnia de Diligência do Aspirante Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185242, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507920, "buy_price": 2539600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9571999907493591, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Emblem", "name_ko_KR": "속박을 벗어던진 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant déchaîné", "name_de_DE": "Emblem des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的纹章", "name_es_ES": "Emblema de aspirante desencadenado", "name_ru_RU": "Эмблема освобожденного претендента", "name_it_IT": "Emblema del Pretendente Liberato", "name_pt_PT": "Emblema do Aspirante Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185278, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 755953, "buy_price": 3779765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0422999858856201, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Insignia of Alacrity", "name_ko_KR": "속박을 벗어던진 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur déchaîné", "name_de_DE": "Inbrunstinsigne des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador desencadenado", "name_ru_RU": "Знак расторопности освобожденного гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Liberato", "name_pt_PT": "Insígnia de Diligência do Gladiador Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185282, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 694014, "buy_price": 3470073, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9569000005722046, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Emblem", "name_ko_KR": "속박을 벗어던진 검투사의 문장", "name_fr_FR": "Emblème du gladiateur déchaîné", "name_de_DE": "Emblem des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的纹章", "name_es_ES": "Emblema de Gladiador desencadenado", "name_ru_RU": "Эмблема освобожденного гладиатора", "name_it_IT": "Emblema del Gladiatore Liberato", "name_pt_PT": "Emblema do Gladiador Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718456, "buy_price": 3592282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9905999898910522, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Medallion", "name_ko_KR": "속박을 벗어던진 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur déchaîné", "name_de_DE": "Medaillon des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的勋章", "name_es_ES": "Medallón de Gladiador desencadenado", "name_ru_RU": "Медальон освобожденного гладиатора", "name_it_IT": "Medaglione del Gladiatore Liberato", "name_pt_PT": "Medalhão do Gladiador Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 721139, "buy_price": 3605699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9943000078201294, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Relentless Brooch", "name_ko_KR": "속박을 벗어던진 검투사의 가혹한 브로치", "name_fr_FR": "Broche implacable du gladiateur déchaîné", "name_de_DE": "Unerbittliche Brosche des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的无情垂饰", "name_es_ES": "Broche implacable de Gladiador desencadenado", "name_ru_RU": "Непреклонная брешь освобожденного гладиатора", "name_it_IT": "Spilla Implacabile del Gladiatore Liberato", "name_pt_PT": "Broche Incansável do Gladiador Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723823, "buy_price": 3619117, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9980000257492065, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Sigil of Adaptation", "name_ko_KR": "속박을 벗어던진 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur déchaîné", "name_de_DE": "Siegel der Anpassung des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador desencadenado", "name_ru_RU": "Печать адаптации освобожденного гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Liberato", "name_pt_PT": "Signo de Adaptação do Gladiador Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 535406, "buy_price": 2677033, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0089999437332153, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Medallion", "name_ko_KR": "속박을 벗어던진 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant déchaîné", "name_de_DE": "Medaillon des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的勋章", "name_es_ES": "Medallón de aspirante desencadenado", "name_ru_RU": "Медальон освобожденного претендента", "name_it_IT": "Medaglione del Pretendente Liberato", "name_pt_PT": "Medalhão do Aspirante Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 537370, "buy_price": 2686850, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0126999616622925, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Relentless Brooch", "name_ko_KR": "속박을 벗어던진 지원자의 가혹한 브로치", "name_fr_FR": "Broche implacable de l’aspirant déchaîné", "name_de_DE": "Unerbittliche Brosche des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的无情垂饰", "name_es_ES": "Broche implacable de aspirante desencadenado", "name_ru_RU": "Непреклонная брошь освобожденного претендента", "name_it_IT": "Spilla Implacabile del Pretendente Liberato", "name_pt_PT": "Broche Incansável do Aspirante Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539280, "buy_price": 2696401, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0162999629974365, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Sigil of Adaptation", "name_ko_KR": "속박을 벗어던진 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant déchaîné", "name_de_DE": "Siegel der Anpassung des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante desencadenado", "name_ru_RU": "Печать адаптации освобожденного претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Liberato", "name_pt_PT": "Signo de Adaptação do Aspirante Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185818, "race_mask": 18446744073709551615, "desc": "Lead with an open hand, not a closed fist.", "pad2": "", "pad1": "", "pad0": "", "name": "So'leah's Secret Technique", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542444, "buy_price": 2712222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "So'leah's Secret Technique", "name_ko_KR": "소레아의 은밀한 기술", "name_fr_FR": "Technique secrète de So’leah", "name_de_DE": "So'leahs Geheimtechnik", "name_zh_CN": "索·莉亚的究极秘术", "name_es_ES": "Técnica secreta de So'leah", "name_ru_RU": "Тайный прием Со'леи", "name_it_IT": "Tecnica Segreta di So'leah", "name_pt_PT": "Técnica Secreta de So'leah", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185836, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Codex of the First Technique", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 9999, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538471, "buy_price": 2692359, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0166000127792358, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Codex of the First Technique", "name_ko_KR": "첫 번째 절기의 전서", "name_fr_FR": "Codex de la première technique", "name_de_DE": "Kodex der ersten Technik", "name_zh_CN": "第一秘术法典", "name_es_ES": "Códice de la primera técnica", "name_ru_RU": "Кодекс первой техники", "name_it_IT": "Codice della Prima Tecnica", "name_pt_PT": "Códice da Primeira Técnica", "on_use": false, "id_encounter": 2451, "id_journal_instance": 1194, "id_map": 2441, "instance_type": 1}, {"id": 185844, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Sack of Terror", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 554044, "buy_price": 2770222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0460000038146973, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Ticking Sack of Terror", "name_ko_KR": "똑딱거리는 공포의 자루", "name_fr_FR": "Sac à tic-tac terrifiant", "name_de_DE": "Tickender Sack des Schreckens", "name_zh_CN": "滴答作响的恐慌之袋", "name_es_ES": "Saco terrorífico desgranador de segundos", "name_ru_RU": "Тикающий мешок ужаса", "name_it_IT": "Sacca Ticchettante del Terrore", "name_pt_PT": "Sacola de Tique-taque do Terror", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185845, "race_mask": 18446744073709551615, "desc": "Rain or shine, your healing will be on time.", "pad2": "", "pad1": "", "pad0": "", "name": "First Class Healing Distributor", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 556004, "buy_price": 2780021, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0497000217437744, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "First Class Healing Distributor", "name_ko_KR": "일등급 치유 분배 장치", "name_fr_FR": "Distributeur de soins de première classe", "name_de_DE": "Expressheilungsverteiler", "name_zh_CN": "高级治疗分发器", "name_es_ES": "Distribuidor de sanación de primera clase", "name_ru_RU": "Первоклассный распределитель исцеления", "name_it_IT": "Distributore di Cure di Prima Classe", "name_pt_PT": "Distribuidor de Cura de Primeira Linha", "on_use": false, "id_encounter": 2436, "id_journal_instance": 1194, "id_map": 2441, "instance_type": 1}, {"id": 185846, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Miniscule Mailemental in an Envelope", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 158781, "buy_price": 793907, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9531999826431274, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Miniscule Mailemental in an Envelope", "name_ko_KR": "봉투에 담긴 꼬마 우편의 정령", "name_fr_FR": "Postier-lémentaire miniature dans une enveloppe", "name_de_DE": "Winziger Eilementar in einem Umschlag", "name_zh_CN": "信封里的迷你邮件元素", "name_es_ES": "Elemailtal minúsculo en un sobre", "name_ru_RU": "Миниатюрный почтоменталь в конверте", "name_it_IT": "Minuscolo Elementale della Posta in Busta", "name_pt_PT": "Elemencarta Minúscula em Envelope", "on_use": false, "id_encounter": 2436, "id_journal_instance": 1194, "id_map": 2441, "instance_type": 1}, {"id": 185902, "race_mask": 18446744073709551615, "desc": "Trying the spikes on the outside.", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Maiden's Toolkit", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524699, "buy_price": 2623497, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9646000266075134, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Iron Maiden's Toolkit", "name_ko_KR": "가시 박힌 철관 도구함", "name_fr_FR": "Outils de la vierge de fer", "name_de_DE": "Werkzeugsatz der Eisernen Jungfrau", "name_zh_CN": "铁处女工具箱", "name_es_ES": "Juego de herramientas de doncella de hierro", "name_ru_RU": "Инструменты \"железной девы\"", "name_it_IT": "Attrezzi della Vergine di Ferro", "name_pt_PT": "Kit de Ferramentas da Donzela de Ferro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186155, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonic Crowd Breaker", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 553039, "buy_price": 2765197, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Harmonic Crowd Breaker", "name_ko_KR": "조화의 군중 분쇄기", "name_fr_FR": "Briseur de foule harmonique", "name_de_DE": "Harmonischer Schneisenschläger", "name_zh_CN": "谐律灭群者", "name_es_ES": "Dispersador armónico de multitudes", "name_ru_RU": "Гармоничный разгонятель толп", "name_it_IT": "Spezzatore della Folla Armonica", "name_pt_PT": "Dispersor Harmônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186156, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Insight", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555052, "buy_price": 2775261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020400047302246, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Tome of Insight", "name_ko_KR": "통찰의 고서", "name_fr_FR": "Tome de clairvoyance", "name_de_DE": "Foliant der Einsicht", "name_zh_CN": "洞察之书", "name_es_ES": "Tomo de perspicacia", "name_ru_RU": "Книга озарения", "name_it_IT": "Tomo della Consapevolezza", "name_pt_PT": "Tomo da Percepção", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186421, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forbidden Necromantic Tome", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 674773, "buy_price": 3373869, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0164999961853027, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Forbidden Necromantic Tome", "name_ko_KR": "금단의 강령술 고서", "name_fr_FR": "Tome de nécromancie interdit", "name_de_DE": "Verbotener nekromantischer Foliant", "name_zh_CN": "禁断通灵法典", "name_es_ES": "Escrito nigromántico prohibido", "name_ru_RU": "Запретный некромантический фолиант", "name_it_IT": "Tomo Necromantico Proibito", "name_pt_PT": "Tomo Necromântico Proibido", "on_use": true, "id_encounter": 2440, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186422, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Monstrous Constructions", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 673854, "buy_price": 3369274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0200999975204468, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Tome of Monstrous Constructions", "name_ko_KR": "괴악한 창조의 고서", "name_fr_FR": "Tome des Assemblages monstrueux", "name_de_DE": "Foliant der monströsen Konstruktionen", "name_zh_CN": "畸谬造物魔典", "name_es_ES": "Escrito sobre construcciones monstruosas", "name_ru_RU": "Фолиант чудовищных созданий", "name_it_IT": "Tomo delle Costruzioni Mostruose", "name_pt_PT": "Tomo de Construções Monstruosas", "on_use": true, "id_encounter": 2435, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186423, "race_mask": 18446744073709551615, "desc": "A price paid long ago in exchange for knowledge and power.", "pad2": "", "pad1": "", "pad0": "", "name": "Titanic Ocular Gland", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 676298, "buy_price": 3381494, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023800015449524, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Titanic Ocular Gland", "name_ko_KR": "거대한 안구 분비선", "name_fr_FR": "Glande oculaire titanesque", "name_de_DE": "Titanische Okulardrüse", "name_zh_CN": "泰坦之眼腺体", "name_es_ES": "Glándula ocular titánica", "name_ru_RU": "Титанический окуляр", "name_it_IT": "Ghiandola Oculare Titanica", "name_pt_PT": "Glândula Ocular Titânica", "on_use": false, "id_encounter": 2442, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of Annhylde's Aegis", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 756519, "buy_price": 3782597, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027500033378601, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Shard of Annhylde's Aegis", "name_ko_KR": "안힐드의 아이기스 파편", "name_fr_FR": "Fragment de l’égide d’Annhylde", "name_de_DE": "Splitter von Annhyldes Aegis", "name_zh_CN": "安海尔德之盾的残片", "name_es_ES": "Fragmento de la égida de Annhylde", "name_ru_RU": "Осколок эгиды Аннгильды", "name_it_IT": "Scheggia dell'Egida di Annhylde", "name_pt_PT": "Estilhaço da Égide de Annhylde", "on_use": true, "id_encounter": 2439, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186425, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scrawled Word of Recall", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 759243, "buy_price": 3796218, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0312000513076782, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Scrawled Word of Recall", "name_ko_KR": "휘갈긴 귀환의 진언", "name_fr_FR": "Mot de rappel griffonné", "name_de_DE": "Hingekritzeltes Wort des Rückrufs", "name_zh_CN": "旧忆涂鸦", "name_es_ES": "Palabra de regreso garabateada", "name_ru_RU": "Нацарапанное заклинание возвращения", "name_it_IT": "Parola del Richiamo Scarabocchiata", "name_pt_PT": "Palavra de Revocação Rabiscada", "on_use": true, "id_encounter": 2439, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186427, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whispering Shard of Power", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764618, "buy_price": 3823092, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384999513626099, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Whispering Shard of Power", "name_ko_KR": "속삭이는 힘의 조각", "name_fr_FR": "Éclat de puissance murmurant", "name_de_DE": "Flüsternder Splitter der Macht", "name_zh_CN": "低语威能碎片", "name_es_ES": "Esquirla de poder susurrante", "name_ru_RU": "Шепчущий осколок силы", "name_it_IT": "Scheggia di Potere Sussurrante", "name_pt_PT": "Fragmento de Poder Sussurrante", "on_use": false, "id_encounter": 2444, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186428, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowed Orb of Torment", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 639835, "buy_price": 3199175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9685999751091003, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Shadowed Orb of Torment", "name_ko_KR": "어둠에 물든 고문의 보주", "name_fr_FR": "Orbe de tourment obscurci", "name_de_DE": "Schattenkugel der Qual", "name_zh_CN": "暗影折磨宝珠", "name_es_ES": "Orbe de tormento ensombrecido", "name_ru_RU": "Затененная сфера истязания", "name_it_IT": "Globo del Tormento Adombrato", "name_pt_PT": "Orbe do Tormento Ensombrecido", "on_use": true, "id_encounter": 2444, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186429, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Decanter of Endless Howling", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 715803, "buy_price": 3579018, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9721999764442444, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Decanter of Endless Howling", "name_ko_KR": "끝없는 울음의 유리병", "name_fr_FR": "Carafe des hurlements infinis", "name_de_DE": "Karaffe des endlosen Heulens", "name_zh_CN": "无尽咆哮之瓶", "name_es_ES": "Decantador de aullido eterno", "name_ru_RU": "Декантер бесконечного воя", "name_it_IT": "Caraffa dell'Ululato Interminabile", "name_pt_PT": "Decantador do Uivo Eterno", "on_use": false, "id_encounter": 2445, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186430, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Rack Fragment", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718527, "buy_price": 3592639, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9758999943733215, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Tormented Rack Fragment", "name_ko_KR": "고통이 깃든 고문대 파편", "name_fr_FR": "Fragment de vif tourment", "name_de_DE": "Streckbankfragment der Pein", "name_zh_CN": "折磨刑具碎片", "name_es_ES": "Fragmento de potro de tortura", "name_ru_RU": "Фрагмент мучительной дыбы", "name_it_IT": "Frammento della Rastrelliera Tormentata", "name_pt_PT": "Fragmento de Cavalete Atormentado", "on_use": false, "id_encounter": 2443, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186431, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ebonsoul Vise", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 647101, "buy_price": 3235507, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9796000123023987, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Ebonsoul Vise", "name_ko_KR": "흑단혼 조임 장치", "name_fr_FR": "Étau âmébène", "name_de_DE": "Schwarzseelenzwinge", "name_zh_CN": "黑魂之钳", "name_es_ES": "Torno de alma de ébano", "name_ru_RU": "Зажим черной души", "name_it_IT": "Morsa dell'Anima Nera", "name_pt_PT": "Torno de Alma-ébano", "on_use": true, "id_encounter": 2443, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186432, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Salvaged Fusion Amplifier", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723976, "buy_price": 3619881, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.983299970626831, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Salvaged Fusion Amplifier", "name_ko_KR": "회수한 융합 증폭기", "name_fr_FR": "Amplificateur de fusion récupéré", "name_de_DE": "Geborgener Fusionsverstärker", "name_zh_CN": "回收的聚变增幅器", "name_es_ES": "Amplificador de fusión recuperado", "name_ru_RU": "Трофейный катализатор синтеза", "name_it_IT": "Amplificatore di Fusione Recuperato", "name_pt_PT": "Amplificador de Fusão Reformado", "on_use": true, "id_encounter": 2446, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186433, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reactive Defense Matrix", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 726626, "buy_price": 3633134, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868999719619751, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Reactive Defense Matrix", "name_ko_KR": "반응성 방어막", "name_fr_FR": "Matrice de défense réactive", "name_de_DE": "Reaktive Verteidigungsmatrix", "name_zh_CN": "反应防御矩阵", "name_es_ES": "Matriz de defensa reactiva", "name_ru_RU": "Матрица реактивной защиты", "name_it_IT": "Matrice di Difesa Reattiva", "name_pt_PT": "Matriz de Defesa Reativa", "on_use": false, "id_encounter": 2446, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186434, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Weave of Warped Fates", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 729351, "buy_price": 3646755, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9905999898910522, "flags_1": 67637312, "flags_2": 73728, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Weave of Warped Fates", "name_ko_KR": "왜곡된 운명의 짜임", "name_fr_FR": "Tissage des destins altérés", "name_de_DE": "Gespinst aus verzerrten Schicksalen", "name_zh_CN": "扭曲命运织锦", "name_es_ES": "Tejido de destinos distorsionados", "name_ru_RU": "Ткань искаженных судеб", "name_it_IT": "Intreccio di Destini Contorti", "name_pt_PT": "Tecelagem das Sinas Distorcidas", "on_use": false, "id_encounter": 2447, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186435, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carved Ivory Keepsake", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 732075, "buy_price": 3660376, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9943000078201294, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Carved Ivory Keepsake", "name_ko_KR": "조각된 상아 기념품", "name_fr_FR": "Souvenir en ivoire gravé", "name_de_DE": "Geschnitztes Elfenbeinandenken", "name_zh_CN": "乳白雕刻纪念品", "name_es_ES": "Recuerdo de marfil tallado", "name_ru_RU": "Сувенир из резного бивня", "name_it_IT": "Pegno d'Avorio Intagliato", "name_pt_PT": "Lembrancinha de Marfim Entalhado", "on_use": false, "id_encounter": 2447, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186436, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resonant Silver Bell", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 737754, "buy_price": 3688772, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9980000257492065, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Resonant Silver Bell", "name_ko_KR": "공명하는 은빛 종", "name_fr_FR": "Cloche d’argent résonnante", "name_de_DE": "Resonierende Silberglocke", "name_zh_CN": "共鸣银铃", "name_es_ES": "Campana de plata resonante", "name_ru_RU": "Резонирующий серебряный колокольчик", "name_it_IT": "Campana d'Argento Risonante", "name_pt_PT": "Sino de Prata Ressoante", "on_use": false, "id_encounter": 2440, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186437, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of the Frozen Wastes", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 740415, "buy_price": 3702079, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0016000270843506, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Relic of the Frozen Wastes", "name_ko_KR": "얼어붙은 황무지의 유물", "name_fr_FR": "Relique des terres gelées", "name_de_DE": "Relikt der Eisigen Weiten", "name_zh_CN": "冰冻废土圣物", "name_es_ES": "Reliquia de los Baldíos Helados", "name_ru_RU": "Реликвия ледяных пустошей", "name_it_IT": "Reliquia delle Distese Ghiacciate", "name_pt_PT": "Relíquia dos Ermos Gélidos", "on_use": true, "id_encounter": 2440, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186438, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Old Warrior's Soul", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 743150, "buy_price": 3715754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053000450134277, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Old Warrior's Soul", "name_ko_KR": "늙은 전사의 영혼", "name_fr_FR": "Âme de vieux guerrier", "name_de_DE": "Seele eines alten Kriegers", "name_zh_CN": "老兵之魂", "name_es_ES": "Alma de guerrero veterano", "name_ru_RU": "Душа старого воина", "name_it_IT": "Anima del Vecchio Guerriero", "name_pt_PT": "Alma de Guerreiro Antigo", "on_use": false, "id_encounter": 2441, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186866, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718528, "buy_price": 3592644, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9907000064849854, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Badge of Ferocity", "name_ko_KR": "우주적 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur cosmique", "name_de_DE": "Wildheitsabzeichen des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador Cósmico", "name_ru_RU": "Жетон свирепости космического гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Cosmico", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186867, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 721212, "buy_price": 3606062, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944000244140625, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Insignia of Alacrity", "name_ko_KR": "우주적 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur cosmique", "name_de_DE": "Inbrunstinsigne des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador Cósmico", "name_ru_RU": "Знак расторопности космического гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Cosmico", "name_pt_PT": "Insígnia de Diligência do Gladiador Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186868, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723895, "buy_price": 3619479, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9980999827384949, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Emblem", "name_ko_KR": "우주적 검투사의 문장", "name_fr_FR": "Emblème du gladiateur cosmique", "name_de_DE": "Emblem des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的纹章", "name_es_ES": "Emblema de Gladiador Cósmico", "name_ru_RU": "Эмблема космического гладиатора", "name_it_IT": "Emblema del Gladiatore Cosmico", "name_pt_PT": "Emblema do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186869, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 726579, "buy_price": 3632897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017999410629272, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Medallion", "name_ko_KR": "우주적 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur cosmique", "name_de_DE": "Medaillon des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的勋章", "name_es_ES": "Medallón de Gladiador Cósmico", "name_ru_RU": "Медальон космического гладиатора", "name_it_IT": "Medaglione del Gladiatore Cosmico", "name_pt_PT": "Medalhão do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186870, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 729190, "buy_price": 3645952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053999423980713, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Relentless Brooch", "name_ko_KR": "우주적 검투사의 가혹한 브로치", "name_fr_FR": "Broche implacable du gladiateur cosmique", "name_de_DE": "Unerbittliche Brosche des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的无情垂饰", "name_es_ES": "Broche implacable de Gladiador Cósmico", "name_ru_RU": "Брошь непреклонности космического гладиатора", "name_it_IT": "Spilla Implacabile del Gladiatore Cosmico", "name_pt_PT": "Broche Incansável do Gladiador Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186871, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 731873, "buy_price": 3659369, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0090999603271484, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Sigil of Adaptation", "name_ko_KR": "우주적 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur cosmique", "name_de_DE": "Siegel der Anpassung des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador Cósmico", "name_ru_RU": "Печать адаптации космического гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Cosmico", "name_pt_PT": "Signo da Adaptação do Gladiador Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186906, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545276, "buy_price": 2726382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904999732971191, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Badge of Ferocity", "name_ko_KR": "우주적 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant cosmique", "name_de_DE": "Wildheitsabzeichen des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante Cósmico", "name_ru_RU": "Жетон свирепости космического претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Cosmico", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186942, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539174, "buy_price": 2695871, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Insignia of Alacrity", "name_ko_KR": "우주적 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant cosmique", "name_de_DE": "Inbrunstinsigne des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante Cósmico", "name_ru_RU": "Знак расторопности космического претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Cosmico", "name_pt_PT": "Insígnia de Diligência do Aspirante Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186946, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507920, "buy_price": 2539600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Emblem", "name_ko_KR": "우주적 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant cosmique", "name_de_DE": "Emblem des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的纹章", "name_es_ES": "Emblema de aspirante Cósmico", "name_ru_RU": "Эмблема космического претендента", "name_it_IT": "Emblema del Pretendente Cosmico", "name_pt_PT": "Emblema do Aspirante Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186966, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 535406, "buy_price": 2677033, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0166000127792358, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Medallion", "name_ko_KR": "우주적 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant cosmique", "name_de_DE": "Medaillon des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的勋章", "name_es_ES": "Medallón de aspirante Cósmico", "name_ru_RU": "Медальон космического претендента", "name_it_IT": "Medaglione del Pretendente Cosmico", "name_pt_PT": "Medalhão do Aspirante Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186967, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 537370, "buy_price": 2686850, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020300030708313, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Relentless Brooch", "name_ko_KR": "우주적 지원자의 가혹한 브로치", "name_fr_FR": "Broche implacable de l’aspirant cosmique", "name_de_DE": "Unerbittliche Brosche des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的无情垂饰", "name_es_ES": "Broche implacable de aspirante Cósmico", "name_ru_RU": "Брошь непреклонности космического претендента", "name_it_IT": "Spilla Implacabile del Pretendente Cosmico", "name_pt_PT": "Broche Incansável do Aspirante Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186968, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539280, "buy_price": 2696401, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023900032043457, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Sigil of Adaptation", "name_ko_KR": "우주적 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant cosmique", "name_de_DE": "Siegel der Anpassung des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante Cósmico", "name_ru_RU": "Печать адаптации космического претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Cosmico", "name_pt_PT": "Signo de Adaptação do Aspirante Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186976, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fine Razorwing Quill", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555052, "buy_price": 2775261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797000288963318, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Fine Razorwing Quill", "name_ko_KR": "섬세한 칼날날개 깃털", "name_fr_FR": "Belle plume de rasaile", "name_de_DE": "Feiner Klingenschwingenstachel", "name_zh_CN": "刀翼兽的精美飞羽", "name_es_ES": "Pluma fina de alafilada", "name_ru_RU": "Прекрасное перо бритвокрыла", "name_it_IT": "Penna di Alafina Eccellente", "name_pt_PT": "Cálamo de Talhasa de Qualidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186980, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Shackles", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944000244140625, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 220, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Shackles", "name_ko_KR": "속박을 벗어던진 검투사의 족쇄", "name_fr_FR": "Entraves du gladiateur déchaîné", "name_de_DE": "Schäkel des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的镣铐", "name_es_ES": "Grilletes de Gladiador desencadenado", "name_ru_RU": "Оковы освобожденного гладиатора", "name_it_IT": "Catene del Gladiatore Liberato", "name_pt_PT": "Grilhões do Gladiador Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 187447, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Cage Fragment", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9758999943733215, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 6, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Soul Cage Fragment", "name_ko_KR": "영혼 우리 파편", "name_fr_FR": "Fragment de cage d’âme", "name_de_DE": "Seelengefängnisfragment", "name_zh_CN": "灵魂牢笼碎片", "name_es_ES": "Fragmento de prisión de almas", "name_ru_RU": "Фрагмент клетки для душ", "name_it_IT": "Frammento di Gabbia dell'Anima", "name_pt_PT": "Fragmento de Jaula de Almas", "on_use": false, "id_encounter": 2456, "id_journal_instance": 1192, "id_map": 2559, "instance_type": 2}, {"id": 188252, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chains of Domination", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 705006, "buy_price": 3525032, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Chains of Domination", "name_ko_KR": "지배의 사슬", "name_fr_FR": "Chaînes de domination", "name_de_DE": "Ketten der Herrschaft", "name_zh_CN": "统御之链", "name_es_ES": "Cadenas de Dominación", "name_ru_RU": "Цепи Господства", "name_it_IT": "Catene del Dominio", "name_pt_PT": "Correntes da Dominação", "on_use": true, "id_encounter": 2464, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188253, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scars of Fraternal Strife", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 707741, "buy_price": 3538708, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574000239372253, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Scars of Fraternal Strife", "name_ko_KR": "형제 갈등의 흉터", "name_fr_FR": "Stigmates de lutte fratricide", "name_de_DE": "Narben der brüderlichen Zwietracht", "name_zh_CN": "阋墙伤痕", "name_es_ES": "Cicatrices de discordia fraternal", "name_ru_RU": "Раны братского раздора", "name_it_IT": "Cicatrici del Conflitto Fraterno", "name_pt_PT": "Cicatrizes da Contenda Fraterna", "on_use": true, "id_encounter": 2464, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188254, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grim Eclipse", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 710476, "buy_price": 3552384, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9610999822616577, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Grim Eclipse", "name_ko_KR": "음울한 월식", "name_fr_FR": "Sinistre éclipse", "name_de_DE": "Grimmige Finsternis", "name_zh_CN": "严酷星蚀", "name_es_ES": "Eclipse sombrío", "name_ru_RU": "Мрачное затмение", "name_it_IT": "Eclissi Tetra", "name_pt_PT": "Eclipse Sinistro", "on_use": true, "id_encounter": 2467, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188255, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of the Swarm", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 4, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 713212, "buy_price": 3566060, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9648000001907349, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Heart of the Swarm", "name_ko_KR": "벌레 군단의 심장", "name_fr_FR": "Cœur de l’essaim", "name_de_DE": "Das Herz des Schwarms", "name_zh_CN": "虫群之心", "name_es_ES": "Corazón del enjambre", "name_ru_RU": "Сердце роя", "name_it_IT": "Cuore dello Sciame", "name_pt_PT": "Coração do Enxame", "on_use": true, "id_encounter": 2457, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188261, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Intrusive Thoughtcage", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 749064, "buy_price": 3745323, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0132999420166016, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Intrusive Thoughtcage", "name_ko_KR": "침해의 사념 우리", "name_fr_FR": "Prison mentale intrusive", "name_de_DE": "Zudringlicher Gedankenkäfig", "name_zh_CN": "侵心牢笼", "name_es_ES": "Caja de pensamientos intrusiva", "name_ru_RU": "Клетка навязчивых идей", "name_it_IT": "Gabbia Intricata del Pensiero", "name_pt_PT": "Gaiola de Ideias Invasiva", "on_use": true, "id_encounter": 2457, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188262, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Lion's Roar", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 748788, "buy_price": 3743943, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0169999599456787, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "The Lion's Roar", "name_ko_KR": "사자의 포효", "name_fr_FR": "Le Rugissement du Lion", "name_de_DE": "Der Brüllende Löwe", "name_zh_CN": "雄狮之吼", "name_es_ES": "Rugido del León", "name_ru_RU": "Львиный рык", "name_it_IT": "Ruggito del Leone", "name_pt_PT": "Rugido do Leão", "on_use": true, "id_encounter": 2469, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reclaimer's Intensity Core", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 751439, "buy_price": 3757195, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0205999612808228, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Reclaimer's Intensity Core", "name_ko_KR": "되찾는 자의 격화 핵", "name_fr_FR": "Noyau d’intensité du récupérateur", "name_de_DE": "Intensitätskern des Rückgewinners", "name_zh_CN": "回收者的强度核心", "name_es_ES": "Núcleo de intensidad del Reivindicador", "name_ru_RU": "Заряженный сердечник Возвращающего", "name_it_IT": "Nucleo d'Intensità del Rivendicatore", "name_pt_PT": "Núcleo de Intensidade do Recuperador", "on_use": true, "id_encounter": 2463, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188264, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Earthbreaker's Impact", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 754163, "buy_price": 3770817, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Earthbreaker's Impact", "name_ko_KR": "대지파괴자의 충격", "name_fr_FR": "Impact du Brise-terre", "name_de_DE": "Einschlag des Erdbrechers", "name_zh_CN": "碎地者的冲击", "name_es_ES": "Impacto de rompetierra", "name_ru_RU": "Удар землелома", "name_it_IT": "Impatto dello Spaccaterra", "name_pt_PT": "Impacto do Rompe-terra", "on_use": true, "id_encounter": 2463, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188265, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cache of Acquired Treasures", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 3, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 756887, "buy_price": 3784438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027999997138977, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cache of Acquired Treasures", "name_ko_KR": "입수한 보물 보관함", "name_fr_FR": "Cache de trésors acquis", "name_de_DE": "Truhe mit erhaltenen Schätzen", "name_zh_CN": "博取财宝箱", "name_es_ES": "Alijo de tesoros adquiridos", "name_ru_RU": "Тайник с присвоенными сокровищами", "name_it_IT": "Scrigno di Tesori Acquisiti", "name_pt_PT": "Arca de Tesouros Adquiridos", "on_use": true, "id_encounter": 2470, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188266, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pulsating Riftshard", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 759611, "buy_price": 3798059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Pulsating Riftshard", "name_ko_KR": "고동치는 균열 파편", "name_fr_FR": "Éclat de faille palpitant", "name_de_DE": "Pulsierender Kluftsplitter", "name_zh_CN": "跳动的裂隙碎片", "name_es_ES": "Fragmento de falla palpitante", "name_ru_RU": "Пульсирующий осколок", "name_it_IT": "Scheggia di Fenditura Pulsante", "name_pt_PT": "Estilhaço de Fenda Pulsante", "on_use": true, "id_encounter": 2470, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188267, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bells of the Endless Feast", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 762262, "buy_price": 3811312, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0353000164031982, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Bells of the Endless Feast", "name_ko_KR": "끝없는 연회의 종", "name_fr_FR": "Cloches du festin éternel", "name_de_DE": "Glocken des endlosen Festmahls", "name_zh_CN": "无尽飨宴餐铃", "name_es_ES": "Campanas del festín infinito", "name_ru_RU": "Колокольчики вечного пира", "name_it_IT": "Campane del Banchetto Interminabile", "name_pt_PT": "Sinos do Festim sem Fim", "on_use": false, "id_encounter": 2465, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Architect's Ingenuity Core", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 686339, "buy_price": 3431698, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0390000343322754, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Architect's Ingenuity Core", "name_ko_KR": "설계사의 독창성 핵", "name_fr_FR": "Noyau d’ingéniosité de l’architecte", "name_de_DE": "Einfallsreichtumskern des Architekten", "name_zh_CN": "造物师的巧思之核", "name_es_ES": "Núcleo de ingenio del arquitecto", "name_ru_RU": "Сердечник изобретательного архитектора", "name_it_IT": "Nucleo dell'Ingegno dell'Architetto", "name_pt_PT": "Núcleo da Engenhosidade do Arquiteto", "on_use": true, "id_encounter": 2461, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188269, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pocket Protoforge", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767710, "buy_price": 3838554, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0427000522613525, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Pocket Protoforge", "name_ko_KR": "휴대용 원생제련소", "name_fr_FR": "Protoforge de poche", "name_de_DE": "Taschenprotoschmiede", "name_zh_CN": "迷你原生锻炉", "name_es_ES": "Protoforja de bolsillo", "name_ru_RU": "Карманная протокузня", "name_it_IT": "Protoforgia Tascabile", "name_pt_PT": "Protoforja de Bolso", "on_use": false, "id_encounter": 2461, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188270, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elegy of the Eternals", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 770435, "buy_price": 3852175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463999509811401, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Elegy of the Eternals", "name_ko_KR": "영원한 존재의 비가", "name_fr_FR": "Élégie des Éternels", "name_de_DE": "Elegie der Ewigen", "name_zh_CN": "永恒者的挽歌", "name_es_ES": "Elegía de los Eternos", "name_ru_RU": "Элегия Вечных", "name_it_IT": "Elegia degli Eterni", "name_pt_PT": "Elegia dos Eternos", "on_use": false, "id_encounter": 2460, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188271, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The First Sigil", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 773085, "buy_price": 3865427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0499999523162842, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "The First Sigil", "name_ko_KR": "첫 번째 인장", "name_fr_FR": "Le premier cachet", "name_de_DE": "Das erste Siegel", "name_zh_CN": "原初印记", "name_es_ES": "El primer sigilo", "name_ru_RU": "Первая печать", "name_it_IT": "Primo Sigillo", "name_pt_PT": "Primeiro Signo", "on_use": true, "id_encounter": 2460, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188272, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resonant Reservoir", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 629926, "buy_price": 3149632, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Resonant Reservoir", "name_ko_KR": "공명하는 저장소", "name_fr_FR": "Réservoir résonant", "name_de_DE": "Resonierender Kessel", "name_zh_CN": "共振贮藏", "name_es_ES": "Reserva resonante", "name_ru_RU": "Резервуар резонанса", "name_it_IT": "Bacino Risonante", "name_pt_PT": "Reservatório Ressonante", "on_use": true, "id_encounter": 2459, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188273, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Auxiliary Attendant Chime", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 704833, "buy_price": 3524166, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Auxiliary Attendant Chime", "name_ko_KR": "따르는 자 보조원의 풍경", "name_fr_FR": "Carillon de servant auxiliaire", "name_de_DE": "Glockenspiel des Bediensteten", "name_zh_CN": "助理侍从乐铃", "name_es_ES": "Campanilla de auxiliar complementaria", "name_ru_RU": "Колокольчик резервного служителя", "name_it_IT": "Campana Tubolare Ausiliaria dell'Attendente", "name_pt_PT": "Carrilhão de Atendente Auxiliar", "on_use": false, "id_encounter": 2458, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188282, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Auslese's Light Channeler", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7105, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11867, "buy_price": 59339, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Auslese's Light Channeler", "name_ko_KR": "아우슬리즈의 빛 감응기", "name_fr_FR": "Canalisateur de lumière d’Auslese", "name_de_DE": "Ausleses Lichtkanalisierer", "name_zh_CN": "奥丝蕾的光芒护符", "name_es_ES": "Canalizador de luz de Auslese", "name_ru_RU": "Камень Света Ауслезе", "name_it_IT": "Incanalatore di Luce di Auslese", "name_pt_PT": "Canalizador de Luz de Auslese", "on_use": true, "id_encounter": 556, "id_journal_instance": 256, "id_map": 542, "instance_type": 1}, {"id": 188309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of Unyielding Courage", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14828, "buy_price": 74144, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9688000082969666, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Icon of Unyielding Courage", "name_ko_KR": "굽히지 않는 용기의 상징", "name_fr_FR": "Icône du courage inflexible", "name_de_DE": "Ikone des unerschütterlichen Mutes", "name_zh_CN": "不屈勇气徽章", "name_es_ES": "Icono de coraje implacable", "name_ru_RU": "Хоругвь непреклонной отваги", "name_it_IT": "Icona del Coraggio Implacabile", "name_pt_PT": "Ícone da Coragem Obstinada", "on_use": true, "id_encounter": 557, "id_journal_instance": 256, "id_map": 542, "instance_type": 1}, {"id": 188352, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Argussian Compass", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15287, "buy_price": 76438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9796000123023987, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Argussian Compass", "name_ko_KR": "아르거시안 나침반", "name_fr_FR": "Boussole argusséenne", "name_de_DE": "Argusischer Kompass", "name_zh_CN": "阿古斯指南针", "name_es_ES": "Brújula de Argus", "name_ru_RU": "Аргуссианский компас", "name_it_IT": "Bussola Argussiana", "name_pt_PT": "Bússola Argussiana", "on_use": true, "id_encounter": 579, "id_journal_instance": 262, "id_map": 546, "instance_type": 1}, {"id": 188359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alembic of Infernal Power", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6875, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14886, "buy_price": 74432, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0318000316619873, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Alembic of Infernal Power", "name_ko_KR": "지옥 마력 정화장치", "name_fr_FR": "Alambic de puissance infernale", "name_de_DE": "Alembik der höllischen Macht", "name_zh_CN": "恶魔能量萃取器", "name_es_ES": "Alambique de poder infernal", "name_ru_RU": "Перегонный куб мощи преисподней", "name_it_IT": "Alambicco del Potere Infernale", "name_pt_PT": "Alambique de Poder Infernal", "on_use": false, "id_encounter": 579, "id_journal_instance": 262, "id_map": 546, "instance_type": 1}, {"id": 188396, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bangle of Endless Blessings", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15410, "buy_price": 77052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Bangle of Endless Blessings", "name_ko_KR": "끝없는 축복의 팔찌", "name_fr_FR": "Bracelet des bénédictions infinies", "name_de_DE": "Reif des unendlichen Segens", "name_zh_CN": "无尽祝福法链", "name_es_ES": "Broche de bendiciones sin fin", "name_ru_RU": "Браслет нескончаемого блаженства", "name_it_IT": "Ciondolo delle Benedizioni Infinite", "name_pt_PT": "Bracelete das Bênçãos sem Fim", "on_use": true, "id_encounter": 562, "id_journal_instance": 257, "id_map": 553, "instance_type": 1}, {"id": 188415, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Gossamer", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10091, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24717, "buy_price": 123588, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Essence of Gossamer", "name_ko_KR": "섬세한 거미줄", "name_fr_FR": "Essence de tulle", "name_de_DE": "Samtige Essenz", "name_zh_CN": "蛛网精华", "name_es_ES": "Esencia de delicadez", "name_ru_RU": "Квинтэссенция паутины", "name_it_IT": "Essenza di Stoffa Finissima", "name_pt_PT": "Essência de Teia Diáfana", "on_use": false, "id_encounter": 586, "id_journal_instance": 272, "id_map": 601, "instance_type": 1}, {"id": 188478, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Needle-Encrusted Scorpion", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Needle-Encrusted Scorpion", "name_ko_KR": "바늘 박힌 전갈", "name_fr_FR": "Scorpion incrusté d’aiguilles", "name_de_DE": "Nadelüberzogener Skorpion", "name_zh_CN": "钉壳毒蝎", "name_es_ES": "Escorpión incrustado de agujas", "name_ru_RU": "Покрытый иглами скорпион", "name_it_IT": "Scorpione dall'Aculeo Incrostato", "name_pt_PT": "Escorpião Incrustado de Agulhas", "on_use": false, "id_encounter": 616, "id_journal_instance": 280, "id_map": 632, "instance_type": 1}, {"id": 188490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grace of the Herald", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 103, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30620, "buy_price": 153104, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Grace of the Herald", "name_ko_KR": "사자의 은총", "name_fr_FR": "Grâce du héraut", "name_de_DE": "Gunst des Herolds", "name_zh_CN": "先驱之握", "name_es_ES": "Gracia del Heraldo", "name_ru_RU": "Милость глашатая", "name_it_IT": "Grazia dell'Araldo", "name_pt_PT": "Graça do Arauto", "on_use": false, "id_encounter": 106, "id_journal_instance": 66, "id_map": 645, "instance_type": 1}, {"id": 188514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Witching Hourglass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 104, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32059, "buy_price": 160295, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0389000177383423, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Witching Hourglass", "name_ko_KR": "마녀의 모래시계", "name_fr_FR": "Sablier ensorcelant", "name_de_DE": "Geisterstundenglas", "name_zh_CN": "巫术沙漏", "name_es_ES": "Reloj de arena de brujería", "name_ru_RU": "Ведьмовские песочные часы", "name_it_IT": "Clessidra delle Streghe", "name_pt_PT": "Ampulheta da Bruxaria", "on_use": false, "id_encounter": 109, "id_journal_instance": 66, "id_map": 645, "instance_type": 1}, {"id": 188524, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Fastidious Resolve", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 726724, "buy_price": 3633622, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Fastidious Resolve", "name_ko_KR": "우주적 검투사의 치밀한 결의", "name_fr_FR": "Résolution rigoureuse du gladiateur cosmique", "name_de_DE": "Akribische Entschlossenheit des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的严谨决心", "name_es_ES": "Resolución escrupulosa de Gladiador Cósmico", "name_ru_RU": "Взыскательная решимость космического гладиатора", "name_it_IT": "Risolutezza Scrupolosa del Gladiatore", "name_pt_PT": "Determinação Meticulosa do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188691, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Echoing Resolve", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 710478, "buy_price": 3552392, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9796000123023987, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Echoing Resolve", "name_ko_KR": "우주적 검투사의 메아리치는 결의", "name_fr_FR": "Résolution retentissante du gladiateur cosmique", "name_de_DE": "Hallende Entschlossenheit des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的回响决心", "name_es_ES": "Resolución resonante de Gladiador Cósmico", "name_ru_RU": "Отдающаяся эхом решимость космического гладиатора", "name_it_IT": "Risolutezza Echeggiante del Gladiatore Cosmico", "name_pt_PT": "Determinação Ecoante do Gladiador Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188766, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Resonator", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 715990, "buy_price": 3579952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872000217437744, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Resonator", "name_ko_KR": "우주적 검투사의 공명기", "name_fr_FR": "Résonateur du gladiateur cosmique", "name_de_DE": "Resonator des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的共振器", "name_es_ES": "Resonador de Gladiador Cósmico", "name_ru_RU": "Резонатор космического гладиатора", "name_it_IT": "Risonatore del Gladiatore Cosmico", "name_pt_PT": "Ressonador do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188775, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Eternal Aegis", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 759144, "buy_price": 3795721, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0467000007629395, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Eternal Aegis", "name_ko_KR": "우주적 검투사의 영원한 아이기스", "name_fr_FR": "Égide éternelle du gladiateur cosmique", "name_de_DE": "Ewige Aegis des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的永恒结界", "name_es_ES": "Égida eterna de Gladiador Cósmico", "name_ru_RU": "Вечная эгида космического гладиатора", "name_it_IT": "Egida Eterna del Gladiatore Cosmico", "name_pt_PT": "Égide Eterna do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188778, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Devouring Malediction", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 694594, "buy_price": 3472974, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Devouring Malediction", "name_ko_KR": "우주적 검투사의 게걸스러운 악심", "name_fr_FR": "Malédiction dévorante du gladiateur cosmique", "name_de_DE": "Verschlingende Verwünschung des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的吞噬诅咒", "name_es_ES": "Maldición devoradora de Gladiador Cósmico", "name_ru_RU": "Пожирающее проклятие космического гладиатора", "name_it_IT": "Maledizione Divorante del Gladiatore Cosmico", "name_pt_PT": "Imprecação Devoradora do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188816, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emerald Winglord's Insignia", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9501000046730042, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 206, "class_mask": 4164, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Emerald Winglord's Insignia", "name_ko_KR": "에메랄드 날개군주의 인장", "name_fr_FR": "Insigne d’altesse-ailée d’émeraude", "name_de_DE": "Smaragdgrünes Insigne des Schwingenfürsten", "name_zh_CN": "翡翠翼尉徽章", "name_es_ES": "Insignia del señor alado esmeralda", "name_ru_RU": "Знак изумрудного властелина", "name_it_IT": "Fregio del Signore Alato di Smeraldo", "name_pt_PT": "Insígnia do Lorde-de-ala Esmeralda", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188817, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Claw-Carved Figurine", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 206, "class_mask": 4096, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Claw-Carved Figurine", "name_ko_KR": "발톱에 긁힌 조각상", "name_fr_FR": "Figurine taillée à coups de griffes", "name_de_DE": "Klauengeschnitzte Figur", "name_zh_CN": "爪刻雕像", "name_es_ES": "Figura tallada con garras", "name_ru_RU": "Вырезанная когтями фигурка", "name_it_IT": "Statuetta Intagliata con Artigli", "name_pt_PT": "Estatueta Entalhada a Garra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190374, "race_mask": 18446744073709551615, "desc": "One of the few relics left behind that the guardians sought to protect.", "pad2": "", "pad1": "", "pad0": "", "name": "Gemstone of Prismatic Brilliance", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 476552, "buy_price": 2382760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035599946975708, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 246, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Gemstone of Prismatic Brilliance", "name_ko_KR": "오색 광휘의 보석", "name_fr_FR": "Gemme de brillance prismatique", "name_de_DE": "Edelstein der prismatischen Brillanz", "name_zh_CN": "棱彩睿智宝石", "name_es_ES": "Gema de resplandor prismático", "name_ru_RU": "Самоцвет радужного сияния", "name_it_IT": "Gemma dell'Acume Prismatico", "name_pt_PT": "Gema de Inteligência Prismática", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190389, "race_mask": 18446744073709551615, "desc": "Good luck!", "pad2": "", "pad1": "", "pad0": "", "name": "Broker's Lucky Coin", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 468038, "buy_price": 2340194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0170999765396118, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Broker's Lucky Coin", "name_ko_KR": "중개자의 행운 주화", "name_fr_FR": "Pièce porte-bonheur de négociant", "name_de_DE": "Mittlerglücksmünze", "name_zh_CN": "掮灵的幸运币", "name_es_ES": "Moneda de la suerte de los Especuladores", "name_ru_RU": "Счастливая монетка брокера", "name_it_IT": "Moneta Fortunata dell'Alienatore", "name_pt_PT": "Moeda da Sorte de Corretor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Protector's Diffusion Implement", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 469695, "buy_price": 2348477, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0206999778747559, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Protector's Diffusion Implement", "name_ko_KR": "수호병의 발산 기구", "name_fr_FR": "Instrument de dispersion du protecteur", "name_de_DE": "Diffusionsutensil des Beschützers", "name_zh_CN": "防御者的扩散器", "name_es_ES": "Instrumento de difusión de protector", "name_ru_RU": "Рассеивающий инструмент защитника", "name_it_IT": "Strumento di Diffusione del Protettore", "name_pt_PT": "Implemento de Difusão do Protetor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190582, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbol of the Vombata", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 480003, "buy_price": 2400016, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0430999994277954, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Symbol of the Vombata", "name_ko_KR": "봄바타의 상징", "name_fr_FR": "Symbole du vombata", "name_de_DE": "Symbol des Vombatas", "name_zh_CN": "元袋熊符记", "name_es_ES": "Símbolo de los vombatas", "name_ru_RU": "Знак вомбаты", "name_it_IT": "Simbolo di Vombatide", "name_pt_PT": "Símbolo do Vombate", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbol of the Lupine", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 471490, "buy_price": 2357451, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0246000289916992, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Symbol of the Lupine", "name_ko_KR": "원시늑대의 상징", "name_fr_FR": "Symbole du lupin", "name_de_DE": "Symbol des Lupins", "name_zh_CN": "元狼符记", "name_es_ES": "Símbolo de los lupinos", "name_ru_RU": "Знак люпина", "name_it_IT": "Simbolo di Lupino", "name_pt_PT": "Símbolo do Lupino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190602, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbol of the Raptora", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430572, "buy_price": 2152862, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0428999662399292, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Symbol of the Raptora", "name_ko_KR": "육식조의 상징", "name_fr_FR": "Symbole du raptora", "name_de_DE": "Symbol des Raptoras", "name_zh_CN": "元鹰符记", "name_es_ES": "Símbolo de los accipítridos", "name_ru_RU": "Знак рапторы", "name_it_IT": "Simbolo di Falconide", "name_pt_PT": "Símbolo da Rapinante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Instructor's Divine Bell", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 541963, "buy_price": 2709818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965399980545044, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Instructor's Divine Bell", "name_ko_KR": "교관의 천상의 종", "name_fr_FR": "Cloche divine d’instructeur", "name_de_DE": "Heilige Glocke des Ausbilders", "name_zh_CN": "导师的圣钟", "name_es_ES": "Campana Divina de instructor", "name_ru_RU": "Божественный колокол инструктора", "name_it_IT": "Campana Divina dell'Istruttore", "name_pt_PT": "Sino Divino do Instrutor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190652, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Sack of Terror", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 554044, "buy_price": 2770222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Ticking Sack of Terror", "name_ko_KR": "똑딱거리는 공포의 자루", "name_fr_FR": "Sac à tic-tac terrifiant", "name_de_DE": "Tickender Sack des Schreckens", "name_zh_CN": "滴答作响的恐慌之袋", "name_es_ES": "Saco terrorífico desgranador de segundos", "name_ru_RU": "Тикающий мешок ужаса", "name_it_IT": "Sacca Ticchettante del Terrore", "name_pt_PT": "Sacola de Tique-taque do Terror", "on_use": false, "id_encounter": 2436, "id_journal_instance": 1194, "id_map": 2441, "instance_type": 1}, {"id": 190726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Extract of Prodigious Sands", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 464633, "buy_price": 2323168, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0096999406814575, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Extract of Prodigious Sands", "name_ko_KR": "경이의 모래 추출물", "name_fr_FR": "Échantillon de sable prodigieux", "name_de_DE": "Extrakt wundersamen Sands", "name_zh_CN": "无垠沙海提取物", "name_es_ES": "Extracto de arenas prodigiosas", "name_ru_RU": "Экстракт бескрайних песков", "name_it_IT": "Estratto di Sabbie Prodigiose", "name_pt_PT": "Extrato das Areias Prodigiosas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190958, "race_mask": 18446744073709551615, "desc": "Lead with an open hand, not a closed fist.", "pad2": "", "pad1": "", "pad0": "", "name": "So'leah's Secret Technique", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542444, "buy_price": 2712222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0318000316619873, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "So'leah's Secret Technique", "name_ko_KR": "소레아의 은밀한 기술", "name_fr_FR": "Technique secrète de So’leah", "name_de_DE": "So'leahs Geheimtechnik", "name_zh_CN": "索·莉亚的究极秘术", "name_es_ES": "Técnica secreta de So'leah", "name_ru_RU": "Тайный прием Со'леи", "name_it_IT": "Tecnica Segreta di So'leah", "name_pt_PT": "Técnica Secreta de So'leah", "on_use": true, "id_encounter": 2455, "id_journal_instance": 1194, "id_map": 2441, "instance_type": 1}, {"id": 191491, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Sustaining Alchemist Stone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 779488, "buy_price": 3897442, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sustaining Alchemist Stone", "name_ko_KR": "존속의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste de soutien", "name_de_DE": "Nährender Alchemistenstein", "name_zh_CN": "维系炼金石", "name_es_ES": "Piedra de alquimista preservadora", "name_ru_RU": "Поддерживающий алхимический камень", "name_it_IT": "Pietra Alchemica Sostenitrice", "name_pt_PT": "Pedra do Alquimista Reforçante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 191492, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Alacritous Alchemist Stone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 782408, "buy_price": 3912041, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Alacritous Alchemist Stone", "name_ko_KR": "명민의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste empressée", "name_de_DE": "Lebhafter Alchemistenstein", "name_zh_CN": "活跃炼金石", "name_es_ES": "Piedra de alquimista de prontitud", "name_ru_RU": "Стремительный алхимический камень", "name_it_IT": "Pietra Alchemica Alacre", "name_pt_PT": "Pedra do Alquimista Álacre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192295, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718528, "buy_price": 3592644, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9620000123977661, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Badge of Ferocity", "name_ko_KR": "영원한 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Wildheitsabzeichen des ewigen Gladiators", "name_zh_CN": "永恒角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador eterno", "name_ru_RU": "Жетон свирепости вечного гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Eterno", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192296, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 721212, "buy_price": 3606062, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Insignia of Alacrity", "name_ko_KR": "영원한 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Inbrunstinsigne des ewigen Gladiators", "name_zh_CN": "永恒角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador eterno", "name_ru_RU": "Знак расторопности вечного гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Eterno", "name_pt_PT": "Insígnia de Diligência do Gladiador Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192297, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723895, "buy_price": 3619479, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692999720573425, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Emblem", "name_ko_KR": "영원한 검투사의 문장", "name_fr_FR": "Emblème de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Emblem des ewigen Gladiators", "name_zh_CN": "永恒角斗士的纹章", "name_es_ES": "Emblema de Gladiador eterno", "name_ru_RU": "Эмблема вечного гладиатора", "name_it_IT": "Emblema del Gladiatore Eterno", "name_pt_PT": "Emblema do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192298, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 726579, "buy_price": 3632897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9729999899864197, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Medallion", "name_ko_KR": "영원한 검투사의 메달", "name_fr_FR": "Médaillon de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Medaillon des ewigen Gladiators", "name_zh_CN": "永恒角斗士的勋章", "name_es_ES": "Medallón de Gladiador eterno", "name_ru_RU": "Медальон вечного гладиатора", "name_it_IT": "Medaglione del Gladiatore Eterno", "name_pt_PT": "Medalhão do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192299, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 729190, "buy_price": 3645952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9767000079154968, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Relentless Brooch", "name_ko_KR": "영원한 검투사의 가혹한 브로치", "name_fr_FR": "Broche implacable de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Unerbittliche Brosche des ewigen Gladiators", "name_zh_CN": "永恒角斗士的无情垂饰", "name_es_ES": "Broche implacable de Gladiador eterno", "name_ru_RU": "Брошь непреклонности вечного гладиатора", "name_it_IT": "Spilla Implacabile del Gladiatore Eterno", "name_pt_PT": "Broche Incansável do Gladiador Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 731873, "buy_price": 3659369, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9803000092506409, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Sigil of Adaptation", "name_ko_KR": "영원한 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Siegel der Anpassung des ewigen Gladiators", "name_zh_CN": "永恒角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador eterno", "name_ru_RU": "Печать адаптации вечного гладиатора", "name_it_IT": "Suggello dell'Adattamento del Gladiatore Eterno", "name_pt_PT": "Signo de Adaptação do Gladiador Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Fastidious Resolve", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 726724, "buy_price": 3633622, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Fastidious Resolve", "name_ko_KR": "영원한 검투사의 치밀한 결의", "name_fr_FR": "Résolution rigoureuse de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Akribische Entschlossenheit des ewigen Gladiators", "name_zh_CN": "永恒角斗士的严谨决心", "name_es_ES": "Resolución escrupulosa de Gladiador eterno", "name_ru_RU": "Взыскательная решимость вечного гладиатора", "name_it_IT": "Risolutezza Scrupolosa del Gladiatore Eterno", "name_pt_PT": "Determinação Meticulosa do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Echoing Resolve", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 710478, "buy_price": 3552392, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9876999855041504, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Echoing Resolve", "name_ko_KR": "영원한 검투사의 메아리치는 결의", "name_fr_FR": "Résolution retentissante de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Hallende Entschlossenheit des ewigen Gladiators", "name_zh_CN": "永恒角斗士的回响决心", "name_es_ES": "Resolución resonante de Gladiador eterno", "name_ru_RU": "Отдающаяся эхом решимость вечного гладиатора", "name_it_IT": "Risolutezza Echeggiante del Gladiatore Eterno", "name_pt_PT": "Determinação Ecoante do Gladiador Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Resonator", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 715990, "buy_price": 3579952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9912999868392944, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Resonator", "name_ko_KR": "영원한 검투사의 공명기", "name_fr_FR": "Résonateur de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Resonator des ewigen Gladiators", "name_zh_CN": "永恒角斗士的共振器", "name_es_ES": "Resonador de Gladiador eterno", "name_ru_RU": "Резонатор вечного гладиатора", "name_it_IT": "Risonatore del Gladiatore Eterno", "name_pt_PT": "Ressonador do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Eternal Aegis", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 759144, "buy_price": 3795721, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9950000047683716, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Eternal Aegis", "name_ko_KR": "영원한 검투사의 영원한 아이기스", "name_fr_FR": "Égide immuable de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Ewige Aegis des ewigen Gladiators", "name_zh_CN": "永恒角斗士的永恒结界", "name_es_ES": "Égida eterna de Gladiador eterno", "name_ru_RU": "Вечная эгида вечного гладиатора", "name_it_IT": "Egida Eterna del Gladiatore Eterno", "name_pt_PT": "Égide Eterna do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Devouring Malediction", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 694594, "buy_price": 3472974, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987000226974487, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Devouring Malediction", "name_ko_KR": "영원한 검투사의 게걸스러운 악심", "name_fr_FR": "Malédiction dévorante de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Verschlingende Verwünschung des ewigen Gladiators", "name_zh_CN": "永恒角斗士的吞噬诅咒", "name_es_ES": "Maldición devoradora de Gladiador eterno", "name_ru_RU": "Пожирающее проклятие вечного гладиатора", "name_it_IT": "Maledizione Divorante del Gladiatore Eterno", "name_pt_PT": "Imprecação Devoradora do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192352, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545276, "buy_price": 2726382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9505000114440918, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Badge of Ferocity", "name_ko_KR": "영원한 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Wildheitsabzeichen des ewigen Aspiranten", "name_zh_CN": "永恒候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante eterno", "name_ru_RU": "Жетон свирепости вечного претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Eterno", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192388, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0356999635696411, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Insignia of Alacrity", "name_ko_KR": "영원한 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Inbrunstinsigne des ewigen Aspiranten", "name_zh_CN": "永恒候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante eterno", "name_ru_RU": "Знак расторопности вечного претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Eterno", "name_pt_PT": "Insígnia de Diligência do Aspirante Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192392, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507920, "buy_price": 2539600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768000245094299, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Emblem", "name_ko_KR": "영원한 지원자의 문장", "name_fr_FR": "Emblème de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Emblem des ewigen Aspiranten", "name_zh_CN": "永恒候选者的纹章", "name_es_ES": "Emblema de aspirante eterno", "name_ru_RU": "Эмблема вечного претендента", "name_it_IT": "Emblema del Pretendente Eterno", "name_pt_PT": "Emblema do Aspirante Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192412, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Medallion", "name_ko_KR": "영원한 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Medaillon des ewigen Aspiranten", "name_zh_CN": "永恒候选者的勋章", "name_es_ES": "Medallón de aspirante eterno", "name_ru_RU": "Медальон вечного претендента", "name_it_IT": "Medaglione del Pretendente Eterno", "name_pt_PT": "Medalhão do Aspirante Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 537370, "buy_price": 2686850, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9803000092506409, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Relentless Brooch", "name_ko_KR": "영원한 지원자의 가혹한 브로치", "name_fr_FR": "Broche implacable de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Unerbittliche Brosche des ewigen Aspiranten", "name_zh_CN": "永恒候选者的无情垂饰", "name_es_ES": "Broche implacable de aspirante eterno", "name_ru_RU": "Брошь непреклонности вечного претендента", "name_it_IT": "Spilla Implacabile del Pretendente Eterno", "name_pt_PT": "Broche Incansável do Aspirante Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Sigil of Adaptation", "name_ko_KR": "영원한 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Siegel der Anpassung des ewigen Aspiranten", "name_zh_CN": "永恒候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante eterno", "name_ru_RU": "Печать адаптации вечного претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Eterno", "name_pt_PT": "Signo de Adaptação do Aspirante Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192797, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gral's Discarded Tooth", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 606573, "buy_price": 3032867, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Gral's Discarded Tooth", "name_ko_KR": "그랄의 버려진 이빨", "name_fr_FR": "Dent tombée de Gral", "name_de_DE": "Grals abgelegter Zahn", "name_zh_CN": "格罗尔丢弃的牙", "name_es_ES": "Diente desechado de Gral", "name_ru_RU": "Выброшенный зуб Грала", "name_it_IT": "Dente Scartato di Gral", "name_pt_PT": "Dente Descartado de Gral", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193003, "race_mask": 18446744073709551615, "desc": "Tomorrow will bring you new challenges, and you must be ready to face them.", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of the Life-Binder", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 502, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0250999927520752, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Idol of the Life-Binder", "name_ko_KR": "생명의 어머니의 우상", "name_fr_FR": "Idole de la Lieuse-de-Vie", "name_de_DE": "Götze der Lebensbinderin", "name_zh_CN": "生命缚誓者的雕像", "name_es_ES": "Ídolo de la Protectora", "name_ru_RU": "Идол Хранительницы жизни", "name_it_IT": "Idolo della Protettrice della Vita", "name_pt_PT": "Ídolo da Mãe da Vida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193004, "race_mask": 18446744073709551615, "desc": "I have lost much in my time, mortal, too much in fact.", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of the Spell-Weaver", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 502, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0286999940872192, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Idol of the Spell-Weaver", "name_ko_KR": "마법의 지배자의 우상", "name_fr_FR": "Idole du Tisse-sort", "name_de_DE": "Götze des Spruchwirkers", "name_zh_CN": "织法者的雕像", "name_es_ES": "Ídolo del Tejehechizos", "name_ru_RU": "Идол Хранителя магии", "name_it_IT": "Idolo del Plasmamagie", "name_pt_PT": "Ídolo do Tecencantos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193005, "race_mask": 18446744073709551615, "desc": "Whatever comes, I know you will face it with courage.", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of the Dreamer", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 502, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Idol of the Dreamer", "name_ko_KR": "꿈꾸는 자의 우상", "name_fr_FR": "Idole de la Rêveuse", "name_de_DE": "Götze der Träumerin", "name_zh_CN": "沉睡者的雕像", "name_es_ES": "Ídolo de la Soñadora", "name_ru_RU": "Идол Дремлющей", "name_it_IT": "Idolo della Sognatrice", "name_pt_PT": "Ídolo do Sonhador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193006, "race_mask": 18446744073709551615, "desc": "It is done. All have given that which must be given. I now seal the Dragon Soul forever.", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of the Earth-Warder", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 502, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0361000299453735, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Idol of the Earth-Warder", "name_ko_KR": "대지의 수호자의 우상", "name_fr_FR": "Idole du Gardeterre", "name_de_DE": "Götze des Erdwächters", "name_zh_CN": "大地守护者的雕像", "name_es_ES": "Ídolo del Guardián de la Tierra", "name_ru_RU": "Идол Хранителя Земли", "name_it_IT": "Idolo del Custode della Terra", "name_pt_PT": "Escama do Guardião da Terra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193477, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battle-Scarred Scale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 610953, "buy_price": 3054765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0322999954223633, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 6, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Battle-Scarred Scale", "name_ko_KR": "전쟁의 흉터가 남은 비늘", "name_fr_FR": "Écaille marquée par le combat", "name_de_DE": "Kampferprobte Schuppe", "name_zh_CN": "战痕之鳞", "name_es_ES": "Escama dañada en batalla", "name_ru_RU": "Чешуйка со следами ран", "name_it_IT": "Scaglia Sfregiata dalla Battaglia", "name_pt_PT": "Escama com Cicatrizes de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193568, "race_mask": 18446744073709551615, "desc": "Sharp enough to cut chance. Balanced enough to cause life or death.", "pad2": "", "pad1": "", "pad0": "", "name": "Engraved Spearhead", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 505527, "buy_price": 2527636, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024999976158142, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Engraved Spearhead", "name_ko_KR": "각인된 창머리", "name_fr_FR": "Fer de lance gravé", "name_de_DE": "Gravierte Speerspitze", "name_zh_CN": "铭刻矛头", "name_es_ES": "Punta de lanza grabada", "name_ru_RU": "Гравированный наконечник копья", "name_it_IT": "Punta di Lancia Incisa", "name_pt_PT": "Ponta de Lança Gravada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193628, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Unstable Power", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9510999917984009, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Tome of Unstable Power", "name_ko_KR": "불안정한 마력의 고서", "name_fr_FR": "Tome de pouvoir instable", "name_de_DE": "Foliant der instabilen Macht", "name_zh_CN": "无常能量魔典", "name_es_ES": "Tomo de poder inestable", "name_ru_RU": "Фолиант ускользающего могущества", "name_it_IT": "Tomo del Potere Instabile", "name_pt_PT": "Tomo de Poder Instável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burgeoning Seed", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 544758, "buy_price": 2723794, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Burgeoning Seed", "name_ko_KR": "급성장의 씨앗", "name_fr_FR": "Graine bourgeonnante", "name_de_DE": "Keimender Samen", "name_zh_CN": "元气之种", "name_es_ES": "Semilla floreciente", "name_ru_RU": "Прорастающее семя", "name_it_IT": "Seme Germogliante", "name_pt_PT": "Semente Florescente", "on_use": true, "id_encounter": 2492, "id_journal_instance": 1203, "id_map": 2515, "instance_type": 1}, {"id": 193639, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Umbrelskul's Fractured Heart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499540, "buy_price": 2497703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Umbrelskul's Fractured Heart", "name_ko_KR": "엄브렐스컬의 조각난 심장", "name_fr_FR": "Cœur fracturé de Krânombrel", "name_de_DE": "Umbrelskuls gebrochenes Herz", "name_zh_CN": "安布雷斯库的破裂之心", "name_es_ES": "Corazón fracturado de Umbracráneo", "name_ru_RU": "Расколотое сердце Мраскула", "name_it_IT": "Cuore Spezzato di Umbrelskul", "name_pt_PT": "Coração Fraturado de Umbracrânio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193652, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Treemouth's Festering Splinter", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540560, "buy_price": 2702801, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Treemouth's Festering Splinter", "name_ko_KR": "나무아귀의 썩어가는 가시", "name_fr_FR": "Esquille purulente d’Arbec", "name_de_DE": "Baummauls eitriger Splitter", "name_zh_CN": "树口的溃烂裂木", "name_es_ES": "Astilla degenerativa de Bocaárbol", "name_ru_RU": "Гниющая щепка Древорта", "name_it_IT": "Scheggia Putrescente di Ramobocca", "name_pt_PT": "Farpa Purulenta do Boca-de-árvore", "on_use": true, "id_encounter": 2473, "id_journal_instance": 1196, "id_map": 2520, "instance_type": 1}, {"id": 193660, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of Pure Decay", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 501304, "buy_price": 2506520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9950000047683716, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Idol of Pure Decay", "name_ko_KR": "순수한 부패의 우상", "name_fr_FR": "Idole de putréfaction pure", "name_de_DE": "Götze des reinen Verfalls", "name_zh_CN": "纯净腐朽神像", "name_es_ES": "Ídolo de descomposición pura", "name_ru_RU": "Идол чистого разложения", "name_it_IT": "Idolo del Decadimento Puro", "name_pt_PT": "Ídolo da Decomposição Pura", "on_use": false, "id_encounter": 2474, "id_journal_instance": 1196, "id_map": 2520, "instance_type": 1}, {"id": 193672, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzying Signoll Flare", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540504, "buy_price": 2702521, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Frenzying Signoll Flare", "name_ko_KR": "광란의 놀신호탄", "name_fr_FR": "Fusée gnolle frénétique", "name_de_DE": "Aufwiegelndes Signollfeuer", "name_zh_CN": "狂乱豺明弹", "name_es_ES": "Bengala gnoll de frenesí", "name_ru_RU": "Мобилизующая сигнальная вспышка", "name_it_IT": "Bengala di Segnollazione", "name_pt_PT": "Archote de Signoll Frenético", "on_use": false, "id_encounter": 2471, "id_journal_instance": 1196, "id_map": 2520, "instance_type": 1}, {"id": 193677, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Furious Ragefeather", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 509062, "buy_price": 2545314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104000568389893, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Furious Ragefeather", "name_ko_KR": "분노한 성난깃털", "name_fr_FR": "Rageplume furieuse", "name_de_DE": "Wilde Rachfeder", "name_zh_CN": "癫狂怒羽", "name_es_ES": "Plumira furioso", "name_ru_RU": "Яростное перо", "name_it_IT": "Piumadura Furioso", "name_pt_PT": "Penabrava Furiosa", "on_use": false, "id_encounter": 2478, "id_journal_instance": 1198, "id_map": 2516, "instance_type": 1}, {"id": 193678, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Miniature Singing Stone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 567655, "buy_price": 2838277, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Miniature Singing Stone", "name_ko_KR": "초소형 노래하는 돌", "name_fr_FR": "Pierre chantante miniature", "name_de_DE": "Singender Stein als Miniatur", "name_zh_CN": "小型鸣歌之石", "name_es_ES": "Piedra cantarina en miniatura", "name_ru_RU": "Миниатюрный поющий камень", "name_it_IT": "Pietra Risonante in Miniatura", "name_pt_PT": "Pedra Canora em Miniatura", "on_use": true, "id_encounter": 2478, "id_journal_instance": 1198, "id_map": 2516, "instance_type": 1}, {"id": 193679, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of Trampling Hooves", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 569726, "buy_price": 2848633, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017699956893921, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Idol of Trampling Hooves", "name_ko_KR": "짓밟는 발굽의 우상", "name_fr_FR": "Idole de piaffement", "name_de_DE": "Götze der trampelnden Hufe", "name_zh_CN": "踏敌铁蹄人偶", "name_es_ES": "Ídolo de pezuñas pisoteadoras", "name_ru_RU": "Идол топчущих копыт", "name_it_IT": "Idolo degli Zoccoli Calpestanti", "name_pt_PT": "Ídolo dos Cascos Atropelantes", "on_use": false, "id_encounter": 2478, "id_journal_instance": 1198, "id_map": 2516, "instance_type": 1}, {"id": 193689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Granyth's Enduring Scale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 534234, "buy_price": 2671171, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Granyth's Enduring Scale", "name_ko_KR": "그라니스의 인내하는 비늘", "name_fr_FR": "Écaille durable de Granyth", "name_de_DE": "Granyths robuste Schuppe", "name_zh_CN": "格拉尼斯的劲久之鳞", "name_es_ES": "Escama duradera de Granyth", "name_ru_RU": "Прочная чешуйка Гранита", "name_it_IT": "Scaglia Duratura di Granyth", "name_pt_PT": "Escama Perpétua de Granyth", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193697, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottle of Spiraling Winds", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 565528, "buy_price": 2827640, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Bottle of Spiraling Winds", "name_ko_KR": "소용돌이치는 바람의 병", "name_fr_FR": "Bouteille de vents tournoyants", "name_de_DE": "Flasche der Wirbelwinde", "name_zh_CN": "螺旋劲风之瓶", "name_es_ES": "Botella de vientos en espiral", "name_ru_RU": "Бутылка вьющихся вихрей", "name_it_IT": "Bottiglia di Venti a Spirale", "name_pt_PT": "Garrafa de Ventos Espiralantes", "on_use": false, "id_encounter": 2497, "id_journal_instance": 1198, "id_map": 2516, "instance_type": 1}, {"id": 193701, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Algeth'ar Puzzle Box", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 573757, "buy_price": 2868787, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Algeth'ar Puzzle Box", "name_ko_KR": "알게타르 수수께끼 상자", "name_fr_FR": "Boîte à secret d’Algeth’ar", "name_de_DE": "Rätselbox von Algeth'ar", "name_zh_CN": "艾杰斯亚谜题盒", "name_es_ES": "Caja de puzles de Algeth'ar", "name_ru_RU": "Алгет'арская шкатулка с секретом", "name_it_IT": "Scatola Rompicapo di Algeth'ar", "name_pt_PT": "Caixa-enigma de Algeth'ar", "on_use": true, "id_encounter": 2514, "id_journal_instance": 1201, "id_map": 2526, "instance_type": 1}, {"id": 193718, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emerald Coach's Whistle", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 567543, "buy_price": 2837717, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013800024986267, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Emerald Coach's Whistle", "name_ko_KR": "에메랄드 감독의 호루라기", "name_fr_FR": "Sifflet d’entraînement d’émeraude", "name_de_DE": "Pfeife des Smaragdtrainers", "name_zh_CN": "翡翠教练的哨子", "name_es_ES": "Silbato de entrenador esmeralda", "name_ru_RU": "Свисток изумрудного тренера", "name_it_IT": "Fischietto dell'Allenatore di Smeraldo", "name_pt_PT": "Apito de Treinador Esmeralda", "on_use": true, "id_encounter": 2495, "id_journal_instance": 1201, "id_map": 2526, "instance_type": 1}, {"id": 193719, "race_mask": 18446744073709551615, "desc": "Here at Algeth'ar Academy, we bring nothing but our A-game.", "pad2": "", "pad1": "", "pad0": "", "name": "Dragon Games Equipment", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 569558, "buy_price": 2847794, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0174000263214111, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Dragon Games Equipment", "name_ko_KR": "용 경기 장비", "name_fr_FR": "Équipement des jeux draconiques", "name_de_DE": "Ausrüstung der Drachenspiele", "name_zh_CN": "巨龙竞技装备", "name_es_ES": "Equipamiento de los juegos dragónicos", "name_ru_RU": "Снаряжение для драконьего спорта", "name_it_IT": "Equipaggiamento da Gioco delle Isole dei Draghi", "name_pt_PT": "Equipamento de Jogos Dragônicos", "on_use": true, "id_encounter": 2495, "id_journal_instance": 1201, "id_map": 2526, "instance_type": 1}, {"id": 193732, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Globe of Jagged Ice", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555115, "buy_price": 2775577, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991599977016449, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Globe of Jagged Ice", "name_ko_KR": "뾰족한 얼음 구체", "name_fr_FR": "Globe de glace tranchante", "name_de_DE": "Kugel aus gezacktem Eis", "name_zh_CN": "锯齿寒冰之球", "name_es_ES": "Globo de hielo dentado", "name_ru_RU": "Шар зубчатого льда", "name_it_IT": "Globo di Ghiaccio Scheggiato", "name_pt_PT": "Globo de Gelo Serrilhado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193736, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Water's Beating Heart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 563344, "buy_price": 2816724, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0062999725341797, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Water's Beating Heart", "name_ko_KR": "맥동하는 물의 심장", "name_fr_FR": "Cœur d’eau palpitant", "name_de_DE": "Schlagendes Herz des Wassers", "name_zh_CN": "流水脉动之心", "name_es_ES": "Corazón palpitante del agua", "name_ru_RU": "Бьющееся сердце воды", "name_it_IT": "Cuore Pulsante dell'Acqua", "name_pt_PT": "Coração Pulsante de Água", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193743, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Irideus Fragment", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536529, "buy_price": 2682648, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9584000110626221, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Irideus Fragment", "name_ko_KR": "이리데우스의 파편", "name_fr_FR": "Fragment d’Iridéus", "name_de_DE": "Irideusfragment", "name_zh_CN": "伊里度斯的碎片", "name_es_ES": "Fragmento de Irideus", "name_ru_RU": "Фрагмент Иридия", "name_it_IT": "Frammento di Irideus", "name_pt_PT": "Fragmento de Irideus", "on_use": true, "id_encounter": 2504, "id_journal_instance": 1204, "id_map": 2527, "instance_type": 1}, {"id": 193748, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kyrakka's Searing Embers", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 546830, "buy_price": 2734151, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768000245094299, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Kyrakka's Searing Embers", "name_ko_KR": "카이락카의 불타는 잿불", "name_fr_FR": "Braises ardentes de Kyrakka", "name_de_DE": "Kyrakkas sengende Glut", "name_zh_CN": "基拉卡的灼热余烬", "name_es_ES": "Ascuas abrasadoras de Kyrakka", "name_ru_RU": "Раскаленные угли Киракки", "name_it_IT": "Braci Roventi di Kyrakka", "name_pt_PT": "Brasas Calcinantes de Kyrakka", "on_use": false, "id_encounter": 2503, "id_journal_instance": 1202, "id_map": 2521, "instance_type": 1}, {"id": 193757, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruby Whelp Shell", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 580139, "buy_price": 2900696, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362999439239502, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Ruby Whelp Shell", "name_ko_KR": "루비 새끼용 알껍질", "name_fr_FR": "Coquille de Dragonnet rubis", "name_de_DE": "Rubinwelpenpanzer", "name_zh_CN": "红玉雏龙蛋壳", "name_es_ES": "Caparazón de vástago rubí", "name_ru_RU": "Пластина рубинового дракончика", "name_it_IT": "Guscio di Draghetto di Rubino", "name_pt_PT": "Casca de Dragonete Rubi", "on_use": true, "id_encounter": 2488, "id_journal_instance": 1202, "id_map": 2521, "instance_type": 1}, {"id": 193762, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blazebinder's Hoof", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 534402, "buy_price": 2672011, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545999765396118, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Blazebinder's Hoof", "name_ko_KR": "불길결속자의 발굽", "name_fr_FR": "Sabot braselié", "name_de_DE": "Huf des Flammenbinders", "name_zh_CN": "缚炎者之蹄", "name_es_ES": "Pezuña de vinculador de las llamas", "name_ru_RU": "Копыто владыки пламени", "name_it_IT": "Zoccolo dell'Adepto del Fuoco", "name_pt_PT": "Casco de Ataflamas", "on_use": true, "id_encounter": 2485, "id_journal_instance": 1202, "id_map": 2521, "instance_type": 1}, {"id": 193769, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Erupting Spear Fragment", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 493897, "buy_price": 2469489, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9803000092506409, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Erupting Spear Fragment", "name_ko_KR": "분출하는 창 파편", "name_fr_FR": "Fragment de lance éruptive", "name_de_DE": "Explodierendes Speerfragment", "name_zh_CN": "爆发长矛裂片", "name_es_ES": "Fragmento de lanza en erupción", "name_ru_RU": "Взрывающийся фрагмент копья", "name_it_IT": "Frammento di Lancia Dirompente", "name_pt_PT": "Fragmento da Lança em Erupção", "on_use": true, "id_encounter": 2490, "id_journal_instance": 1199, "id_map": 2519, "instance_type": 1}, {"id": 193773, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spoils of Neltharus", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 571854, "buy_price": 2859270, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0214999914169312, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Spoils of Neltharus", "name_ko_KR": "넬타루스의 전리품", "name_fr_FR": "Butin de Neltharus", "name_de_DE": "Schätze von Neltharus", "name_zh_CN": "奈萨鲁斯战利品", "name_es_ES": "Botín de Neltharus", "name_ru_RU": "Добыча Нелтария", "name_it_IT": "Spoglie di Neltharus", "name_pt_PT": "Espólios de Neltharus", "on_use": true, "id_encounter": 2501, "id_journal_instance": 1199, "id_map": 2519, "instance_type": 1}, {"id": 193786, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mutated Magmammoth Scale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542575, "buy_price": 2712878, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692000150680542, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Mutated Magmammoth Scale", "name_ko_KR": "돌연변이 용암 매머드 비늘", "name_fr_FR": "Écaille de magmammouth muté", "name_de_DE": "Mutierte Magmammutschuppe", "name_zh_CN": "变异的岩浆猛犸鳞片", "name_es_ES": "Escama de magmamut mutada", "name_ru_RU": "Чешуйка мутировавшего магмамонта", "name_it_IT": "Scaglia di Magmammut Mutato", "name_pt_PT": "Escama de Magmamute Mutante", "on_use": false, "id_encounter": 2494, "id_journal_instance": 1199, "id_map": 2519, "instance_type": 1}, {"id": 193791, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time-Breaching Talon", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 510876, "buy_price": 2554383, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Time-Breaching Talon", "name_ko_KR": "시간 침투의 갈퀴발톱", "name_fr_FR": "Serre brèche-temps", "name_de_DE": "Zeitdurchdringende Kralle", "name_zh_CN": "时光破缺之爪", "name_es_ES": "Garfa perforatiempo", "name_ru_RU": "Пробивающий время коготь", "name_it_IT": "Artiglio Squarciatempo", "name_pt_PT": "Garra Transgressora do Tempo", "on_use": true, "id_encounter": 2479, "id_journal_instance": 1197, "id_map": 2451, "instance_type": 1}, {"id": 193805, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Resonator", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555283, "buy_price": 2776417, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Inexorable Resonator", "name_ko_KR": "거침없는 공명기", "name_fr_FR": "Résonateur inexorable", "name_de_DE": "Unerbittlicher Schwinger", "name_zh_CN": "不屈共鸣器", "name_es_ES": "Resonador inexorable", "name_ru_RU": "Беспощадный резонатор", "name_it_IT": "Risonatore Inesorabile", "name_pt_PT": "Ressonador Inexorável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193815, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Homeland Raid Horn", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 575828, "buy_price": 2879144, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Homeland Raid Horn", "name_ko_KR": "고향 습격의 뿔피리", "name_fr_FR": "Cor de raid du pays", "name_de_DE": "Schlachthorn des Heimatlandes", "name_zh_CN": "家园劫掠号角", "name_es_ES": "Cuerno de banda del hogar", "name_ru_RU": "Боевой рог родной земли", "name_it_IT": "Corno d'Incursione della Patria", "name_pt_PT": "Chifre de Raide da Terra Natal", "on_use": true, "id_encounter": 2475, "id_journal_instance": 1197, "id_map": 2451, "instance_type": 1}, {"id": 193914, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crystalline Lapis", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 509211, "buy_price": 2546059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506999850273132, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 216, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Crystalline Lapis", "name_ko_KR": "수정 청금석", "name_fr_FR": "Lapis cristallin", "name_de_DE": "Kristalliner Lapis", "name_zh_CN": "水晶矶", "name_es_ES": "Lapislázuli cristalino", "name_ru_RU": "Кристаллический лазурит", "name_it_IT": "Lapis Cristallino", "name_pt_PT": "Lápis Cristalino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194299, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Decoration of Flame", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 737248, "buy_price": 3686243, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 389, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 6, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Decoration of Flame", "name_ko_KR": "화염의 장식", "name_fr_FR": "Insigne des flammes", "name_de_DE": "Flammendekoration", "name_zh_CN": "烈焰彩饰", "name_es_ES": "Decoración de llama", "name_ru_RU": "Украшение пламени", "name_it_IT": "Decorazione di Fiamma", "name_pt_PT": "Enfeite de Chama", "on_use": true, "id_encounter": 2480, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Conjured Chillglobe", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 739979, "buy_price": 3699897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 389, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Conjured Chillglobe", "name_ko_KR": "창조된 혹한구", "name_fr_FR": "Frimasphère invoquée", "name_de_DE": "Herbeigezauberte Frostkugel", "name_zh_CN": "咒启寒球", "name_es_ES": "Globohelado conjurado", "name_ru_RU": "Чародейская леденящая сфера", "name_it_IT": "Globo di Gelo Evocato", "name_pt_PT": "Globofrio Conjurado", "on_use": true, "id_encounter": 2486, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whispering Incarnate Icon", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 745611, "buy_price": 3728057, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0062999725341797, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 395, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Whispering Incarnate Icon", "name_ko_KR": "속삭이는 현신의 징표", "name_fr_FR": "Icône d’Incarnation murmurante", "name_de_DE": "Flüsterndes Symbol der Inkarnation", "name_zh_CN": "低语化身圣像", "name_es_ES": "Icono de Encarnación susurrante", "name_ru_RU": "Знак воплощения шепота", "name_it_IT": "Icona dell'Incarnazione Sussurrante", "name_pt_PT": "Ícone Encarnado Sussurrante", "on_use": false, "id_encounter": 2486, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Storm-Eater's Boon", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 748353, "buy_price": 3741765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0099999904632568, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 395, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Storm-Eater's Boon", "name_ko_KR": "폭풍포식자의 은혜", "name_fr_FR": "Faveur de la Mange-tempêtes", "name_de_DE": "Segen der Sturmfresserin", "name_zh_CN": "噬雷之龙的恩赐", "name_es_ES": "Favor de la Devoradora de Tormentas", "name_ru_RU": "Благословение Пожирательницы Бурь", "name_it_IT": "Dono della Mangiatempeste", "name_pt_PT": "Dom da Devoradora de Tempestade", "on_use": true, "id_encounter": 2502, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rumbling Ruby", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 748098, "buy_price": 3740491, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 389, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Rumbling Ruby", "name_ko_KR": "전율하는 루비", "name_fr_FR": "Rubis grondant", "name_de_DE": "Rasselnder Rubin", "name_zh_CN": "轰鸣红玉", "name_es_ES": "Rubí resonante", "name_ru_RU": "Рокочущий рубин", "name_it_IT": "Rubino Tremante", "name_pt_PT": "Rubi Tonitruante", "on_use": false, "id_encounter": 2500, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iceblood Deathsnare", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 770387, "buy_price": 3851938, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0437999963760376, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 389, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Iceblood Deathsnare", "name_ko_KR": "얼음피 죽음덫", "name_fr_FR": "Piège mortel sang-de-glace", "name_de_DE": "Eisbluttodesfessel", "name_zh_CN": "冰血陨网", "name_es_ES": "Sangrehielo frenamuerte", "name_ru_RU": "Смертельные силки ледяной крови", "name_it_IT": "Trappola Mortale di Brinarossa", "name_pt_PT": "Ardil da Morte de Sanguefrio", "on_use": true, "id_encounter": 2482, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Controlled Current Technique", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 776138, "buy_price": 3880692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0475000143051147, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 395, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Controlled Current Technique", "name_ko_KR": "전류 제어의 기술", "name_fr_FR": "Technique de contrôle des courants", "name_de_DE": "Kontrollierte Strömungstechnik", "name_zh_CN": "驭电之术", "name_es_ES": "Técnica de corriente controlada", "name_ru_RU": "Техника направленных течений", "name_it_IT": "Tecnica della Corrente Controllata", "name_pt_PT": "Técnica Atual Controlada", "on_use": false, "id_encounter": 2491, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "All-Totem of the Master", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 704637, "buy_price": 3523186, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509999752044678, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 395, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "All-Totem of the Master", "name_ko_KR": "대가의 만물 토템", "name_fr_FR": "Maint-totem magistral", "name_de_DE": "Alltotem des Meisters", "name_zh_CN": "大师的万物图腾", "name_es_ES": "Tótem multiusos del maestro", "name_ru_RU": "Всемогущий тотем повелителя", "name_it_IT": "Totem Totale del Maestro", "name_pt_PT": "Totem Total do Mestre", "on_use": false, "id_encounter": 2491, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Broodkeeper's Promise", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 708759, "buy_price": 3543796, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9546999931335449, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Broodkeeper's Promise", "name_ko_KR": "혈족지기의 약속", "name_fr_FR": "Promesse de la garde-couvée", "name_de_DE": "Versprechen der Bruthüterin", "name_zh_CN": "巢穴守护者的诺言", "name_es_ES": "Promesa de la vigilante de linaje", "name_ru_RU": "Обещание хранительницы стаи", "name_it_IT": "Promessa della Custode della Progenie", "name_pt_PT": "Promessa da Guarda-prole", "on_use": true, "id_encounter": 2493, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Manic Grieftorch", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 711506, "buy_price": 3557531, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9584000110626221, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Manic Grieftorch", "name_ko_KR": "광기 어린 회한의 횃불", "name_fr_FR": "Morneflamme psychotique", "name_de_DE": "Manische Trauerfackel", "name_zh_CN": "癫狂伤逝火炬", "name_es_ES": "Penarígneo demente", "name_ru_RU": "Одержимый светоч горя", "name_it_IT": "Fiocaluce Frenetica", "name_pt_PT": "Tocha Fúnebre Maníaca", "on_use": true, "id_encounter": 2493, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spiteful Storm", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 714253, "buy_price": 3571265, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621000289916992, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Spiteful Storm", "name_ko_KR": "원한에 찬 폭풍", "name_fr_FR": "Tempête malveillante", "name_de_DE": "Boshafter Sturm", "name_zh_CN": "怨恨风暴", "name_es_ES": "Tormenta rencorosa", "name_ru_RU": "Злопамятный вихрь", "name_it_IT": "Tempesta Adirata", "name_pt_PT": "Tempestade Detestável", "on_use": false, "id_encounter": 2499, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Desperate Invoker's Codex", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 716925, "buy_price": 3584628, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9657000303268433, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Desperate Invoker's Codex", "name_ko_KR": "절박한 기원사의 전서", "name_fr_FR": "Codex d’invocation désespérée", "name_de_DE": "Kodex des verzweifelten Herbeirufers", "name_zh_CN": "渴念祷言者的法典", "name_es_ES": "Códice de invocador desesperado", "name_ru_RU": "Кодекс отчаявшегося заклинателя", "name_it_IT": "Codice dell'Invocatore Disperato", "name_pt_PT": "Códice do Invocador Desesperado", "on_use": true, "id_encounter": 2499, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194333, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ekrazathal's Colored Fang", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 523084, "buy_price": 2615422, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 216, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Ekrazathal's Colored Fang", "name_ko_KR": "에크라자탈의 색에 물든 송곳니", "name_fr_FR": "Croc coloré d’Ekrazathal", "name_de_DE": "Ekrazathals bunter Reißzahn", "name_zh_CN": "艾克拉扎泰的着色獠牙", "name_es_ES": "Colmillo de colores de Ekrazathal", "name_ru_RU": "Окрашенный клык Экразатала", "name_it_IT": "Zanna Colorata di Ekrazathal", "name_pt_PT": "Presa Colorida de Ekrazathal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194368, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Worldbreaker's Charm", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 410497, "buy_price": 2052486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Worldbreaker's Charm", "name_ko_KR": "세계파괴자의 부적", "name_fr_FR": "Charme de brise-monde", "name_de_DE": "Talisman des Weltenbrechers", "name_zh_CN": "灭世者护符", "name_es_ES": "Encantamiento de rompemundos", "name_ru_RU": "Амулет разрушителей миров", "name_it_IT": "Talismano del Devastamondi", "name_pt_PT": "Patuá do Quebramundo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194399, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lifegift Ruby", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 410497, "buy_price": 2052486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Lifegift Ruby", "name_ko_KR": "생명의 선물 루비", "name_fr_FR": "Rubis du don de vie", "name_de_DE": "Lebensgaberubin", "name_zh_CN": "生命赐福红玉", "name_es_ES": "Rubí regalavida", "name_ru_RU": "Рубин дара жизни", "name_it_IT": "Rubino Portavita", "name_pt_PT": "Rubi do Dom da Vida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194416, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan Lightning Generator", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 471473, "buy_price": 2357367, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0400999784469604, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Titan Lightning Generator", "name_ko_KR": "티탄 번개 생성기", "name_fr_FR": "Générateur d’éclairs titanesques", "name_de_DE": "Titanenblitzgenerator", "name_zh_CN": "泰坦闪电发生器", "name_es_ES": "Generador de relámpagos de titán", "name_ru_RU": "Генератор молний титанов", "name_it_IT": "Generatore di Fulmini Titanico", "name_pt_PT": "Gerador de Raios Titânico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Claw-Carved Figurine", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0475000143051147, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 4096, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Claw-Carved Figurine", "name_ko_KR": "발톱에 긁힌 조각상", "name_fr_FR": "Figurine taillée à coups de griffes", "name_de_DE": "Klauengeschnitzte Figur", "name_zh_CN": "爪刻雕像", "name_es_ES": "Figura tallada con garras", "name_ru_RU": "Вырезанная когтями фигурка", "name_it_IT": "Statuetta Intagliata con Artigli", "name_pt_PT": "Estatueta Entalhada à Garra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194532, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blue Winglord's Insignia", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509999752044678, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 4096, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Blue Winglord's Insignia", "name_ko_KR": "푸른 날개군주의 인장", "name_fr_FR": "Insigne d’altesse-ailée bleue", "name_de_DE": "Blaue Insigne des Schwingenfürsten", "name_zh_CN": "蓝龙翼尉徽章", "name_es_ES": "Insignia del señor alado azul", "name_ru_RU": "Синий знак крылатого властелина", "name_it_IT": "Fregio del Signore dello Stormo Blu", "name_pt_PT": "Insígnia do Lorde-de-ala Azul", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194872, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck Box: Inferno", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9546999931335449, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 16908288, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck Box: Inferno", "name_ko_KR": "다크문 카드 한 벌 상자: 불지옥", "name_fr_FR": "Boîte de suite de Sombrelune : Inferno", "name_de_DE": "Dunkelmondkartensetschachtel: Inferno", "name_zh_CN": "暗月套牌盒:地狱火", "name_es_ES": "Caja de la colección de la Luna Negra: Inferno", "name_ru_RU": "Коробочка с картами Новолуния \"Преисподняя\"", "name_it_IT": "Scatola del Mazzo dell'Inferno di Lunacupa", "name_pt_PT": "Caixa de Baralho de Negraluna: Inferno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 195219, "race_mask": 18446744073709551615, "desc": "A bit of reclaimed red dragonflight magic remains.", "pad2": "", "pad1": "", "pad0": "", "name": "Magmasworn Spearhead", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 3650, "stat_alloc_4": 3350, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 40, "stat_type_4": 32, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9840999841690063, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 314, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Magmasworn Spearhead", "name_ko_KR": "용암서약 창촉", "name_fr_FR": "Fer de lance magmalige", "name_de_DE": "Magmagebundene Speerspitze", "name_zh_CN": "岩浆之誓枪头", "name_es_ES": "Punta de lanza juramagma", "name_ru_RU": "Наконечник копья магмарожденных", "name_it_IT": "Punta di Lancia dei Giuramagma", "name_pt_PT": "Ponta de Lança Devota do Magma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 195220, "race_mask": 18446744073709551615, "desc": "Struck by a bolt of lightning and no longer able to tell time, its power nonetheless lingers.", "pad2": "", "pad1": "", "pad0": "", "name": "Uncanny Pocketwatch", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.014299988746643, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 314, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Uncanny Pocketwatch", "name_ko_KR": "기묘한 회중시계", "name_fr_FR": "Montre de gousset remarquable", "name_de_DE": "Unheimliche Taschenuhr", "name_zh_CN": "离奇怀表", "name_es_ES": "Reloj de bolsillo misterioso", "name_ru_RU": "Жутковатые карманные часы", "name_it_IT": "Orologio da Tasca Prodigioso", "name_pt_PT": "Relógio de Bolso Portentoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 197846, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ohn'ahra's Carving", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 437974, "buy_price": 2189874, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Ohn'ahra's Carving", "name_ko_KR": "온아라의 조각품", "name_fr_FR": "Gravure d’Ohn’ahra", "name_de_DE": "Ohn'ahras Schnitzerei", "name_zh_CN": "欧恩哈拉雕像", "name_es_ES": "Talla de Ohn'ahra", "name_ru_RU": "Резное изображение Он'ары", "name_it_IT": "Incisione di Ohn'ahra", "name_pt_PT": "Entalhe de Ohn'ahra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 197934, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancestral Protector's Stone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0216000080108643, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Ancestral Protector's Stone", "name_ko_KR": "선조 수호자의 돌", "name_fr_FR": "Pierre de protection ancestrale", "name_de_DE": "Schutzstein der Ahnen", "name_zh_CN": "先祖保护者之石", "name_es_ES": "Piedra del protector ancestral", "name_ru_RU": "Камень предка-защитника", "name_it_IT": "Pietra del Protettore Ancestrale", "name_pt_PT": "Pedra do Protetor Ancestral", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 197960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bag of Biscuits", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 439652, "buy_price": 2198260, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Bag of Biscuits", "name_ko_KR": "비스킷 가방", "name_fr_FR": "Sac de biscuits", "name_de_DE": "Beutel mit Keksen", "name_zh_CN": "一袋饼干", "name_es_ES": "Bolsa de galletas", "name_ru_RU": "Мешок с галетами", "name_it_IT": "Sacchetto di Biscotti", "name_pt_PT": "Saco de Biscoitos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198036, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spineripper's Fang", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 533729, "buy_price": 2668645, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Spineripper's Fang", "name_ko_KR": "허리파괴자의 송곳니", "name_fr_FR": "Croc de Brise-Échine", "name_de_DE": "Wirbelreißers Reißzahn", "name_zh_CN": "裂脊者之牙", "name_es_ES": "Colmillo de Rasgaespinazos", "name_ru_RU": "Клык Хребтодерки", "name_it_IT": "Zanna di Strappaschiena", "name_pt_PT": "Presa de Rasga-espinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198037, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brimming Arcanocrystal", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446451, "buy_price": 2232257, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Brimming Arcanocrystal", "name_ko_KR": "충만한 비전수정", "name_fr_FR": "Arcanocristal saturé", "name_de_DE": "Überladener Arkanokristall", "name_zh_CN": "满溢的奥能水晶", "name_es_ES": "Arcanocristal rebosante", "name_ru_RU": "Переполненный чародейский кристалл", "name_it_IT": "Arcanocristallo Vibrante", "name_pt_PT": "Arcanocristal Transbordante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198081, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Caregiver's Charm", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0257999897003174, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Caregiver's Charm", "name_ko_KR": "간병인의 부적", "name_fr_FR": "Charme d’auxiliaire", "name_de_DE": "Amulett des Pflegers", "name_zh_CN": "看护者的护符", "name_es_ES": "Talismán de cuidador", "name_ru_RU": "Амулет пастыря", "name_it_IT": "Talismano dell'Assistente", "name_pt_PT": "Patuá do Cuidador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198086, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Inferno", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0441999435424805, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 131072, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Inferno", "name_ko_KR": "다크문 카드 한 벌: 불지옥", "name_fr_FR": "Suite de Sombrelune : Inferno", "name_de_DE": "Dunkelmondkartenset: Inferno", "name_zh_CN": "暗月套牌:地狱火", "name_es_ES": "Colección de la Luna Negra: Inferno", "name_ru_RU": "Колода карт Новолуния \"Преисподняя\"", "name_it_IT": "Mazzo dell'Inferno di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Inferno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198087, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Rime", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0477999448776245, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 131072, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Rime", "name_ko_KR": "다크문 카드 한 벌: 서리", "name_fr_FR": "Suite de Sombrelune : Frimas", "name_de_DE": "Dunkelmondkartenset: Raureif", "name_zh_CN": "暗月套牌:淞", "name_es_ES": "Colección de la Luna Negra: Helada blanca", "name_ru_RU": "Колода карт Новолуния \"Иней\"", "name_it_IT": "Mazzo della Brina di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Geada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198088, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Dance", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 131072, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Dance", "name_ko_KR": "다크문 카드 한 벌: 춤", "name_fr_FR": "Suite de Sombrelune : Danse", "name_de_DE": "Dunkelmondkartenset: Tanz", "name_zh_CN": "暗月套牌:舞", "name_es_ES": "Colección de la Luna Negra: Danza", "name_ru_RU": "Колода карт Новолуния \"Танец\"", "name_it_IT": "Mazzo della Danza di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Dança Revigorante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198089, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Watcher", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9550999999046326, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 131072, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Watcher", "name_ko_KR": "다크문 카드 한 벌: 감시자", "name_fr_FR": "Suite de Sombrelune : Veille", "name_de_DE": "Dunkelmondkartenset: Behüter", "name_zh_CN": "暗月套牌:看护者", "name_es_ES": "Colección de la Luna Negra: Vigía", "name_ru_RU": "Колода карт Новолуния \"Дозорный\"", "name_it_IT": "Mazzo del Guardiano di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Vigia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198407, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Azure Arcanic Amplifier", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9514999985694885, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Azure Arcanic Amplifier", "name_ko_KR": "하늘빛 비전 증폭기", "name_fr_FR": "Amplificateur arcanique azur", "name_de_DE": "Azurarkanverstärker", "name_zh_CN": "碧蓝奥术增幅器", "name_es_ES": "Amplificador Arcano azur", "name_ru_RU": "Лазурный чародейский усилитель", "name_it_IT": "Amplificatore Arcanico Azzurro", "name_pt_PT": "Amplificador Arcânico Lazúli", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198432, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crude Wind Charm", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 527528, "buy_price": 2637640, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Crude Wind Charm", "name_ko_KR": "조잡한 바람의 부적", "name_fr_FR": "Charme de vent brut", "name_de_DE": "Primitives Windamulett", "name_zh_CN": "粗制柔风护符", "name_es_ES": "Talismán de viento rudimentario", "name_ru_RU": "Грубый оберег ветра", "name_it_IT": "Talismano del Vento Rudimentale", "name_pt_PT": "Patuá do Vento Rudimentar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198451, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lifeflame Ampoule", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Lifeflame Ampoule", "name_ko_KR": "생명불꽃 유리병", "name_fr_FR": "Ampoule de flamme de vie", "name_de_DE": "Lebensflammenampulle", "name_zh_CN": "生命之火安瓿瓶", "name_es_ES": "Ampolleta de llama de vida", "name_ru_RU": "Флакон пламени жизни", "name_it_IT": "Ampolla di Fiamma Vitale", "name_pt_PT": "Ampola de Chama da Vida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198477, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck Box: Rime", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0144000053405762, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 16908288, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck Box: Rime", "name_ko_KR": "다크문 카드 한 벌 상자: 서리", "name_fr_FR": "Boîte de suite de Sombrelune : Frimas", "name_de_DE": "Dunkelmondkartensetschachtel: Raureif", "name_zh_CN": "暗月套牌盒:淞", "name_es_ES": "Caja de la colección de la Luna Negra: Helada blanca", "name_ru_RU": "Коробочка с картами Новолуния \"Иней\"", "name_it_IT": "Scatola del Mazzo della Brina di Lunacupa", "name_pt_PT": "Caixa de Baralho de Negraluna: Geada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198478, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck Box: Dance", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 16908288, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck Box: Dance", "name_ko_KR": "다크문 카드 한 벌 상자: 춤", "name_fr_FR": "Boîte de suite de Sombrelune : Danse", "name_de_DE": "Dunkelmondkartensetschachtel: Tanz", "name_zh_CN": "暗月套牌盒:舞", "name_es_ES": "Caja de la colección de la Luna Negra: Danza", "name_ru_RU": "Коробочка с картами Новолуния \"Танец\"", "name_it_IT": "Scatola del Mazzo della Danza di Lunacupa", "name_pt_PT": "Caixa de Baralho de Negraluna: Dança Revigorante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198481, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck Box: Watcher", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 16908288, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck Box: Watcher", "name_ko_KR": "다크문 카드 한 벌 상자: 감시자", "name_fr_FR": "Boîte de suite de Sombrelune : Veille", "name_de_DE": "Dunkelmondkartensetschachtel: Behüter", "name_zh_CN": "暗月套牌盒:看护者", "name_es_ES": "Caja de la colección de la Luna Negra: Vigía", "name_ru_RU": "Коробочка с картами Новолуния: \"Дозорный\"", "name_it_IT": "Scatola del Mazzo del Guardiano di Lunacupa", "name_pt_PT": "Caixa de Baralho de Negraluna: Vigia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198489, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreamscape Prism", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Dreamscape Prism", "name_ko_KR": "꿈결 분광경", "name_fr_FR": "Prisme du domaine des songes", "name_de_DE": "Traumlandschaftprisma", "name_zh_CN": "梦境之地棱镜", "name_es_ES": "Prisma de paisaje onírico", "name_ru_RU": "Призма сна", "name_it_IT": "Prisma Onirico", "name_pt_PT": "Prisma da Paisagem Onírica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198490, "race_mask": 18446744073709551615, "desc": "Veteran explorers know that a compass is the best way to get out of (and in to) trouble.", "pad2": "", "pad1": "", "pad0": "", "name": "Bushwhacker's Compass", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9884999990463257, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Bushwhacker's Compass", "name_ko_KR": "덤불잠복꾼의 나침반", "name_fr_FR": "Boussole de Papy Broussard", "name_de_DE": "Kompass des Buschräubers", "name_zh_CN": "丛林霸王的罗盘", "name_es_ES": "Brújula de Matagolpe", "name_ru_RU": "Компас первопроходца", "name_it_IT": "Bussola di Sfasciasiepi", "name_pt_PT": "Bússola do Atacamato", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198529, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wayfarer's Iron Torch", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Wayfarer's Iron Torch", "name_ko_KR": "길잡이의 강철 횃불", "name_fr_FR": "Torche de voyage en fer", "name_de_DE": "Eiserne Fackel des Wanderers", "name_zh_CN": "旅行者的钢铁火炬", "name_es_ES": "Antorcha de hierro de caminante", "name_ru_RU": "Железный факел странника", "name_it_IT": "Torcia di Ferro del Vagabondo", "name_pt_PT": "Tocha de Ferro do Viajante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198532, "race_mask": 18446744073709551615, "desc": "What separates a master cartographer from the rest is one thing: precision.", "pad2": "", "pad1": "", "pad0": "", "name": "The Cartographer's Calipers", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "The Cartographer's Calipers", "name_ko_KR": "지도제작자의 지름자", "name_fr_FR": "Compas de cartographe", "name_de_DE": "Die Messschieber des Kartografen", "name_zh_CN": "制图师的卡尺", "name_es_ES": "Calibradores del cartógrafo", "name_ru_RU": "Штангенциркуль картографа", "name_it_IT": "Calibri del Cartografo", "name_pt_PT": "Os Paquímetros do Cartógrafo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198539, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Plains", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0477999448776245, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Breath of the Plains", "name_ko_KR": "평야의 숨결", "name_fr_FR": "Souffle des plaines", "name_de_DE": "Atem der Ebenen", "name_zh_CN": "平原之息", "name_es_ES": "Aliento de las llanuras", "name_ru_RU": "Дыхание равнин", "name_it_IT": "Respiro delle Pianure", "name_pt_PT": "Sopro da Chapada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198542, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shikaari Huntress' Arrowhead", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9587000012397766, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Shikaari Huntress' Arrowhead", "name_ko_KR": "시카르 여사냥꾼의 화살촉", "name_fr_FR": "Pointe de flèche de chasseuse shikaar", "name_de_DE": "Pfeilspitze der Shikaarjägerin", "name_zh_CN": "席卡尔女猎手的箭头", "name_es_ES": "Punta de flecha de cazadora Shikaar", "name_ru_RU": "Наконечник стрелы шикаарской охотницы", "name_it_IT": "Punta di Freccia della Cacciatrice Shikaar", "name_pt_PT": "Ponta de Flecha da Caçadora Shikaari", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198627, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood of the Khansguard", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0296000242233276, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Blood of the Khansguard", "name_ko_KR": "칸수호병의 피", "name_fr_FR": "Sang de la garde du khanat", "name_de_DE": "Blut der Khanswache", "name_zh_CN": "可汗卫队之血", "name_es_ES": "Sangre de la guardia del khan", "name_ru_RU": "Кровь кешиктена", "name_it_IT": "Sangue della Guardia del Khan", "name_pt_PT": "Sangue da Guardakhan", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198695, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottomless Reliquary Satchel", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850000143051147, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Bottomless Reliquary Satchel", "name_ko_KR": "바닥이 없는 성물회 주머니", "name_fr_FR": "Sacoche sans fond du Reliquaire", "name_de_DE": "Endloses Säckchen der Archäologischen Akademie", "name_zh_CN": "无底神圣遗物学会矿物包", "name_es_ES": "Bolsa del Relicario sin fondo", "name_ru_RU": "Бездонный мешок Реликвария", "name_it_IT": "Borsa del Reliquiario Senza Fondo", "name_pt_PT": "Algibeira de Relicário Sem Fundo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199029, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stonewatcher's Toe", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 408163, "buy_price": 2040818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9666000008583069, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Stonewatcher's Toe", "name_ko_KR": "바위감시자의 발가락", "name_fr_FR": "Orteil de guetteur de pierre", "name_de_DE": "Zeh der Steinwache", "name_zh_CN": "岩石看护者的脚趾", "name_es_ES": "Dedo del pie de vigía de piedra", "name_ru_RU": "Мизинец каменного стража", "name_it_IT": "Alluce della Guardia della Pietra", "name_pt_PT": "Dedão do Vigia de Pedra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199030, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stonewatcher's Thumb", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 408163, "buy_price": 2040818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.970300018787384, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Stonewatcher's Thumb", "name_ko_KR": "바위감시자의 엄지", "name_fr_FR": "Pouce de guetteur de pierre", "name_de_DE": "Daumen der Steinwache", "name_zh_CN": "岩石看护者的拇指", "name_es_ES": "Pulgar de vigía de piedra", "name_ru_RU": "Большой палец каменного стража", "name_it_IT": "Pollice della Guardia della Pietra", "name_pt_PT": "Polegar do Vigia de Pedra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199031, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stonewatcher's Eye", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 408163, "buy_price": 2040818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739999771118164, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Stonewatcher's Eye", "name_ko_KR": "바위감시자의 눈", "name_fr_FR": "Œil de guetteur de pierre", "name_de_DE": "Auge der Steinwache", "name_zh_CN": "岩石看护者之眼", "name_es_ES": "Ojo de vigía de piedra", "name_ru_RU": "Глаз каменного стража", "name_it_IT": "Occhio della Guardia della Pietra", "name_pt_PT": "Olho do Vigia de Pedra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199555, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Versatile Storm Lure", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044100046157837, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 252, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Versatile Storm Lure", "name_ko_KR": "다용도 폭풍 미끼", "name_fr_FR": "Appât tempétueux polyvalent", "name_de_DE": "Vielseitiger Sturmköder", "name_zh_CN": "万能风暴诱饵", "name_es_ES": "Cebo de tormenta versátil", "name_ru_RU": "Изменчивая приманка бури", "name_it_IT": "Esca della Tempesta Versatile", "name_pt_PT": "Isca Tempestuosa Versátil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Storm Hunter's Insignia", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0333000421524048, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 252, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Storm Hunter's Insignia", "name_ko_KR": "폭풍 사냥꾼의 인장", "name_fr_FR": "Insigne de chasse-tempêtes", "name_de_DE": "Insigne des Sturmjägers", "name_zh_CN": "风暴猎手的徽记", "name_es_ES": "Insignia de cazador de tormentas", "name_ru_RU": "Знак охотника бури", "name_it_IT": "Fregio del Cacciatore della Tempesta", "name_pt_PT": "Insígnia do Caçador da Tempestade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199686, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Elemental Confluence", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0367000102996826, "flags_1": 134746176, "flags_2": 139264, "flags_3": 512, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2055, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Unstable Elemental Confluence", "name_ko_KR": "불안정한 정령 동화체", "name_fr_FR": "Confluence élémentaire instable", "name_de_DE": "Instabiler Elementarzusammenfluss", "name_zh_CN": "不稳定的元素汇流", "name_es_ES": "Confluencia elemental inestable", "name_ru_RU": "Нестабильное слияние стихий", "name_it_IT": "Confluenza Elementale Instabile", "name_pt_PT": "Confluência Elemental Instável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Razorwind Talisman", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 451929, "buy_price": 2259648, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739999771118164, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Razorwind Talisman", "name_ko_KR": "칼끝바람 부적", "name_fr_FR": "Talisman de Tranchevent", "name_de_DE": "Klingenschluchttalisman", "name_zh_CN": "烈风护符", "name_es_ES": "Talismán del Ventajo", "name_ru_RU": "Талисман режущего ветра", "name_it_IT": "Talismano Fendivento", "name_pt_PT": "Talismã de Vento Cortante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200217, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blazing Essence", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 4444, "stat_alloc_3": 2222, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 36, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 517512, "buy_price": 2587562, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Blazing Essence", "name_ko_KR": "이글거리는 정수", "name_fr_FR": "Essence embrasée", "name_de_DE": "Brennende Essenz", "name_zh_CN": "燃焰精华", "name_es_ES": "Esencia llameante", "name_ru_RU": "Горящая сущность", "name_it_IT": "Essenza Fiammeggiante", "name_pt_PT": "Essência Fulgurante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200236, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Memory of Nulltheria", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 529763, "buy_price": 2648818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9815999865531921, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Memory of Nulltheria", "name_ko_KR": "눌테리아의 기억", "name_fr_FR": "Souvenir de Néanthéria", "name_de_DE": "Erinnerung an Nulltheria", "name_zh_CN": "娜尔瑟莉亚的回忆", "name_es_ES": "Recuerdo de Nulltheria", "name_ru_RU": "Воспоминание о Нултерии", "name_it_IT": "Ricordo di Nulltheria", "name_pt_PT": "Lembrança de Nulltheria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200536, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tamed Eagle", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 517566, "buy_price": 2587832, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Tamed Eagle", "name_ko_KR": "길들인 독수리", "name_fr_FR": "Aigle apprivoisé", "name_de_DE": "Gezähmter Adler", "name_zh_CN": "驯服之鹰", "name_es_ES": "Águila domada", "name_ru_RU": "Прирученный орел", "name_it_IT": "Aquila Addomesticata", "name_pt_PT": "Águia Domada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200542, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breezy Companion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 543741, "buy_price": 2718708, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0075000524520874, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Breezy Companion", "name_ko_KR": "동반의 산들바람", "name_fr_FR": "Compagnon venteux", "name_de_DE": "Windiger Begleiter", "name_zh_CN": "轻风伙伴", "name_es_ES": "Compañero airoso", "name_ru_RU": "Ветреный спутник", "name_it_IT": "Compagno Ventoso", "name_pt_PT": "Mascote Jovial", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200549, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Restored Titan Artifact", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 557611, "buy_price": 2788059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0332000255584717, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Restored Titan Artifact", "name_ko_KR": "복원된 티탄 유물", "name_fr_FR": "Artéfact des Titans restauré", "name_de_DE": "Restauriertes Titanenartefakt", "name_zh_CN": "修复的泰坦神器", "name_es_ES": "Artefacto titánico restaurado", "name_ru_RU": "Восстановленный артефакт титанов", "name_it_IT": "Manufatto dei Titani Restaurato", "name_pt_PT": "Artefato Titânico Recuperado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200552, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Torrent Caller's Shell", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 563602, "buy_price": 2818012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0442999601364136, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Torrent Caller's Shell", "name_ko_KR": "격류 소환사의 껍질", "name_fr_FR": "Coquille de mande-torrent", "name_de_DE": "Hülle des Schwallrufers", "name_zh_CN": "洪流呼唤者之壳", "name_es_ES": "Caparazón de invocador de torrentes", "name_ru_RU": "Раковина призывателя ливней", "name_it_IT": "Guscio dell'Invocatore del Torrente", "name_pt_PT": "Casco do Evocador da Torrente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200563, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Ritual Shell", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545684, "buy_price": 2728423, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0111000537872314, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Primal Ritual Shell", "name_ko_KR": "원시 의식 껍질", "name_fr_FR": "Carapace rituelle primordiale", "name_de_DE": "Urzeitliche Ritualmuschel", "name_zh_CN": "原始仪式甲壳", "name_es_ES": "Caparazón de ritual primigenio", "name_ru_RU": "Панцирь для изначального ритуала", "name_it_IT": "Guscio Rituale Primordiale", "name_pt_PT": "Casco de Ritual Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200673, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beogoka's Tooth and Claw", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539748, "buy_price": 2698740, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000100016593933, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Beogoka's Tooth and Claw", "name_ko_KR": "비오고카의 이빨과 발톱", "name_fr_FR": "Griffes et crocs de Béogoka", "name_de_DE": "Beogokas Klauen und Zähne", "name_zh_CN": "贝欧戈卡的尖牙与利爪", "name_es_ES": "Garras y dientes de Beogoka", "name_ru_RU": "Зуб и коготь Беогоки", "name_it_IT": "Unghie e Denti di Beogoka", "name_pt_PT": "Unhas e Dentes de Beogoka", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200676, "race_mask": 18446744073709551615, "desc": "It's still sparking. What could go wrong?", "pad2": "", "pad1": "", "pad0": "", "name": "Static-Charged Scale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 746253, "buy_price": 3731265, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0111000537872314, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 389, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Static-Charged Scale", "name_ko_KR": "정전기로 충만해진 비늘", "name_fr_FR": "Écaille chargée d’électricité statique", "name_de_DE": "Statisch aufgeladene Schuppe", "name_zh_CN": "静电充能之鳞", "name_es_ES": "Escama cargada con electricidad estática", "name_ru_RU": "Наэлектризованная чешуйка", "name_it_IT": "Scaglia Caricata Staticamente", "name_pt_PT": "Escama Carregada de Estática", "on_use": false, "id_encounter": 2515, "id_journal_instance": 1205, "id_map": 2574, "instance_type": 2}, {"id": 200679, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Somnikus's Shade", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 551621, "buy_price": 2758106, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Essence of Somnikus's Shade", "name_ko_KR": "솜니쿠스의 그림자 정수", "name_fr_FR": "Essence d’ombre de Somnikus", "name_de_DE": "Essenz des Schattens von Somnikus", "name_zh_CN": "索姆尼库斯阴影精华", "name_es_ES": "Esencia de la sombra de Somnikus", "name_ru_RU": "Сущность тени Сомникуса", "name_it_IT": "Essenza dell'Ombra di Somnikus", "name_pt_PT": "Vulto da Essência de Somnikus", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200735, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magically Magical Faerie Flower", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 557773, "buy_price": 2788868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Magically Magical Faerie Flower", "name_ko_KR": "요사스러운 마법 페어리 꽃", "name_fr_FR": "Fleur féerique enchantée par magie", "name_de_DE": "Auf magische Weise magische Feenblume", "name_zh_CN": "神奇的魔法妖精之花", "name_es_ES": "Flor mágica de hada", "name_ru_RU": "По-волшебному волшебный цветок фей", "name_it_IT": "Fiore Fatato Magicamente Incantato", "name_pt_PT": "Flor de Fada Magicamente Mágica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200741, "race_mask": 18446744073709551615, "desc": "A.K.A. The P.P.P.P.", "pad2": "", "pad1": "", "pad0": "", "name": "Pipspark's Prestigious Pendant of Protection", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 515623, "buy_price": 2578118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Pipspark's Prestigious Pendant of Protection", "name_ko_KR": "핍스파크의 명예로운 방어의 펜던트", "name_fr_FR": "Pendentif prestigieux de protection de Prestéclat", "name_de_DE": "Pipfunkes pfiffiges Pendant der Protektion", "name_zh_CN": "皮普斯巴克的显赫守护吊坠", "name_es_ES": "Colgante de custodia célebre de Chisparaz", "name_ru_RU": "Престижная подвеска истины Искрописка", "name_it_IT": "Pendente Prestigioso della Protezione di Sbrillpip", "name_pt_PT": "Pingente Prestigioso de Proteção de Chispipo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200755, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gruffy's Dented Horn", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 557719, "buy_price": 2788599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.033400058746338, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Gruffy's Dented Horn", "name_ko_KR": "걸걸이의 구부러진 뿔", "name_fr_FR": "Corne abîmée de Bêla", "name_de_DE": "Schroffis verbeultes Horn", "name_zh_CN": "格鲁菲的凹陷之角", "name_es_ES": "Cuerno mellado de Indomable", "name_ru_RU": "Сколотый рог Брыкуна", "name_it_IT": "Corno Ammaccato di Gruffy", "name_pt_PT": "Chifre Serrilhado de Grufoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200760, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Arcane Cell", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 513572, "buy_price": 2567864, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9516000151634216, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unstable Arcane Cell", "name_ko_KR": "불안정한 비전 전지", "name_fr_FR": "Cellule arcanique instable", "name_de_DE": "Instabile arkane Zelle", "name_zh_CN": "不稳定的奥术单元", "name_es_ES": "Célula Arcana inestable", "name_ru_RU": "Нестабильная чародейская ячейка", "name_it_IT": "Cella Arcana Instabile", "name_pt_PT": "Célula Arcana Instável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200858, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Plume of the Forgotten", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 523557, "buy_price": 2617785, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700999855995178, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Plume of the Forgotten", "name_ko_KR": "잊힌 자의 깃털", "name_fr_FR": "Plume des Oubliés", "name_de_DE": "Feder der Vergessenen", "name_zh_CN": "被忘却者的飞羽", "name_es_ES": "Pluma de los olvidados", "name_ru_RU": "Плюмаж Забытых", "name_it_IT": "Piuma dei Dimenticati", "name_pt_PT": "Pluma dos Esquecidos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200859, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seasoned Hunter's Trophy", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 525554, "buy_price": 2627770, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.973800003528595, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Seasoned Hunter's Trophy", "name_ko_KR": "숙련된 사냥꾼의 전리품", "name_fr_FR": "Trophée de chasseur émérite", "name_de_DE": "Trophäe des erfahrenen Jägers", "name_zh_CN": "老练猎人的战利品", "name_es_ES": "Trofeo de cazador avezado", "name_ru_RU": "Трофей опытного охотника", "name_it_IT": "Trofeo del Cacciatore Esperto", "name_pt_PT": "Troféu do Caçador Experiente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200868, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Integrated Primal Fire", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 557719, "buy_price": 2788599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.033400058746338, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Integrated Primal Fire", "name_ko_KR": "결합된 원시 화염", "name_fr_FR": "Feu primordial intégré", "name_de_DE": "Integriertes Urfeuer", "name_zh_CN": "整合原始火焰", "name_es_ES": "Fuego primigenio integrado", "name_ru_RU": "Интегрированный изначальный огонь", "name_it_IT": "Fuoco Primordiale Integrato", "name_pt_PT": "Fogo Primevo Integrado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200880, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wind-Sealed Mana Capsule", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 541798, "buy_price": 2708994, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0039000511169434, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Wind-Sealed Mana Capsule", "name_ko_KR": "바람으로 봉인된 마나 용기", "name_fr_FR": "Capsule de mana scellée par le vent", "name_de_DE": "Windversiegelte Manakapsel", "name_zh_CN": "狂风封印的法力胶囊", "name_es_ES": "Cápsula de maná sellada por el viento", "name_ru_RU": "Запечатанная ветром капсула маны", "name_it_IT": "Capsula di Mana Sigillata dal Vento", "name_pt_PT": "Cápsula de Mana Selada pelo Vento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Aspirant's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545276, "buy_price": 2726382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0184999704360962, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 340, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Crimson Aspirant's Badge of Ferocity", "name_ko_KR": "진홍빛 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant écarlate", "name_de_DE": "Wildheitsabzeichen des blutroten Aspiranten", "name_zh_CN": "猩红候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante carmesí", "name_ru_RU": "Жетон свирепости багрового претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Cremisi", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201450, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Aspirant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 535406, "buy_price": 2677033, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 340, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Crimson Aspirant's Medallion", "name_ko_KR": "진홍빛 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant écarlate", "name_de_DE": "Medaillon des blutroten Aspiranten", "name_zh_CN": "猩红候选者的勋章", "name_es_ES": "Medallón de aspirante carmesí", "name_ru_RU": "Медальон багрового претендента", "name_it_IT": "Medaglione del Pretendente Cremisi", "name_pt_PT": "Medalhão do Aspirante Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201451, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Aspirant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539174, "buy_price": 2695871, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0259000062942505, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 340, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Crimson Aspirant's Insignia of Alacrity", "name_ko_KR": "진홍빛 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant écarlate", "name_de_DE": "Inbrunstinsigne des blutroten Aspiranten", "name_zh_CN": "猩红候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante carmesí", "name_ru_RU": "Знак расторопности багрового претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Cremisi", "name_pt_PT": "Insígnia de Diligência do Aspirante Carmesim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Aspirant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507920, "buy_price": 2539600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0296000242233276, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 340, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Crimson Aspirant's Emblem", "name_ko_KR": "진홍빛 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant écarlate", "name_de_DE": "Emblem des blutroten Aspiranten", "name_zh_CN": "猩红候选者的纹章", "name_es_ES": "Emblema de aspirante carmesí", "name_ru_RU": "Эмблема багрового претендента", "name_it_IT": "Emblema del Pretendente Cremisi", "name_pt_PT": "Emblema do Aspirante Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201453, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Aspirant's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539280, "buy_price": 2696401, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0332000255584717, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 340, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Crimson Aspirant's Sigil of Adaptation", "name_ko_KR": "진홍빛 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant écarlate", "name_de_DE": "Siegel der Anpassung des blutroten Aspiranten", "name_zh_CN": "猩红候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante carmesí", "name_ru_RU": "Печать адаптации багрового претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Cremisi", "name_pt_PT": "Signo de Adaptação do Aspirante Carmesim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201807, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Gladiator's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 815025, "buy_price": 4075129, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0147000551223755, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Crimson Gladiator's Badge of Ferocity", "name_ko_KR": "진홍빛 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur écarlate", "name_de_DE": "Wildheitsabzeichen des blutroten Gladiators", "name_zh_CN": "猩红角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador carmesí", "name_ru_RU": "Жетон свирепости багрового гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Cremisi", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201808, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Gladiator's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 817997, "buy_price": 4089989, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.018399953842163, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Crimson Gladiator's Insignia of Alacrity", "name_ko_KR": "진홍빛 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur écarlate", "name_de_DE": "Inbrunstinsigne des blutroten Gladiators", "name_zh_CN": "猩红角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador carmesí", "name_ru_RU": "Знак расторопности багрового гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Cremisi", "name_pt_PT": "Insígnia de Diligência do Gladiador Carmesim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201809, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Gladiator's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 820969, "buy_price": 4104848, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Crimson Gladiator's Emblem", "name_ko_KR": "진홍빛 검투사의 문장", "name_fr_FR": "Emblème du gladiateur écarlate", "name_de_DE": "Emblem des blutroten Gladiators", "name_zh_CN": "猩红角斗士的纹章", "name_es_ES": "Emblema de Gladiador carmesí", "name_ru_RU": "Эмблема багрового гладиатора", "name_it_IT": "Emblema del Gladiatore Cremisi", "name_pt_PT": "Emblema do Gladiador Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Gladiator's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764824, "buy_price": 3824123, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9521999955177307, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Crimson Gladiator's Medallion", "name_ko_KR": "진홍빛 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur écarlate", "name_de_DE": "Medaillon des blutroten Gladiators", "name_zh_CN": "猩红角斗士的勋章", "name_es_ES": "Medallón de Gladiador carmesí", "name_ru_RU": "Медальон багрового гладиатора", "name_it_IT": "Medaglione del Gladiatore Cremisi", "name_pt_PT": "Medalhão do Gladiador Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Gladiator's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767716, "buy_price": 3838581, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Crimson Gladiator's Sigil of Adaptation", "name_ko_KR": "진홍빛 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur écarlate", "name_de_DE": "Siegel der Anpassung des blutroten Gladiators", "name_zh_CN": "猩红角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador carmesí", "name_ru_RU": "Печать адаптации багрового гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Cremisi", "name_pt_PT": "Signo da Adaptação do Gladiador Carmesim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 202015, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sands of Temporal Perfection", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Sands of Temporal Perfection", "name_ko_KR": "무결한 찰나의 모래", "name_fr_FR": "Sables de perfection temporelle", "name_de_DE": "Sande der temporalen Perfektion", "name_zh_CN": "完美时光之沙", "name_es_ES": "Arenas de perfección temporal", "name_ru_RU": "Пески темпорального совершенства", "name_it_IT": "Sabbie della Perfezione Temporale", "name_pt_PT": "Areias da Perfeição Temporal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 202116, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Alacritous Alchemist Stone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 782408, "buy_price": 3912041, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9781000018119812, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 405, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Alacritous Alchemist Stone", "name_ko_KR": "명민의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste empressée", "name_de_DE": "Lebhafter Alchemistenstein", "name_zh_CN": "活跃炼金石", "name_es_ES": "Piedra de alquimista de prontitud", "name_ru_RU": "Стремительный алхимический камень", "name_it_IT": "Pietra Alchemica Alacre", "name_pt_PT": "Pedra do Alquimista Álacre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 202264, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defender of the Winterpelt", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 710935, "buy_price": 3554677, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595000147819519, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 395, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Defender of the Winterpelt", "name_ko_KR": "겨울가죽의 수호자", "name_fr_FR": "Ange gardien des Crins-d’Hiver", "name_de_DE": "Verteidiger der Winterpelze", "name_zh_CN": "冬裘防御者", "name_es_ES": "Defensor de los Pelaje Invernal", "name_ru_RU": "Защитник фурболгов Зимней Шкуры", "name_it_IT": "Difensore dei Mantogelido", "name_pt_PT": "Defensor dos Couro da Neve", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 202268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Winterpelt Totem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 720421, "buy_price": 3602107, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9742000102996826, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 392, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Winterpelt Totem", "name_ko_KR": "겨울가죽 토템", "name_fr_FR": "Totem crin-d’hiver", "name_de_DE": "Winterpelztotem", "name_zh_CN": "冬裘图腾", "name_es_ES": "Tótem Pelaje Invernal", "name_ru_RU": "Тотем Зимней Шкуры", "name_it_IT": "Totem dei Mantogelido", "name_pt_PT": "Totem dos Couro da Neve", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 202610, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dragonfire Bomb Dispenser", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 742414, "buy_price": 3712074, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Dragonfire Bomb Dispenser", "name_ko_KR": "용숨결 폭탄 분배 장치", "name_fr_FR": "Distributeur de bombes de feu draconique", "name_de_DE": "Drachenfeuerbombenspender", "name_zh_CN": "龙火炸弹架", "name_es_ES": "Dispensador de bombas de fuego de dragón", "name_ru_RU": "Бомбомет драконьего огня", "name_it_IT": "Distributore di Bombe di Dragonfuoco", "name_pt_PT": "Distribuidor de Bombas de Fogo de Dragão", "on_use": true, "id_encounter": 2532, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202612, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Screaming Black Dragonscale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 747991, "buy_price": 3739956, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926000237464905, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Screaming Black Dragonscale", "name_ko_KR": "울부짖는 검은용 비늘", "name_fr_FR": "Écaille de Dragon noir hurlante", "name_de_DE": "Schreiende schwarze Drachenschuppe", "name_zh_CN": "咆哮的黑龙之鳞", "name_es_ES": "Dragontina negra aullante", "name_ru_RU": "Кричащая чешуйка черного дракона", "name_it_IT": "Scaglia di Drago Nero Urlante", "name_pt_PT": "Escama de Dragão Negro Berrante", "on_use": true, "id_encounter": 2522, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202613, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zaqali Chaos Grapnel", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767674, "buy_price": 3838374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Zaqali Chaos Grapnel", "name_ko_KR": "자칼리 혼돈 닻가지", "name_fr_FR": "Grappin zaqali du chaos", "name_de_DE": "Chaosgreifkette der Zaqali", "name_zh_CN": "扎卡利混沌抓钩", "name_es_ES": "Rezón de caos zaqali", "name_ru_RU": "Хаотичный крюк закали", "name_it_IT": "Ancora del Caos degli Zaqali", "name_pt_PT": "Gancho do Caos Zaqali", "on_use": true, "id_encounter": 2524, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202614, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rashok's Molten Heart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 771956, "buy_price": 3859780, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 418, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Rashok's Molten Heart", "name_ko_KR": "라소크의 용암 심장", "name_fr_FR": "Cœur fondu de Rashok", "name_de_DE": "Rashoks geschmolzenes Herz", "name_zh_CN": "莱修克的熔火心脏", "name_es_ES": "Corazón de magma de Rashok", "name_ru_RU": "Огненное сердце Рашока", "name_it_IT": "Cuore Fuso di Rashok", "name_pt_PT": "Coração Derretido de Rashok", "on_use": false, "id_encounter": 2525, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202615, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vessel of Searing Shadow", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 773229, "buy_price": 3866147, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0300999879837036, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Vessel of Searing Shadow", "name_ko_KR": "타오르는 어둠의 그릇", "name_fr_FR": "Calice d’ombre incendiaire", "name_de_DE": "Gefäß des sengenden Schattens", "name_zh_CN": "灼热之影法器", "name_es_ES": "Recipiente de sombra abrasadora", "name_ru_RU": "Сосуд жгучей тени", "name_it_IT": "Ricettacolo delle Ombre Roventi", "name_pt_PT": "Recipiente da Sombra Calcinante", "on_use": false, "id_encounter": 2529, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202616, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enduring Dreadplate", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 776006, "buy_price": 3880034, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0338000059127808, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Enduring Dreadplate", "name_ko_KR": "인내의 공포판금", "name_fr_FR": "Plaque d’effroi fortifiée", "name_de_DE": "Robuste Schreckensplatte", "name_zh_CN": "劲久恐惧装甲", "name_es_ES": "Placas de tinieblas resistentes", "name_ru_RU": "Стойкие латы ужаса", "name_it_IT": "Piastre Oscure Resistenti", "name_pt_PT": "Medoplaca Durável", "on_use": true, "id_encounter": 2522, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202617, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elementium Pocket Anvil", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 778709, "buy_price": 3893545, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0374000072479248, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Elementium Pocket Anvil", "name_ko_KR": "엘레멘티움 휴대용 모루", "name_fr_FR": "Enclume de poche en élémentium", "name_de_DE": "Elementiumtaschenamboss", "name_zh_CN": "源质袖珍铁砧", "name_es_ES": "Yunque de bolsillo de elementium", "name_ru_RU": "Карманная элементиевая наковальня", "name_it_IT": "Incudine da Tasca d'Elementio", "name_pt_PT": "Bigorna de Bolso de Elemêntio", "on_use": true, "id_encounter": 2529, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 203375, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Combatant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 50331648, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Crimson Combatant's Medallion", "name_ko_KR": "진홍빛 전투원의 메달", "name_fr_FR": "Médaillon du combattant écarlate", "name_de_DE": "Medaillon des blutroten Kämpfers", "name_zh_CN": "猩红争斗者的勋章", "name_es_ES": "Medallón de combatiente carmesí", "name_ru_RU": "Медальон багрового бойца", "name_it_IT": "Medaglione del Combattente Cremisi", "name_pt_PT": "Medalhão do Combatente Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 203376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Combatant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9670000076293945, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Crimson Combatant's Insignia of Alacrity", "name_ko_KR": "진홍빛 전투원의 기민 계급장", "name_fr_FR": "Insigne d’empressement du combattant écarlate", "name_de_DE": "Inbrunstinsigne des blutroten Kämpfers", "name_zh_CN": "猩红争斗者的活跃徽记", "name_es_ES": "Insignia de prontitud de combatiente carmesí", "name_ru_RU": "Знак расторопности багрового бойца", "name_it_IT": "Fregio dell'Alacrità del Combattente Cremisi", "name_pt_PT": "Insígnia de Diligência do Combatente Carmesim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 203377, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Combatant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9706000089645386, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Crimson Combatant's Emblem", "name_ko_KR": "진홍빛 전투원의 문장", "name_fr_FR": "Emblème du combattant écarlate", "name_de_DE": "Emblem des blutroten Kämpfers", "name_zh_CN": "猩红争斗者的纹章", "name_es_ES": "Emblema de combatiente carmesí", "name_ru_RU": "Эмблема багрового бойца", "name_it_IT": "Emblema del Combattente Cremisi", "name_pt_PT": "Emblema do Combatente Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 203680, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Totem Toss", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 548789, "buy_price": 2743948, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Totem Toss", "name_ko_KR": "투척용 토템", "name_fr_FR": "Lancer de totem", "name_de_DE": "Totemwurf", "name_zh_CN": "图腾投掷", "name_es_ES": "Lanzamiento de tótem", "name_ru_RU": "Бросок тотема", "name_it_IT": "Totem da Lancio", "name_pt_PT": "Arremesso de Totem", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 203714, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ward of Faceless Ire", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 727328, "buy_price": 3636641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 424, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Ward of Faceless Ire", "name_ko_KR": "얼굴 없는 노여움의 수호물", "name_fr_FR": "Sceau de colère sans-visage", "name_de_DE": "Schutz des gesichtslosen Zornes", "name_zh_CN": "无面忿怒结界", "name_es_ES": "Resguardo de ira ignota", "name_ru_RU": "Оберег безликой ярости", "name_it_IT": "Protezione dell'Ira Senzavolto", "name_pt_PT": "Proteção da Ira Sem-rosto", "on_use": true, "id_encounter": 2523, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 203729, "race_mask": 18446744073709551615, "desc": "The beauty of its swirling colors belies the cruel experiments that followed.", "pad2": "", "pad1": "", "pad0": "", "name": "Ominous Chromatic Essence", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 785869, "buy_price": 3929349, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0448999404907227, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 418, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Ominous Chromatic Essence", "name_ko_KR": "불길한 오색 정수", "name_fr_FR": "Essence chromatique menaçante", "name_de_DE": "Ominöse chromatische Essenz", "name_zh_CN": "噩兆多彩精华", "name_es_ES": "Esencia cromática ominosa", "name_ru_RU": "Зловещая разноцветная субстанция", "name_it_IT": "Essenza Cromatica Inquietante", "name_pt_PT": "Essência Cromática Agourenta", "on_use": true, "id_encounter": 2530, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 203963, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beacon to the Beyond", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 755566, "buy_price": 3777833, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0006999969482422, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 424, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Beacon to the Beyond", "name_ko_KR": "저 너머로의 봉화", "name_fr_FR": "Fanal de l’Au-delà", "name_de_DE": "Leuchtfeuer ins Jenseits", "name_zh_CN": "彼岸道标", "name_es_ES": "Baliza al más allá", "name_ru_RU": "Маяк иного мира", "name_it_IT": "Faro sull'Aldilà", "name_pt_PT": "Foco de Luz para o Além", "on_use": true, "id_encounter": 2520, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 203996, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Igneous Flowstone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 734502, "buy_price": 3672511, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746999740600586, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Igneous Flowstone", "name_ko_KR": "화성암 흐름석", "name_fr_FR": "Pierre-de-coulée ignée", "name_de_DE": "Feuriger Flussstein", "name_zh_CN": "火成涌岩", "name_es_ES": "Piedraflujo ígnea", "name_ru_RU": "Огненный камень потока", "name_it_IT": "Pietra del Flusso Ignea", "name_pt_PT": "Rocha Fluida Ígnea", "on_use": false, "id_encounter": 2527, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 204064, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0302000045776367, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_ko_KR": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_fr_FR": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_de_DE": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_zh_CN": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_es_ES": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_ru_RU": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_it_IT": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_pt_PT": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204164, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Combatant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559000134468079, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 50331648, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Obsidian Combatant's Medallion", "name_ko_KR": "흑요석 전투원의 메달", "name_fr_FR": "Médaillon du combattant d’obsidienne", "name_de_DE": "Medaillon des Obsidiankämpfers", "name_zh_CN": "黑曜争斗者的勋章", "name_es_ES": "Medallón de combatiente obsidiana", "name_ru_RU": "Медальон обсидианового бойца", "name_it_IT": "Medaglione del Combattente d'Ossidiana", "name_pt_PT": "Medalhão do Combatente Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204165, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Combatant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595999717712402, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Obsidian Combatant's Insignia of Alacrity", "name_ko_KR": "흑요석 전투원의 기민 계급장", "name_fr_FR": "Insigne d’empressement du combattant d’obsidienne", "name_de_DE": "Inbrunstinsigne des Obsidiankämpfers", "name_zh_CN": "黑曜争斗者的活跃徽记", "name_es_ES": "Insignia de prontitud de combatiente obsidiana", "name_ru_RU": "Знак расторопности обсидианового бойца", "name_it_IT": "Fregio dell'Alacrità del Combattente d'Ossidiana", "name_pt_PT": "Insígnia de Diligência do Combatente Obsidiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Combatant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Obsidian Combatant's Emblem", "name_ko_KR": "흑요석 전투원의 문장", "name_fr_FR": "Emblème du combattant d’obsidienne", "name_de_DE": "Emblem des Obsidiankämpfers", "name_zh_CN": "黑曜争斗者的纹章", "name_es_ES": "Emblema de combatiente obsidiana", "name_ru_RU": "Эмблема обсидианового бойца", "name_it_IT": "Emblema del Combattente d'Ossidiana", "name_pt_PT": "Emblema do Combatente Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204201, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Neltharion's Call to Chaos", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 792460, "buy_price": 3962301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044800043106079, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 431, "class_mask": 6275, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Neltharion's Call to Chaos", "name_ko_KR": "넬타리온의 혼돈의 부름", "name_fr_FR": "Appel au chaos de Neltharion", "name_de_DE": "Neltharions Chaosruf", "name_zh_CN": "奈萨里奥的混沌之召", "name_es_ES": "Llamamiento al caos de Neltharion", "name_ru_RU": "Зов Хаоса Нелтариона", "name_it_IT": "Richiamo del Caos di Neltharion", "name_pt_PT": "Chamado ao Caos de Neltharion", "on_use": false, "id_encounter": 2523, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 204202, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Neltharion's Call to Dominance", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795190, "buy_price": 3975954, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0484000444412231, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 431, "class_mask": 836, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Neltharion's Call to Dominance", "name_ko_KR": "넬타리온의 지배의 부름", "name_fr_FR": "Appel à la domination de Neltharion", "name_de_DE": "Neltharions Vorherrschaftsruf", "name_zh_CN": "奈萨里奥的统御之召", "name_es_ES": "Llamamiento a la dominancia de Neltharion", "name_ru_RU": "Властный зов Нелтариона", "name_it_IT": "Richiamo della Supremazia di Neltharion", "name_pt_PT": "Chamado à Dominância de Neltharion", "on_use": false, "id_encounter": 2523, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 204211, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Neltharion's Call to Suffering", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764472, "buy_price": 3822362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0078999996185303, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 431, "class_mask": 1080, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Neltharion's Call to Suffering", "name_ko_KR": "넬타리온의 고통의 부름", "name_fr_FR": "Appel à la souffrance de Neltharion", "name_de_DE": "Neltharions Leidensruf", "name_zh_CN": "奈萨里奥的受难之召", "name_es_ES": "Llamamiento al sufrimiento de Neltharion", "name_ru_RU": "Зов страдания Нелтариона", "name_it_IT": "Richiamo della Sofferenza di Neltharion", "name_pt_PT": "Chamado ao Sofrimento de Neltharion", "on_use": false, "id_encounter": 2523, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 204386, "race_mask": 18446744073709551615, "desc": "Even at this size, elemental cores can syphon enough of the surrounding Shadowflame energy to turn into a small but deadly explosive.", "pad2": "", "pad1": "", "pad0": "", "name": "Pocket Darkened Elemental Core", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 573790, "buy_price": 2868954, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Pocket Darkened Elemental Core", "name_ko_KR": "어둠에 물든 정력 핵 덩어리", "name_fr_FR": "Noyau élémentaire assombri de poche", "name_de_DE": "Verdunkelter Elementarkern im Taschenformat", "name_zh_CN": "袖珍黑化元素之核", "name_es_ES": "Núcleo elemental oscurecido de bolsillo", "name_ru_RU": "Карманное потемневшее ядро элементаля", "name_it_IT": "Nucleo Elementale Oscurato Tascabile", "name_pt_PT": "Núcleo de Elemental Escurecido de Bolso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204387, "race_mask": 18446744073709551615, "desc": "This titan artifact stores energy that can be used to power the carrier's abilities.", "pad2": "", "pad1": "", "pad0": "", "name": "Buzzing Orb Core", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 574708, "buy_price": 2873542, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0449999570846558, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 379, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Buzzing Orb Core", "name_ko_KR": "윙윙거리는 보주 핵", "name_fr_FR": "Cœur d’orbe bourdonnant", "name_de_DE": "Summender Kugelkern", "name_zh_CN": "嗡鸣的宝珠之核", "name_es_ES": "Núcleo de orbe zumbador", "name_ru_RU": "Гудящее ядро сферы", "name_it_IT": "Nucleo di Globo Ronzante", "name_pt_PT": "Núcleo de Orbe Zumbidor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204388, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Cauterizing Magma", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 577868, "buy_price": 2889342, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048699975013733, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Draconic Cauterizing Magma", "name_ko_KR": "용족 소작의 용암", "name_fr_FR": "Magma cautérisant draconique", "name_de_DE": "Drakonisches kauterisierendes Magma", "name_zh_CN": "巨龙烧灼岩浆", "name_es_ES": "Magma cauterizante dracónico", "name_ru_RU": "Драконья прижигающая магма", "name_it_IT": "Magma Cauterizzante Draconico", "name_pt_PT": "Magma Cauterizante Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204714, "race_mask": 18446744073709551615, "desc": "Only true wisdom can make the spores grow.", "pad2": "", "pad1": "", "pad0": "", "name": "Satchel of Healing Spores", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.974399983882904, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Satchel of Healing Spores", "name_ko_KR": "치유의 포자 주머니", "name_fr_FR": "Sacoche de spores guérisseuses", "name_de_DE": "Säckchen mit Heilsporen", "name_zh_CN": "一包治疗孢子", "name_es_ES": "Saquito de esporas de sanación", "name_ru_RU": "Сумка с целебными спорами", "name_it_IT": "Borsa di Spore Curative", "name_pt_PT": "Algibeira de Esporos Curativos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204728, "race_mask": 18446744073709551615, "desc": "It smells awful to you, but to the niffen it smells like friend.", "pad2": "", "pad1": "", "pad0": "", "name": "Friendship Censer", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9523000121116638, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Friendship Censer", "name_ko_KR": "우정의 향로", "name_fr_FR": "Encensoir de l’amitié", "name_de_DE": "Räuchergefäß der Freundschaft", "name_zh_CN": "友谊香炉", "name_es_ES": "Incensario de amistad", "name_ru_RU": "Курильница дружбы", "name_it_IT": "Incensiere dell'Amicizia", "name_pt_PT": "Incensário da Amizade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204736, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heatbound Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0081000328063965, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Heatbound Medallion", "name_ko_KR": "열기결속 메달", "name_fr_FR": "Médaillon ardent", "name_de_DE": "Hitzegebundenes Medaillon", "name_zh_CN": "热缚勋章", "name_es_ES": "Medallón vinculado al calor", "name_ru_RU": "Аксессуар скованного жара", "name_it_IT": "Medaglione Vincolato al Calore", "name_pt_PT": "Medalhão Vinculado ao Calor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204797, "race_mask": 18446744073709551615, "desc": "I have faced many stronger foes than you, weakling!", "pad2": "", "pad1": "", "pad0": "", "name": "Djaradin Boasting Tablets", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Djaradin Boasting Tablets", "name_ko_KR": "자라딘 과시 서판", "name_fr_FR": "Tables de vantardise djaradines", "name_de_DE": "Prahltafeln der Djaradin", "name_zh_CN": "贾拉丁吹嘘石板", "name_es_ES": "Tablillas de fanfarronería djaradin", "name_ru_RU": "Джарадинские таблички с похвальбами", "name_it_IT": "Tavolette della Vanteria dei Djaradin", "name_pt_PT": "Tabuletas de Ostentação Djaradin", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204805, "race_mask": 18446744073709551615, "desc": "It burns AND it stinks!", "pad2": "", "pad1": "", "pad0": "", "name": "Suspended Sulfuric Droplet", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Suspended Sulfuric Droplet", "name_ko_KR": "굳어버린 유황 방울", "name_fr_FR": "Gouttelette sulfurique en suspension", "name_de_DE": "Schwebender Schwefeltropfen", "name_zh_CN": "悬浮的硫化液滴", "name_es_ES": "Gota sulfúrica suspendida", "name_ru_RU": "Застывшая сернистая капля", "name_it_IT": "Goccia Solforica Sospesa", "name_pt_PT": "Gotícula Sulfúrica Suspensa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Drogbar Rocks", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1539, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Drogbar Rocks", "name_ko_KR": "드로그바 바위", "name_fr_FR": "Roches drogbars", "name_de_DE": "Drogbarfelsen", "name_zh_CN": "卓格巴尔岩石", "name_es_ES": "Rocas drógbar", "name_ru_RU": "Дрогбарские валуны", "name_it_IT": "Rocce dei Drogbar", "name_pt_PT": "Rochas Drogbares", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Drogbar Stones", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989300012588501, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1539, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Drogbar Stones", "name_ko_KR": "드로그바 돌멩이", "name_fr_FR": "Pierres drogbars", "name_de_DE": "Drogbarsteine", "name_zh_CN": "卓格巴尔石头", "name_es_ES": "Piedras drógbar", "name_ru_RU": "Дрогбарские камни", "name_it_IT": "Pietre dei Drogbar", "name_pt_PT": "Pedras Drogbares", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204901, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Firecaller's Focus", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9783999919891357, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Firecaller's Focus", "name_ko_KR": "불꽃소환사의 집중 장치", "name_fr_FR": "Focalisateur de mandefeu", "name_de_DE": "Fokus des Feuerrufers", "name_zh_CN": "召火者的法器", "name_es_ES": "Foco de clamafuegos", "name_ru_RU": "Средоточие призывателя огня", "name_it_IT": "Focus dell'Invocatore del Fuoco", "name_pt_PT": "Foco do Bradachamas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205191, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Underlight Globe", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0191999673843384, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Underlight Globe", "name_ko_KR": "미명의 구", "name_fr_FR": "Globe terradiance", "name_de_DE": "Tiefenlichtglobus", "name_zh_CN": "幽光之球", "name_es_ES": "Globo Sondaluz", "name_ru_RU": "Беспросветный шар", "name_it_IT": "Globo di Sottoluce", "name_pt_PT": "Globo Telúmino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205192, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Volatile Crystal Shard", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0227999687194824, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Volatile Crystal Shard", "name_ko_KR": "불안정한 수정 조각", "name_fr_FR": "Éclat de cristal instable", "name_de_DE": "Unbeständiger Kristallsplitter", "name_zh_CN": "易爆的水晶碎片", "name_es_ES": "Fragmento de cristal volátil", "name_ru_RU": "Нестабильный осколок кристалла", "name_it_IT": "Scheggia di Cristallo Instabile", "name_pt_PT": "Estilhaço de Cristal Volátil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205193, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sturdy Deepflayer Scute", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0264999866485596, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Sturdy Deepflayer Scute", "name_ko_KR": "튼튼한 심연약탈자 갑각", "name_fr_FR": "Scutelle de flagelleur des profondeurs robuste", "name_de_DE": "Robuste Tiefenschinderhornschuppe", "name_zh_CN": "坚实的深岩剥石者鳞甲", "name_es_ES": "Caparazón de despellejador resistente", "name_ru_RU": "Прочный щиток глубинного живодера", "name_it_IT": "Squama di Fondovolo Robusto", "name_pt_PT": "Carapaça de Azorrague Resistente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205194, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fractured Crystalspine Quill", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0302000045776367, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Fractured Crystalspine Quill", "name_ko_KR": "조각난 수정가시 깃", "name_fr_FR": "Épine de cristalépine fracturée", "name_de_DE": "Frakturierter Kristallrückenfederkiel", "name_zh_CN": "开裂的晶刺猪尖刺", "name_es_ES": "Espina de espinacristal fracturada", "name_ru_RU": "Расколотое перо кристаллошипа", "name_it_IT": "Spina di Vetraculeo Fratturata", "name_pt_PT": "Cálamo de Cristalospinha Fraturado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205195, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Drakeforged Magma Charm", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Drakeforged Magma Charm", "name_ko_KR": "비룡벼림 용암 부적", "name_fr_FR": "Amulette de magma drake-forgée", "name_de_DE": "Drachengeschmiedeter Magmaglücksbringer", "name_zh_CN": "龙锻岩浆护符", "name_es_ES": "Talismán de magma forjadraco", "name_ru_RU": "Выкованный драконами талисман магмы", "name_it_IT": "Talismano di Magma Forgiato dai Drachi", "name_pt_PT": "Patuá de Magma da Forja Dracônica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205196, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zaqali Hand Cauldron", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037500023841858, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Zaqali Hand Cauldron", "name_ko_KR": "자칼리 휴대용 가마솥", "name_fr_FR": "Chaudron à main zaqali", "name_de_DE": "Handkessel der Zaqali", "name_zh_CN": "扎卡利手提锅", "name_es_ES": "Caldera de mano zaqali", "name_ru_RU": "Котелок закали", "name_it_IT": "Calderone Portatile degli Zaqali", "name_pt_PT": "Caldeirão Portátil Zaqali", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205200, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stirring Twilight Ember", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520999789237976, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Stirring Twilight Ember", "name_ko_KR": "아른거리는 황혼의 불씨", "name_fr_FR": "Braise du crépuscule attisée", "name_de_DE": "Keimende Zwielichtglut", "name_zh_CN": "轻快的暮光余烬", "name_es_ES": "Ascua crepuscular agitada", "name_ru_RU": "Колышущийся сумеречный уголь", "name_it_IT": "Brace Crepuscolare Vivace", "name_pt_PT": "Brasa do Crepúsculo Agitada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205201, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Howler Horn", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9822999835014343, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Smoldering Howler Horn", "name_ko_KR": "이글거리는 포효의 뿔피리", "name_fr_FR": "Corne de hurleur fumant", "name_de_DE": "Schwelendes Heulerhorn", "name_zh_CN": "焖燃的嗥角", "name_es_ES": "Cuerno de aullador humeante", "name_ru_RU": "Рог тлеющего ревуна", "name_it_IT": "Corno di Belva Infuocato", "name_pt_PT": "Chifre de Uivador Fumegante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205229, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magma Serpent Lure", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545954, "buy_price": 2729772, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0116000175476074, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Magma Serpent Lure", "name_ko_KR": "용암 독사 미끼", "name_fr_FR": "Appât à serpent de magma", "name_de_DE": "Magmaschlangenköder", "name_zh_CN": "岩浆蛇饵", "name_es_ES": "Cebo de serpiente de magma", "name_ru_RU": "Приманка для магмозмея", "name_it_IT": "Esca per Serpenti di Magma", "name_pt_PT": "Isca de Serpente de Magma", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205262, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magmaclaw Lure", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Magmaclaw Lure", "name_ko_KR": "용암발톱 미끼", "name_fr_FR": "Appât à pince-de-magma", "name_de_DE": "Magmaklauenköder", "name_zh_CN": "岩浆爪诱饵", "name_es_ES": "Cebo de magmagarra", "name_ru_RU": "Приманка для магмохвата", "name_it_IT": "Esca per Magmagrinfia", "name_pt_PT": "Isca de Garra-de-magma", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205276, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deepflayer Lure", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9634000062942505, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Deepflayer Lure", "name_ko_KR": "심연약탈자 미끼", "name_fr_FR": "Appât à flagelleur des profondeurs", "name_de_DE": "Tiefenschinderköder", "name_zh_CN": "深岩剥石者诱饵", "name_es_ES": "Cebo de despellejador", "name_ru_RU": "Приманка для глубинного живодера", "name_it_IT": "Esca per Fondovolo", "name_pt_PT": "Isca de Azorrague", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205708, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Gladiator's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 719955, "buy_price": 3599776, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 408, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Obsidian Gladiator's Badge of Ferocity", "name_ko_KR": "흑요석 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur d’obsidienne", "name_de_DE": "Wildheitsabzeichen des Obsidiangladiators", "name_zh_CN": "黑曜角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador obsidiana", "name_ru_RU": "Жетон свирепости обсидианового гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore d'Ossidiana", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205709, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Gladiator's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 722720, "buy_price": 3613600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 408, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Obsidian Gladiator's Insignia of Alacrity", "name_ko_KR": "흑요석 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur d’obsidienne", "name_de_DE": "Inbrunstinsigne des Obsidiangladiators", "name_zh_CN": "黑曜角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador obsidiana", "name_ru_RU": "Знак расторопности обсидианового гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore d'Ossidiana", "name_pt_PT": "Insígnia de Diligência do Gladiador Obsidiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Gladiator's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 725484, "buy_price": 3627424, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 408, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Obsidian Gladiator's Emblem", "name_ko_KR": "흑요석 검투사의 문장", "name_fr_FR": "Emblème du gladiateur d’obsidienne", "name_de_DE": "Emblem des Obsidiangladiators", "name_zh_CN": "黑曜角斗士的纹章", "name_es_ES": "Emblema de Gladiador obsidiana", "name_ru_RU": "Эмблема обсидианового гладиатора", "name_it_IT": "Emblema del Gladiatore d'Ossidiana", "name_pt_PT": "Emblema do Gladiador Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205711, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Gladiator's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 728249, "buy_price": 3641248, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746000170707703, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 408, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Obsidian Gladiator's Medallion", "name_ko_KR": "흑요석 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur d’obsidienne", "name_de_DE": "Medaillon des Obsidiangladiators", "name_zh_CN": "黑曜角斗士的勋章", "name_es_ES": "Medallón de Gladiador obsidiana", "name_ru_RU": "Медальон обсидианового гладиатора", "name_it_IT": "Medaglione del Gladiatore d'Ossidiana", "name_pt_PT": "Medalhão do Gladiador Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205712, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Gladiator's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 730939, "buy_price": 3654698, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 408, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Obsidian Gladiator's Sigil of Adaptation", "name_ko_KR": "흑요석 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur d’obsidienne", "name_de_DE": "Siegel der Anpassung des Obsidiangladiators", "name_zh_CN": "黑曜角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador obsidiana", "name_ru_RU": "Печать адаптации обсидианового гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore d'Ossidiana", "name_pt_PT": "Signo de Adaptação do Gladiador Obsidiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205778, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Aspirant's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 559731, "buy_price": 2798655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 366, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Obsidian Aspirant's Badge of Ferocity", "name_ko_KR": "흑요석 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant d’obsidienne", "name_de_DE": "Wildheitsabzeichen des Obsidianaspiranten", "name_zh_CN": "黑曜候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante obsidiana", "name_ru_RU": "Жетон свирепости обсидианового претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente d'Ossidiana", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Aspirant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 521557, "buy_price": 2607788, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 366, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Obsidian Aspirant's Medallion", "name_ko_KR": "흑요석 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant d’obsidienne", "name_de_DE": "Medaillon des Obsidianaspiranten", "name_zh_CN": "黑曜候选者的勋章", "name_es_ES": "Medallón de aspirante obsidiana", "name_ru_RU": "Медальон обсидианового претендента", "name_it_IT": "Medaglione del Pretendente d'Ossidiana", "name_pt_PT": "Medalhão do Aspirante Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205780, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Aspirant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 523575, "buy_price": 2617877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.960099995136261, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 366, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Obsidian Aspirant's Insignia of Alacrity", "name_ko_KR": "흑요석 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant d’obsidienne", "name_de_DE": "Inbrunstinsigne des Obsidianaspiranten", "name_zh_CN": "黑曜候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante obsidiana", "name_ru_RU": "Знак расторопности обсидианового претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente d'Ossidiana", "name_pt_PT": "Insígnia de Diligência do Aspirante Obsidiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205781, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Aspirant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 525593, "buy_price": 2627966, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638000130653381, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 366, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Obsidian Aspirant's Emblem", "name_ko_KR": "흑요석 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant d’obsidienne", "name_de_DE": "Emblem des Obsidianaspiranten", "name_zh_CN": "黑曜候选者的纹章", "name_es_ES": "Emblema de aspirante obsidiana", "name_ru_RU": "Эмблема обсидианового претендента", "name_it_IT": "Emblema del Pretendente d'Ossidiana", "name_pt_PT": "Emblema do Aspirante Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205782, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Aspirant's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 527610, "buy_price": 2638054, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 366, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Obsidian Aspirant's Sigil of Adaptation", "name_ko_KR": "흑요석 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant d’obsidienne", "name_de_DE": "Siegel der Anpassung des Obsidianaspiranten", "name_zh_CN": "黑曜候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante obsidiana", "name_ru_RU": "Печать адаптации обсидианового претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente d'Ossidiana", "name_pt_PT": "Signo de Adaptação do Aspirante Obsidiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206475, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Seschenal", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 780867, "buy_price": 3904339, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0491000413894653, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Seschenal", "name_ko_KR": "인과를 벗어난 세스셰날의 파편", "name_fr_FR": "Fragment paracausal de Seschenal", "name_de_DE": "Parakausales Fragment des Seschenal", "name_zh_CN": "赛肖纳尔的超因果碎片", "name_es_ES": "Fragmento paracausal de Seschenal", "name_ru_RU": "Параказуальный фрагмент Сешеналя", "name_it_IT": "Frammento Imprevedibile di Seschenal", "name_pt_PT": "Fragmento Paracausal de Sesquenau", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206956, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Sulfuras", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750573, "buy_price": 3752869, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0083999633789062, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Sulfuras", "name_ko_KR": "인과를 벗어난 설퍼라스의 파편", "name_fr_FR": "Fragment paracausal de Sulfuras", "name_de_DE": "Parakausales Fragment von Sulfuras", "name_zh_CN": "萨弗拉斯的超因果碎片", "name_es_ES": "Fragmento paracausal de Sulfuras", "name_ru_RU": "Параказуальный фрагмент Сульфураса", "name_it_IT": "Frammento Imprevedibile di Sulfuras", "name_pt_PT": "Fragmento Paracausal de Sulfuras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206958, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Val'anyr", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 756007, "buy_price": 3780037, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Val'anyr", "name_ko_KR": "인과를 벗어난 발아니르의 파편", "name_fr_FR": "Fragment paracausal de Val’anyr", "name_de_DE": "Parakausales Fragment von Val'anyr", "name_zh_CN": "瓦兰奈尔的超因果碎片", "name_es_ES": "Fragmento paracausal de Val'Anyr", "name_ru_RU": "Параказуальный фрагмент Вал'анира", "name_it_IT": "Frammento Imprevedibile di Val'anyr", "name_pt_PT": "Fragmento Paracausal de Val'anyr", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206964, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Doomhammer", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 772456, "buy_price": 3862284, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377999544143677, "flags_1": 561152, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 207024, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Doomhammer", "name_ko_KR": "인과를 벗어난 둠해머의 파편", "name_fr_FR": "Fragment paracausal de Marteau-du-Destin", "name_de_DE": "Parakausales Fragment des Schicksalshammers", "name_zh_CN": "毁灭之锤的超因果碎片", "name_es_ES": "Fragmento paracausal de Martillo Maldito", "name_ru_RU": "Параказуальный фрагмент Молота Рока", "name_it_IT": "Frammento Imprevedibile di Martelfato", "name_pt_PT": "Fragmento Paracausal do Martelo da Perdição", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206972, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Azzinoth", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 739557, "buy_price": 3697789, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9936000108718872, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Azzinoth", "name_ko_KR": "인과를 벗어난 아지노스의 파편", "name_fr_FR": "Fragment paracausal d’Azzinoth", "name_de_DE": "Parakausales Fragment von Azzinoth", "name_zh_CN": "埃辛诺斯的超因果碎片", "name_es_ES": "Fragmento paracausal de Azzinoth", "name_ru_RU": "Параказуальный фрагмент Аззинота", "name_it_IT": "Frammento Imprevedibile di Azzinoth", "name_pt_PT": "Fragmento Paracausal de Azzinoth", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206983, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Frostmourne", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 769628, "buy_price": 3848142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034000039100647, "flags_1": 561216, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Frostmourne", "name_ko_KR": "인과를 벗어난 서리한의 파편", "name_fr_FR": "Fragment paracausal de Deuillegivre", "name_de_DE": "Parakausales Fragment von Frostgram", "name_zh_CN": "霜之哀伤的超因果碎片", "name_es_ES": "Fragmento paracausal de la Agonía de Escarcha", "name_ru_RU": "Параказуальный фрагмент Ледяной Скорби", "name_it_IT": "Frammento Imprevedibile di Gelidanima", "name_pt_PT": "Fragmento Paracausal da Gélido Lamento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 207005, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Thunderfin, Humid Blade of the Tideseeker", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Thunderfin, Humid Blade of the Tideseeker", "name_ko_KR": "인과를 벗어난 천둥지느러미 - 파도추적자의 습기 찬 칼날의 파편", "name_fr_FR": "Fragment paracausal de Nage-tonnerre, épée humide du Cherche-marée", "name_de_DE": "Parakausales Fragment von Donnerflosse, Feuchtklinge des Gezeitensuchers", "name_zh_CN": "雷霆之鳍,逐潮者的湿润之刃的超因果碎片", "name_es_ES": "Fragmento paracausal de Aletatrueno, hoja húmeda del Buscamareas", "name_ru_RU": "Параказуальный фрагмент Громового Плавника, водного клинка Искателя Приливов", "name_it_IT": "Frammento Imprevedibile di Pinnatonante, Lama Umida del Cercamaree", "name_pt_PT": "Fragmento Paracausal de Pinatrom, Lâmina Embebida do Caça-marés", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 207024, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Shalamayne", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 717377, "buy_price": 3586885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638000130653381, "flags_1": 561152, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 206964, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Shalamayne", "name_ko_KR": "인과를 벗어난 샬라메인의 파편", "name_fr_FR": "Fragment paracausal de Shalamayne", "name_de_DE": "Parakausales Fragment von Shalamayne", "name_zh_CN": "萨拉迈恩的超因果碎片", "name_es_ES": "Fragmento paracausal de Shalamayne", "name_ru_RU": "Параказуальный фрагмент Шаламейна", "name_it_IT": "Frammento Imprevedibile di Shalamayne", "name_pt_PT": "Fragmento Paracausal da Shalamayne", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 207165, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bandolier of Twisted Blades", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 778311, "buy_price": 3891559, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0195000171661377, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Bandolier of Twisted Blades", "name_ko_KR": "뒤틀린 칼날의 탄띠", "name_fr_FR": "Cartouchière des Lames perverties", "name_de_DE": "Bandolier der verdrehten Klingen", "name_zh_CN": "曲刃弹带", "name_es_ES": "Bandolera de cuchillas retorcidas", "name_ru_RU": "Перевязь изогнутых клинков", "name_it_IT": "Bandoliera delle Lame Distorte", "name_pt_PT": "Cartucheira de Lâminas Curvas", "on_use": true, "id_encounter": 2554, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Signet Brand", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 781136, "buy_price": 3905682, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0232000350952148, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Signet Brand", "name_ko_KR": "대격변의 인장 낙인", "name_fr_FR": "Marque sigillaire cataclysmique", "name_de_DE": "Kataklymisches Signetbrandmal", "name_zh_CN": "灾变徽记烙印", "name_es_ES": "Marca de sello cataclísmico", "name_ru_RU": "Клеймо-печатка Катаклизма", "name_it_IT": "Marchio con Sigillo Cataclismico", "name_pt_PT": "Marca do Sinete Cataclísmico", "on_use": false, "id_encounter": 2563, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207167, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashes of the Embersoul", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 783961, "buy_price": 3919805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.026900053024292, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Ashes of the Embersoul", "name_ko_KR": "잿불혼의 재", "name_fr_FR": "Cendres de la braisâme", "name_de_DE": "Asche der Glutseele", "name_zh_CN": "烬魄之灰", "name_es_ES": "Cenizas del Ascuaalma", "name_ru_RU": "Прах души угля", "name_it_IT": "Ceneri dell'Anima Ardente", "name_pt_PT": "Cinzas da Brasalma", "on_use": true, "id_encounter": 2563, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207168, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pip's Emerald Friendship Badge", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 786785, "buy_price": 3933928, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0305999517440796, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Pip's Emerald Friendship Badge", "name_ko_KR": "핍의 에메랄드 우정 휘장", "name_fr_FR": "Badge d’amitié émeraude de Pip", "name_de_DE": "Pips smaragdgrünes Freundschaftsabzeichen", "name_zh_CN": "匹普的翡翠情谊徽章", "name_es_ES": "Distintivo de amistad esmeralda de Pip", "name_ru_RU": "Изумрудный значок дружбы Пипа", "name_it_IT": "Distintivo dell'Amicizia di Smeraldo di Pip", "name_pt_PT": "Distintivo de Amizade Esmeralda de Pip", "on_use": false, "id_encounter": 2555, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207169, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Branch of the Tormented Ancient", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 789534, "buy_price": 3947670, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0341999530792236, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Branch of the Tormented Ancient", "name_ko_KR": "고통받는 고대정령의 가지", "name_fr_FR": "Branche de l’Ancien tourmenté", "name_de_DE": "Ast des gequälten Urtums", "name_zh_CN": "苦痛古树残枝", "name_es_ES": "Rama del anciano atormentado", "name_ru_RU": "Ветвь измученного древа", "name_it_IT": "Ramo dell'Antico Tormentato", "name_pt_PT": "Galho do Anciente Atormentado", "on_use": true, "id_encounter": 2564, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207170, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Seedling", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 792358, "buy_price": 3961794, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0378999710083008, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Smoldering Seedling", "name_ko_KR": "이글거리는 묘목", "name_fr_FR": "Bouture fumante", "name_de_DE": "Schwelender Setzling", "name_zh_CN": "焖燃幼苗", "name_es_ES": "Esqueje humeante", "name_ru_RU": "Тлеющий саженец", "name_it_IT": "Piantina Infuocata", "name_pt_PT": "Muda Fumegante", "on_use": true, "id_encounter": 2553, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207171, "race_mask": 18446744073709551615, "desc": "A bright future from the ashes.", "pad2": "", "pad1": "", "pad0": "", "name": "Blossom of Amirdrassil", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795183, "buy_price": 3975917, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041599988937378, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Blossom of Amirdrassil", "name_ko_KR": "아미드랏실의 꽃", "name_fr_FR": "Floraison d’Amirdrassil", "name_de_DE": "Erblühen von Amirdrassil", "name_zh_CN": "阿梅达希尔之花", "name_es_ES": "Flor de Amirdrassil", "name_ru_RU": "Цветок Амирдрассила", "name_it_IT": "Bocciolo di Amirdrassil", "name_pt_PT": "Flor de Amirdrassil", "on_use": false, "id_encounter": 2519, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207172, "race_mask": 18446744073709551615, "desc": "Enae elen'relos!", "pad2": "", "pad1": "", "pad0": "", "name": "Belor'relos, the Suncaller", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 798008, "buy_price": 3990040, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045300006866455, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Belor'relos, the Suncaller", "name_ko_KR": "벨로렐로스 - 태양소환사", "name_fr_FR": "Belor’relos, le Mande-soleil", "name_de_DE": "Belor'relos, der Sonnenrufer", "name_zh_CN": "贝罗雷洛斯,阳炎之唤", "name_es_ES": "Belor'relos, invocador del sol", "name_ru_RU": "Белор'релос, зовущий солнце", "name_it_IT": "Belor'relos, l'Invocasole", "name_pt_PT": "Belor'relos, a Invocadora do Sol", "on_use": true, "id_encounter": 2565, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207173, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gift of Ursine Vengeance", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 800756, "buy_price": 4003782, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Gift of Ursine Vengeance", "name_ko_KR": "곰의 복수의 선물", "name_fr_FR": "Don de la vengeance ursine", "name_de_DE": "Geschenk der Bärenrache", "name_zh_CN": "熊灵复仇之赐", "name_es_ES": "Ofrenda de venganza osuna", "name_ru_RU": "Дар медвежьего отмщения", "name_it_IT": "Dono della Vendetta dell'Orso", "name_pt_PT": "Dádiva da Vingança Ursina", "on_use": false, "id_encounter": 2555, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207174, "race_mask": 18446744073709551615, "desc": "A fate of twisted blood.", "pad2": "", "pad1": "", "pad0": "", "name": "Fyrakk's Tainted Rageheart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 727162, "buy_price": 3635811, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524999856948853, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Fyrakk's Tainted Rageheart", "name_ko_KR": "피락의 오염된 분노의 심장", "name_fr_FR": "Ragecœur souillé de Fyrakka", "name_de_DE": "Fyrakks besudeltes Zornesherz", "name_zh_CN": "菲莱克的秽怒之心", "name_es_ES": "Corazón colérico corrupto de Fyrakk", "name_ru_RU": "Оскверненное Яростное сердце Фиракка", "name_it_IT": "Cuordirabbia Contaminato di Fyrakk", "name_pt_PT": "Coração Maculado de Fyrakk", "on_use": true, "id_encounter": 2519, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207175, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coiled Serpent Idol", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 729987, "buy_price": 3649935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9562000036239624, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Coiled Serpent Idol", "name_ko_KR": "똬리를 튼 뱀 우상", "name_fr_FR": "Idole de serpent torsadé", "name_de_DE": "Ringelschlangengötze", "name_zh_CN": "盘曲蛇雕", "name_es_ES": "Ídolo de serpiente enroscada", "name_ru_RU": "Идол свернувшейся змеи", "name_it_IT": "Idolo della Serpe Avviluppata", "name_pt_PT": "Ídolo de Serpente Enroscada", "on_use": false, "id_encounter": 2557, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delve Ring", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 577868, "buy_price": 2889342, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0159000158309937, "flags_1": 528448, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 412, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Delve Ring", "name_ko_KR": "구렁 반지", "name_fr_FR": "Anneau du Gouffre", "name_de_DE": "Tiefenring", "name_zh_CN": "地下堡之环", "name_es_ES": "Anillo de las profundidades", "name_ru_RU": "Кольцо из вылазки", "name_it_IT": "Anello delle Scorribande", "name_pt_PT": "Anel dos Grotões", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 207528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prophetic Stonescales", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 779264, "buy_price": 3896321, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.03410005569458, "flags_1": 67633152, "flags_2": 73728, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Prophetic Stonescales", "name_ko_KR": "선지자의 돌비늘", "name_fr_FR": "Pierre-écailles prophétiques", "name_de_DE": "Prophetische Steinschuppen", "name_zh_CN": "先知石鳞", "name_es_ES": "Escamapiedras proféticas", "name_ru_RU": "Пророческая каменная чешуя", "name_it_IT": "Scaglie di Pietra Profetiche", "name_pt_PT": "Petrescamas Proféticas", "on_use": false, "id_encounter": 2537, "id_journal_instance": 1209, "id_map": 2579, "instance_type": 1}, {"id": 207552, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Echoing Tyrstone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 734803, "buy_price": 3674018, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750999808311462, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Echoing Tyrstone", "name_ko_KR": "메아리치는 티르의 돌", "name_fr_FR": "Pierre de Tyr résonnante", "name_de_DE": "Widerhallender Tyrstein", "name_zh_CN": "回波提尔石", "name_es_ES": "Piedra de Tyr resonante", "name_ru_RU": "Гулкий камень Тира", "name_it_IT": "Pietra di Tyr Echeggiante", "name_pt_PT": "Tyrita Ecoante", "on_use": true, "id_encounter": 2526, "id_journal_instance": 1209, "id_map": 2579, "instance_type": 1}, {"id": 207566, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Accelerating Sandglass", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718074, "buy_price": 3590372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9528999924659729, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Accelerating Sandglass", "name_ko_KR": "가속의 모래시계", "name_fr_FR": "Sable vitrifié d’accélération", "name_de_DE": "Beschleunigende Sanduhr", "name_zh_CN": "增速沙漏", "name_es_ES": "Reloj de arena acelerador", "name_ru_RU": "Ускоряющие песочные часы", "name_it_IT": "Clessidra Accelerante", "name_pt_PT": "Ampulheta Acelerante", "on_use": false, "id_encounter": 2528, "id_journal_instance": 1209, "id_map": 2579, "instance_type": 1}, {"id": 207579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time-Thief's Gambit", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 754019, "buy_price": 3770098, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Time-Thief's Gambit", "name_ko_KR": "시간 도둑의 승부수", "name_fr_FR": "Gambit du voleur de temps", "name_de_DE": "Schachzug des Zeitdiebs", "name_zh_CN": "窃时者的谋略", "name_es_ES": "Gambito de ladrón temporal", "name_ru_RU": "Гамбит вора времени", "name_it_IT": "Azzardo del Ladro di Tempo", "name_pt_PT": "Gambito do Ladrão do Tempo", "on_use": true, "id_encounter": 2536, "id_journal_instance": 1209, "id_map": 2579, "instance_type": 1}, {"id": 207581, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Fractured Tomorrows", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 779565, "buy_price": 3897828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034500002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Fractured Tomorrows", "name_ko_KR": "부서진 미래의 거울", "name_fr_FR": "Miroir des lendemains fracturés", "name_de_DE": "Spiegel der gebrochenen Morgen", "name_zh_CN": "破碎翌日之镜", "name_es_ES": "Espejo del mañana fracturado", "name_ru_RU": "Зеркало разбитого будущего", "name_it_IT": "Specchio dei Domani Infranti", "name_pt_PT": "Espelho dos Amanhãs Fraturados", "on_use": true, "id_encounter": 2538, "id_journal_instance": 1209, "id_map": 2579, "instance_type": 1}, {"id": 208307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Combatant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9900000095367432, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 50331648, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Combatant's Medallion", "name_ko_KR": "녹빛 전투원의 메달", "name_fr_FR": "Médaillon du combattant verdoyant", "name_de_DE": "Medaillon des tiefgrünen Kämpfers", "name_zh_CN": "苍郁争斗者的勋章", "name_es_ES": "Medallón de Combatiente verdeante", "name_ru_RU": "Медальон изумрудного бойца", "name_it_IT": "Medaglione del Combattente Verdeggiante", "name_pt_PT": "Medalhão do Combatente Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Combatant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937000274658203, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Combatant's Insignia of Alacrity", "name_ko_KR": "녹빛 전투원의 기민 계급장", "name_fr_FR": "Insigne d’empressement du combattant verdoyant", "name_de_DE": "Inbrunstinsigne des tiefgrünen Kämpfers", "name_zh_CN": "苍郁争斗者的活跃徽记", "name_es_ES": "Insignia de prontitud de Combatiente verdeante", "name_ru_RU": "Знак расторопности изумрудного бойца", "name_it_IT": "Fregio dell'Alacrità del Combattente Verdeggiante", "name_pt_PT": "Insígnia de Diligência do Combatente Verdejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Combatant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973999857902527, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Combatant's Emblem", "name_ko_KR": "녹빛 전투원의 문장", "name_fr_FR": "Emblème du combattant verdoyant", "name_de_DE": "Emblem des tiefgrünen Kämpfers", "name_zh_CN": "苍郁争斗者的纹章", "name_es_ES": "Emblema de Combatiente verdeante", "name_ru_RU": "Эмблема изумрудного бойца", "name_it_IT": "Emblema del Combattente Verdeggiante", "name_pt_PT": "Emblema do Combatente Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208553, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timerunner's Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9898999929428101, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2905, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 10, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 6, "name_en_US": "Timerunner's Chalice", "name_ko_KR": "시간질주자의 성배", "name_fr_FR": "Calice du cours du temps", "name_de_DE": "Kelch des Zeitläufers", "name_zh_CN": "时空奔行者圣杯", "name_es_ES": "Cáliz de corredor temporal", "name_ru_RU": "Кубок путешественника во времени", "name_it_IT": "Calice del Corridore nel Tempo", "name_pt_PT": "Cálice do Trilha-tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208554, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timerunner's Beacon", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9936000108718872, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2905, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 13, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 7, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 4, "name_en_US": "Timerunner's Beacon", "name_ko_KR": "시간질주자의 봉화", "name_fr_FR": "Fanal du cours du temps", "name_de_DE": "Leuchtfeuer des Zeitläufers", "name_zh_CN": "时空奔行者的道标", "name_es_ES": "Baliza de asaltante temporal", "name_ru_RU": "Маяк путешественника во времени", "name_it_IT": "Segnalatore del Corridore nel Tempo", "name_pt_PT": "Sinalizador do Trilha-tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208555, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timerunner's Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2905, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 13, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 7, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 4, "name_en_US": "Timerunner's Idol", "name_ko_KR": "시간질주자의 우상", "name_fr_FR": "Idole du cours du temps", "name_de_DE": "Götze des Zeitläufers", "name_zh_CN": "时空奔行者的神像", "name_es_ES": "Ídolo de asaltante temporal", "name_ru_RU": "Идол путешественника во времени", "name_it_IT": "Idolo del Corridore nel Tempo", "name_pt_PT": "Ídolo do Trilha-tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208556, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flicker Blossom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2905, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 13, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 2, "name_en_US": "Flicker Blossom", "name_ko_KR": "명멸하는 꽃", "name_fr_FR": "Fleur vacillante", "name_de_DE": "Flackerblüte", "name_zh_CN": "闪现之花", "name_es_ES": "Floración creciente", "name_ru_RU": "Искрящийся цветок", "name_it_IT": "Bocciolo Sfarfallante", "name_pt_PT": "Botão Cintilante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208614, "race_mask": 18446744073709551615, "desc": "A vision of endless flame.", "pad2": "", "pad1": "", "pad0": "", "name": "Augury of the Primal Flame", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 778464, "buy_price": 3892322, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.019700050354004, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Augury of the Primal Flame", "name_ko_KR": "원시 불꽃의 조짐", "name_fr_FR": "Augure de la flamme primordiale", "name_de_DE": "Weissagung der Urflamme", "name_zh_CN": "洪荒火焰预兆", "name_es_ES": "Augurio de la Llama primigenia", "name_ru_RU": "Предзнаменование изначального пламени", "name_it_IT": "Divinazione della Fiamma Primordiale", "name_pt_PT": "Augúrio da Chama Primeva", "on_use": false, "id_encounter": 2519, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 208615, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nymue's Unraveling Spindle", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 781212, "buy_price": 3906064, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023300051689148, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Nymue's Unraveling Spindle", "name_ko_KR": "니무에의 풀어지는 물렛가락", "name_fr_FR": "Fuseau démêleur de Nymue", "name_de_DE": "Nymues entwirrende Spindel", "name_zh_CN": "尼穆威的拆解纺锤", "name_es_ES": "Huso desovillado de Nymue", "name_ru_RU": "Раскрывающее веретено Нимуэ", "name_it_IT": "Fuso Srotolato di Nymue", "name_pt_PT": "Fuso do Desenrolar de Nymue", "on_use": true, "id_encounter": 2556, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 209343, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Gladiator's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 755830, "buy_price": 3779152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9861999750137329, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 447, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Verdant Gladiator's Badge of Ferocity", "name_ko_KR": "녹빛 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur verdoyant", "name_de_DE": "Wildheitsabzeichen des tiefgrünen Gladiators", "name_zh_CN": "苍郁角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador verdeante", "name_ru_RU": "Жетон свирепости изумрудного гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Verdeggiante", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Gladiator's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 758666, "buy_price": 3793331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9898999929428101, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 447, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Verdant Gladiator's Insignia of Alacrity", "name_ko_KR": "녹빛 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur verdoyant", "name_de_DE": "Inbrunstinsigne des tiefgrünen Gladiators", "name_zh_CN": "苍郁角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador verdeante", "name_ru_RU": "Знак расторопности изумрудного гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Verdeggiante", "name_pt_PT": "Insígnia de Diligência do Gladiador Verdejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209345, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Gladiator's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 761425, "buy_price": 3807126, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9934999942779541, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 447, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Verdant Gladiator's Emblem", "name_ko_KR": "녹빛 검투사의 문장", "name_fr_FR": "Emblème du gladiateur verdoyant", "name_de_DE": "Emblem des tiefgrünen Gladiators", "name_zh_CN": "苍郁角斗士的纹章", "name_es_ES": "Emblema de Gladiador verdeante", "name_ru_RU": "Эмблема изумрудного гладиатора", "name_it_IT": "Emblema del Gladiatore Verdeggiante", "name_pt_PT": "Emblema do Gladiador Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Gladiator's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764261, "buy_price": 3821305, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 447, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Verdant Gladiator's Medallion", "name_ko_KR": "녹빛 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur verdoyant", "name_de_DE": "Medaillon des tiefgrünen Gladiators", "name_zh_CN": "苍郁角斗士的勋章", "name_es_ES": "Medallón de Gladiador verdeante", "name_ru_RU": "Медальон изумрудного гладиатора", "name_it_IT": "Medaglione del Gladiatore Verdeggiante", "name_pt_PT": "Medalhão do Gladiador Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209347, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Gladiator's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767096, "buy_price": 3835484, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 447, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Verdant Gladiator's Sigil of Adaptation", "name_ko_KR": "녹빛 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur verdoyant", "name_de_DE": "Siegel der Anpassung des tiefgrünen Gladiators", "name_zh_CN": "苍郁角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador verdeante", "name_ru_RU": "Печать адаптации изумрудного гладиатора", "name_it_IT": "Suggello dell'Adattamento del Gladiatore Verdeggiante", "name_pt_PT": "Signo de Adaptação do Gladiador Verdejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Aspirant's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 571871, "buy_price": 2859358, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0157999992370605, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Aspirant's Badge of Ferocity", "name_ko_KR": "녹빛 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant verdoyant", "name_de_DE": "Wildheitsabzeichen des tiefgrünen Aspiranten", "name_zh_CN": "苍郁候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Aspirante verdeante", "name_ru_RU": "Жетон свирепости изумрудного претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Verdeggiante", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209764, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Aspirant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 573954, "buy_price": 2869773, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0195000171661377, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Aspirant's Medallion", "name_ko_KR": "녹빛 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant verdoyant", "name_de_DE": "Medaillon des tiefgrünen Aspiranten", "name_zh_CN": "苍郁候选者的勋章", "name_es_ES": "Medallón de Aspirante verdeante", "name_ru_RU": "Медальон изумрудного претендента", "name_it_IT": "Medaglione del Pretendente Verdeggiante", "name_pt_PT": "Medalhão do Aspirante Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209765, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Aspirant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576037, "buy_price": 2880188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0232000350952148, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Aspirant's Insignia of Alacrity", "name_ko_KR": "녹빛 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant verdoyant", "name_de_DE": "Inbrunstinsigne des tiefgrünen Aspiranten", "name_zh_CN": "苍郁候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de Aspirante verdeante", "name_ru_RU": "Знак расторопности изумрудного претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Verdeggiante", "name_pt_PT": "Insígnia de Diligência do Aspirante Verdejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209766, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Aspirant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536685, "buy_price": 2683427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9532999992370605, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Aspirant's Emblem", "name_ko_KR": "녹빛 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant verdoyant", "name_de_DE": "Emblem des tiefgrünen Aspiranten", "name_zh_CN": "苍郁候选者的纹章", "name_es_ES": "Emblema de Aspirante verdeante", "name_ru_RU": "Эмблема изумрудного претендента", "name_it_IT": "Emblema del Pretendente Verdeggiante", "name_pt_PT": "Emblema do Aspirante Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209767, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Aspirant's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538712, "buy_price": 2693561, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9569000005722046, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Aspirant's Sigil of Adaptation", "name_ko_KR": "녹빛 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant verdoyant", "name_de_DE": "Siegel der Anpassung des tiefgrünen Aspiranten", "name_zh_CN": "苍郁候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de Aspirante verdeante", "name_ru_RU": "Печать адаптации изумрудного претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Verdeggiante", "name_pt_PT": "Signo de Adaptação do Aspirante Verdejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209953, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dancing Dream Blossoms", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 585239, "buy_price": 2926195, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0307999849319458, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Dancing Dream Blossoms", "name_ko_KR": "춤추는 꿈의 꽃", "name_fr_FR": "Floraisons de rêve dansantes", "name_de_DE": "Tanzende Traumblüten", "name_zh_CN": "翩舞梦花", "name_es_ES": "Flores del Sueño danzantes", "name_ru_RU": "Танец цветов Сна", "name_it_IT": "Boccioli del Sogno Danzanti", "name_pt_PT": "Florações Oníricas Dançantes", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209954, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moragh's Favorite Rock", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 587339, "buy_price": 2936699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034500002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Moragh's Favorite Rock", "name_ko_KR": "모라그가 아끼는 돌멩이", "name_fr_FR": "Rocher préféré de Moragh", "name_de_DE": "Moraghs Lieblingsstein", "name_zh_CN": "莫拉夫最喜欢的石头", "name_es_ES": "Roca favorita de Moragh", "name_ru_RU": "Любимый камень Морагха", "name_it_IT": "Roccia Preferita di Moragh", "name_pt_PT": "Rocha Favorita de Moragh", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209955, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Root of Fire", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 589383, "buy_price": 2946918, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038100004196167, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Root of Fire", "name_ko_KR": "불꽃의 뿌리", "name_fr_FR": "Racine de feu", "name_de_DE": "Wurzel des Feuers", "name_zh_CN": "炽根", "name_es_ES": "Raíz de fuego", "name_ru_RU": "Огненный корень", "name_it_IT": "Radice di Fuoco", "name_pt_PT": "Raiz de Fogo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209956, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ori's Verdant Feather", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 591484, "buy_price": 2957422, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0418000221252441, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Ori's Verdant Feather", "name_ko_KR": "오리의 신록 깃털", "name_fr_FR": "Plume verdoyante d’Ori", "name_de_DE": "Oris tiefgrüne Feder", "name_zh_CN": "欧里的青翠之羽", "name_es_ES": "Pluma verdeante de Ori", "name_ru_RU": "Изумрудное перо Ори", "name_it_IT": "Piuma Verdeggiante di Ori", "name_pt_PT": "Pena Verdejante de Ori", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209957, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fang of the Frenzied Nightclaw", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 593585, "buy_price": 2967925, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Fang of the Frenzied Nightclaw", "name_ko_KR": "광포한 밤표범의 송곳니", "name_fr_FR": "Croc de griffenuit frénétique", "name_de_DE": "Reißzahn der rasenden Nachtkralle", "name_zh_CN": "狂乱夜爪之牙", "name_es_ES": "Colmillo del garranoche enloquecido", "name_ru_RU": "Клык разъяренного когтя ночи", "name_it_IT": "Zanna di Zannacupa Frenetico", "name_pt_PT": "Presa do Noctigarra Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209958, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of the Umbramane", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 553899, "buy_price": 2769496, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.975600004196167, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Rune of the Umbramane", "name_ko_KR": "암영갈기의 룬", "name_fr_FR": "Rune de Criniombre", "name_de_DE": "Rune der Umbramähne", "name_zh_CN": "黯鬃符文", "name_es_ES": "Runa del umbramelena", "name_ru_RU": "Руна Темношкурого", "name_it_IT": "Runa di Crinierombra", "name_pt_PT": "Runa de Jubumbra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209959, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pinch of Dream Magic", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555943, "buy_price": 2779715, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.979200005531311, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Pinch of Dream Magic", "name_ko_KR": "꿈 마법의 편린", "name_fr_FR": "Pincée de magie de Rêve", "name_de_DE": "Eine Prise Traummagie", "name_zh_CN": "一撮梦境魔法", "name_es_ES": "Pellizco de magia onírica", "name_ru_RU": "Капелька магии Сна", "name_it_IT": "Pizzico di Magia del Sogno", "name_pt_PT": "Pitada de Magia Onírica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 210816, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Algari Alchemist Stone", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88056, "buy_price": 440282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027400016784668, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 544, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Algari Alchemist Stone", "name_ko_KR": "알가르 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste algarie", "name_de_DE": "Algarischer Alchemistenstein", "name_zh_CN": "阿加炼金石", "name_es_ES": "Piedra de alquimista algariana", "name_ru_RU": "Алгарийский алхимический камень", "name_it_IT": "Pietra Alchemica Algari", "name_pt_PT": "Pedra do Alquimista Algari", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 211606, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Combatant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0236999988555908, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 50331648, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Combatant's Medallion", "name_ko_KR": "용족 전투원의 메달", "name_fr_FR": "Médaillon du combattant draconique", "name_de_DE": "Medaillon des drakonischen Kämpfers", "name_zh_CN": "腾龙争斗者的勋章", "name_es_ES": "Medallón de Combatiente dracónico", "name_ru_RU": "Медальон драконьего бойца", "name_it_IT": "Medaglione del Combattente Draconico", "name_pt_PT": "Medalhão do Combatente Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 211607, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Combatant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027400016784668, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Combatant's Insignia of Alacrity", "name_ko_KR": "용족 전투원의 기민 계급장", "name_fr_FR": "Insigne d’empressement du combattant draconique", "name_de_DE": "Inbrunstinsigne des drakonischen Kämpfers", "name_zh_CN": "腾龙争斗者的活跃徽记", "name_es_ES": "Insignia de prontitud de Combatiente dracónico", "name_ru_RU": "Знак расторопности драконьего бойца", "name_it_IT": "Fregio dell'Alacrità del Combattente Draconico", "name_pt_PT": "Insígnia de Diligência do Combatente Dracônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 211608, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Combatant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031000018119812, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Combatant's Emblem", "name_ko_KR": "용족 전투원의 문장", "name_fr_FR": "Emblème du combattant draconique", "name_de_DE": "Emblem des drakonischen Kämpfers", "name_zh_CN": "腾龙争斗者的纹章", "name_es_ES": "Emblema de Combatiente dracónico", "name_ru_RU": "Эмблема драконьего бойца", "name_it_IT": "Emblema del Combattente Draconico", "name_pt_PT": "Emblema do Combatente Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 212449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sikran's Endless Arsenal", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 825648, "buy_price": 4128241, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9939000010490417, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Sikran's Endless Arsenal", "name_ko_KR": "시크란의 무한한 무기고", "name_fr_FR": "Arsenal infini de Sikran", "name_de_DE": "Sik'rans endloses Arsenal", "name_zh_CN": "席克兰的无穷军械", "name_es_ES": "Arsenal infinito de Sikran", "name_ru_RU": "Бесконечный арсенал Сикрана", "name_it_IT": "Arsenale Interminabile di Sikran", "name_pt_PT": "Arsenal Infinito de Sikran", "on_use": true, "id_encounter": 2599, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212450, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Swarmlord's Authority", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 850735, "buy_price": 4253679, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Swarmlord's Authority", "name_ko_KR": "무리군주의 권위", "name_fr_FR": "Autorité du seigneur de l’essaim", "name_de_DE": "Autorität des Schwarmfürsten", "name_zh_CN": "统群者的权威", "name_es_ES": "Autoridad de señor de enjambre", "name_ru_RU": "Власть повелителя роя", "name_it_IT": "Autorità del Signore dello Sciame", "name_pt_PT": "Autoridade do Senhor do Enxame", "on_use": true, "id_encounter": 2608, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212451, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aberrant Spellforge", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 853809, "buy_price": 4269047, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Aberrant Spellforge", "name_ko_KR": "기괴한 주문가열로", "name_fr_FR": "Forgesort aberrante", "name_de_DE": "Anomale Zauberschmiede", "name_zh_CN": "畸变法炉", "name_es_ES": "Forjahechizos aberrante", "name_ru_RU": "Искаженный магический горн", "name_it_IT": "Forgiamagie Aberrante", "name_pt_PT": "Forja-encantos Aberrante", "on_use": true, "id_encounter": 2611, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gruesome Syringe", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 856800, "buy_price": 4284000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Gruesome Syringe", "name_ko_KR": "섬뜩한 주사", "name_fr_FR": "Seringue macabre", "name_de_DE": "Grausame Spritze", "name_zh_CN": "阴森注射器", "name_es_ES": "Jeringuilla truculenta", "name_ru_RU": "Изуверский шприц", "name_it_IT": "Siringa Terrificante", "name_pt_PT": "Seringa Pavorosa", "on_use": false, "id_encounter": 2612, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212453, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skyterror's Corrosive Organ", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 859873, "buy_price": 4299368, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035099983215332, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Skyterror's Corrosive Organ", "name_ko_KR": "하늘공포의 부식성 장기", "name_fr_FR": "Organe corrosif de terreur-du-ciel", "name_de_DE": "Ätzendes Himmelsschreckenorgan", "name_zh_CN": "天空恐魔的腐蚀腺体", "name_es_ES": "Órgano corrosivo de aterracielos", "name_ru_RU": "Разъедающий орган ужаса небес", "name_it_IT": "Organo Corrosivo del Terrore dei Cieli", "name_pt_PT": "Órgão Corrosivo do Celesterror", "on_use": true, "id_encounter": 2609, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212454, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mad Queen's Mandate", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 862947, "buy_price": 4314737, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0388000011444092, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Mad Queen's Mandate", "name_ko_KR": "미치광이 여왕의 칙령", "name_fr_FR": "Mandat de la reine folle", "name_de_DE": "Mandat der verrückten Königin", "name_zh_CN": "狂乱女王圣谕", "name_es_ES": "Mandato de la reina loca", "name_ru_RU": "Приказ безумной королевы", "name_it_IT": "Mandato della Regina Folle", "name_pt_PT": "Mandato da Rainha Louca", "on_use": true, "id_encounter": 2602, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212455, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "11.0 Raid Template - Physical DPS - Trinket", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 715102, "buy_price": 3575512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0424000024795532, "flags_1": 524304, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 280, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "11.0 Raid Template - Physical DPS - Trinket", "name_ko_KR": "11.0 Raid Template - Physical DPS - Trinket", "name_fr_FR": "11.0 Raid Template - Physical DPS - Trinket", "name_de_DE": "11.0 Raid Template - Physical DPS - Trinket", "name_zh_CN": "11.0 Raid Template - Physical DPS - Trinket", "name_es_ES": "11.0 Raid Template - Physical DPS - Trinket", "name_ru_RU": "11.0 Raid Template - Physical DPS - Trinket", "name_it_IT": "11.0 Raid Template - Physical DPS - Trinket", "name_pt_PT": "11.0 Raid Template - Physical DPS - Trinket", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 212456, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void Reaper's Contract", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 869011, "buy_price": 4345058, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0461000204086304, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1613, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Void Reaper's Contract", "name_ko_KR": "공허 사신의 계약", "name_fr_FR": "Contrat de faucheuse du Vide", "name_de_DE": "Vertrag des Leerenschnitters", "name_zh_CN": "虚空收割者的合约", "name_es_ES": "Contrato de segador del Vacío", "name_ru_RU": "Контракт жнеца Бездны", "name_it_IT": "Contratto della Mietitrice del Vuoto", "name_pt_PT": "Contrato do Anjo do Caos", "on_use": false, "id_encounter": 2601, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212457, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "11.0 Raid Template - INT - Trinket", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 720179, "buy_price": 3600895, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0498000383377075, "flags_1": 524304, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 280, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "11.0 Raid Template - INT - Trinket", "name_ko_KR": "11.0 Raid Template - INT - Trinket", "name_fr_FR": "11.0 Raid Template - INT - Trinket", "name_de_DE": "11.0 Raid Template - INT - Trinket", "name_zh_CN": "11.0 Raid Template - INT - Trinket", "name_es_ES": "11.0 Raid Template - INT - Trinket", "name_ru_RU": "11.0 Raid Template - INT - Trinket", "name_it_IT": "11.0 Raid Template - INT - Trinket", "name_pt_PT": "11.0 Raid Template - INT - Trinket", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 212682, "race_mask": 18446744073709551615, "desc": "When held the curio slowly pulses, as water begins enveloping and tightening around your heart, slowing your heartbeat.", "pad2": "", "pad1": "", "pad0": "", "name": "Water's Beating Heart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 563344, "buy_price": 2816724, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0461000204086304, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Water's Beating Heart", "name_ko_KR": "맥동하는 물의 심장", "name_fr_FR": "Cœur d’eau palpitant", "name_de_DE": "Schlagendes Herz des Wassers", "name_zh_CN": "流水脉动之心", "name_es_ES": "Corazón palpitante del agua", "name_ru_RU": "Бьющееся сердце воды", "name_it_IT": "Cuore Pulsante dell'Acqua", "name_pt_PT": "Coração Pulsante de Água", "on_use": false, "id_encounter": 2511, "id_journal_instance": 1204, "id_map": 2527, "instance_type": 1}, {"id": 212683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Globe of Jagged Ice", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555115, "buy_price": 2775577, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0498000383377075, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Globe of Jagged Ice", "name_ko_KR": "뾰족한 얼음 구체", "name_fr_FR": "Globe de glace tranchante", "name_de_DE": "Kugel aus gezacktem Eis", "name_zh_CN": "锯齿寒冰之球", "name_es_ES": "Globo de hielo dentado", "name_ru_RU": "Шар зубчатого льда", "name_it_IT": "Globo di Ghiaccio Scheggiato", "name_pt_PT": "Globo de Gelo Serrilhado", "on_use": true, "id_encounter": 2510, "id_journal_instance": 1204, "id_map": 2527, "instance_type": 1}, {"id": 212684, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Umbrelskul's Fractured Heart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499540, "buy_price": 2497703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9534000158309937, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Umbrelskul's Fractured Heart", "name_ko_KR": "엄브렐스컬의 조각난 심장", "name_fr_FR": "Cœur fracturé de Krânombrel", "name_de_DE": "Umbrelskuls gebrochenes Herz", "name_zh_CN": "安布雷斯库的破裂之心", "name_es_ES": "Corazón fracturado de Umbracráneo", "name_ru_RU": "Расколотое сердце Мраскула", "name_it_IT": "Cuore Spezzato di Umbrelskul", "name_pt_PT": "Coração Fraturado de Umbracrânio", "on_use": false, "id_encounter": 2508, "id_journal_instance": 1203, "id_map": 2515, "instance_type": 1}, {"id": 212685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Unstable Power", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9570000171661377, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Tome of Unstable Power", "name_ko_KR": "불안정한 마력의 고서", "name_fr_FR": "Tome de pouvoir instable", "name_de_DE": "Foliant der instabilen Macht", "name_zh_CN": "无常能量魔典", "name_es_ES": "Tomo de poder inestable", "name_ru_RU": "Фолиант ускользающего могущества", "name_it_IT": "Tomo del Potere Instabile", "name_pt_PT": "Tomo de Poder Instável", "on_use": false, "id_encounter": 2505, "id_journal_instance": 1203, "id_map": 2515, "instance_type": 1}, {"id": 212756, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Resonator", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555283, "buy_price": 2776417, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.949999988079071, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Inexorable Resonator", "name_ko_KR": "거침없는 공명기", "name_fr_FR": "Résonateur inexorable", "name_de_DE": "Unerbittlicher Schwinger", "name_zh_CN": "不屈共鸣器", "name_es_ES": "Resonador inexorable", "name_ru_RU": "Беспощадный резонатор", "name_it_IT": "Risonatore Inesorabile", "name_pt_PT": "Ressonador Inexorável", "on_use": false, "id_encounter": 2484, "id_journal_instance": 1197, "id_map": 2451, "instance_type": 1}, {"id": 212757, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Granyth's Enduring Scale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 534234, "buy_price": 2671171, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Granyth's Enduring Scale", "name_ko_KR": "그라니스의 인내하는 비늘", "name_fr_FR": "Écaille durable de Granyth", "name_de_DE": "Granyths robuste Schuppe", "name_zh_CN": "格拉尼斯的劲久之鳞", "name_es_ES": "Escama duradera de Granyth", "name_ru_RU": "Прочная чешуйка Гранита", "name_it_IT": "Scaglia Duratura di Granyth", "name_pt_PT": "Escama Perpétua de Granyth", "on_use": true, "id_encounter": 2498, "id_journal_instance": 1198, "id_map": 2516, "instance_type": 1}, {"id": 213423, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bygone Weapon Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 200, "stat_alloc_2": 200, "stat_alloc_3": 400, "stat_alloc_4": 50, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9830999970436096, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Bygone Weapon Charm", "name_ko_KR": "지나간 시절의 무기 부적", "name_fr_FR": "Charme d’arme d’autrefois", "name_de_DE": "Vergangene Waffenverzauberung", "name_zh_CN": "昔时武器护符", "name_es_ES": "Talismán de arma pretérito", "name_ru_RU": "Ветхий талисман для оружия", "name_it_IT": "Talismano d'Arma del Passato", "name_pt_PT": "Patuá de Armadura Arcaico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 213533, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Weapon Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 400, "stat_alloc_2": 400, "stat_alloc_3": 800, "stat_alloc_4": 100, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972100019454956, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 5, "name_en_US": "Ancient Weapon Charm", "name_ko_KR": "고대 무기 부적", "name_fr_FR": "Charme d’arme ancienne", "name_de_DE": "Uralte Waffenverzauberung", "name_zh_CN": "远古武器护符", "name_es_ES": "Talismán de arma antiguo", "name_ru_RU": "Древний талисман для оружия", "name_it_IT": "Talismano d'Arma Antico", "name_pt_PT": "Patuá de Arma Antigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 213534, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bygone Armor Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 200, "stat_alloc_2": 200, "stat_alloc_3": 400, "stat_alloc_4": 50, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9757999777793884, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Bygone Armor Charm", "name_ko_KR": "지나간 시절의 방어구 부적", "name_fr_FR": "Charme d’armure d’autrefois", "name_de_DE": "Vergangene Rüstungsverzauberung", "name_zh_CN": "昔时护甲护符", "name_es_ES": "Talismán de armadura pretérito", "name_ru_RU": "Ветхий талисман для брони", "name_it_IT": "Talismano d'Armatura del Passato", "name_pt_PT": "Patuá de Armadura Arcaico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 213535, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Armor Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 400, "stat_alloc_2": 400, "stat_alloc_3": 800, "stat_alloc_4": 100, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9794999957084656, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 5, "name_en_US": "Ancient Armor Charm", "name_ko_KR": "고대 방어구 부적", "name_fr_FR": "Charme d’armure ancienne", "name_de_DE": "Uralte Rüstungsverzauberung", "name_zh_CN": "远古护甲护符", "name_es_ES": "Talismán de armadura antiguo", "name_ru_RU": "Древний талисман для брони", "name_it_IT": "Talismano d'Armatura Antico", "name_pt_PT": "Patuá de Armadura Antigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215169, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Everburning Lantern", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9761999845504761, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Everburning Lantern", "name_ko_KR": "영원히 타오르는 등불", "name_fr_FR": "Lanterne semperardente", "name_de_DE": "Ewig brennende Laterne", "name_zh_CN": "永燃灯笼", "name_es_ES": "Farol de llama perpetua", "name_ru_RU": "Вечногорящий светильник", "name_it_IT": "Lanterna Inestinguibile", "name_pt_PT": "Lanterna de Fogo Perene", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215170, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Abyssal Trap", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797999858856201, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Abyssal Trap", "name_ko_KR": "심연의 덫", "name_fr_FR": "Piège abyssal", "name_de_DE": "Abgrundfalle", "name_zh_CN": "深渊陷阱", "name_es_ES": "Trampa abisal", "name_ru_RU": "Глубинная ловушка", "name_it_IT": "Trappola Abissale", "name_pt_PT": "Armadilha Abissal", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215171, "race_mask": 18446744073709551615, "desc": "Fungal Friends never truly die. Instead their spores seep back into the earth, birthing the Friend anew.", "pad2": "", "pad1": "", "pad0": "", "name": "Fungal Friend Flute", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9835000038146973, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Fungal Friend Flute", "name_ko_KR": "포자 친구 피리", "name_fr_FR": "Flûte d’ami fongique", "name_de_DE": "Flöte des Fungusfreunds", "name_zh_CN": "真菌之友长笛", "name_es_ES": "Flauta de amigo fúngico", "name_ru_RU": "Флейта грибных друзей", "name_it_IT": "Flauto dell'Amico Fungino", "name_pt_PT": "Flauta de Camaradinha Fúngico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215172, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Silken Chain Weaver", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872000217437744, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Silken Chain Weaver", "name_ko_KR": "비단 사슬 방직공", "name_fr_FR": "Tissage en soie", "name_de_DE": "Seidenkettenweber", "name_zh_CN": "绸缎织链器", "name_es_ES": "Tejido de anillas sedoso", "name_ru_RU": "Ткач шелковых цепей", "name_it_IT": "Nodo Inanellato di Seta", "name_pt_PT": "Tecelão de Corrente Sedosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215173, "race_mask": 18446744073709551615, "desc": "Side effects may include loss of balance, vomiting, extreme pain, short term memory loss, long term memory loss, loss of motor functions, hallucinations, and an insatiable appetite for small insects.", "pad2": "", "pad1": "", "pad0": "", "name": "Serum of Unconstrained Senses", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3333, "stat_alloc_2": 3333, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": 13, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499238, "buy_price": 2496191, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9908999800682068, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Serum of Unconstrained Senses", "name_ko_KR": "굴레를 벗어난 감각의 혈청", "name_fr_FR": "Sérum de sens débridés", "name_de_DE": "Serum der zügellosen Sinneseindrücke", "name_zh_CN": "无拘感官血清", "name_es_ES": "Sérum de sentidos desenfrenados", "name_ru_RU": "Сыворотка нескованных ощущений", "name_it_IT": "Siero dei Sensi Illimitati", "name_pt_PT": "Soro de Sentidos Irrestritos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215174, "race_mask": 18446744073709551615, "desc": "WARNING: Failure to administer the antidote shortly after consumption may result in death.", "pad2": "", "pad1": "", "pad0": "", "name": "Concoction: Kiss of Death", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944999814033508, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Concoction: Kiss of Death", "name_ko_KR": "혼합물: 죽음의 입맞춤", "name_fr_FR": "Concoction : Baiser de la mort", "name_de_DE": "Mixtur: Kuss des Todes", "name_zh_CN": "制剂:死亡之吻", "name_es_ES": "Brebaje: beso de la muerte", "name_ru_RU": "Отвар: поцелуй смерти", "name_it_IT": "Mistura: Bacio della Morte", "name_pt_PT": "Concocção: Beijo da Morte", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215175, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Belt of Vials", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.998199999332428, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Belt of Vials", "name_ko_KR": "약병 허리띠", "name_fr_FR": "Ceinture de fioles", "name_de_DE": "Phiolengurt", "name_zh_CN": "瓶剂带", "name_es_ES": "Cinturón de viales", "name_ru_RU": "Пояс с фиалами", "name_it_IT": "Cintura di Fiale", "name_pt_PT": "Cinto de Ampolas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215178, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadow-Binding Ritual Knife", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0091999769210815, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Shadow-Binding Ritual Knife", "name_ko_KR": "어둠결속 의식용 손칼", "name_fr_FR": "Couteau rituel liant les ombres", "name_de_DE": "Schattenbindendes Ritualmesser", "name_zh_CN": "影缚仪式刻刃", "name_es_ES": "Cuchillo de ritual vinculasombras", "name_ru_RU": "Ритуальный нож связи с Тьмой", "name_it_IT": "Coltello Rituale Vincolaombra", "name_pt_PT": "Faca Ritualística de Vínculo Sombrio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216279, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Gladiator's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 755830, "buy_price": 3779152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9763000011444092, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 493, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Draconic Gladiator's Badge of Ferocity", "name_ko_KR": "용족 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur draconique", "name_de_DE": "Wildheitsabzeichen des drakonischen Gladiators", "name_zh_CN": "腾龙角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador dracónico", "name_ru_RU": "Жетон свирепости драконьего гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Draconico", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216280, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Gladiator's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 758666, "buy_price": 3793331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9800000190734863, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 493, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Draconic Gladiator's Insignia of Alacrity", "name_ko_KR": "용족 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur draconique", "name_de_DE": "Inbrunstinsigne des drakonischen Gladiators", "name_zh_CN": "腾龙角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador dracónico", "name_ru_RU": "Знак расторопности драконьего гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Draconico", "name_pt_PT": "Insígnia de Diligência do Gladiador Dracônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216281, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Gladiator's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 761425, "buy_price": 3807126, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836000204086304, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 493, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Draconic Gladiator's Emblem", "name_ko_KR": "용족 검투사의 문장", "name_fr_FR": "Emblème du gladiateur draconique", "name_de_DE": "Emblem des drakonischen Gladiators", "name_zh_CN": "腾龙角斗士的纹章", "name_es_ES": "Emblema de Gladiador dracónico", "name_ru_RU": "Эмблема драконьего гладиатора", "name_it_IT": "Emblema del Gladiatore Draconico", "name_pt_PT": "Emblema do Gladiador Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216282, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Gladiator's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764261, "buy_price": 3821305, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 493, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Draconic Gladiator's Medallion", "name_ko_KR": "용족 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur draconique", "name_de_DE": "Medaillon des drakonischen Gladiators", "name_zh_CN": "腾龙角斗士的勋章", "name_es_ES": "Medallón de Gladiador dracónico", "name_ru_RU": "Медальон драконьего гладиатора", "name_it_IT": "Medaglione del Gladiatore Draconico", "name_pt_PT": "Medalhão do Gladiador Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216283, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Gladiator's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767096, "buy_price": 3835484, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9909999966621399, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 493, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Draconic Gladiator's Sigil of Adaptation", "name_ko_KR": "용족 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur draconique", "name_de_DE": "Siegel der Anpassung des drakonischen Gladiators", "name_zh_CN": "腾龙角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador dracónico", "name_ru_RU": "Печать адаптации драконьего гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Draconico", "name_pt_PT": "Signo de Adaptação do Gladiador Dracônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216368, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Aspirant's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 571871, "buy_price": 2859358, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0353000164031982, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 454, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Aspirant's Badge of Ferocity", "name_ko_KR": "용족 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant draconique", "name_de_DE": "Wildheitsabzeichen des drakonischen Aspiranten", "name_zh_CN": "腾龙候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Aspirante dracónico", "name_ru_RU": "Жетон свирепости драконьего претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Draconico", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216369, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Aspirant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 573954, "buy_price": 2869773, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0390000343322754, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 454, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Aspirant's Medallion", "name_ko_KR": "용족 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant draconique", "name_de_DE": "Medaillon des drakonischen Aspiranten", "name_zh_CN": "腾龙候选者的勋章", "name_es_ES": "Medallón de Aspirante dracónico", "name_ru_RU": "Медальон драконьего претендента", "name_it_IT": "Medaglione del Pretendente Draconico", "name_pt_PT": "Medalhão do Aspirante Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Aspirant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576037, "buy_price": 2880188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0427000522613525, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 454, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Aspirant's Insignia of Alacrity", "name_ko_KR": "용족 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant draconique", "name_de_DE": "Inbrunstinsigne des drakonischen Aspiranten", "name_zh_CN": "腾龙候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de Aspirante dracónico", "name_ru_RU": "Знак расторопности драконьего претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Draconico", "name_pt_PT": "Insígnia de Diligência do Aspirante Dracônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216371, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Aspirant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536685, "buy_price": 2683427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9726999998092651, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 454, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Aspirant's Emblem", "name_ko_KR": "용족 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant draconique", "name_de_DE": "Emblem des drakonischen Aspiranten", "name_zh_CN": "腾龙候选者的纹章", "name_es_ES": "Emblema de Aspirante dracónico", "name_ru_RU": "Эмблема драконьего претендента", "name_it_IT": "Emblema del Pretendente Draconico", "name_pt_PT": "Emblema do Aspirante Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216372, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Aspirant's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538712, "buy_price": 2693561, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764000177383423, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 454, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Aspirant's Sigil of Adaptation", "name_ko_KR": "용족 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant draconique", "name_de_DE": "Siegel der Anpassung des drakonischen Aspiranten", "name_zh_CN": "腾龙候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de Aspirante dracónico", "name_ru_RU": "Печать адаптации драконьего претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Draconico", "name_pt_PT": "Signo de Adaptação do Aspirante Dracônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216657, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Test Item C", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499540, "buy_price": 2497703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Test Item C", "name_ko_KR": "시험용 아이템 C", "name_fr_FR": "Objet de test C", "name_de_DE": "Testgegenstand C", "name_zh_CN": "测试物品C", "name_es_ES": "Objeto de prueba C", "name_ru_RU": "Тестовый предмет C", "name_it_IT": "Oggetto Test C", "name_pt_PT": "Item de Teste C", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217041, "race_mask": 18446744073709551615, "desc": "Urtago gave you this horn. Using it would briefly share your knowledge with others around you.", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of Declaration", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 712632, "buy_price": 3563164, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0169999599456787, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Horn of Declaration", "name_ko_KR": "선언의 뿔피리", "name_fr_FR": "Cor de déclaration", "name_de_DE": "Horn der Erklärung", "name_zh_CN": "宣言号角", "name_es_ES": "Cuerno de la declaración", "name_ru_RU": "Рог объявлений", "name_it_IT": "Corno della Dichiarazione", "name_pt_PT": "Trompa da Declaração", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217402, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Olden Armor Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 100, "stat_alloc_2": 100, "stat_alloc_3": 200, "stat_alloc_4": 50, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506000280380249, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Olden Armor Charm", "name_ko_KR": "낡은 방어구 부적", "name_fr_FR": "Charme d’armure de l’ancien temps", "name_de_DE": "Altertümliche Rüstungsverzauberung", "name_zh_CN": "往岁护甲护符", "name_es_ES": "Talismán de armadura de antaño", "name_ru_RU": "Былой талисман для брони", "name_it_IT": "Talismano d'Armatura Invecchiato", "name_pt_PT": "Patuá de Armadura Antigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217403, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Olden Weapon Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 100, "stat_alloc_2": 100, "stat_alloc_3": 200, "stat_alloc_4": 50, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954200029373169, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Olden Weapon Charm", "name_ko_KR": "낡은 무기 부적", "name_fr_FR": "Charme d’arme de l’ancien temps", "name_de_DE": "Altertümliche Waffenverzauberung", "name_zh_CN": "往岁武器护符", "name_es_ES": "Talismán de arma de antaño", "name_ru_RU": "Былой талисман для оружия", "name_it_IT": "Talismano d'Arma Invecchiato", "name_pt_PT": "Patuá de Arma Antigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217404, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time-Worn Armor Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 50, "stat_alloc_2": 50, "stat_alloc_3": 100, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Time-Worn Armor Charm", "name_ko_KR": "세월에 마모된 방어구 부적", "name_fr_FR": "Charme d’armure usée par le temps", "name_de_DE": "Von der Zeit gezeichnete Rüstungsverzauberung", "name_zh_CN": "陈年护甲护符", "name_es_ES": "Talismán de armadura desgastado por el tiempo", "name_ru_RU": "Обветшалый талисман для брони", "name_it_IT": "Talismano d'Armatura Consumato dal Tempo", "name_pt_PT": "Patuá de Armadura Desgastado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217405, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time-Worn Weapon Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 50, "stat_alloc_2": 50, "stat_alloc_3": 100, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Time-Worn Weapon Charm", "name_ko_KR": "세월에 마모된 무기 부적", "name_fr_FR": "Charme d’arme usée par le temps", "name_de_DE": "Von der Zeit gezeichnete Waffenverzauberung", "name_zh_CN": "陈年武器护符", "name_es_ES": "Talismán de arma desgastado por el tiempo", "name_ru_RU": "Обветшалый талисман для оружия", "name_it_IT": "Talismano d'Arma Consumato dal Tempo", "name_pt_PT": "Patuá de Arma Desgastado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217894, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nerubian Pheromone Secreter", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502999782562256, "flags_1": 528448, "flags_2": 12288, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 26, "socket_color_2": 26, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 3, "name_en_US": "Nerubian Pheromone Secreter", "name_ko_KR": "네루비안 페로몬 분비 장치", "name_fr_FR": "Sécréteur de phéromones nérubiennes", "name_de_DE": "Neruberpheromonabsonderer", "name_zh_CN": "蛛魔信息素分泌装置", "name_es_ES": "Glándula de feromonas nerubianas", "name_ru_RU": "Секретор нерубских феромонов", "name_it_IT": "Secretore di Feromoni Nerubiani", "name_pt_PT": "Secretor de Feromônios Nerubianos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildfire Wick", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 400623, "buy_price": 2003116, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954200029373169, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Wildfire Wick", "name_ko_KR": "야생불 심지", "name_fr_FR": "Mèche de flambée", "name_de_DE": "Lauffeuerdocht", "name_zh_CN": "野火烛芯", "name_es_ES": "Mecha de fuego salvaje", "name_ru_RU": "Фитиль дикого огня", "name_it_IT": "Miccia di Fuocobrado", "name_pt_PT": "Pavio do Fogo Indômito", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218421, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Aspirant's Badge of Ferocity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 571871, "buy_price": 2859358, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Forged Aspirant's Badge of Ferocity", "name_ko_KR": "제련된 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant forgé", "name_de_DE": "Wildheitsabzeichen des geschmiedeten Aspiranten", "name_zh_CN": "炉铸候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante forjado", "name_ru_RU": "Жетон свирепости кованого претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Forgiato", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218422, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Aspirant's Medallion", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 573954, "buy_price": 2869773, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Forged Aspirant's Medallion", "name_ko_KR": "제련된 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant forgé", "name_de_DE": "Medaillon des geschmiedeten Aspiranten", "name_zh_CN": "炉铸候选者的勋章", "name_es_ES": "Medallón de aspirante forjado", "name_ru_RU": "Медальон кованого претендента", "name_it_IT": "Medaglione del Pretendente Forgiato", "name_pt_PT": "Medalhão do Aspirante Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218423, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Aspirant's Insignia of Alacrity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576037, "buy_price": 2880188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Forged Aspirant's Insignia of Alacrity", "name_ko_KR": "제련된 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant forgé", "name_de_DE": "Inbrunstinsigne des geschmiedeten Aspiranten", "name_zh_CN": "炉铸候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante forjado", "name_ru_RU": "Знак расторопности кованого претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Forgiato", "name_pt_PT": "Insígnia de Diligência do Aspirante Forjado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Aspirant's Emblem", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536685, "buy_price": 2683427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Forged Aspirant's Emblem", "name_ko_KR": "제련된 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant forgé", "name_de_DE": "Emblem des geschmiedeten Aspiranten", "name_zh_CN": "炉铸候选者的纹章", "name_es_ES": "Emblema de aspirante forjado", "name_ru_RU": "Эмблема кованого претендента", "name_it_IT": "Emblema del Pretendente Forgiato", "name_pt_PT": "Emblema do Aspirante Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218425, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Aspirant's Sigil of Adaptation", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538712, "buy_price": 2693561, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972599983215332, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Forged Aspirant's Sigil of Adaptation", "name_ko_KR": "제련된 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant forgé", "name_de_DE": "Siegel der Anpassung des geschmiedeten Aspiranten", "name_zh_CN": "炉铸候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante forjado", "name_ru_RU": "Печать адаптации кованого претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Forgiato", "name_pt_PT": "Signo de Adaptação do Aspirante Forjado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218713, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Gladiator's Badge of Ferocity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 755830, "buy_price": 3779152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.00600004196167, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Forged Gladiator's Badge of Ferocity", "name_ko_KR": "제련된 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur forgé", "name_de_DE": "Wildheitsabzeichen des geschmiedeten Gladiators", "name_zh_CN": "炉铸角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador forjado", "name_ru_RU": "Жетон свирепости кованого гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Forgiato", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218714, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Gladiator's Insignia of Alacrity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 758666, "buy_price": 3793331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0096999406814575, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Forged Gladiator's Insignia of Alacrity", "name_ko_KR": "제련된 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur forgé", "name_de_DE": "Inbrunstinsigne des geschmiedeten Gladiators", "name_zh_CN": "炉铸角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador forjado", "name_ru_RU": "Знак расторопности кованого гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Forgiato", "name_pt_PT": "Insígnia de Diligência do Gladiador Forjado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Gladiator's Emblem", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 761425, "buy_price": 3807126, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0133999586105347, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Forged Gladiator's Emblem", "name_ko_KR": "제련된 검투사의 문장", "name_fr_FR": "Emblème du gladiateur forgé", "name_de_DE": "Emblem des geschmiedeten Gladiators", "name_zh_CN": "炉铸角斗士的纹章", "name_es_ES": "Emblema de Gladiador forjado", "name_ru_RU": "Эмблема кованого гладиатора", "name_it_IT": "Emblema del Gladiatore Forgiato", "name_pt_PT": "Emblema do Gladiador Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218716, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Gladiator's Medallion", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764261, "buy_price": 3821305, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0170999765396118, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Forged Gladiator's Medallion", "name_ko_KR": "제련된 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur forgé", "name_de_DE": "Medaillon des geschmiedeten Gladiators", "name_zh_CN": "炉铸角斗士的勋章", "name_es_ES": "Medallón de Gladiador forjado", "name_ru_RU": "Медальон кованого гладиатора", "name_it_IT": "Medaglione del Gladiatore Forgiato", "name_pt_PT": "Medalhão do Gladiador Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218717, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Gladiator's Sigil of Adaptation", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767096, "buy_price": 3835484, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0206999778747559, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Forged Gladiator's Sigil of Adaptation", "name_ko_KR": "제련된 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur forgé", "name_de_DE": "Siegel der Anpassung des geschmiedeten Gladiators", "name_zh_CN": "炉铸角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador forjado", "name_ru_RU": "Печать адаптации кованого гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Forgiato", "name_pt_PT": "Signo de Adaptação do Gladiador Forjado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219014, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vengeful Fire Spirit", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013700008392334, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Vengeful Fire Spirit", "name_ko_KR": "복수심에 타오르는 불의 정령", "name_fr_FR": "Esprit vengeur du feu", "name_de_DE": "Rachsüchtiger Feuergeist", "name_zh_CN": "怨仇烈焰之灵", "name_es_ES": "Espíritu de fuego vengativo", "name_ru_RU": "Мстительный дух огня", "name_it_IT": "Spirito del Fuoco Vendicativo", "name_pt_PT": "Espírito de Fogo Vingativo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Esteemed Earthen Emblem", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Esteemed Earthen Emblem", "name_ko_KR": "존경받는 토석인 상징", "name_fr_FR": "Emblème terrestre estimé", "name_de_DE": "Hochverehrtes Emblem der Irdenen", "name_zh_CN": "尊贵土灵徽章", "name_es_ES": "Emblema de terráneo estimado", "name_ru_RU": "Знак заслуженного земельника", "name_it_IT": "Emblema di Stima dei Terrigeni", "name_pt_PT": "Emblema Terrano Estimado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219294, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charged Stormrook Plume", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 566056, "buy_price": 2830284, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9911999702453613, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Charged Stormrook Plume", "name_ko_KR": "충만한 폭풍떼까마귀 깃발", "name_fr_FR": "Plumet de freux de la tempête chargé", "name_de_DE": "Energiegeladene Sturmkrähenfeder", "name_zh_CN": "充能雷鸫飞羽", "name_es_ES": "Pluma de tormengrajo cargada", "name_ru_RU": "Заряженное перо буреклюва", "name_it_IT": "Piuma di Corvo della Tempesta Caricata", "name_pt_PT": "Pluma de Corventa Carregada", "on_use": true, "id_encounter": 2566, "id_journal_instance": 1268, "id_map": 2648, "instance_type": 1}, {"id": 219295, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Algari Concordance", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 568169, "buy_price": 2840849, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9948999881744385, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Sigil of Algari Concordance", "name_ko_KR": "알가르 색인의 인장", "name_fr_FR": "Sceau de concordance algari", "name_de_DE": "Siegel der algarischen Einigkeit", "name_zh_CN": "阿加调谐魔印", "name_es_ES": "Sello de concordancia algariana", "name_ru_RU": "Печать алгарийского согласия", "name_it_IT": "Sigillo dell'Armonia Algari", "name_pt_PT": "Signo de Concórdia Algari", "on_use": false, "id_encounter": 2567, "id_journal_instance": 1268, "id_map": 2648, "instance_type": 1}, {"id": 219296, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Entropic Skardyn Core", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 570282, "buy_price": 2851414, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9986000061035156, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Entropic Skardyn Core", "name_ko_KR": "혼돈의 스카르딘 핵", "name_fr_FR": "Noyau de Skardyn entropique", "name_de_DE": "Entropischer Skardynkern", "name_zh_CN": "熵能斯卡丁之核", "name_es_ES": "Núcleo skardyn entrópico", "name_ru_RU": "Энтропический сердечник скардина", "name_it_IT": "Nucleo Entropico degli Skardyn", "name_pt_PT": "Núcleo Skardyn Entrópico", "on_use": false, "id_encounter": 2568, "id_journal_instance": 1268, "id_map": 2648, "instance_type": 1}, {"id": 219297, "race_mask": 18446744073709551615, "desc": "Watered down for consumption by lesser mortals.", "pad2": "", "pad1": "", "pad0": "", "name": "Cinderbrew Stein", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 587472, "buy_price": 2937362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0286999940872192, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Cinderbrew Stein", "name_ko_KR": "커다란 잿불맥주 잔", "name_fr_FR": "Chope de Brassecendre", "name_de_DE": "Glutbräukrug", "name_zh_CN": "燧酿酒杯", "name_es_ES": "Jarra de Tragoceniza", "name_ru_RU": "Кружка искрохмеля", "name_it_IT": "Boccale di Idromele Cinereo", "name_pt_PT": "Caneco de Cinzagris", "on_use": false, "id_encounter": 2586, "id_journal_instance": 1272, "id_map": 2661, "instance_type": 1}, {"id": 219298, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ravenous Honey Buzzer", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 589585, "buy_price": 2947927, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Ravenous Honey Buzzer", "name_ko_KR": "게걸스러운 꿀 호출기", "name_fr_FR": "Bourdonneur de miel vorace", "name_de_DE": "Gefräßiger Honigbrummer", "name_zh_CN": "贪食蜂鸣器", "name_es_ES": "Zumbón de miel voraz", "name_ru_RU": "Прожорливый медовый жужжальщик", "name_it_IT": "Vespa del Miele Vorace", "name_pt_PT": "Zumbizão de Mel Voraz", "on_use": true, "id_encounter": 2588, "id_journal_instance": 1272, "id_map": 2661, "instance_type": 1}, {"id": 219299, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Synergistic Brewterializer", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 591698, "buy_price": 2958492, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0361000299453735, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Synergistic Brewterializer", "name_ko_KR": "상승성 맥주 실체화 장치", "name_fr_FR": "Biéraliseur synergétique", "name_de_DE": "Synergetischer Gebräuterialisator", "name_zh_CN": "协同化酒器", "name_es_ES": "Birraterializador sinergético", "name_ru_RU": "Синергичный хмелегенератор", "name_it_IT": "Materializzatore di Barili Sinergico", "name_pt_PT": "Fermentalizador Sinergético", "on_use": false, "id_encounter": 2589, "id_journal_instance": 1272, "id_map": 2661, "instance_type": 1}, {"id": 219300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skarmorak Shard", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 593811, "buy_price": 2969057, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0398000478744507, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Skarmorak Shard", "name_ko_KR": "스카모락 파편", "name_fr_FR": "Fragment de Skarmorak", "name_de_DE": "Skarmoraksplitter", "name_zh_CN": "斯卡莫拉克碎片", "name_es_ES": "Fragmento de Skarmorak", "name_ru_RU": "Осколок Скарморака", "name_it_IT": "Scheggia di Skarmorak", "name_pt_PT": "Estilhaço Skarmorak", "on_use": true, "id_encounter": 2579, "id_journal_instance": 1269, "id_map": 2652, "instance_type": 1}, {"id": 219301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overclocked Gear-a-Rang Launcher", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 595867, "buy_price": 2979337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0434000492095947, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Overclocked Gear-a-Rang Launcher", "name_ko_KR": "과부하된 톱니바퀴 부메랑 발사기", "name_fr_FR": "Lanceur d’écroumerang suralimenté", "name_de_DE": "Übertakteter Zahnradbumerangwerfer", "name_zh_CN": "超频回旋齿轮发射器", "name_es_ES": "Lanzador de equiporang sobrecargado", "name_ru_RU": "Разогнанный метатель шестерангов", "name_it_IT": "Lanciatore di Ingranarang Velocizzato", "name_pt_PT": "Lança-engrenangue Turbinado", "on_use": true, "id_encounter": 2590, "id_journal_instance": 1269, "id_map": 2652, "instance_type": 1}, {"id": 219302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scrapsinger's Symphony", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 597980, "buy_price": 2989901, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0470999479293823, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Scrapsinger's Symphony", "name_ko_KR": "고물노래꾼의 교향곡", "name_fr_FR": "Symphonie du chante-ferraille", "name_de_DE": "Symphonie des Schrottsängers", "name_zh_CN": "吟屑交响曲", "name_es_ES": "Sinfonía de cantachatarra", "name_ru_RU": "Симфония голоса хлама", "name_it_IT": "Sinfonia del Cantascarti", "name_pt_PT": "Sinfonia de Canta-sucata", "on_use": false, "id_encounter": 2590, "id_journal_instance": 1269, "id_map": 2652, "instance_type": 1}, {"id": 219303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "High Speaker's Accretion", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542928, "buy_price": 2714640, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506999850273132, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "High Speaker's Accretion", "name_ko_KR": "고위 대변자의 부착물", "name_fr_FR": "Accrétion du haut-mandataire", "name_de_DE": "Zuwachs des Obersten Sprechers", "name_zh_CN": "高阶代言人的吸积水晶", "name_es_ES": "Acrecentamiento de alto orador", "name_ru_RU": "Срастание верховного глашатая", "name_it_IT": "Concrezione del Gran Oratore", "name_pt_PT": "Acreção do Grão-mensageiro", "on_use": true, "id_encounter": 2582, "id_journal_instance": 1269, "id_map": 2652, "instance_type": 1}, {"id": 219304, "race_mask": 18446744073709551615, "desc": "A hero's symbolic trophy, for the kobolds need not be summoned. The kobolds yearn for the catacombs.", "pad2": "", "pad1": "", "pad0": "", "name": "Conductor's Wax Whistle", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545041, "buy_price": 2725205, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9544000029563904, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Conductor's Wax Whistle", "name_ko_KR": "지휘자의 밀랍 호루라기", "name_fr_FR": "Sifflet de conducteur en cire", "name_de_DE": "Wachspfeife des Wagenführers", "name_zh_CN": "矿车员的蜡哨", "name_es_ES": "Silbato de cera de conductor", "name_ru_RU": "Восковой свисток проводника", "name_it_IT": "Fischietto di Cera del Conduttore", "name_pt_PT": "Apito de Cera do Condutor", "on_use": false, "id_encounter": 2569, "id_journal_instance": 1210, "id_map": 2651, "instance_type": 1}, {"id": 219305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carved Blazikon Wax", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 547096, "buy_price": 2735484, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9580000042915344, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Carved Blazikon Wax", "name_ko_KR": "조각된 블레지콘 밀랍", "name_fr_FR": "Cire de Blazikon sculptée", "name_de_DE": "Verziertes Lohenzarwachs", "name_zh_CN": "布雷炙孔琢蜡", "name_es_ES": "Cera del Llamakon tallada", "name_ru_RU": "Резной воск Пламекона", "name_it_IT": "Cera di Ardikon Intagliata", "name_pt_PT": "Cera de Brasikon Entalhada", "on_use": false, "id_encounter": 2559, "id_journal_instance": 1210, "id_map": 2651, "instance_type": 1}, {"id": 219306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burin of the Candle King", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 549209, "buy_price": 2746049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9617000222206116, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Burin of the Candle King", "name_ko_KR": "양초왕의 조각칼", "name_fr_FR": "Burin du roi-bougie", "name_de_DE": "Stichel des Kerzenkönigs", "name_zh_CN": "蜡烛之王的雕刀", "name_es_ES": "Punzón del Rey Vela", "name_ru_RU": "Резец Свечного Короля", "name_it_IT": "Bulino del Re delle Candele", "name_pt_PT": "Buril do Rei da Vela", "on_use": true, "id_encounter": 2560, "id_journal_instance": 1210, "id_map": 2651, "instance_type": 1}, {"id": 219307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Remnant of Darkness", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 551322, "buy_price": 2756614, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965399980545044, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Remnant of Darkness", "name_ko_KR": "어둠의 잔재", "name_fr_FR": "Vestiges de ténèbres", "name_de_DE": "Fragment der Dunkelheit", "name_zh_CN": "黑暗之主残影", "name_es_ES": "Remanente de oscuridad", "name_ru_RU": "Частица Тьмы", "name_it_IT": "Residuo di Tenebra", "name_pt_PT": "Resquício da Escuridão", "on_use": false, "id_encounter": 2561, "id_journal_instance": 1210, "id_map": 2651, "instance_type": 1}, {"id": 219308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Signet of the Priory", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 553378, "buy_price": 2766894, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968999981880188, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Signet of the Priory", "name_ko_KR": "수도원의 인장", "name_fr_FR": "Chevalière du prieuré", "name_de_DE": "Siegel des Priorats", "name_zh_CN": "隐修院印章", "name_es_ES": "Sello del priorato", "name_ru_RU": "Перстень приората", "name_it_IT": "Anello con Sigillo della Prioria", "name_pt_PT": "Sinete do Priorado", "on_use": true, "id_encounter": 2571, "id_journal_instance": 1267, "id_map": 2649, "instance_type": 1}, {"id": 219309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Light's Devotion", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555491, "buy_price": 2777459, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9726999998092651, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Tome of Light's Devotion", "name_ko_KR": "빛의 헌신의 고서", "name_fr_FR": "Tome de dévotion à la lumière", "name_de_DE": "Foliant der Hingabe des Lichts", "name_zh_CN": "圣光虔敬魔典", "name_es_ES": "Tomo de devoción de la Luz", "name_ru_RU": "Фолиант благочестия Света", "name_it_IT": "Tomo della Devozione alla Luce", "name_pt_PT": "Devoção do Tomo da Luz", "on_use": true, "id_encounter": 2570, "id_journal_instance": 1267, "id_map": 2649, "instance_type": 1}, {"id": 219310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bursting Lightshard", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 557604, "buy_price": 2788024, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764000177383423, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Bursting Lightshard", "name_ko_KR": "폭발하는 빛조각", "name_fr_FR": "Fragment de lumière détonant", "name_de_DE": "Explodierender Lichtsplitter", "name_zh_CN": "爆裂圣光碎片", "name_es_ES": "Fragmento de luz detonante", "name_ru_RU": "Взрывающийся осколок Света", "name_it_IT": "Scheggialuce Esplosiva", "name_pt_PT": "Lascaluz Estilhaçante", "on_use": true, "id_encounter": 2573, "id_journal_instance": 1267, "id_map": 2649, "instance_type": 1}, {"id": 219311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void Pactstone", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 559717, "buy_price": 2798589, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9800999760627747, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Void Pactstone", "name_ko_KR": "공허 서약석", "name_fr_FR": "Pierre de pacte du Vide", "name_de_DE": "Leerenpaktstein", "name_zh_CN": "虚空契约石", "name_es_ES": "Piedra del pacto del Vacío", "name_ru_RU": "Камень договора с Бездной", "name_it_IT": "Pietra del Patto del Vuoto", "name_pt_PT": "Pedra-pacto do Caos", "on_use": false, "id_encounter": 2580, "id_journal_instance": 1270, "id_map": 2662, "instance_type": 1}, {"id": 219312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empowering Crystal of Anub'ikkaj", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 561773, "buy_price": 2808868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836999773979187, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Empowering Crystal of Anub'ikkaj", "name_ko_KR": "아눕이카즈의 강화의 수정", "name_fr_FR": "Cristal de renforcement d’Anub’ikkaj", "name_de_DE": "Ermächtigender Kristall von Anub'ikkaj", "name_zh_CN": "阿努布伊卡基强能水晶", "name_es_ES": "Cristal potenciador de Anub'ikkaj", "name_ru_RU": "Усиливающий кристалл Ануб'иккаджа", "name_it_IT": "Cristallo Potenziante di Anub'ikkaj", "name_pt_PT": "Cristal Potencializador of Anub'ikkaj", "on_use": false, "id_encounter": 2581, "id_journal_instance": 1270, "id_map": 2662, "instance_type": 1}, {"id": 219313, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mereldar's Toll", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 579020, "buy_price": 2895102, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0139000415802002, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Mereldar's Toll", "name_ko_KR": "메렐다르의 종", "name_fr_FR": "Glas de Mereldar", "name_de_DE": "Mereldars Tribut", "name_zh_CN": "米雷达尔洪钟", "name_es_ES": "Campana de Mereldar", "name_ru_RU": "Благовест Мерельдара", "name_it_IT": "Rintocco di Mereldar", "name_pt_PT": "Dobre de Mereldar", "on_use": true, "id_encounter": 2593, "id_journal_instance": 1270, "id_map": 2662, "instance_type": 1}, {"id": 219314, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ara-Kara Sacbrood", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 581133, "buy_price": 2905667, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0176000595092773, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Ara-Kara Sacbrood", "name_ko_KR": "아라카라 낭충봉아", "name_fr_FR": "Essaim d’œufs d’Ara-Kara", "name_de_DE": "Kokonbrut von Ara-Kara", "name_zh_CN": "艾拉-卡拉卵囊", "name_es_ES": "Saco eclosionador de Ara-Kara", "name_ru_RU": "Кокон выводка Ара-Кары", "name_it_IT": "Sacca della Stirpe di Ara-Kara", "name_pt_PT": "Bolsa de Ninhada Ara-Kara", "on_use": false, "id_encounter": 2583, "id_journal_instance": 1271, "id_map": 2660, "instance_type": 1}, {"id": 219315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Refracting Aggression Module", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 583246, "buy_price": 2916232, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.021299958229065, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Refracting Aggression Module", "name_ko_KR": "공격성 굴절 모듈", "name_fr_FR": "Module de réfraction des agressions", "name_de_DE": "Aggressionsablenkungsmodul", "name_zh_CN": "折转侵攻模组", "name_es_ES": "Módulo de agresión refractante", "name_ru_RU": "Модуль преломления агрессии", "name_it_IT": "Modulo d'Aggressione Rifrangente", "name_pt_PT": "Módulo de Agressão Refrator", "on_use": false, "id_encounter": 2572, "id_journal_instance": 1269, "id_map": 2652, "instance_type": 1}, {"id": 219316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ceaseless Swarmgland", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 585302, "buy_price": 2926511, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Ceaseless Swarmgland", "name_ko_KR": "멈추지 않는 무리벌레샘", "name_fr_FR": "Glande de l’essaim perpétuel", "name_de_DE": "Endlose Schwarmdrüse", "name_zh_CN": "无休虫群腺体", "name_es_ES": "Glándula de enjambre incesante", "name_ru_RU": "Железа бесконечного роя", "name_it_IT": "Ghiandola di Sciame Incessante", "name_pt_PT": "Glândula de Enxame Incessante", "on_use": false, "id_encounter": 2584, "id_journal_instance": 1271, "id_map": 2660, "instance_type": 1}, {"id": 219317, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harvester's Edict", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 587415, "buy_price": 2937076, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Harvester's Edict", "name_ko_KR": "수확자의 칙령", "name_fr_FR": "Édit de moissonneur", "name_de_DE": "Edikt des Ernters", "name_zh_CN": "收割者之诏", "name_es_ES": "Edicto de cosechador", "name_ru_RU": "Эдикт жнеца", "name_it_IT": "Editto del Mietitore", "name_pt_PT": "Édito do Ceifador", "on_use": false, "id_encounter": 2585, "id_journal_instance": 1271, "id_map": 2660, "instance_type": 1}, {"id": 219318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oppressive Orator's Larynx", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 589528, "buy_price": 2947641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0322999954223633, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Oppressive Orator's Larynx", "name_ko_KR": "억압적인 웅변가의 후두", "name_fr_FR": "Larynx d’orateur oppresseur", "name_de_DE": "Kehlkopf des oppressiven Orators", "name_zh_CN": "暴虐演说者的喉头", "name_es_ES": "Laringe de orador opresivo", "name_ru_RU": "Гортань гнетущего оратора", "name_it_IT": "Laringe dell'Oratore Opprimente", "name_pt_PT": "Laringe do Orador Opressivo", "on_use": true, "id_encounter": 2594, "id_journal_instance": 1274, "id_map": 2669, "instance_type": 1}, {"id": 219319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Twin Fang Instruments", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 591641, "buy_price": 2958206, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0360000133514404, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Twin Fang Instruments", "name_ko_KR": "쌍둥이 송곳니 기구", "name_fr_FR": "Instruments à doubles crocs", "name_de_DE": "Doppelfangbesteck", "name_zh_CN": "双牙军械", "name_es_ES": "Instrumentos de colmillos gemelos", "name_ru_RU": "Инструменты сдвоенных клыков", "name_it_IT": "Strumenti delle Zanne Gemelle", "name_pt_PT": "Instrumentos Presas Gêmeas", "on_use": true, "id_encounter": 2595, "id_journal_instance": 1274, "id_map": 2669, "instance_type": 1}, {"id": 219320, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Viscous Coaglam", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 593697, "buy_price": 2968486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0396000146865845, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Viscous Coaglam", "name_ko_KR": "점성 응집물", "name_fr_FR": "Coaglam visqueux", "name_de_DE": "Zähflüssiges Koaglam", "name_zh_CN": "粘稠聚合物", "name_es_ES": "Coágulo viscoso", "name_ru_RU": "Вязкий сгусток", "name_it_IT": "Amalgama Coagulato Viscoso", "name_pt_PT": "Coágulo Viscoso", "on_use": true, "id_encounter": 2600, "id_journal_instance": 1274, "id_map": 2669, "instance_type": 1}, {"id": 219321, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cirral Concoctory", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 595810, "buy_price": 2979051, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0433000326156616, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Cirral Concoctory", "name_ko_KR": "구름의 비약", "name_fr_FR": "Concoctoire de Cirral", "name_de_DE": "Rankendes Mixtorium", "name_zh_CN": "卷须调制器", "name_es_ES": "Brebaje cirroso", "name_ru_RU": "Щетинистый котелок", "name_it_IT": "Mistura Cirrale", "name_pt_PT": "Concoctório Cirral", "on_use": false, "id_encounter": 2596, "id_journal_instance": 1274, "id_map": 2669, "instance_type": 1}, {"id": 219672, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Radiance", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 845469, "buy_price": 4227345, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013800024986267, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Radiance", "name_ko_KR": "다크문 카드 한 벌: 광휘", "name_fr_FR": "Suite de Sombrelune : brillance", "name_de_DE": "Dunkelmondkartenset: Glanz", "name_zh_CN": "暗月套牌:光辉", "name_es_ES": "Colección de la Luna Negra: Resplandor", "name_ru_RU": "Колода карт Новолуния \"Сияние\"", "name_it_IT": "Mazzo della Radiosità di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Resplendor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219673, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmook Deck: Symbiosis", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0175000429153442, "flags_1": 80, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmook Deck: Symbiosis", "name_ko_KR": "다크문 카드 한 벌: 공생", "name_fr_FR": "Suite de Sombrelune : Symbiose", "name_de_DE": "Dunkelmond-Kartenset: Symbiose", "name_zh_CN": "暗月套牌:共生", "name_es_ES": "Colección de la Luna Negra: Simbiosis", "name_ru_RU": "Колода карт Новолуния \"Симбиоз\"", "name_it_IT": "Mazzo della Simbiosi di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Simbiose", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219674, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Evolve", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211000442504883, "flags_1": 80, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Evolve", "name_ko_KR": "다크문 카드 한 벌: 진화", "name_fr_FR": "Suite de Sombrelune : Évolution", "name_de_DE": "Dunkelmondkartenset: Entwicklung", "name_zh_CN": "暗月套牌:演化", "name_es_ES": "Colección de la Luna Negra: Evolución", "name_ru_RU": "Колода карт Новолуния \"Эволюция\"", "name_it_IT": "Mazzo dell'Evoluzione di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Evolução", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219675, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Vivacity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 80, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Vivacity", "name_ko_KR": "다크문 카드 한 벌: 생기", "name_fr_FR": "Suite de Sombrelune : Vivacité", "name_de_DE": "Dunkelmondkartenset: Lebhaftigkeit", "name_zh_CN": "暗月套牌:盎溢", "name_es_ES": "Colección de la Luna Negra: Vivacidad", "name_ru_RU": "Колода карт Новолуния \"Бодрость\"", "name_it_IT": "Mazzo della Vivacità di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Vivacidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219915, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Foul Behemoth's Chelicera", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 832875, "buy_price": 4164377, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Foul Behemoth's Chelicera", "name_ko_KR": "부정한 거수의 칼리세라", "name_fr_FR": "Chélicère du béhémoth fétide", "name_de_DE": "Beißwerkzeug des besudelten Behemoths", "name_zh_CN": "邪污巨兽的螫肢", "name_es_ES": "Quelícera de behemoth infecto", "name_ru_RU": "Хелицера гнусного чудища", "name_it_IT": "Chelicera del Behemoth Corrotto", "name_pt_PT": "Quelícera do Beemote Repugnante", "on_use": true, "id_encounter": 2607, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 219916, "race_mask": 18446744073709551615, "desc": "A symbol of adventure, discovery, and camaraderie. Intrusted to you by Brann Bronzebeard himself.", "pad2": "", "pad1": "", "pad0": "", "name": "Bronzebeard Family Compass", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0062999725341797, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 597, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 5, "name_en_US": "Bronzebeard Family Compass", "name_ko_KR": "브론즈비어드 가문 나침반", "name_fr_FR": "Boussole de la famille Barbe-de-Bronze", "name_de_DE": "Kompass der Familie Bronzebart", "name_zh_CN": "铜须家传罗盘", "name_es_ES": "Brújula de la familia Barbabronce", "name_ru_RU": "Фамильный компас Бронзобородов", "name_it_IT": "Bussola di Famiglia dei Barbabronzea", "name_pt_PT": "Bússola da Família Barbabronze", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219917, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Creeping Coagulum", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 839022, "buy_price": 4195113, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0099999904632568, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Creeping Coagulum", "name_ko_KR": "엄습하는 응혈", "name_fr_FR": "Coagulation rampante", "name_de_DE": "Kriechendes Koagulum", "name_zh_CN": "蠕行凝块", "name_es_ES": "Coágulo reptante", "name_ru_RU": "Ползучий коагулят", "name_it_IT": "Coagulo Strisciante", "name_pt_PT": "Coágulo Crescente", "on_use": true, "id_encounter": 2611, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 219931, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Algari Competitor's Medallion", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450508, "buy_price": 2252540, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 50331648, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Algari Competitor's Medallion", "name_ko_KR": "알가르 경쟁자의 메달", "name_fr_FR": "Médaillon de compétition algari", "name_de_DE": "Medaillon des Algariwettkämpfers", "name_zh_CN": "阿加竞争者的勋章", "name_es_ES": "Medallón de competidor algariano", "name_ru_RU": "Медальон алгарийского бойца", "name_it_IT": "Medaglione del Concorrente Algari", "name_pt_PT": "Medalhão do Competidor Algari", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219932, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Algari Competitor's Insignia of Alacrity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 516794, "buy_price": 2583970, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Algari Competitor's Insignia of Alacrity", "name_ko_KR": "알가르 경쟁자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de compétition algari", "name_de_DE": "Inbrunstinsigne des Algariwettkämpfers", "name_zh_CN": "阿加竞争者的活跃徽记", "name_es_ES": "Insignia de prontitud de competidor algariano", "name_ru_RU": "Знак расторопности алгарийского бойца", "name_it_IT": "Fregio dell'Alacrità del Concorrente Algari", "name_pt_PT": "Insígnia de Diligência do Competidor Algari", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219933, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Algari Competitor's Emblem", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 518671, "buy_price": 2593355, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9951000213623047, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Algari Competitor's Emblem", "name_ko_KR": "알가르 경쟁자의 문장", "name_fr_FR": "Emblème de compétition algari", "name_de_DE": "Emblem des Algariherausforderers", "name_zh_CN": "阿加竞争者的纹章", "name_es_ES": "Emblema de competidor algariano", "name_ru_RU": "Эмблема алгарийского бойца", "name_it_IT": "Emblema del Concorrente Algari", "name_pt_PT": "Emblema do Competidor Algari", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 220118, "race_mask": 18446744073709551615, "desc": "When the fuse is lit, consider Sir Demolitions an outsider. - heard in the halls of Lightspark Academy", "pad2": "", "pad1": "", "pad0": "", "name": "Arathi Demolition Charge", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9916999936103821, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 506, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Arathi Demolition Charge", "name_ko_KR": "아라시 폭발물", "name_fr_FR": "Charge explosive arathie", "name_de_DE": "Detonationsladung der Arathi", "name_zh_CN": "阿拉希爆破火药桶", "name_es_ES": "Carga de demolición arathi", "name_ru_RU": "Аратийский заряд взрывчатки", "name_it_IT": "Carica per Demolizione degli Arathi", "name_pt_PT": "Carga de Demolição Arathi", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 220171, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Symbiosis", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 80, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Symbiosis", "name_ko_KR": "다크문 카드 한 벌: 공생", "name_fr_FR": "Suite de Sombrelune : Symbiose", "name_de_DE": "Dunkelmondkartenset: Symbiose", "name_zh_CN": "暗月套牌:共生", "name_es_ES": "Colección de la Luna Negra: Simbiosis", "name_ru_RU": "Колода карт Новолуния \"Симбиоз\"", "name_it_IT": "Mazzo della Simbiosi di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Simbiose", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 220202, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spymaster's Web", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 857630, "buy_price": 4288154, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Spymaster's Web", "name_ko_KR": "첩보단장의 거미줄", "name_fr_FR": "Toile de la maîtresse de l’espionnage", "name_de_DE": "Netz des Meisterspions", "name_zh_CN": "间谍大师裹网", "name_es_ES": "Red de maestro de espías", "name_ru_RU": "Тенета мастера шпионажа", "name_it_IT": "Ragnatela del Maestro delle Spie", "name_pt_PT": "Teia da Mestre Espiã", "on_use": true, "id_encounter": 2608, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 220304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Weathered Northrend Sigil", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2222, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6375, "buy_price": 25500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 561152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 20, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Weathered Northrend Sigil", "name_ko_KR": "마모된 노스렌드 인장", "name_fr_FR": "Sceau du Norfendre usé", "name_de_DE": "Verwittertes Nordendsiegel", "name_zh_CN": "风化的诺森德纹章", "name_es_ES": "Sigilo de Rasganorte curtido", "name_ru_RU": "Потертая печать Нордскола", "name_it_IT": "Sigillo di Nordania Logoro", "name_pt_PT": "Signo de Nortúndria Desgastado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 220305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ovi'nax's Mercurial Egg", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 805129, "buy_price": 4025647, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692000150680542, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Ovi'nax's Mercurial Egg", "name_ko_KR": "오비낙스의 변화성 알", "name_fr_FR": "Œuf mercurien d’Ovi’nax", "name_de_DE": "Ovi'nax' quecksilbriges Ei", "name_zh_CN": "欧维纳克斯的嬗变之卵", "name_es_ES": "Huevo volátil de Ovi'nax", "name_ru_RU": "Переменчивое яйцо Ови'накса", "name_it_IT": "Uovo Mercuriale di Ovi'nax", "name_pt_PT": "Ovo Mercurial de Ovi'nax", "on_use": true, "id_encounter": 2612, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 221023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Treacherous Transmitter", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 826894, "buy_price": 4134471, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9954000115394592, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Treacherous Transmitter", "name_ko_KR": "위험한 송출기", "name_fr_FR": "Transmetteur traître", "name_de_DE": "Verräterischer Transmitter", "name_zh_CN": "奸邪发射机", "name_es_ES": "Transmisor traicionero", "name_ru_RU": "Вероломный передатчик", "name_it_IT": "Trasmittente Infida", "name_pt_PT": "Transmissor Traiçoeiro", "on_use": true, "id_encounter": 2601, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 221233, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deephunter's Bloody Hook", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576907, "buy_price": 2884537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 134742016, "flags_2": 139264, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Deephunter's Bloody Hook", "name_ko_KR": "심연사냥꾼의 핏빛 갈고리", "name_fr_FR": "Crochet ensanglanté de chasseur des profondeurs", "name_de_DE": "Blutiger Haken des Tiefenjägers", "name_zh_CN": "深渊猎人的殷红肉钩", "name_es_ES": "Garfio sangriento de cazador de lo profundo", "name_ru_RU": "Кровавый крюк глубинного охотника", "name_it_IT": "Gancio Insanguinato del Cacciatore delle Profondità", "name_pt_PT": "Gancho Sangrento do Caçador das Profundezas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 221263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nerubian Venom-Tipped Dart", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576907, "buy_price": 2884537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 134742016, "flags_2": 139264, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Nerubian Venom-Tipped Dart", "name_ko_KR": "네루비안 맹독 화살", "name_fr_FR": "Fléchette venimeuse nérubienne", "name_de_DE": "Nerubischer Giftpfeil", "name_zh_CN": "蛛魔淬毒飞镖", "name_es_ES": "Dardo nerubiano de punta envenenada", "name_ru_RU": "Нерубский дротик с отравленным острием", "name_it_IT": "Dardo Avvelenato dei Nerubiani", "name_pt_PT": "Dardo Envenenado Nerubiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 221264, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fungarian Mystic's Cluster", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576907, "buy_price": 2884537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 134742016, "flags_2": 139264, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Fungarian Mystic's Cluster", "name_ko_KR": "버섯전사 비술사의 군집체", "name_fr_FR": "Grappe de mystique fongicien", "name_de_DE": "Bündel des Fungianermystikers", "name_zh_CN": "真菌人秘术师的聚簇", "name_es_ES": "Racimo de místico fungárico", "name_ru_RU": "Грибница мистика-грибостража", "name_it_IT": "Aggregato del Fungariano Mistico", "name_pt_PT": "Aglomerado do Místico Fungoriano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 221265, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of the Underground Beast", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576907, "buy_price": 2884537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9805999994277954, "flags_1": 134742016, "flags_2": 139264, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Charm of the Underground Beast", "name_ko_KR": "지하 야수의 부적", "name_fr_FR": "Charme de la bête souterraine", "name_de_DE": "Amulett der Untergrundbestie", "name_zh_CN": "地下野兽护符", "name_es_ES": "Encanto de la bestia del subsuelo", "name_ru_RU": "Талисман подземного чудища", "name_it_IT": "Talismano della Bestia del Sottosuolo", "name_pt_PT": "Patuá da Fera Subterrânea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222213, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Symbiosis", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0214999914169312, "flags_1": 80, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 1, "name_en_US": "Darkmoon Deck: Symbiosis", "name_ko_KR": "다크문 카드 한 벌: 공생", "name_fr_FR": "Suite de Sombrelune : Symbiose", "name_de_DE": "Dunkelmondkartenset: Symbiose", "name_zh_CN": "暗月套牌:共生", "name_es_ES": "Colección de la Luna Negra: Simbiosis", "name_ru_RU": "Колода карт Новолуния \"Симбиоз\"", "name_it_IT": "Mazzo della Simbiosi di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Simbiose", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Shine", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9810000061988831, "flags_1": 80, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 1, "name_en_US": "Darkmoon Deck: Shine", "name_ko_KR": "다크문 카드 한 벌: 광명", "name_fr_FR": "Suite de Sombrelune : Brillance", "name_de_DE": "Dunkelmondkartenset: Glanz", "name_zh_CN": "暗月套牌:辉耀", "name_es_ES": "Colección de la Luna Negra: Brillo", "name_ru_RU": "Колода карт Новолуния \"Сияние\"", "name_it_IT": "Mazzo dello Splendore di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Brilho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222231, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Vivacity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 80, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 1, "name_en_US": "Darkmoon Deck: Vivacity", "name_ko_KR": "다크문 카드 한 벌: 생기", "name_fr_FR": "Suite de Sombrelune : Vivacité", "name_de_DE": "Dunkelmondkartenset: Lebhaftigkeit", "name_zh_CN": "暗月套牌:盎溢", "name_es_ES": "Colección de la Luna Negra: Vivacidad", "name_ru_RU": "Колода карт Новолуния \"Бодрость\"", "name_it_IT": "Mazzo della Vivacità di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Vivacidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222240, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Evolve", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9735000133514404, "flags_1": 80, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 1, "name_en_US": "Darkmoon Deck: Evolve", "name_ko_KR": "다크문 카드 한 벌: 진화", "name_fr_FR": "Suite de Sombrelune : Évolution", "name_de_DE": "Dunkelmondkartenset: Entwicklung", "name_zh_CN": "暗月套牌:演化", "name_es_ES": "Colección de la Luna Negra: Evolución", "name_ru_RU": "Колода карт Новолуния \"Эволюция\"", "name_it_IT": "Mazzo dell'Evoluzione di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Evolução", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222653, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Symbiosis", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 16, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 793012, "buy_price": 3965064, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509000182151794, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Symbiosis", "name_ko_KR": "다크문 카드 한 벌: 공생", "name_fr_FR": "Suite de Sombrelune : Symbiose", "name_de_DE": "Dunkelmondkartenset: Symbiose", "name_zh_CN": "暗月套牌:共生", "name_es_ES": "Colección de la Luna Negra: Simbiosis", "name_ru_RU": "Колода карт Новолуния \"Симбиоз\"", "name_it_IT": "Mazzo della Simbiosi di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Simbiose", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222671, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Vivacity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 16, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 870237, "buy_price": 4351188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0434999465942383, "flags_1": 525376, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Vivacity", "name_ko_KR": "다크문 카드 한 벌: 생기", "name_fr_FR": "Suite de Sombrelune : Vivacité", "name_de_DE": "Dunkelmondkartenset: Lebhaftigkeit", "name_zh_CN": "暗月套牌:盎溢", "name_es_ES": "Colección de la Luna Negra: Vivacidad", "name_ru_RU": "Колода карт Новолуния \"Бодрость\"", "name_it_IT": "Mazzo della Vivacità di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Vivacidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222680, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Ascension", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 16, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 836462, "buy_price": 4182311, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 525376, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Ascension", "name_ko_KR": "다크문 카드 한 벌: 승천", "name_fr_FR": "Suite de Sombrelune : Sublimation", "name_de_DE": "Dunkelmondkartenset: Aszendenz", "name_zh_CN": "暗月套牌:扬升", "name_es_ES": "Colección de la Luna Negra: Ascensión", "name_ru_RU": "Колода карт Новолуния \"Вознесение\"", "name_it_IT": "Mazzo dell'Ascensione di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Ascensão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223507, "race_mask": 18446744073709551615, "desc": "A good Alliance soldier is always on time.", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Pocket Watch", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 345532, "buy_price": 1727662, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879999756813049, "flags_1": 557056, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 223508, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Recruit's Pocket Watch", "name_ko_KR": "훈련생용 회중시계", "name_fr_FR": "Montre de gousset de recrue", "name_de_DE": "Taschenuhr des Rekruten", "name_zh_CN": "新兵的怀表", "name_es_ES": "Reloj de bolsillo de recluta", "name_ru_RU": "Карманные часы новобранца", "name_it_IT": "Orologio da Tasca della Recluta", "name_pt_PT": "Relógio de Bolso de Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223508, "race_mask": 18446744073709551615, "desc": "Blades, tusks, nails. Everything needs a good sharpening.", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Whetstone", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 356094, "buy_price": 1780471, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0182000398635864, "flags_1": 557056, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 223507, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Recruit's Whetstone", "name_ko_KR": "훈련생용 숫돌", "name_fr_FR": "Pierre à aiguiser de recrue", "name_de_DE": "Schleifstein des Rekruten", "name_zh_CN": "新兵的磨石", "name_es_ES": "Piedra de afilar de recluta", "name_ru_RU": "Точильный камень новобранца", "name_it_IT": "Cote della Recluta", "name_pt_PT": "Pedra de Amolar de Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223509, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shriveled Ancient Tentacle", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 108030, "buy_price": 432121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219000577926636, "flags_1": 561152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Shriveled Ancient Tentacle", "name_ko_KR": "쪼그라든 고대 촉수", "name_fr_FR": "Tentacule antique flétri", "name_de_DE": "Verschrumpelter antiker Tentakel", "name_zh_CN": "干瘪的上古触须", "name_es_ES": "Tentáculo ancestral marchito", "name_ru_RU": "Иссохшее древнее щупальце", "name_it_IT": "Tentacolo Antico Raggrinzito", "name_pt_PT": "Tentáculo Ancestral Encolhido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223513, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Ebony Scale", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 362529, "buy_price": 1812646, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0365999937057495, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Faded Ebony Scale", "name_ko_KR": "흐릿한 칠흑빛 비늘", "name_fr_FR": "Écaille d’ébène passée", "name_de_DE": "Verblasste kohlschwarze Schuppe", "name_zh_CN": "褪色乌鳞", "name_es_ES": "Escama de ébano desvanecida", "name_ru_RU": "Потускневшая черная чешуйка", "name_it_IT": "Scaglia d'Ebano Scomparsa", "name_pt_PT": "Escama de Ébano Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Trumpet", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 366376, "buy_price": 1831881, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0476000308990479, "flags_1": 557056, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 223517, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Recruit's Trumpet", "name_ko_KR": "훈련생용 트럼펫", "name_fr_FR": "Trompette de recrue", "name_de_DE": "Trompete des Rekruten", "name_zh_CN": "新兵的小号", "name_es_ES": "Trompeta de recluta", "name_ru_RU": "Труба новобранца", "name_it_IT": "Tromba della Recluta", "name_pt_PT": "Trompete de Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223517, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Warhorn", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 332662, "buy_price": 1663312, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.951200008392334, "flags_1": 557056, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 223516, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Recruit's Warhorn", "name_ko_KR": "훈련생용 전쟁 뿔피리", "name_fr_FR": "Cor de guerre de recrue", "name_de_DE": "Kriegshorn des Rekruten", "name_zh_CN": "新兵的军号", "name_es_ES": "Cuerno de guerra de recluta", "name_ru_RU": "Боевой рог новобранца", "name_it_IT": "Corno da Guerra della Recluta", "name_pt_PT": "Trompa de Guerra de Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 224161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormrider Flight Badge", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9735000133514404, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Stormrider Flight Badge", "name_ko_KR": "폭풍기수 비행 휘장", "name_fr_FR": "Insigne de vol de chevaucheur de tempête", "name_de_DE": "Sturmreiterflugabzeichen", "name_zh_CN": "驭雷者的飞行徽章", "name_es_ES": "Distintivo de vuelo de jinete de la tormenta", "name_ru_RU": "Летный жетон странника бурь", "name_it_IT": "Distintivo di Volo del Cavalcatempesta", "name_pt_PT": "Distintivo de Voo do Cavalgaventos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 224449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearbreaker's Echo", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068999528884888, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Fearbreaker's Echo", "name_ko_KR": "공포파괴자의 메아리", "name_fr_FR": "Écho du Brise-peur", "name_de_DE": "Furchtbrechers Echo", "name_zh_CN": "碎惧者的回响", "name_es_ES": "Eco de Domamiedo", "name_ru_RU": "Эхо Страхобоя", "name_it_IT": "Eco di Spezzapaura", "name_pt_PT": "Eco do Quebra-medo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225638, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spelunker's Waning Candle", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 593585, "buy_price": 2967925, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0292999744415283, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Spelunker's Waning Candle", "name_ko_KR": "동굴탐험가의 줄어드는 양초", "name_fr_FR": "Bougie mourante de spéléologue", "name_de_DE": "Schwindende Kerze des Höhlenforschers", "name_zh_CN": "探洞者的蜡烛残端", "name_es_ES": "Vela menguante de espeleólogo", "name_ru_RU": "Угасающая свеча спелеолога", "name_it_IT": "Candela Consumata dello Speleologo", "name_pt_PT": "Vela Minguante do Espeleologista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shining Arathor Insignia", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9887999892234802, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Shining Arathor Insignia", "name_ko_KR": "빛나는 아라소르 휘장", "name_fr_FR": "Insigne éclatant d’Arathor", "name_de_DE": "Leuchtende Arathorinsignie", "name_zh_CN": "闪耀的阿拉索徽记", "name_es_ES": "Insignia de Arathor brillante", "name_ru_RU": "Сияющий араторский знак отличия", "name_it_IT": "Fregio Lucente di Arathor", "name_pt_PT": "Insígnia de Arathor Rutilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225648, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Candle Confidant", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Candle Confidant", "name_ko_KR": "양초 친구", "name_fr_FR": "Confident bougie", "name_de_DE": "Kerzenvertrauter", "name_zh_CN": "烛友", "name_es_ES": "Confidente de vela", "name_ru_RU": "Свечной ассистент", "name_it_IT": "Confidente Candeloso", "name_pt_PT": "Confidente de Vela", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225649, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Quickwick Candlestick", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9961000084877014, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Quickwick Candlestick", "name_ko_KR": "날렵심지 양초막대", "name_fr_FR": "Bougeoir mèchevive", "name_de_DE": "Schnelldochtkerzenhalter", "name_zh_CN": "迅芯烛台", "name_es_ES": "Palmatoria de Mechaveloz", "name_ru_RU": "Подсвечник быстросвеча", "name_it_IT": "Candela di Micciaspiccia", "name_pt_PT": "Candelabro Paviligeiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225651, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kaheti Shadeweaver's Emblem", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 656653, "buy_price": 3283269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003499984741211, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Kaheti Shadeweaver's Emblem", "name_ko_KR": "카테히 암흑술사의 문장", "name_fr_FR": "Emblème de tissombre kaheti", "name_de_DE": "Emblem der Schattenweberin der Kaheti", "name_zh_CN": "卡赫提织影者的纹章", "name_es_ES": "Emblema de tejesombras kaheti", "name_ru_RU": "Эмблема кахети-тенеплета", "name_it_IT": "Emblema del Tessiombre Kaheti", "name_pt_PT": "Emblema do Criassombras Kaheti", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225653, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Siphoning Lightbrand", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0108000040054321, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Siphoning Lightbrand", "name_ko_KR": "흡수의 빛낙인", "name_fr_FR": "Marque de lumière de siphonnage", "name_de_DE": "Entziehendes Lichtbrandzeichen", "name_zh_CN": "虹吸光印", "name_es_ES": "Marca de luz succionadora", "name_ru_RU": "Иссушающее клеймо Света", "name_it_IT": "Marchio di Luce del Prosciugamento", "name_pt_PT": "Marca da Luz Drenante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Imperfect Ascendancy Serum", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3333, "stat_alloc_2": 3333, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0145000219345093, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Imperfect Ascendancy Serum", "name_ko_KR": "불완전한 승천 혈청", "name_fr_FR": "Sérum de Sublimation imparfait", "name_de_DE": "Imperfektes Aufstiegsserum", "name_zh_CN": "不完美的扬升血清", "name_es_ES": "Suero de elevación imperfecto", "name_ru_RU": "Несовершенная сыворотка вознесения", "name_it_IT": "Siero dell'Ascendenza Imperfetta", "name_pt_PT": "Soro de Ascendência Imperfeito", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225656, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goldenglow Censer", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219000577926636, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Goldenglow Censer", "name_ko_KR": "황금광채 향로", "name_fr_FR": "Encensoir lumaurique", "name_de_DE": "Goldleuchten-Weihrauchschwenker", "name_zh_CN": "金辉香炉", "name_es_ES": "Incensario de brillo dorado", "name_ru_RU": "Кадильница золотого сияния", "name_it_IT": "Incensiere di Luce Dorata", "name_pt_PT": "Incensário Brilhodouro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225657, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Detachable Fang", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255000591278076, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Detachable Fang", "name_ko_KR": "탈착식 송곳니", "name_fr_FR": "Croc amovible", "name_de_DE": "Abnehmbarer Zahn", "name_zh_CN": "可拆卸的獠牙", "name_es_ES": "Colmillo desmontable", "name_ru_RU": "Съемный клык", "name_it_IT": "Zanna Staccabile", "name_pt_PT": "Presa Removível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225668, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Power Suit Core", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 656653, "buy_price": 3283269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Unstable Power Suit Core", "name_ko_KR": "불안정한 동력복 핵", "name_fr_FR": "Noyau de combinaison de puissance instable", "name_de_DE": "Instabiler Machtanzugkern", "name_zh_CN": "不稳定的能量装甲核心", "name_es_ES": "Núcleo de traje de poder inestable", "name_ru_RU": "Нестабильный сердечник экзоскелета", "name_it_IT": "Nucleo di Armatura del Potere Instabile", "name_pt_PT": "Núcleo de Supertraje Instável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225669, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brute Force Idol", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Brute Force Idol", "name_ko_KR": "괴력의 우상", "name_fr_FR": "Idole de force brute", "name_de_DE": "Götze der brutalen Kraft", "name_zh_CN": "蛮力神像", "name_es_ES": "Ídolo de fuerza bruta", "name_ru_RU": "Идол грубой силы", "name_it_IT": "Idolo della Forza Bruta", "name_pt_PT": "Ídolo da Força Bruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225682, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time Lost Relic", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9702000021934509, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Time Lost Relic", "name_ko_KR": "잊힌 세월의 유물", "name_fr_FR": "Relique perdue dans le temps", "name_de_DE": "Zeitverlorenes Relikt", "name_zh_CN": "迷时圣物", "name_es_ES": "Reliquia de tiempo perdido", "name_ru_RU": "Затерянная во времени реликвия", "name_it_IT": "Reliquia del Tempo Perduto", "name_pt_PT": "Relíquia Perdida no Tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grasping Necrotic Relic", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.973800003528595, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Grasping Necrotic Relic", "name_ko_KR": "휘감는 괴저의 유물", "name_fr_FR": "Relique de saisie nécrotique", "name_de_DE": "Greifendes Relikt der Nekrotischen Fäulnis", "name_zh_CN": "贪念通灵圣物", "name_es_ES": "Reliquia necrótica aferrante", "name_ru_RU": "Реликвия некротической хватки", "name_it_IT": "Reliquia Necrotica Ghermitrice", "name_pt_PT": "Relíquia Necrótica Agarrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225684, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relicblood of Zekvir", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775000214576721, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Relicblood of Zekvir", "name_ko_KR": "제크비르의 성혈", "name_fr_FR": "Relique sanguinaire de Zekvir", "name_de_DE": "Reliktblut von Zekvir", "name_zh_CN": "泽克维尔的残血", "name_es_ES": "Reliquia de sangre de Zekvir", "name_ru_RU": "Древняя кровь Зеквира", "name_it_IT": "Reliquia di Sangue di Zekvir", "name_pt_PT": "Relíquia Sanguínea de Zekvir", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Sentience", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Relic of Sentience", "name_ko_KR": "인지의 성물", "name_fr_FR": "Relique de sentience", "name_de_DE": "Relikt der Empfindungsfähigkeit", "name_zh_CN": "知觉圣物", "name_es_ES": "Reliquia de consciencia", "name_ru_RU": "Реликвия разума", "name_it_IT": "Reliquia della Senzienza", "name_pt_PT": "Relíquia de Senciência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225693, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowed Essence", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010599970817566, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Shadowed Essence", "name_ko_KR": "어둠에 물든 정수", "name_fr_FR": "Essence ombreuse", "name_de_DE": "Schattige Essenz", "name_zh_CN": "缀影精华", "name_es_ES": "Esencia ensombrecida", "name_ru_RU": "Затененная сущность", "name_it_IT": "Essenza Adombrata", "name_pt_PT": "Essência Sombria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225891, "race_mask": 18446744073709551615, "desc": "The vial shimmers, brought to life by forgotten magics. Its intent, to harm. Its contents, a potent curative.", "pad2": "", "pad1": "", "pad0": "", "name": "Vile Vial of Kaheti Bile", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 656653, "buy_price": 3283269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9812999963760376, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Vile Vial of Kaheti Bile", "name_ko_KR": "카헤티 담즙이 든 더러운 병", "name_fr_FR": "Fiole infâme de bile kaheti", "name_de_DE": "Üble Phiole voll Kahetigalle", "name_zh_CN": "一瓶肮脏的卡赫提胆汁", "name_es_ES": "Vial vil de bilis kaheti", "name_ru_RU": "Омерзительный флакон кахетской желчи", "name_it_IT": "Fiala Vile di Bile dei Kaheti", "name_pt_PT": "Ampola Torpe de Bile Kaheti", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225970, "race_mask": 18446744073709551615, "desc": "He was probably done with it.", "pad2": "", "pad1": "", "pad0": "", "name": "Nizrek's Holographic Manipulator", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 464039, "buy_price": 2320196, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Nizrek's Holographic Manipulator", "name_ko_KR": "니즈레크의 홀로그램 조작 장치", "name_fr_FR": "Manipulateur holographique de Nizrek", "name_de_DE": "Nizreks holografischer Manipulator", "name_zh_CN": "尼兹雷克的全息影像操纵器", "name_es_ES": "Manipulador holográfico de Nizrek", "name_ru_RU": "Манипулятор голограмм Низрека", "name_it_IT": "Manipolatore Olografico di Nizrek", "name_pt_PT": "Manipulador Holográfico de Nizrek", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 226166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Message-Imprinted Silken Square", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405999422073364, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 506, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Message-Imprinted Silken Square", "name_ko_KR": "전언 각인 비단 광장", "name_fr_FR": "Carré de soie à message imprimé", "name_de_DE": "Seideneinstecktuch mit eingeprägter Botschaft", "name_zh_CN": "刻印了信息的丝绸方巾", "name_es_ES": "Cuadrado de seda con mensaje impreso", "name_ru_RU": "Шелковый платок с отпечатавшимся посланием", "name_it_IT": "Piazza della Seta con Messaggio Stampato", "name_pt_PT": "Quadrado Sedoso Marcado com Mensagem", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 226521, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reinforced-Wax Plating", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0257999897003174, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Reinforced-Wax Plating", "name_ko_KR": "강화 밀랍 장갑판", "name_fr_FR": "Blindage en cire renforcée", "name_de_DE": "Verstärkte Wachspanzerung", "name_zh_CN": "蜡油加固装甲", "name_es_ES": "Blindaje de cera reforzado", "name_ru_RU": "Защита из укрепленного воска", "name_it_IT": "Rivestimento di Cera Rinforzato", "name_pt_PT": "Revestimento de Cera Reforçada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 226539, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scroll of Momentum", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Scroll of Momentum", "name_ko_KR": "가속도의 두루마리", "name_fr_FR": "Parchemin d’inertie", "name_de_DE": "Schriftrolle des Momentums", "name_zh_CN": "势能卷轴", "name_es_ES": "Pergamino de inercia", "name_ru_RU": "Свиток импульса", "name_it_IT": "Pergamena dell'Impeto", "name_pt_PT": "Pergaminho de Impulso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}] \ No newline at end of file +[{"id": 744, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thunderbrew's Boot Flask", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Thunderbrew's Boot Flask", "name_ko_KR": "썬더브루의 납작 술병", "name_fr_FR": "Flacon de botte de Tonnebière", "name_de_DE": "Donnerbräus Stiefelflachmann", "name_zh_CN": "雷酒靴中瓶", "name_es_ES": "Petaca de Cebatruenos", "name_ru_RU": "Засапожная фляга Громовара", "name_it_IT": "Fiaschetta di Birratuono", "name_pt_PT": "Frasco de Bota do Cervaforte", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 833, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lifestone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 28000, "buy_price": 112000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9609000086784363, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Lifestone", "name_ko_KR": "수명석", "name_fr_FR": "Pierre de vie", "name_de_DE": "Lebensstein", "name_zh_CN": "生命石", "name_es_ES": "Piedra de vida", "name_ru_RU": "Жизнекамень", "name_it_IT": "Pietra Vitale", "name_pt_PT": "Pedra Vital", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 1404, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tidal Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10306, "buy_price": 41225, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0094000101089478, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 15, "inv_type": 12, "quality": 2, "name_en_US": "Tidal Charm", "name_ko_KR": "해일의 부적", "name_fr_FR": "Charme des flots", "name_de_DE": "Gezeitenglücksbringer", "name_zh_CN": "潮汐咒符", "name_es_ES": "Talismán de la marea", "name_ru_RU": "Оберег прилива", "name_it_IT": "Ammaliamento Mareale", "name_pt_PT": "Patuá das Marés", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 1490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Guardian Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8910, "buy_price": 35640, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Guardian Talisman", "name_ko_KR": "수호 부적", "name_fr_FR": "Talisman du gardien", "name_de_DE": "Wächtertalisman", "name_zh_CN": "守护之符", "name_es_ES": "Dije guardián", "name_ru_RU": "Талисман-хранитель", "name_it_IT": "Talismano Guardiano", "name_pt_PT": "Talismã do Guardião", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 1713, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ankh of Life", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5350, "buy_price": 21400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463999509811401, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Ankh of Life", "name_ko_KR": "생명의 십자가", "name_fr_FR": "Ankh de vie", "name_de_DE": "Ankh des Lebens", "name_zh_CN": "生命十字章", "name_es_ES": "Ankh de vida", "name_ru_RU": "Крест Жизни", "name_it_IT": "Ankh della Vita", "name_pt_PT": "Ankh da Vida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 2802, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blazing Emblem", "id_expansion": 0, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 51, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1625, "buy_price": 6500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0429999828338623, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 16, "inv_type": 12, "quality": 3, "name_en_US": "Blazing Emblem", "name_ko_KR": "불타는 문장", "name_fr_FR": "Emblème flamboyant", "name_de_DE": "Loderflammenemblem", "name_zh_CN": "闪耀徽章", "name_es_ES": "Emblema llameante", "name_ru_RU": "Пылающая эмблема", "name_it_IT": "Emblema Fiammeggiante", "name_pt_PT": "Emblema Fulgurante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 2820, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nifty Stopwatch", "id_expansion": 0, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4662, "buy_price": 18650, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0355000495910645, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Nifty Stopwatch", "name_ko_KR": "신기한 초시계", "name_fr_FR": "Chouette chronomètre", "name_de_DE": "Schicke Stoppuhr", "name_zh_CN": "灵巧秒表", "name_es_ES": "Cronómetro ingenioso", "name_ru_RU": "Изящный секундомер", "name_it_IT": "Cronometro Eccellente", "name_pt_PT": "Cronômetro Bacana", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 3456, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dog Whistle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6375, "buy_price": 25500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.02839994430542, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 20, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 13, "inv_type": 12, "quality": 3, "name_en_US": "Dog Whistle", "name_ko_KR": "사냥개 호각", "name_fr_FR": "Sifflet de chien", "name_de_DE": "Hundepfeife", "name_zh_CN": "狗哨", "name_es_ES": "Silbato para perros", "name_ru_RU": "Собачий свисток", "name_it_IT": "Fischietto per Cani", "name_pt_PT": "Apito de Cães", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 4130, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smotts' Compass", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 7, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4464, "buy_price": 22324, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872000217437744, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Smotts' Compass", "name_ko_KR": "스모츠의 나침반", "name_fr_FR": "Boussole de Smotts", "name_de_DE": "Smotts' Kompass", "name_zh_CN": "斯莫特的罗盘", "name_es_ES": "Brújula de Smotts", "name_ru_RU": "Компас Смоттса", "name_it_IT": "Bussola di Smotts", "name_pt_PT": "Bússola de Smotts", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 4381, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Minor Recombobulator", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 600, "buy_price": 2400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 140, "req_skill": 2506, "ilevel": 18, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Minor Recombobulator", "name_ko_KR": "최하급 유전자 역결합기", "name_fr_FR": "Recombobulateur mineur", "name_de_DE": "Schwacher Rekombobulator", "name_zh_CN": "自动净化装置", "name_es_ES": "Recombobulador menor", "name_ru_RU": "Малый атомарный перенаправлятор", "name_it_IT": "Tecno-Ricostituente Minore", "name_pt_PT": "Rebotocador Menor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 4396, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mechanical Dragonling", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6000, "buy_price": 24000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0134999752044678, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 200, "req_skill": 2506, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 13, "inv_type": 12, "quality": 2, "name_en_US": "Mechanical Dragonling", "name_ko_KR": "소형 기계용", "name_fr_FR": "Petit dragon mécanique", "name_de_DE": "Mechanischer Drachling", "name_zh_CN": "机械幼龙", "name_es_ES": "Dragonizo mecánico", "name_ru_RU": "Механический дракончик", "name_it_IT": "Minidrago Meccanico", "name_pt_PT": "Dragonete Mecânico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 4397, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Cloaking Device", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5000, "buy_price": 20000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0170999765396118, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 200, "req_skill": 2506, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gnomish Cloaking Device", "name_ko_KR": "노움 은폐 장치", "name_fr_FR": "Système d'occultation gnome", "name_de_DE": "Gnomische Tarnvorrichtung", "name_zh_CN": "侏儒隐形装置", "name_es_ES": "Aparato de invisibilidad gnómico", "name_ru_RU": "Гномский маскировочный механизм", "name_it_IT": "Dispositivo di Occultamento Gnomesco", "name_pt_PT": "Dispositivo Ocultador Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 5079, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cold Basilisk Eye", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4642, "buy_price": 18570, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581999778747559, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 15, "inv_type": 12, "quality": 2, "name_en_US": "Cold Basilisk Eye", "name_ko_KR": "바실리스크의 싸늘한 눈", "name_fr_FR": "Oeil de basilic Oeil-de-glace", "name_de_DE": "Kaltes Basiliskenauge", "name_zh_CN": "冷蜥蜴眼", "name_es_ES": "Ojo de basilisco frío", "name_ru_RU": "Глаз ледяного василиска", "name_it_IT": "Occhio di Basilisco Freddo", "name_pt_PT": "Olho Frio de Basilisco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 7506, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Universal Remote", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500, "buy_price": 2000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9623000025749207, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 125, "req_skill": 2506, "ilevel": 16, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gnomish Universal Remote", "name_ko_KR": "노움의 만능 원격조종기", "name_fr_FR": "Télécommande universelle gnome", "name_de_DE": "Gnomenuniversalfernbedienung", "name_zh_CN": "侏儒通用遥控器", "name_es_ES": "Mando universal gnómico", "name_ru_RU": "Универсальный гномский дистанционный пульт", "name_it_IT": "Controllo Universale Gnomesco", "name_pt_PT": "Controle Remoto Universal Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 7734, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Six Demon Bag", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15495, "buy_price": 61980, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696000218391418, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 20, "inv_type": 12, "quality": 3, "name_en_US": "Six Demon Bag", "name_ko_KR": "도깨비 가방", "name_fr_FR": "Sac des six démons", "name_de_DE": "Sechsdämonentasche", "name_zh_CN": "六魔包", "name_es_ES": "Bolsa de seis demonios", "name_ru_RU": "Сумка Шести Демонов", "name_it_IT": "Sacca dei Sei Demoni", "name_pt_PT": "Bolsa Seis Demônios", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 8663, "race_mask": 18446744073709551615, "desc": "E Pluribus Mithril", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Insignia", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2976, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 210, "req_skill": 2477, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mithril Insignia", "name_ko_KR": "미스릴 표장", "name_fr_FR": "Insigne en mithril", "name_de_DE": "Mithrilinsignien", "name_zh_CN": "秘银徽章", "name_es_ES": "Insignia de mitril", "name_ru_RU": "Мифриловый знак отличия", "name_it_IT": "Fregio di Mithril", "name_pt_PT": "Insígnia de Mithril", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 8703, "race_mask": 18446744073709551615, "desc": "Honorable Member of the Mithril Order", "pad2": "", "pad1": "", "pad0": "", "name": "Signet of Expertise", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6492, "buy_price": 25968, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140999555587769, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 210, "req_skill": 2477, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Signet of Expertise", "name_ko_KR": "전문 기술의 인장", "name_fr_FR": "Chevalière d'expertise", "name_de_DE": "Signet der Expertise", "name_zh_CN": "技艺徽记", "name_es_ES": "Sello de pericia", "name_ru_RU": "Перстень Умения", "name_it_IT": "Ninnolo con Sigillo della Perizia", "name_pt_PT": "Sinete da Aptidão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 9149, "race_mask": 18446744073709551615, "desc": "Required for Alchemical Transmutation.", "pad2": "", "pad1": "", "pad0": "", "name": "Philosopher's Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3571, "stat_alloc_2": 3571, "stat_alloc_3": 3571, "stat_alloc_4": 3571, "stat_alloc_5": 3571, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 4, "stat_type_3": 5, "stat_type_4": 40, "stat_type_5": 7, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919999837875366, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2485, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 15, "inv_type": 12, "quality": 2, "name_en_US": "Philosopher's Stone", "name_ko_KR": "현자의 돌", "name_fr_FR": "Pierre philosophale", "name_de_DE": "Stein der Weisen", "name_zh_CN": "点金石", "name_es_ES": "Piedra filosofal", "name_ru_RU": "Философский камень", "name_it_IT": "Pietra Filosofale", "name_pt_PT": "Pedra Filosofal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10418, "race_mask": 18446744073709551615, "desc": "Courage, Honor, and above all, Patience", "pad2": "", "pad1": "", "pad0": "", "name": "Glimmering Mithril Insignia", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9524, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16464, "buy_price": 65859, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0404000282287598, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 225, "req_skill": 2477, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Glimmering Mithril Insignia", "name_ko_KR": "빛나는 미스릴 표장", "name_fr_FR": "Insigne rougeoyant en mithril", "name_de_DE": "Gleißende Mithrilinsignien", "name_zh_CN": "闪光的秘银徽记", "name_es_ES": "Insignia de mitril de luz trémula", "name_ru_RU": "Мерцающий мифриловый талисман", "name_it_IT": "Fregio di Mithril Luccicante", "name_pt_PT": "Insígnia de Mithril Rutilante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10455, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chained Essence of Eranikus", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6464, "buy_price": 25859, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Chained Essence of Eranikus", "name_ko_KR": "속박된 에라니쿠스의 정수", "name_fr_FR": "Essence d'Eranikus enchaînée", "name_de_DE": "Gebundene Essenz des Eranikus", "name_zh_CN": "被禁锢的伊兰尼库斯精华", "name_es_ES": "Esencia encadenada de Eranikus", "name_ru_RU": "Скованная сущность Эраникуса", "name_it_IT": "Essenza Incatenata di Eranikus", "name_pt_PT": "Essência Acorrentada de Erânicos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Mechanical Dragonling", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6000, "buy_price": 24000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 67633216, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 250, "req_skill": 2506, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 2, "name_en_US": "Mithril Mechanical Dragonling", "name_ko_KR": "소형 미스릴 기계용", "name_fr_FR": "Petit dragon mécanique en mithril", "name_de_DE": "Mechanischer Mithrildrachling", "name_zh_CN": "秘银机械幼龙", "name_es_ES": "Dragonizo mecánico de mitril", "name_ru_RU": "Мифриловый механический дракончик", "name_it_IT": "Minidrago Meccanico di Mithril", "name_pt_PT": "Dragonete Mecânico de Mithril", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Mortar", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000, "buy_price": 8000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 205, "req_skill": 2506, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Goblin Mortar", "name_ko_KR": "고블린 박격포", "name_fr_FR": "Mortier gobelin", "name_de_DE": "Goblinmörser", "name_zh_CN": "地精迫击炮", "name_es_ES": "Mortero goblin", "name_ru_RU": "Гоблинская мортира", "name_it_IT": "Mortaio dei Goblin", "name_pt_PT": "Morteiro Goblínico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10585, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Radio", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 10, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750, "buy_price": 3000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 220, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Goblin Radio", "name_ko_KR": "고블린 라디오", "name_fr_FR": "Radio gobeline", "name_de_DE": "Goblinradio", "name_zh_CN": "地精无线电", "name_es_ES": "Radio goblin", "name_ru_RU": "Гоблинское радио", "name_it_IT": "Radio dei Goblin", "name_pt_PT": "Rádio Goblínico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10587, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Bomb Dispenser", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0253000259399414, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 230, "req_skill": 2506, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Goblin Bomb Dispenser", "name_ko_KR": "고블린 폭탄 자판기", "name_fr_FR": "Distributeur de bombes gobelines", "name_de_DE": "Goblinbombenspender", "name_zh_CN": "地精炸弹箱", "name_es_ES": "Dispensador de bombas goblin", "name_ru_RU": "Гоблинский бомбомет", "name_it_IT": "Distributore di Bombe dei Goblin", "name_pt_PT": "Distribuidor de Bombas Goblínico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10645, "race_mask": 18446744073709551615, "desc": "Death or Serious Injury may result from use of this device.", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Death Ray", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750, "buy_price": 3000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044100046157837, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 240, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Gnomish Death Ray", "name_ko_KR": "노움 즉사 광선", "name_fr_FR": "Rayon mortel gnome", "name_de_DE": "Gnomentodesstrahl", "name_zh_CN": "侏儒死亡射线", "name_es_ES": "Rayo mortal gnómico", "name_ru_RU": "Гномский смертоносный луч", "name_it_IT": "Raggio Mortale Gnomesco", "name_pt_PT": "Raio Gnômico da Morte", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10659, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of the Splithooves", "id_expansion": 0, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4662, "buy_price": 18650, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219000577926636, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Shard of the Splithooves", "name_ko_KR": "갈래발굽 결정", "name_fr_FR": "Éclat des Sabots-Fendus", "name_de_DE": "Splitter der Spalthufe", "name_zh_CN": "裂蹄碎片", "name_es_ES": "Fragmento de los Pezuña Quebrada", "name_ru_RU": "Сфера Треснувшего Копыта", "name_it_IT": "Frammento di Spaccazzoccoli", "name_pt_PT": "Estilhaço dos Cascos Fendidos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10716, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Shrink Ray", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750, "buy_price": 3000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104999542236328, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 205, "req_skill": 2506, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gnomish Shrink Ray", "name_ko_KR": "노움 난쟁이 광선", "name_fr_FR": "Rayon réducteur gnome", "name_de_DE": "Gnomenschrumpfstrahl", "name_zh_CN": "侏儒缩小射线", "name_es_ES": "Rayo reductor gnómico", "name_ru_RU": "Гномский уменьшающий луч", "name_it_IT": "Raggio Riduttore Gnomesco", "name_pt_PT": "Raio Gnômico Encolhedor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10720, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Net-o-Matic Projector", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750, "buy_price": 3000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0252000093460083, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 210, "req_skill": 2506, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gnomish Net-o-Matic Projector", "name_ko_KR": "노움 자동그물발사기", "name_fr_FR": "Lance-filet automatique gnome", "name_de_DE": "Gnomen-Net-o-Matik-Projektor", "name_zh_CN": "侏儒撒网器", "name_es_ES": "Proyector redomático gnómico", "name_ru_RU": "Гномский сетестрел", "name_it_IT": "Lanciarete Gnomomatico", "name_pt_PT": "Projetor Gnômico Redomático", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10723, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Ham Radio", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 10, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750, "buy_price": 3000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 220, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Gnomish Ham Radio", "name_ko_KR": "노움 무전기", "name_fr_FR": "Petite radio gnome", "name_de_DE": "Gnomenamateurradio", "name_zh_CN": "侏儒业余无线电", "name_es_ES": "Radio gnómica", "name_ru_RU": "Гномское любительское радио", "name_it_IT": "Radio Gnomesca del Radioamatore", "name_pt_PT": "Radioamador Gnômico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10725, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Battle Chicken", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700000286102295, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 230, "req_skill": 2506, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Gnomish Battle Chicken", "name_ko_KR": "노움 쌈닭", "name_fr_FR": "Coq de combat gnome", "name_de_DE": "Gnomenkampfhuhn", "name_zh_CN": "侏儒作战小鸡", "name_es_ES": "Gallo de batalla gnómico", "name_ru_RU": "Гномский боевой цыпленок", "name_it_IT": "Gallina da Battaglia Gnomesca", "name_pt_PT": "Frango de Batalha Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Dragon Gun", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000, "buy_price": 8000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772999882698059, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Goblin Dragon Gun", "name_ko_KR": "고블린 용화포", "name_fr_FR": "Fusil-dragon gobelin", "name_de_DE": "Goblindrachengewehr", "name_zh_CN": "地精龙枪", "name_es_ES": "Pistola de dragón goblin", "name_ru_RU": "Гоблинское драконье ружье", "name_it_IT": "Archibugio del Drago dei Goblin", "name_pt_PT": "Pistola Dragônica Goblínica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 10779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon's Blood", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 5000, "stat_alloc_3": 1500, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 54, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8807, "buy_price": 35230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0476000308990479, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Demon's Blood", "name_ko_KR": "악마 피", "name_fr_FR": "Sang de démon", "name_de_DE": "Dämonenblut", "name_zh_CN": "恶魔之血", "name_es_ES": "Sangre de demonio", "name_ru_RU": "Кровь демона", "name_it_IT": "Sangue Demoniaco", "name_pt_PT": "Sangue de Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 11122, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carrot on a Stick", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7162, "buy_price": 28650, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Carrot on a Stick", "name_ko_KR": "당근 달린 지팡이", "name_fr_FR": "Carotte et bâton", "name_de_DE": "Karotte am Stiel", "name_zh_CN": "棍子上的胡萝卜", "name_es_ES": "Zanahoria pinchada en un palo", "name_ru_RU": "Морковка на палочке", "name_it_IT": "Bastone e Carota", "name_pt_PT": "O Burro e a Cenoura", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 11302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Uther's Strength", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7130, "buy_price": 28520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405999422073364, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 20, "inv_type": 12, "quality": 3, "name_en_US": "Uther's Strength", "name_ko_KR": "우서의 힘", "name_fr_FR": "Force d'Uther", "name_de_DE": "Uthers Kraft", "name_zh_CN": "乌瑟尔的力量", "name_es_ES": "Fuerza de Uther", "name_ru_RU": "Сила Утера", "name_it_IT": "Forza di Uther", "name_pt_PT": "Força de Uther", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 11810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Force of Will", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8928, "buy_price": 44640, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255000591278076, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 3, "name_en_US": "Force of Will", "name_ko_KR": "의지의 힘", "name_fr_FR": "Force de volonté", "name_de_DE": "Macht des Willens", "name_zh_CN": "意志之力", "name_es_ES": "Fuerza de voluntad", "name_ru_RU": "Сила воли", "name_it_IT": "Forza di Volontà", "name_pt_PT": "Força de Vontade", "on_use": false, "id_encounter": 378, "id_journal_instance": 228, "id_map": 230, "instance_type": 1}, {"id": 11811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoking Heart of the Mountain", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7083, "stat_alloc_2": 7083, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "Smoking Heart of the Mountain", "name_ko_KR": "연기나는 산의 정수", "name_fr_FR": "Cœur fumant de la montagne", "name_de_DE": "Rauchendes Herz des Berges", "name_zh_CN": "浓烟山脉之心", "name_es_ES": "Corazón humeante de la montaña", "name_ru_RU": "Дымящееся сердце горы", "name_it_IT": "Cuore della Montagna Fumante", "name_pt_PT": "Coração Fumegante da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 11815, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hand of Justice", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9702000021934509, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 3, "name_en_US": "Hand of Justice", "name_ko_KR": "정의의 손길", "name_fr_FR": "Main de justice", "name_de_DE": "Hand der Gerechtigkeit", "name_zh_CN": "正义之手", "name_es_ES": "Mano de la Justicia", "name_ru_RU": "Рука правосудия", "name_it_IT": "Mano della Giustizia", "name_pt_PT": "Mão da Justiça", "on_use": false, "id_encounter": 387, "id_journal_instance": 228, "id_map": 230, "instance_type": 1}, {"id": 11819, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Second Wind", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 3, "name_en_US": "Second Wind", "name_ko_KR": "재기의 바람", "name_fr_FR": "Second souffle", "name_de_DE": "Langer Atem", "name_zh_CN": "复苏之风", "name_es_ES": "Segundo aliento", "name_ru_RU": "Второе дыхание", "name_it_IT": "Aria di Sfida", "name_pt_PT": "Fôlego Renovado", "on_use": true, "id_encounter": 379, "id_journal_instance": 228, "id_map": 230, "instance_type": 1}, {"id": 11832, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burst of Knowledge", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9591000080108643, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 3, "name_en_US": "Burst of Knowledge", "name_ko_KR": "지식의 홍수", "name_fr_FR": "Bijou de connaissance", "name_de_DE": "Explosion des Wissens", "name_zh_CN": "博学坠饰", "name_es_ES": "Ráfaga de conocimiento", "name_ru_RU": "Амулет Озарения", "name_it_IT": "Scarica di Conoscenza", "name_pt_PT": "Explosão de Conhecimento", "on_use": true, "id_encounter": 384, "id_journal_instance": 228, "id_map": 230, "instance_type": 1}, {"id": 11905, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Linken's Boomerang", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6203, "buy_price": 24813, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0328999757766724, "flags_1": 64, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Linken's Boomerang", "name_ko_KR": "링쿠의 부메랑", "name_fr_FR": "Boomerang de Linken", "name_de_DE": "Linkens Bumerang", "name_zh_CN": "林克的回旋镖", "name_es_ES": "Bumerán de Linken", "name_ru_RU": "Бумеранг Линкена", "name_it_IT": "Boomerang di Linken", "name_pt_PT": "Bumerangue de Linken", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 12065, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ward of the Elements", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7953, "buy_price": 31813, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847999811172485, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ward of the Elements", "name_ko_KR": "정기의 수호물", "name_fr_FR": "Gardien des éléments", "name_de_DE": "Barriere der Elemente", "name_zh_CN": "元素屏障", "name_es_ES": "Resguardo contra los Elementos", "name_ru_RU": "Оберег Стихий", "name_it_IT": "Guardia degli Elementi", "name_pt_PT": "Protetor dos Elementos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 12846, "race_mask": 18446744073709551615, "desc": "Equipping this badge is an indication of service to the Argent Dawn.", "pad2": "", "pad1": "", "pad0": "", "name": "Argent Dawn Commission", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0480999946594238, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 1, "name_en_US": "Argent Dawn Commission", "name_ko_KR": "은빛 여명회 위임봉", "name_fr_FR": "Brevet de l'Aube d'argent", "name_de_DE": "Anstecknadel der Argentumdämmerung", "name_zh_CN": "银色黎明委任徽章", "name_es_ES": "Comisión de El Alba Argenta", "name_ru_RU": "Жетон Серебряного Рассвета", "name_it_IT": "Distintivo dell'Alba d'Argento", "name_pt_PT": "Ordem da Aurora Argêntea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 12930, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Briarwood Reed", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886999726295471, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Briarwood Reed", "name_ko_KR": "가시나무 줄기", "name_fr_FR": "Pipeau de bruyère", "name_de_DE": "Dornenschilfrohr", "name_zh_CN": "石楠之环", "name_es_ES": "Junco maderahelecho", "name_ru_RU": "Пищик из древесины шиповника", "name_it_IT": "Alga Spinosa", "name_pt_PT": "Junco Rosabrava", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13164, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of the Scale", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10539, "buy_price": 42158, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Heart of the Scale", "name_ko_KR": "비늘 심장", "name_fr_FR": "Cœur de l'écaille", "name_de_DE": "Herz der Schuppe", "name_zh_CN": "龙鳞之心", "name_es_ES": "Corazón de la escama", "name_ru_RU": "Сердце Чешуи", "name_it_IT": "Cuore dell'Equilibrio", "name_pt_PT": "Coração da Escama", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13171, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smokey's Lighter", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7000, "buy_price": 28000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9702000021934509, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Smokey's Lighter", "name_ko_KR": "스모키의 라이터", "name_fr_FR": "Boutefeu de Smokey", "name_de_DE": "Smokeys Feuerzeug", "name_zh_CN": "烟鬼的点火器", "name_es_ES": "Mechero de Smokey", "name_ru_RU": "Воспламенитель Дымка", "name_it_IT": "Accendino di Smokey", "name_pt_PT": "Isqueiro do Fumaça", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13209, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of the Dawn", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Seal of the Dawn", "name_ko_KR": "여명의 문장", "name_fr_FR": "Sceau de l'Aube", "name_de_DE": "Siegel der Dämmerung", "name_zh_CN": "黎明之印", "name_es_ES": "Sello del Alba", "name_ru_RU": "Печать Рассвета", "name_it_IT": "Sigillo dell'Alba", "name_pt_PT": "Selo da Aurora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13213, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smolderweb's Eye", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9633, "buy_price": 38533, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0038000345230103, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Smolderweb's Eye", "name_ko_KR": "불그물거미 눈", "name_fr_FR": "Oeil de Couveuse", "name_de_DE": "Glimmernetz' Auge", "name_zh_CN": "烟网蜘蛛的眼球", "name_es_ES": "Ojo de Telabrasada", "name_ru_RU": "Око Дымной Паутины", "name_it_IT": "Occhio di Bruciatela", "name_pt_PT": "Olho de Queimateia", "on_use": true, "id_encounter": 391, "id_journal_instance": 229, "id_map": 229, "instance_type": 1}, {"id": 13382, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cannonball Runner", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10850, "buy_price": 43400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886999726295471, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 18, "inv_type": 12, "quality": 3, "name_en_US": "Cannonball Runner", "name_ko_KR": "휴대용 대포", "name_fr_FR": "Messager du boulet de canon", "name_de_DE": "Kanonenkugelläufer", "name_zh_CN": "便携火炮", "name_es_ES": "Mensajero bola de cañón", "name_ru_RU": "Бегун-ядро", "name_it_IT": "Cannone Tascabile", "name_pt_PT": "Fura-bloqueio", "on_use": false, "id_encounter": 446, "id_journal_instance": 236, "id_map": 329, "instance_type": 1}, {"id": 13503, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Alchemist Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3125, "stat_alloc_2": 3125, "stat_alloc_3": 3125, "stat_alloc_4": 3125, "stat_alloc_5": 3125, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 7, "stat_type_3": 3, "stat_type_4": 5, "stat_type_5": 40, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2484, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Alchemist Stone", "name_ko_KR": "연금술사 돌", "name_fr_FR": "Pierre d'alchimiste", "name_de_DE": "Alchemistenstein", "name_zh_CN": "炼金石", "name_es_ES": "Piedra de alquimista", "name_ru_RU": "Алхимический камень", "name_it_IT": "Pietra Alchemica", "name_pt_PT": "Pedra do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13515, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ramstein's Lightning Bolts", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9600, "buy_price": 38400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "Ramstein's Lightning Bolts", "name_ko_KR": "람스타인의 번개 나사", "name_fr_FR": "Eclairs de Ramstein", "name_de_DE": "Ramsteins Blitzbolzen", "name_zh_CN": "拉姆斯登的闪电钉", "name_es_ES": "Descargas de relámpagos de Ramstein", "name_ru_RU": "Молнии Рамштайна", "name_it_IT": "Dardi Fulminanti di Ramstein", "name_pt_PT": "Parafusos Eletrificados de Ramstein", "on_use": true, "id_encounter": 455, "id_journal_instance": 1292, "id_map": 329, "instance_type": 1}, {"id": 13544, "race_mask": 18446744073709551615, "desc": "Allows communication with the deceased of Caer Darrow.", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Essence", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0479999780654907, "flags_1": 524288, "flags_2": 28672, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Essence", "name_ko_KR": "혼령의 정수", "name_fr_FR": "Essence spectrale", "name_de_DE": "Spektrale Essenz", "name_zh_CN": "鬼灵精华", "name_es_ES": "Esencia espectral", "name_ru_RU": "Сущность привидения", "name_it_IT": "Essenza di Spettro", "name_pt_PT": "Essência Espectral", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13965, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blackhand's Breadth", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16250, "buy_price": 65000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Blackhand's Breadth", "name_ko_KR": "블랙핸드의 팔찌", "name_fr_FR": "Plaque de Main-Noire", "name_de_DE": "Schwarzfausts Breite", "name_zh_CN": "黑手饰物", "name_es_ES": "Amplitud de Puño Negro", "name_ru_RU": "Пластита Чернорука", "name_it_IT": "Mostrina di Manonera", "name_pt_PT": "Amplitude do Mão Negra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13966, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Tyranny", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 13, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16250, "buy_price": 65000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Tyranny", "name_ko_KR": "폭정의 징표", "name_fr_FR": "Marque de tyrannie", "name_de_DE": "Mal der Tyrannei", "name_zh_CN": "暴君印记", "name_es_ES": "Marca de Tiranía", "name_ru_RU": "Знак деспотизма", "name_it_IT": "Marchio della Tirannia", "name_pt_PT": "Marca da Tirania", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 13968, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of the Beast", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16250, "buy_price": 65000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Eye of the Beast", "name_ko_KR": "괴수의 눈", "name_fr_FR": "Oeil de la Bête", "name_de_DE": "Auge der Bestie", "name_zh_CN": "比斯巨兽之眼", "name_es_ES": "Ojo de la bestia", "name_ru_RU": "Глаз Зверя", "name_it_IT": "Occhio della Bestia", "name_pt_PT": "Olho da Fera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 14022, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Barov Peasant Caller", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8991, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962999820709229, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Barov Peasant Caller", "name_ko_KR": "바로브의 종", "name_fr_FR": "Cloche des Barov", "name_de_DE": "Bedienstetenglöckchen der Barovs", "name_zh_CN": "巴罗夫管家铃", "name_es_ES": "Llamador de campesino Barov", "name_ru_RU": "Набатный колокол рода Баровых", "name_it_IT": "Campanella dei Servitori dei Barov", "name_pt_PT": "Convocador de Serviçais de Barov", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 14023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Barov Peasant Caller", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8991, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Barov Peasant Caller", "name_ko_KR": "바로브의 종", "name_fr_FR": "Cloche des Barov", "name_de_DE": "Bedienstetenglöckchen der Barovs", "name_zh_CN": "巴罗夫管家铃", "name_es_ES": "Llamador de campesino Barov", "name_ru_RU": "Набатный колокол рода Баровых", "name_it_IT": "Campanella dei Servitori dei Barov", "name_pt_PT": "Convocador de Serviçais de Barov", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 14557, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Lion Horn of Stormwind", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17880, "buy_price": 71520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0333000421524048, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 4, "name_en_US": "The Lion Horn of Stormwind", "name_ko_KR": "스톰윈드의 사자 뿔피리", "name_fr_FR": "Cor du lion de Hurlevent", "name_de_DE": "Das Löwenhorn von Sturmwind", "name_zh_CN": "暴风雄狮号角", "name_es_ES": "El cuerno de león de Ventormenta", "name_ru_RU": "Львиный Рог Штормграда", "name_it_IT": "Corno Leonino di Roccavento", "name_pt_PT": "Trombeta Leonina de Ventobravo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 15867, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismcharm", "id_expansion": 0, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7464, "buy_price": 29857, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0115000009536743, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Prismcharm", "name_ko_KR": "오색 부적", "name_fr_FR": "Charme prismatique", "name_de_DE": "Prismatalisman", "name_zh_CN": "棱石护符", "name_es_ES": "Talismán prismático", "name_ru_RU": "Радужный оберег", "name_it_IT": "Talismano Prismatico", "name_pt_PT": "Talismã Prismático", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 15873, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ragged John's Neverending Cup", "id_expansion": 0, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8144, "buy_price": 32578, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ragged John's Neverending Cup", "name_ko_KR": "털보 존의 마법 술잔", "name_fr_FR": "Chope sans fin de John le Loqueteux", "name_de_DE": "Der immervolle Becher des struppigen John", "name_zh_CN": "约翰的无尽之杯", "name_es_ES": "Copa interminable de John Andrajoso", "name_ru_RU": "Бездонная чаша Джона-Оборванца", "name_it_IT": "Boccale Senza Fondo di John", "name_pt_PT": "Caneca Interminável do João Roto", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 16022, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcanite Dragonling", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 40000, "buy_price": 160000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0185999870300293, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 300, "req_skill": 2506, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "Arcanite Dragonling", "name_ko_KR": "아케이나이트 기계용", "name_fr_FR": "Petit dragon en arcanite", "name_de_DE": "Arkanitdrachling", "name_zh_CN": "奥金机械幼龙", "name_es_ES": "Dragonizo de arcanita", "name_ru_RU": "Арканитовый дракончик", "name_it_IT": "Minidrago d'Arcanite", "name_pt_PT": "Dragonete de Arcanita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17064, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of the Scale", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10256, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45914, "buy_price": 183658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9631999731063843, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 241, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Shard of the Scale", "name_ko_KR": "비늘의 파편", "name_fr_FR": "Éclat de l'écaille", "name_de_DE": "Splitter der Schuppe", "name_zh_CN": "龙鳞碎片", "name_es_ES": "Fragmento de la Escama", "name_ru_RU": "Обломок чешуи", "name_it_IT": "Frammento dell'Equilibrio", "name_pt_PT": "Estilhaço da Escama", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17082, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of the Flame", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 46, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 46146, "buy_price": 184585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9556999802589417, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 241, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Shard of the Flame", "name_ko_KR": "화염의 파편", "name_fr_FR": "Éclat de la Flamme", "name_de_DE": "Splitter der Flamme", "name_zh_CN": "烈焰碎片", "name_es_ES": "Fragmento de la Llama", "name_ru_RU": "Сфера Пламени", "name_it_IT": "Frammento della Fiamma", "name_pt_PT": "Estilhaço da Chama", "on_use": false, "id_encounter": 1528, "id_journal_instance": 741, "id_map": 409, "instance_type": 2}, {"id": 17690, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 1", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 52, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9929999709129333, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17691, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Frostwolf Insignia Rank 1", "name_ko_KR": "서리늑대 1급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 1", "name_de_DE": "Abzeichen der Frostwölfe Rang 1", "name_zh_CN": "1级霜狼徽记", "name_es_ES": "Insignia Lobo Gélido Rango 1", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 1", "name_it_IT": "Fregio dei Lupi Bianchi Grado 1", "name_pt_PT": "Insígnia Lobo do Gelo Grau 1", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17691, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 1", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 52, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9966999888420105, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17690, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stormpike Insignia Rank 1", "name_ko_KR": "스톰파이크 1급 계급장", "name_fr_FR": "Insigne Foudrepique grade 1", "name_de_DE": "Abzeichen der Sturmlanzen Rang 1", "name_zh_CN": "1级雷矛徽记", "name_es_ES": "Insignia Pico Tormenta Rango 1", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 1", "name_it_IT": "Fregio dei Piccatonante Grado 1", "name_pt_PT": "Insígnia Lançatroz Grau 1", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17744, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Noxxion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9031, "buy_price": 36125, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9706000089645386, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 21, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 14, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Noxxion", "name_ko_KR": "녹시온의 심장", "name_fr_FR": "Cœur de Noxcion", "name_de_DE": "Herz von Noxxion", "name_zh_CN": "诺克赛恩之心", "name_es_ES": "Corazón de Noxxion", "name_ru_RU": "Сердце Ноксиона", "name_it_IT": "Cuore di Noxxion", "name_pt_PT": "Coração de Tóxxico", "on_use": true, "id_encounter": 423, "id_journal_instance": 232, "id_map": 349, "instance_type": 1}, {"id": 17759, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Resolution", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6923, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10307, "buy_price": 41230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520999789237976, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Resolution", "name_ko_KR": "결심의 징표", "name_fr_FR": "Marque de résolution", "name_de_DE": "Mal der Resolution", "name_zh_CN": "坚定之印", "name_es_ES": "Marca de Resolución", "name_ru_RU": "Знак решимости", "name_it_IT": "Marchio della Risolutezza", "name_pt_PT": "Marca da Determinação", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17774, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Chosen", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6133, "buy_price": 24535, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0336999893188477, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 21, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mark of the Chosen", "name_ko_KR": "선택받은 자의 징표", "name_fr_FR": "Marque de l'élu", "name_de_DE": "Mal der Auserwählten", "name_zh_CN": "天选者印记", "name_es_ES": "Marca del elegido", "name_ru_RU": "Знак Избранного", "name_it_IT": "Marchio del Prescelto", "name_pt_PT": "Marca do Escolhido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17900, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 2", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 1000, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 52, "stat_type_2": 46, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0077999830245972, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17905, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stormpike Insignia Rank 2", "name_ko_KR": "스톰파이크 2급 계급장", "name_fr_FR": "Insigne Foudrepique grade 2", "name_de_DE": "Abzeichen der Sturmlanzen Rang 2", "name_zh_CN": "2级雷矛勋章", "name_es_ES": "Insignia Pico Tormenta Rango 2", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 2", "name_it_IT": "Fregio dei Piccatonante Grado 2", "name_pt_PT": "Insígnia Lançatroz Grau 2", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17901, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 3", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6000, "stat_alloc_2": 2500, "stat_alloc_3": 1000, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0115000009536743, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17906, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stormpike Insignia Rank 3", "name_ko_KR": "스톰파이크 3급 계급장", "name_fr_FR": "Insigne Foudrepique grade 3", "name_de_DE": "Abzeichen der Sturmlanzen Rang 3", "name_zh_CN": "3级雷矛勋章", "name_es_ES": "Insignia Pico Tormenta Rango 3", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 3", "name_it_IT": "Fregio dei Piccatonante Grado 3", "name_pt_PT": "Insígnia Lançatroz Grau 3", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17902, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 4", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4615, "stat_alloc_2": 3077, "stat_alloc_3": 1923, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0152000188827515, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17907, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Stormpike Insignia Rank 4", "name_ko_KR": "스톰파이크 4급 계급장", "name_fr_FR": "Insigne Foudrepique grade 4", "name_de_DE": "Abzeichen der Sturmlanzen Rang 4", "name_zh_CN": "4级雷矛勋章", "name_es_ES": "Insignia Pico Tormenta Rango 4", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 4", "name_it_IT": "Fregio dei Piccatonante Grado 4", "name_pt_PT": "Insígnia Lançatroz Grau 4", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17903, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 5", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4615, "stat_alloc_2": 3846, "stat_alloc_3": 2692, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0188000202178955, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17908, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Stormpike Insignia Rank 5", "name_ko_KR": "스톰파이크 5급 계급장", "name_fr_FR": "Insigne Foudrepique grade 5", "name_de_DE": "Abzeichen der Sturmlanzen Rang 5", "name_zh_CN": "5级雷矛勋章", "name_es_ES": "Insignia Pico Tormenta Rango 5", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 5", "name_it_IT": "Fregio dei Piccatonante Grado 5", "name_pt_PT": "Insígnia Lançatroz Grau 5", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17904, "race_mask": 6130900294268439629, "desc": "The Eye of Command", "pad2": "", "pad1": "", "pad0": "", "name": "Stormpike Insignia Rank 6", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7273, "stat_alloc_2": 3030, "stat_alloc_3": 2424, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0225000381469727, "flags_1": 557120, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17909, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Stormpike Insignia Rank 6", "name_ko_KR": "스톰파이크 6급 계급장", "name_fr_FR": "Insigne Foudrepique grade 6", "name_de_DE": "Abzeichen der Sturmlanzen Rang 6", "name_zh_CN": "6级雷矛勋章", "name_es_ES": "Insignia Pico Tormenta Rango 6", "name_ru_RU": "Знак различия Грозовой Вершины, ранг 6", "name_it_IT": "Fregio dei Piccatonante Grado 6", "name_pt_PT": "Insígnia Lançatroz Grau 6", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17905, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 2", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 1000, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 52, "stat_type_2": 46, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9526000022888184, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17900, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Frostwolf Insignia Rank 2", "name_ko_KR": "서리늑대 2급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 2", "name_de_DE": "Abzeichen der Frostwölfe Rang 2", "name_zh_CN": "2级霜狼勋章", "name_es_ES": "Insignia Lobo Gélido Rango 2", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 2", "name_it_IT": "Fregio dei Lupi Bianchi Grado 2", "name_pt_PT": "Insígnia Lobo do Gelo Grau 2", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17906, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 3", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6000, "stat_alloc_2": 2500, "stat_alloc_3": 1000, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9563000202178955, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17901, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Frostwolf Insignia Rank 3", "name_ko_KR": "서리늑대 3급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 3", "name_de_DE": "Abzeichen der Frostwölfe Rang 3", "name_zh_CN": "3级霜狼勋章", "name_es_ES": "Insignia Lobo Gélido Rango 3", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 3", "name_it_IT": "Fregio dei Lupi Bianchi Grado 3", "name_pt_PT": "Insígnia Lobo do Gelo Grau 3", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17907, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 4", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4615, "stat_alloc_2": 3077, "stat_alloc_3": 1923, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9599000215530396, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17902, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Frostwolf Insignia Rank 4", "name_ko_KR": "서리늑대 4급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 4", "name_de_DE": "Abzeichen der Frostwölfe Rang 4", "name_zh_CN": "4级霜狼勋章", "name_es_ES": "Insignia Lobo Gélido Rango 4", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 4", "name_it_IT": "Fregio dei Lupi Bianchi Grado 4", "name_pt_PT": "Insígnia Lobo do Gelo Grau 4", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17908, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 5", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4615, "stat_alloc_2": 3846, "stat_alloc_3": 2692, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9635999798774719, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17903, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Frostwolf Insignia Rank 5", "name_ko_KR": "서리늑대 5급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 5", "name_de_DE": "Abzeichen der Frostwölfe Rang 5", "name_zh_CN": "5级霜狼勋章", "name_es_ES": "Insignia Lobo Gélido Rango 5", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 5", "name_it_IT": "Fregio dei Lupi Bianchi Grado 5", "name_pt_PT": "Insígnia Lobo do Gelo Grau 5", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 17909, "race_mask": 18446744073709551615, "desc": "The Eye of Command", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Insignia Rank 6", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7273, "stat_alloc_2": 3030, "stat_alloc_3": 2424, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 52, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9672999978065491, "flags_1": 557120, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 17904, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Frostwolf Insignia Rank 6", "name_ko_KR": "서리늑대 6급 계급장", "name_fr_FR": "Insigne Loup-de-givre grade 6", "name_de_DE": "Abzeichen der Frostwölfe Rang 6", "name_zh_CN": "6级霜狼勋章", "name_es_ES": "Insignia Lobo Gélido Rango 6", "name_ru_RU": "Знак отличия клана Северного Волка, ранг 6", "name_it_IT": "Fregio dei Lupi Bianchi Grado 6", "name_pt_PT": "Insígnia Lobo do Gelo Grau 6", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18354, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pimgib's Collar", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17466, "buy_price": 69864, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0152000188827515, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Pimgib's Collar", "name_ko_KR": "핌기브의 목줄", "name_fr_FR": "Collier de Pimgib", "name_de_DE": "Pimgibs Halsband", "name_zh_CN": "匹姆吉布的项圈", "name_es_ES": "Collera de Pimgib", "name_ru_RU": "Ошейник Пимгиба", "name_it_IT": "Collare di Pimgib", "name_pt_PT": "Colar do Diabretão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vigilance Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003000497817993, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Vigilance Charm", "name_ko_KR": "경계의 부적", "name_fr_FR": "Charme de vigilance", "name_de_DE": "Wachsamkeitsglücksbringer", "name_zh_CN": "警惕护符", "name_es_ES": "Talismán de vigilancia", "name_ru_RU": "Оберег бдительности", "name_it_IT": "Talismano della Vigilanza", "name_pt_PT": "Patuá da Cautela", "on_use": false, "id_encounter": 409, "id_journal_instance": 230, "id_map": 429, "instance_type": 1}, {"id": 18371, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mindtap Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20737, "buy_price": 82948, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Mindtap Talisman", "name_ko_KR": "자각의 부적", "name_fr_FR": "Talisman d'ouvresprit", "name_de_DE": "Talisman des Gedankenzapfens", "name_zh_CN": "心灵之流", "name_es_ES": "Dije de lectura mental", "name_ru_RU": "Талисман восстановления разума", "name_it_IT": "Talismano dell'Impulso Mentale", "name_pt_PT": "Talismã Destrava-mentes", "on_use": true, "id_encounter": 408, "id_journal_instance": 230, "id_map": 429, "instance_type": 1}, {"id": 18406, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Onyxia Blood Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6000, "stat_alloc_2": 3750, "stat_alloc_3": 1750, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": 51, "stat_type_3": 46, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10151, "buy_price": 50759, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Onyxia Blood Talisman", "name_ko_KR": "오닉시아 피 부적", "name_fr_FR": "Talisman de sang d'Onyxia", "name_de_DE": "Talisman mit Onyxiablut", "name_zh_CN": "奥妮克希亚龙血护符", "name_es_ES": "Dije de sangre de Onyxia", "name_ru_RU": "Кровный талисман Ониксии", "name_it_IT": "Talismano Insanguinato di Onyxia", "name_pt_PT": "Talismã de Sangue de Onyxia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18465, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7407, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 51, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0077999830245972, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18466, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 51, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0115000009536743, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18467, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7407, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 51, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0152000188827515, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18468, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7407, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 51, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045300006866455, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18469, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5556, "stat_alloc_2": 3704, "stat_alloc_3": 3704, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": 51, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0490000247955322, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18470, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7407, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 51, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9526000022888184, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18471, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7407, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 51, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563000202178955, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18472, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3704, "stat_alloc_2": 3704, "stat_alloc_3": 5555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 51, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599000215530396, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18473, "race_mask": 18446744073709551615, "desc": "Blessed by the Shen'dralar Ancients.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of Eldre'Thalas", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8889, "stat_alloc_2": 3704, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 39, "stat_type_2": 51, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635999798774719, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Royal Seal of Eldre'Thalas", "name_ko_KR": "엘드레탈라스 옥새", "name_fr_FR": "Sceau royal d'Eldre'Thalas", "name_de_DE": "Königliches Siegel von Eldre'Thalas", "name_zh_CN": "埃雷萨拉斯皇家徽记", "name_es_ES": "Sello real de Eldre'Thalas", "name_ru_RU": "Королевская печать Эльдре'Таласа", "name_it_IT": "Sigillo Reale di Eldre'Thalas", "name_pt_PT": "Selo Real de Eldre'Thalas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18537, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Counterattack Lodestone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 14, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6613, "buy_price": 26454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0044000148773193, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 19, "inv_type": 12, "quality": 3, "name_en_US": "Counterattack Lodestone", "name_ko_KR": "반격의 자철광", "name_fr_FR": "Magnétite de contre-attaque", "name_de_DE": "Gegenangriffsleitstein", "name_zh_CN": "反击磁石", "name_es_ES": "Magnetita de contraataque", "name_ru_RU": "Магнит контратаки", "name_it_IT": "Magnetite del Contrattacco", "name_pt_PT": "Magnetita de Contra-ataque", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gyrofreeze Ice Reflector", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6818, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 52, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12500, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0191999673843384, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 260, "req_skill": 2506, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 20, "inv_type": 12, "quality": 3, "name_en_US": "Gyrofreeze Ice Reflector", "name_ko_KR": "회전냉각식 냉기 반사기", "name_fr_FR": "Réflectoglace gyrogivre", "name_de_DE": "Gyrofrosteisreflektor", "name_zh_CN": "超低温寒冰偏斜器", "name_es_ES": "Reflector de hielo girohielo", "name_ru_RU": "Гирозамораживающий ледяной отражатель", "name_it_IT": "Riflettore Girogelido", "name_pt_PT": "Refletor de Gelo Girogélido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18637, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Major Recombobulator", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 600, "buy_price": 2400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0303000211715698, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 275, "req_skill": 2506, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Major Recombobulator", "name_ko_KR": "일급 유전자 역결합기", "name_fr_FR": "Recombobulateur majeur", "name_de_DE": "Großer Rekombobulator", "name_zh_CN": "强力净化器", "name_es_ES": "Recombobulador sublime", "name_ru_RU": "Большой атомарный перенаправлятор", "name_it_IT": "Tecno-Ricostituente Maggiore", "name_pt_PT": "Rebotocador Maior", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18638, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hyper-Radiant Flame Reflector", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7200, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 51, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12500, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 290, "req_skill": 2506, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 3, "name_en_US": "Hyper-Radiant Flame Reflector", "name_ko_KR": "극고온 화염 반사기", "name_fr_FR": "Réflectoflamme hyper-radiant", "name_de_DE": "Hyperstrahlender Flammenreflektor", "name_zh_CN": "高辐射烈焰反射器", "name_es_ES": "Reflector de llamas hiperradiante", "name_ru_RU": "Гиперизлучающий отражатель пламени", "name_it_IT": "Riflettore Radiante Antifuoco", "name_pt_PT": "Refletor de Chamas Hiperradiante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18639, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ultra-Flash Shadow Reflector", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7692, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 54, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12500, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037600040435791, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 300, "req_skill": 2506, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Ultra-Flash Shadow Reflector", "name_ko_KR": "초광자 암흑 반사기", "name_fr_FR": "Réflectombre ultra-flash", "name_de_DE": "Ultrablendender Schattenreflektor", "name_zh_CN": "快速暗影反射器", "name_es_ES": "Reflector de las Sombras ultradeslumbrante", "name_ru_RU": "Ультра-вспышечный отражатель тьмы", "name_it_IT": "Riflettore Antiombrico", "name_pt_PT": "Refletor de Sombras Ultrafulgurante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18646, "race_mask": 18446744073709551615, "desc": "You can see movement when you peer into the Eye.", "pad2": "", "pad1": "", "pad0": "", "name": "The Eye of Divinity", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9897000193595886, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 2659, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 2, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "The Eye of Divinity", "name_ko_KR": "신앙의 눈", "name_fr_FR": "L'Oeil de la divinité", "name_de_DE": "Das Auge der Offenbarung", "name_zh_CN": "神圣之眼", "name_es_ES": "El Ojo de divinidad", "name_ru_RU": "Око Божественности", "name_it_IT": "Occhio della Divinità", "name_pt_PT": "O Olho da Divindade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18665, "race_mask": 18446744073709551615, "desc": "Seething darkness engulfs the eye.", "pad2": "", "pad1": "", "pad0": "", "name": "The Eye of Shadow", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9858999848365784, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "The Eye of Shadow", "name_ko_KR": "어둠의 눈", "name_fr_FR": "L'Oeil de l'ombre", "name_de_DE": "Das Auge der Schatten", "name_zh_CN": "暗影之眼", "name_es_ES": "El Ojo de la Sombra", "name_ru_RU": "Око Тени", "name_it_IT": "Occhio dell'Ombra", "name_pt_PT": "A Visão das Sombras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18706, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arena Master", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 7810, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10031, "buy_price": 40124, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989300012588501, "flags_1": 64, "flags_2": 28672, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 20, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 2, "name_en_US": "Arena Master", "name_ko_KR": "전문 검투사의 징표", "name_fr_FR": "Maître de l'arène", "name_de_DE": "Meister der Arena", "name_zh_CN": "竞技场高手饰物", "name_es_ES": "Maestro de arena", "name_ru_RU": "Повелитель арены", "name_it_IT": "Maestro delle Arene", "name_pt_PT": "Mestre da Arena", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18815, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Pure Flame", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64095, "buy_price": 256380, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746000170707703, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Pure Flame", "name_ko_KR": "순수한 불꽃의 정수", "name_fr_FR": "Essence de la flamme pure", "name_de_DE": "Essenz der reinen Flamme", "name_zh_CN": "纯焰精华", "name_es_ES": "Esencia de la llama pura", "name_ru_RU": "Сущность Чистого Пламени", "name_it_IT": "Essenza della Fiamma Pura", "name_pt_PT": "Essência da Chama Pura", "on_use": false, "id_encounter": 1528, "id_journal_instance": 741, "id_map": 409, "instance_type": 2}, {"id": 18820, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Ephemeral Power", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66290, "buy_price": 265161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9929999709129333, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Ephemeral Power", "name_ko_KR": "단명의 마력 부적", "name_fr_FR": "Talisman de pouvoir éphémère", "name_de_DE": "Talisman der ephemeren Macht", "name_zh_CN": "短暂能量护符", "name_es_ES": "Dije de poder efímero", "name_ru_RU": "Талисман эфемерной власти", "name_it_IT": "Talismano del Potere Effimero", "name_pt_PT": "Talismã do Poder Efêmero", "on_use": true, "id_encounter": 1520, "id_journal_instance": 741, "id_map": 409, "instance_type": 2}, {"id": 18834, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.97079998254776, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18854, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18845, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377000570297241, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 29593, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18846, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413999557495117, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18856, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9523000121116638, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18857, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18850, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559999704360962, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18859, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18851, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9596999883651733, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18862, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18852, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18858, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18853, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9670000076293945, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18863, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18854, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18834, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18856, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0045000314712524, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18846, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18857, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082000494003296, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18849, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18858, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18852, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18859, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0155999660491943, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18850, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18862, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0266000032424927, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18851, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18863, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0302000045776367, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18853, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18864, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 29592, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 18951, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evonice's Landin' Pilla", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4577, "buy_price": 22885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0119999647140503, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Evonice's Landin' Pilla", "name_ko_KR": "에보니스의 낙하 방석", "name_fr_FR": "Oreiller d'atterrissage d'Evonice", "name_de_DE": "Evonices Landekissen", "name_zh_CN": "艾沃奈斯的着陆器", "name_es_ES": "Almohada de aterrizaje de Evonice", "name_ru_RU": "Подушка Эвонис", "name_it_IT": "Cuscino d'Atterraggio di Evonice", "name_pt_PT": "Travesseiro de Aterrissagem de Evonice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19024, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arena Grand Master", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6652, "buy_price": 33261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98580002784729, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Arena Grand Master", "name_ko_KR": "최고검투사의 징표", "name_fr_FR": "Grand maître de l'arène", "name_de_DE": "Großmeister der Arena", "name_zh_CN": "竞技场大师饰物", "name_es_ES": "Gran maestro de arena", "name_ru_RU": "Знак великого мастера арены", "name_it_IT": "Gran Maestro delle Arene", "name_pt_PT": "Grande Mestre da Arena", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19120, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of the Guard Captain", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3333, "stat_alloc_2": 3333, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16283, "buy_price": 65132, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9969000220298767, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rune of the Guard Captain", "name_ko_KR": "수호대장의 룬", "name_fr_FR": "Rune de capitaine de la garde", "name_de_DE": "Rune des Wachbefehlshabers", "name_zh_CN": "卫兵队长符文", "name_es_ES": "Runa del capitán de la guardia", "name_ru_RU": "Руна капитана стражи", "name_it_IT": "Runa del Capitano della Guardia", "name_pt_PT": "Runa do Capitão da Guarda", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19141, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Luffa", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16612, "buy_price": 66451, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000499963760376, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Luffa", "name_ko_KR": "수세미", "name_fr_FR": "Loofa", "name_de_DE": "Luffaschwamm", "name_zh_CN": "丝瓜", "name_es_ES": "Esponja vegetal", "name_ru_RU": "Люфа", "name_it_IT": "Luffa", "name_pt_PT": "Bucha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19287, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Heroism", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9745000004768372, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Heroism", "name_ko_KR": "다크문 카드: 영웅심", "name_fr_FR": "Carte de Sombrelune : Héroïsme", "name_de_DE": "Dunkelmond-Karte: Heldentum", "name_zh_CN": "暗月卡片:英雄", "name_es_ES": "Naipe de la Luna Negra: Heroísmo", "name_ru_RU": "Карта Новолуния: Героизм", "name_it_IT": "Carta di Lunacupa: Eroismo", "name_pt_PT": "Carta de Negraluna: Heroísmo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19288, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Blue Dragon", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.004699945449829, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Blue Dragon", "name_ko_KR": "다크문 카드: 푸른용", "name_fr_FR": "Carte de Sombrelune : Dragon bleu", "name_de_DE": "Dunkelmond-Karte: Blauer Drache", "name_zh_CN": "暗月卡片:蓝龙", "name_es_ES": "Naipe de la Luna Negra: Dragón Azul", "name_ru_RU": "Карта Новолуния: Синий Дракон", "name_it_IT": "Carta di Lunacupa: Drago Blu", "name_pt_PT": "Carta de Negraluna: Dragão Azul", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19289, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Maelstrom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082999467849731, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Maelstrom", "name_ko_KR": "다크문 카드: 혼돈의 소용돌이", "name_fr_FR": "Carte de Sombrelune : Maelström", "name_de_DE": "Dunkelmond-Karte: Mahlstrom", "name_zh_CN": "暗月卡片:漩涡", "name_es_ES": "Naipe de la Luna Negra: La Vorágine", "name_ru_RU": "Карта Новолуния: Водоворот", "name_it_IT": "Carta di Lunacupa: Maelstrom", "name_pt_PT": "Carta de Negraluna: Voragem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Twisting Nether", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0119999647140503, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Twisting Nether", "name_ko_KR": "다크문 카드: 뒤틀린 황천", "name_fr_FR": "Carte de Sombrelune : Néant distordu", "name_de_DE": "Dunkelmond-Karte: Wirbelnder Nether", "name_zh_CN": "暗月卡片:虚空", "name_es_ES": "Naipe de la Luna Negra: El Vacío Abisal", "name_ru_RU": "Карта Новолуния: Круговерть Пустоты", "name_it_IT": "Carta di Lunacupa: Distorsione Fatua", "name_pt_PT": "Carta de Negraluna: Espiral Etérea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19336, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcane-Infused Gem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9602000117301941, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Arcane-Infused Gem", "name_ko_KR": "비전 마력이 주입된 보석", "name_fr_FR": "Gemme imprégnée des Arcanes", "name_de_DE": "Arkanerfüllter Edelstein", "name_zh_CN": "奥术能量宝石", "name_es_ES": "Gema imbuida de Arcana", "name_ru_RU": "Заряженный магией самоцвет", "name_it_IT": "Gemma Infusa d'Arcano", "name_pt_PT": "Gema Infundida no Arcano", "on_use": true, "id_encounter": 1529, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19337, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Black Book", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9639000296592712, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "The Black Book", "name_ko_KR": "검은 고서", "name_fr_FR": "Le Livre noir", "name_de_DE": "Das schwarze Buch", "name_zh_CN": "黑龙之书", "name_es_ES": "El libro negro", "name_ru_RU": "Черная книга", "name_it_IT": "Libro Nero", "name_pt_PT": "O Livro Preto", "on_use": true, "id_encounter": 1529, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19339, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mind Quickening Gem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9711999893188477, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Mind Quickening Gem", "name_ko_KR": "사고 촉진의 보석", "name_fr_FR": "Gemme de vivacité d'esprit", "name_de_DE": "Edelstein des Gedankensprungs", "name_zh_CN": "思维加速宝石", "name_es_ES": "Gema de Estímulo mental", "name_ru_RU": "Дар Стремительной Мысли", "name_it_IT": "Gemma della Lestezza Mentale", "name_pt_PT": "Gema do Pensapresto", "on_use": true, "id_encounter": 1530, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19340, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Metamorphosis", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9749000072479248, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Metamorphosis", "name_ko_KR": "변화의 룬", "name_fr_FR": "Rune de transformation", "name_de_DE": "Rune der Metamorphose", "name_zh_CN": "变形符文", "name_es_ES": "Runa de metamorfosis", "name_ru_RU": "Руна метаморфозы", "name_it_IT": "Runa della Metamorfosi", "name_pt_PT": "Runa da Metamorfose", "on_use": true, "id_encounter": 1530, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19341, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lifegiving Gem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.978600025177002, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Lifegiving Gem", "name_ko_KR": "생명의 보석", "name_fr_FR": "Gemme donneuse de vie", "name_de_DE": "Lebensspendender Edelstein", "name_zh_CN": "生命宝石", "name_es_ES": "Gema dadora de vida", "name_ru_RU": "Животворный камень", "name_it_IT": "Gemma Vitale", "name_pt_PT": "Gema da Vivificação", "on_use": true, "id_encounter": 1531, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19342, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Venomous Totem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.982200026512146, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Venomous Totem", "name_ko_KR": "맹독의 토템", "name_fr_FR": "Totem venimeux", "name_de_DE": "Gifttotem", "name_zh_CN": "毒性图腾", "name_es_ES": "Tótem venenoso", "name_ru_RU": "Ядовитый тотем", "name_it_IT": "Totem Venefico", "name_pt_PT": "Totem Peçonhento", "on_use": true, "id_encounter": 1531, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19343, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scrolls of Blinding Light", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9858999848365784, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Scrolls of Blinding Light", "name_ko_KR": "빛의 결속 두루마리", "name_fr_FR": "Parchemin de lumière aveuglante", "name_de_DE": "Rollen des Blendenden Lichts", "name_zh_CN": "盲目光芒卷轴", "name_es_ES": "Pergaminos de Luz cegadora", "name_ru_RU": "Свитки Слепящего Света", "name_it_IT": "Pergamene della Luce Vincolante", "name_pt_PT": "Pergaminhos de Luz Cegante", "on_use": true, "id_encounter": 1532, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Natural Alignment Crystal", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9896000027656555, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Natural Alignment Crystal", "name_ko_KR": "자연 동화의 수정", "name_fr_FR": "Cristal d'alignement sur la nature", "name_de_DE": "Kristall der Naturverbundenheit", "name_zh_CN": "自然之盟水晶", "name_es_ES": "Cristal de alineación natural", "name_ru_RU": "Кристалл Природного Управления", "name_it_IT": "Cristallo dell'Allineamento Naturale", "name_pt_PT": "Cristal de Alinhamento Natural", "on_use": true, "id_encounter": 1532, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19345, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aegis of Preservation", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9932000041007996, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Aegis of Preservation", "name_ko_KR": "구원의 아이기스", "name_fr_FR": "Egide de préservation", "name_de_DE": "Aegis der Bewahrung", "name_zh_CN": "庇护者", "name_es_ES": "Égida de preservación", "name_ru_RU": "Эгида сохранения", "name_it_IT": "Scudo della Conservazione", "name_pt_PT": "Égide de Preservação", "on_use": true, "id_encounter": 1533, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19379, "race_mask": 18446744073709551615, "desc": "A silver liquid flows within the impenetrable ebony shell. The item feels pure. It radiates an essence of extreme power.", "pad2": "", "pad1": "", "pad0": "", "name": "Neltharion's Tear", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3556, "stat_alloc_2": 8444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 205863, "buy_price": 823454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Neltharion's Tear", "name_ko_KR": "넬타리온의 눈물", "name_fr_FR": "Larme de Neltharion", "name_de_DE": "Neltharions Träne", "name_zh_CN": "奈萨里奥之泪", "name_es_ES": "Lágrima de Neltharion", "name_ru_RU": "Слеза Нелтариона", "name_it_IT": "Lacrima di Neltharion", "name_pt_PT": "Lágrima de Neltharion", "on_use": false, "id_encounter": 1536, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19395, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rejuvenating Gem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7317, "stat_alloc_2": 5366, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103103, "buy_price": 412413, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9560999870300293, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Rejuvenating Gem", "name_ko_KR": "원기 회복의 보석", "name_fr_FR": "Gemme de récupération", "name_de_DE": "Edelstein der Verjüngung", "name_zh_CN": "恢复宝石", "name_es_ES": "Gema rejuvenecedora", "name_ru_RU": "Омолаживающий самоцвет", "name_it_IT": "Gemma Rinvigorente", "name_pt_PT": "Gema Rejuvenescedora", "on_use": false, "id_encounter": 1532, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19406, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Drake Fang Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2222, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 32, "stat_type_3": 13, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0230000019073486, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Drake Fang Talisman", "name_ko_KR": "비룡이빨 부적", "name_fr_FR": "Talisman croc-de-drake", "name_de_DE": "Drachenzahntalisman", "name_zh_CN": "龙牙饰物", "name_es_ES": "Dije de colmillo de draco", "name_ru_RU": "Талисман Драконьего Клыка", "name_it_IT": "Talismano della Zanna di Draco", "name_pt_PT": "Talismã de Presa de Draco", "on_use": false, "id_encounter": 1533, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19431, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Styleen's Impeding Scarab", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8049, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103117, "buy_price": 412471, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Styleen's Impeding Scarab", "name_ko_KR": "스틸린의 방어 스카라베", "name_fr_FR": "Scarabée d'obstruction de Styleen", "name_de_DE": "Styleens verhindernder Skarabäus", "name_zh_CN": "斯泰林的甲虫壳", "name_es_ES": "Escarabajo trabador de Styleen", "name_ru_RU": "Упрямый скарабей Стилины", "name_it_IT": "Scarabeo dell'Ostacolo di Styleen", "name_pt_PT": "Escaravelho Iminente de Styleen", "on_use": false, "id_encounter": 1534, "id_journal_instance": 742, "id_map": 469, "instance_type": 2}, {"id": 19812, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of the Dawn", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746999740600586, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rune of the Dawn", "name_ko_KR": "여명의 룬", "name_fr_FR": "Rune de l'Aube", "name_de_DE": "Rune der Dämmerung", "name_zh_CN": "黎明符文", "name_es_ES": "Runa del Alba", "name_ru_RU": "Руна Рассвета", "name_it_IT": "Runa dell'Alba", "name_pt_PT": "Runa da Aurora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19930, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mar'li's Eye", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73852, "buy_price": 295411, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9930999875068665, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mar'li's Eye", "name_ko_KR": "말리의 눈", "name_fr_FR": "Oeil de Mar'li", "name_de_DE": "Mar'lis Auge", "name_zh_CN": "玛尔里之眼", "name_es_ES": "Ojo de Mar'li", "name_ru_RU": "Глаз Мар'ли", "name_it_IT": "Occhio di Mar'li", "name_pt_PT": "Olho da Mar'li", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19947, "race_mask": 18446744073709551615, "desc": "The inscription reads: Fer really long castin'.", "pad2": "", "pad1": "", "pad0": "", "name": "Nat Pagle's Broken Reel", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86528, "buy_price": 346112, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0084999799728394, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Nat Pagle's Broken Reel", "name_ko_KR": "망가진 내트 페이글의 릴", "name_fr_FR": "Moulinet cassé de Nat Pagle", "name_de_DE": "Nat Pagles kaputte Spule", "name_zh_CN": "纳特·帕格的卷尺", "name_es_ES": "Carrete roto de Nat Pagle", "name_ru_RU": "Сломанный наколдовыватель Ната Пэгла", "name_it_IT": "Mulinello Rotto di Nat Pagle", "name_pt_PT": "Carretel Quebrado do Nat Pagle", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zandalarian Hero Badge", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10153, "buy_price": 50769, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0120999813079834, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Zandalarian Hero Badge", "name_ko_KR": "잔달라의 영웅 휘장", "name_fr_FR": "Ecusson de héros zandalarien", "name_de_DE": "Heldenabzeichen der Zandalari", "name_zh_CN": "赞达拉英雄徽记", "name_es_ES": "Distintivo de héroe de Zandalar", "name_ru_RU": "Геройский знак зандаларов", "name_it_IT": "Distintivo dell'Eroe degli Zandalari", "name_pt_PT": "Insígnia Heroica Zandalariana", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19949, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zandalarian Hero Medallion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10191, "buy_price": 50955, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0157999992370605, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Zandalarian Hero Medallion", "name_ko_KR": "잔달라의 영웅 메달", "name_fr_FR": "Médaillon de héros zandalarien", "name_de_DE": "Heldenmedaillon der Zandalari", "name_zh_CN": "赞达拉英雄勋章", "name_es_ES": "Medallón de héroe de Zandalar", "name_ru_RU": "Геройский медальон зандаларов", "name_it_IT": "Medaglione dell'Eroe degli Zandalari", "name_pt_PT": "Medalhão Heroico Zandalariano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19950, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zandalarian Hero Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10228, "buy_price": 51141, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0195000171661377, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Zandalarian Hero Charm", "name_ko_KR": "잔달라의 영웅 부적", "name_fr_FR": "Charme de héros zandalarien", "name_de_DE": "Heldenamulett der Zandalari", "name_zh_CN": "赞达拉英雄护符", "name_es_ES": "Talismán de héroe de Zandalar", "name_ru_RU": "Геройский оберег зандаларов", "name_it_IT": "Talismano dell'Eroe degli Zandalari", "name_pt_PT": "Patuá Heroico Zandalariano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19951, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gri'lek's Charm of Might", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13730, "buy_price": 68654, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0232000350952148, "flags_1": 524544, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 474, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Gri'lek's Charm of Might", "name_ko_KR": "그리렉의 힘의 부적", "name_fr_FR": "Charme de puissance de Gri'lek", "name_de_DE": "Gri'leks Amulett der Macht", "name_zh_CN": "格里雷克的力量护符", "name_es_ES": "Talismán de poderío de Gri'lek", "name_ru_RU": "Оберег могущества Гри'лека", "name_it_IT": "Talismano del Vigore di Gri'lek", "name_pt_PT": "Patuá do Poder de Gri'lek", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19952, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gri'lek's Charm of Valor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13779, "buy_price": 68896, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0268000364303589, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 475, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Gri'lek's Charm of Valor", "name_ko_KR": "그리렉의 용기의 부적", "name_fr_FR": "Charme de courage de Gri'lek", "name_de_DE": "Gri'leks Amulett der Ehre", "name_zh_CN": "格里雷克的勇气护符", "name_es_ES": "Talismán de valor de Gri'lek", "name_ru_RU": "Оберег доблести Гри'лека", "name_it_IT": "Talismano del Valore di Gri'lek", "name_pt_PT": "Patuá Valoroso de Gri'lek", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19953, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Charm of Beasts", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13828, "buy_price": 69144, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030500054359436, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 477, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Charm of Beasts", "name_ko_KR": "레나타키의 야수의 부적", "name_fr_FR": "Charme des bêtes de Renataki", "name_de_DE": "Renatakis Amulett der Bestien", "name_zh_CN": "雷纳塔基的野兽护符", "name_es_ES": "Talismán de bestias de Renataki", "name_ru_RU": "Звериный оберег Ренатаки", "name_it_IT": "Talismano delle Bestie di Renataki", "name_pt_PT": "Patuá Bestial de Renataki", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19954, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Charm of Trickery", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13878, "buy_price": 69392, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0341999530792236, "flags_1": 524544, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 478, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Charm of Trickery", "name_ko_KR": "레나타키의 계략의 부적", "name_fr_FR": "Charme de supercherie de Renataki", "name_de_DE": "Renatakis Amulett der Gaunerei", "name_zh_CN": "雷纳塔基的狡诈护符", "name_es_ES": "Talismán de artimañas de Renataki", "name_ru_RU": "Амулет коварства Ренатаки", "name_it_IT": "Talismano dell'Astuzia di Renataki", "name_pt_PT": "Patuá Ardiloso de Renataki", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19955, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Charm of Nature", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13926, "buy_price": 69634, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377999544143677, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 479, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Charm of Nature", "name_ko_KR": "우슐레이의 자연의 부적", "name_fr_FR": "Charme de nature de Wushoolay", "name_de_DE": "Wushoolays Amulett der Natur", "name_zh_CN": "乌苏雷的自然护符", "name_es_ES": "Talismán de naturaleza de Wushoolay", "name_ru_RU": "Амулет Природы Вушулая", "name_it_IT": "Talismano della Natura di Wushoolay", "name_pt_PT": "Patuá Natural de Vuxulai", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19956, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Charm of Spirits", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13976, "buy_price": 69882, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0414999723434448, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 476, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Charm of Spirits", "name_ko_KR": "우슐레이의 정기의 부적", "name_fr_FR": "Charme-esprits de Wushoolay", "name_de_DE": "Wushoolays Amulett der Geister", "name_zh_CN": "乌苏雷的灵魂护符", "name_es_ES": "Talismán de espíritus de Wushoolay", "name_ru_RU": "Амулет Духов Вушулая", "name_it_IT": "Talismano degli Spiriti di Wushoolay", "name_pt_PT": "Patuá Espiritual de Vuxulai", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19957, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hazza'rah's Charm of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14026, "buy_price": 70130, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045199990272522, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 481, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Hazza'rah's Charm of Destruction", "name_ko_KR": "하자라의 파괴의 부적", "name_fr_FR": "Charme de destruction d'Hazza'rah", "name_de_DE": "Hazza'rahs Amulett der Zerstörung", "name_zh_CN": "哈扎拉尔的毁灭护符", "name_es_ES": "Talismán de destrucción de Hazza'rah", "name_ru_RU": "Амулет разрушения Хазза'раха", "name_it_IT": "Talismano della Distruzione di Hazza'rah", "name_pt_PT": "Patuá Destruidor de Hazza'rah", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19958, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hazza'rah's Charm of Healing", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14075, "buy_price": 70379, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 480, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Hazza'rah's Charm of Healing", "name_ko_KR": "하자라의 치유의 부적", "name_fr_FR": "Charme de soin d'Hazza'rah", "name_de_DE": "Hazza'rahs Amulett der Heilung", "name_zh_CN": "哈扎拉尔的治疗护符", "name_es_ES": "Talismán de sanación de Hazza'rah", "name_ru_RU": "Амулет исцеления Хазза'раха", "name_it_IT": "Talismano Curativo di Hazza'rah", "name_pt_PT": "Patuá Curativo de Hazza'rah", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19959, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hazza'rah's Charm of Magic", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12780, "buy_price": 63904, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524000287055969, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 482, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Hazza'rah's Charm of Magic", "name_ko_KR": "하자라의 마법의 부적", "name_fr_FR": "Charme de magie d'Hazza'rah", "name_de_DE": "Hazza'rahs Amulett der Magie", "name_zh_CN": "哈扎拉尔的魔法护符", "name_es_ES": "Talismán de magia de Hazza'rah", "name_ru_RU": "Амулет магии Хазза'раха", "name_it_IT": "Talismano Magico di Hazza'rah", "name_pt_PT": "Patuá Mágico de Hazza'rah", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19979, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hook of the Master Angler", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 32768, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9787999987602234, "flags_1": 192, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Hook of the Master Angler", "name_ko_KR": "낚시왕의 낚싯바늘", "name_fr_FR": "Hameçon du maître pêcheur", "name_de_DE": "Angelhaken des Anglermeisters", "name_zh_CN": "钓鱼大师鱼钩", "name_es_ES": "Anzuelo de Maestro pescador", "name_ru_RU": "Крючок мастера-рыболова", "name_it_IT": "Amo del Maestro Pescatore", "name_pt_PT": "Anzol do Pescador-mestre", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19990, "race_mask": 18446744073709551615, "desc": "A friend in need is a friend without beads.", "pad2": "", "pad1": "", "pad0": "", "name": "Blessed Prayer Beads", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0191999673843384, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Blessed Prayer Beads", "name_ko_KR": "축복받은 기원의 묵주", "name_fr_FR": "Chapelet béni", "name_de_DE": "Gesegnete Gebetsperlen", "name_zh_CN": "祝福珠串", "name_es_ES": "Cuentas de rezo benditas", "name_ru_RU": "Благословенные четки", "name_it_IT": "Perle della Preghiera Benedette", "name_pt_PT": "Contas de Oração Abençoadas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19991, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Devilsaur Eye", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0228999853134155, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Devilsaur Eye", "name_ko_KR": "데빌사우루스 눈", "name_fr_FR": "Oeil de diablosaure", "name_de_DE": "Auge eines Teufelssauriers", "name_zh_CN": "魔暴龙眼", "name_es_ES": "Ojo de demosaurio", "name_ru_RU": "Глаз дьявозавра", "name_it_IT": "Occhio del Gigantosauro", "name_pt_PT": "Olho de Demossauro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 19992, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Devilsaur Tooth", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2273, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0266000032424927, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Devilsaur Tooth", "name_ko_KR": "데빌사우루스 이빨", "name_fr_FR": "Dent de diablosaure", "name_de_DE": "Zahn eines Teufelssauriers", "name_zh_CN": "魔暴龙牙", "name_es_ES": "Diente de demosaurio", "name_ru_RU": "Зуб дьявозавра", "name_it_IT": "Dente di Gigantosauro", "name_pt_PT": "Dente de Demossauro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20036, "race_mask": 18446744073709551615, "desc": "Unpredictability leads to both victory and death.", "pad2": "", "pad1": "", "pad0": "", "name": "Fire Ruby", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2750, "buy_price": 11002, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674000144004822, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fire Ruby", "name_ko_KR": "화염 루비", "name_fr_FR": "Rubis de feu", "name_de_DE": "Feuerrubin", "name_zh_CN": "火焰宝石", "name_es_ES": "Rubí de fuego", "name_ru_RU": "Огненный рубин", "name_it_IT": "Rubino di Fuoco", "name_pt_PT": "Rubi de Fogo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20071, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Arathor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 20072, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Arathor", "name_ko_KR": "아라소르 부적", "name_fr_FR": "Talisman d'Arathor", "name_de_DE": "Talisman von Arathor", "name_zh_CN": "阿拉索护符", "name_es_ES": "Dije de Arathor", "name_ru_RU": "Талисман Аратора", "name_it_IT": "Talismano di Arathor", "name_pt_PT": "Talismã de Arathor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20072, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiler's Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524000287055969, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 20071, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Defiler's Talisman", "name_ko_KR": "파멸단 부적", "name_fr_FR": "Talisman de Profanateur", "name_de_DE": "Talisman der Entweihten", "name_zh_CN": "污染者护符", "name_es_ES": "Dije de Rapiñador", "name_ru_RU": "Талисман Осквернителя", "name_it_IT": "Talismano dei Profanatori", "name_pt_PT": "Talismã do Profanador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20130, "race_mask": 18446744073709551615, "desc": "Served on the rocks.", "pad2": "", "pad1": "", "pad0": "", "name": "Diamond Flask", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9711999893188477, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Diamond Flask", "name_ko_KR": "다이아몬드 물통", "name_fr_FR": "Flacon de diamant", "name_de_DE": "Diamantenfläschchen", "name_zh_CN": "钻石水瓶", "name_es_ES": "Frasco de diamante", "name_ru_RU": "Алмазный настой", "name_it_IT": "Tonico del Diamante", "name_pt_PT": "Frasco de Diamante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20503, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enamored Water Spirit", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0490000247955322, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Enamored Water Spirit", "name_ko_KR": "사로잡힌 물의 정령", "name_fr_FR": "Esprit de l'eau amoureux", "name_de_DE": "Entzückter Wassergeist", "name_zh_CN": "被迷惑的水之魂", "name_es_ES": "Espíritu de agua enamorado", "name_ru_RU": "Влюбленный водный дух", "name_it_IT": "Spirito dell'Acqua dell'Innamorato", "name_pt_PT": "Espírito de Água Enamorado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20512, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sanctified Orb", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0084999799728394, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sanctified Orb", "name_ko_KR": "축성의 보주", "name_fr_FR": "Orbe sanctifié", "name_de_DE": "Geweihte Kugel", "name_zh_CN": "神圣宝珠", "name_es_ES": "Orbe santificado", "name_ru_RU": "Освященная сфера", "name_it_IT": "Globo Consacrato", "name_pt_PT": "Orbe Santificado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20534, "race_mask": 18446744073709551615, "desc": "Dark rituals are trapped in dark gems.", "pad2": "", "pad1": "", "pad0": "", "name": "Abyss Shard", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6818, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3975, "buy_price": 15903, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Abyss Shard", "name_ko_KR": "나락의 조각", "name_fr_FR": "Éclat abyssal", "name_de_DE": "Abysssplitter", "name_zh_CN": "深渊裂片", "name_es_ES": "Fragmento Abisal", "name_ru_RU": "Осколок Бездны", "name_it_IT": "Scheggia Abissale", "name_pt_PT": "Fragmento do Abismo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 20636, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hibernation Crystal", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89103, "buy_price": 356415, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Hibernation Crystal", "name_ko_KR": "휴면의 수정", "name_fr_FR": "Cristal d'hibernation", "name_de_DE": "Hibernationskristall", "name_zh_CN": "休眠水晶", "name_es_ES": "Cristal de hibernación", "name_ru_RU": "Кристалл спячки", "name_it_IT": "Cristallo dell'Ibernazione", "name_pt_PT": "Cristal de Hibernação", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiler's Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0008000135421753, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21117, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "Defiler's Talisman", "name_ko_KR": "파멸단 부적", "name_fr_FR": "Talisman de Profanateur", "name_de_DE": "Talisman der Entweihten", "name_zh_CN": "污染者护符", "name_es_ES": "Dije de Rapiñador", "name_ru_RU": "Талисман Осквернителя", "name_it_IT": "Talismano dei Profanatori", "name_pt_PT": "Talismã do Profanador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiler's Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0045000314712524, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21118, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 16, "inv_type": 12, "quality": 3, "name_en_US": "Defiler's Talisman", "name_ko_KR": "파멸단 부적", "name_fr_FR": "Talisman de Profanateur", "name_de_DE": "Talisman der Entweihten", "name_zh_CN": "污染者护符", "name_es_ES": "Dije de Rapiñador", "name_ru_RU": "Талисман Осквернителя", "name_it_IT": "Talismano dei Profanatori", "name_pt_PT": "Talismã do Profanador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Arathor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082000494003296, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21115, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Arathor", "name_ko_KR": "아라소르 부적", "name_fr_FR": "Talisman d'Arathor", "name_de_DE": "Talisman von Arathor", "name_zh_CN": "阿拉索护符", "name_es_ES": "Dije de Arathor", "name_ru_RU": "Талисман Аратора", "name_it_IT": "Talismano di Arathor", "name_pt_PT": "Talismã de Arathor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21118, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Arathor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21116, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 16, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Arathor", "name_ko_KR": "아라소르 부적", "name_fr_FR": "Talisman d'Arathor", "name_de_DE": "Talisman von Arathor", "name_zh_CN": "阿拉索护符", "name_es_ES": "Dije de Arathor", "name_ru_RU": "Талисман Аратора", "name_it_IT": "Talismano di Arathor", "name_pt_PT": "Talismã de Arathor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21119, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Arathor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0154999494552612, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21120, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 19, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 12, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Arathor", "name_ko_KR": "아라소르 부적", "name_fr_FR": "Talisman d'Arathor", "name_de_DE": "Talisman von Arathor", "name_zh_CN": "阿拉索护符", "name_es_ES": "Dije de Arathor", "name_ru_RU": "Талисман Аратора", "name_it_IT": "Talismano di Arathor", "name_pt_PT": "Talismã de Arathor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21120, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiler's Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045699954032898, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 21119, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 19, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 12, "inv_type": 12, "quality": 3, "name_en_US": "Defiler's Talisman", "name_ko_KR": "파멸단 부적", "name_fr_FR": "Talisman de Profanateur", "name_de_DE": "Talisman der Entweihten", "name_zh_CN": "污染者护符", "name_es_ES": "Dije de Rapiñador", "name_ru_RU": "Талисман Осквернителя", "name_it_IT": "Talismano dei Profanatori", "name_pt_PT": "Talismã do Profanador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21180, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Earthstrike", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045300006866455, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Earthstrike", "name_ko_KR": "대지의 격동", "name_fr_FR": "Choc de terre", "name_de_DE": "Erdschlag", "name_zh_CN": "大地之击", "name_es_ES": "Golpe de tierra", "name_ru_RU": "Земной удар", "name_it_IT": "Assalto Terrestre", "name_pt_PT": "Golpe Terreno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grace of Earth", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0490000247955322, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Grace of Earth", "name_ko_KR": "대지의 은총", "name_fr_FR": "Grâce de la terre", "name_de_DE": "Erdanmut", "name_zh_CN": "大地之握", "name_es_ES": "Gracia de la Tierra", "name_ru_RU": "Благодать Земли", "name_it_IT": "Grazia della Terra", "name_pt_PT": "Dádiva da Terra", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21326, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defender of the Timbermaw", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 10226, "buy_price": 51131, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0192999839782715, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 576, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Defender of the Timbermaw", "name_ko_KR": "나무구렁 수호자", "name_fr_FR": "Défenseur des Grumegueules", "name_de_DE": "Verteidiger der Holzschlundfeste", "name_zh_CN": "木喉防御者", "name_es_ES": "Defensor de los Fauces de Madera", "name_ru_RU": "Защита Древобрюхов", "name_it_IT": "Difensore dei Mordilegno", "name_pt_PT": "Defensor dos Presamatos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21473, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Moam", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 82878, "buy_price": 331515, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Eye of Moam", "name_ko_KR": "모암의 눈", "name_fr_FR": "Oeil de Moam", "name_de_DE": "Auge von Moam", "name_zh_CN": "莫阿姆之眼", "name_es_ES": "Ojo de Moam", "name_ru_RU": "Глаз Моама", "name_it_IT": "Occhio di Moam", "name_pt_PT": "Olho de Moam", "on_use": true, "id_encounter": 1539, "id_journal_instance": 743, "id_map": 509, "instance_type": 2}, {"id": 21488, "race_mask": 18446744073709551615, "desc": "Ouch", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of Chitinous Spikes", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67812, "buy_price": 271251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9785000085830688, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Fetish of Chitinous Spikes", "name_ko_KR": "껍질쐐기 우상", "name_fr_FR": "Fétiche d'épines chitineuses", "name_de_DE": "Chitinstachelfetisch", "name_zh_CN": "虫刺塑像", "name_es_ES": "Fetiche de pinchos de quitina", "name_ru_RU": "Фетиш Хитиновых Шипов", "name_it_IT": "Feticcio delle Spine Chitinose", "name_pt_PT": "Fetiche de Espinhos Quitinosos", "on_use": true, "id_encounter": 1540, "id_journal_instance": 743, "id_map": 509, "instance_type": 2}, {"id": 21565, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Perfection", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3684, "stat_alloc_2": 10526, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9934999942779541, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 2000, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Rune of Perfection", "name_ko_KR": "완수의 룬", "name_fr_FR": "Rune de perfection", "name_de_DE": "Rune der Perfektion", "name_zh_CN": "完美贡献符文", "name_es_ES": "Runa de perfección", "name_ru_RU": "Руна совершенства", "name_it_IT": "Runa della Perfezione", "name_pt_PT": "Runa da Perfeição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21566, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Perfection", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4000, "stat_alloc_2": 10000, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 16, "class_mask": 2000, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Rune of Perfection", "name_ko_KR": "완수의 룬", "name_fr_FR": "Rune de perfection", "name_de_DE": "Rune der Perfektion", "name_zh_CN": "完美贡献符文", "name_es_ES": "Runa de perfección", "name_ru_RU": "Руна совершенства", "name_it_IT": "Runa della Perfezione", "name_pt_PT": "Runa da Perfeição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21567, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Duty", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3684, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0008000135421753, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 527, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Rune of Duty", "name_ko_KR": "의무의 룬", "name_fr_FR": "Rune de devoir", "name_de_DE": "Rune der Pflicht", "name_zh_CN": "义务符文", "name_es_ES": "Runa de deber", "name_ru_RU": "Руна долга", "name_it_IT": "Runa del Dovere", "name_pt_PT": "Runa do Dever", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21568, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Duty", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0045000314712524, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 16, "class_mask": 527, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Rune of Duty", "name_ko_KR": "의무의 룬", "name_fr_FR": "Rune de devoir", "name_de_DE": "Rune der Pflicht", "name_zh_CN": "义务符文", "name_es_ES": "Runa de deber", "name_ru_RU": "Руна долга", "name_it_IT": "Runa del Dovere", "name_pt_PT": "Runa do Dever", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vanquished Tentacle of C'Thun", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 108030, "buy_price": 432121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9713000059127808, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Vanquished Tentacle of C'Thun", "name_ko_KR": "정복당한 크툰의 촉수", "name_fr_FR": "Tentacule de C'Thun vaincu", "name_de_DE": "Bezwungenes Tentakel von C'Thun", "name_zh_CN": "克苏恩的触须", "name_es_ES": "Tentáculo derrotado de C'Thun", "name_ru_RU": "Безжизненное щупальце К'Туна", "name_it_IT": "Tentacolo Dominato di C'thun", "name_pt_PT": "Tentáculo Derrotado de C'Thun", "on_use": true, "id_encounter": 1551, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 21625, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scarab Brooch", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 83030, "buy_price": 332121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0196000337600708, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Scarab Brooch", "name_ko_KR": "스카라베 브로치", "name_fr_FR": "Broche scarabée", "name_de_DE": "Skarabäusbrosche", "name_zh_CN": "甲虫胸针", "name_es_ES": "Broche escarabajo", "name_ru_RU": "Брошь-скарабей", "name_it_IT": "Spilla Scarabeo", "name_pt_PT": "Broche do Escaravelho", "on_use": true, "id_encounter": 1548, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 21647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of the Sand Reaver", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86370, "buy_price": 345481, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0268000364303589, "flags_1": 524544, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Fetish of the Sand Reaver", "name_ko_KR": "모래약탈자의 우상", "name_fr_FR": "Fétiche du saccageur des sables", "name_de_DE": "Fetisch des Sandhäschers", "name_zh_CN": "沙漠掠夺者塑像", "name_es_ES": "Fetiche del Atracador de arena", "name_ru_RU": "Фетиш песчаного разбойника", "name_it_IT": "Feticcio del Razziatore delle Sabbie", "name_pt_PT": "Fetiche do Aniquilador Arenoso", "on_use": true, "id_encounter": 1545, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 21670, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badge of the Swarmguard", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80303, "buy_price": 321213, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9641000032424927, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Badge of the Swarmguard", "name_ko_KR": "전투감시병의 휘장", "name_fr_FR": "Ecusson de garde-essaim", "name_de_DE": "Abzeichen der Schwarmwache", "name_zh_CN": "虫群卫士徽章", "name_es_ES": "Distintivo del guardaenjambre", "name_ru_RU": "Жетон Стража Роя", "name_it_IT": "Distintivo della Guardia dello Sciame", "name_pt_PT": "Distintivo dos Guarda-enxames", "on_use": true, "id_encounter": 1544, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 21685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Scarab", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87120, "buy_price": 348481, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045699954032898, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Petrified Scarab", "name_ko_KR": "석화된 스카라베", "name_fr_FR": "Scarabée pétrifié", "name_de_DE": "Versteinerter Skarabäus", "name_zh_CN": "石化甲虫", "name_es_ES": "Escarabajo petrificado", "name_ru_RU": "Окаменелый скарабей", "name_it_IT": "Scarabeo Pietrificato", "name_pt_PT": "Escaravelho Petrificado", "on_use": true, "id_encounter": 1547, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 21748, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Jade Owl", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 1667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.982699990272522, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 200, "req_skill": 2524, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 15, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Jade Owl", "name_ko_KR": "조각상 - 비취 올빼미", "name_fr_FR": "Figurine de chouette de jade", "name_de_DE": "Figur - Jadeeule", "name_zh_CN": "雕像 - 碧玉猫头鹰", "name_es_ES": "Figurilla: búho de jade", "name_ru_RU": "Статуэтка нефритовой совы", "name_it_IT": "Statuetta - Gufo di Giada", "name_pt_PT": "Estatueta - Coruja de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21756, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Golden Hare", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0120999813079834, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 200, "req_skill": 2524, "ilevel": 22, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 15, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Golden Hare", "name_ko_KR": "조각상 - 황금 토끼", "name_fr_FR": "Figurine de lièvre doré", "name_de_DE": "Figur - Goldener Hase", "name_zh_CN": "雕像 - 金兔", "name_es_ES": "Figurilla: liebre dorada", "name_ru_RU": "Статуэтка золотого зайца", "name_it_IT": "Statuetta - Lepre Dorata", "name_pt_PT": "Estatueta - Lebre Dourada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21758, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Black Pearl Panther", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0195000171661377, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 215, "req_skill": 2524, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 16, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Black Pearl Panther", "name_ko_KR": "조각상 - 검은 진주 표범", "name_fr_FR": "Figurine de panthère de perle noire", "name_de_DE": "Figur - Schwarzer Perlenpanther", "name_zh_CN": "雕像 - 黑珍珠猎豹", "name_es_ES": "Figurilla: pantera de perla negra", "name_ru_RU": "Статуэтка пантеры из черного жемчуга", "name_it_IT": "Statuetta - Pantera di Perla Nera", "name_pt_PT": "Estatueta - Pantera de Pérola Negra", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21760, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Truesilver Crab", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0268000364303589, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 225, "req_skill": 2524, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Truesilver Crab", "name_ko_KR": "조각상 - 진은 게", "name_fr_FR": "Figurine de crabe en vrai-argent", "name_de_DE": "Figur - Echtsilberkrebs", "name_zh_CN": "雕像 - 真银螃蟹", "name_es_ES": "Figurilla: cangrejo de veraplata", "name_ru_RU": "Статуэтка краба из истинного серебра", "name_it_IT": "Statuetta - Granchio di Verargento", "name_pt_PT": "Estatueta - Caranguejo de Veraprata", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Truesilver Boar", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9642000198364258, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 235, "req_skill": 2524, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 18, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Truesilver Boar", "name_ko_KR": "조각상 - 진은 멧돼지", "name_fr_FR": "Figurine de sanglier en vrai-argent", "name_de_DE": "Figur - Echtsilbereber", "name_zh_CN": "雕像 - 真银野猪", "name_es_ES": "Figurilla: jabalí de veraplata", "name_ru_RU": "Статуэтка вепря из истинного серебра", "name_it_IT": "Statuetta - Cinghiale di Verargento", "name_pt_PT": "Estatueta - Javali de Veraprata", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21769, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Ruby Serpent", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2353, "stat_alloc_2": 2353, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1500, "buy_price": 6000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.986299991607666, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 260, "req_skill": 2524, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 20, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Ruby Serpent", "name_ko_KR": "조각상 - 루비 뱀", "name_fr_FR": "Figurine de serpent de rubis", "name_de_DE": "Figur - Rubinschlange", "name_zh_CN": "雕像 - 红宝石蛇", "name_es_ES": "Figurilla: serpiente de rubí", "name_ru_RU": "Статуэтка рубиновой змеи", "name_it_IT": "Statuetta - Serpente di Rubino", "name_pt_PT": "Estatueta - Serpente de Rubi", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21777, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Emerald Owl", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3750, "buy_price": 15000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 285, "req_skill": 2524, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 2, "name_en_US": "Figurine - Emerald Owl", "name_ko_KR": "조각상 - 에메랄드 올빼미", "name_fr_FR": "Figurine de chouette d'émeraude", "name_de_DE": "Figur - Smaragdeule", "name_zh_CN": "雕像 - 翡翠猫头鹰", "name_es_ES": "Figurilla: búho de esmeralda", "name_ru_RU": "Статуэтка изумрудной совы", "name_it_IT": "Statuetta - Gufo di Smeraldo", "name_pt_PT": "Estatueta - Coruja de Esmeralda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21784, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Black Diamond Crab", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9678000211715698, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 300, "req_skill": 2524, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Black Diamond Crab", "name_ko_KR": "조각상 - 검은 다이아몬드 게", "name_fr_FR": "Figurine de crabe de diamant noir", "name_de_DE": "Figur - Schwarzer Diamantkrebs", "name_zh_CN": "雕像 - 黑钻石螃蟹", "name_es_ES": "Figurilla: cangrejo de diamante negro", "name_ru_RU": "Статуэтка черного алмазного краба", "name_it_IT": "Statuetta - Granchio di Diamante Nero", "name_pt_PT": "Estatueta - Caranguejo de Diamante Preto", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21789, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Dark Iron Scorpid", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3462, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9861000180244446, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 300, "req_skill": 2524, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Dark Iron Scorpid", "name_ko_KR": "조각상 - 검은무쇠 전갈", "name_fr_FR": "Figurine de scorpide en sombrefer", "name_de_DE": "Figur - Dunkeleisenskorpid", "name_zh_CN": "雕像 - 黑铁蝎", "name_es_ES": "Figurilla: escórpido de hierro negro", "name_ru_RU": "Статуэтка скорпида из черного железа", "name_it_IT": "Statuetta - Scorpide di Ferroscuro", "name_pt_PT": "Estatuteta - Escorpídeo de Ferro Negro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 21891, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of the Fallen Star", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 99378, "buy_price": 397512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0192999839782715, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Shard of the Fallen Star", "name_ko_KR": "운석 파편", "name_fr_FR": "Éclat de l'étoile tombée", "name_de_DE": "Splitter des gefallenen Sterns", "name_zh_CN": "坠落星辰碎片", "name_es_ES": "Fragmento de la estrella caída", "name_ru_RU": "Осколок упавшей звезды", "name_it_IT": "Frammento della Stella Caduta", "name_pt_PT": "Fragmento da Estrela Caída", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 22268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Infused Emblem", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3377, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66290, "buy_price": 265161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0382000207901, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Draconic Infused Emblem", "name_ko_KR": "용력의 문장", "name_fr_FR": "Emblème draconique imprégné", "name_de_DE": "Emblem der drakonischen Macht", "name_zh_CN": "龙人能量徽章", "name_es_ES": "Emblema dracónico imbuido", "name_ru_RU": "Талисман драконьей силы", "name_it_IT": "Emblema Draconico Infuso", "name_pt_PT": "Emblema Dracônico Infuso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 22321, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Wyrmthalak", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10539, "buy_price": 42158, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0120999813079834, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 23, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Wyrmthalak", "name_ko_KR": "웜타라크의 심장", "name_fr_FR": "Cœur de Wyrmthalak", "name_de_DE": "Herz von Wyrmthalak", "name_zh_CN": "维姆萨拉克之心", "name_es_ES": "Corazón de Vermisthalak", "name_ru_RU": "Сердце Змейталака", "name_it_IT": "Cuore di Dragthalak", "name_pt_PT": "Coração de Wyrmthalak", "on_use": false, "id_encounter": 396, "id_journal_instance": 229, "id_map": 229, "instance_type": 1}, {"id": 22678, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Ascendance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 111303, "buy_price": 445213, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Ascendance", "name_ko_KR": "승기의 부적", "name_fr_FR": "Talisman d'ascendance", "name_de_DE": "Talisman der Überlegenheit", "name_zh_CN": "优越护符", "name_es_ES": "Dije de Ascendiente", "name_ru_RU": "Талисман Господства", "name_it_IT": "Talismano dell'Ascendenza", "name_pt_PT": "Talismã da Ascendência", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 22954, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kiss of the Spider", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3043, "stat_alloc_2": 2174, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940000176429749, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Kiss of the Spider", "name_ko_KR": "거미의 입맞춤", "name_fr_FR": "Baiser de l'araignée", "name_de_DE": "Kuss der Spinne", "name_zh_CN": "蜘蛛之吻", "name_es_ES": "Beso de la araña", "name_ru_RU": "Поцелуй паука", "name_it_IT": "Bacio del Ragno", "name_pt_PT": "Beijo da Aranha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23001, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Diminution", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6087, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0460000038146973, "flags_1": 524544, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Diminution", "name_ko_KR": "감쇠의 눈", "name_fr_FR": "Oeil de diminution", "name_de_DE": "Auge des Schwunds", "name_zh_CN": "衰落之眼", "name_es_ES": "Ojo de Disminución", "name_ru_RU": "Глаз убывания", "name_it_IT": "Occhio dell'Indebolimento", "name_pt_PT": "Olho da Diminuição", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23027, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmth of Forgiveness", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5652, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9678000211715698, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Warmth of Forgiveness", "name_ko_KR": "용서의 온기", "name_fr_FR": "Cordialité du pardon", "name_de_DE": "Güte der Vergebung", "name_zh_CN": "宽恕的热情", "name_es_ES": "Calor de Perdón", "name_ru_RU": "Тепло Прощения", "name_it_IT": "Calore del Perdono", "name_pt_PT": "Cordialidade do Perdão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23040, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glyph of Deflection", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0420000553131104, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Glyph of Deflection", "name_ko_KR": "굴곡의 문양", "name_fr_FR": "Glyphe de déviation", "name_de_DE": "Glyphe der Abwehr", "name_zh_CN": "偏斜雕文", "name_es_ES": "Glifo de Desvío", "name_ru_RU": "Символ отражения", "name_it_IT": "Gioiello della Deviazione", "name_pt_PT": "Glifo de Deflexão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Slayer's Crest", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045699954032898, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Slayer's Crest", "name_ko_KR": "학살자의 문장", "name_fr_FR": "Blason de tueur", "name_de_DE": "Wappen des Schlächters", "name_zh_CN": "屠龙者的纹章", "name_es_ES": "Blasón de destripador", "name_ru_RU": "Гребень убийцы", "name_it_IT": "Amuleto dell'Omicida", "name_pt_PT": "Escudo do Matador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Loatheb's Reflection", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2826, "stat_alloc_2": 2826, "stat_alloc_3": 2826, "stat_alloc_4": 2826, "stat_alloc_5": 2826, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 51, "stat_type_2": 52, "stat_type_3": 55, "stat_type_4": 56, "stat_type_5": 54, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.049399971961975, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Loatheb's Reflection", "name_ko_KR": "로데브의 반영", "name_fr_FR": "Reflet d'Horreb", "name_de_DE": "Loathebs Abglanz", "name_zh_CN": "洛欧塞布之影", "name_es_ES": "Reflejo de Loatheb", "name_ru_RU": "Отражение Лотхиба", "name_it_IT": "Riflesso di Loatheb", "name_pt_PT": "Reflexão de Repugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23046, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Restrained Essence of Sapphiron", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7083, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9639999866485596, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "The Restrained Essence of Sapphiron", "name_ko_KR": "억제된 사피론의 정수", "name_fr_FR": "L'essence contenue de Saphiron", "name_de_DE": "Die gebundene Essenz Saphirons", "name_zh_CN": "萨菲隆的精华", "name_es_ES": "La esencia contenida de Sapphiron", "name_ru_RU": "Плененная сущность Сапфирона", "name_it_IT": "Essenza Intrappolata di Zaffirion", "name_pt_PT": "A Essência Contida de Sapphiron", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23047, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of the Dead", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Eye of the Dead", "name_ko_KR": "사자의 눈", "name_fr_FR": "Oeil du mort", "name_de_DE": "Auge des Todes", "name_zh_CN": "亡者之眼", "name_es_ES": "Ojo de los muertos", "name_ru_RU": "Глаз Мертвого", "name_it_IT": "Occhio del Morto", "name_pt_PT": "Olho dos Mortos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23206, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Champion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0159000158309937, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Mark of the Champion", "name_ko_KR": "용사의 징표", "name_fr_FR": "Marque de champion", "name_de_DE": "Mal des Helden", "name_zh_CN": "勇士印记", "name_es_ES": "Marca del Campeón", "name_ru_RU": "Знак чемпиона", "name_it_IT": "Marchio del Campione", "name_pt_PT": "Marca do Campeão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23207, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Champion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0196000337600708, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Mark of the Champion", "name_ko_KR": "용사의 징표", "name_fr_FR": "Marque de champion", "name_de_DE": "Mal des Helden", "name_zh_CN": "勇士印记", "name_es_ES": "Marca del Campeón", "name_ru_RU": "Знак чемпиона", "name_it_IT": "Marchio del Campione", "name_pt_PT": "Marca do Campeão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23558, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Burrower's Shell", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1807, "buy_price": 7230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9901000261306763, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "The Burrower's Shell", "name_ko_KR": "땅무지의 껍질", "name_fr_FR": "La Carapace du fouisseur", "name_de_DE": "Panzer des Wühlers", "name_zh_CN": "穴居虫之壳", "name_es_ES": "La coraza del perforador", "name_ru_RU": "Панцирь копателя", "name_it_IT": "Guscio dello Scavaterra", "name_pt_PT": "A Carapaça do Escavador", "on_use": true, "id_encounter": 1550, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 23570, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jom Gabbar", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1807, "buy_price": 7230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9605000019073486, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 4, "name_en_US": "Jom Gabbar", "name_ko_KR": "좀 가바르", "name_fr_FR": "Jom Gabbar", "name_de_DE": "Jom Gabbar", "name_zh_CN": "沙虫之毒", "name_es_ES": "Jom Gabbar", "name_ru_RU": "Джом Габбар", "name_it_IT": "Jom Gabbar", "name_pt_PT": "Jom Gabbar", "on_use": true, "id_encounter": 1550, "id_journal_instance": 744, "id_map": 531, "instance_type": 2}, {"id": 23714, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Perpetual Purple Firework", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0273000001907349, "flags_1": 128, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 12, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Perpetual Purple Firework", "name_ko_KR": "영원한 보라색 폭죽", "name_fr_FR": "Feu d'artifice violet perpétuel", "name_de_DE": "Unerschöpfliches lila Feuerwerk", "name_zh_CN": "永久紫色焰火", "name_es_ES": "Fuegos artificiales morados perpetuos", "name_ru_RU": "Нескончаемый лиловый фейерверк", "name_it_IT": "Fuochi d'Artificio Viola Perpetui", "name_pt_PT": "Fogos de Artifício Roxos Perpétuos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23716, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carved Ogre Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0347000360488892, "flags_1": 128, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Carved Ogre Idol", "name_ko_KR": "오우거 우상 조각", "name_fr_FR": "Idole d'ogre sculptée", "name_de_DE": "Geschnitzter Ogergötze", "name_zh_CN": "食人魔玩偶", "name_es_ES": "Ídolo de ogro tallado", "name_ru_RU": "Резной огрский идол", "name_it_IT": "Idolo di Ogre Scolpito", "name_pt_PT": "Ídolo de Ogro Entalhado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23835, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Poultryizer", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15517, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 20219, "sell_price": 22500, "buy_price": 90000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95660001039505, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 40, "req_skill": 2505, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Gnomish Poultryizer", "name_ko_KR": "노움 꼬꼬댁 변신장치", "name_fr_FR": "Pouletisateur gnome", "name_de_DE": "Gnomischer Geflügelisierer", "name_zh_CN": "侏儒变鸡器", "name_es_ES": "Pollotizador gnómico", "name_ru_RU": "Гномский полюсный птицефикатор", "name_it_IT": "Pollizzatore Gnomesco", "name_pt_PT": "Galinhaitor Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 23836, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Rocket Launcher", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 20222, "sell_price": 22500, "buy_price": 90000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868000149726868, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2505, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Goblin Rocket Launcher", "name_ko_KR": "고블린 로켓 발사기", "name_fr_FR": "Lance-roquettes gobelin", "name_de_DE": "Goblinraketenwerfer", "name_zh_CN": "地精火箭发射器", "name_es_ES": "Lanzacohetes goblin", "name_ru_RU": "Гоблинский ракетомет", "name_it_IT": "Spararazzo dei Goblin", "name_pt_PT": "Lança-foguetes Goblínico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24124, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Felsteel Boar", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12000, "buy_price": 48000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937000274658203, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 70, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Felsteel Boar", "name_ko_KR": "조각상 - 지옥강철 멧돼지", "name_fr_FR": "Figurine de sanglier en gangracier", "name_de_DE": "Figur - Teufelsstahleber", "name_zh_CN": "雕像 - 魔钢野猪", "name_es_ES": "Figurilla: jabalí de acero vil", "name_ru_RU": "Статуэтка вепря из оскверненной стали", "name_it_IT": "Statuetta - Cinghiale di Vilacciaio", "name_pt_PT": "Estatueta - Javali de Açovil", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24125, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Dawnstone Crab", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973999857902527, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 70, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Dawnstone Crab", "name_ko_KR": "조각상 - 여명석 게", "name_fr_FR": "Figurine de crabe de pierre d'aube", "name_de_DE": "Figur - Dämmersteinkrebs", "name_zh_CN": "雕像 - 黎明石螃蟹", "name_es_ES": "Figurilla: cangrejo de piedra del alba", "name_ru_RU": "Статуэтка краба из зоревика", "name_it_IT": "Statuetta - Granchio di Pietraurora", "name_pt_PT": "Estatueta - Caranguejo de Aurolita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24126, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Living Ruby Serpent", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4792, "stat_alloc_2": 6875, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276000499725342, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 70, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Living Ruby Serpent", "name_ko_KR": "조각상 - 생명의 루비 뱀", "name_fr_FR": "Figurine de serpent de rubis vivant", "name_de_DE": "Figur - Lebendige Rubinschlange", "name_zh_CN": "雕像 - 红曜石毒蛇", "name_es_ES": "Figurilla: serpiente de rubí vivo", "name_ru_RU": "Статуэтка змеи из животворного рубина", "name_it_IT": "Statuetta - Serpente di Rubino Vivente", "name_pt_PT": "Estatueta - Serpente de Rubi Vivo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24127, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Talasite Owl", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0312000513076782, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 70, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Talasite Owl", "name_ko_KR": "조각상 - 탈라사이트 올빼미", "name_fr_FR": "Figurine de chouette de talasite", "name_de_DE": "Figur - Talasiteule", "name_zh_CN": "雕像 - 水玉猫头鹰", "name_es_ES": "Figurilla: búho de talasita", "name_ru_RU": "Статуэтка таласситовой совы", "name_it_IT": "Statuetta - Gufo di Talasite", "name_pt_PT": "Estatueta - Coruja de Talassita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24128, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Nightseye Panther", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0348999500274658, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 70, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Nightseye Panther", "name_ko_KR": "조각상 - 야안석 표범", "name_fr_FR": "Figurine de panthère d'œil de nuit", "name_de_DE": "Figur - Nachtaugenpanther", "name_zh_CN": "雕像 - 夜目石猎豹", "name_es_ES": "Figurilla: pantera de ojo de noche", "name_ru_RU": "Статуэтка пантеры из ока ночи", "name_it_IT": "Statuetta - Pantera con Occhi Notturni", "name_pt_PT": "Estatueta - Pantera de Olho-da-noite", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 24376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Runed Fungalcap", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12125, "buy_price": 60625, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.042099952697754, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Runed Fungalcap", "name_ko_KR": "룬새김 곰팡이버섯", "name_fr_FR": "Chapeau de champignon runique", "name_de_DE": "Runenverzierte Fungushülle", "name_zh_CN": "符文菌帽", "name_es_ES": "Seta rúnica", "name_ru_RU": "Рунический гриб", "name_it_IT": "Funghetto Runico", "name_pt_PT": "Cogumelo Rúnico", "on_use": true, "id_encounter": 571, "id_journal_instance": 260, "id_map": 547, "instance_type": 1}, {"id": 24390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Auslese's Light Channeler", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7105, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11867, "buy_price": 59339, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0199999809265137, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Auslese's Light Channeler", "name_ko_KR": "아우슬리즈의 빛 감응기", "name_fr_FR": "Canalisateur de lumière d'Auslese", "name_de_DE": "Ausleses Lichtkanalisierer", "name_zh_CN": "奥丝蕾的光芒护符", "name_es_ES": "Canalizador de luz de Auslese", "name_ru_RU": "Камень Света Ауслезе", "name_it_IT": "Incanalatore di Luce di Auslese", "name_pt_PT": "Canalizador de Luz de Auslese", "on_use": true, "id_encounter": 556, "id_journal_instance": 256, "id_map": 542, "instance_type": 1}, {"id": 24551, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7083, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9754999876022339, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 25829, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of the Horde", "name_ko_KR": "호드의 부적", "name_fr_FR": "Talisman de la Horde", "name_de_DE": "Talisman der Horde", "name_zh_CN": "部落护符", "name_es_ES": "Dije de la Horda", "name_ru_RU": "Талисман Орды", "name_it_IT": "Talismano dell'Orda", "name_pt_PT": "Talismã da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glowing Crystal Insignia", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7285, "buy_price": 36429, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.042099952697754, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Glowing Crystal Insignia", "name_ko_KR": "빛나는 수정 휘장", "name_fr_FR": "Insigne luminescent en cristal", "name_de_DE": "Leuchtendes Kristallinsigne", "name_zh_CN": "闪耀水晶徽记", "name_es_ES": "Insignia de cristal resplandeciente", "name_ru_RU": "Ожерелье сияющего кристалла", "name_it_IT": "Fregio di Cristallo Luminoso", "name_pt_PT": "Insígnia de Cristal Faiscante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25620, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Crystal Talisman", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6797, "buy_price": 33985, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9721999764442444, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ancient Crystal Talisman", "name_ko_KR": "고대 수정 부적", "name_fr_FR": "Talisman ancien en cristal", "name_de_DE": "Uraltes Kristallinsigne", "name_zh_CN": "上古水晶符咒", "name_es_ES": "Talismán de cristal antiguo", "name_ru_RU": "Древний хрустальный талисман", "name_it_IT": "Talismano di Cristallo Antico", "name_pt_PT": "Talismã de Cristal Ancestral", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25628, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ogre Mauler's Badge", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7774, "buy_price": 38874, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0016000270843506, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ogre Mauler's Badge", "name_ko_KR": "오우거 투사의 휘장", "name_fr_FR": "Ecusson de marteleur ogre", "name_de_DE": "Abzeichen des Ogerraufers", "name_zh_CN": "食人魔殴斗者的徽章", "name_es_ES": "Distintivo de destructor ogro", "name_ru_RU": "Знак огра-изверга", "name_it_IT": "Distintivo del Mazzuolatore di Ogre", "name_pt_PT": "Distintivo do Espancador Ogro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25633, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Uniting Charm", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7917, "buy_price": 39588, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0199999809265137, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Uniting Charm", "name_ko_KR": "결속의 부적", "name_fr_FR": "Charme d'unification", "name_de_DE": "Vereinigender Glücksbringer", "name_zh_CN": "联合护符", "name_es_ES": "Talismán de unidad", "name_ru_RU": "Объединяющий оберег", "name_it_IT": "Talismano dell'Unione", "name_pt_PT": "Patuá Unificador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oshu'gun Relic", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7945, "buy_price": 39728, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0235999822616577, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Oshu'gun Relic", "name_ko_KR": "오슈군 유물", "name_fr_FR": "Relique d'Oshu'gun", "name_de_DE": "Relikt von Oshu'gun", "name_zh_CN": "沃舒古圣物", "name_es_ES": "Reliquia de Oshu'gun", "name_ru_RU": "Реликвия Ошу'гуна", "name_it_IT": "Reliquia di Oshu'gun", "name_pt_PT": "Relíquia de Oshu'gun", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25653, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Riding Crop", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17500, "buy_price": 70000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463000535964966, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Riding Crop", "name_ko_KR": "말채찍", "name_fr_FR": "Cravache d'équitation", "name_de_DE": "Reitgerte", "name_zh_CN": "马鞭", "name_es_ES": "Fusta", "name_ru_RU": "Ездовой хлыст", "name_it_IT": "Frustino", "name_pt_PT": "Rebenque", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25786, "race_mask": 18446744073709551615, "desc": "I'm going to count backwards from three. When I reach zero, you're going to stop pummeling me... well, that's the theory.", "pad2": "", "pad1": "", "pad0": "", "name": "Hypnotist's Watch", "id_expansion": 1, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7314, "buy_price": 36572, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0462000370025635, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Hypnotist's Watch", "name_ko_KR": "최면술사의 시계", "name_fr_FR": "Montre d'hypnotiseur", "name_de_DE": "Uhr des Hypnotiseurs", "name_zh_CN": "催眠怀表", "name_es_ES": "Reloj de hipnotizador", "name_ru_RU": "Гипнотические Камни", "name_it_IT": "Orologio dell'Ipnotizzatore", "name_pt_PT": "Relógio do Hipnotizador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25787, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Alacrity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7340, "buy_price": 36701, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0499000549316406, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Alacrity", "name_ko_KR": "날렵함의 부적", "name_fr_FR": "Charme d'empressement", "name_de_DE": "Glücksbringer des Eifers", "name_zh_CN": "敏锐护符", "name_es_ES": "Talismán de prontitud", "name_ru_RU": "Подвеска проворства", "name_it_IT": "Talismano dell'Alacrità", "name_pt_PT": "Patuá da Vivacidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25829, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7083, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.983299970626831, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 24551, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of the Alliance", "name_ko_KR": "얼라이언스의 부적", "name_fr_FR": "Talisman de l'Alliance", "name_de_DE": "Talisman der Allianz", "name_zh_CN": "联盟护符", "name_es_ES": "Dije de la Alianza", "name_ru_RU": "Талисман Альянса", "name_it_IT": "Talismano dell'Alleanza", "name_pt_PT": "Talismã da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25936, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terokkar Tablet of Vim", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6471, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8033, "buy_price": 40167, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0348999500274658, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Terokkar Tablet of Vim", "name_ko_KR": "열의의 테로카르 서판", "name_fr_FR": "Tablette de Vim de Terokkar", "name_de_DE": "Terokkarschrifttafel des Elans", "name_zh_CN": "泰罗卡活力石板", "name_es_ES": "Tablilla Terokkar de brío", "name_ru_RU": "Тероккарская табличка энергии", "name_it_IT": "Tavoletta dell'Energia di Terokk", "name_pt_PT": "Tabuleta de Entusiasmo de Terokkar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25937, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terokkar Tablet of Precision", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6471, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8062, "buy_price": 40310, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038599967956543, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Terokkar Tablet of Precision", "name_ko_KR": "정밀함의 테로카르 서판", "name_fr_FR": "Tablette de précision de Terokkar", "name_de_DE": "Terokkarschrifttafel der Präzision", "name_zh_CN": "泰罗卡准确石板", "name_es_ES": "Tablilla Terokkar de precisión", "name_ru_RU": "Тероккарская табличка меткости", "name_it_IT": "Tavoletta della Precisione di Terokk", "name_pt_PT": "Tabuleta de Precisão de Terokkar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25994, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Force", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rune of Force", "name_ko_KR": "기세의 룬", "name_fr_FR": "Rune de force", "name_de_DE": "Rune der Kraft", "name_zh_CN": "原力符文", "name_es_ES": "Runa de fuerza", "name_ru_RU": "Руна силы", "name_it_IT": "Runa della Forza", "name_pt_PT": "Runa da Força", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Star of Sha'naar", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9571999907493591, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Star of Sha'naar", "name_ko_KR": "샤나르의 별", "name_fr_FR": "Etoile de Sha'naar", "name_de_DE": "Stern von Sha'naar", "name_zh_CN": "沙纳尔之星", "name_es_ES": "Estrella de Sha'naar", "name_ru_RU": "Звезда Ша'наара", "name_it_IT": "Stella di Sha'naar", "name_pt_PT": "Estrela de Sha'naar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 25996, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Perseverance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21612, "buy_price": 86450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9609000086784363, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Emblem of Perseverance", "name_ko_KR": "끈기의 문장", "name_fr_FR": "Emblème de persévérance", "name_de_DE": "Emblem der Ausdauer", "name_zh_CN": "坚定徽章", "name_es_ES": "Emblema de perseverancia", "name_ru_RU": "Эмблема настойчивости", "name_it_IT": "Emblema della Perseveranza", "name_pt_PT": "Emblema de Perseverança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 26055, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oculus of the Hidden Eye", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6512, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13225, "buy_price": 66129, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.983299970626831, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 26, "inv_type": 12, "quality": 3, "name_en_US": "Oculus of the Hidden Eye", "name_ko_KR": "숨겨진 눈의 오큘루스", "name_fr_FR": "Oculus de l'Oeil caché", "name_de_DE": "Oculus des versteckten Auges", "name_zh_CN": "隐秘邪眼", "name_es_ES": "Óculo del ojo oculto", "name_ru_RU": "Кольцо Сокрытого Ока", "name_it_IT": "Oculus dell'Occhio Nascosto", "name_pt_PT": "Óculo do Olho Escondido", "on_use": true, "id_encounter": 523, "id_journal_instance": 247, "id_map": 558, "instance_type": 1}, {"id": 27416, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of the Fallen", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13473, "buy_price": 67366, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017000436782837, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 26, "inv_type": 12, "quality": 3, "name_en_US": "Fetish of the Fallen", "name_ko_KR": "죽은 자의 우상", "name_fr_FR": "Fétiche des déchus", "name_de_DE": "Fetisch des Gefallenen", "name_zh_CN": "亡者塑像", "name_es_ES": "Fetiche de los caídos", "name_ru_RU": "Фетиш падших", "name_it_IT": "Feticcio del Caduto", "name_pt_PT": "Fetiche dos Caídos", "on_use": true, "id_encounter": 524, "id_journal_instance": 247, "id_map": 558, "instance_type": 1}, {"id": 27529, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine of the Colossus", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15575, "buy_price": 77876, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017000436782837, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Figurine of the Colossus", "name_ko_KR": "거대괴수 조각상", "name_fr_FR": "Figurine du colosse", "name_de_DE": "Figur des Kolosses", "name_zh_CN": "巨人塑像", "name_es_ES": "Figura del coloso", "name_ru_RU": "Статуэтка Колосса", "name_it_IT": "Statuetta del Colosso", "name_pt_PT": "Estatueta do Colosso", "on_use": true, "id_encounter": 566, "id_journal_instance": 259, "id_map": 540, "instance_type": 1}, {"id": 27683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Quagmirran's Eye", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16040, "buy_price": 80200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031599998474121, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Quagmirran's Eye", "name_ko_KR": "쿠아그미란의 눈", "name_fr_FR": "Oeil de Bourbierreux", "name_de_DE": "Quagmirrans Auge", "name_zh_CN": "夸格米拉之眼", "name_es_ES": "Ojo de Quagmirran", "name_ru_RU": "Око Зыбуна", "name_it_IT": "Occhio di Bragatur", "name_pt_PT": "Olho de Atolaço", "on_use": false, "id_encounter": 572, "id_journal_instance": 260, "id_map": 547, "instance_type": 1}, {"id": 27770, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Argussian Compass", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15287, "buy_price": 76438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9832000136375427, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Argussian Compass", "name_ko_KR": "아르거시안 나침반", "name_fr_FR": "Boussole argusséenne", "name_de_DE": "Argusischer Kompass", "name_zh_CN": "阿古斯指南针", "name_es_ES": "Brújula Agussian", "name_ru_RU": "Аргуссианский компас", "name_it_IT": "Bussola Argussiana", "name_pt_PT": "Bússola Argussiana", "on_use": true, "id_encounter": 579, "id_journal_instance": 262, "id_map": 546, "instance_type": 1}, {"id": 27828, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warp-Scarab Brooch", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15579, "buy_price": 77899, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Warp-Scarab Brooch", "name_ko_KR": "차원의 쇠똥구리 브로치", "name_fr_FR": "Broche du scarabée dimensionnel", "name_de_DE": "Sphärenskarabäusbrosche", "name_zh_CN": "星界甲虫", "name_es_ES": "Broche de escarabajo de distorsión", "name_ru_RU": "Покореженная скарабеем брошь", "name_it_IT": "Spilla degli Scarabei Distorti", "name_pt_PT": "Broche do Escaravelho-dimensional", "on_use": true, "id_encounter": 537, "id_journal_instance": 250, "id_map": 557, "instance_type": 1}, {"id": 27891, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Adamantine Figurine", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6809, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16156, "buy_price": 80784, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Adamantine Figurine", "name_ko_KR": "불굴의 조각상", "name_fr_FR": "Figurine adamantine", "name_de_DE": "Adamantitfigur", "name_zh_CN": "精金雕像", "name_es_ES": "Figura de adamantita", "name_ru_RU": "Адамантиновая статуэтка", "name_it_IT": "Statuetta Adamantina", "name_pt_PT": "Estatueta de Adamantina", "on_use": true, "id_encounter": 545, "id_journal_instance": 253, "id_map": 555, "instance_type": 1}, {"id": 27896, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alembic of Infernal Power", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6875, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14886, "buy_price": 74432, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574000239372253, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Alembic of Infernal Power", "name_ko_KR": "지옥 마력 정화장치", "name_fr_FR": "Alambic de puissance infernale", "name_de_DE": "Alembik der höllischen Macht", "name_zh_CN": "恶魔能量萃取器", "name_es_ES": "Alambique de poder infernal", "name_ru_RU": "Перегонный куб мощи преисподней", "name_it_IT": "Alambicco del Potere Infernale", "name_pt_PT": "Alambique de Poder Infernal", "on_use": false, "id_encounter": 579, "id_journal_instance": 262, "id_map": 546, "instance_type": 1}, {"id": 27900, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jewel of Charismatic Mystique", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 251, "buy_price": 1257, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Jewel of Charismatic Mystique", "name_ko_KR": "신비한 카리스마의 장신구", "name_fr_FR": "Joyau du mystique charismatique", "name_de_DE": "Juwel des Wunderglaubens", "name_zh_CN": "非凡秘法宝珠", "name_es_ES": "Joya de místico carismático", "name_ru_RU": "Самоцвет таинственного чудотворца", "name_it_IT": "Gioiello Mistico Carismatico", "name_pt_PT": "Joia de Aura da Mística Carismática", "on_use": true, "id_encounter": 546, "id_journal_instance": 253, "id_map": 555, "instance_type": 1}, {"id": 27920, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Conquest", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27921, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 1037, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Conquest", "name_ko_KR": "정복의 징표", "name_fr_FR": "Marque de conquête", "name_de_DE": "Mal der Eroberung", "name_zh_CN": "征服印记", "name_es_ES": "Marca de conquista", "name_ru_RU": "Знак Покорения", "name_it_IT": "Marchio della Conquista", "name_pt_PT": "Marca da Conquista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 27921, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Conquest", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 561152, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27920, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 1037, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Conquest", "name_ko_KR": "정복의 징표", "name_fr_FR": "Marque de conquête", "name_de_DE": "Mal der Eroberung", "name_zh_CN": "征服印记", "name_es_ES": "Marca de conquista", "name_ru_RU": "Знак Покорения", "name_it_IT": "Marchio della Conquista", "name_pt_PT": "Marca da Conquista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 27922, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Defiance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 561152, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27924, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 400, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Defiance", "name_ko_KR": "도전의 징표", "name_fr_FR": "Marque de défiance", "name_de_DE": "Mal der Herausforderung", "name_zh_CN": "抗争印记", "name_es_ES": "Marca de desafío", "name_ru_RU": "Знак неповиновения", "name_it_IT": "Marchio della Sfida", "name_pt_PT": "Marca do Desafio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 27924, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Defiance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27922, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 400, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Defiance", "name_ko_KR": "도전의 징표", "name_fr_FR": "Marque de défiance", "name_de_DE": "Mal der Herausforderung", "name_zh_CN": "抗争印记", "name_es_ES": "Marca de desafío", "name_ru_RU": "Знак неповиновения", "name_it_IT": "Marchio della Sfida", "name_pt_PT": "Marca do Desafio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 27926, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Vindication", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27927, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 66, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Vindication", "name_ko_KR": "비호의 징표", "name_fr_FR": "Marque de justification", "name_de_DE": "Mal der Gegenwehr", "name_zh_CN": "守备印记", "name_es_ES": "Marca de vindicación", "name_ru_RU": "Знак оправдания", "name_it_IT": "Marchio della Rivendicazione", "name_pt_PT": "Marca da Vindicação", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 27927, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Vindication", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 561152, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 27926, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 66, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Vindication", "name_ko_KR": "비호의 징표", "name_fr_FR": "Marque de justification", "name_de_DE": "Mal der Gegenwehr", "name_zh_CN": "守备印记", "name_es_ES": "Marca de vindicación", "name_ru_RU": "Знак оправдания", "name_it_IT": "Marchio della Rivendicazione", "name_pt_PT": "Marca da Vindicação", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28034, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hourglass of the Unraveller", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6809, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15581, "buy_price": 77907, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Hourglass of the Unraveller", "name_ko_KR": "해결사의 모래시계", "name_fr_FR": "Sablier du détrameur", "name_de_DE": "Stundenglas des Entwirrers", "name_zh_CN": "分解者的沙漏", "name_es_ES": "Reloj de arena del liberador", "name_ru_RU": "Песочные часы Расплетающего", "name_it_IT": "Clessidra del Dipanatore", "name_pt_PT": "Ampulheta do Desembaraçador", "on_use": false, "id_encounter": 553, "id_journal_instance": 255, "id_map": 269, "instance_type": 1}, {"id": 28040, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vengeance of the Illidari", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6842, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8591, "buy_price": 42959, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Vengeance of the Illidari", "name_ko_KR": "일리다리의 원한", "name_fr_FR": "Vengeance des Illidari", "name_de_DE": "Vergeltung der Illidari", "name_zh_CN": "伊利达雷的复仇", "name_es_ES": "Venganza de los Illidari", "name_ru_RU": "Отмщение иллидари", "name_it_IT": "Rivendicazione degli Illidari", "name_pt_PT": "Vingança dos Illidari", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bladefist's Breadth", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6842, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8623, "buy_price": 43115, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Bladefist's Breadth", "name_ko_KR": "블레이드피스트의 관용", "name_fr_FR": "Plaque de Lamepoing", "name_de_DE": "Messerfausts Breite", "name_zh_CN": "刃拳的宽容", "name_es_ES": "Placa de Garrafilada", "name_ru_RU": "Кристалл Острорука", "name_it_IT": "Respiro di Manotagliente", "name_pt_PT": "Amplitude dos Carpunhal", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Regal Protectorate", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6842, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8654, "buy_price": 43270, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Regal Protectorate", "name_ko_KR": "제왕의 보호령", "name_fr_FR": "Protectorat régalien", "name_de_DE": "Königlicher Wachschutz", "name_zh_CN": "皇家护符", "name_es_ES": "Protectorado real", "name_ru_RU": "Монарший протекторат", "name_it_IT": "Protettorato Regale", "name_pt_PT": "Protetorado Régio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28108, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Power-Infused Mushroom", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9124, "buy_price": 45620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9794999957084656, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Power-Infused Mushroom", "name_ko_KR": "힘이 깃든 버섯", "name_fr_FR": "Champignon imprégnée de puissance", "name_de_DE": "Energieerfüllter Pilz", "name_zh_CN": "灌注能量的蘑菇", "name_es_ES": "Champiñón imbuido de poder", "name_ru_RU": "Заряженный энергией гриб", "name_it_IT": "Fungo Infuso di Potere", "name_pt_PT": "Cogumelo Infuso em Poder", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28109, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence-Infused Mushroom", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9158, "buy_price": 45792, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9832000136375427, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Essence-Infused Mushroom", "name_ko_KR": "정수 주입 버섯", "name_fr_FR": "Champignon imprégné d’essence", "name_de_DE": "Energiedurchströmter Pilz", "name_zh_CN": "灌注精华的蘑菇", "name_es_ES": "Champiñón imbuido de esencia", "name_ru_RU": "Насыщенный сущностью гриб", "name_it_IT": "Fungo Infuso d'Essenza", "name_pt_PT": "Cogumelo Infuso em Essência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28121, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of Unyielding Courage", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14828, "buy_price": 74144, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Icon of Unyielding Courage", "name_ko_KR": "굽히지 않는 용기의 상징", "name_fr_FR": "Icône du courage inflexible", "name_de_DE": "Ikone des unerschütterlichen Mutes", "name_zh_CN": "不屈勇气徽章", "name_es_ES": "Icono de coraje implacable", "name_ru_RU": "Хоругвь непреклонной отваги", "name_it_IT": "Icona del Coraggio Implacabile", "name_pt_PT": "Ícone da Coragem Obstinada", "on_use": true, "id_encounter": 557, "id_journal_instance": 256, "id_map": 542, "instance_type": 1}, {"id": 28190, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scarab of the Infinite Cycle", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15747, "buy_price": 78739, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0127999782562256, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Scarab of the Infinite Cycle", "name_ko_KR": "무한한 세월의 스카라베", "name_fr_FR": "Scarabée du cycle infini", "name_de_DE": "Skarabäus des unendlichen Kreislaufs", "name_zh_CN": "无尽循环甲虫", "name_es_ES": "Escarabajo del ciclo infinito", "name_ru_RU": "Скарабей бесконечного цикла", "name_it_IT": "Scarabeo del Ciclo Eterno", "name_pt_PT": "Escaravelho do Ciclo Infinito", "on_use": false, "id_encounter": 554, "id_journal_instance": 255, "id_map": 269, "instance_type": 1}, {"id": 28223, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcanist's Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5208, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 255, "buy_price": 1276, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868999719619751, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Arcanist's Stone", "name_ko_KR": "비전술사의 돌", "name_fr_FR": "Pierre d'arcaniste", "name_de_DE": "Arkanistenstein", "name_zh_CN": "奥术师之石", "name_es_ES": "Piedra de arcanista", "name_ru_RU": "Камень чародея", "name_it_IT": "Pietra dell'Arcanista", "name_pt_PT": "Pedra do Arcanista", "on_use": true, "id_encounter": 540, "id_journal_instance": 251, "id_map": 560, "instance_type": 1}, {"id": 28234, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28240, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28235, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28241, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28236, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9610000252723694, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28242, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28237, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9646999835968018, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28243, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28238, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9684000015258789, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28239, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28239, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28238, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28240, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28234, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28241, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0059000253677368, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28235, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28242, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.009600043296814, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28236, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28243, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013200044631958, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 28237, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 28288, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Abacus of Violent Odds", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14891, "buy_price": 74455, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 524288, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Abacus of Violent Odds", "name_ko_KR": "극심한 부조화의 연산장치", "name_fr_FR": "Boulier des probabilités agressives", "name_de_DE": "Abakus der Ungleichheit", "name_zh_CN": "强烈优势算盘", "name_es_ES": "Ábaco de probabilidades agresivas", "name_ru_RU": "Абак Сильных расхождений", "name_it_IT": "Abaco delle Probabilità Violente", "name_pt_PT": "Ábaco das Probabilidades Violentas", "on_use": true, "id_encounter": 565, "id_journal_instance": 258, "id_map": 554, "instance_type": 1}, {"id": 28370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bangle of Endless Blessings", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15410, "buy_price": 77052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991100013256073, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Bangle of Endless Blessings", "name_ko_KR": "끝없는 축복의 팔찌", "name_fr_FR": "Bracelet des bénédictions infinies", "name_de_DE": "Reif des unendlichen Segens", "name_zh_CN": "无尽祝福法链", "name_es_ES": "Broche de bendiciones sin fin", "name_ru_RU": "Браслет Нескончаемого Блаженства", "name_it_IT": "Ciondolo delle Benedizioni Infinite", "name_pt_PT": "Bracelete das Bênçãos sem Fim", "on_use": true, "id_encounter": 562, "id_journal_instance": 257, "id_map": 553, "instance_type": 1}, {"id": 28418, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiffar's Nexus-Horn", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270, "buy_price": 1354, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0467000007629395, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Shiffar's Nexus-Horn", "name_ko_KR": "쉬파르의 연합 뿔피리", "name_fr_FR": "Corne-nexus de Shiffar", "name_de_DE": "Shiffars Nexushorn", "name_zh_CN": "希法尔的节点号角", "name_es_ES": "Cuerno-nexo de Shiffar", "name_ru_RU": "Астральный рог Шиффара", "name_it_IT": "Corno del Nexus di Shiffar", "name_pt_PT": "Trompa-Nexus de Shiffar", "on_use": false, "id_encounter": 551, "id_journal_instance": 254, "id_map": 552, "instance_type": 1}, {"id": 28528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moroes' Lucky Pocket Watch", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0091999769210815, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Moroes' Lucky Pocket Watch", "name_ko_KR": "행운을 가져다 주는 모로스의 회중시계", "name_fr_FR": "Montre de gousset porte-bonheur de Moroes", "name_de_DE": "Moroes' Glückstaschenuhr", "name_zh_CN": "莫罗斯的幸运怀表", "name_es_ES": "Reloj de bolsillo de la suerte de Moroes", "name_ru_RU": "Счастливые часы Мороуза", "name_it_IT": "Orologio da Tasca Portafortuna di Moroes", "name_pt_PT": "Relógio da Sorte do Tristão", "on_use": true, "id_encounter": 1554, "id_journal_instance": 745, "id_map": 532, "instance_type": 2}, {"id": 28579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Romulo's Poison Vial", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6140, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Romulo's Poison Vial", "name_ko_KR": "로밀로의 독약병", "name_fr_FR": "Fiole de poison de Romulo", "name_de_DE": "Romulos Giftphiole", "name_zh_CN": "罗密欧的毒药", "name_es_ES": "Vial de veneno de Romulo", "name_ru_RU": "Флакон с ядом Ромуло", "name_it_IT": "Fiala del Veleno di Romulo", "name_pt_PT": "Ampola de Veneno do Rômulo", "on_use": false, "id_encounter": 1556, "id_journal_instance": 745, "id_map": 532, "instance_type": 2}, {"id": 28590, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ribbon of Sacrifice", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5789, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0426000356674194, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Ribbon of Sacrifice", "name_ko_KR": "희생의 매듭", "name_fr_FR": "Ruban de sacrifice", "name_de_DE": "Schleife der Opferung", "name_zh_CN": "牺牲绶带", "name_es_ES": "Galón de sacrificio", "name_ru_RU": "Лента жертвоприношения", "name_it_IT": "Nastro del Sacrificio", "name_pt_PT": "Fita do Sacrifício", "on_use": true, "id_encounter": 1556, "id_journal_instance": 745, "id_map": 532, "instance_type": 2}, {"id": 28727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pendant of the Violet Eye", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7018, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836000204086304, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Pendant of the Violet Eye", "name_ko_KR": "보랏빛 눈의 펜던트", "name_fr_FR": "Pendentif de l'Oeil pourpre", "name_de_DE": "Anhänger des Violetten Auges", "name_zh_CN": "紫罗兰之眼坠饰", "name_es_ES": "Colgante de El Ojo Violeta", "name_ru_RU": "Подвеска Аметистового Ока", "name_it_IT": "Pendente dell'Occhio Violaceo", "name_pt_PT": "Pingente do Olho Violeta", "on_use": true, "id_encounter": 1559, "id_journal_instance": 745, "id_map": 532, "instance_type": 2}, {"id": 28785, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Lightning Capacitor", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9757999777793884, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "The Lightning Capacitor", "name_ko_KR": "번개 축전기", "name_fr_FR": "Le condensateur de foudre", "name_de_DE": "Der Blitzkondensator", "name_zh_CN": "电容器", "name_es_ES": "El condensador de rayos", "name_ru_RU": "Конденсатор молний", "name_it_IT": "Condensatore Fulminante", "name_pt_PT": "Condensador de Relâmpago", "on_use": false, "id_encounter": 1560, "id_journal_instance": 745, "id_map": 532, "instance_type": 2}, {"id": 28789, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Magtheridon", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7302, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0169999599456787, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Magtheridon", "name_ko_KR": "마그테리돈의 눈", "name_fr_FR": "Oeil de Magtheridon", "name_de_DE": "Magtheridons Auge", "name_zh_CN": "玛瑟里顿之眼", "name_es_ES": "Ojo de Magtheridon", "name_ru_RU": "Глаз Магтеридона", "name_it_IT": "Occhio di Magtheridon", "name_pt_PT": "Olho de Magtheridon", "on_use": false, "id_encounter": 1566, "id_journal_instance": 747, "id_map": 544, "instance_type": 2}, {"id": 28823, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Gruul", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3175, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.994700014591217, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Gruul", "name_ko_KR": "그룰의 눈", "name_fr_FR": "Oeil de Gruul", "name_de_DE": "Auge von Gruul", "name_zh_CN": "格鲁尔之眼", "name_es_ES": "Ojo de Gruul", "name_ru_RU": "Глаз Груула", "name_it_IT": "Occhio di Gruul", "name_pt_PT": "Olho de Gruul", "on_use": false, "id_encounter": 1565, "id_journal_instance": 746, "id_map": 565, "instance_type": 2}, {"id": 28830, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dragonspine Trophy", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020400047302246, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Dragonspine Trophy", "name_ko_KR": "용의 뼈 전리품", "name_fr_FR": "Trophée Epine-de-dragon", "name_de_DE": "Drachenwirbeltrophäe", "name_zh_CN": "龙脊奖章", "name_es_ES": "Trofeo de espinazo de dragón", "name_ru_RU": "Трофей из драконьего хребта", "name_it_IT": "Trofeo Spina di Drago", "name_pt_PT": "Troféu Espinha do Dragão", "on_use": false, "id_encounter": 1565, "id_journal_instance": 746, "id_map": 565, "instance_type": 2}, {"id": 29132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scryer's Bloodgem", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 43988, "buy_price": 175952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 934, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Scryer's Bloodgem", "name_ko_KR": "점술가의 혈석", "name_fr_FR": "Gemme de sang de clairvoyant", "name_de_DE": "Blutjuwel der Seher", "name_zh_CN": "占星者的血钻石", "name_es_ES": "Gema de sangre de Arúspice", "name_ru_RU": "Камень крови Провидцев", "name_it_IT": "Gemma del Sangue del Veggente", "name_pt_PT": "Gema de Sangue dos Áugures", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29179, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Xi'ri's Gift", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 43988, "buy_price": 175952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836000204086304, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 935, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Xi'ri's Gift", "name_ko_KR": "지리의 선물", "name_fr_FR": "Don de Xi'ri", "name_de_DE": "Xi'ris Gabe", "name_zh_CN": "克希利的礼物", "name_es_ES": "Don de Xi'ri", "name_ru_RU": "Дар Ксири", "name_it_IT": "Dono di Xi'ri", "name_pt_PT": "Dádiva de Xi'ri", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timelapse Shard", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5192, "stat_alloc_2": 4615, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 197528, "buy_price": 790112, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9908999800682068, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 989, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Timelapse Shard", "name_ko_KR": "시간 왜곡의 결정", "name_fr_FR": "Éclat de l'instant temporel", "name_de_DE": "Zeitraffersplitter", "name_zh_CN": "时间流逝碎片", "name_es_ES": "Fragmento de tiempo", "name_ru_RU": "Осколок разрыва времени", "name_it_IT": "Scheggia del Rallentatore", "name_pt_PT": "Estilhaço do Lapso de Tempo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of the Silver Crescent", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7037, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 751600, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0022000074386597, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Icon of the Silver Crescent", "name_ko_KR": "은빛 초승달의 상징", "name_fr_FR": "Icône du croissant d'argent", "name_de_DE": "Ikone des Silberwappens", "name_zh_CN": "银色新月徽记", "name_es_ES": "Icono de media luna de plata", "name_ru_RU": "Икона Серебряного Полумесяца", "name_it_IT": "Icona della Falce d'Argento", "name_pt_PT": "Ícone do Crescente Prateado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Martyr", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7037, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 768100, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Martyr", "name_ko_KR": "순교자의 정수", "name_fr_FR": "Essence du martyr", "name_de_DE": "Essenz des Märtyrers", "name_zh_CN": "殉难者精华", "name_es_ES": "Esencia del mártir", "name_ru_RU": "Сущность Мученика", "name_it_IT": "Essenza del Martire", "name_pt_PT": "Essência do Mártir", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29383, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodlust Brooch", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 732300, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9764000177383423, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Bloodlust Brooch", "name_ko_KR": "피의 욕망 브로치", "name_fr_FR": "Broche sanguinaire", "name_de_DE": "Kampfrauschbrosche", "name_zh_CN": "嗜血胸针", "name_es_ES": "Broche Ansia de sangre", "name_ru_RU": "Брошь Кровожадности", "name_it_IT": "Spilla della Brama di Sangue", "name_pt_PT": "Broche Sede de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29387, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomeregan Auto-Dodger 600", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7222, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 743300, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.991100013256073, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Gnomeregan Auto-Dodger 600", "name_ko_KR": "놈리건 자동회피기 600", "name_fr_FR": "Auto-esquiveur de Gnomeregan 600", "name_de_DE": "Autoausweicher 600 von Gnomeregan", "name_zh_CN": "诺莫瑞根自动躲闪器600型", "name_es_ES": "Autoesquivador 600 de Gnomeregan", "name_ru_RU": "Гномреганский автоуклонятель 600", "name_it_IT": "Auto-Schivatore 600 di Gnomeregan", "name_pt_PT": "Autoesquiva Gnomeregan 600", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29592, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18864, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29593, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9911999702453613, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 18845, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 29776, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Core of Ar'kelos", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7404, "buy_price": 37023, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9538999795913696, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Core of Ar'kelos", "name_ko_KR": "알켈로스의 핵", "name_fr_FR": "Noyau d'Ar'kelos", "name_de_DE": "Kern von Ar'kelos", "name_zh_CN": "阿尔凯洛斯之核", "name_es_ES": "Núcleo de Ar'kelos", "name_ru_RU": "Сердцевина Ар'келоса", "name_it_IT": "Nucleo di Ar'kelos", "name_pt_PT": "Núcleo de Ar'kelos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30293, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heavenly Inspiration", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8604, "buy_price": 43024, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Heavenly Inspiration", "name_ko_KR": "하늘의 계시", "name_fr_FR": "Inspiration des cieux", "name_de_DE": "Himmlische Eingebung", "name_zh_CN": "神圣灵感", "name_es_ES": "Inspiración celestial", "name_ru_RU": "Небесное вдохновение", "name_it_IT": "Ispirazione Divina", "name_pt_PT": "Inspiração Celestial", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dabiri's Enigma", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6522, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9830, "buy_price": 49152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9505000114440918, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Dabiri's Enigma", "name_ko_KR": "다비리의 수수께끼", "name_fr_FR": "Enigme de Dabiri", "name_de_DE": "Dabiris Mysterium", "name_zh_CN": "达比雷之谜", "name_es_ES": "Enigma de Dabiri", "name_ru_RU": "Загадка Дабири", "name_it_IT": "Enigma di Dabiri", "name_pt_PT": "Enigma de Dabiri", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30340, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Starkiller's Bauble", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8189, "buy_price": 40947, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502000212669373, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Starkiller's Bauble", "name_ko_KR": "별파괴자의 구슬", "name_fr_FR": "Colifichet de tueur des étoiles", "name_de_DE": "Schmuckstück des Sterntöters", "name_zh_CN": "灭星饰物", "name_es_ES": "Adorno de asesino de estrellas", "name_ru_RU": "Безделушка звездоубийцы", "name_it_IT": "Bolla dell'Ammazzastelle", "name_pt_PT": "Bugiganga do Mata-estrela", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30343, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9613000154495239, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30348, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.964900016784668, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30350, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30345, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9685999751091003, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30351, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987999796867371, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30349, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30348, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006100058555603, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30343, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30349, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0097999572753906, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30346, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30350, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0134999752044678, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30344, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30351, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017199993133545, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 30345, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30446, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solarian's Sapphire", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4688, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0246000289916992, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Solarian's Sapphire", "name_ko_KR": "솔라리안의 사파이어", "name_fr_FR": "Saphir solarian", "name_de_DE": "Solarians Saphir", "name_zh_CN": "索兰莉安的蓝宝石", "name_es_ES": "Zafiro solar", "name_ru_RU": "Сапфир Солнечника", "name_it_IT": "Zaffiro di Solarian", "name_pt_PT": "Safira de Solarian", "on_use": false, "id_encounter": 1575, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30447, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Fiery Redemption", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Tome of Fiery Redemption", "name_ko_KR": "불타는 구원의 고서", "name_fr_FR": "Tome de la rédemption ardente", "name_de_DE": "Foliant der feurigen Erlösung", "name_zh_CN": "炽热救赎圣典", "name_es_ES": "Escrito sobre Redención ígnea", "name_ru_RU": "Фолиант Огненного искупления", "name_it_IT": "Tomo della Redenzione Ardente", "name_pt_PT": "Tomo da Redenção Abrasadora", "on_use": false, "id_encounter": 1573, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30448, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talon of Al'ar", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 528640, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Talon of Al'ar", "name_ko_KR": "알라르의 갈퀴발톱", "name_fr_FR": "Serre d'Al'Ar", "name_de_DE": "Al'ars Kralle", "name_zh_CN": "奥之爪", "name_es_ES": "Garfa de Al'ar", "name_ru_RU": "Коготь Ала'ра", "name_it_IT": "Artiglio di Al'ar", "name_pt_PT": "Garra de Al'ar", "on_use": false, "id_encounter": 1573, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void Star Talisman", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 45, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035599946975708, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Void Star Talisman", "name_ko_KR": "공허의 별 부적", "name_fr_FR": "Talisman de l'étoile du Vide", "name_de_DE": "Talisman des Leersterns", "name_zh_CN": "虚空之星", "name_es_ES": "Dije de estrella del Vacío", "name_ru_RU": "Талисман убийцы из Бездны", "name_it_IT": "Talismano della Stella del Vuoto", "name_pt_PT": "Talismã da Estrela do Caos", "on_use": false, "id_encounter": 1575, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30450, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warp-Spring Coil", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3281, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0392999649047852, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Warp-Spring Coil", "name_ko_KR": "초공간 도약 코일", "name_fr_FR": "Torsade de ressort dimensionnel", "name_de_DE": "Spule der Warpquelle", "name_zh_CN": "星界螺旋", "name_es_ES": "Anillo de saltadistorsión", "name_ru_RU": "Кривопружинное кольцо", "name_it_IT": "Bobina a Molla Distorcente", "name_pt_PT": "Espiral da Mola Dimensional", "on_use": false, "id_encounter": 1574, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fel Reaver's Piston", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506000280380249, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Fel Reaver's Piston", "name_ko_KR": "지옥절단기 피스톤", "name_fr_FR": "Piston de saccageur gangrené", "name_de_DE": "Kolben des Teufelshäschers", "name_zh_CN": "魔能机甲的活塞", "name_es_ES": "Pistón de atracador vil", "name_ru_RU": "Пистон сквернобота", "name_it_IT": "Pistone del Vilrazziatore", "name_pt_PT": "Pistão do Aníquilus", "on_use": false, "id_encounter": 1574, "id_journal_instance": 749, "id_map": 550, "instance_type": 2}, {"id": 30620, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spyglass of the Hidden Fleet", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Spyglass of the Hidden Fleet", "name_ko_KR": "숨겨진 함대의 망원경", "name_fr_FR": "Longue-vue de la flotte cachée", "name_de_DE": "Handfernrohr der verborgenen Flotte", "name_zh_CN": "隐秘舰队的望远镜", "name_es_ES": "Catalejo de la flota oculta", "name_ru_RU": "Подзорная труба Сокрытого Флота", "name_it_IT": "Cannocchiale delle Orme Nascoste", "name_pt_PT": "Luneta da Frota Oculta", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30621, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prism of Inner Calm", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9580000042915344, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Prism of Inner Calm", "name_ko_KR": "내적인 고요의 프리즘", "name_fr_FR": "Prisme du calme intérieur", "name_de_DE": "Prisma der inneren Ruhe", "name_zh_CN": "心灵平静棱柱", "name_es_ES": "Prisma de calma interior", "name_ru_RU": "Призма Внутреннего Покоя", "name_it_IT": "Prisma della Calma Interiore", "name_pt_PT": "Prisma da Calma Interior", "on_use": false, "id_encounter": 1572, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30626, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sextant of Unstable Currents", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9763000011444092, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Sextant of Unstable Currents", "name_ko_KR": "불안정한 흐름의 육분의", "name_fr_FR": "Sextant des courants instables", "name_de_DE": "Sextant der unsteten Strömung", "name_zh_CN": "逆流六分仪", "name_es_ES": "Sextante de corrientes inestables", "name_ru_RU": "Секстан Ненадежных Течений", "name_it_IT": "Sestante delle Correnti Instabili", "name_pt_PT": "Sextante das Correntes Instáveis", "on_use": false, "id_encounter": 1570, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30627, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tsunami Talisman", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5938, "stat_alloc_2": 1563, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9800000190734863, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Tsunami Talisman", "name_ko_KR": "지진해일의 부적", "name_fr_FR": "Talisman du tsunami", "name_de_DE": "Tsunamitalisman", "name_zh_CN": "海啸护符", "name_es_ES": "Talismán tsunami", "name_ru_RU": "Талисман Цунами", "name_it_IT": "Talismano dello Tsunami", "name_pt_PT": "Talismã Tsunami", "on_use": false, "id_encounter": 1569, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30629, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scarab of Displacement", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9873999953269958, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Scarab of Displacement", "name_ko_KR": "변위의 스카라베", "name_fr_FR": "Scarabée de déplacement", "name_de_DE": "Skarabäus der Verdrängung", "name_zh_CN": "偏移甲虫", "name_es_ES": "Escarabajo de desplazamiento", "name_ru_RU": "Скарабей перемещения", "name_it_IT": "Scarabeo della Dislocazione", "name_pt_PT": "Escaravelho do Deslocamento", "on_use": true, "id_encounter": 1567, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30663, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fathom-Brooch of the Tidewalker", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9650999903678894, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Fathom-Brooch of the Tidewalker", "name_ko_KR": "심연의 겅둥파도 브로치", "name_fr_FR": "Brasse-broche du marcheur-des-flots", "name_de_DE": "Tiefenbrosche des Gezeitenwandlers", "name_zh_CN": "踏潮者的深渊胸针", "name_es_ES": "Broche profundo del caminante de la marea", "name_ru_RU": "Глубинная брошь Приливного странника", "name_it_IT": "Spilla Profonda del Cavalcaonde", "name_pt_PT": "Broche-penetrante do Andamaré", "on_use": false, "id_encounter": 1570, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30664, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Living Root of the Wildheart", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9686999917030334, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Living Root of the Wildheart", "name_ko_KR": "거친심장의 살아있는 뿌리", "name_fr_FR": "Racine vivante du Cœur-sauvage", "name_de_DE": "Lebendige Wurzel des Wildherzens", "name_zh_CN": "野性之心的活力根须", "name_es_ES": "Raíz viva del corazón salvaje", "name_ru_RU": "Живой корень дикого сердца", "name_it_IT": "Radice Vivente del Cuorselvaggio", "name_pt_PT": "Raiz Viva do Coração Selvagem", "on_use": false, "id_encounter": 1567, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30665, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Earring of Soulful Meditation", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4688, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Earring of Soulful Meditation", "name_ko_KR": "충만한 명상의 귀걸이", "name_fr_FR": "Boucle d'oreille de la méditation expressive", "name_de_DE": "Ohrring der seelenvollen Meditation", "name_zh_CN": "热情冥想耳环", "name_es_ES": "Pendiente de meditación emotiva", "name_ru_RU": "Серьга душевной медитации", "name_it_IT": "Orecchino dell'Anima Meditativa", "name_pt_PT": "Brinco da Meditação Emotiva", "on_use": true, "id_encounter": 1568, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30696, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scourgebane", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6818, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.039199948310852, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Scourgebane", "name_ko_KR": "스컬지 파멸석", "name_fr_FR": "Plaie-du-Fléau", "name_de_DE": "Geißelbann", "name_zh_CN": "天灾杀手", "name_es_ES": "Finiquiplaga", "name_ru_RU": "Руна проклятия Плети", "name_it_IT": "Malflagello", "name_pt_PT": "Flagelicida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 30720, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Serpent-Coil Braid", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4688, "stat_alloc_2": 1875, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9801999926567078, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Serpent-Coil Braid", "name_ko_KR": "불뱀똬리 매듭", "name_fr_FR": "Tresse de l'anneau du serpent", "name_de_DE": "Flechte der Schlangenschlinge", "name_zh_CN": "盘蛇饰带", "name_es_ES": "Trenza espiral de serpiente", "name_ru_RU": "Сплетение змеиных колец", "name_it_IT": "Treccia della Spira Serpentina", "name_pt_PT": "Trança de Serpente Espiralada", "on_use": false, "id_encounter": 1571, "id_journal_instance": 748, "id_map": 548, "instance_type": 2}, {"id": 30841, "race_mask": 18446744073709551615, "desc": "Short prayers from a dozen different faiths are contained in this book.", "pad2": "", "pad1": "", "pad0": "", "name": "Lower City Prayerbook", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 43988, "buy_price": 175952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1011, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Lower City Prayerbook", "name_ko_KR": "고난의 거리 기도서", "name_fr_FR": "Livre de prières de la Ville basse", "name_de_DE": "Gebetsbuch des Unteren Viertels", "name_zh_CN": "贫民窟祈祷之书", "name_es_ES": "Libro de oraciones de Bajo Arrabal", "name_ru_RU": "Книга молитв Нижнего Города", "name_it_IT": "Libro di Preghiere della Città Bassa", "name_pt_PT": "Livro de Orações do Bairro Inferior", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31080, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mercurial Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 512, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 7500, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4000, "buy_price": 16000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836999773979187, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 26, "inv_type": 12, "quality": 2, "name_en_US": "Mercurial Stone", "name_ko_KR": "수은석", "name_fr_FR": "Pierre mercurienne", "name_de_DE": "Quecksilberstein", "name_zh_CN": "水银石", "name_es_ES": "Piedra mercúrica", "name_ru_RU": "Переменчивый камень", "name_it_IT": "Pietra Mercuriale", "name_pt_PT": "Pedra Mercurial", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Violet Badge", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6316, "stat_alloc_2": 7895, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 56, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 43988, "buy_price": 175952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Violet Badge", "name_ko_KR": "보랏빛 배지", "name_fr_FR": "Ecusson pourpre", "name_de_DE": "Violettes Abzeichen", "name_zh_CN": "紫罗兰徽章", "name_es_ES": "Distintivo Violeta", "name_ru_RU": "Знак Аметистового Ока", "name_it_IT": "Distintivo Viola", "name_pt_PT": "Insígnia Violeta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31615, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Draenei Arcane Relic", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7923, "buy_price": 39615, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0206999778747559, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ancient Draenei Arcane Relic", "name_ko_KR": "고대 드레나이 비전 유물", "name_fr_FR": "Ancienne relique arcanique draeneï", "name_de_DE": "Uraltes Arkanrelikt der Draenei", "name_zh_CN": "上古德莱尼奥术神器", "name_es_ES": "Reliquia Arcana de draenei antigua", "name_ru_RU": "Древняя дренейская чародейская реликвия", "name_it_IT": "Reliquia Arcana Draenei Antica", "name_pt_PT": "Antiga Relíquia Arcana Draenei", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31617, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Draenei War Talisman", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7408, "buy_price": 37042, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9544000029563904, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ancient Draenei War Talisman", "name_ko_KR": "고대 드레나이 전투 부적", "name_fr_FR": "Ancien talisman de guerre draeneï", "name_de_DE": "Uralter Kriegstalisman der Draenei", "name_zh_CN": "上古德莱尼作战咒符", "name_es_ES": "Dije de guerra draenei antiguo", "name_ru_RU": "Древний дренейский военный талисман", "name_it_IT": "Antico Talismano da Guerra Draenei", "name_pt_PT": "Antigo Talismã de Guerra Draenei", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31856, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Crusade", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Crusade", "name_ko_KR": "다크문 카드: 성전", "name_fr_FR": "Carte de Sombrelune : Croisade", "name_de_DE": "Dunkelmond-Karte: Kreuzzug", "name_zh_CN": "暗月卡片:远征", "name_es_ES": "Naipe de la Luna Negra: Cruzada", "name_ru_RU": "Карта Новолуния: Молитва", "name_it_IT": "Carta di Lunacupa: Crociata", "name_pt_PT": "Carta de Negraluna: Cruzada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31857, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Wrath", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Wrath", "name_ko_KR": "다크문 카드: 진노", "name_fr_FR": "Carte de Sombrelune : Courroux", "name_de_DE": "Dunkelmond-Karte: Zorn", "name_zh_CN": "暗月卡片:怒火", "name_es_ES": "Naipe de la Luna Negra: Cólera", "name_ru_RU": "Карта Новолуния: Гнев", "name_it_IT": "Carta di Lunacupa: Ira", "name_pt_PT": "Carta de Negraluna: Ira", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31858, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Vengeance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0360000133514404, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Vengeance", "name_ko_KR": "다크문 카드: 앙갚음", "name_fr_FR": "Carte de Sombrelune : Vengeance", "name_de_DE": "Dunkelmond-Karte: Vergeltung", "name_zh_CN": "暗月卡片:复仇", "name_es_ES": "Naipe de la Luna Negra: Venganza", "name_ru_RU": "Карта Новолуния: Отмщение", "name_it_IT": "Carta di Lunacupa: Vendetta", "name_pt_PT": "Carta de Negraluna: Vingança", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 31859, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Madness", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100000, "buy_price": 400000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0397000312805176, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Madness", "name_ko_KR": "다크문 카드: 광기", "name_fr_FR": "Carte de Sombrelune : Folie", "name_de_DE": "Dunkelmond-Karte: Wahnsinn", "name_zh_CN": "暗月卡片:疯狂", "name_es_ES": "Naipe de la Luna Negra: Locura", "name_ru_RU": "Карта Новолуния: Безумец", "name_it_IT": "Carta di Lunacupa: Follia", "name_pt_PT": "Carta de Negraluna: Loucura", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32481, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Swift Flight", "id_expansion": 1, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 524352, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Charm of Swift Flight", "name_ko_KR": "날쌘 비행의 부적", "name_fr_FR": "Charme du vol rapide", "name_de_DE": "Glücksbringer des schnellen Fluges", "name_zh_CN": "迅捷飞行符咒", "name_es_ES": "Talismán de Vuelo presto", "name_ru_RU": "Оберег стремительного полета", "name_it_IT": "Talismano del Volo Rapido", "name_pt_PT": "Patuá da Fuga Rápida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32483, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Skull of Gul'dan", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3125, "stat_alloc_2": 5875, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9620000123977661, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "The Skull of Gul'dan", "name_ko_KR": "굴단의 해골", "name_fr_FR": "Le crâne de Gul'dan", "name_de_DE": "Der Schädel des Gul'dan", "name_zh_CN": "古尔丹之颅", "name_es_ES": "La calavera de Gul'dan", "name_ru_RU": "Череп Гул'дана", "name_it_IT": "Teschio di Gul'dan", "name_pt_PT": "O Crânio de Gul'dan", "on_use": true, "id_encounter": 1590, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 32485, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Valor", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9693999886512756, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Valor", "name_ko_KR": "용맹의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de vaillance cendrelangue", "name_de_DE": "Aschenzungentalisman der Ehre", "name_zh_CN": "勇气之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de valor", "name_ru_RU": "Талисман доблести Пеплоуста", "name_it_IT": "Talismano dei Linguamorta del Valore", "name_pt_PT": "Talismã Grislíngua da Bravura", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32486, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Equilibrium", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Equilibrium", "name_ko_KR": "평정의 잿빛혓바닥 부적", "name_fr_FR": "Talisman d'équilibre cendrelangue", "name_de_DE": "Aschenzungentalisman der Ausgeglichenheit", "name_zh_CN": "平衡之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de equilibrio", "name_ru_RU": "Талисман самообладания Пеплоуста", "name_it_IT": "Talismano dei Linguamorta dell'Equilibrio", "name_pt_PT": "Talismã Grislíngua do Equilíbrio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32487, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Swiftness", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9767000079154968, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Swiftness", "name_ko_KR": "신속의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de rapidité cendrelangue", "name_de_DE": "Aschenzungentalisman der Schnelligkeit", "name_zh_CN": "迅捷之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de presteza", "name_ru_RU": "Талисман Быстроты Пеплоуста", "name_it_IT": "Talismano dei Linguamorta della Velocità", "name_pt_PT": "Talismã Grislíngua da Rapidez", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32488, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Insight", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.980400025844574, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Insight", "name_ko_KR": "통찰의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de clairvoyance cendrelangue", "name_de_DE": "Aschenzungentalisman der Einsicht", "name_zh_CN": "洞察之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de perspicacia", "name_ru_RU": "Талисман озарения Пеплоуста", "name_it_IT": "Talismano dei Linguamorta della Concentrazione", "name_pt_PT": "Talismã Grislíngua da Percepção", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32489, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Zeal", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9840999841690063, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Zeal", "name_ko_KR": "열정의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de zèle cendrelangue", "name_de_DE": "Aschenzungentalisman des Eifers", "name_zh_CN": "狂热之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de fanatismo", "name_ru_RU": "Талисман рвения Пеплоуста", "name_it_IT": "Talismano dei Linguamorta dello Zelo", "name_pt_PT": "Talismã Grislíngua do Zelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Acumen", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9876999855041504, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Acumen", "name_ko_KR": "총명의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de sagacité cendrelangue", "name_de_DE": "Aschenzungentalisman des Scharfsinns", "name_zh_CN": "睿智之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de sagacidad", "name_ru_RU": "Талисман Проницания Пеплоуста", "name_it_IT": "Talismano dei Linguamorta dell'Acume", "name_pt_PT": "Talismã Grislíngua do Discernimento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32491, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Vision", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9914000034332275, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Vision", "name_ko_KR": "환영의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de vision cendrelangue", "name_de_DE": "Aschenzungentalisman der Weitsicht", "name_zh_CN": "预言之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de visión", "name_ru_RU": "Талисман провидения Пеплоуста", "name_it_IT": "Talismano dei Linguamorta della Visione", "name_pt_PT": "Talismã Grislíngua da Visão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Lethality", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9951000213623047, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Lethality", "name_ko_KR": "필살의 잿빛혓바닥 부적", "name_fr_FR": "Talisman de létalité cendrelangue", "name_de_DE": "Aschenzungentalisman der Tödlichkeit", "name_zh_CN": "致命之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de letalidad", "name_ru_RU": "Талисман Смертоносности Пеплоуста", "name_it_IT": "Talismano dei Linguamorta della Letalità", "name_pt_PT": "Talismã Grislíngua da Letalidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32493, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashtongue Talisman of Shadows", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987999796867371, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1012, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ashtongue Talisman of Shadows", "name_ko_KR": "어둠의 잿빛혓바닥 부적", "name_fr_FR": "Talisman des ombres cendrelangue", "name_de_DE": "Aschenzungentalisman der Schatten", "name_zh_CN": "暗影之灰舌符咒", "name_es_ES": "Talismán Lengua de Ceniza de sombras", "name_ru_RU": "Талисман Теней Пеплоуста", "name_it_IT": "Talismano dei Linguamorta delle Ombre", "name_pt_PT": "Talismã Grislíngua das Sombras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32496, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Memento of Tyrande", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0097999572753906, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Memento of Tyrande", "name_ko_KR": "추억이 담긴 티란데의 기념품", "name_fr_FR": "Souvenir de Tyrande", "name_de_DE": "Tyrandes Andenken", "name_zh_CN": "泰兰德的记忆", "name_es_ES": "Recuerdo de Tyrande", "name_ru_RU": "Память о Тиранде", "name_it_IT": "Memento di Tyrande", "name_pt_PT": "Recordação de Tyrande", "on_use": false, "id_encounter": 1590, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 32501, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowmoon Insignia", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6986, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545999765396118, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Shadowmoon Insignia", "name_ko_KR": "어둠달 휘장", "name_fr_FR": "Insigne d'Ombrelune", "name_de_DE": "Insigne des Schattenmondklans", "name_zh_CN": "影月徽记", "name_es_ES": "Insignia de Sombraluna", "name_ru_RU": "Знак клана Призрачной Луны", "name_it_IT": "Fregio di Torvaluna", "name_pt_PT": "Insígnia da Lua Negra", "on_use": true, "id_encounter": 1586, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 32505, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Madness of the Betrayer", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2740, "stat_alloc_2": 3926, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 72, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692000150680542, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Madness of the Betrayer", "name_ko_KR": "배신자의 광기", "name_fr_FR": "Folie du traître", "name_de_DE": "Wahnsinn des Verräters", "name_zh_CN": "背叛者的疯狂", "name_es_ES": "Locura de El Traidor", "name_ru_RU": "Безумие Предателя", "name_it_IT": "Follia del Traditore", "name_pt_PT": "Insânia do Traidor", "on_use": false, "id_encounter": 1589, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 32534, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brooch of the Immortal King", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66290, "buy_price": 265161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0286999940872192, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Brooch of the Immortal King", "name_ko_KR": "영원한 왕의 브로치", "name_fr_FR": "Broche du roi immortel", "name_de_DE": "Brosche des unsterblichen Königs", "name_zh_CN": "不朽之王的胸针", "name_es_ES": "Broche del Rey inmortal", "name_ru_RU": "Брошь бессмертного короля", "name_it_IT": "Spilla del Re Immortale", "name_pt_PT": "Broche do Rei Imortal", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crystalforged Trinket", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9542999863624573, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1038, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Crystalforged Trinket", "name_ko_KR": "수정으로 벼려낸 장신구", "name_fr_FR": "Bijou cristalforgé", "name_de_DE": "Kristallgeschmiedetes Schmuckstück", "name_zh_CN": "晶铸饰品", "name_es_ES": "Abalorio de cristal forjado", "name_ru_RU": "Хрустальное украшение", "name_it_IT": "Monile Forgiato nel Cristallo", "name_pt_PT": "Berloque de Cristal Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32658, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badge of Tenacity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4583, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968999981880188, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Badge of Tenacity", "name_ko_KR": "불굴의 배지", "name_fr_FR": "Ecusson de ténacité", "name_de_DE": "Abzeichen der Hartnäckigkeit", "name_zh_CN": "坚韧徽章", "name_es_ES": "Insignia de Tenacidad", "name_ru_RU": "Жетон упорства", "name_it_IT": "Distintivo della Tenacia", "name_pt_PT": "Insígnia da Tenacidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32694, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overseer's Badge", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 6148, "buy_price": 30740, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1015, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Overseer's Badge", "name_ko_KR": "감독관의 배지", "name_fr_FR": "Ecusson de surveillant", "name_de_DE": "Abzeichen des Aufsehers", "name_zh_CN": "督工的徽章", "name_es_ES": "Distintivo de sobrestante", "name_ru_RU": "Знак надзирателя", "name_it_IT": "Distintivo del Sovrintendente", "name_pt_PT": "Distintivo do Supervisor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32695, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Captain's Badge", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 7405, "buy_price": 37027, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1015, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Captain's Badge", "name_ko_KR": "대장의 배지", "name_fr_FR": "Ecusson de capitaine", "name_de_DE": "Abzeichen des Hauptmanns", "name_zh_CN": "队长的徽章", "name_es_ES": "Distintivo de Capitán", "name_ru_RU": "Жетон капитана", "name_it_IT": "Distintivo del Capitano", "name_pt_PT": "Distintivo do Capitão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32770, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skyguard Silver Cross", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6538, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 10307, "buy_price": 41230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1031, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Skyguard Silver Cross", "name_ko_KR": "하늘경비대 은빛 훈장", "name_fr_FR": "Croix d'argent de la Garde-ciel", "name_de_DE": "Silberkreuz der Himmelswache", "name_zh_CN": "天空卫队银十字勋章", "name_es_ES": "Cruz de plata de la Guardia del cielo", "name_ru_RU": "Серебряный Крест Стража Небес", "name_it_IT": "Croce d'Argento dei Guardacieli", "name_pt_PT": "Cruz de Prata da Guarda Aérea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32771, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Airman's Ribbon of Gallantry", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6538, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 10307, "buy_price": 41230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968999981880188, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1031, "req_skill_rank": 0, "req_skill": 0, "ilevel": 31, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Airman's Ribbon of Gallantry", "name_ko_KR": "용맹한 비행사의 기장", "name_fr_FR": "Ruban de hardiesse d'aérige", "name_de_DE": "Luftfahrerschleife des Edelmuts", "name_zh_CN": "飞行员的勇气绶带", "name_es_ES": "Lazo de galantería de aviador", "name_ru_RU": "Лента галантности воздухоплавателя", "name_it_IT": "Nastro della Galanteria dell'Aviere", "name_pt_PT": "Fita Galante do Aviador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32863, "race_mask": 18446744073709551615, "desc": "Property of the Top Orc", "pad2": "", "pad1": "", "pad0": "", "name": "Skybreaker Whip", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7264, "buy_price": 36320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965399980545044, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Skybreaker Whip", "name_ko_KR": "하늘파괴자 채찍", "name_fr_FR": "Fouet de brise-ciel", "name_de_DE": "Peitsche der Himmelsteiler", "name_zh_CN": "碎天者之鞭", "name_es_ES": "Látigo rompecielos", "name_ru_RU": "Бич усмирителя небес", "name_it_IT": "Frusta della Spaccacieli", "name_pt_PT": "Açoite Rompe-céus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 32864, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Commander's Badge", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9783, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 10022, "buy_price": 50113, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9690999984741211, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1015, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Commander's Badge", "name_ko_KR": "지휘관의 배지", "name_fr_FR": "Ecusson de commandant", "name_de_DE": "Abzeichen des Kommandanten", "name_zh_CN": "指挥官的徽章", "name_es_ES": "Distintivo de Comandante", "name_ru_RU": "Кокарда командора", "name_it_IT": "Distintivo del Comandante", "name_pt_PT": "Distintivo do Comandante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 33828, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Diabolic Remedy", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6765, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.995199978351593, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Tome of Diabolic Remedy", "name_ko_KR": "악마의 치유 고서", "name_fr_FR": "Tome de remède diabolique", "name_de_DE": "Foliant der diabolischen Heilung", "name_zh_CN": "魔鬼治疗宝典", "name_es_ES": "Escrito sobre Remedio diabólico", "name_ru_RU": "Фолиант Дьявольского лекарства", "name_it_IT": "Tomo dei Rimedi Diabolici", "name_pt_PT": "Tomo do Remédio Diabólico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 33829, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hex Shrunken Head", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6618, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Hex Shrunken Head", "name_ko_KR": "사술로 쭈그러든 해골", "name_fr_FR": "Tête réduite à maléfices", "name_de_DE": "Verhexter Schrumpfkopf", "name_zh_CN": "妖术之颅", "name_es_ES": "Cabeza reducida de brujería", "name_ru_RU": "Усохшая проклятая голова", "name_it_IT": "Testa Rimpicciolita Vudù", "name_pt_PT": "Cabeça Encolhida de Feiticeiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 33830, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Aqir Artifact", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6618, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Aqir Artifact", "name_ko_KR": "고대 아퀴르 유물", "name_fr_FR": "Antique artéfact aqir", "name_de_DE": "Altes Artefakt der Aqir", "name_zh_CN": "上古埃基尔神器", "name_es_ES": "Antiguo artefacto Aqir", "name_ru_RU": "Древний акирский артефакт", "name_it_IT": "Manufatto Aqir Antico", "name_pt_PT": "Artefato Aqir Antigo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 33831, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Berserker's Call", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91160, "buy_price": 364641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0061999559402466, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Berserker's Call", "name_ko_KR": "광전사의 부름", "name_fr_FR": "Appel du berserker", "name_de_DE": "Ruf des Berserkers", "name_zh_CN": "狂暴者的召唤", "name_es_ES": "Llamada de rabioso", "name_ru_RU": "Зов берсерка", "name_it_IT": "Chiamata del Berserker", "name_pt_PT": "O Chamado do Berserker", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 33832, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Determination", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 833100, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0098999738693237, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Determination", "name_ko_KR": "지휘관의 결단", "name_fr_FR": "Détermination de maître de guerre", "name_de_DE": "Entschiedenheit des Kampfmeisters", "name_zh_CN": "战斗大师的决心", "name_es_ES": "Determinación de maestro de batalla", "name_ru_RU": "Решимость военачальника", "name_it_IT": "Determinazione del Maestro di Guerra", "name_pt_PT": "Determinação do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34029, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Voodoo Mask", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8991, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9769999980926514, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Tiny Voodoo Mask", "name_ko_KR": "작은 부두 가면", "name_fr_FR": "Masque vaudou minuscule", "name_de_DE": "Winzige Voodoomaske", "name_zh_CN": "小巫毒面具", "name_es_ES": "Máscara de vudú diminuta", "name_ru_RU": "Крошечная маска вуду", "name_it_IT": "Piccola maschera Vudù", "name_pt_PT": "Máscara do Pequeno Vodu", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34049, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Audacity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 805800, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9768000245094299, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Audacity", "name_ko_KR": "지휘관의 용맹", "name_fr_FR": "Audace de maître de guerre", "name_de_DE": "Kühnheit des Kampfmeisters", "name_zh_CN": "战斗大师的勇猛", "name_es_ES": "Audacia de maestro de batalla", "name_ru_RU": "Отвага военачальника", "name_it_IT": "Audacia del Maestro di Guerra", "name_pt_PT": "Audácia do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34050, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Perseverance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 808900, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9804999828338623, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Perseverance", "name_ko_KR": "지휘관의 끈기", "name_fr_FR": "Persévérance de maître de guerre", "name_de_DE": "Beharrlichkeit des Kampfmeisters", "name_zh_CN": "战斗大师的坚定", "name_es_ES": "Perseverancia de maestro de batalla", "name_ru_RU": "Настойчивость военачальника", "name_it_IT": "Perseveranza del Maestro di Guerra", "name_pt_PT": "Perseverança do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34162, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Depravity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 805800, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9768000245094299, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Depravity", "name_ko_KR": "지휘관의 악행", "name_fr_FR": "Dépravation de maître de guerre", "name_de_DE": "Ruchlosigkeit des Kampfmeisters", "name_zh_CN": "战斗大师的堕落", "name_es_ES": "Depravación de maestro de batalla", "name_ru_RU": "Порочность военачальника", "name_it_IT": "Depravazione del Maestro di Guerra", "name_pt_PT": "Depravação do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Cruelty", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 808900, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9804999828338623, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Cruelty", "name_ko_KR": "지휘관의 무자비함", "name_fr_FR": "Cruauté de maître de guerre", "name_de_DE": "Grausamkeit des Kampfmeisters", "name_zh_CN": "战斗大师的残暴", "name_es_ES": "Crueldad de maestro de batalla", "name_ru_RU": "Жестокость военачальника", "name_it_IT": "Crudeltà del Maestro di Guerra", "name_pt_PT": "Crueldade do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34423, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Strength of the High Chief", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7209, "buy_price": 36049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581999778747559, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Strength of the High Chief", "name_ko_KR": "대족장의 힘", "name_fr_FR": "Force du grand chef", "name_de_DE": "Stärke des Oberhäuptlings", "name_zh_CN": "熊怪酋长之力", "name_es_ES": "Fuerza del Gran Jefe", "name_ru_RU": "Сила великого вождя", "name_it_IT": "Forza del Gran Capo", "name_pt_PT": "Força do Chefe Supremo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Power of the High Chief", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7237, "buy_price": 36188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Power of the High Chief", "name_ko_KR": "대족장의 위력", "name_fr_FR": "Puissance du grand chef", "name_de_DE": "Macht des Oberhäuptlings", "name_zh_CN": "熊怪酋长之能", "name_es_ES": "Poder del Gran Jefe", "name_ru_RU": "Мощь великого вождя", "name_it_IT": "Potenza del Gran Capo", "name_pt_PT": "Poder do Chefe Supremo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34427, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blackened Naaru Sliver", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6585, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9728999733924866, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Blackened Naaru Sliver", "name_ko_KR": "타락한 나루의 조각", "name_fr_FR": "Esquille naaru noircie", "name_de_DE": "Geschwärzter Naarusplitter", "name_zh_CN": "灰暗的纳鲁薄片", "name_es_ES": "Esquirla naaru ennegrecida", "name_ru_RU": "Почерневшая лента наару", "name_it_IT": "Scaglia Annerita del Naaru", "name_pt_PT": "Lasca Enegrecida dos Naarus", "on_use": false, "id_encounter": 1595, "id_journal_instance": 752, "id_map": 580, "instance_type": 2}, {"id": 34428, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Steely Naaru Sliver", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6585, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003100037574768, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Steely Naaru Sliver", "name_ko_KR": "강철 같은 나루의 조각", "name_fr_FR": "Esquille naaru inflexible", "name_de_DE": "Stahlharter Naarusplitter", "name_zh_CN": "坚硬的纳鲁薄片", "name_es_ES": "Esquirla acerada de los naaru", "name_ru_RU": "Стальная лента наару", "name_it_IT": "Scaglia d'Acciaio del Naaru", "name_pt_PT": "Lasca Metálica dos Naarus", "on_use": true, "id_encounter": 1595, "id_journal_instance": 752, "id_map": 580, "instance_type": 2}, {"id": 34429, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shifting Naaru Sliver", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6585, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006700038909912, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Shifting Naaru Sliver", "name_ko_KR": "변화하는 나루의 조각", "name_fr_FR": "Esquille naaru changeante", "name_de_DE": "Unbeständiger Naarusplitter", "name_zh_CN": "变幻的纳鲁薄片", "name_es_ES": "Esquirla cambiante de los naaru", "name_ru_RU": "Переливчатая лента наару", "name_it_IT": "Scaglia Fasante del Naaru", "name_pt_PT": "Lasca Cambiante dos Naarus", "on_use": true, "id_encounter": 1595, "id_journal_instance": 752, "id_map": 580, "instance_type": 2}, {"id": 34430, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glimmering Naaru Sliver", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6585, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104000568389893, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Glimmering Naaru Sliver", "name_ko_KR": "희미하게 빛나는 나루의 조각", "name_fr_FR": "Esquille naaru rougeoyante", "name_de_DE": "Schimmernder Naarusplitter", "name_zh_CN": "闪光的纳鲁薄片", "name_es_ES": "Esquirla naaru de luz trémula", "name_ru_RU": "Мерцающая лента наару", "name_it_IT": "Scaglia Luccicante del Naaru", "name_pt_PT": "Lasca Luminosa dos Naarus", "on_use": true, "id_encounter": 1595, "id_journal_instance": 752, "id_map": 580, "instance_type": 2}, {"id": 34470, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timbal's Focusing Crystal", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20943, "buy_price": 104716, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Timbal's Focusing Crystal", "name_ko_KR": "팀발의 집중 수정", "name_fr_FR": "Cristal focalisateur de Timbal", "name_de_DE": "Timbals Fokussierungskristall", "name_zh_CN": "提巴尔的聚焦水晶", "name_es_ES": "Cristal de enfoque de Timbal", "name_ru_RU": "Фокусирующий кристалл Тимбала", "name_it_IT": "Cristallo Focalizzante di Timbal", "name_pt_PT": "Cristal de Concentração de Timbal", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 34471, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of the Sunwell", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21017, "buy_price": 105089, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013800024986267, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Vial of the Sunwell", "name_ko_KR": "태양샘 약병", "name_fr_FR": "Fiole du Puits de soleil", "name_de_DE": "Phiole des Sonnenbrunnens", "name_zh_CN": "太阳之井的水瓶", "name_es_ES": "Vial de La Fuente del Sol", "name_ru_RU": "Флакон воды из Солнечного Колодца", "name_it_IT": "Fiala del Pozzo Solare", "name_pt_PT": "Ampola da Nascente do Sol", "on_use": true, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 34472, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of Contempt", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7719, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21094, "buy_price": 105473, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0175000429153442, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Shard of Contempt", "name_ko_KR": "경멸의 파편", "name_fr_FR": "Éclat du mépris", "name_de_DE": "Scherbe der Verachtung", "name_zh_CN": "耻辱碎片", "name_es_ES": "Fragmento de desprecio", "name_ru_RU": "Осколок презрения", "name_it_IT": "Frammento del Disprezzo", "name_pt_PT": "Estilhaço do Desprezo", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 34473, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Commendation of Kael'thas", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21171, "buy_price": 105856, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Commendation of Kael'thas", "name_ko_KR": "캘타스의 증표", "name_fr_FR": "Recommandation de Kael'thas", "name_de_DE": "Belobigung von Kael'thas", "name_zh_CN": "凯尔萨斯的赞誉", "name_es_ES": "Mención de honor de Kael'thas", "name_ru_RU": "Рекомендация Кель'таса", "name_it_IT": "Distintivo d'Encomio di Kael'thas", "name_pt_PT": "Comenda de Kael'thas", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 34576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Cruelty", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9843999743461609, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Cruelty", "name_ko_KR": "지휘관의 무자비함", "name_fr_FR": "Cruauté de maître de guerre", "name_de_DE": "Grausamkeit des Kampfmeisters", "name_zh_CN": "战斗大师的残暴", "name_es_ES": "Crueldad de maestro de batalla", "name_ru_RU": "Жестокость военачальника", "name_it_IT": "Crudeltà del Maestro di Guerra", "name_pt_PT": "Crueldade do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Depravity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.988099992275238, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Depravity", "name_ko_KR": "지휘관의 악행", "name_fr_FR": "Dépravation de maître de guerre", "name_de_DE": "Ruchlosigkeit des Kampfmeisters", "name_zh_CN": "战斗大师的堕落", "name_es_ES": "Depravación de maestro de batalla", "name_ru_RU": "Порочность военачальника", "name_it_IT": "Depravazione del Maestro di Guerra", "name_pt_PT": "Depravação do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34578, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Determination", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9918000102043152, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Determination", "name_ko_KR": "지휘관의 결단", "name_fr_FR": "Détermination de maître de guerre", "name_de_DE": "Entschiedenheit des Kampfmeisters", "name_zh_CN": "战斗大师的决心", "name_es_ES": "Determinación de maestro de batalla", "name_ru_RU": "Решимость военачальника", "name_it_IT": "Determinazione del Maestro di Guerra", "name_pt_PT": "Determinação do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Audacity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9955000281333923, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Audacity", "name_ko_KR": "지휘관의 용맹", "name_fr_FR": "Audace de maître de guerre", "name_de_DE": "Kühnheit des Kampfmeisters", "name_zh_CN": "战斗大师的勇猛", "name_es_ES": "Audacia de maestro de batalla", "name_ru_RU": "Отвага военачальника", "name_it_IT": "Audacia del Maestro di Guerra", "name_pt_PT": "Audácia do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 34580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Perseverance", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9991000294685364, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Perseverance", "name_ko_KR": "지휘관의 끈기", "name_fr_FR": "Persévérance de maître de guerre", "name_de_DE": "Beharrlichkeit des Kampfmeisters", "name_zh_CN": "战斗大师的坚定", "name_es_ES": "Perseverancia de maestro de batalla", "name_ru_RU": "Настойчивость военачальника", "name_it_IT": "Perseveranza del Maestro di Guerra", "name_pt_PT": "Perseverança do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35326, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Alacrity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 787400, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9545000195503235, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Alacrity", "name_ko_KR": "지휘관의 날렵함", "name_fr_FR": "Empressement de maître de guerre", "name_de_DE": "Eifer des Kampfmeisters", "name_zh_CN": "战斗大师的活跃", "name_es_ES": "Prontitud de maestro de batalla", "name_ru_RU": "Готовность военачальника", "name_it_IT": "Alacrità del Maestro di Guerra", "name_pt_PT": "Diligência do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35327, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Alacrity", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9581999778747559, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Alacrity", "name_ko_KR": "지휘관의 날렵함", "name_fr_FR": "Empressement de maître de guerre", "name_de_DE": "Eifer des Kampfmeisters", "name_zh_CN": "战斗大师的活跃", "name_es_ES": "Prontitud de maestro de batalla", "name_ru_RU": "Готовность военачальника", "name_it_IT": "Alacrità del Maestro di Guerra", "name_pt_PT": "Diligência do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35693, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Empyrean Tortoise", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0103000402450562, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 75, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Figurine - Empyrean Tortoise", "name_ko_KR": "조각상 - 창공의 거북이", "name_fr_FR": "Figurine de tortue empyréenne", "name_de_DE": "Figur - Himmelsschildkröte", "name_zh_CN": "雕像 - 天蓝宝石海龟", "name_es_ES": "Figurilla: tortuga empírea", "name_ru_RU": "Статуэтка неземной черепахи", "name_it_IT": "Statuetta - Tartaruga Empirea", "name_pt_PT": "Estatueta - Jabuti Empíreo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35694, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Khorium Boar", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12000, "buy_price": 48000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 75, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Figurine - Khorium Boar", "name_ko_KR": "조각상 - 코륨 멧돼지", "name_fr_FR": "Figurine de sanglier en khorium", "name_de_DE": "Figur - Khoriumeber", "name_zh_CN": "雕像 - 氪金野猪", "name_es_ES": "Figurilla: jabalí de korio", "name_ru_RU": "Статуэтка кориевого вепря", "name_it_IT": "Statuetta - Cinghiale di Korio", "name_pt_PT": "Estatueta - Javali de Kório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35700, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Crimson Serpent", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5238, "stat_alloc_2": 7778, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624000191688538, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 75, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Figurine - Crimson Serpent", "name_ko_KR": "조각상 - 진홍빛 뱀", "name_fr_FR": "Figurine de cobra cramoisi", "name_de_DE": "Figur - Scharlachrote Schlange", "name_zh_CN": "雕像 - 赤尖蛇", "name_es_ES": "Figurilla: serpiente carmesí", "name_ru_RU": "Статуэтка багровой змейки", "name_it_IT": "Statuetta - Serpente Cremisi", "name_pt_PT": "Estatueta - Serpente Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35702, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Shadowsong Panther", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696999788284302, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 75, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Figurine - Shadowsong Panther", "name_ko_KR": "조각상 - 어둠노래 퓨마", "name_fr_FR": "Figurine de panthère de chantelombre", "name_de_DE": "Figur - Schattensangpanther", "name_zh_CN": "雕像 - 影歌猎豹", "name_es_ES": "Figurilla: pantera Cantosombrío", "name_ru_RU": "Статуэтка пантеры Песни Теней", "name_it_IT": "Statuetta - Pantera Cantombroso", "name_pt_PT": "Estatueta - Pantera de Cantonegro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35703, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Seaspray Albatross", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7302, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15000, "buy_price": 60000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 75, "req_skill": 2523, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Figurine - Seaspray Albatross", "name_ko_KR": "조각상 - 바다안개 알바트로스", "name_fr_FR": "Figurine d'albatros en écume", "name_de_DE": "Figur - Gischtalbatros", "name_zh_CN": "雕像 - 海浪信天翁", "name_es_ES": "Figurilla: albatros de espuma marina", "name_ru_RU": "Статуэтка морского альбатроса", "name_it_IT": "Statuetta - Albatros Brumarino", "name_pt_PT": "Estatueta - Albatroz de Espuma-marinha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35748, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Guardian's Alchemist Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8571, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2484, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Guardian's Alchemist Stone", "name_ko_KR": "수호자의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste de gardien", "name_de_DE": "Alchemistenstein des Wächters", "name_zh_CN": "守护者的炼金石", "name_es_ES": "Piedra de alquimista de guardián", "name_ru_RU": "Алхимический камень стража", "name_it_IT": "Pietra Alchemica del Guardiano", "name_pt_PT": "Pedra do Alquimista do Guardião", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35749, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Sorcerer's Alchemist Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8571, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2484, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Sorcerer's Alchemist Stone", "name_ko_KR": "마술사의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste d'ensorceleur", "name_de_DE": "Alchemistenstein des Zauberers", "name_zh_CN": "巫师的炼金石", "name_es_ES": "Piedra de alquimista de hechicero", "name_ru_RU": "Алхимический камень чародея", "name_it_IT": "Pietra Alchemica dell'Occultista", "name_pt_PT": "Pedra do Alquimista do Feiticeiro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35750, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Redeemer's Alchemist Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8571, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2484, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Redeemer's Alchemist Stone", "name_ko_KR": "구원자의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste de rédempteur", "name_de_DE": "Alchemistenstein des Erlösers", "name_zh_CN": "救赎者的炼金石", "name_es_ES": "Piedra de alquimista de redentor", "name_ru_RU": "Алхимический камень искупителя", "name_it_IT": "Pietra Alchemica del Redentore", "name_pt_PT": "Pedra do Alquimista do Redentor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35751, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Assassin's Alchemist Stone", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0290000438690186, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2484, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Assassin's Alchemist Stone", "name_ko_KR": "암살자의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste d'assassin", "name_de_DE": "Alchemistenstein des Assassinen", "name_zh_CN": "刺客的炼金石", "name_es_ES": "Piedra de alquimista de asesino", "name_ru_RU": "Алхимический камень убийцы", "name_it_IT": "Pietra Alchemica dell'Assassino", "name_pt_PT": "Pedra do Alquimista do Assassino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35935, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infused Coldstone Rune", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5849, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8579, "buy_price": 42899, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955000281333923, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Infused Coldstone Rune", "name_ko_KR": "마력 깃든 냉기석 룬", "name_fr_FR": "Rune froidepierre infusée", "name_de_DE": "Erfüllte Froststeinrune", "name_zh_CN": "魔法冻石符文", "name_es_ES": "Runa de piedrafría imbuida", "name_ru_RU": "Заряженная руна холодного камня", "name_it_IT": "Runa di Pietrafredda Infusa", "name_pt_PT": "Runa de Pedra Fria Infusa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 35937, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Braxley's Backyard Moonshine", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4906, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8642, "buy_price": 43213, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0027999877929688, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Braxley's Backyard Moonshine", "name_ko_KR": "브락슬리의 뒷마당 밀주", "name_fr_FR": "Tord-boyaux maison de Braxley", "name_de_DE": "Braxleys Hinterhoffusel", "name_zh_CN": "布拉克雷的私藏月光酒", "name_es_ES": "Licor de luna del patio trasero de Braxley", "name_ru_RU": "Бутыль самогона Браксли", "name_it_IT": "Torcibudella del Cortile di Braxley", "name_pt_PT": "Pinga de Fundo de Quintal de Braxley", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 36871, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fury of the Encroaching Storm", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7213, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10262, "buy_price": 51313, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fury of the Encroaching Storm", "name_ko_KR": "폭풍침입자의 분노", "name_fr_FR": "Fureur de l'orage imminent", "name_de_DE": "Zorn des aufziehenden Sturms", "name_zh_CN": "临近风暴之怒", "name_es_ES": "Furia de la tormenta usurpadora", "name_ru_RU": "Ярость шквального ветра", "name_it_IT": "Furia della Tempesta Incombente", "name_pt_PT": "Fúria da Tempestade Usurpadora", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 36872, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mender of the Oncoming Dawn", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6885, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10300, "buy_price": 51504, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mender of the Oncoming Dawn", "name_ko_KR": "다가오는 새벽의 치유석", "name_fr_FR": "Soigneur de l'aube imminente", "name_de_DE": "Heiler des kommenden Morgens", "name_zh_CN": "破晓的治愈者", "name_es_ES": "Casquete del alba venidera", "name_ru_RU": "Вызыватель рассвета", "name_it_IT": "Guaritore dell'Alba Imminente", "name_pt_PT": "Reparador da Aurora Iminente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 36874, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of the Herald", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7049, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10376, "buy_price": 51882, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0032999515533447, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Horn of the Herald", "name_ko_KR": "전령의 뿔피리", "name_fr_FR": "Cor du héraut", "name_de_DE": "Horn des Herolds", "name_zh_CN": "先锋的号角", "name_es_ES": "Cuerno del Heraldo", "name_ru_RU": "Рог вестника", "name_it_IT": "Corno dell'Alfiere", "name_pt_PT": "Chifre do Arauto", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 36972, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Arcane Phenomena", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5979, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24544, "buy_price": 122723, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0218000411987305, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Tome of Arcane Phenomena", "name_ko_KR": "신비한 현상의 고서", "name_fr_FR": "Tome du phénomène arcanique", "name_de_DE": "Foliant der arkanen Phänomene", "name_zh_CN": "奥法之书", "name_es_ES": "Escrito sobre fenómenos Arcanos", "name_ru_RU": "Фолиант магических феноменов", "name_it_IT": "Tomo del Fenomeno Arcano", "name_pt_PT": "Tomo de Fenômenos Arcanos", "on_use": true, "id_encounter": 625, "id_journal_instance": 282, "id_map": 578, "instance_type": 1}, {"id": 36993, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of the Pantheon", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6701, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24631, "buy_price": 123155, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Seal of the Pantheon", "name_ko_KR": "판테온의 인장", "name_fr_FR": "Sceau du panthéon", "name_de_DE": "Siegel des Pantheons", "name_zh_CN": "万神殿的封印", "name_es_ES": "Sello del Panteón", "name_ru_RU": "Печать Пантеона", "name_it_IT": "Sigillo del Pantheon", "name_pt_PT": "Selo do Panteão", "on_use": true, "id_encounter": 600, "id_journal_instance": 275, "id_map": 602, "instance_type": 1}, {"id": 37064, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vestige of Haldor", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6701, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24460, "buy_price": 122302, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Vestige of Haldor", "name_ko_KR": "할도르의 형적", "name_fr_FR": "Vestige d'Haldor", "name_de_DE": "Überreste von Haldor", "name_zh_CN": "赫尔多之痕", "name_es_ES": "Vestigio de Haldor", "name_ru_RU": "Останки Галдора", "name_it_IT": "Vestigia di Haldor", "name_pt_PT": "Vestígio de Haldor", "on_use": false, "id_encounter": 644, "id_journal_instance": 286, "id_map": 575, "instance_type": 1}, {"id": 37111, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Preserver", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6598, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25070, "buy_price": 125353, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0436999797821045, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Soul Preserver", "name_ko_KR": "영혼이 담긴 구슬", "name_fr_FR": "Protecteur d'âme", "name_de_DE": "Seelenhüter", "name_zh_CN": "护魂者", "name_es_ES": "Conservador de almas", "name_ru_RU": "Резервуар для душ", "name_it_IT": "Preservatore delle Anime", "name_pt_PT": "Salva-alma", "on_use": false, "id_encounter": 614, "id_journal_instance": 279, "id_map": 595, "instance_type": 1}, {"id": 37127, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brightbrew Charm", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7031, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0289000272750854, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Brightbrew Charm", "name_ko_KR": "감미로운 투명 맥주", "name_fr_FR": "Charme brillebière", "name_de_DE": "Hellbräuglücksbringer", "name_zh_CN": "光明美酒护符", "name_es_ES": "Talismán Brillobirra", "name_ru_RU": "Амулет светлого напитка", "name_it_IT": "Talismano della Birra che fa Bene", "name_pt_PT": "Patuá Cervaleve", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37128, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Balebrew Charm", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7031, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Balebrew Charm", "name_ko_KR": "감미로운 고통의 맥주", "name_fr_FR": "Charme torvebière", "name_de_DE": "Plörrbräuglücksbringer", "name_zh_CN": "黑暗美酒护符", "name_es_ES": "Talismán Fardobirra", "name_ru_RU": "Амулет темного варева", "name_it_IT": "Talismano della Birra che fa Male", "name_pt_PT": "Patuá Cervamarga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sphere of Red Dragon's Blood", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 22853, "buy_price": 114267, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Sphere of Red Dragon's Blood", "name_ko_KR": "붉은용 피의 구슬", "name_fr_FR": "Sphère de sang de dragon rouge", "name_de_DE": "Rote Drachenblutsphäre", "name_zh_CN": "红龙血珠", "name_es_ES": "Esfera de sangre de dragón Rojo", "name_ru_RU": "Сфера крови красного дракона", "name_it_IT": "Sfera di Sangue del Drago Rosso", "name_pt_PT": "Esfera de Sangue de Dragão Vermelho", "on_use": true, "id_encounter": 621, "id_journal_instance": 281, "id_map": 576, "instance_type": 1}, {"id": 37220, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Gossamer", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10091, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24717, "buy_price": 123588, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0290000438690186, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Essence of Gossamer", "name_ko_KR": "섬세한 거미줄", "name_fr_FR": "Essence de tulle", "name_de_DE": "Samtige Essenz", "name_zh_CN": "蛛丝精华", "name_es_ES": "Esencia de delicadez", "name_ru_RU": "Квинтэссенция паутины", "name_it_IT": "Essenza di Stoffa Finissima", "name_pt_PT": "Essência de Teia Diáfana", "on_use": false, "id_encounter": 586, "id_journal_instance": 272, "id_map": 601, "instance_type": 1}, {"id": 37264, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pendulum of Telluric Currents", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6727, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 334, "buy_price": 1671, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Pendulum of Telluric Currents", "name_ko_KR": "대지의 물결 추", "name_fr_FR": "Pendule des courants telluriques", "name_de_DE": "Pendel der Erdströme", "name_zh_CN": "魔流钟摆", "name_es_ES": "Péndulo de corrientes telúricas", "name_ru_RU": "Маятник теллурических токов", "name_it_IT": "Pendolo delle Correnti Telluriche", "name_pt_PT": "Pêndulo das Correntes Telúricas", "on_use": false, "id_encounter": 624, "id_journal_instance": 282, "id_map": 578, "instance_type": 1}, {"id": 37390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Meteorite Whetstone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6727, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 25080, "buy_price": 125401, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044100046157837, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Meteorite Whetstone", "name_ko_KR": "유성 숫돌", "name_fr_FR": "Pierre à aiguiser météorique", "name_de_DE": "Meteoritenschleifstein", "name_zh_CN": "陨星磨石", "name_es_ES": "Piedra de afilar de meteorito", "name_ru_RU": "Метеоритный оселок", "name_it_IT": "Cote di Meteorite", "name_pt_PT": "Pedra-ume de Meteorito", "on_use": false, "id_encounter": 644, "id_journal_instance": 286, "id_map": 575, "instance_type": 1}, {"id": 37555, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warsong's Wrath", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7170, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8741, "buy_price": 43709, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.014299988746643, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Warsong's Wrath", "name_ko_KR": "전쟁노래 부족의 분노", "name_fr_FR": "Courroux chanteguerre", "name_de_DE": "Rache des Kriegshymnenklans", "name_zh_CN": "战歌之怒", "name_es_ES": "Cólera de los Grito de Guerra", "name_ru_RU": "Ярость Песни Войны", "name_it_IT": "Ira dei Cantaguerra", "name_pt_PT": "Ira do Brado Guerreiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37556, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Tundra", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7170, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8773, "buy_price": 43868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Talisman of the Tundra", "name_ko_KR": "동토의 부적", "name_fr_FR": "Talisman de la toundra", "name_de_DE": "Talisman der Tundra", "name_zh_CN": "苔原护符", "name_es_ES": "Dije de la tundra", "name_ru_RU": "Талисман тундры", "name_it_IT": "Talismano della Tundra", "name_pt_PT": "Talismã da Tundra", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37557, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warsong's Fervor", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5849, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8805, "buy_price": 44028, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Warsong's Fervor", "name_ko_KR": "전쟁노래 부족의 열정", "name_fr_FR": "Ferveur chanteguerre", "name_de_DE": "Eifer des Kriegshymnenklans", "name_zh_CN": "战歌的热情", "name_es_ES": "Fervor de los Grito de Guerra", "name_ru_RU": "Жаркая Песнь Войны", "name_it_IT": "Fervore dei Cantaguerra", "name_pt_PT": "Fervor do Brado Guerreiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37558, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tidal Boon", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7547, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8836, "buy_price": 44183, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0253000259399414, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Tidal Boon", "name_ko_KR": "파도의 은혜", "name_fr_FR": "Aubaine des flots", "name_de_DE": "Gezeitensegen", "name_zh_CN": "海潮的恩赐", "name_es_ES": "Favor de la marea", "name_ru_RU": "Дар прилива", "name_it_IT": "Dono delle Maree", "name_pt_PT": "Bênção da Maré", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37559, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Serrah's Star", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7170, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8868, "buy_price": 44342, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0290000438690186, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Serrah's Star", "name_ko_KR": "세라의 별", "name_fr_FR": "Etoile de Serrah", "name_de_DE": "Serrahs Stern", "name_zh_CN": "塞尔拉之星", "name_es_ES": "Estrella de Serrah", "name_ru_RU": "Звезда Серры", "name_it_IT": "Stella di Serrah", "name_pt_PT": "Estrela de Serrah", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37560, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Renewal", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7170, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8900, "buy_price": 44502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0326999425888062, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Vial of Renewal", "name_ko_KR": "소생의 약병", "name_fr_FR": "Fiole du renouveau", "name_de_DE": "Phiole der Erneuerung", "name_zh_CN": "复兴之瓶", "name_es_ES": "Vial de renovación", "name_ru_RU": "Фиал обновления", "name_it_IT": "Fiala del Rinnovamento", "name_pt_PT": "Ampola da Renovação", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37562, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fury of the Crimson Drake", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6792, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8329, "buy_price": 41645, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9664000272750854, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Fury of the Crimson Drake", "name_ko_KR": "진홍십자군 비룡의 분노", "name_fr_FR": "Fureur du drake cramoisi", "name_de_DE": "Furor des scharlachroten Drachen", "name_zh_CN": "红龙之怒", "name_es_ES": "Furia del draco carmesí", "name_ru_RU": "Ярость алого дракона", "name_it_IT": "Furia del Draco Cremisi", "name_pt_PT": "Fúria do Draco Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37638, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Offering of Sacrifice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3571, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 22848, "buy_price": 114243, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.951200008392334, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Offering of Sacrifice", "name_ko_KR": "희생의 제물", "name_fr_FR": "Offrande de sacrifice", "name_de_DE": "Hingebungsvolle Opfergabe", "name_zh_CN": "献祭供品", "name_es_ES": "Ofrenda de sacrificio", "name_ru_RU": "Жертвоприношение", "name_it_IT": "Offerta di Sacrificio", "name_pt_PT": "Oferenda Sacrificial", "on_use": true, "id_encounter": 596, "id_journal_instance": 274, "id_map": 604, "instance_type": 1}, {"id": 37657, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Life", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 361, "buy_price": 1805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0475000143051147, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Spark of Life", "name_ko_KR": "생명의 불꽃", "name_fr_FR": "Etincelle de vie", "name_de_DE": "Lebensfunke", "name_zh_CN": "生命的火花", "name_es_ES": "Chispa de vida", "name_ru_RU": "Искра жизни", "name_it_IT": "Scintilla di Vita", "name_pt_PT": "Centelha de Vida", "on_use": false, "id_encounter": 607, "id_journal_instance": 277, "id_map": 599, "instance_type": 1}, {"id": 37660, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forge Ember", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 339, "buy_price": 1697, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Forge Ember", "name_ko_KR": "가열로 잿불", "name_fr_FR": "Braise de forge", "name_de_DE": "Schmiedeglut", "name_zh_CN": "熔炉的灰烬", "name_es_ES": "Ascua de forja", "name_ru_RU": "Кузнечный жар", "name_it_IT": "Tizzone della Forgia", "name_pt_PT": "Brasa de Forja", "on_use": false, "id_encounter": 607, "id_journal_instance": 277, "id_map": 599, "instance_type": 1}, {"id": 37723, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Incisor Fragment", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24551, "buy_price": 122759, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 524288, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Incisor Fragment", "name_ko_KR": "앞니 조각", "name_fr_FR": "Fragment d'incisive", "name_de_DE": "Schneidezahnfragment", "name_zh_CN": "门牙碎片", "name_es_ES": "Fragmento de incisivo", "name_ru_RU": "Кусок резца", "name_it_IT": "Frammento dell'Incisore", "name_pt_PT": "Fragmento de Incisivo", "on_use": true, "id_encounter": 590, "id_journal_instance": 273, "id_map": 600, "instance_type": 1}, {"id": 37734, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Troll Divinity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23117, "buy_price": 115589, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624000191688538, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Troll Divinity", "name_ko_KR": "트롤 신의 부적", "name_fr_FR": "Talisman de la divinité trolle", "name_de_DE": "Talisman des Trollgottes", "name_zh_CN": "巨魔神明护符", "name_es_ES": "Dije de divinidad trol", "name_ru_RU": "Талисман тролльского божества", "name_it_IT": "Talismano della Divinità Troll", "name_pt_PT": "Talismã da Divindade Troll", "on_use": true, "id_encounter": 591, "id_journal_instance": 273, "id_map": 600, "instance_type": 1}, {"id": 37835, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Je'Tze's Bell", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7222, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Je'Tze's Bell", "name_ko_KR": "제츠의 종", "name_fr_FR": "Cloche d'Af'Romaj", "name_de_DE": "Je'Tzes Glocke", "name_zh_CN": "耶塞的铃铛", "name_es_ES": "Campana de Je'Tze", "name_ru_RU": "Колокол Дже'Тце", "name_it_IT": "Campana di Je'Tze", "name_pt_PT": "Sino do Je'Tze", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37844, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Winged Talisman", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6545, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 327, "buy_price": 1639, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Winged Talisman", "name_ko_KR": "날개 달린 부적", "name_fr_FR": "Talisman ailé", "name_de_DE": "Geflügelter Talisman", "name_zh_CN": "展翼护符", "name_es_ES": "Dije alado", "name_ru_RU": "Крылатый талисман", "name_it_IT": "Talismano Alato", "name_pt_PT": "Talismã Alado", "on_use": true, "id_encounter": 599, "id_journal_instance": 275, "id_map": 602, "instance_type": 1}, {"id": 37864, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7031, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.951200008392334, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 37865, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37865, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7031, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549000263214111, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 37864, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 37872, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lavanthor's Talisman", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6727, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24191, "buy_price": 120957, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007099986076355, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Lavanthor's Talisman", "name_ko_KR": "라반토르의 부적", "name_fr_FR": "Talisman de Lavanthor", "name_de_DE": "Lavanthors Talisman", "name_zh_CN": "拉文索尔的护符", "name_es_ES": "Talismán de Lavanthor", "name_ru_RU": "Талисман Лавантора", "name_it_IT": "Talismano di Lavanthor", "name_pt_PT": "Talismã de Lavanthor", "on_use": true, "id_encounter": 630, "id_journal_instance": 283, "id_map": 608, "instance_type": 1}, {"id": 37873, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the War Prisoner", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 348, "buy_price": 1742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0108000040054321, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Mark of the War Prisoner", "name_ko_KR": "전쟁 포로의 징표", "name_fr_FR": "Marque du prisonnier de guerre", "name_de_DE": "Mal des Kriegsgefangenen", "name_zh_CN": "战争囚徒印记", "name_es_ES": "Marca del prisionero de guerra", "name_ru_RU": "Метка арестанта", "name_it_IT": "Marchio del Prigioniero di Guerra", "name_pt_PT": "Marca do Prisioneiro de Guerra", "on_use": true, "id_encounter": 632, "id_journal_instance": 283, "id_map": 608, "instance_type": 1}, {"id": 38070, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Foresight's Anticipation", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6897, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9103, "buy_price": 45519, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Foresight's Anticipation", "name_ko_KR": "선견지명의 직감", "name_fr_FR": "Anticipation prévoyante", "name_de_DE": "Vorahnung der Voraussicht", "name_zh_CN": "先知的预感", "name_es_ES": "Anticipación de previsión", "name_ru_RU": "Сбывшееся предсказание", "name_it_IT": "Anticipazione della Previdenza", "name_pt_PT": "Antecipação de Predição", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38071, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valonforth's Remembrance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6897, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9138, "buy_price": 45691, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549999833106995, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Valonforth's Remembrance", "name_ko_KR": "발론포스의 추억", "name_fr_FR": "Souvenir de Valensort", "name_de_DE": "Valonforts Andenken", "name_zh_CN": "瓦伦弗斯的记忆", "name_es_ES": "Recuerdos de Valonante", "name_ru_RU": "Память Валонфорта", "name_it_IT": "Ricordo di Valonforth", "name_pt_PT": "Lembrança de Valonforth", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38072, "race_mask": 18446744073709551615, "desc": "New and improved design!", "pad2": "", "pad1": "", "pad0": "", "name": "Thunder Capacitor", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9173, "buy_price": 45868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9587000012397766, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Thunder Capacitor", "name_ko_KR": "천둥 축전기", "name_fr_FR": "Condensateur de tonnerre", "name_de_DE": "Donnerkondensator", "name_zh_CN": "雷霆电容器", "name_es_ES": "Condensador de truenos", "name_ru_RU": "Громовой накопитель", "name_it_IT": "Condensatore Tonante", "name_pt_PT": "Capacitor de Trovões", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38073, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Will of the Red Dragonflight", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8103, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9209, "buy_price": 46045, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624000191688538, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Will of the Red Dragonflight", "name_ko_KR": "붉은용군단의 결의", "name_fr_FR": "Volonté du Vol draconique rouge", "name_de_DE": "Wille des roten Drachenschwarms", "name_zh_CN": "红龙的意志", "name_es_ES": "Voluntad del Vuelo Rojo", "name_ru_RU": "Воля рода красных драконов", "name_it_IT": "Volontà dello Stormo dei Draghi Rossi", "name_pt_PT": "Vontade da Revoada Vermelha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38080, "race_mask": 18446744073709551615, "desc": "Jormungar Slime Edition.", "pad2": "", "pad1": "", "pad0": "", "name": "Automated Weapon Coater", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7414, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9708, "buy_price": 48542, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0146000385284424, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Automated Weapon Coater", "name_ko_KR": "자동 무기 점액 형성기", "name_fr_FR": "Applicateur automatique pour armes", "name_de_DE": "Automatischer Waffenbeschichter", "name_zh_CN": "自动武器镀膜器", "name_es_ES": "Lubricante de armas automático", "name_ru_RU": "Автоматический зачехлитель оружия", "name_it_IT": "Potenziatore d'Armi Automatico", "name_pt_PT": "Lubrificador de Armas Automático", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38081, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scarab of Isanoth", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9743, "buy_price": 48719, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Scarab of Isanoth", "name_ko_KR": "이사노스의 스카라베", "name_fr_FR": "Scarabée d'Isanoth", "name_de_DE": "Skarabäus von Isanoth", "name_zh_CN": "伊萨诺斯甲虫", "name_es_ES": "Escarabajo de Isanoth", "name_ru_RU": "Скарабей Изанот", "name_it_IT": "Scarabeo di Isanoth", "name_pt_PT": "Escaravelho de Isanoth", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38212, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Death Knight's Anguish", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5849, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8711, "buy_price": 43558, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0108000040054321, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Death Knight's Anguish", "name_ko_KR": "죽음의 기사의 고뇌", "name_fr_FR": "Angoisse du chevalier de la mort", "name_de_DE": "Pein des Todesritters", "name_zh_CN": "死亡骑士的苦楚", "name_es_ES": "Angustia del caballero de la Muerte", "name_ru_RU": "Мука рыцаря смерти", "name_it_IT": "Angoscia del Cavaliere della Morte", "name_pt_PT": "Angústia do Cavaleiro da Morte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38213, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harbinger's Wrath", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7170, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 8743, "buy_price": 43717, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0145000219345093, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Harbinger's Wrath", "name_ko_KR": "선구자의 분노", "name_fr_FR": "Courroux d'annonciateur", "name_de_DE": "Zorn des Herolds", "name_zh_CN": "先驱者之怒", "name_es_ES": "Cólera del presagista", "name_ru_RU": "Гнев предвестника", "name_it_IT": "Ira dell'Araldo", "name_pt_PT": "Ira do Precursor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38257, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Strike of the Seas", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7049, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9880, "buy_price": 49400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.955299973487854, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Strike of the Seas", "name_ko_KR": "바다의 쐐기", "name_fr_FR": "Frappe des mers", "name_de_DE": "Schlag des Meeres", "name_zh_CN": "海洋的打击", "name_es_ES": "Golpe de los mares", "name_ru_RU": "Ударная волна", "name_it_IT": "Assalto dei Mari", "name_pt_PT": "Golpe dos Mares", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38258, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sailor's Knotted Charm", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7541, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9918, "buy_price": 49591, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sailor's Knotted Charm", "name_ko_KR": "선원의 매듭장식 부적", "name_fr_FR": "Nœud porte-bonheur de marin", "name_de_DE": "Glücksknoten des Matrosen", "name_zh_CN": "水手的绳结护符", "name_es_ES": "Talismán de nudo de marinero", "name_ru_RU": "Оберег морского узла", "name_it_IT": "Talismano Annodato del Marinaio", "name_pt_PT": "Patuá Nodoso do Marinheiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38259, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "First Mate's Pocketwatch", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9955, "buy_price": 49777, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "First Mate's Pocketwatch", "name_ko_KR": "일등항해사의 회중시계", "name_fr_FR": "Montre de gousset du second", "name_de_DE": "Taschenuhr des Ersten Maats", "name_zh_CN": "大副的怀表", "name_es_ES": "Reloj de bolsillo de contramaestre", "name_ru_RU": "Карманные часы первого помощника", "name_it_IT": "Orologio da Tasca del Primo Ufficiale", "name_pt_PT": "Relógio de Bolso do Imediato", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38287, "race_mask": 18446744073709551615, "desc": "It's definitely not half full.", "pad2": "", "pad1": "", "pad0": "", "name": "Empty Mug of Direbrew", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 100000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.018399953842163, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Empty Mug of Direbrew", "name_ko_KR": "빈 다이어브루 맥주잔", "name_fr_FR": "Chope de navrebière vide", "name_de_DE": "Leerer Düsterbräubecher", "name_zh_CN": "空的烈酒杯", "name_es_ES": "Jarra de cerveza temible vacía", "name_ru_RU": "Пустая кружка Худовара", "name_it_IT": "Boccale di Birra Nera Vuoto", "name_pt_PT": "Caneca Vazia de Cervatroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38288, "race_mask": 18446744073709551615, "desc": "Not very filling.", "pad2": "", "pad1": "", "pad0": "", "name": "Direbrew Hops", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7037, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 100000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0220999717712402, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Direbrew Hops", "name_ko_KR": "다이어브루 홉 열매", "name_fr_FR": "Houblon navrebière", "name_de_DE": "Düsterbräuhopfen", "name_zh_CN": "烈酒蛇麻草", "name_es_ES": "Lúpulo de cerveza temible", "name_ru_RU": "Пивные дрожжи Худовара", "name_it_IT": "Luppolo di Birranera", "name_pt_PT": "Lúpulo de Cervatroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38289, "race_mask": 18446744073709551615, "desc": "Perfect for bouncing off tables.", "pad2": "", "pad1": "", "pad0": "", "name": "Coren's Lucky Coin", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7222, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 100000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0256999731063843, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Coren's Lucky Coin", "name_ko_KR": "코렌의 행운 동전", "name_fr_FR": "Pièce porte-bonheur de Coren", "name_de_DE": "Corens Glücksmünze", "name_zh_CN": "科林的好运硬币", "name_es_ES": "Moneda de la suerte de Coren", "name_ru_RU": "Счастливая монетка Корена", "name_it_IT": "Moneta della Fortuna di Coren", "name_pt_PT": "Moeda da Sorte de Coren", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dark Iron Smoking Pipe", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6852, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 100000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0293999910354614, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Dark Iron Smoking Pipe", "name_ko_KR": "검은무쇠 담뱃대", "name_fr_FR": "Pipe fumante sombrefer", "name_de_DE": "Tabakspfeife aus Dunkeleisen", "name_zh_CN": "黑铁烟枪", "name_es_ES": "Pipa de fumar Hierro Negro", "name_ru_RU": "Курительная трубка клана Черного Железа", "name_it_IT": "Pipa dei Ferroscuro", "name_pt_PT": "Cachimbo Ferro Negro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38358, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcane Revitalizer", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9847999811172485, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Arcane Revitalizer", "name_ko_KR": "비전 활력기", "name_fr_FR": "Revitalisant arcanique", "name_de_DE": "Arkaner Revitalisierer", "name_zh_CN": "奥术能量激活器", "name_es_ES": "Revitalizador Arcano", "name_ru_RU": "Магический оживитель", "name_it_IT": "Rivitalizzante Arcano", "name_pt_PT": "Revitalizador Arcano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblin Repetition Reducer", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9884999990463257, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Goblin Repetition Reducer", "name_ko_KR": "고블린 작업 감량기", "name_fr_FR": "Réducteur de répétition gobelin", "name_de_DE": "Goblinwiederkehrreduzierer", "name_zh_CN": "地精循环节流器", "name_es_ES": "Reductor de repetición goblin", "name_ru_RU": "Гоблинский гаситель повторений", "name_it_IT": "Riduttore di Ripetizioni dei Goblin", "name_pt_PT": "Redutor de Repetição Goblínico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bounty Procurement Enhancer", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.014299988746643, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Bounty Procurement Enhancer", "name_ko_KR": "현상금 획득률 향상기", "name_fr_FR": "Améliorateur de butin", "name_de_DE": "Belohnungsbeschaffungsverstärker", "name_zh_CN": "赏金获取增强器", "name_es_ES": "Potenciador de obtención de la cosecha", "name_ru_RU": "Увеличитель получаемой награды", "name_it_IT": "Potenziatore della Raccolta del Bottino", "name_pt_PT": "Amplificador de Obtenção de Recompensa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38588, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994999766349792, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 38589, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38589, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0032000541687012, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 38588, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38674, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Harvester's Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16250, "buy_price": 65000, "vendor_stack": 1, "unk_2": 0.0005000000237487257, "unk_1": 0.9739000201225281, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Soul Harvester's Charm", "name_ko_KR": "영혼 착취자의 부적", "name_fr_FR": "Charme de moissonneur d’âmes", "name_de_DE": "Amulett des Seelenernters", "name_zh_CN": "灵魂收割者的护符", "name_es_ES": "Talismán de cosechador de almas", "name_ru_RU": "Оберег Собирателя душ", "name_it_IT": "Talismano del Mietitore d'Anime", "name_pt_PT": "Patuá do Ceifalmas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38675, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Signet of the Dark Brotherhood", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16250, "buy_price": 65000, "vendor_stack": 1, "unk_2": 0.0005000000237487257, "unk_1": 0.9775999784469604, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Signet of the Dark Brotherhood", "name_ko_KR": "어둠의 결사단 인장", "name_fr_FR": "Chevalière de la sombre fraternité", "name_de_DE": "Siegel der dunklen Bruderschaft", "name_zh_CN": "黑暗兄弟会徽记", "name_es_ES": "Sello de hermandad oscura", "name_ru_RU": "Печатка Темного братства", "name_it_IT": "Anello con Sigillo della Fratellanza Oscura", "name_pt_PT": "Sinete da Irmandade Sombria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38760, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mendicant's Charm", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7742, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9778, "buy_price": 48892, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219000577926636, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mendicant's Charm", "name_ko_KR": "탁발승의 부적", "name_fr_FR": "Charme de mendiant", "name_de_DE": "Glücksbringer des Bettelmönchs", "name_zh_CN": "修行者的护符", "name_es_ES": "Talismán de mendigo", "name_ru_RU": "Оберег монаха", "name_it_IT": "Talismano del Mendicante", "name_pt_PT": "Patuá do Mendicante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38761, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talon of Hatred", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7742, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9813, "buy_price": 49069, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255999565124512, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Talon of Hatred", "name_ko_KR": "증오의 갈퀴발톱", "name_fr_FR": "Serre de la haine", "name_de_DE": "Klaue des Hasses", "name_zh_CN": "仇恨之爪", "name_es_ES": "Garfa de Odio", "name_ru_RU": "Коготь ненависти", "name_it_IT": "Artiglio dell'Odio", "name_pt_PT": "Garra do Ódio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38762, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of Bloody Fire", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7742, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9849, "buy_price": 49246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0292999744415283, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Insignia of Bloody Fire", "name_ko_KR": "새빨간 불길의 휘장", "name_fr_FR": "Insigne du feu sanglant", "name_de_DE": "Insigne des blutigen Feuers", "name_zh_CN": "血火徽记", "name_es_ES": "Insignia de fuego sangriento", "name_ru_RU": "Знак кровавого пекла", "name_it_IT": "Fregio del Fuoco Insanguinato", "name_pt_PT": "Insígnia do Fogo Sangrento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Futuresight Rune", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7067, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10973, "buy_price": 54868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0328999757766724, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Futuresight Rune", "name_ko_KR": "미래 예견의 룬", "name_fr_FR": "Rune de la vision future", "name_de_DE": "Rune des Zukunftsblicks", "name_zh_CN": "预见符文", "name_es_ES": "Runa futurvista", "name_ru_RU": "Руна предвидения", "name_it_IT": "Runa del Futuro", "name_pt_PT": "Runa da Visão do Futuro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38764, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Finite Variation", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6267, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11012, "buy_price": 55064, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0365999937057495, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rune of Finite Variation", "name_ko_KR": "유한한 다양성의 룬", "name_fr_FR": "Rune de la variation finie", "name_de_DE": "Rune der endlichen Variationen", "name_zh_CN": "有限变化符文", "name_es_ES": "Runa de variación finita", "name_ru_RU": "Руна конечной вариации", "name_it_IT": "Runa della Variazione Limitata", "name_pt_PT": "Runa da Variação Finita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 38765, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Infinite Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11052, "buy_price": 55261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0403000116348267, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rune of Infinite Power", "name_ko_KR": "무한한 힘의 룬", "name_fr_FR": "Rune du pouvoir infini", "name_de_DE": "Rune der unendlichen Macht", "name_zh_CN": "无尽能量符文", "name_es_ES": "Runa de poder infinito", "name_ru_RU": "Руна беспредельной силы", "name_it_IT": "Runa della Potenza Infinita", "name_pt_PT": "Runa do Poder Infinito", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 39229, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Embrace of the Spider", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0108000040054321, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Embrace of the Spider", "name_ko_KR": "거미의 은총", "name_fr_FR": "Étreinte de l'araignée", "name_de_DE": "Umarmung der Spinne", "name_zh_CN": "蜘蛛的拥抱", "name_es_ES": "Abrazo de la araña", "name_ru_RU": "Облачение Паука", "name_it_IT": "Abbraccio del Ragno", "name_pt_PT": "Abraço da Aranha", "on_use": false, "id_encounter": 1603, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 39257, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Loatheb's Shadow", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9664000272750854, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Loatheb's Shadow", "name_ko_KR": "로데브의 그림자", "name_fr_FR": "Ombre d'Horreb", "name_de_DE": "Loathebs Schatten", "name_zh_CN": "洛欧塞布之影", "name_es_ES": "Sombra de Loatheb", "name_ru_RU": "Тень Лотхиба", "name_it_IT": "Ombra di Loatheb", "name_pt_PT": "Sombra de Repugnaz", "on_use": true, "id_encounter": 1606, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 39292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Repelling Charge", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0478999614715576, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Repelling Charge", "name_ko_KR": "반발력", "name_fr_FR": "Charge repoussante", "name_de_DE": "Abwehrangriff", "name_zh_CN": "退击护符", "name_es_ES": "Carga repelente", "name_ru_RU": "Опровергатель", "name_it_IT": "Carica Repellente", "name_pt_PT": "Carga de Ricochete", "on_use": true, "id_encounter": 1612, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 39388, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spirit-World Glass", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Spirit-World Glass", "name_ko_KR": "영혼 세계의 거울", "name_fr_FR": "Verre du monde des esprits", "name_de_DE": "Geisterweltglas", "name_zh_CN": "灵魂世界之镜", "name_es_ES": "Cristal del mundo de los espíritus", "name_ru_RU": "Стеклышко духовного мира", "name_it_IT": "Specchio dello Spirito del Mondo", "name_pt_PT": "Berloque do Mundo dos Espíritos", "on_use": true, "id_encounter": 1608, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 39811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badge of the Infiltrator", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7188, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9565, "buy_price": 47825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9995999932289124, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Badge of the Infiltrator", "name_ko_KR": "침투요원의 휘장", "name_fr_FR": "Ecusson de l'infiltré", "name_de_DE": "Abzeichen des Spitzels", "name_zh_CN": "渗透者徽章", "name_es_ES": "Distintivo de infiltrado", "name_ru_RU": "Знак засланца", "name_it_IT": "Distintivo dell'Infiltrato", "name_pt_PT": "Distintivo do Infiltrador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 39819, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodbinder's Runestone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5938, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 53770, "buy_price": 215082, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Bloodbinder's Runestone", "name_ko_KR": "혈술사 마법석", "name_fr_FR": "Pierre runique de lieur de sang", "name_de_DE": "Runenstein des Blutbinders", "name_zh_CN": "缚血者的符文石", "name_es_ES": "Piedra rúnica de vinculasangre", "name_ru_RU": "Рунический камень кровоплета", "name_it_IT": "Pietra Runica del Legasangue", "name_pt_PT": "Pedra Rúnica do Vinculador Sanguíneo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 39821, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritist's Focus", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9211, "buy_price": 46059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9627000093460083, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Spiritist's Focus", "name_ko_KR": "영혼사의 집중룬", "name_fr_FR": "Focalisateur de spirite", "name_de_DE": "Fokus des Spiritisten", "name_zh_CN": "灵魂师的焦点", "name_es_ES": "Enfoque de espiritista", "name_ru_RU": "Средоточие медиума", "name_it_IT": "Focalizzatore dello Spiritista", "name_pt_PT": "Concentração do Espiritualista", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 39889, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of Argent Fury", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9743, "buy_price": 48715, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0182000398635864, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Horn of Argent Fury", "name_ko_KR": "은빛 분노의 뿔피리", "name_fr_FR": "Cor de la fureur d'Argent", "name_de_DE": "Horn des Argentumfurors", "name_zh_CN": "银色怒火号角", "name_es_ES": "Cuerno de furia Argenta", "name_ru_RU": "Рог серебряного неистовства", "name_it_IT": "Corno delle Furie d'Argento", "name_pt_PT": "Chifre da Fúria Argêntea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40255, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dying Curse", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9702000021934509, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Dying Curse", "name_ko_KR": "죽음의 저주", "name_fr_FR": "Malédiction du mourant", "name_de_DE": "Letzter Fluch", "name_zh_CN": "消逝的诅咒", "name_es_ES": "Maldición de muerte", "name_ru_RU": "Исчезающее проклятие", "name_it_IT": "Maledizione Morente", "name_pt_PT": "Praga Agonizante", "on_use": false, "id_encounter": 1603, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40256, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grim Toll", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5845, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739000201225281, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Grim Toll", "name_ko_KR": "냉혹한 희생", "name_fr_FR": "Le glas sinistre", "name_de_DE": "Grimmiger Tribut", "name_zh_CN": "死亡之钟", "name_es_ES": "Tañido siniestro", "name_ru_RU": "Мрачный перезвон", "name_it_IT": "Pedaggio Torvo", "name_pt_PT": "Badalada Sinistra", "on_use": false, "id_encounter": 1603, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40257, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defender's Code", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Defender's Code", "name_ko_KR": "수호병의 규범", "name_fr_FR": "Code du défenseur", "name_de_DE": "Kodex des Verteidigers", "name_zh_CN": "防御者的准则", "name_es_ES": "Código del defensor", "name_ru_RU": "Кодекс защитника", "name_it_IT": "Codice del Difensore", "name_pt_PT": "Código do Defensor", "on_use": true, "id_encounter": 1603, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40258, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forethought Talisman", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Forethought Talisman", "name_ko_KR": "선견의 부적", "name_fr_FR": "Talisman de prévoyance", "name_de_DE": "Talisman der Vorsehung", "name_zh_CN": "谋划护符", "name_es_ES": "Talismán de previsión", "name_ru_RU": "Талисман предусмотрительности", "name_it_IT": "Talismano della Precauzione", "name_pt_PT": "Talismã da Premeditação", "on_use": false, "id_encounter": 1603, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40354, "race_mask": 18446744073709551615, "desc": "Everything from silvered knives to holy water.", "pad2": "", "pad1": "", "pad0": "", "name": "Monster Slayer's Kit", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6203, "buy_price": 24813, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9923999905586243, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Monster Slayer's Kit", "name_ko_KR": "괴물 학살자의 도구", "name_fr_FR": "Trousse de tueur de monstre", "name_de_DE": "Monsterjägerausrüstung", "name_zh_CN": "要你命3000", "name_es_ES": "Juego de caza de monstruos", "name_ru_RU": "Набор истребителя монстров", "name_it_IT": "Kit dell'Ammazzamostri", "name_pt_PT": "Kit do Mata-monstros", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40371, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bandit's Insignia", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Bandit's Insignia", "name_ko_KR": "산적의 표장", "name_fr_FR": "Insigne de bandit", "name_de_DE": "Banditeninsigne", "name_zh_CN": "歹徒的徽记", "name_es_ES": "Insignia de bandido", "name_ru_RU": "Знак отличия Бандита", "name_it_IT": "Fregio del Bandito", "name_pt_PT": "Insígnia do Bandido", "on_use": false, "id_encounter": 1614, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40372, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Repulsion", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Repulsion", "name_ko_KR": "격퇴의 룬", "name_fr_FR": "Rune de répulsion", "name_de_DE": "Rune des Rückstoßes", "name_zh_CN": "排斥符文", "name_es_ES": "Runa de repulsión", "name_ru_RU": "Руна отражения", "name_it_IT": "Runa della Repulsione", "name_pt_PT": "Runa de Repulsão", "on_use": true, "id_encounter": 1614, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40373, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Extract of Necromantic Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Extract of Necromantic Power", "name_ko_KR": "강령술 추출물", "name_fr_FR": "Extrait de pouvoir nécromantique", "name_de_DE": "Extrakt nekromantischer Macht", "name_zh_CN": "通灵能量精粹", "name_es_ES": "Extracto de poder nigromántico", "name_ru_RU": "Экстракт некромантского могущества", "name_it_IT": "Estratto di Potenza Negromantica", "name_pt_PT": "Extrato de Poder Necromântico", "on_use": false, "id_encounter": 1614, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40382, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul of the Dead", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0480999946594238, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Soul of the Dead", "name_ko_KR": "망자의 영혼", "name_fr_FR": "Âme des morts", "name_de_DE": "Seele der Toten", "name_zh_CN": "亡者之魂", "name_es_ES": "Alma de los muertos", "name_ru_RU": "Душа умершего", "name_it_IT": "Anima dei Morti", "name_pt_PT": "Alma dos Mortos", "on_use": false, "id_encounter": 1614, "id_journal_instance": 754, "id_map": 533, "instance_type": 2}, {"id": 40430, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Majestic Dragon Figurine", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0037000179290771, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Majestic Dragon Figurine", "name_ko_KR": "웅장한 용 조각상", "name_fr_FR": "Figurine de dragon majestueux", "name_de_DE": "Majestätische Drachenstatuette", "name_zh_CN": "巨龙雕像", "name_es_ES": "Figurilla de dragón majestuosa", "name_ru_RU": "Величественная статуэтка дракона", "name_it_IT": "Statuetta Ieratica del Drago", "name_pt_PT": "Estatueta do Dragão Majestoso", "on_use": false, "id_encounter": 1616, "id_journal_instance": 755, "id_map": 615, "instance_type": 2}, {"id": 40431, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fury of the Five Flights", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0073000192642212, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Fury of the Five Flights", "name_ko_KR": "다섯 용군단의 분노", "name_fr_FR": "Fureur des cinq vols", "name_de_DE": "Furor der fünf Schwärme", "name_zh_CN": "五色巨龙之怒", "name_es_ES": "Furia de los cinco grupos", "name_ru_RU": "Неистовство пяти стай", "name_it_IT": "Furia dei Cinque Stormi", "name_pt_PT": "Fúria das Cinco Revoadas", "on_use": false, "id_encounter": 1616, "id_journal_instance": 755, "id_map": 615, "instance_type": 2}, {"id": 40432, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Illustration of the Dragon Soul", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0110000371932983, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Illustration of the Dragon Soul", "name_ko_KR": "용의 영혼 그림", "name_fr_FR": "Représentation de l'Âme des dragons", "name_de_DE": "Illustration der Drachenseele", "name_zh_CN": "龙魂图典", "name_es_ES": "Ilustración del Alma de dragón", "name_ru_RU": "Изображение Души Дракона", "name_it_IT": "Immagine dell'Anima del Drago", "name_pt_PT": "Gravura da Alma Dragônica", "on_use": false, "id_encounter": 1616, "id_journal_instance": 755, "id_map": 615, "instance_type": 2}, {"id": 40476, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9519000053405762, "flags_1": 557056, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 40477, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Alliance", "name_ko_KR": "얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance", "name_de_DE": "Insigne der Allianz", "name_zh_CN": "联盟徽记", "name_es_ES": "Insignia de la Alianza", "name_ru_RU": "Знак различия Альянса", "name_it_IT": "Fregio dell'Alleanza", "name_pt_PT": "Insígnia da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40477, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9555000066757202, "flags_1": 557056, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 40476, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Horde", "name_ko_KR": "호드 계급장", "name_fr_FR": "Insigne de la Horde", "name_de_DE": "Insigne der Horde", "name_zh_CN": "部落徽记", "name_es_ES": "Insignia de la Horda", "name_ru_RU": "Знак различия Орды", "name_it_IT": "Fregio dell'Orda", "name_pt_PT": "Insígnia da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40483, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Scourge", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0005000000237487257, "unk_1": 0.9775999784469604, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Insignia of the Scourge", "name_ko_KR": "스컬지 계급장", "name_fr_FR": "Insigne du Fléau", "name_de_DE": "Insigne der Geißel", "name_zh_CN": "天灾徽记", "name_es_ES": "Insignia de la Plaga", "name_ru_RU": "Знак Плети", "name_it_IT": "Fregio del Flagello", "name_pt_PT": "Insígnia do Flagelo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40492, "race_mask": 18446744073709551615, "desc": "A crusading knight will always heed this blessed horn's clarion call.", "pad2": "", "pad1": "", "pad0": "", "name": "Argent War Horn", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0370999574661255, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Argent War Horn", "name_ko_KR": "은빛 전쟁 뿔피리", "name_fr_FR": "Cor de guerre de l'Aube d'argent", "name_de_DE": "Argentumkriegshorn", "name_zh_CN": "银色战斗号角", "name_es_ES": "Cuerno de guerra Argenta", "name_ru_RU": "Серебряный боевой рог", "name_it_IT": "Corno da Guerra d'Argento", "name_pt_PT": "Trompa de Guerra Argêntea", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Norgannon", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4286, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120536, "buy_price": 482145, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0332000255584717, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mark of Norgannon", "name_ko_KR": "노르간논의 징표", "name_fr_FR": "Marque de Norgannon", "name_de_DE": "Mal des Norgannon", "name_zh_CN": "诺甘农的印记", "name_es_ES": "Marca de Norgannon", "name_ru_RU": "Знак Норганнона", "name_it_IT": "Marchio di Norgannon", "name_pt_PT": "Marca de Norgannon", "on_use": true, "id_encounter": 1617, "id_journal_instance": 756, "id_map": 616, "instance_type": 2}, {"id": 40532, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Living Ice Crystals", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120536, "buy_price": 482145, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0369000434875488, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Living Ice Crystals", "name_ko_KR": "살아있는 얼음 수정", "name_fr_FR": "Cristaux de glace vivante", "name_de_DE": "Lebendige Eiskristalle", "name_zh_CN": "流冰之晶", "name_es_ES": "Cristales de hielo vivos", "name_ru_RU": "Кристаллы живого льда", "name_it_IT": "Cristalli di Ghiaccio Viventi", "name_pt_PT": "Cristais de Gelo Vivos", "on_use": true, "id_encounter": 1617, "id_journal_instance": 756, "id_map": 616, "instance_type": 2}, {"id": 40593, "race_mask": 18446744073709551615, "desc": "A blessed tome filled with the words of the Argent's Dawn's wisest.", "pad2": "", "pad1": "", "pad0": "", "name": "Argent Tome", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9664999842643738, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Argent Tome", "name_ko_KR": "은빛 고서", "name_fr_FR": "Tome d'argent", "name_de_DE": "Argentumfoliant", "name_zh_CN": "银色宝典", "name_es_ES": "Escrito Argenta", "name_ru_RU": "Серебряный том", "name_it_IT": "Tomo d'Argento", "name_pt_PT": "Tomo Argênteo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40601, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Argent Dawn Banner", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0224000215530396, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Argent Dawn Banner", "name_ko_KR": "은빛 여명회 깃발", "name_fr_FR": "Bannière de l'Aube d'argent", "name_de_DE": "Banner der Argentumdämmerung", "name_zh_CN": "银色黎明战旗", "name_es_ES": "Estandarte de El Alba Argenta", "name_ru_RU": "Знамя Серебряного Рассвета", "name_it_IT": "Stendardo dell'Alba d'Argento", "name_pt_PT": "Estandarte da Aurora Argêntea", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40682, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sundial of the Exiled", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1540800, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9520000219345093, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sundial of the Exiled", "name_ko_KR": "추방자의 해시계", "name_fr_FR": "Cadran solaire de l'exilé", "name_de_DE": "Sonnenuhr des Exilierten", "name_zh_CN": "流放者的日晷", "name_es_ES": "Reloj de sol del Exiliado", "name_ru_RU": "Солнечные часы изгнанника", "name_it_IT": "Meridiana dell'Esiliato", "name_pt_PT": "Relógio Solar do Exilado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valor Medal of the First War", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1546800, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9556999802589417, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Valor Medal of the First War", "name_ko_KR": "1차 대전쟁 무공 훈장", "name_fr_FR": "Médaille du courage de la Première guerre", "name_de_DE": "Ehrenmedaille des Ersten Krieges", "name_zh_CN": "第一次大战勇气勋章", "name_es_ES": "Medalla al valor de la Primera Guerra", "name_ru_RU": "Медаль Первой войны \"За отвагу\"", "name_it_IT": "Medaglia al Valore della Prima Guerra", "name_pt_PT": "Medalha de Bravura da Primeira Guerra", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40684, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Truth", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1552600, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9592999815940857, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Truth", "name_ko_KR": "진실의 거울", "name_fr_FR": "Miroir de vérité", "name_de_DE": "Spiegel der Wahrheit", "name_zh_CN": "真实之镜", "name_es_ES": "Espejo de verdad", "name_ru_RU": "Правдивое зеркальце", "name_it_IT": "Specchio della Verità", "name_pt_PT": "Espelho da Verdade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Egg of Mortal Essence", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1558600, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9629999995231628, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "The Egg of Mortal Essence", "name_ko_KR": "필멸의 정수 알", "name_fr_FR": "L'œuf d'essence mortelle", "name_de_DE": "Ei der sterblichen Essenz", "name_zh_CN": "精魄", "name_es_ES": "El huevo de Esencia mortal", "name_ru_RU": "Яйцо смертной сущности", "name_it_IT": "Uovo dell'Essenza Mortale", "name_pt_PT": "O Ovo da Essência Mortal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40767, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sonic Booster", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67949, "buy_price": 271798, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962999820709229, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 15, "req_skill": 2504, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Sonic Booster", "name_ko_KR": "음속 부스터", "name_fr_FR": "Survolteur sonique", "name_de_DE": "Überschallbooster", "name_zh_CN": "音波增压器", "name_es_ES": "Propulsor sónico", "name_ru_RU": "Усилитель звука", "name_it_IT": "Amplificatore Sonico", "name_pt_PT": "Foguete Sônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 40865, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Noise Machine", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67949, "buy_price": 271798, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.014799952507019, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 15, "req_skill": 2504, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Noise Machine", "name_ko_KR": "소음기", "name_fr_FR": "Machine à bruit", "name_de_DE": "Lärmmaschine", "name_zh_CN": "噪声机", "name_es_ES": "Máquina de ruido", "name_ru_RU": "Генератор шума", "name_it_IT": "Generatore Frastuonico", "name_pt_PT": "Máquina de Ruídos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 41121, "race_mask": 18446744073709551615, "desc": "It's safe!", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Lightning Generator", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2504, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 24, "inv_type": 12, "quality": 3, "name_en_US": "Gnomish Lightning Generator", "name_ko_KR": "노움 번개 생성기", "name_fr_FR": "Générateur d'éclairs gnome", "name_de_DE": "Gnomischer Blitzgenerator", "name_zh_CN": "侏儒闪电发生器", "name_es_ES": "Generador de relámpagos gnómico", "name_ru_RU": "Гномский генератор молний", "name_it_IT": "Generatore di Fulmini Gnomesco", "name_pt_PT": "Gerador de Raios Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 41587, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Celerity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9556000232696533, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Celerity", "name_ko_KR": "지휘관의 민첩함", "name_fr_FR": "Célérité de maître de guerre", "name_de_DE": "Schnelligkeit des Kampfmeisters", "name_zh_CN": "战斗大师的神速", "name_es_ES": "Celeridad de maestro de batalla", "name_ru_RU": "Проворство военачальника", "name_it_IT": "Celerità del Maestro di Guerra", "name_pt_PT": "Celeridade do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 41588, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Aggression", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9592999815940857, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Aggression", "name_ko_KR": "지휘관의 공격성", "name_fr_FR": "Agression de maître de guerre", "name_de_DE": "Aggression des Kampfmeisters", "name_zh_CN": "战斗大师的侵攻", "name_es_ES": "Agresión de maestro de batalla", "name_ru_RU": "Агрессивность военачальника", "name_it_IT": "Aggressione del Maestro di Guerra", "name_pt_PT": "Agressão do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 41589, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Resolve", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9629999995231628, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Resolve", "name_ko_KR": "지휘관의 결의", "name_fr_FR": "Résolution de maître de guerre", "name_de_DE": "Entschlossenheit des Kampfmeisters", "name_zh_CN": "战斗大师的决断", "name_es_ES": "Resolución de maestro de batalla", "name_ru_RU": "Решимость военачальника", "name_it_IT": "Risolutezza del Maestro di Guerra", "name_pt_PT": "Resolução do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 41590, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Courage", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.96670001745224, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Courage", "name_ko_KR": "지휘관의 용기", "name_fr_FR": "Courage de maître de guerre", "name_de_DE": "Mut des Kampfmeisters", "name_zh_CN": "战斗大师的勇气", "name_es_ES": "Coraje de maestro de batalla", "name_ru_RU": "Отвага военачальника", "name_it_IT": "Coraggio del Maestro di Guerra", "name_pt_PT": "Coragem do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42122, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926000237464905, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 42123, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42123, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962999820709229, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 42122, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42124, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 42126, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42126, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0073000192642212, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 42124, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42128, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Hostility", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041200041770935, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Hostility", "name_ko_KR": "지휘관의 적개심", "name_fr_FR": "Hostilité de maître de guerre", "name_de_DE": "Feindseligkeit des Kampfmeisters", "name_zh_CN": "战斗大师的抗争", "name_es_ES": "Hostilidad de maestro de batalla", "name_ru_RU": "Злость Военачальника", "name_it_IT": "Ostilità del Maestro di Guerra", "name_pt_PT": "Hostilidade do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42129, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Accuracy", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0448999404907227, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Accuracy", "name_ko_KR": "지휘관의 정확성", "name_fr_FR": "Précision de maître de guerre", "name_de_DE": "Zielgenauigkeit des Kampfmeisters", "name_zh_CN": "战斗大师的精确", "name_es_ES": "Precisión de maestro de batalla", "name_ru_RU": "Меткость Военачальника", "name_it_IT": "Accuratezza del Maestro di Guerra", "name_pt_PT": "Exatidão do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42130, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Avidity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0484999418258667, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Avidity", "name_ko_KR": "지휘관의 열의", "name_fr_FR": "Avidité de maître de guerre", "name_de_DE": "Leidenschaft des Kampfmeisters", "name_zh_CN": "战斗大师的渴望", "name_es_ES": "Avidez de maestro de batalla", "name_ru_RU": "Алчность Военачальника", "name_it_IT": "Avidità del Maestro di Guerra", "name_pt_PT": "Avidez do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42131, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Conviction", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520999789237976, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Conviction", "name_ko_KR": "지휘관의 신념", "name_fr_FR": "Conviction de maître de guerre", "name_de_DE": "Überzeugung des Kampfmeisters", "name_zh_CN": "战斗大师的定罪", "name_es_ES": "Convicción de maestro de batalla", "name_ru_RU": "Убежденность Военачальника", "name_it_IT": "Convinzione del Maestro di Guerra", "name_pt_PT": "Convicção do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Bravery", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Bravery", "name_ko_KR": "지휘관의 용감함", "name_fr_FR": "Bravoure de maître de guerre", "name_de_DE": "Tapferkeit des Kampfmeisters", "name_zh_CN": "战斗大师的勇敢", "name_es_ES": "Valentía de maestro de batalla", "name_ru_RU": "Смелость Военачальника", "name_it_IT": "Valore del Maestro di Guerra", "name_pt_PT": "Bravura do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42133, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Fury", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9593999981880188, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Fury", "name_ko_KR": "지휘관의 격노", "name_fr_FR": "Fureur de maître de guerre", "name_de_DE": "Furor des Kampfmeisters", "name_zh_CN": "战斗大师的狂怒", "name_es_ES": "Furia de maestro de batalla", "name_ru_RU": "Ярость военачальника", "name_it_IT": "Furia del Maestro di Guerra", "name_pt_PT": "Fúria do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42134, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Precision", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.963100016117096, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Precision", "name_ko_KR": "지휘관의 정밀함", "name_fr_FR": "Précision de maître de guerre", "name_de_DE": "Präzision des Kampfmeisters", "name_zh_CN": "战斗大师的精确", "name_es_ES": "Exactitud de maestro de batalla", "name_ru_RU": "Точность военачальника", "name_it_IT": "Precisione del Maestro di Guerra", "name_pt_PT": "Precisão do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42135, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Vivacity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9667999744415283, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Vivacity", "name_ko_KR": "지휘관의 생기", "name_fr_FR": "Vivacité de maître de guerre", "name_de_DE": "Lebhaftigkeit des Kampfmeisters", "name_zh_CN": "战斗大师的活力", "name_es_ES": "Vivacidad de maestro de batalla", "name_ru_RU": "Бодрость военачальника", "name_it_IT": "Vivacità del Maestro di Guerra", "name_pt_PT": "Vivacidade do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42136, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Rage", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9704999923706055, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Rage", "name_ko_KR": "지휘관의 분노", "name_fr_FR": "Rage de maître de guerre", "name_de_DE": "Wut des Kampfmeisters", "name_zh_CN": "战斗大师的怒火", "name_es_ES": "Ira de maestro de batalla", "name_ru_RU": "Неистовство военачальника", "name_it_IT": "Rabbia del Maestro di Guerra", "name_pt_PT": "Raiva do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42137, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battlemaster's Ruination", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9740999937057495, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Battlemaster's Ruination", "name_ko_KR": "지휘관의 몰락", "name_fr_FR": "Saccage de maître de guerre", "name_de_DE": "Ruin des Kampfmeisters", "name_zh_CN": "战斗大师的毁灭", "name_es_ES": "Ruina de maestro de batalla", "name_ru_RU": "Опустошение военачальника", "name_it_IT": "Rovina del Maestro di Guerra", "name_pt_PT": "Ruína do Mestre de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42341, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Ruby Hare", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9668999910354614, "flags_1": 524352, "flags_2": 90112, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 3307, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2522, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Ruby Hare", "name_ko_KR": "조각상 - 루비 토끼", "name_fr_FR": "Figurine de lièvre de rubis", "name_de_DE": "Figur - Rubinhase", "name_zh_CN": "雕像 - 红宝石野兔", "name_es_ES": "Figurilla: liebre de rubí", "name_ru_RU": "Статуэтка рубинового зайца", "name_it_IT": "Statuetta - Lepre di Rubino", "name_pt_PT": "Estatueta - Lebre de Rubi", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42395, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Twilight Serpent", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3818, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 3602, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2522, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Twilight Serpent", "name_ko_KR": "조각상 - 황혼뱀", "name_fr_FR": "Figurine de serpent crépusculaire", "name_de_DE": "Figur - Zwielichtschlange", "name_zh_CN": "雕像 - 暮光蛇", "name_es_ES": "Figurilla: serpiente Crepuscular", "name_ru_RU": "Статуэтка сумеречного змея", "name_it_IT": "Statuetta - Serpente del Crepuscolo", "name_pt_PT": "Estatueta - Serpente do Ocaso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Sapphire Owl", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3818, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0370999574661255, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 5234, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2522, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Sapphire Owl", "name_ko_KR": "조각상 - 사파이어 올빼미", "name_fr_FR": "Figurine de chouette de saphir", "name_de_DE": "Figur - Saphireule", "name_zh_CN": "雕像 - 蓝宝石猫头鹰", "name_es_ES": "Figurilla: búho de zafiro", "name_ru_RU": "Статуэтка сапфировой совы", "name_it_IT": "Statuetta - Gufo di Zaffiro", "name_pt_PT": "Estatueta - Coruja de Safira", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42418, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Emerald Boar", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818999767303467, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 3764, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2522, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Emerald Boar", "name_ko_KR": "조각상 - 에메랄드 멧돼지", "name_fr_FR": "Figurine de sanglier d'émeraude", "name_de_DE": "Figur - Smaragdeber", "name_zh_CN": "雕像 - 翡翠野猪", "name_es_ES": "Figurilla: jabalí de esmeralda", "name_ru_RU": "Статуэтка изумрудного вепря", "name_it_IT": "Statuetta - Cinghiale di Smeraldo", "name_pt_PT": "Estatueta - Javali de Esmeralda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42987, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Greatness", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Greatness", "name_ko_KR": "다크문 카드: 위대함", "name_fr_FR": "Carte de Sombrelune : Grandeur", "name_de_DE": "Dunkelmond-Karte: Grandeur", "name_zh_CN": "暗月卡片:伟大", "name_es_ES": "Naipe de la Luna Negra: Grandeza", "name_ru_RU": "Карта Новолуния: Величие", "name_it_IT": "Carta di Lunacupa: Superiorità", "name_pt_PT": "Carta de Negraluna: Grandiosidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42988, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Illusion", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6746, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0002000331878662, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Illusion", "name_ko_KR": "다크문 카드: 환영", "name_fr_FR": "Carte de Sombrelune : Illusion", "name_de_DE": "Dunkelmond-Karte: Illusion", "name_zh_CN": "暗月卡片:幻象", "name_es_ES": "Naipe de la Luna Negra: Ilusión", "name_ru_RU": "Карта Новолуния: Иллюзия", "name_it_IT": "Carta di Lunacupa: Illusione", "name_pt_PT": "Carta de Negraluna: Ilusão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42989, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Berserker!", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7937, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0039000511169434, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Berserker!", "name_ko_KR": "다크문 카드: 광전사", "name_fr_FR": "Carte de Sombrelune : Berserker !", "name_de_DE": "Dunkelmond-Karte: Berserker!", "name_zh_CN": "暗月卡片:狂暴!", "name_es_ES": "Naipe de la Luna Negra: ¡Rabioso!", "name_ru_RU": "Карта Новолуния: Неистовство!", "name_it_IT": "Carta di Lunacupa: Berserker!", "name_pt_PT": "Carta de Negraluna: Berserker!", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42990, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Death", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6746, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007599949836731, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Death", "name_ko_KR": "다크문 카드: 죽음", "name_fr_FR": "Carte de Sombrelune : Mort", "name_de_DE": "Dunkelmond-Karte: Tod", "name_zh_CN": "暗月卡片:死亡", "name_es_ES": "Naipe de la Luna Negra: Muerte", "name_ru_RU": "Карта Новолуния: Смерть", "name_it_IT": "Carta di Lunacupa: Morte", "name_pt_PT": "Carta de Negraluna: Morte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42991, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Swift Hand of Justice", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 7500000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.011299967765808, "flags_1": 134217728, "flags_2": 155648, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Swift Hand of Justice", "name_ko_KR": "신속한 정의의 손길", "name_fr_FR": "Main de justice rapide", "name_de_DE": "Schnelle Hand der Gerechtigkeit", "name_zh_CN": "迅捷的正义之手", "name_es_ES": "Mano presta de justicia", "name_ru_RU": "Стремительная рука правосудия", "name_it_IT": "Rapida Mano della Giustizia", "name_pt_PT": "Mão Veloz da Justiça", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 42992, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Discerning Eye of the Beast", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 7500000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0148999691009521, "flags_1": 134217728, "flags_2": 155648, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Discerning Eye of the Beast", "name_ko_KR": "번뜩이는 괴수의 눈", "name_fr_FR": "Oeil de la Bête perspicace", "name_de_DE": "Scharfes Auge der Bestie", "name_zh_CN": "敏锐的比斯巨兽之眼", "name_es_ES": "Ojo de la bestia exigente", "name_ru_RU": "Прозорливый Глаз Зверя", "name_it_IT": "Occhio Perspicace della Bestia", "name_pt_PT": "Olho Penetrante da Fera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43555, "race_mask": 18446744073709551615, "desc": "A valuable member of the Pa'Troll!", "pad2": "", "pad1": "", "pad0": "", "name": "Deputy Pa'trolla Badge", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 0, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.007599949836731, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Deputy Pa'trolla Badge", "name_ko_KR": "순찰 부관의 휘장", "name_fr_FR": "Ecusson de l'adjoint Pa'trolla", "name_de_DE": "Hilfssheriffstern der Pa'Trollie", "name_zh_CN": "代理巡逻队长徽章", "name_es_ES": "Distintivo del diputado Pa'Trulla", "name_ru_RU": "Знак делегата Па'тролла", "name_it_IT": "Distintivo da Vicesceriffo della Pattuglia", "name_pt_PT": "Insígnia do Subdelegado Pa'tott", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43573, "race_mask": 18446744073709551615, "desc": "They shimmer with sadness and woe.", "pad2": "", "pad1": "", "pad0": "", "name": "Tears of Bitter Anguish", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5794, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250000, "buy_price": 1000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000100016593933, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Tears of Bitter Anguish", "name_ko_KR": "쓰라린 고뇌의 눈물", "name_fr_FR": "Larmes de l'angoisse amère", "name_de_DE": "Tränen der bitteren Pein", "name_zh_CN": "悲苦之泪", "name_es_ES": "Lágrimas de angustia amarga", "name_ru_RU": "Слезы горькой тоски", "name_it_IT": "Lacrime del Tormento Amaro", "name_pt_PT": "Lágrimas da Angústia Penosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43829, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crusader's Locket", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10232, "buy_price": 51160, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.963100016117096, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Crusader's Locket", "name_ko_KR": "성전사의 펜던트", "name_fr_FR": "Médaillon de croisé", "name_de_DE": "Medaillon des Kreuzfahrers", "name_zh_CN": "北伐军的坠饰", "name_es_ES": "Guardapelo de cruzado", "name_ru_RU": "Медальон рыцаря", "name_it_IT": "Medaglione del Crociato", "name_pt_PT": "Medalhão do Cruzado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43836, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thorny Rose Brooch", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5733, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10786, "buy_price": 53933, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0153000354766846, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Thorny Rose Brooch", "name_ko_KR": "가시 돋친 장미 브로치", "name_fr_FR": "Broche de la rose épineuse", "name_de_DE": "Dornige Rosenbrosche", "name_zh_CN": "带刺玫瑰胸针", "name_es_ES": "Broche de rosa con espinas", "name_ru_RU": "Брошь в виде розы с шипами", "name_it_IT": "Spilla di Rosa Spinosa", "name_pt_PT": "Broche da Rosa Espinhosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43837, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Softly Glowing Orb", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4400, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10825, "buy_price": 54129, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Softly Glowing Orb", "name_ko_KR": "부드럽게 빛나는 수정구", "name_fr_FR": "Orbe légèrement luminescent", "name_de_DE": "Sanft glühende Kugel", "name_zh_CN": "柔光宝珠", "name_es_ES": "Orbe con brillo suave", "name_ru_RU": "Мягко светящаяся сфера", "name_it_IT": "Globo Leggermente Luminoso", "name_pt_PT": "Orbe do Brilho Suave", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 43838, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chuchu's Tiny Box of Horrors", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10865, "buy_price": 54326, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Chuchu's Tiny Box of Horrors", "name_ko_KR": "츄츄의 자그마한 오싹 상자", "name_fr_FR": "Petite boîte d'horreurs de Chuchu", "name_de_DE": "Chuchus kleiner Horrorkasten", "name_zh_CN": "恐惧小盒", "name_es_ES": "Cajita de los horrores de Chuchu", "name_ru_RU": "Шкатулочка страхов Чучу", "name_it_IT": "Scatola degli Orrori di Chuchu", "name_pt_PT": "Caixinha dos Horrores de Chuchu", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44013, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cannoneer's Fuselighter", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6279, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12187, "buy_price": 60939, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559999704360962, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Cannoneer's Fuselighter", "name_ko_KR": "포병의 도화선점화기", "name_fr_FR": "Boutefeu de canonnier", "name_de_DE": "Luntenanzünder des Kanoniers", "name_zh_CN": "炮兵的点火器", "name_es_ES": "Botafuego de cañonero", "name_ru_RU": "Воспламенитель канонира", "name_it_IT": "Ardimiccia del Cannoniere", "name_pt_PT": "Acendepavio do Canhoneiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44014, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fezzik's Pocketwatch", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6977, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12235, "buy_price": 61175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9596999883651733, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fezzik's Pocketwatch", "name_ko_KR": "페지크의 회중시계", "name_fr_FR": "Montre de gousset de Fezzik", "name_de_DE": "Fezziks Taschenuhr", "name_zh_CN": "菲斯克的怀表", "name_es_ES": "Reloj de bolsillo de Fezzik", "name_ru_RU": "Карманные часы Феззика", "name_it_IT": "Orologio da Tasca di Fezzik", "name_pt_PT": "Relógio de Bolso do Fezzik", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44015, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cannoneer's Morale", "id_expansion": 2, "dmg_range": 0.20000000298023224, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6512, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12282, "buy_price": 61411, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9634000062942505, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 34, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Cannoneer's Morale", "name_ko_KR": "포병의 사기", "name_fr_FR": "Moral de canonnier", "name_de_DE": "Moral des Kanoniers", "name_zh_CN": "炮兵的士气", "name_es_ES": "Moral de cañonero", "name_ru_RU": "Боевой дух канонира", "name_it_IT": "Spirito Lucente del Cannoniere", "name_pt_PT": "Moral do Canhoneiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44063, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Monarch Crab", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5727, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 3307, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2522, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Monarch Crab", "name_ko_KR": "조각상 - 제왕 게", "name_fr_FR": "Figurine de crabe monarchique", "name_de_DE": "Figur - Monarchenkrabbe", "name_zh_CN": "雕像 - 帝黄晶螃蟹", "name_es_ES": "Figurilla: cangrejo monarca", "name_ru_RU": "Статуэтка королевского краба", "name_it_IT": "Statuetta - Granchio Monarca", "name_pt_PT": "Estatueta - Caranguejo Monarca", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44073, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzyheart Insignia of Fury", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5635, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9821000099182129, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1104, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Frenzyheart Insignia of Fury", "name_ko_KR": "광란심장의 분노 휘장", "name_fr_FR": "Insigne de fureur frénécœur", "name_de_DE": "Zorninsigne der Wildherzen", "name_zh_CN": "狂心怒火徽记", "name_es_ES": "Insignia de Corazón Frenético de furia", "name_ru_RU": "Знак неистовства Бешеного Сердца", "name_it_IT": "Fregio della Furia dei Cuorferoce", "name_pt_PT": "Insígnia da Fúria dos Feralma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44074, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oracle Talisman of Ablution", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5635, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98580002784729, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1105, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Oracle Talisman of Ablution", "name_ko_KR": "신탁의 세정식 부적", "name_fr_FR": "Talisman d'ablution de l'oracle", "name_de_DE": "Orakeltalisman der Ablution", "name_zh_CN": "神谕者的洗礼护符", "name_es_ES": "Talismán de ablución de Oráculo", "name_ru_RU": "Оракульский талисман омовения", "name_it_IT": "Talismano Oracolo dell'Abluzione", "name_pt_PT": "Talismã do Oráculo da Ablução", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44097, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9966999888420105, "flags_1": 134217728, "flags_2": 155649, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 44098, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Insignia of the Horde", "name_ko_KR": "계승의 호드 계급장", "name_fr_FR": "Insigne de la Horde hérité", "name_de_DE": "Geerbtes Insigne der Horde", "name_zh_CN": "家传的部落徽记", "name_es_ES": "Insignia heredada de la Horda", "name_ru_RU": "Унаследованный знак различия Орды", "name_it_IT": "Fregio Ereditato dell'Orda", "name_pt_PT": "Insígnia Herdada da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44098, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0003999471664429, "flags_1": 134217728, "flags_2": 155650, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 44097, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Insignia of the Alliance", "name_ko_KR": "계승의 얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance hérité", "name_de_DE": "Geerbtes Insigne der Allianz", "name_zh_CN": "家传的联盟徽记", "name_es_ES": "Insignia heredada de la Alianza", "name_ru_RU": "Унаследованный знак различия Альянса", "name_it_IT": "Fregio Ereditato dell'Alleanza", "name_pt_PT": "Insígnia Herdada da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44253, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Greatness", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Greatness", "name_ko_KR": "다크문 카드: 위대함", "name_fr_FR": "Carte de Sombrelune : Grandeur", "name_de_DE": "Dunkelmond-Karte: Grandeur", "name_zh_CN": "暗月卡片:伟大", "name_es_ES": "Naipe de la Luna Negra: Grandeza", "name_ru_RU": "Карта Новолуния: Величие", "name_it_IT": "Carta di Lunacupa: Superiorità", "name_pt_PT": "Carta de Negraluna: Grandiosidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44254, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Greatness", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037600040435791, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Greatness", "name_ko_KR": "다크문 카드: 위대함", "name_fr_FR": "Carte de Sombrelune : Grandeur", "name_de_DE": "Dunkelmond-Karte: Grandeur", "name_zh_CN": "暗月卡片:伟大", "name_es_ES": "Naipe de la Luna Negra: Grandeza", "name_ru_RU": "Карта Новолуния: Величие", "name_it_IT": "Carta di Lunacupa: Superiorità", "name_pt_PT": "Carta de Negraluna: Grandiosidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44255, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Greatness", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Greatness", "name_ko_KR": "다크문 카드: 위대함", "name_fr_FR": "Carte de Sombrelune : Grandeur", "name_de_DE": "Dunkelmond-Karte: Grandeur", "name_zh_CN": "暗月卡片:伟大", "name_es_ES": "Naipe de la Luna Negra: Grandeza", "name_ru_RU": "Карта Новолуния: Величие", "name_it_IT": "Carta di Lunacupa: Superiorità", "name_pt_PT": "Carta de Negraluna: Grandiosidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44322, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Mercurial Alchemist Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4545, "stat_alloc_2": 4545, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9929999709129333, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2483, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Mercurial Alchemist Stone", "name_ko_KR": "수은 깃든 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste mercurienne", "name_de_DE": "Quecksilbriger Alchemistenstein", "name_zh_CN": "水银炼金石", "name_es_ES": "Piedra de alquimista mercúrica", "name_ru_RU": "Переменчивый алхимический камень", "name_it_IT": "Pietra Alchemica Mercuriale", "name_pt_PT": "Pedra Mercurial do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44323, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Indestructible Alchemist Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6818, "stat_alloc_2": 4545, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 13, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9966999888420105, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2483, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Indestructible Alchemist Stone", "name_ko_KR": "깨지지 않는 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste indestructible", "name_de_DE": "Unzerstörbarer Alchemistenstein", "name_zh_CN": "不灭炼金石", "name_es_ES": "Piedra de alquimista indestructible", "name_ru_RU": "Несокрушимый алхимический камень", "name_it_IT": "Pietra Alchemica Indistruttibile", "name_pt_PT": "Pedra Indestrutível do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44324, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Mighty Alchemist Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3333, "stat_alloc_2": 3333, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003999471664429, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2483, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 28, "inv_type": 12, "quality": 3, "name_en_US": "Mighty Alchemist Stone", "name_ko_KR": "강한 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste puissante", "name_de_DE": "Mächtiger Alchemistenstein", "name_zh_CN": "强力炼金石", "name_es_ES": "Piedra de alquimista poderosa", "name_ru_RU": "Могущественный алхимический камень", "name_it_IT": "Pietra Alchemica Vigorosa", "name_pt_PT": "Pedra Poderosa do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of Heroism", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7576, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9596999883651733, "flags_1": 557056, "flags_2": 24577, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 44597, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of Heroism", "name_ko_KR": "무용의 메달", "name_fr_FR": "Médaillon d'héroïsme", "name_de_DE": "Medaillon des Heldentums", "name_zh_CN": "英雄勋章", "name_es_ES": "Medallón de Heroísmo", "name_ru_RU": "Медальон героизма", "name_it_IT": "Medaglione dell'Eroismo", "name_pt_PT": "Medalhão do Heroísmo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of Heroism", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7576, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 3, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9521999955177307, "flags_1": 557056, "flags_2": 24578, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 44579, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of Heroism", "name_ko_KR": "무용의 메달", "name_fr_FR": "Médaillon d'héroïsme", "name_de_DE": "Medaillon des Heldentums", "name_zh_CN": "英雄勋章", "name_es_ES": "Medallón de Heroísmo", "name_ru_RU": "Медальон героизма", "name_it_IT": "Medaglione dell'Eroismo", "name_pt_PT": "Medalhão do Heroísmo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44869, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzyheart Insignia of Fury", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5635, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000499963760376, "flags_1": 36864, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Frenzyheart Insignia of Fury", "name_ko_KR": "광란심장의 분노 휘장", "name_fr_FR": "Insigne de fureur frénécœur", "name_de_DE": "Zorninsigne der Wildherzen", "name_zh_CN": "狂心怒火徽记", "name_es_ES": "Insignia de Corazón Frenético de furia", "name_ru_RU": "Знак неистовства Бешеного Сердца", "name_it_IT": "Fregio della Furia dei Cuorferoce", "name_pt_PT": "Insígnia da Fúria dos Feralma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44870, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oracle Talisman of Ablution", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5635, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0041999816894531, "flags_1": 36864, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Oracle Talisman of Ablution", "name_ko_KR": "신탁의 세정식 부적", "name_fr_FR": "Talisman d'ablution de l'oracle", "name_de_DE": "Orakeltalisman der Ablution", "name_zh_CN": "神谕者的洗礼护符", "name_es_ES": "Talismán de ablución de Oráculo", "name_ru_RU": "Оракульский талисман омовения", "name_it_IT": "Talismano Oracolo dell'Abluzione", "name_pt_PT": "Talismã do Oráculo da Ablução", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44912, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flow of Knowledge", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0377000570297241, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Flow of Knowledge", "name_ko_KR": "지식의 흐름", "name_fr_FR": "Flot de connaissances", "name_de_DE": "Fluss des Wissens", "name_zh_CN": "知识之流", "name_es_ES": "Flujo de conocimiento", "name_ru_RU": "Поток знаний", "name_it_IT": "Flusso di Conoscenza", "name_pt_PT": "Fluxo de Conhecimento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 44914, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anvil of Titans", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0450999736785889, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Anvil of Titans", "name_ko_KR": "티탄의 모루", "name_fr_FR": "Enclume des Titans", "name_de_DE": "Amboss der Titanen", "name_zh_CN": "泰坦之砧", "name_es_ES": "Yunque de titanes", "name_ru_RU": "Наковальня Титанов", "name_it_IT": "Incudine dei Titani", "name_pt_PT": "Bigorna dos Titãs", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 45131, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jouster's Fury", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9854999780654907, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 45219, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Jouster's Fury", "name_ko_KR": "창기사의 격노", "name_fr_FR": "Fureur de jouteur", "name_de_DE": "Tjosterfuror", "name_zh_CN": "竞技者之怒", "name_es_ES": "Furia de ajustador", "name_ru_RU": "Ярость бретера", "name_it_IT": "Furia del Giostriere", "name_pt_PT": "Fúria do Justador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 45148, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Living Flame", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6646, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.974399983882904, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Living Flame", "name_ko_KR": "살아있는 불꽃", "name_fr_FR": "Flamme vivante", "name_de_DE": "Lebende Flamme", "name_zh_CN": "活焰", "name_es_ES": "Llama viva", "name_ru_RU": "Живой жар", "name_it_IT": "Fiamma Vivente", "name_pt_PT": "Chama Viva", "on_use": true, "id_encounter": 1639, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45158, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Iron", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10062, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037600040435791, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Iron", "name_ko_KR": "무쇠의 심장", "name_fr_FR": "Cœur de fer", "name_de_DE": "Eisernes Herz", "name_zh_CN": "钢铁之心", "name_es_ES": "Corazón de hierro", "name_ru_RU": "Железное сердце", "name_it_IT": "Cuore di Ferro", "name_pt_PT": "Coração de Ferro", "on_use": true, "id_encounter": 1638, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45219, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jouster's Fury", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6636, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9672999978065491, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 45131, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Jouster's Fury", "name_ko_KR": "창기사의 격노", "name_fr_FR": "Fureur de jouteur", "name_de_DE": "Tjosterfuror", "name_zh_CN": "竞技者之怒", "name_es_ES": "Furia de ajustador", "name_ru_RU": "Ярость бретера", "name_it_IT": "Furia del Giostriere", "name_pt_PT": "Fúria do Justador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 45263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wrathstone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082000494003296, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Wrathstone", "name_ko_KR": "분노의 돌", "name_fr_FR": "Pierre du courroux", "name_de_DE": "Zornstein", "name_zh_CN": "天谴之石", "name_es_ES": "Piedra de cólera", "name_ru_RU": "Камень гнева", "name_it_IT": "Pietra dell'Ira", "name_pt_PT": "Pedra da Ira", "on_use": true, "id_encounter": 1642, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45286, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pyrite Infuser", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190999507904053, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Pyrite Infuser", "name_ko_KR": "황철석 주입기", "name_fr_FR": "Infuseur en pyrite", "name_de_DE": "Pyriteinspritzung", "name_zh_CN": "燃铁灌注器", "name_es_ES": "Inyector de pirita", "name_ru_RU": "Нагнетатель колчедана", "name_it_IT": "Infusore di Pirite", "name_pt_PT": "Infusor de Pirita", "on_use": false, "id_encounter": 1637, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Energy Siphon", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041200041770935, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Energy Siphon", "name_ko_KR": "원기 흡수기", "name_fr_FR": "Siphon d'énergie", "name_de_DE": "Energiesiphon", "name_zh_CN": "能量弯管", "name_es_ES": "Succión de energía", "name_ru_RU": "Вытягивание энергии", "name_it_IT": "Risucchio Energetico", "name_pt_PT": "Sifão de Energia", "on_use": true, "id_encounter": 1637, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of the Broodmother", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5800, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262999534606934, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Eye of the Broodmother", "name_ko_KR": "여왕의 눈", "name_fr_FR": "Oeil de la mère des couvées", "name_de_DE": "Auge der Brutmutter", "name_zh_CN": "龙母之眼", "name_es_ES": "Ojo de la madre de linaje", "name_ru_RU": "Глаз матери стаи", "name_it_IT": "Occhio della Madre della Stirpe", "name_pt_PT": "Olho da Prolemadre", "on_use": false, "id_encounter": 1639, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45313, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Furnace Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710999727249146, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Furnace Stone", "name_ko_KR": "용광로 돌", "name_fr_FR": "Pierre de la fournaise", "name_de_DE": "Stein des Eisenwerks", "name_zh_CN": "熔炉之石", "name_es_ES": "Piedra de caldera", "name_ru_RU": "Печной камень", "name_it_IT": "Pietra della Fornace", "name_pt_PT": "Pedra da Fornalha", "on_use": true, "id_encounter": 1638, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45466, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scale of Fates", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6646, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.97079998254776, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Scale of Fates", "name_ko_KR": "숙명의 비늘", "name_fr_FR": "Ecaille des destinées", "name_de_DE": "Waagschale der Schicksale", "name_zh_CN": "命运之鳞", "name_es_ES": "Escama de fortunas", "name_ru_RU": "Чешуйка судеб", "name_it_IT": "Scaglia dei Destini", "name_pt_PT": "Balança do Destino", "on_use": true, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pandora's Plea", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Pandora's Plea", "name_ko_KR": "판도라의 탄원", "name_fr_FR": "Supplique de Pandore", "name_de_DE": "Pandoras Bitte", "name_zh_CN": "潘多拉的恳求", "name_es_ES": "Petición de Pandora", "name_ru_RU": "Мольба Пандоры", "name_it_IT": "Canto di Pandora", "name_pt_PT": "Apelo de Pandora", "on_use": false, "id_encounter": 1647, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The General's Heart", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0006999969482422, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "The General's Heart", "name_ko_KR": "장군의 심장", "name_fr_FR": "Le cœur du général", "name_de_DE": "Das Herz des Generals", "name_zh_CN": "将军之心", "name_es_ES": "El corazón del General", "name_ru_RU": "Сердце генерала", "name_it_IT": "Cuore del Generale", "name_pt_PT": "O Coração do General", "on_use": false, "id_encounter": 1648, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45518, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flare of the Heavens", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6630, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Flare of the Heavens", "name_ko_KR": "천상의 빛줄기", "name_fr_FR": "Embrasement des cieux", "name_de_DE": "Leuchtfeuer der Himmel", "name_zh_CN": "天堂之焰", "name_es_ES": "Bengala de los cielos", "name_ru_RU": "Небесная вспышка", "name_it_IT": "Fiamma del Paradiso", "name_pt_PT": "Labareda dos Céus", "on_use": false, "id_encounter": 1648, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45522, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood of the Old God", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6708, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.982200026512146, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Blood of the Old God", "name_ko_KR": "고대 신의 피", "name_fr_FR": "Sang du Dieu très ancien", "name_de_DE": "Blut des Alten Gottes", "name_zh_CN": "古神之血", "name_es_ES": "Sangre del dios antiguo", "name_ru_RU": "Кровь Древнего бога", "name_it_IT": "Sangue del Dio Antico", "name_pt_PT": "Sangue do Deus Antigo", "on_use": false, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45535, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Show of Faith", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6630, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Show of Faith", "name_ko_KR": "신념의 표시", "name_fr_FR": "Démonstration de foi", "name_de_DE": "Demonstration des Glaubens", "name_zh_CN": "信仰的证明", "name_es_ES": "Prueba de fe", "name_ru_RU": "Доказательство веры", "name_it_IT": "Icona della Fede", "name_pt_PT": "Prova da Fé", "on_use": false, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45609, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Comet's Trail", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Comet's Trail", "name_ko_KR": "혜성의 흔적", "name_fr_FR": "Queue de la comète", "name_de_DE": "Kometenschweif", "name_zh_CN": "彗星之痕", "name_es_ES": "Estela del cometa", "name_ru_RU": "Хвост кометы", "name_it_IT": "Coda della Cometa", "name_pt_PT": "Cauda do Cometa", "on_use": false, "id_encounter": 1650, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45631, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "High-Powered Flashlight", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10435, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12500, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 524480, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 21, "inv_type": 12, "quality": 3, "name_en_US": "High-Powered Flashlight", "name_ko_KR": "고성능 손전등", "name_fr_FR": "Lampe torche surpuissante", "name_de_DE": "Leistungsstarke Taschenlampe", "name_zh_CN": "大功率闪光灯", "name_es_ES": "Linterna de gran potencia", "name_ru_RU": "Мощный фонарь", "name_it_IT": "Torcia ad Alta Potenza", "name_pt_PT": "Lanterna Hiperpoderosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 45703, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Hope", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377000570297241, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Hope", "name_ko_KR": "희망의 불꽃", "name_fr_FR": "Étincelle d'espoir", "name_de_DE": "Funken der Hoffnung", "name_zh_CN": "希望的火花", "name_es_ES": "Chispa de esperanza", "name_ru_RU": "Искра надежды", "name_it_IT": "Barlume di Speranza", "name_pt_PT": "Centelha de Esperança", "on_use": false, "id_encounter": 1642, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45866, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elemental Focus Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7200, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Elemental Focus Stone", "name_ko_KR": "정기 집중의 돌", "name_fr_FR": "Pierre de focalisation élémentaire", "name_de_DE": "Elementarer Fokusstein", "name_zh_CN": "元素聚焦之石", "name_es_ES": "Piedra de enfoque elemental", "name_ru_RU": "Камень средоточия стихий", "name_it_IT": "Pietra del Focus Elementale", "name_pt_PT": "Pedra da Concentração Elemental", "on_use": false, "id_encounter": 1643, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45929, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sif's Remembrance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377000570297241, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sif's Remembrance", "name_ko_KR": "시프의 추억", "name_fr_FR": "Souvenir de Sif", "name_de_DE": "Sifs Erinnerung", "name_zh_CN": "西芙的记忆", "name_es_ES": "Recuerdo de Sif", "name_ru_RU": "Воспоминание Сиф", "name_it_IT": "Ricordo di Sif", "name_pt_PT": "Lembrança de Sif", "on_use": false, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 45931, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mjolnir Runestone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6335, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0450999736785889, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mjolnir Runestone", "name_ko_KR": "묠니르 마법석", "name_fr_FR": "Pierre runique de Mjolnir", "name_de_DE": "Runenstein von Mjolnir", "name_zh_CN": "雷神符石", "name_es_ES": "Piedra rúnica de Mjolnir", "name_ru_RU": "Рунический камень Мьольнира", "name_it_IT": "Pietra Runica di Mjolnir", "name_pt_PT": "Pedra Rúnica de Mjolnir", "on_use": false, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 46021, "race_mask": 18446744073709551615, "desc": "Covered in blood that doesn't seem to wash away.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of King Llane", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0341999530792236, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Royal Seal of King Llane", "name_ko_KR": "국왕 레인의 옥새", "name_fr_FR": "Sceau royal du roi Llane", "name_de_DE": "König Llanes hoheitliches Siegel", "name_zh_CN": "莱恩国王的皇家徽记", "name_es_ES": "Sello real del rey Llane", "name_ru_RU": "Печать короля Ллейна", "name_it_IT": "Sigillo Reale di Re Llane", "name_pt_PT": "Selo Real do Rei Llane", "on_use": true, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 46038, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dark Matter", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0230000019073486, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Dark Matter", "name_ko_KR": "암흑 물질", "name_fr_FR": "Matière noire", "name_de_DE": "Dunkle Materie", "name_zh_CN": "黑暗物质", "name_es_ES": "Materia oscura", "name_ru_RU": "Темная сущность", "name_it_IT": "Materia Oscura", "name_pt_PT": "Matéria Negra", "on_use": false, "id_encounter": 1650, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 46051, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Meteorite Crystal", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6894, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Meteorite Crystal", "name_ko_KR": "유성 수정", "name_fr_FR": "Cristal de météorite", "name_de_DE": "Meteoritkristall", "name_zh_CN": "陨星水晶", "name_es_ES": "Cristal de meteorito", "name_ru_RU": "Метеоритный кристалл", "name_it_IT": "Cristallo di Meteorite", "name_pt_PT": "Cristal de Meteorito", "on_use": true, "id_encounter": 1650, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 46081, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan-Forged Rune of Audacity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9602000117301941, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Titan-Forged Rune of Audacity", "name_ko_KR": "티탄이 벼려낸 용맹의 룬", "name_fr_FR": "Rune d'audace forgée par les Titans", "name_de_DE": "Titanengeschmiedete Rune der Kühnheit", "name_zh_CN": "泰坦铸造鲁莽符文", "name_es_ES": "Runa de audacia forjada por los titanes", "name_ru_RU": "Руна отваги из кузни титанов", "name_it_IT": "Runa Titanica dell'Audacia", "name_pt_PT": "Runa de Audácia da Forja Titânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46082, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan-Forged Rune of Determination", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9639000296592712, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Titan-Forged Rune of Determination", "name_ko_KR": "티탄이 벼려낸 결단의 룬", "name_fr_FR": "Rune de détermination forgée par les Titans", "name_de_DE": "Titanengeschmiedete Rune der Entschlossenheit", "name_zh_CN": "泰坦铸造决心符文", "name_es_ES": "Runa de determinación forjada por los titanes", "name_ru_RU": "Руна решимости из кузни титанов", "name_it_IT": "Runa Titanica della Determinazione", "name_pt_PT": "Runa da Determinação da Forja Titânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46083, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan-Forged Rune of Accuracy", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9674999713897705, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Titan-Forged Rune of Accuracy", "name_ko_KR": "티탄이 벼려낸 적중의 룬", "name_fr_FR": "Rune de précision forgée par les Titans", "name_de_DE": "Titanengeschmiedete Rune der Präzision", "name_zh_CN": "泰坦铸造精确符文", "name_es_ES": "Runa de precisión forjada por los titanes", "name_ru_RU": "Руна меткости из кузни титанов", "name_it_IT": "Runa Titanica dell'Accuratezza", "name_pt_PT": "Runa de Precisão da Forja Titânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46084, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan-Forged Rune of Cruelty", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9711999893188477, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Titan-Forged Rune of Cruelty", "name_ko_KR": "티탄이 벼려낸 무자비의 룬", "name_fr_FR": "Rune de cruauté forgée par les Titans", "name_de_DE": "Titanengeschmiedete Rune der Grausamkeit", "name_zh_CN": "泰坦铸造残酷符文", "name_es_ES": "Runa de crueldad forjada por los titanes", "name_ru_RU": "Руна жестокости из кузни титанов", "name_it_IT": "Runa Titanica dell'Atrocità", "name_pt_PT": "Runa de Crueldade da Forja Titânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46085, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan-Forged Rune of Alacrity", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9749000072479248, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Titan-Forged Rune of Alacrity", "name_ko_KR": "티탄이 벼려낸 날렵함 룬", "name_fr_FR": "Rune d'empressement forgée par les Titans", "name_de_DE": "Titanengeschmiedete Rune des Eifers", "name_zh_CN": "泰坦铸造敏锐符文", "name_es_ES": "Runa de prontitud forjada por los titanes", "name_ru_RU": "Руна рвения из кузни титанов", "name_it_IT": "Runa Titanica dell'Alacrità", "name_pt_PT": "Runa de Vivacidade da Forja Titânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46086, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Platinum Disks of Battle", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.978600025177002, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Platinum Disks of Battle", "name_ko_KR": "전투의 백금 원반", "name_fr_FR": "Disques de bataille en platine", "name_de_DE": "Platinscheiben des Kampfes", "name_zh_CN": "白金战斗圆盘", "name_es_ES": "Discos de batalla de platino", "name_ru_RU": "Платиновые диски битвы", "name_it_IT": "Dischi di Platino della Battaglia", "name_pt_PT": "Discos Platinados de Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46087, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Platinum Disks of Sorcery", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.982200026512146, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Platinum Disks of Sorcery", "name_ko_KR": "마법의 백금 원반", "name_fr_FR": "Disques de sorcellerie en platine", "name_de_DE": "Platinscheiben der Zauberei", "name_zh_CN": "白金巫术圆盘", "name_es_ES": "Discos de brujería de platino", "name_ru_RU": "Платиновые диски с печатью колдовства", "name_it_IT": "Dischi di Platino della Magia", "name_pt_PT": "Discos Platinados de Feitiçaria", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46088, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Platinum Disks of Swiftness", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6690, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9858999848365784, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Platinum Disks of Swiftness", "name_ko_KR": "신속의 백금 원반", "name_fr_FR": "Disques de rapidité en platine", "name_de_DE": "Platinscheiben der Schnelligkeit", "name_zh_CN": "白金迅捷圆盘", "name_es_ES": "Discos de presteza de platino", "name_ru_RU": "Платиновые диски быстроты", "name_it_IT": "Dischi di Platino della Rapidità", "name_pt_PT": "Discos Platinados de Velocidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 46312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vanquished Clutches of Yogg-Saron", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8447, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.978600025177002, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Vanquished Clutches of Yogg-Saron", "name_ko_KR": "요그사론의 패배한 손", "name_fr_FR": "Étreintes de Yogg-Saron vaincu", "name_de_DE": "Bezwungene Klauen von Yogg-Saron", "name_zh_CN": "被征服的尤格-萨隆之爪", "name_es_ES": "Garras derrotadas de Yogg-Saron", "name_ru_RU": "Ослабшая хватка Йогг-Сарона", "name_it_IT": "Chele Dominate di Yogg-Saron", "name_pt_PT": "Garras Subjugadas de Yogg-Saron", "on_use": true, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 47041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solace of the Defeated", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045199990272522, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47271, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Solace of the Defeated", "name_ko_KR": "패배한 자의 위안", "name_fr_FR": "Réconfort des vaincus", "name_de_DE": "Trost der Besiegten", "name_zh_CN": "战败者的慰藉", "name_es_ES": "Consuelo de los derrotados", "name_ru_RU": "Утешение поверженных", "name_it_IT": "Conforto dello Sconfitto", "name_pt_PT": "Consolo dos Derrotados", "on_use": false, "id_encounter": 1619, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47059, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solace of the Defeated", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377000570297241, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47432, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Solace of the Defeated", "name_ko_KR": "패배한 자의 위안", "name_fr_FR": "Réconfort des vaincus", "name_de_DE": "Trost der Besiegten", "name_zh_CN": "战败者的慰藉", "name_es_ES": "Consuelo de los derrotados", "name_ru_RU": "Утешение поверженных", "name_it_IT": "Conforto dello Sconfitto", "name_pt_PT": "Consolo dos Derrotados", "on_use": false, "id_encounter": 1619, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47080, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Satrina's Impeding Scarab", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9677000045776367, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47290, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Satrina's Impeding Scarab", "name_ko_KR": "사트리나의 방어 스카라베", "name_fr_FR": "Scarabée d'obstruction de Satrina", "name_de_DE": "Satrinas hemmender Skarabäus", "name_zh_CN": "萨崔娜的抗阻甲虫", "name_es_ES": "Escarabajo trabador de Satrina", "name_ru_RU": "Упрямый скарабей Сатрины", "name_it_IT": "Scarabeo dell'Ostacolo di Satrina", "name_pt_PT": "Escaravelho Iminente de Satrina", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47088, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Satrina's Impeding Scarab", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9970999956130981, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47451, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Satrina's Impeding Scarab", "name_ko_KR": "사트리나의 방어 스카라베", "name_fr_FR": "Scarabée d'obstruction de Satrina", "name_de_DE": "Satrinas hemmender Skarabäus", "name_zh_CN": "萨崔娜的抗阻甲虫", "name_es_ES": "Escarabajo trabador de Satrina", "name_ru_RU": "Упрямый скарабей Сатрины", "name_it_IT": "Scarabeo dell'Ostacolo di Satrina", "name_pt_PT": "Escaravelho Iminente de Satrina", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Death's Verdict", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0491000413894653, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47303, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Death's Verdict", "name_ko_KR": "죽음의 선고", "name_fr_FR": "Verdict de la mort", "name_de_DE": "Des Todes Urteil", "name_zh_CN": "死亡的裁决", "name_es_ES": "Veredicto de la muerte", "name_ru_RU": "Приговор смерти", "name_it_IT": "Verdetto di Morte", "name_pt_PT": "Veredito da Morte", "on_use": false, "id_encounter": 1622, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47131, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Death's Verdict", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0342999696731567, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47464, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Death's Verdict", "name_ko_KR": "죽음의 선고", "name_fr_FR": "Verdict de la mort", "name_de_DE": "Des Todes Urteil", "name_zh_CN": "死亡的裁决", "name_es_ES": "Veredicto de la muerte", "name_ru_RU": "Приговор смерти", "name_it_IT": "Verdetto di Morte", "name_pt_PT": "Veredito da Morte", "on_use": false, "id_encounter": 1622, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47182, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Unliving", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47316, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Unliving", "name_ko_KR": "생명이 사라진 자의 통치", "name_fr_FR": "Règne des non-vivants", "name_de_DE": "Herrschaft der Leblosen", "name_zh_CN": "死者的统治", "name_es_ES": "Reino de los sin vida", "name_ru_RU": "Власть неживых", "name_it_IT": "Regno Senza Vita", "name_pt_PT": "Rédeas do Vivo-morto", "on_use": false, "id_encounter": 1623, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47188, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Unliving", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0228999853134155, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47477, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Unliving", "name_ko_KR": "생명이 사라진 자의 통치", "name_fr_FR": "Règne des non-vivants", "name_de_DE": "Herrschaft der Leblosen", "name_zh_CN": "死者的统治", "name_es_ES": "Reino de los sin vida", "name_ru_RU": "Власть неживых", "name_it_IT": "Regno Senza Vita", "name_pt_PT": "Rédeas do Vivo-morto", "on_use": false, "id_encounter": 1623, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47213, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Abyssal Rune", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 444, "buy_price": 2223, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Abyssal Rune", "name_ko_KR": "심연의 룬", "name_fr_FR": "Rune abyssale", "name_de_DE": "Abyssrune", "name_zh_CN": "深渊符文", "name_es_ES": "Runa abisal", "name_ru_RU": "Руна Бездны", "name_it_IT": "Runa Abissale", "name_pt_PT": "Runa Abissal", "on_use": false, "id_encounter": 635, "id_journal_instance": 284, "id_map": 650, "instance_type": 1}, {"id": 47214, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Banner of Victory", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31105, "buy_price": 155527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9711999893188477, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Banner of Victory", "name_ko_KR": "승리의 깃발", "name_fr_FR": "Bannière de victoire", "name_de_DE": "Banner des Sieges", "name_zh_CN": "胜利旌旗", "name_es_ES": "Estandarte de victoria", "name_ru_RU": "Знамя победы", "name_it_IT": "Stendardo della Vittoria", "name_pt_PT": "Flâmula da Vitória", "on_use": false, "id_encounter": 636, "id_journal_instance": 284, "id_map": 650, "instance_type": 1}, {"id": 47215, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tears of the Vanquished", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31224, "buy_price": 156120, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9749000072479248, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Tears of the Vanquished", "name_ko_KR": "정복당한 자의 눈물", "name_fr_FR": "Larmes des vaincus", "name_de_DE": "Tränen der Bezwungenen", "name_zh_CN": "屈服之泪", "name_es_ES": "Lágrimas del vencido", "name_ru_RU": "Слезы поверженных", "name_it_IT": "Lacrime del Dominato", "name_pt_PT": "Lágrimas dos Conquistados", "on_use": false, "id_encounter": 637, "id_journal_instance": 284, "id_map": 650, "instance_type": 1}, {"id": 47216, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Black Heart", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31342, "buy_price": 156713, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.978600025177002, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "The Black Heart", "name_ko_KR": "검은 심장", "name_fr_FR": "Le Cœur noir", "name_de_DE": "Das Schwarze Herz", "name_zh_CN": "黑心", "name_es_ES": "El Corazón Negro", "name_ru_RU": "Черное сердце", "name_it_IT": "Cuore Nero", "name_pt_PT": "Coração Negro", "on_use": false, "id_encounter": 637, "id_journal_instance": 284, "id_map": 650, "instance_type": 1}, {"id": 47271, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solace of the Fallen", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.986299991607666, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47041, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Solace of the Fallen", "name_ko_KR": "쓰러진 자의 위안", "name_fr_FR": "Réconfort des défunts", "name_de_DE": "Trost der Gefallenen", "name_zh_CN": "阵亡者的慰藉", "name_es_ES": "Consuelo de los caídos", "name_ru_RU": "Утешение павших", "name_it_IT": "Conforto del Caduto", "name_pt_PT": "Consolo dos Caídos", "on_use": false, "id_encounter": 1619, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Vitality", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47080, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Vitality", "name_ko_KR": "돌격전차의 활력", "name_fr_FR": "Vitalité du mastodonte", "name_de_DE": "Vitalität des Molochs", "name_zh_CN": "主宰之力", "name_es_ES": "Vitalidad del gigante", "name_ru_RU": "Жизненная сила слепого поклонения", "name_it_IT": "Vitalità della Forza Inesorabile", "name_pt_PT": "Vitalidade do Jaganata", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Death's Choice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95660001039505, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47115, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Death's Choice", "name_ko_KR": "죽음의 선택", "name_fr_FR": "Choix de la mort", "name_de_DE": "Des Todes Wahl", "name_zh_CN": "死亡的选择", "name_es_ES": "Elección de la Muerte", "name_ru_RU": "Выбор смерти", "name_it_IT": "Scelta della Morte", "name_pt_PT": "Escolha da Morte", "on_use": false, "id_encounter": 1622, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Dead", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0044000148773193, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47182, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Dead", "name_ko_KR": "생명이 없는 자의 통치", "name_fr_FR": "Règne de la mort", "name_de_DE": "Herrschaft der Toten", "name_zh_CN": "亡者的统治", "name_es_ES": "Reino de los muertos", "name_ru_RU": "Власть мертвых", "name_it_IT": "Regno della Morte", "name_pt_PT": "Rédeas dos Mortos", "on_use": false, "id_encounter": 1623, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47432, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solace of the Fallen", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0419000387191772, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47059, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Solace of the Fallen", "name_ko_KR": "쓰러진 자의 위안", "name_fr_FR": "Réconfort des défunts", "name_de_DE": "Trost der Gefallenen", "name_zh_CN": "阵亡者的慰藉", "name_es_ES": "Consuelo de los caídos", "name_ru_RU": "Утешение павших", "name_it_IT": "Conforto del Caduto", "name_pt_PT": "Consolo dos Caídos", "on_use": false, "id_encounter": 1619, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47451, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Vitality", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038100004196167, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47088, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Vitality", "name_ko_KR": "돌격전차의 활력", "name_fr_FR": "Vitalité du mastodonte", "name_de_DE": "Vitalität des Molochs", "name_zh_CN": "主宰之力", "name_es_ES": "Vitalidad del gigante", "name_ru_RU": "Жизненная сила слепого поклонения", "name_it_IT": "Vitalità della Forza Inesorabile", "name_pt_PT": "Vitalidade do Jaganata", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47464, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Death's Choice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0123000144958496, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47131, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Death's Choice", "name_ko_KR": "죽음의 선택", "name_fr_FR": "Choix de la mort", "name_de_DE": "Des Todes Wahl", "name_zh_CN": "死亡的选择", "name_es_ES": "Elección de la Muerte", "name_ru_RU": "Выбор смерти", "name_it_IT": "Scelta della Morte", "name_pt_PT": "Escolha da Morte", "on_use": false, "id_encounter": 1622, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47477, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Dead", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599000215530396, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47188, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Dead", "name_ko_KR": "생명이 없는 자의 통치", "name_fr_FR": "Règne de la mort", "name_de_DE": "Herrschaft der Toten", "name_zh_CN": "亡者的统治", "name_es_ES": "Reino de los muertos", "name_ru_RU": "Власть мертвых", "name_it_IT": "Regno della Morte", "name_pt_PT": "Rédeas dos Mortos", "on_use": false, "id_encounter": 1623, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47725, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Victor's Call", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9936000108718872, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47881, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Victor's Call", "name_ko_KR": "승자의 부름", "name_fr_FR": "Appel de la victoire", "name_de_DE": "Ruf des Siegers", "name_zh_CN": "胜者的召唤", "name_es_ES": "Llamada de Victor", "name_ru_RU": "Зов победителя", "name_it_IT": "Chiamata Vittoriosa", "name_pt_PT": "Chamado de Victor", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Volatile Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973000288009644, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47879, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Volatile Power", "name_ko_KR": "작열의 부적", "name_fr_FR": "Talisman du pouvoir volatil", "name_de_DE": "Talisman der flüchtigen Macht", "name_zh_CN": "动荡能量饰物", "name_es_ES": "Dije de poder volátil", "name_ru_RU": "Талисман неустойчивой силы", "name_it_IT": "Talismano del Potere Mutevole", "name_pt_PT": "Talismã do Poder Volátil", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fervor of the Frostborn", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0010000467300415, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47882, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Fervor of the Frostborn", "name_ko_KR": "서릿결 부족의 열정", "name_fr_FR": "Ferveur des Givre-nés", "name_de_DE": "Eifer der Frosterben", "name_zh_CN": "霜脉矮人的热忱", "name_es_ES": "Fervor de los Natoescarcha", "name_ru_RU": "Рвение Зиморожденного", "name_it_IT": "Fervore dei Figli del Gelo", "name_pt_PT": "Fervor do Gelonato", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47728, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Binding Light", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.004699945449829, "flags_1": 524288, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47880, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Binding Light", "name_ko_KR": "결속의 빛", "name_fr_FR": "Lien de lumière", "name_de_DE": "Bindendes Licht", "name_zh_CN": "禁锢之光", "name_es_ES": "Luz vinculante", "name_ru_RU": "Связующий свет", "name_it_IT": "Luce del Vincolo", "name_pt_PT": "Vínculo da Luz", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47734, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Supremacy", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1885400, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0267000198364258, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mark of Supremacy", "name_ko_KR": "궁극의 징표", "name_fr_FR": "Marque de suprématie", "name_de_DE": "Mal der Überlegenheit", "name_zh_CN": "霸权印记", "name_es_ES": "Marca de Supremacía", "name_ru_RU": "Знак превосходства", "name_it_IT": "Marchio della Supremazia", "name_pt_PT": "Signo de Supremacia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 47735, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glyph of Indomitability", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1892200, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.030400037765503, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Glyph of Indomitability", "name_ko_KR": "불굴의 문양", "name_fr_FR": "Glyphe de l'indomptable", "name_de_DE": "Glyphe der Unbeherrschbarkeit", "name_zh_CN": "无惧雕饰", "name_es_ES": "Glifo de indomabilidad", "name_ru_RU": "Символ неукротимости", "name_it_IT": "Gioiello dell'Indomabilità", "name_pt_PT": "Glifo de Indomabilidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 47879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of Volatile Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47726, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Fetish of Volatile Power", "name_ko_KR": "작열의 우상", "name_fr_FR": "Fétiche du pouvoir volatil", "name_de_DE": "Fetisch der flüchtigen Macht", "name_zh_CN": "动荡能量雕像", "name_es_ES": "Fetiche de poder volátil", "name_ru_RU": "Фетиш неустойчивой силы", "name_it_IT": "Feticcio del Potere Mutevole", "name_pt_PT": "Fetiche do Poder Volátil", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47880, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Binding Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0006999969482422, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47728, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Binding Stone", "name_ko_KR": "결속의 돌", "name_fr_FR": "Lien de pierre", "name_de_DE": "Bindendes Gestein", "name_zh_CN": "束缚之石", "name_es_ES": "Piedra vinculante", "name_ru_RU": "Связующий камень", "name_it_IT": "Pietra del Vincolo", "name_pt_PT": "Pedra Vinculadora", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47881, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vengeance of the Forsaken", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4882, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030900001525879, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47725, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Vengeance of the Forsaken", "name_ko_KR": "포세이큰의 원한", "name_fr_FR": "Vengeance des Réprouvés", "name_de_DE": "Rache der Verlassenen", "name_zh_CN": "被遗忘者的复仇", "name_es_ES": "Venganza de los Renegados", "name_ru_RU": "Отмщение Отрекшихся", "name_it_IT": "Vendetta dei Reietti", "name_pt_PT": "Vingança dos Renegados", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47882, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eitrigg's Oath", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034600019454956, "flags_1": 524288, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47727, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Eitrigg's Oath", "name_ko_KR": "아이트리그의 서약", "name_fr_FR": "Serment d'Eitrigg", "name_de_DE": "Etriggs Schwur", "name_zh_CN": "伊崔格的誓约", "name_es_ES": "Juramento de Eitrigg", "name_ru_RU": "Клятва Эйтригга", "name_it_IT": "Giuramento di Eitrigg", "name_pt_PT": "Jura de Eitrigg", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47946, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Volatile Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9753000140190125, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 48018, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Volatile Power", "name_ko_KR": "작열의 부적", "name_fr_FR": "Talisman du pouvoir volatil", "name_de_DE": "Talisman der flüchtigen Macht", "name_zh_CN": "动荡能量饰物", "name_es_ES": "Dije de poder volátil", "name_ru_RU": "Талисман неустойчивой силы", "name_it_IT": "Talismano del Potere Mutevole", "name_pt_PT": "Talismã do Poder Volátil", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47947, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Binding Light", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9789000153541565, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 48019, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Binding Light", "name_ko_KR": "결속의 빛", "name_fr_FR": "Lien de lumière", "name_de_DE": "Bindendes Licht", "name_zh_CN": "禁锢之光", "name_es_ES": "Luz vinculante", "name_ru_RU": "Связующий свет", "name_it_IT": "Luce del Vincolo", "name_pt_PT": "Vínculo da Luz", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Victor's Call", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4323, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825999736785889, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 48020, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Victor's Call", "name_ko_KR": "승자의 부름", "name_fr_FR": "Appel de la victoire", "name_de_DE": "Ruf des Siegers", "name_zh_CN": "胜者的召唤", "name_es_ES": "Llamada de Victor", "name_ru_RU": "Зов победителя", "name_it_IT": "Chiamata Vittoriosa", "name_pt_PT": "Chamado de Victor", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 47949, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fervor of the Frostborn", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.986299991607666, "flags_1": 524296, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 48021, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Fervor of the Frostborn", "name_ko_KR": "서릿결 부족의 열정", "name_fr_FR": "Ferveur des Givre-nés", "name_de_DE": "Eifer der Frosterben", "name_zh_CN": "霜脉矮人的热忱", "name_es_ES": "Fervor de los Natoescarcha", "name_ru_RU": "Рвение Зиморожденного", "name_it_IT": "Fervore dei Figli del Gelo", "name_pt_PT": "Fervor do Gelonato", "on_use": true, "id_encounter": 1621, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 48018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of Volatile Power", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47946, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Fetish of Volatile Power", "name_ko_KR": "작열의 우상", "name_fr_FR": "Fétiche du pouvoir volatil", "name_de_DE": "Fetisch der flüchtigen Macht", "name_zh_CN": "动荡能量雕像", "name_es_ES": "Fetiche de poder volátil", "name_ru_RU": "Фетиш неустойчивой силы", "name_it_IT": "Feticcio del Potere Mutevole", "name_pt_PT": "Fetiche do Poder Volátil", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 48019, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Binding Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0491000413894653, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47947, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Binding Stone", "name_ko_KR": "결속의 돌", "name_fr_FR": "Lien de pierre", "name_de_DE": "Bindendes Gestein", "name_zh_CN": "束缚之石", "name_es_ES": "Piedra vinculante", "name_ru_RU": "Связующий камень", "name_it_IT": "Pietra del Vincolo", "name_pt_PT": "Pedra Vinculadora", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 48020, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vengeance of the Forsaken", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4323, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9527000188827515, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47948, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Vengeance of the Forsaken", "name_ko_KR": "포세이큰의 원한", "name_fr_FR": "Vengeance des Réprouvés", "name_de_DE": "Rache der Verlassenen", "name_zh_CN": "被遗忘者的复仇", "name_es_ES": "Venganza de los Renegados", "name_ru_RU": "Отмщение Отрекшихся", "name_it_IT": "Vendetta dei Reietti", "name_pt_PT": "Vingança dos Renegados", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 48021, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eitrigg's Oath", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6563, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 524296, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 47949, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Eitrigg's Oath", "name_ko_KR": "아이트리그의 서약", "name_fr_FR": "Serment d'Eitrigg", "name_de_DE": "Etriggs Schwur", "name_zh_CN": "伊崔格的誓约", "name_es_ES": "Juramento de Eitrigg", "name_ru_RU": "Клятва Эйтригга", "name_it_IT": "Giuramento di Eitrigg", "name_pt_PT": "Jura de Eitrigg", "on_use": true, "id_encounter": 1620, "id_journal_instance": 757, "id_map": 649, "instance_type": 2}, {"id": 48722, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of the Crystal Heart", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1824900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937999844551086, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Shard of the Crystal Heart", "name_ko_KR": "투명한 마음의 조각", "name_fr_FR": "Éclat du cœur de cristal", "name_de_DE": "Scherbe des Kristallherzens", "name_zh_CN": "水晶之心碎片", "name_es_ES": "Fragmento del corazón de cristal", "name_ru_RU": "Осколок хрустального сердца", "name_it_IT": "Frammento del Cuore Cristallino", "name_pt_PT": "Estilhaço do Coração de Cristal", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 48724, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Resurgence", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 1838300, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.001099944114685, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Resurgence", "name_ko_KR": "회생의 부적", "name_fr_FR": "Talisman de résurgence", "name_de_DE": "Talisman der Wiederauferstehung", "name_zh_CN": "复苏饰物", "name_es_ES": "Dije de Resurgimiento", "name_ru_RU": "Талисман восстановления", "name_it_IT": "Talismano della Rifioritura", "name_pt_PT": "Talismã de Ressurgência", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49074, "race_mask": 18446744073709551615, "desc": "Enchanted to fit perfectly beneath any mug.", "pad2": "", "pad1": "", "pad0": "", "name": "Coren's Chromium Coaster", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9678999781608582, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Coren's Chromium Coaster", "name_ko_KR": "코렌의 크롬 받침", "name_fr_FR": "Sous-bock de Coren en chrome", "name_de_DE": "Corens Chromuntersetzer", "name_zh_CN": "科林的铬银杯垫", "name_es_ES": "Posavasos de cromo de Coren", "name_ru_RU": "Хромированная подставка Корена", "name_it_IT": "Sottobicchiere Cromato di Coren", "name_pt_PT": "Porta-copos Cromado de Coren", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49076, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Pocketwatch", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9753000140190125, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mithril Pocketwatch", "name_ko_KR": "미스릴 회중시계", "name_fr_FR": "Montre de gousset en mithril", "name_de_DE": "Mithriltaschenuhr", "name_zh_CN": "秘银怀表", "name_es_ES": "Reloj de bolsillo de mitril", "name_ru_RU": "Мифриловые карманные часы", "name_it_IT": "Orologio da Tasca di Mithril", "name_pt_PT": "Relógio de Bolso de Mithril", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49078, "race_mask": 18446744073709551615, "desc": "Reeking and rubbery.", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Pickled Egg", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9825999736785889, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Pickled Egg", "name_ko_KR": "고대의 초란", "name_fr_FR": "Œuf ancien mariné", "name_de_DE": "Uraltes Solei", "name_zh_CN": "远古卤蛋", "name_es_ES": "Huevo escabechado pasado", "name_ru_RU": "Древнее маринованное яйцо", "name_it_IT": "Uovo Sottaceto Antico", "name_pt_PT": "Ovo Velho Avinagrado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49080, "race_mask": 18446744073709551615, "desc": "The Grim Guzzler's brawls are things of legend.", "pad2": "", "pad1": "", "pad0": "", "name": "Brawler's Souvenir", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9898999929428101, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Brawler's Souvenir", "name_ko_KR": "싸움꾼의 기념품", "name_fr_FR": "Souvenir du bagarreur", "name_de_DE": "Muskelprotzsouvenir", "name_zh_CN": "打斗者的纪念品", "name_es_ES": "Recuerdo de camorrista", "name_ru_RU": "Сувенир буяна", "name_it_IT": "Souvenir dell'Attaccabrighe", "name_pt_PT": "Suvenir do Briguento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bitter Balebrew Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 13492, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750000238418579, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Bitter Balebrew Charm", "name_ko_KR": "쓰면서도 감미로운 고통의 맥주", "name_fr_FR": "Charme torvebière amer", "name_de_DE": "Bitterer Plörrbräuglücksbringer", "name_zh_CN": "黑暗苦酒咒符", "name_es_ES": "Talismán Fardobirra amarga", "name_ru_RU": "Амулет горького темного варева", "name_it_IT": "Talismano della Birra Amara che fa Più Male", "name_pt_PT": "Patuá Cervamarga Amarga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49118, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bubbling Brightbrew Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 13492, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9822999835014343, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Bubbling Brightbrew Charm", "name_ko_KR": "풍부한 거품의 감미로운 투명 맥주", "name_fr_FR": "Charme brillebière pétillant", "name_de_DE": "Perlender Hellbräuglücksbringer", "name_zh_CN": "光明汽酒咒符", "name_es_ES": "Talismán Brillobirra burbujeante", "name_ru_RU": "Амулет игристого светлого напитка", "name_it_IT": "Talismano della Birra che fa Più Bene", "name_pt_PT": "Patuá de Cervaclara Borbulhante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Shard of the Scale", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45914, "buy_price": 183658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 881, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Purified Shard of the Scale", "name_ko_KR": "정화된 비늘의 파편", "name_fr_FR": "Éclat de l'écaille purifié", "name_de_DE": "Geläuterter Splitter der Schuppe", "name_zh_CN": "纯净的龙鳞碎片", "name_es_ES": "Fragmento de la Escama purificado", "name_ru_RU": "Очищенный обломок чешуи", "name_it_IT": "Frammento Purificato della Scaglia", "name_pt_PT": "Estilhaço Purificado da Escama", "on_use": false, "id_encounter": 1651, "id_journal_instance": 760, "id_map": 249, "instance_type": 2}, {"id": 49312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Onyxia Blood Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.9375, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7495, "stat_alloc_2": 5259, "stat_alloc_3": 882, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": 46, "stat_type_3": 51, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 123580, "buy_price": 494322, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384999513626099, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Purified Onyxia Blood Talisman", "name_ko_KR": "정화된 오닉시아 피 부적", "name_fr_FR": "Talisman de sang d'Onyxia purifié", "name_de_DE": "Geläuterter Talisman mit Onyxiablut", "name_zh_CN": "纯净奥妮克希亚龙血护符", "name_es_ES": "Dije de sangre de Onyxia purificado", "name_ru_RU": "Очищенный кровный талисман Ониксии", "name_it_IT": "Talismano del Sangue d'Onyxia Purificato", "name_pt_PT": "Purified Onyxia Blood Talisman", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Shard of the Flame", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 30000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 46, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45914, "buy_price": 183658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030900001525879, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 881, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Purified Shard of the Flame", "name_ko_KR": "정화된 화염의 파편", "name_fr_FR": "Fragment de la Flamme purifié", "name_de_DE": "Geläuterter Splitter der Flamme", "name_zh_CN": "纯净的烈焰碎片", "name_es_ES": "Fragmento de la Llama purificado", "name_ru_RU": "Очищенная сфера пламени", "name_it_IT": "Frammento Purificato della Fiamma", "name_pt_PT": "Estilhaço Purificado da Chama", "on_use": false, "id_encounter": 1651, "id_journal_instance": 760, "id_map": 249, "instance_type": 2}, {"id": 49464, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiny Shard of the Flame", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 30000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 46, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45914, "buy_price": 183658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034600019454956, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 882, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Shiny Shard of the Flame", "name_ko_KR": "반짝이는 화염의 파편", "name_fr_FR": "Fragment de la Flamme rutilant", "name_de_DE": "Glänzender Splitter der Flamme", "name_zh_CN": "闪亮的烈焰碎片", "name_es_ES": "Fragmento de la Llama lustroso", "name_ru_RU": "Блестящая сфера пламени", "name_it_IT": "Frammento Brillante della Fiamma", "name_pt_PT": "Estilhaço Reluzente da Chama", "on_use": false, "id_encounter": 1651, "id_journal_instance": 760, "id_map": 249, "instance_type": 2}, {"id": 49487, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Onyxia Blood Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.9375, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7495, "stat_alloc_2": 5259, "stat_alloc_3": 781, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": 46, "stat_type_3": 51, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130176, "buy_price": 520707, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0454000234603882, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Purified Onyxia Blood Talisman", "name_ko_KR": "정화된 오닉시아 피 부적", "name_fr_FR": "Talisman de sang d'Onyxia purifié", "name_de_DE": "Geläuterter Talisman mit Onyxiablut", "name_zh_CN": "纯净奥妮克希亚龙血护符", "name_es_ES": "Dije de sangre de Onyxia purificado", "name_ru_RU": "Очищенный кровный талисман Ониксии", "name_it_IT": "Talismano del Sangue d'Onyxia Purificato", "name_pt_PT": "Talismã do Sangue Purificado da Onyxia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 49488, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiny Shard of the Scale", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45914, "buy_price": 183658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9754999876022339, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 882, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Shiny Shard of the Scale", "name_ko_KR": "반짝이는 비늘의 파편", "name_fr_FR": "Éclat de l'écaille rutilant", "name_de_DE": "Glänzender Splitter der Schuppe", "name_zh_CN": "闪亮的龙鳞碎片", "name_es_ES": "Fragmento de la Escama lustroso", "name_ru_RU": "Блестящий обломок чешуи", "name_it_IT": "Frammento Brillante della Scaglia", "name_pt_PT": "Estilhaço Reluzente da Escama", "on_use": false, "id_encounter": 1651, "id_journal_instance": 760, "id_map": 249, "instance_type": 2}, {"id": 50198, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Needle-Encrusted Scorpion", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0460000038146973, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Needle-Encrusted Scorpion", "name_ko_KR": "바늘 박힌 전갈", "name_fr_FR": "Scorpion incrusté d'aiguilles", "name_de_DE": "Nadelüberzogener Skorpion", "name_zh_CN": "钉壳毒蝎", "name_es_ES": "Escorpión incrustado de agujas", "name_ru_RU": "Покрытый иглами скорпион", "name_it_IT": "Scorpione dall'Aculeo Incrostato", "name_pt_PT": "Escorpião Incrustado de Agulhas", "on_use": false, "id_encounter": 616, "id_journal_instance": 280, "id_map": 632, "instance_type": 1}, {"id": 50235, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ick's Rotting Thumb", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6647, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33139, "buy_price": 165696, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0347000360488892, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Ick's Rotting Thumb", "name_ko_KR": "이크의 썩어가는 엄지", "name_fr_FR": "Pouce pourrissant d'Ick", "name_de_DE": "Icks verrottender Daumen", "name_zh_CN": "伊克的烂指", "name_es_ES": "Pulgar putrefacto de Agh", "name_ru_RU": "Гниющий палец Ика", "name_it_IT": "Alluce Decomposto di Ick", "name_pt_PT": "Dedo Aprodrecido do Ick", "on_use": true, "id_encounter": 609, "id_journal_instance": 278, "id_map": 658, "instance_type": 1}, {"id": 50259, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nevermelting Ice Crystal", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5580, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33603, "buy_price": 168018, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0492000579833984, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Nevermelting Ice Crystal", "name_ko_KR": "영구결빙 수정", "name_fr_FR": "Cristal de glace perpétuelle", "name_de_DE": "Nimmerschmelzender Eiskristall", "name_zh_CN": "永冻冰晶", "name_es_ES": "Cristal de hielo perenne", "name_ru_RU": "Нетающий кристалл льда", "name_it_IT": "Cristallo di Ghiaccio Condensato", "name_pt_PT": "Cristal de Gelo Perene", "on_use": true, "id_encounter": 610, "id_journal_instance": 278, "id_map": 658, "instance_type": 1}, {"id": 50260, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ephemeral Snowflake", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9793000221252441, "flags_1": 524288, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Ephemeral Snowflake", "name_ko_KR": "단명의 눈송이", "name_fr_FR": "Flocon de neige éphémère", "name_de_DE": "Vergängliche Schneeflocke", "name_zh_CN": "消融之雪", "name_es_ES": "Copo de nieve efímero", "name_ru_RU": "Эфемерная снежинка", "name_it_IT": "Fiocco di Neve Effimero", "name_pt_PT": "Floco de Neve Efêmero", "on_use": true, "id_encounter": 602, "id_journal_instance": 276, "id_map": 668, "instance_type": 1}, {"id": 50339, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sliver of Pure Ice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 74, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6652, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750999808311462, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sliver of Pure Ice", "name_ko_KR": "순수한 얼음 조각", "name_fr_FR": "Esquille de glace pure", "name_de_DE": "Splitter aus reinem Eis", "name_zh_CN": "纯冰薄片", "name_es_ES": "Esquirla de hielo puro", "name_ru_RU": "Осколок чистейшего льда", "name_it_IT": "Scaglia di Puro Ghiaccio", "name_pt_PT": "Lasca de Puro Gelo", "on_use": true, "id_encounter": 1624, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50340, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Muradin's Spyglass", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 73, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6453, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053000450134277, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Muradin's Spyglass", "name_ko_KR": "무라딘의 망원경", "name_fr_FR": "Longue-vue de Muradin", "name_de_DE": "Muradins Handfernrohr", "name_zh_CN": "穆拉丁的望远镜", "name_es_ES": "Catalejo de Muradin", "name_ru_RU": "Подзорная труба Мурадина", "name_it_IT": "Cannocchiale di Muradin", "name_pt_PT": "Luneta de Muradin", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50341, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unidentifiable Organ", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 75, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0089999437332153, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Unidentifiable Organ", "name_ko_KR": "정체불명의 기관", "name_fr_FR": "Organe non identifiable", "name_de_DE": "Unidentifizierbares Organ", "name_zh_CN": "未鉴定的器官", "name_es_ES": "Órgano inidentificable", "name_ru_RU": "Неизвестный орган", "name_it_IT": "Organo Non Identificabile", "name_pt_PT": "Órgão Não Identificado", "on_use": false, "id_encounter": 1631, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50342, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whispering Fanged Skull", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 76, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6453, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0125999450683594, "flags_1": 0, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Whispering Fanged Skull", "name_ko_KR": "속삭이는 송곳니 해골", "name_fr_FR": "Crâne à crocs murmurant", "name_de_DE": "Flüsternder Gezahnter Schädel", "name_zh_CN": "密语尖牙颅骨", "name_es_ES": "Calavera dentuda susurrante", "name_ru_RU": "Шепчущий клыкастый череп", "name_it_IT": "Teschio con Zanne Sussurranti", "name_pt_PT": "Caveira Sussurrante com Presas", "on_use": false, "id_encounter": 1625, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50343, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whispering Fanged Skull", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 76, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6463, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0162999629974365, "flags_1": 8, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Whispering Fanged Skull", "name_ko_KR": "속삭이는 송곳니 해골", "name_fr_FR": "Crâne à crocs murmurant", "name_de_DE": "Flüsternder Gezahnter Schädel", "name_zh_CN": "密语尖牙颅骨", "name_es_ES": "Calavera dentuda susurrante", "name_ru_RU": "Шепчущий клыкастый череп", "name_it_IT": "Teschio con Zanne Sussurranti", "name_pt_PT": "Caveira Sussurrante com Presas", "on_use": false, "id_encounter": 1625, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unidentifiable Organ", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 75, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0199999809265137, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Unidentifiable Organ", "name_ko_KR": "정체불명의 기관", "name_fr_FR": "Organe non identifiable", "name_de_DE": "Unidentifizierbares Organ", "name_zh_CN": "未鉴定的器官", "name_es_ES": "Órgano inidentificable", "name_ru_RU": "Неизвестный орган", "name_it_IT": "Organo Non Identificabile", "name_pt_PT": "Órgão Não Identificado", "on_use": false, "id_encounter": 1631, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50345, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Muradin's Spyglass", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 73, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0236999988555908, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Muradin's Spyglass", "name_ko_KR": "무라딘의 망원경", "name_fr_FR": "Longue-vue de Muradin", "name_de_DE": "Muradins Handfernrohr", "name_zh_CN": "穆拉丁的望远镜", "name_es_ES": "Catalejo de Muradin", "name_ru_RU": "Подзорная труба Мурадина", "name_it_IT": "Cannocchiale di Muradin", "name_pt_PT": "Luneta de Muradin", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sliver of Pure Ice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 74, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6644, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0273000001907349, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sliver of Pure Ice", "name_ko_KR": "순수한 얼음 조각", "name_fr_FR": "Esquille de glace pure", "name_de_DE": "Splitter aus reinem Eis", "name_zh_CN": "纯冰薄片", "name_es_ES": "Esquirla de hielo puro", "name_ru_RU": "Осколок чистейшего льда", "name_it_IT": "Scaglia di Puro Ghiaccio", "name_pt_PT": "Lasca de Puro Gelo", "on_use": true, "id_encounter": 1624, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50348, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dislodged Foreign Object", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 48, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6589, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0347000360488892, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Dislodged Foreign Object", "name_ko_KR": "제거된 이물질", "name_fr_FR": "Objet étranger déplacé", "name_de_DE": "Entfernter Fremdkörper", "name_zh_CN": "被摘除的外物", "name_es_ES": "Objeto desprendido extraño", "name_ru_RU": "Объект из другого измерения", "name_it_IT": "Corpo Estraneo Rimosso", "name_pt_PT": "Objeto Estrangeiro Desalojado", "on_use": false, "id_encounter": 1630, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50349, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corpse Tongue Coin", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 46, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0383000373840332, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Corpse Tongue Coin", "name_ko_KR": "시체조각 동전", "name_fr_FR": "Pièce du passeur", "name_de_DE": "Fährmünze der Toten", "name_zh_CN": "镇魂币", "name_es_ES": "Moneda de la lengua de un cadáver", "name_ru_RU": "Монета на удачу", "name_it_IT": "Moneta per Caronte", "name_pt_PT": "Moeda da Língua Cadavérica", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50351, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Abomination in a Jar", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 50, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3712, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045699954032898, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Tiny Abomination in a Jar", "name_ko_KR": "단지 안에 든 작은 누더기골렘", "name_fr_FR": "Petite abomination en bouteille", "name_de_DE": "Winzige Monstrosität im Glas", "name_zh_CN": "瓶中的小憎恶", "name_es_ES": "Abominación diminuta en un tarro", "name_ru_RU": "Миниатюрное поганище в колбе", "name_it_IT": "Piccolo Abominio in Scatola", "name_pt_PT": "Abominação Minúscula numa Jarra", "on_use": false, "id_encounter": 1631, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50352, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corpse Tongue Coin", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 46, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.049399971961975, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Corpse Tongue Coin", "name_ko_KR": "시체조각 동전", "name_fr_FR": "Pièce du passeur", "name_de_DE": "Fährmünze der Toten", "name_zh_CN": "镇魂币", "name_es_ES": "Moneda de la lengua de un cadáver", "name_ru_RU": "Монета на удачу", "name_it_IT": "Moneta per Caronte", "name_pt_PT": "Moeda da Língua Cadavérica", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50353, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dislodged Foreign Object", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 48, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6769, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9528999924659729, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Dislodged Foreign Object", "name_ko_KR": "제거된 이물질", "name_fr_FR": "Objet étranger déplacé", "name_de_DE": "Entfernter Fremdkörper", "name_zh_CN": "被摘除的外物", "name_es_ES": "Objeto desprendido extraño", "name_ru_RU": "Объект из другого измерения", "name_it_IT": "Corpo Estraneo Rimosso", "name_pt_PT": "Objeto Estrangeiro Desalojado", "on_use": false, "id_encounter": 1630, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50354, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bauble of True Blood", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 45, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95660001039505, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Bauble of True Blood", "name_ko_KR": "진정한 피의 노리개", "name_fr_FR": "Verroterie du sang véritable", "name_de_DE": "Schmuckstück des wahren Blutes", "name_zh_CN": "纯血珠饰", "name_es_ES": "Adorno de sangre verdadera", "name_ru_RU": "Подвеска истинной крови", "name_it_IT": "Bigiotteria di Vero Sangue", "name_pt_PT": "Bugiganga de Verossangue", "on_use": true, "id_encounter": 1633, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50355, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Herkuml War Token", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6681, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 1853100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9603000283241272, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Herkuml War Token", "name_ko_KR": "헤르쿰의 전쟁 징표", "name_fr_FR": "Jeton de guerre de Herkuml", "name_de_DE": "Herkumlkriegsabzeichen", "name_zh_CN": "圣战徽记", "name_es_ES": "Pieza Herkuml de guerra", "name_ru_RU": "Геркумлийский боевой знак", "name_it_IT": "Emblema di Guerra di Herkuml", "name_pt_PT": "Símbolo de Guerra Herkuml", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 50356, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corroded Skeleton Key", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9956, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 1911400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904999732971191, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Corroded Skeleton Key", "name_ko_KR": "부식된 해골 열쇠", "name_fr_FR": "Passe-partout corrodé", "name_de_DE": "Rostiger Dietrich", "name_zh_CN": "枯骨之钥", "name_es_ES": "Llave esqueleto corroída", "name_ru_RU": "Проржавевший костяной ключ", "name_it_IT": "Chiave Universale Corrosa", "name_pt_PT": "Chave-mestra Corroída", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 50357, "race_mask": 18446744073709551615, "desc": "Incapable of Scribing the Truth", "pad2": "", "pad1": "", "pad0": "", "name": "Maghia's Misguided Quill", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 1918300, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940999746322632, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Maghia's Misguided Quill", "name_ko_KR": "마기아의 잘못 놀린 깃대", "name_fr_FR": "Plume fautive de Maghia", "name_de_DE": "Maghias fehlgeleiteter Federkiel", "name_zh_CN": "玛格娅的谬论之笔", "name_es_ES": "Pluma deshonesta de Maghia", "name_ru_RU": "Заговоренное перо Магхиа", "name_it_IT": "Penna Maldestra di Maghia", "name_pt_PT": "Pena Equivocada de Maghia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 50358, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Lunar Dust", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6681, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 1925500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9977999925613403, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Purified Lunar Dust", "name_ko_KR": "정화된 달빛 먼지", "name_fr_FR": "Poussière lunaire purifiée", "name_de_DE": "Geläuterter Mondstaub", "name_zh_CN": "纯净月尘", "name_es_ES": "Polvo lunar purificado", "name_ru_RU": "Очищенная лунная пыль", "name_it_IT": "Polvere Lunare Purificata", "name_pt_PT": "Pó Lunar Purificado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 50359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Althor's Abacus", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 44, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6681, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0015000104904175, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Althor's Abacus", "name_ko_KR": "알소르의 연산장치", "name_fr_FR": "Boulier d'Althor", "name_de_DE": "Althors Abakus", "name_zh_CN": "阿尔索的算盘", "name_es_ES": "Ábaco de Althor", "name_ru_RU": "Счеты Алтора", "name_it_IT": "Abaco di Althor", "name_pt_PT": "Ábaco de Althor", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50360, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Phylactery of the Nameless Lich", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 49, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0052000284194946, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Phylactery of the Nameless Lich", "name_ko_KR": "이름없는 리치의 성물함", "name_fr_FR": "Phylactère de la liche sans nom", "name_de_DE": "Phylakterium des namenlosen Lichs", "name_zh_CN": "无名巫妖的护命匣", "name_es_ES": "Filacteria del exánime innombrable", "name_ru_RU": "Талисман безымянного лича", "name_it_IT": "Filatterio del Lich Senza Nome", "name_pt_PT": "Filactério do Lich Inominável", "on_use": false, "id_encounter": 1635, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50361, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sindragosa's Flawless Fang", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 51, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9956, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0088000297546387, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sindragosa's Flawless Fang", "name_ko_KR": "신드라고사의 완전무결한 송곳니", "name_fr_FR": "Croc parfait de Sindragosa", "name_de_DE": "Sindragosas makelloser Fangzahn", "name_zh_CN": "完美之牙", "name_es_ES": "Colmillo impecable de Sindragosa", "name_ru_RU": "Безупречный клык Синдрагосы", "name_it_IT": "Zanna Perfetta di Sindragosa", "name_pt_PT": "Presa Impecável de Sindragosa", "on_use": true, "id_encounter": 1635, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50362, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deathbringer's Will", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 47, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6769, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0125000476837158, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Deathbringer's Will", "name_ko_KR": "죽음인도자의 의지", "name_fr_FR": "Volonté de porte-mort", "name_de_DE": "Wille des Todesbringers", "name_zh_CN": "死神的意志", "name_es_ES": "Testamento del Libramorte", "name_ru_RU": "Воля Смертоносного", "name_it_IT": "Volontà dell'Araldo della Morte", "name_pt_PT": "Determinação do Mortífero", "on_use": false, "id_encounter": 1628, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50363, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deathbringer's Will", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 47, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6473, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0161999464035034, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Deathbringer's Will", "name_ko_KR": "죽음인도자의 의지", "name_fr_FR": "Volonté de porte-mort", "name_de_DE": "Wille des Todesbringers", "name_zh_CN": "死神的意志", "name_es_ES": "Testamento del Libramorte", "name_ru_RU": "Воля Смертоносного", "name_it_IT": "Volontà dell'Araldo della Morte", "name_pt_PT": "Determinação do Mortífero", "on_use": false, "id_encounter": 1628, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50364, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sindragosa's Flawless Fang", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 51, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0197999477386475, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sindragosa's Flawless Fang", "name_ko_KR": "신드라고사의 완전무결한 송곳니", "name_fr_FR": "Croc parfait de Sindragosa", "name_de_DE": "Sindragosas makelloser Fangzahn", "name_zh_CN": "完美之牙", "name_es_ES": "Colmillo impecable de Sindragosa", "name_ru_RU": "Безупречный клык Синдрагосы", "name_it_IT": "Zanna Perfetta di Sindragosa", "name_pt_PT": "Presa Impecável de Sindragosa", "on_use": true, "id_encounter": 1635, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50365, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Phylactery of the Nameless Lich", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 49, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0234999656677246, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Phylactery of the Nameless Lich", "name_ko_KR": "이름없는 리치의 성물함", "name_fr_FR": "Phylactère de la liche sans nom", "name_de_DE": "Phylakterium des namenlosen Lichs", "name_zh_CN": "无名巫妖的护命匣", "name_es_ES": "Filacteria del exánime innombrable", "name_ru_RU": "Талисман безымянного лича", "name_it_IT": "Filatterio del Lich Senza Nome", "name_pt_PT": "Filactério do Lich Inominável", "on_use": false, "id_encounter": 1635, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50366, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Althor's Abacus", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 44, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0271999835968018, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Althor's Abacus", "name_ko_KR": "알소르의 연산장치", "name_fr_FR": "Boulier d'Althor", "name_de_DE": "Althors Abakus", "name_zh_CN": "阿尔索的算盘", "name_es_ES": "Ábaco de Althor", "name_ru_RU": "Счеты Алтора", "name_it_IT": "Abaco di Althor", "name_pt_PT": "Ábaco de Althor", "on_use": false, "id_encounter": 1626, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50706, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Abomination in a Jar", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 50, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3295, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030900001525879, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Tiny Abomination in a Jar", "name_ko_KR": "단지 안에 든 작은 누더기골렘", "name_fr_FR": "Petite abomination en bouteille", "name_de_DE": "Winzige Monstrosität im Glas", "name_zh_CN": "瓶中的小憎恶", "name_es_ES": "Abominación diminuta en un tarro", "name_ru_RU": "Миниатюрное поганище в колбе", "name_it_IT": "Piccolo Abominio in Scatola", "name_pt_PT": "Abominação Minúscula numa Jarra", "on_use": false, "id_encounter": 1631, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 50726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bauble of True Blood", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 45, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6638, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.957099974155426, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Bauble of True Blood", "name_ko_KR": "진정한 피의 노리개", "name_fr_FR": "Verroterie du sang véritable", "name_de_DE": "Schmuckstück des wahren Blutes", "name_zh_CN": "纯血珠饰", "name_es_ES": "Adorno de sangre verdadera", "name_ru_RU": "Подвеска истинной крови", "name_it_IT": "Bigiotteria di Vero Sangue", "name_pt_PT": "Bugiganga de Verossangue", "on_use": true, "id_encounter": 1633, "id_journal_instance": 758, "id_map": 631, "instance_type": 2}, {"id": 51377, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0051000118255615, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 51378, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 51378, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0088000297546387, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 51377, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 52199, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Demon Panther", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141015, "buy_price": 564063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9718000292778015, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2200, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2521, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Demon Panther", "name_ko_KR": "조각상 - 악마 표범", "name_fr_FR": "Figurine de panthère démoniaque", "name_de_DE": "Figur - Dämonenpanther", "name_zh_CN": "雕像 - 恶魔豹", "name_es_ES": "Figurilla: pantera demoníaca", "name_ru_RU": "Статуэтка демонической пантеры", "name_it_IT": "Statuetta - Pantera Demoniaca", "name_pt_PT": "Estatueta - Pantera Demoníaca", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 52351, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - King of Boars", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141015, "buy_price": 564063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944000244140625, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2200, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2521, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - King of Boars", "name_ko_KR": "조각상 - 멧돼지 왕", "name_fr_FR": "Figurine du roi des sangliers", "name_de_DE": "Figur - König der Eber", "name_zh_CN": "雕像 - 野猪之王", "name_es_ES": "Figurilla: rey de los jabalíes", "name_ru_RU": "Статуэтка короля вепрей", "name_it_IT": "Statuetta - Re dei Cinghiali", "name_pt_PT": "Estatueta - Rei dos Javalis", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 52352, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Earthen Guardian", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141015, "buy_price": 564063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9980999827384949, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2200, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2521, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Earthen Guardian", "name_ko_KR": "조각상 - 대지 수호자", "name_fr_FR": "Figurine de gardien terrestre", "name_de_DE": "Figur - Irdener Wächter", "name_zh_CN": "雕像 - 土灵守护者", "name_es_ES": "Figurilla: guardián terráneo", "name_ru_RU": "Статуэтка земельника-стража", "name_it_IT": "Statuetta - Custode della Terra", "name_pt_PT": "Estatueta - Guardião Terrano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 52353, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Jeweled Serpent", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141015, "buy_price": 564063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017000436782837, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2200, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2521, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Jeweled Serpent", "name_ko_KR": "조각상 - 보석 박힌 뱀", "name_fr_FR": "Figurine de serpent ornée de joyaux", "name_de_DE": "Figur - Juwelenbesetzte Schlange", "name_zh_CN": "雕像 - 宝石毒蛇", "name_es_ES": "Figurilla: serpiente con joyas", "name_ru_RU": "Статуэтка украшенной камнями змеи", "name_it_IT": "Statuetta - Serpente Ingioiellato", "name_pt_PT": "Estatueta - Serpente Cravejada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 52354, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine - Dream Owl", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141015, "buy_price": 564063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053999423980713, "flags_1": 1088, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2200, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2521, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Figurine - Dream Owl", "name_ko_KR": "조각상 - 꿈의 올빼미", "name_fr_FR": "Figurine de hibou onirique", "name_de_DE": "Figur - Traumeule", "name_zh_CN": "雕像 - 梦枭", "name_es_ES": "Figurilla: búho onírico", "name_ru_RU": "Статуэтка спящей совы", "name_it_IT": "Statuetta - Gufo Onirico", "name_pt_PT": "Estatueta - Coruja Onírica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 53597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Toy Windmill", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5259, "stat_alloc_2": 5259, "stat_alloc_3": 5258, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 7, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6784, "buy_price": 33923, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053999423980713, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Toy Windmill", "name_ko_KR": "장난감 풍차", "name_fr_FR": "Moulin à vent miniature", "name_de_DE": "Spielzeugwindmühle", "name_zh_CN": "玩具风车", "name_es_ES": "Molino de juguete", "name_ru_RU": "Игрушечная ветряная мельница", "name_it_IT": "Giostra Portatile", "name_pt_PT": "Moinho de Brinquedo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 54547, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cracked Jewelry Box", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 98802, "buy_price": 395210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cracked Jewelry Box", "name_ko_KR": "금이 간 보석함", "name_fr_FR": "Boîte à bijoux craquelée", "name_de_DE": "Rissige Schmuckschatulle", "name_zh_CN": "破裂的珠宝盒", "name_es_ES": "Joyero rajado", "name_ru_RU": "Треснувшая шкатулка для драгоценностей", "name_it_IT": "Scrigno di Gioielli Crepato", "name_pt_PT": "Cracked Jewelry Box", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 54569, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sharpened Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 82, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sharpened Twilight Scale", "name_ko_KR": "날카로운 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule aiguisée", "name_de_DE": "Geschärfte Zwielichtschuppe", "name_zh_CN": "锐锋暮光龙鳞", "name_es_ES": "Escama Crepuscular afilada", "name_ru_RU": "Заостренная сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Affilata", "name_pt_PT": "Escama Crepuscular Afiada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54571, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 83, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9945999979972839, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Petrified Twilight Scale", "name_ko_KR": "석화된 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule pétrifiée", "name_de_DE": "Versteinerte Zwielichtschuppe", "name_zh_CN": "石化暮光龙鳞", "name_es_ES": "Escama Crepuscular petrificada", "name_ru_RU": "Окаменелая сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Pietrificata", "name_pt_PT": "Escama Crepuscular Petrificada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charred Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 85, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983000159263611, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Charred Twilight Scale", "name_ko_KR": "그을린 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule carbonisée", "name_de_DE": "Verkohlte Zwielichtschuppe", "name_zh_CN": "焦黑暮光龙鳞", "name_es_ES": "Escama Crepuscular carbonizada", "name_ru_RU": "Обугленная сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Carbonizzata", "name_pt_PT": "Escama Crepuscular Chamuscada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54573, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glowing Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 84, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Glowing Twilight Scale", "name_ko_KR": "빛나는 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule luminescente", "name_de_DE": "Leuchtende Zwielichtschuppe", "name_zh_CN": "明亮暮光龙鳞", "name_es_ES": "Escama Crepuscular resplandeciente", "name_ru_RU": "Светящаяся сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Brillante", "name_pt_PT": "Escama Crepuscular Faiscante", "on_use": true, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54588, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charred Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 85, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9835000038146973, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Charred Twilight Scale", "name_ko_KR": "그을린 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule carbonisée", "name_de_DE": "Verkohlte Zwielichtschuppe", "name_zh_CN": "焦黑暮光龙鳞", "name_es_ES": "Escama Crepuscular carbonizada", "name_ru_RU": "Обугленная сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Carbonizzata", "name_pt_PT": "Escama Crepuscular Chamuscada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54589, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glowing Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 84, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9871000051498413, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Glowing Twilight Scale", "name_ko_KR": "빛나는 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule luminescente", "name_de_DE": "Leuchtende Zwielichtschuppe", "name_zh_CN": "明亮暮光龙鳞", "name_es_ES": "Escama Crepuscular resplandeciente", "name_ru_RU": "Светящаяся сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Brillante", "name_pt_PT": "Escama Crepuscular Faiscante", "on_use": true, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54590, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sharpened Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 82, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9908000230789185, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sharpened Twilight Scale", "name_ko_KR": "날카로운 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule aiguisée", "name_de_DE": "Geschärfte Zwielichtschuppe", "name_zh_CN": "锐锋暮光龙鳞", "name_es_ES": "Escama Crepuscular afilada", "name_ru_RU": "Заостренная сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Affilata", "name_pt_PT": "Escama Crepuscular Afiada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 54591, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Twilight Scale", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 83, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944999814033508, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Petrified Twilight Scale", "name_ko_KR": "석화된 황혼의 비늘", "name_fr_FR": "Ecaille du Crépuscule pétrifiée", "name_de_DE": "Versteinerte Zwielichtschuppe", "name_zh_CN": "石化暮光龙鳞", "name_es_ES": "Escama Crepuscular petrificada", "name_ru_RU": "Окаменелая сумеречная чешуя", "name_it_IT": "Scaglia del Crepuscolo Pietrificata", "name_pt_PT": "Escama Crepuscular Petrificada", "on_use": false, "id_encounter": 1652, "id_journal_instance": 761, "id_map": 724, "instance_type": 2}, {"id": 55237, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Porcelain Crab", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 101, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 28437, "buy_price": 142189, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Porcelain Crab", "name_ko_KR": "도자기 게", "name_fr_FR": "Crabe en porcelaine", "name_de_DE": "Porzellankrebs", "name_zh_CN": "瓷蟹", "name_es_ES": "Cangrejo de porcelana", "name_ru_RU": "Фарфоровый краб", "name_it_IT": "Granchio di Porcellana", "name_pt_PT": "Caranguejo de Porcelana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55251, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of the Ocean", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 100, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 27824, "buy_price": 139120, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Might of the Ocean", "name_ko_KR": "대양의 힘", "name_fr_FR": "Puissance de l'océan", "name_de_DE": "Macht des Ozeans", "name_zh_CN": "海洋之力", "name_es_ES": "Poderío del océano", "name_ru_RU": "Мощь океана", "name_it_IT": "Forza dell'Oceano", "name_pt_PT": "Poder do Oceano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55256, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sea Star", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 102, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 28332, "buy_price": 141661, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020300030708313, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Sea Star", "name_ko_KR": "불가사리", "name_fr_FR": "Etoile de mer", "name_de_DE": "Seestern", "name_zh_CN": "碧海之星", "name_es_ES": "Estrella de mar", "name_ru_RU": "Морская звезда", "name_it_IT": "Stella Marina", "name_pt_PT": "Estrela do Mar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55266, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grace of the Herald", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 103, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 27310, "buy_price": 136552, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9835000038146973, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Grace of the Herald", "name_ko_KR": "사자의 은총", "name_fr_FR": "Grâce du héraut", "name_de_DE": "Gunst des Herolds", "name_zh_CN": "先驱之握", "name_es_ES": "Gracia del Heraldo", "name_ru_RU": "Милость глашатая", "name_it_IT": "Grazia dell'Araldo", "name_pt_PT": "Graça do Arauto", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55787, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Witching Hourglass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 104, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 28951, "buy_price": 144757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0426000356674194, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 29, "inv_type": 12, "quality": 3, "name_en_US": "Witching Hourglass", "name_ko_KR": "마녀의 모래시계", "name_fr_FR": "Sablier ensorcelant", "name_de_DE": "Geisterstundenglas", "name_zh_CN": "巫术沙漏", "name_es_ES": "Reloj de arena de brujería", "name_ru_RU": "Ведьминские песочные часы", "name_it_IT": "Clessidra delle Streghe", "name_pt_PT": "Ampulheta da Bruxaria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55795, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Key to the Endless Chamber", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 105, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 27724, "buy_price": 138620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Key to the Endless Chamber", "name_ko_KR": "무한한 방의 열쇠", "name_fr_FR": "Clé de la chambre sans fin", "name_de_DE": "Schlüssel zur unendlichen Kammer", "name_zh_CN": "无尽密室之匙", "name_es_ES": "Llave a la Cámara sin Fin", "name_ru_RU": "Ключ от Бесконечного Чертога", "name_it_IT": "Chiave della Sala Sconfinata", "name_pt_PT": "Chave da Câmara Infinda", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tendrils of Burrowing Dark", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 109, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 371, "buy_price": 1858, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9799000024795532, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Tendrils of Burrowing Dark", "name_ko_KR": "파고드는 어둠의 덩굴", "name_fr_FR": "Vrilles de noirceur fouisseuse", "name_de_DE": "Ranken des vergrabenden Dunkels", "name_zh_CN": "黑暗潜藏卷须", "name_es_ES": "Zarcillos de oscuridad penetrante", "name_ru_RU": "Витки могильной тьмы", "name_it_IT": "Tentacoli dell'Oscurità Nascosta", "name_pt_PT": "Gavinhas da Escuridão Penetrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55814, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magnetite Mirror", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 107, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 27618, "buy_price": 138093, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9945999979972839, "flags_1": 524288, "flags_2": 8208, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Magnetite Mirror", "name_ko_KR": "자철석 거울", "name_fr_FR": "Miroir en magnétite", "name_de_DE": "Magnetitspiegel", "name_zh_CN": "磁力之镜", "name_es_ES": "Espejo de calamita", "name_ru_RU": "Магнетитовое зерцало", "name_it_IT": "Specchio di Magnetite", "name_pt_PT": "Espelho de Magnetita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55816, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leaden Despair", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 106, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 27824, "buy_price": 139120, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Leaden Despair", "name_ko_KR": "납빛 절망", "name_fr_FR": "Désespoir plombé", "name_de_DE": "Bleierne Verzweiflung", "name_zh_CN": "沉重绝望", "name_es_ES": "Desesperación plomiza", "name_ru_RU": "Мрак отчаяния", "name_it_IT": "Disperazione Cupa", "name_pt_PT": "Desespero Plúmbeo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55819, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tear of Blood", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 108, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 28129, "buy_price": 140647, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0130000114440918, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Tear of Blood", "name_ko_KR": "피눈물", "name_fr_FR": "Larme de sang", "name_de_DE": "Blutträne", "name_zh_CN": "血红之泪", "name_es_ES": "Lágrima de sangre", "name_ru_RU": "Кровавая слеза", "name_it_IT": "Lacrima di Sangue", "name_pt_PT": "Lágrima de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55845, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Thunder", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 110, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9613000154495239, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Thunder", "name_ko_KR": "천둥의 심장", "name_fr_FR": "Cœur de tonnerre", "name_de_DE": "Herz des Sturms", "name_zh_CN": "雷霆之心", "name_es_ES": "Corazón de trueno", "name_ru_RU": "Сердце грома", "name_it_IT": "Cuore di Tuono", "name_pt_PT": "Coração do Trovão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55854, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rainsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020799994468689, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Rainsong", "name_ko_KR": "비의 노래", "name_fr_FR": "Chantepluie", "name_de_DE": "Regengesang", "name_zh_CN": "雨歌", "name_es_ES": "Cantolluvia", "name_ru_RU": "Песнь дождя", "name_it_IT": "Canto della Pioggia", "name_pt_PT": "Canção da Chuva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55868, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Solace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 112, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31208, "buy_price": 156041, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9721999764442444, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Solace", "name_ko_KR": "위안의 심장", "name_fr_FR": "Cœur de réconfort", "name_de_DE": "Herz des Trostes", "name_zh_CN": "抚慰之心", "name_es_ES": "Corazón de consuelo", "name_ru_RU": "Сердце Утешения", "name_it_IT": "Cuore di Conforto", "name_pt_PT": "Coração do Consolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55874, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tia's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 114, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32765, "buy_price": 163826, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0206999778747559, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Tia's Grace", "name_ko_KR": "티아의 은총", "name_fr_FR": "Grâce de Tia", "name_de_DE": "Tias Gunst", "name_zh_CN": "提亚的优雅", "name_es_ES": "Gracia de Tia", "name_ru_RU": "Благоволение Тиа", "name_it_IT": "Grazia di Siamat", "name_pt_PT": "Graça de Tia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sorrowsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 113, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 433, "buy_price": 2167, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Sorrowsong", "name_ko_KR": "슬픔의 노래", "name_fr_FR": "Tristechant", "name_de_DE": "Klagelied", "name_zh_CN": "悲歌", "name_es_ES": "Canción de penas", "name_ru_RU": "Песнь печали", "name_it_IT": "Canto della Tristezza", "name_pt_PT": "Canção do Pesar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55881, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impetuous Query", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33590, "buy_price": 167951, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463999509811401, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Impetuous Query", "name_ko_KR": "성급한 의혹", "name_fr_FR": "Demande impétueuse", "name_de_DE": "Ungestümes Ersuchen", "name_zh_CN": "鲁莽之询", "name_es_ES": "Petición impetuosa", "name_ru_RU": "Допрос с пристрастием", "name_it_IT": "Richiesta Impetuosa", "name_pt_PT": "Dúvida Impetuosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55889, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anhuur's Hymnal", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 115, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32171, "buy_price": 160856, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Anhuur's Hymnal", "name_ko_KR": "안후르의 성가집", "name_fr_FR": "Hymnaire d'Anhuur", "name_de_DE": "Anhuurs Gesangbuch", "name_zh_CN": "安努尔之书", "name_es_ES": "Cantoral de Anhuur", "name_ru_RU": "Песенник Ануура", "name_it_IT": "Innario di Anhuur", "name_pt_PT": "Hinário de Anhuur", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 55995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood of Isiset", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 116, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30495, "buy_price": 152478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.949999988079071, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Blood of Isiset", "name_ko_KR": "이시세트의 핏방울", "name_fr_FR": "Sang d'Isiset", "name_de_DE": "Blut von Isiset", "name_zh_CN": "伊希斯特的精华", "name_es_ES": "Sangre de Isiset", "name_ru_RU": "Кровь Изисет", "name_it_IT": "Sangue di Isiset", "name_pt_PT": "Sangue de Isiset", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56100, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Right Eye of Rajh", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 118, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32765, "buy_price": 163826, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0206999778747559, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Right Eye of Rajh", "name_ko_KR": "라지의 오른쪽 눈", "name_fr_FR": "Oeil droit de Rajh", "name_de_DE": "Rechtes Auge von Rajh", "name_zh_CN": "拉夏的右眼", "name_es_ES": "Ojo derecho de Rajh", "name_ru_RU": "Правый глаз Раджа", "name_it_IT": "Occhio Destro di Rajh", "name_pt_PT": "Olho Direito de Rajh", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56102, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Left Eye of Rajh", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 117, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33002, "buy_price": 165013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0281000137329102, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Left Eye of Rajh", "name_ko_KR": "라지의 왼쪽 눈", "name_fr_FR": "Oeil gauche de Rajh", "name_de_DE": "Linkes Auge von Rajh", "name_zh_CN": "拉夏的左眼", "name_es_ES": "Ojo izquierdo de Rajh", "name_ru_RU": "Левый глаз Раджа", "name_it_IT": "Occhio Sinistro di Rajh", "name_pt_PT": "Olho Esquerdo de Rajh", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skardyn's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 122, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32171, "buy_price": 160856, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Skardyn's Grace", "name_ko_KR": "스카르딘의 은총", "name_fr_FR": "Grâce de Skardyn", "name_de_DE": "Gunst der Skardyn", "name_zh_CN": "灰鳞的优雅", "name_es_ES": "Gracia de skardyn", "name_ru_RU": "Милость Скардина", "name_it_IT": "Grazia di Skardyn", "name_pt_PT": "Graça dos Skardyn", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56121, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Throngus's Finger", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 123, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32880, "buy_price": 164403, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Throngus's Finger", "name_ko_KR": "트롱구스의 손가락", "name_fr_FR": "Doigt de Throngus", "name_de_DE": "Finger von Throngus", "name_zh_CN": "索朗格斯的指节", "name_es_ES": "Dedo de Throngus", "name_ru_RU": "Палец Тронга", "name_it_IT": "Dito di Throngus", "name_pt_PT": "Dedo de Throngus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Khardros", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 121, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31815, "buy_price": 159075, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991100013256073, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Khardros", "name_ko_KR": "카드로스의 징표", "name_fr_FR": "Marque de Khardros", "name_de_DE": "Mal von Khardros", "name_zh_CN": "卡德罗斯的印记", "name_es_ES": "Marca de Khardros", "name_ru_RU": "Знак Кардроса", "name_it_IT": "Contrassegno di Khardros", "name_pt_PT": "Marca de Khardros", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56136, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Egg Shell", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 119, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32286, "buy_price": 161434, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8200, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Egg Shell", "name_ko_KR": "썩은 알껍질", "name_fr_FR": "Coquille d'œuf corrompu", "name_de_DE": "Verderbte Eierschale", "name_zh_CN": "被腐蚀的蛋壳", "name_es_ES": "Cáscara de huevo corrupto", "name_ru_RU": "Оскверненная яичная скорлупа", "name_it_IT": "Guscio d'Uovo Corrotto", "name_pt_PT": "Casca de Ovo Corrompida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56138, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gale of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 120, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 422, "buy_price": 2113, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Gale of Shadows", "name_ko_KR": "암흑 돌풍", "name_fr_FR": "Bourrasque d'ombres", "name_de_DE": "Schattensturm", "name_zh_CN": "暗影飓风", "name_es_ES": "Vendaval de sombras", "name_ru_RU": "Буря теней", "name_it_IT": "Zefiro delle Ombre", "name_pt_PT": "Vendaval de Sombras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56280, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Porcelain Crab", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 101, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31214, "buy_price": 156073, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Porcelain Crab", "name_ko_KR": "도자기 게", "name_fr_FR": "Crabe en porcelaine", "name_de_DE": "Porzellankrebs", "name_zh_CN": "瓷蟹", "name_es_ES": "Cangrejo de porcelana", "name_ru_RU": "Фарфоровый краб", "name_it_IT": "Granchio di Porcellana", "name_pt_PT": "Caranguejo de Porcelana", "on_use": false, "id_encounter": 103, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 56285, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of the Ocean", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 100, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31805, "buy_price": 159027, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9908000230789185, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Might of the Ocean", "name_ko_KR": "대양의 힘", "name_fr_FR": "Puissance de l'océan", "name_de_DE": "Macht des Ozeans", "name_zh_CN": "海洋之力", "name_es_ES": "Poderío del océano", "name_ru_RU": "Мощь океана", "name_it_IT": "Forza dell'Oceano", "name_pt_PT": "Poder do Oceano", "on_use": true, "id_encounter": 104, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 56290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sea Star", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 102, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33246, "buy_price": 166233, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0356999635696411, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Sea Star", "name_ko_KR": "불가사리", "name_fr_FR": "Etoile de mer", "name_de_DE": "Seestern", "name_zh_CN": "碧海之星", "name_es_ES": "Estrella de mar", "name_ru_RU": "Морская звезда", "name_it_IT": "Stella Marina", "name_pt_PT": "Estrela do Mar", "on_use": true, "id_encounter": 104, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 56295, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grace of the Herald", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 103, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30620, "buy_price": 153104, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9538999795913696, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Grace of the Herald", "name_ko_KR": "사자의 은총", "name_fr_FR": "Grâce du héraut", "name_de_DE": "Gunst des Herolds", "name_zh_CN": "先驱之握", "name_es_ES": "Gracia del Heraldo", "name_ru_RU": "Милость глашатая", "name_it_IT": "Grazia dell'Araldo", "name_pt_PT": "Graça do Arauto", "on_use": false, "id_encounter": 106, "id_journal_instance": 66, "id_map": 645, "instance_type": 1}, {"id": 56320, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Witching Hourglass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 104, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32059, "buy_price": 160295, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987000226974487, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Witching Hourglass", "name_ko_KR": "마녀의 모래시계", "name_fr_FR": "Sablier ensorcelant", "name_de_DE": "Geisterstundenglas", "name_zh_CN": "巫术沙漏", "name_es_ES": "Reloj de arena de brujería", "name_ru_RU": "Ведьминские песочные часы", "name_it_IT": "Clessidra delle Streghe", "name_pt_PT": "Ampulheta da Bruxaria", "on_use": false, "id_encounter": 109, "id_journal_instance": 66, "id_map": 645, "instance_type": 1}, {"id": 56328, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Key to the Endless Chamber", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 105, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33002, "buy_price": 165013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0281000137329102, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Key to the Endless Chamber", "name_ko_KR": "무한한 방의 열쇠", "name_fr_FR": "Clé de la chambre sans fin", "name_de_DE": "Schlüssel zur unendlichen Kammer", "name_zh_CN": "无尽密室之匙", "name_es_ES": "Llave a la Cámara sin Fin", "name_ru_RU": "Ключ от Бесконечного Чертога", "name_it_IT": "Chiave della Sala Sconfinata", "name_pt_PT": "Chave da Câmara Infinda", "on_use": false, "id_encounter": 110, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 56339, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tendrils of Burrowing Dark", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 109, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 415, "buy_price": 2075, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9948999881744385, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tendrils of Burrowing Dark", "name_ko_KR": "파고드는 어둠의 덩굴", "name_fr_FR": "Vrilles de noirceur fouisseuse", "name_de_DE": "Ranken des vergrabenden Dunkels", "name_zh_CN": "黑暗潜藏卷须", "name_es_ES": "Zarcillos de oscuridad penetrante", "name_ru_RU": "Витки могильной тьмы", "name_it_IT": "Tentacoli dell'Oscurità Nascosta", "name_pt_PT": "Gavinhas da Escuridão Penetrante", "on_use": false, "id_encounter": 112, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 56345, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magnetite Mirror", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 107, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32643, "buy_price": 163216, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0168999433517456, "flags_1": 524288, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Magnetite Mirror", "name_ko_KR": "자철석 거울", "name_fr_FR": "Miroir en magnétite", "name_de_DE": "Magnetitspiegel", "name_zh_CN": "磁力之镜", "name_es_ES": "Espejo de calamita", "name_ru_RU": "Магнетитовое зерцало", "name_it_IT": "Specchio di Magnetite", "name_pt_PT": "Espelho de Magnetita", "on_use": true, "id_encounter": 113, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 56347, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leaden Despair", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 106, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32880, "buy_price": 164403, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Leaden Despair", "name_ko_KR": "납빛 절망", "name_fr_FR": "Désespoir plombé", "name_de_DE": "Bleierne Verzweiflung", "name_zh_CN": "沉重绝望", "name_es_ES": "Desesperación plomiza", "name_ru_RU": "Мрак отчаяния", "name_it_IT": "Disperazione Cupa", "name_pt_PT": "Desespero Plúmbeo", "on_use": false, "id_encounter": 113, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 56351, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tear of Blood", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 108, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30986, "buy_price": 154934, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tear of Blood", "name_ko_KR": "피눈물", "name_fr_FR": "Larme de sang", "name_de_DE": "Blutträne", "name_zh_CN": "血红之泪", "name_es_ES": "Lágrima de sangre", "name_ru_RU": "Кровавая слеза", "name_it_IT": "Lacrima di Sangue", "name_pt_PT": "Lágrima de Sangue", "on_use": false, "id_encounter": 113, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 56370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Thunder", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 110, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30864, "buy_price": 154324, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9614999890327454, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Thunder", "name_ko_KR": "천둥의 심장", "name_fr_FR": "Cœur de tonnerre", "name_de_DE": "Herz des Sturms", "name_zh_CN": "雷霆之心", "name_es_ES": "Corazón de trueno", "name_ru_RU": "Сердце грома", "name_it_IT": "Cuore di Tuono", "name_pt_PT": "Coração do Trovão", "on_use": true, "id_encounter": 116, "id_journal_instance": 68, "id_map": 657, "instance_type": 1}, {"id": 56377, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rainsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31693, "buy_price": 158465, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Rainsong", "name_ko_KR": "비의 노래", "name_fr_FR": "Chantepluie", "name_de_DE": "Regengesang", "name_zh_CN": "雨歌", "name_es_ES": "Cantolluvia", "name_ru_RU": "Песнь дождя", "name_it_IT": "Canto della Pioggia", "name_pt_PT": "Canção da Chuva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56393, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Solace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 112, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31214, "buy_price": 156073, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Solace", "name_ko_KR": "위안의 심장", "name_fr_FR": "Cœur de réconfort", "name_de_DE": "Herz des Trostes", "name_zh_CN": "抚慰之心", "name_es_ES": "Corazón de consuelo", "name_ru_RU": "Сердце Утешения", "name_it_IT": "Cuore di Conforto", "name_pt_PT": "Coração do Consolo", "on_use": false, "id_encounter": 119, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 56394, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tia's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 114, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31333, "buy_price": 156667, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9761000275611877, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tia's Grace", "name_ko_KR": "티아의 은총", "name_fr_FR": "Grâce de Tia", "name_de_DE": "Tias Gunst", "name_zh_CN": "提亚的优雅", "name_es_ES": "Gracia de Tia", "name_ru_RU": "Благоволение Тиа", "name_it_IT": "Grazia di Siamat", "name_pt_PT": "Graça de Tia", "on_use": false, "id_encounter": 122, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 56400, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sorrowsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 113, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 427, "buy_price": 2137, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0246000289916992, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Sorrowsong", "name_ko_KR": "슬픔의 노래", "name_fr_FR": "Tristechant", "name_de_DE": "Klagelied", "name_zh_CN": "悲歌", "name_es_ES": "Canción de penas", "name_ru_RU": "Песнь печали", "name_it_IT": "Canto della Tristezza", "name_pt_PT": "Canção do Pesar", "on_use": false, "id_encounter": 122, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 56406, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impetuous Query", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33599, "buy_price": 167999, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0467000007629395, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Impetuous Query", "name_ko_KR": "성급한 의혹", "name_fr_FR": "Demande impétueuse", "name_de_DE": "Ungestümes Ersuchen", "name_zh_CN": "鲁莽之询", "name_es_ES": "Petición impetuosa", "name_ru_RU": "Допрос с пристрастием", "name_it_IT": "Richiesta Impetuosa", "name_pt_PT": "Dúvida Impetuosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56407, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anhuur's Hymnal", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 115, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 396, "buy_price": 1982, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502999782562256, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Anhuur's Hymnal", "name_ko_KR": "안후르의 성가집", "name_fr_FR": "Hymnaire d'Anhuur", "name_de_DE": "Anhuurs Gesangbuch", "name_zh_CN": "安努尔之书", "name_es_ES": "Cantoral de Anhuur", "name_ru_RU": "Песенник Ануура", "name_it_IT": "Innario di Anhuur", "name_pt_PT": "Hinário de Anhuur", "on_use": false, "id_encounter": 124, "id_journal_instance": 70, "id_map": 644, "instance_type": 1}, {"id": 56414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood of Isiset", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 116, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31330, "buy_price": 156651, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9760000109672546, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Blood of Isiset", "name_ko_KR": "이시세트의 핏방울", "name_fr_FR": "Sang d'Isiset", "name_de_DE": "Blut von Isiset", "name_zh_CN": "伊希斯特的精华", "name_es_ES": "Sangre de Isiset", "name_ru_RU": "Кровь Изисет", "name_it_IT": "Sangue di Isiset", "name_pt_PT": "Sangue de Isiset", "on_use": false, "id_encounter": 127, "id_journal_instance": 70, "id_map": 644, "instance_type": 1}, {"id": 56427, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Left Eye of Rajh", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 117, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30498, "buy_price": 152494, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9501000046730042, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Left Eye of Rajh", "name_ko_KR": "라지의 왼쪽 눈", "name_fr_FR": "Oeil gauche de Rajh", "name_de_DE": "Linkes Auge von Rajh", "name_zh_CN": "拉夏的左眼", "name_es_ES": "Ojo izquierdo de Rajh", "name_ru_RU": "Левый глаз Раджа", "name_it_IT": "Occhio Sinistro di Rajh", "name_pt_PT": "Olho Esquerdo de Rajh", "on_use": false, "id_encounter": 130, "id_journal_instance": 70, "id_map": 644, "instance_type": 1}, {"id": 56431, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Right Eye of Rajh", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 118, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30970, "buy_price": 154854, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9648000001907349, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Right Eye of Rajh", "name_ko_KR": "라지의 오른쪽 눈", "name_fr_FR": "Oeil droit de Rajh", "name_de_DE": "Rechtes Auge von Rajh", "name_zh_CN": "拉夏的右眼", "name_es_ES": "Ojo derecho de Rajh", "name_ru_RU": "Правый глаз Раджа", "name_it_IT": "Occhio Destro di Rajh", "name_pt_PT": "Olho Direito de Rajh", "on_use": false, "id_encounter": 130, "id_journal_instance": 70, "id_map": 644, "instance_type": 1}, {"id": 56440, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skardyn's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 122, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32884, "buy_price": 164420, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024399995803833, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Skardyn's Grace", "name_ko_KR": "스카르딘의 은총", "name_fr_FR": "Grâce de Skardyn", "name_de_DE": "Gunst der Skardyn", "name_zh_CN": "灰鳞的优雅", "name_es_ES": "Gracia de skardyn", "name_ru_RU": "Милость Скардина", "name_it_IT": "Grazia di Skardyn", "name_pt_PT": "Graça dos Skardyn", "on_use": true, "id_encounter": 131, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 56449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Throngus's Finger", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 123, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31580, "buy_price": 157903, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Throngus's Finger", "name_ko_KR": "트롱구스의 손가락", "name_fr_FR": "Doigt de Throngus", "name_de_DE": "Finger von Throngus", "name_zh_CN": "索朗格斯的指节", "name_es_ES": "Dedo de Throngus", "name_ru_RU": "Палец Тронга", "name_it_IT": "Dito di Throngus", "name_pt_PT": "Dedo de Throngus", "on_use": false, "id_encounter": 132, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 56458, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Khardros", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 121, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32643, "buy_price": 163216, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0168999433517456, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Khardros", "name_ko_KR": "카드로스의 징표", "name_fr_FR": "Marque de Khardros", "name_de_DE": "Mal von Khardros", "name_zh_CN": "卡德罗斯的印记", "name_es_ES": "Marca de Khardros", "name_ru_RU": "Знак Кардроса", "name_it_IT": "Contrassegno di Khardros", "name_pt_PT": "Marca de Khardros", "on_use": true, "id_encounter": 134, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 56462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gale of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 120, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430, "buy_price": 2151, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031599998474121, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Gale of Shadows", "name_ko_KR": "암흑 돌풍", "name_fr_FR": "Bourrasque d'ombres", "name_de_DE": "Schattensturm", "name_zh_CN": "暗影飓风", "name_es_ES": "Vendaval de sombras", "name_ru_RU": "Буря теней", "name_it_IT": "Zefiro delle Ombre", "name_pt_PT": "Vendaval de Sombras", "on_use": false, "id_encounter": 134, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 56463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Egg Shell", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 119, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33233, "buy_price": 166169, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0353000164031982, "flags_1": 528384, "flags_2": 8200, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Egg Shell", "name_ko_KR": "썩은 알껍질", "name_fr_FR": "Coquille d'œuf corrompu", "name_de_DE": "Verderbte Eierschale", "name_zh_CN": "被腐蚀的蛋壳", "name_es_ES": "Cáscara de huevo corrupto", "name_ru_RU": "Оскверненная яичная скорлупа", "name_it_IT": "Guscio d'Uovo Corrotto", "name_pt_PT": "Casca de Ovo Corrompida", "on_use": true, "id_encounter": 134, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 56847, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chelsea's Nightmare", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3564, "buy_price": 17821, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797999858856201, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Chelsea's Nightmare", "name_ko_KR": "첼시의 악몽", "name_fr_FR": "Cauchemar de Chelsea", "name_de_DE": "Chelseas Alptraum", "name_zh_CN": "切尔西的梦魇", "name_es_ES": "Pesadilla de Chelsea", "name_ru_RU": "Кошмар Челси", "name_it_IT": "Incubo di Chelsea", "name_pt_PT": "Pesadelo de Tchella", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 56849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gus' First Aid Kit", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3590, "buy_price": 17954, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9871000051498413, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 24, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gus' First Aid Kit", "name_ko_KR": "구스의 구급함", "name_fr_FR": "Trousse de premiers soins de Gus", "name_de_DE": "Gus' Erste-Hilfe-Kasten", "name_zh_CN": "格斯的急救工具", "name_es_ES": "Equipo de primeros auxilios de Gus", "name_ru_RU": "Санитарная сумка Гаса", "name_it_IT": "Kit di Primo Soccorso di Gus", "name_pt_PT": "Kit de Primeiros Socorros do Gu", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 57316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Egg-Lift Talisman", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11737, "buy_price": 58689, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9951000213623047, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Egg-Lift Talisman", "name_ko_KR": "알들기 부적", "name_fr_FR": "Talisman lève-œuf", "name_de_DE": "Eierdiebstahlstalisman", "name_zh_CN": "鸟蛋防御者护符", "name_es_ES": "Talismán elevahuevos", "name_ru_RU": "Талисман для переноски яиц", "name_it_IT": "Talismano dell'Uovo Protetto", "name_pt_PT": "Talismã para Erguer o Ovo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 57325, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bileberry Smelling Salts", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12128, "buy_price": 60641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0282000303268433, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Bileberry Smelling Salts", "name_ko_KR": "담즙딸기 각성약", "name_fr_FR": "Sels parfumés à la billiette", "name_de_DE": "Gallbeerenriechsalz", "name_zh_CN": "脓血莓嗅盐", "name_es_ES": "Sales con olor a baya de bilis", "name_ru_RU": "Желчевичная нюхательная соль", "name_it_IT": "Sali Odorosi di Bilebacca", "name_pt_PT": "Sais Aromáticos de Fruta-bile", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 57338, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jouster", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89923, "buy_price": 359692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0023000240325928, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Jouster", "name_ko_KR": "창기사 장신구", "name_fr_FR": "Jouteur", "name_de_DE": "Tjoster", "name_zh_CN": "竞技宝珠", "name_es_ES": "Ajustador", "name_ru_RU": "Турнирный боец", "name_it_IT": "Giostriere", "name_pt_PT": "Justador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 57346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mindfletcher Talisman", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12169, "buy_price": 60847, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mindfletcher Talisman", "name_ko_KR": "마음당김 부적", "name_fr_FR": "Talisman de fléchier de l'esprit", "name_de_DE": "Talisman des Gedankenfiederers", "name_zh_CN": "畅心护符", "name_es_ES": "Dije atraviesamentes", "name_ru_RU": "Талисман стрел разума", "name_it_IT": "Talismano della Mente Svelta", "name_pt_PT": "Talismã do Seteiro da Mente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58180, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "License to Slay", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 2709000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "License to Slay", "name_ko_KR": "학살 면허", "name_fr_FR": "Permis de tuer", "name_de_DE": "Lizenz zum Meucheln", "name_zh_CN": "杀戮执照", "name_es_ES": "Licencia para asesinar", "name_ru_RU": "Лицензия на убийство", "name_it_IT": "Licenza di Uccidere", "name_pt_PT": "Licença para Dilacerar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fluid Death", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 2719100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9725000262260437, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fluid Death", "name_ko_KR": "액체 질식사", "name_fr_FR": "Mort fluide", "name_de_DE": "Fließender Tod", "name_zh_CN": "穿流之亡", "name_es_ES": "Muerte fluida", "name_ru_RU": "Жидкая смерть", "name_it_IT": "Morte Fluida", "name_pt_PT": "Morte Fluida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58182, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bedrock Talisman", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 2729400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9761999845504761, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bedrock Talisman", "name_ko_KR": "기반암 부적", "name_fr_FR": "Talisman du soubassement", "name_de_DE": "Felsgrundtalisman", "name_zh_CN": "基岩护符", "name_es_ES": "Dije del cimiento", "name_ru_RU": "Талисман скального основания", "name_it_IT": "Talismano Roccioso", "name_pt_PT": "Talismã do Leito de Pedras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58183, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Casket", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 2739800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9799000024795532, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Soul Casket", "name_ko_KR": "영혼 장식함", "name_fr_FR": "Caisson à âmes", "name_de_DE": "Seelenkästchen", "name_zh_CN": "缚魂之匣", "name_es_ES": "Féretro de almas", "name_ru_RU": "Вместилище души", "name_it_IT": "Bara delle Anime", "name_pt_PT": "Porta-alma", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58184, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Core of Ripeness", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 2824200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.01010000705719, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Core of Ripeness", "name_ko_KR": "숙성의 핵", "name_fr_FR": "Noyau de maturité", "name_de_DE": "Kern der Reife", "name_zh_CN": "完满之核", "name_es_ES": "Núcleo de sazón", "name_ru_RU": "Средоточие спелости", "name_it_IT": "Nucleo della Maturità", "name_pt_PT": "Âmago da Maturidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 58483, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Lifebound Alchemist Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 1.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5259, "stat_alloc_2": 7889, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 4151, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2482, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Lifebound Alchemist Stone", "name_ko_KR": "생명결속 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste liée par la vie", "name_de_DE": "Lebensgebundener Alchemistenstein", "name_zh_CN": "生命炼金石", "name_es_ES": "Piedra de alquimista vinculavida", "name_ru_RU": "Алхимический камень жизни", "name_it_IT": "Pietra Alchemica Possente", "name_pt_PT": "Pedra da Vida do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59224, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 96, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020900011062622, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Rage", "name_ko_KR": "분노의 심장", "name_fr_FR": "Cœur de rage", "name_de_DE": "Herz des Hasses", "name_zh_CN": "狂怒之心", "name_es_ES": "Corazón de ira", "name_ru_RU": "Сердце ярости", "name_it_IT": "Cuore di Rabbia", "name_pt_PT": "Coração da Ira", "on_use": false, "id_encounter": 172, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 59326, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bell of Enraging Resonance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 95, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bell of Enraging Resonance", "name_ko_KR": "격노한 공명의 종", "name_fr_FR": "Cloche de résonance enragée", "name_de_DE": "Glocke der rasend machenden Resonanz", "name_zh_CN": "狂怒鸣响之铃", "name_es_ES": "Campana de resonancia enfurecedora", "name_ru_RU": "Колокол яростного резонанса", "name_it_IT": "Campana dei Rintocchi Rabbiosi", "name_pt_PT": "Sino da Ressonância em Fúria", "on_use": false, "id_encounter": 171, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 59332, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbiotic Worm", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 99, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Symbiotic Worm", "name_ko_KR": "공생충", "name_fr_FR": "Ver symbiotique", "name_de_DE": "Symbiotischer Wurm", "name_zh_CN": "共生之虫", "name_es_ES": "Gusano simbiótico", "name_ru_RU": "Червь-симбионт", "name_it_IT": "Verme Simbiotico", "name_pt_PT": "Verme Simbiótico", "on_use": false, "id_encounter": 170, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 59354, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jar of Ancient Remedies", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 97, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0097999572753906, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Jar of Ancient Remedies", "name_ko_KR": "고대 치료제 단지", "name_fr_FR": "Pot d'antiques remèdes", "name_de_DE": "Glas mit uralter Arznei", "name_zh_CN": "古老的愈病药瓶", "name_es_ES": "Tarro de remedios antiguos", "name_ru_RU": "Флакончик с древним целительным зельем", "name_it_IT": "Urna dei Rimedi Antichi", "name_pt_PT": "Jarra dos Antigos Remédios", "on_use": true, "id_encounter": 173, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 59441, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prestor's Talisman of Machination", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 98, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Prestor's Talisman of Machination", "name_ko_KR": "계략의 프레스톨 부적", "name_fr_FR": "Talisman de machination de Prestor", "name_de_DE": "Prestors Talisman der Intrige", "name_zh_CN": "普瑞斯托的诡计护符", "name_es_ES": "Dije de maquinación de Prestor", "name_ru_RU": "Талисман интриг Престора", "name_it_IT": "Talismano della Macchinazione di Prestor", "name_pt_PT": "Talismã da Maquinação do Prestor", "on_use": false, "id_encounter": 174, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 59461, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fury of Angerforge", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fury of Angerforge", "name_ko_KR": "앵거포지의 격노", "name_fr_FR": "Fureur de Forgehargne", "name_de_DE": "Wut von Zornesschmied", "name_zh_CN": "怒炉之怒", "name_es_ES": "Furia de Forjainquina", "name_ru_RU": "Ярость Кузни Гнева", "name_it_IT": "Furia di Forgiarabbia", "name_pt_PT": "Fúria de Forjaversa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59473, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Cyclone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 90, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581999778747559, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Cyclone", "name_ko_KR": "회오리의 정수", "name_fr_FR": "Essence du cyclone", "name_de_DE": "Essenz des Zyklons", "name_zh_CN": "气旋精华", "name_es_ES": "Esencia del ciclón", "name_ru_RU": "Эссенция циклона", "name_it_IT": "Essenza del Ciclone", "name_pt_PT": "Essência do Ciclone", "on_use": false, "id_encounter": 156, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59500, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fall of Mortality", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 91, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fall of Mortality", "name_ko_KR": "필멸의 몰락", "name_fr_FR": "Baisse de la mortalité", "name_de_DE": "Untergang der Sterblichen", "name_zh_CN": "生命之殒", "name_es_ES": "Caída de mortalidad", "name_ru_RU": "Поступь смерти", "name_it_IT": "Caduta della Mortalità", "name_pt_PT": "Queda da Mortalidade", "on_use": false, "id_encounter": 167, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59506, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crushing Weight", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 89, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Crushing Weight", "name_ko_KR": "압도하는 무게", "name_fr_FR": "Poids écrasant", "name_de_DE": "Erdrückendes Gewicht", "name_zh_CN": "压顶之力", "name_es_ES": "Peso aplastante", "name_ru_RU": "Сокрушительный груз", "name_it_IT": "Peso Schiacciante", "name_pt_PT": "Peso Esmagador", "on_use": false, "id_encounter": 158, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Ignacious", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 92, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Ignacious", "name_ko_KR": "이그나시우스의 심장", "name_fr_FR": "Cœur d'Ignacious", "name_de_DE": "Herz von Ignazius", "name_zh_CN": "伊格纳休斯之心", "name_es_ES": "Corazón de Ignacious", "name_ru_RU": "Сердце Огниса", "name_it_IT": "Cuore di Ignacious", "name_pt_PT": "Coração de Ignícius", "on_use": true, "id_encounter": 158, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59515, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Stolen Memories", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 94, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Stolen Memories", "name_ko_KR": "도난당한 기억의 약병", "name_fr_FR": "Fiole de souvenirs volés", "name_de_DE": "Fläschchen gestohlener Erinnerungen", "name_zh_CN": "存封记忆之瓶", "name_es_ES": "Vial de recuerdos robados", "name_ru_RU": "Фиал украденных воспоминаний", "name_it_IT": "Fialetta dei Ricordi Rubati", "name_pt_PT": "Ampola das Memórias Roubadas", "on_use": true, "id_encounter": 157, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59519, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Theralion's Mirror", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 93, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006500005722046, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Theralion's Mirror", "name_ko_KR": "테랄리온의 거울", "name_fr_FR": "Miroir de Theralion", "name_de_DE": "Theralions Spiegel", "name_zh_CN": "瑟纳利昂之镜", "name_es_ES": "Espejo de Theralion", "name_ru_RU": "Зеркало Тералиона", "name_it_IT": "Specchio di Theralion", "name_pt_PT": "Espelho de Theralion", "on_use": false, "id_encounter": 157, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 59520, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unheeded Warning", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Unheeded Warning", "name_ko_KR": "무시된 경고", "name_fr_FR": "Vain avertissement", "name_de_DE": "Unbeachtete Warnung", "name_zh_CN": "无闻之兆", "name_es_ES": "Advertencia desoída", "name_ru_RU": "Незамеченное предостережение", "name_it_IT": "Minaccia Elusa", "name_pt_PT": "Aviso Ignorado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59617, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mentalist's Protective Bottle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12090, "buy_price": 60452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024999976158142, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mentalist's Protective Bottle", "name_ko_KR": "정신전문가의 보호용 병", "name_fr_FR": "Bouteille protectrice du mentaliste", "name_de_DE": "Schützende Flasche des Mentalisten", "name_zh_CN": "读心者的防身瓶", "name_es_ES": "Botella protectora de mentalista", "name_ru_RU": "Защитная бутылка менталиста", "name_it_IT": "Bottiglia Protettiva del Mentalista", "name_pt_PT": "Garrafa Protetora do Mentalista", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59630, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Severed Visionary Tentacle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11786, "buy_price": 58930, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9991999864578247, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Severed Visionary Tentacle", "name_ko_KR": "뜯어진 환영의 촉수", "name_fr_FR": "Tentacule visionnaire coupé", "name_de_DE": "Abgeschnittenes Visionententakel", "name_zh_CN": "幻像阻隔之触", "name_es_ES": "Tentáculo visionario cortado", "name_ru_RU": "Отрубленное зрячее щупальце", "name_it_IT": "Tentacolo Reciso della Visione", "name_pt_PT": "Tentáculo Decepado do Visionário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59633, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Severed Visionary Tentacle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11915, "buy_price": 59579, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Severed Visionary Tentacle", "name_ko_KR": "뜯어진 환영의 촉수", "name_fr_FR": "Tentacule visionnaire coupé", "name_de_DE": "Abgeschnittenes Visionententakel", "name_zh_CN": "幻像阻隔之触", "name_es_ES": "Tentáculo visionario cortado", "name_ru_RU": "Отрубленное зрячее щупальце", "name_it_IT": "Tentacolo Reciso della Visione", "name_pt_PT": "Tentáculo Decepado do Visionário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pelagic Prism", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12260, "buy_price": 61301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0393999814987183, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Pelagic Prism", "name_ko_KR": "원양 프리즘", "name_fr_FR": "Prisme pélagique", "name_de_DE": "Pelagisches Prisma", "name_zh_CN": "深海棱镜", "name_es_ES": "Prisma de piélago", "name_ru_RU": "Морская призма", "name_it_IT": "Prisma Pelagico", "name_pt_PT": "Prisma Oceânico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59664, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pelagic Prism", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280, "buy_price": 1403, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Pelagic Prism", "name_ko_KR": "원양 프리즘", "name_fr_FR": "Prisme pélagique", "name_de_DE": "Pelagisches Prisma", "name_zh_CN": "深海棱镜", "name_es_ES": "Prisma de piélago", "name_ru_RU": "Морская призма", "name_it_IT": "Prisma Pelagico", "name_pt_PT": "Prisma Oceânico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kvaldir Battle Standard", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13877, "buy_price": 69386, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.980400025844574, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kvaldir Battle Standard", "name_ko_KR": "크발디르 전투 깃발", "name_fr_FR": "Etendard de bataille kvaldir", "name_de_DE": "Schlachtstandarte der Kvaldir", "name_zh_CN": "克瓦迪尔战旗", "name_es_ES": "Confalón de batalla Kvaldir", "name_ru_RU": "Боевой штандарт Квалдира", "name_it_IT": "Stendardo da Battaglia dei Kvaldir", "name_pt_PT": "Estandarte de Batalha dos Kvaldir", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kvaldir Battle Standard", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14085, "buy_price": 70426, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9951000213623047, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kvaldir Battle Standard", "name_ko_KR": "크발디르 전투 깃발", "name_fr_FR": "Etendard de bataille kvaldir", "name_de_DE": "Schlachtstandarte der Kvaldir", "name_zh_CN": "克瓦迪尔战旗", "name_es_ES": "Confalón de batalla Kvaldir", "name_ru_RU": "Боевой штандарт Квалдира", "name_it_IT": "Stendardo da Battaglia dei Kvaldir", "name_pt_PT": "Estandarte de Batalha dos Kvaldir", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59707, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wavespeaker's Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11649, "buy_price": 58246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9876000285148621, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Wavespeaker's Focus", "name_ko_KR": "파도예언자의 집중점", "name_fr_FR": "Focalisation du parle-vague", "name_de_DE": "Fokus der Wellensprecherin", "name_zh_CN": "波涛语者的专注", "name_es_ES": "Foco de Hablaolas", "name_ru_RU": "Средоточие говорящей с волнами", "name_it_IT": "Focalizzatore della Parlaonde", "name_pt_PT": "Objetivo de Falaondas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wavespeaker's Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11779, "buy_price": 58895, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9986000061035156, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Wavespeaker's Focus", "name_ko_KR": "파도예언자의 집중점", "name_fr_FR": "Focalisation du parle-vague", "name_de_DE": "Fokus der Wellensprecherin", "name_zh_CN": "波涛语者的专注", "name_es_ES": "Foco de Hablaolas", "name_ru_RU": "Средоточие говорящей с волнами", "name_it_IT": "Focalizzatore della Parlaonde", "name_pt_PT": "Objetivo de Falaondas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 59792, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Spider Crab", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11304, "buy_price": 56524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9584000110626221, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Petrified Spider Crab", "name_ko_KR": "석화 거미게", "name_fr_FR": "Crabe araignée pétrifié", "name_de_DE": "Versteinerte Spinnenkrabbe", "name_zh_CN": "石化蜘蛛蟹", "name_es_ES": "Cangrejo araña petrificado", "name_ru_RU": "Окаменевший морской паук", "name_it_IT": "Granchio Pietrificato", "name_pt_PT": "Siri-aranha Petrificado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60233, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of Woe", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Shard of Woe", "name_ko_KR": "고뇌의 조각", "name_fr_FR": "Éclat de malheur", "name_de_DE": "Splitter der Not", "name_zh_CN": "哀伤碎片", "name_es_ES": "Fragmento de tragedia", "name_ru_RU": "Осколок горя", "name_it_IT": "Scheggia del Tormento", "name_pt_PT": "Estilhaço de Infortúnio", "on_use": true, "id_encounter": 168, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 60403, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elementium Dragonling", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 40000, "buy_price": 160000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 25, "req_skill": 2503, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Elementium Dragonling", "name_ko_KR": "엘레멘티움 기계용", "name_fr_FR": "Petit dragon en élémentium", "name_de_DE": "Elementiumdrachling", "name_zh_CN": "源质幼龙", "name_es_ES": "Dragonizo de elementium", "name_ru_RU": "Элементиевый дракончик", "name_it_IT": "Minidrago d'Elementio", "name_pt_PT": "Dragonete de Elemêntio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60794, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768000245094299, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60801, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sañoso", "name_ru_RU": "Медальон жестокости яростного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 60795, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Accuracy", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Accuracy", "name_ko_KR": "흉포한 검투사의 적중 메달", "name_fr_FR": "Médaillon de précision du gladiateur vicieux", "name_de_DE": "Präzisionsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的精确勋章", "name_es_ES": "Medallón de precisión de Gladiador sañoso", "name_ru_RU": "Медальон меткости яростного гладиатора", "name_it_IT": "Medaglione dell'Accuratezza del Gladiatore Malvagio", "name_pt_PT": "Vicious Gladiator's Medallion of Accuracy", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60796, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Alacrity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Alacrity", "name_ko_KR": "흉포한 검투사의 날렵함 메달", "name_fr_FR": "Médaillon d'empressement du gladiateur vicieux", "name_de_DE": "Schnelligkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的活跃勋章", "name_es_ES": "Medallón de prontitud de Gladiador sañoso", "name_ru_RU": "Медальон рвения яростного гладиатора", "name_it_IT": "Medaglione dell'Alacrità del Gladiatore Malvagio", "name_pt_PT": "Vicious Gladiator's Medallion of Alacrity", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60797, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Prowess", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Prowess", "name_ko_KR": "흉포한 검투사의 용감 메달", "name_fr_FR": "Médaillon de prouesse du gladiateur vicieux", "name_de_DE": "Schlagkraftmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的英勇勋章", "name_es_ES": "Medallón de destreza de Gladiador sañoso", "name_ru_RU": "Медальон доблести яростного гладиатора", "name_it_IT": "Medaglione dell'Abilità del Gladiatore Malvagio", "name_pt_PT": "Vicious Gladiator's Medallion of Prowess", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60798, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Command", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Command", "name_ko_KR": "흉포한 검투사의 지휘 메달", "name_fr_FR": "Médaillon de commandement du gladiateur vicieux", "name_de_DE": "Kommandomedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的统御勋章", "name_es_ES": "Medallón de mando de Gladiador sañoso", "name_ru_RU": "Медальон власти яростного гладиатора", "name_it_IT": "Medaglione del Comando del Gladiatore Malvagio", "name_pt_PT": "Vicious Gladiator's Medallion of Command", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 60799, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.995199978351593, "flags_1": 528384, "flags_2": 24586, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60806, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Meditation", "name_ko_KR": "흉포한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur vicieux", "name_de_DE": "Meditationsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sañoso", "name_ru_RU": "Медальон медитации яростного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 60800, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60807, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sañoso", "name_ru_RU": "Медальон упорства яростного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 60801, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60794, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sañoso", "name_ru_RU": "Медальон жестокости яростного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 60806, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0473999977111816, "flags_1": 528384, "flags_2": 24585, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60799, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Meditation", "name_ko_KR": "흉포한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur vicieux", "name_de_DE": "Meditationsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sañoso", "name_ru_RU": "Медальон медитации яростного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 60807, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509999752044678, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 60800, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sañoso", "name_ru_RU": "Медальон упорства яростного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9988999962806702, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador sañoso", "name_ru_RU": "Эмблема жестокости яростного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Emblema da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61030, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Proficiency", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0400999784469604, "flags_1": 4096, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Proficiency", "name_ko_KR": "흉포한 검투사의 숙달 문장", "name_fr_FR": "Emblème d'expertise du gladiateur vicieux", "name_de_DE": "Kompetenzemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的精准纹章", "name_es_ES": "Emblema de competencia de Gladiador sañoso", "name_ru_RU": "Эмблема мастерства яростного гладиатора", "name_it_IT": "Emblema dell'Efficienza del Gladiatore Malvagio", "name_pt_PT": "Vicious Gladiator's Emblem of Proficiency", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61031, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0437999963760376, "flags_1": 528384, "flags_2": 24584, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Meditation", "name_ko_KR": "흉포한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vicieux", "name_de_DE": "Meditationsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador sañoso", "name_ru_RU": "Эмблема медитации яростного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Emblema da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61032, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0473999977111816, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador sañoso", "name_ru_RU": "Эмблема упорства яростного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Emblema da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61033, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9509999752044678, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Conquest", "name_ko_KR": "흉포한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vicieux", "name_de_DE": "Eroberungsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador sañoso", "name_ru_RU": "Жетон завоевания яростного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Conquista do Gladiador Cruel", "on_use": true, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61034, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9546999931335449, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Victory", "name_ko_KR": "흉포한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vicieux", "name_de_DE": "Siegesabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador sañoso", "name_ru_RU": "Жетон победы яростного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Vitória do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61035, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.958299994468689, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Dominance", "name_ko_KR": "흉포한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vicieux", "name_de_DE": "Vorherrschaftsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador sañoso", "name_ru_RU": "Жетон господства яростного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Dominância do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61045, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0216000080108643, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Dominance", "name_ko_KR": "흉포한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur vicieux", "name_de_DE": "Vorherrschaftsinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador sañoso", "name_ru_RU": "Знак господства яростного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Dominância do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61046, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0253000259399414, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Victory", "name_ko_KR": "흉포한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur vicieux", "name_de_DE": "Siegesinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador sañoso", "name_ru_RU": "Знак победы яростного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Vitória do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61047, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0289000272750854, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Conquest", "name_ko_KR": "흉포한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur vicieux", "name_de_DE": "Eroberungsinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador sañoso", "name_ru_RU": "Знак завоевания яростного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Conquista do Gladiador Cruel", "on_use": false, "id_encounter": 139, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 61411, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stonemother's Kiss", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13714, "buy_price": 68571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0471999645233154, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stonemother's Kiss", "name_ko_KR": "바위 어머니의 입맞춤", "name_fr_FR": "Baiser de la Pierre-Mère", "name_de_DE": "Kuss der Steinmutter", "name_zh_CN": "石母之吻", "name_es_ES": "Beso de la Madre Pétrea", "name_ru_RU": "Поцелуй Матери-Скалы", "name_it_IT": "Bacio della Madre Roccia", "name_pt_PT": "Beijo da Petramáter", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61429, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Earthen Lord", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13616, "buy_price": 68080, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0397000312805176, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Insignia of the Earthen Lord", "name_ko_KR": "대지군주의 휘장", "name_fr_FR": "Insigne du seigneur terrestre", "name_de_DE": "Insigne des Lords der Irdenen", "name_zh_CN": "土灵领主徽记", "name_es_ES": "Insignia del lord de la tierra", "name_ru_RU": "Знак отличия Властелина Земли", "name_it_IT": "Fregio del Signore della Terra", "name_pt_PT": "Insígnia do Lorde Terrano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61433, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of Diplomacy", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12844, "buy_price": 64223, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Insignia of Diplomacy", "name_ko_KR": "외교의 휘장", "name_fr_FR": "Insigne de diplomatie", "name_de_DE": "Insigne der Diplomatie", "name_zh_CN": "外交徽记", "name_es_ES": "Insignia de diplomacia", "name_ru_RU": "Знак дипломатии", "name_it_IT": "Fregio della Diplomazia", "name_pt_PT": "Insígnia da Diplomacia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61448, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oremantle's Favor", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12602, "buy_price": 63012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9623000025749207, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Oremantle's Favor", "name_ko_KR": "오어맨틀의 은총", "name_fr_FR": "Faveur de Mantemine", "name_de_DE": "Erzmantels Gunst", "name_zh_CN": "岩幔的恩惠", "name_es_ES": "Favor de Mantomena", "name_ru_RU": "Благоволение Железной Мантии", "name_it_IT": "Dono di Mantodoro", "name_pt_PT": "Benefício do Rochamanto", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 61462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gear Detector", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11957, "buy_price": 59786, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013700008392334, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Gear Detector", "name_ko_KR": "장비 감지기", "name_fr_FR": "Détecteur d'équipement", "name_de_DE": "Zahnradaufspürer", "name_zh_CN": "装备探测器", "name_es_ES": "Detector de engranajes", "name_ru_RU": "Детектор механизмов", "name_it_IT": "Rivelatore d'Equipaggiamento", "name_pt_PT": "Equipamento Detector", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62047, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Volcano", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0400999784469604, "flags_1": 528448, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Volcano", "name_ko_KR": "다크문 카드: 화산", "name_fr_FR": "Carte de Sombrelune : Volcan", "name_de_DE": "Dunkelmond-Karte: Vulkan", "name_zh_CN": "暗月卡片:火山", "name_es_ES": "Naipe de la Luna Negra: Volcán", "name_ru_RU": "Карта Новолуния: Вулкан", "name_it_IT": "Carta di Lunacupa: Vulcano", "name_pt_PT": "Carta de Negraluna: Vulcão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62048, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Earthquake", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": 0, "stat_type_3": 0, "stat_type_4": 0, "stat_type_5": 0, "stat_type_6": 0, "stat_type_7": 0, "stat_type_8": 0, "stat_type_9": 0, "stat_type_10": 0, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0436999797821045, "flags_1": 528448, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Earthquake", "name_ko_KR": "다크문 카드: 지진", "name_fr_FR": "Carte de Sombrelune : Séisme", "name_de_DE": "Dunkelmond-Karte: Erdbeben", "name_zh_CN": "暗月卡片:地震", "name_es_ES": "Naipe de la Luna Negra: Terremoto", "name_ru_RU": "Карта Новолуния: Землетрясение", "name_it_IT": "Carta di Lunacupa: Terremoto", "name_pt_PT": "Carta de Negraluna: Terremoto", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62049, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Hurricane", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24367, "buy_price": 121835, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0473999977111816, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Hurricane", "name_ko_KR": "다크문 카드: 싹쓸바람", "name_fr_FR": "Carte de Sombrelune : Ouragan", "name_de_DE": "Dunkelmond-Karte: Hurrikan", "name_zh_CN": "暗月卡片:飓风", "name_es_ES": "Naipe de la Luna Negra: Huracán", "name_ru_RU": "Карта Новолуния: Ураган", "name_it_IT": "Carta di Lunacupa: Uragano", "name_pt_PT": "Carta de Negraluna: Furacão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62050, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Tsunami", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107343, "buy_price": 429375, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509999752044678, "flags_1": 528448, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Tsunami", "name_ko_KR": "다크문 카드: 지진해일", "name_fr_FR": "Carte de Sombrelune : Tsunami", "name_de_DE": "Dunkelmond-Karte: Tsunami", "name_zh_CN": "暗月卡片:海啸", "name_es_ES": "Naipe de la Luna Negra: Tsunami", "name_ru_RU": "Карта Новолуния: Цунами", "name_it_IT": "Carta di Lunacupa: Tsunami", "name_pt_PT": "Carta de Negraluna: Tsunami", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62051, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Card: Hurricane", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 22210, "buy_price": 111052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9546999931335449, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Card: Hurricane", "name_ko_KR": "다크문 카드: 싹쓸바람", "name_fr_FR": "Carte de Sombrelune : Ouragan", "name_de_DE": "Dunkelmond-Karte: Hurrikan", "name_zh_CN": "暗月卡片:飓风", "name_es_ES": "Naipe de la Luna Negra: Huracán", "name_ru_RU": "Карта Новолуния: Ураган", "name_it_IT": "Carta di Lunacupa: Uragano", "name_pt_PT": "Carta de Negraluna: Furacão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unsolvable Riddle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549000263214111, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62468, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Unsolvable Riddle", "name_ko_KR": "풀리지 않는 수수께끼", "name_fr_FR": "Enigme insoluble", "name_de_DE": "Unlösbares Rätsel", "name_zh_CN": "无解之谜", "name_es_ES": "Enigma sin solución", "name_ru_RU": "Нерешаемая головоломка", "name_it_IT": "Enigma Irrisolvibile", "name_pt_PT": "Charada Insolúvel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62464, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impatience of Youth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585999846458435, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62469, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Impatience of Youth", "name_ko_KR": "젊음의 조바심", "name_fr_FR": "Impatience de la jeunesse", "name_de_DE": "Ungeduld der Jugend", "name_zh_CN": "青春的躁动", "name_es_ES": "Impaciencia de la juventud", "name_ru_RU": "Юношеская горячность", "name_it_IT": "Impazienza della Gioventù", "name_pt_PT": "Impaciência da Juventude", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62465, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stump of Time", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9623000025749207, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62470, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Stump of Time", "name_ko_KR": "시간의 그루터기", "name_fr_FR": "Souche temporelle", "name_de_DE": "Strunk der Zeit", "name_zh_CN": "时光的残枝", "name_es_ES": "Tocón del tiempo", "name_ru_RU": "Осколок времени", "name_it_IT": "Ceppo del Tempo", "name_pt_PT": "Cepo do Tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62466, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Broken Images", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9659000039100647, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62471, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Broken Images", "name_ko_KR": "깨진 형상의 거울", "name_fr_FR": "Miroir d'images brisées", "name_de_DE": "Spiegel der gebrochenen Bilder", "name_zh_CN": "破碎影像之镜", "name_es_ES": "Espejo de imágenes rotas", "name_ru_RU": "Зеркало разбитых отражений", "name_it_IT": "Specchio delle Immagini Infrante", "name_pt_PT": "Espelho das Imagens Quebradas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62467, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mandala of Stirring Patterns", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696000218391418, "flags_1": 561152, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62472, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mandala of Stirring Patterns", "name_ko_KR": "살랑거리는 무늬의 만다라", "name_fr_FR": "Mandala de motifs inspirés", "name_de_DE": "Mandala der bewegenden Muster", "name_zh_CN": "激越曼陀罗坠石", "name_es_ES": "Mandala de patrones removidos", "name_ru_RU": "Мандала движущихся узоров", "name_it_IT": "Mandala dei Ricami Frementi", "name_pt_PT": "Mandala dos Padrões Misturados", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62468, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unsolvable Riddle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9732999801635742, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62463, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Unsolvable Riddle", "name_ko_KR": "풀리지 않는 수수께끼", "name_fr_FR": "Enigme insoluble", "name_de_DE": "Unlösbares Rätsel", "name_zh_CN": "无解之谜", "name_es_ES": "Enigma sin solución", "name_ru_RU": "Нерешаемая головоломка", "name_it_IT": "Enigma Irrisolvibile", "name_pt_PT": "Charada Insolúvel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62469, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impatience of Youth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 0, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9769999980926514, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62464, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Impatience of Youth", "name_ko_KR": "젊음의 조바심", "name_fr_FR": "Impatience de la jeunesse", "name_de_DE": "Ungeduld der Jugend", "name_zh_CN": "青春的躁动", "name_es_ES": "Impaciencia de la juventud", "name_ru_RU": "Юношеская горячность", "name_it_IT": "Impazienza della Gioventù", "name_pt_PT": "Impaciência da Juventude", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62470, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stump of Time", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9805999994277954, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62465, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Stump of Time", "name_ko_KR": "시간의 그루터기", "name_fr_FR": "Souche temporelle", "name_de_DE": "Strunk der Zeit", "name_zh_CN": "时光的残枝", "name_es_ES": "Tocón del tiempo", "name_ru_RU": "Осколок времени", "name_it_IT": "Ceppo del Tempo", "name_pt_PT": "Cepo do Tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62471, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Broken Images", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9843000173568726, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62466, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Broken Images", "name_ko_KR": "깨진 형상의 거울", "name_fr_FR": "Miroir d'images brisées", "name_de_DE": "Spiegel der gebrochenen Bilder", "name_zh_CN": "破碎影像之镜", "name_es_ES": "Espejo de imágenes rotas", "name_ru_RU": "Зеркало разбитых отражений", "name_it_IT": "Specchio delle Immagini Infrante", "name_pt_PT": "Espelho das Imagens Quebradas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62472, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mandala of Stirring Patterns", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 7, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9879999756813049, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 62467, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mandala of Stirring Patterns", "name_ko_KR": "살랑거리는 무늬의 만다라", "name_fr_FR": "Mandala de motifs inspirés", "name_de_DE": "Mandala der bewegenden Muster", "name_zh_CN": "激越曼陀罗坠石", "name_es_ES": "Mandala de patrones removidos", "name_ru_RU": "Мандала движущихся узоров", "name_it_IT": "Mandala dei Ricami Frementi", "name_pt_PT": "Mandala dos Padrões Misturados", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62966, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emissary's Watch", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3332, "buy_price": 16664, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0216000080108643, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Emissary's Watch", "name_ko_KR": "사절단 시계", "name_fr_FR": "Montre d'émissaire", "name_de_DE": "Uhr des Abgesandten", "name_zh_CN": "密使的怀表", "name_es_ES": "Reloj de emisario", "name_ru_RU": "Оберег лазутчика", "name_it_IT": "Orologio dell'Emissario", "name_pt_PT": "Relógio do Emissário", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Devourer's Stomach", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3236, "buy_price": 16182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919999837875366, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Devourer's Stomach", "name_ko_KR": "포식자의 위장", "name_fr_FR": "Estomac du dévoreur", "name_de_DE": "Magen des Verschlingers", "name_zh_CN": "吞噬者的胃囊", "name_es_ES": "Estómago de devorador", "name_ru_RU": "Желудок Пожирателя", "name_it_IT": "Stomaco del Divoratore", "name_pt_PT": "Estômago do Devorador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Omarion's Gift", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3308, "buy_price": 16542, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140999555587769, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Omarion's Gift", "name_ko_KR": "오마리온의 선물", "name_fr_FR": "Cadeau d'Omarion", "name_de_DE": "Omarions Gabe", "name_zh_CN": "奥玛里恩的馈赠", "name_es_ES": "Regalo de Omarion", "name_ru_RU": "Дар Омариона", "name_it_IT": "Dono di Omarion", "name_pt_PT": "Dádiva de Omarion", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 62995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Underlord's Mandible", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3200, "buy_price": 16000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Underlord's Mandible", "name_ko_KR": "지하군주의 아래턱", "name_fr_FR": "Mandibule du seigneur-du-dessous", "name_de_DE": "Unterfürstenmandibula", "name_zh_CN": "冥界领主的颌骨", "name_es_ES": "Mandíbula de infraseñor", "name_ru_RU": "Жвало владыки подземелий", "name_it_IT": "Mandibola del Signore delle Profondità", "name_pt_PT": "Mandíbula de Sublorde", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63192, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tosselwrench's Shrinker", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4143, "buy_price": 20719, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0216000080108643, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Tosselwrench's Shrinker", "name_ko_KR": "토슬렌치의 축소기", "name_fr_FR": "Réducteur de Torsaclef", "name_de_DE": "Knobelzangs Schrumpfer", "name_zh_CN": "枪穗的收缩器", "name_es_ES": "Reductor de Borlallave", "name_ru_RU": "Уменьшитель Подай-Ключа", "name_it_IT": "Riduttore di Chiavetorta", "name_pt_PT": "Encolhedor do Tacachave", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63194, "race_mask": 18446744073709551615, "desc": "Please take care of him for me.", "pad2": "", "pad1": "", "pad0": "", "name": "Rhea's Last Egg", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5008, "buy_price": 25041, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0289000272750854, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rhea's Last Egg", "name_ko_KR": "레아의 마지막 알", "name_fr_FR": "Dernier œuf de Rhea", "name_de_DE": "Rheas letztes Ei", "name_zh_CN": "瑞亚的最后一枚卵", "name_es_ES": "Último huevo de Rhea", "name_ru_RU": "Последнее яйцо Реи", "name_it_IT": "Ultimo Uovo di Rhea", "name_pt_PT": "Último Ovo da Rhea", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63241, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Very Soft Pillow", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12793, "buy_price": 51171, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Very Soft Pillow", "name_ko_KR": "아주 폭신한 베게", "name_fr_FR": "Oreiller très doux", "name_de_DE": "Sehr weiches Kissen", "name_zh_CN": "极其柔软的枕头", "name_es_ES": "Almohada muy suave", "name_ru_RU": "Очень мягкая подушка", "name_it_IT": "Cuscino Molto Soffice", "name_pt_PT": "Travesseiro Muito Macio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63245, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lunk's Special Gear", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4502, "buy_price": 22512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955000281333923, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lunk's Special Gear", "name_ko_KR": "돌머리의 특수 장비", "name_fr_FR": "Equipement spécial de Benêt", "name_de_DE": "Lunks besonderes Zahnrad", "name_zh_CN": "隆克的特制装置", "name_es_ES": "Equipo especial de Ñoño", "name_ru_RU": "Особое оборудование Чурбана", "name_it_IT": "Dispositivo speciale di Lunk", "name_pt_PT": "Equipamento Especial do Bocó", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63632, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of the Traitor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3189, "buy_price": 15945, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775000214576721, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Horn of the Traitor", "name_ko_KR": "배신자의 뿔", "name_fr_FR": "Cor du traître", "name_de_DE": "Horn des Verräters", "name_zh_CN": "叛徒之角", "name_es_ES": "Cuerno del traidor", "name_ru_RU": "Рог предателя", "name_it_IT": "Corno del Traditore", "name_pt_PT": "Chifre do Traidor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63633, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of the Traitor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3201, "buy_price": 16005, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Horn of the Traitor", "name_ko_KR": "배신자의 뿔", "name_fr_FR": "Cor du traître", "name_de_DE": "Horn des Verräters", "name_zh_CN": "叛徒之角", "name_es_ES": "Cuerno del traidor", "name_ru_RU": "Рог предателя", "name_it_IT": "Corno del Traditore", "name_pt_PT": "Chifre do Traidor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63742, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Za'brox's Lucky Tooth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13621, "buy_price": 68106, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0400999784469604, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Za'brox's Lucky Tooth", "name_ko_KR": "자브록스의 행운 깃든 이빨", "name_fr_FR": "Dent porte-bonheur de Za'brox", "name_de_DE": "Za'brox' Glückszahn", "name_zh_CN": "扎布鲁克斯的幸运假牙", "name_es_ES": "Diente de la suerte de Za'brox", "name_ru_RU": "Счастливый зуб За'брокса", "name_it_IT": "Dente della Fortuna di Za'brox", "name_pt_PT": "Dente da Sorte de Za'brox", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63745, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Za'brox's Lucky Tooth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12801, "buy_price": 64007, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775000214576721, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Za'brox's Lucky Tooth", "name_ko_KR": "자브록스의 행운 깃든 이빨", "name_fr_FR": "Dent porte-bonheur de Za'brox", "name_de_DE": "Za'brox' Glückszahn", "name_zh_CN": "扎布鲁克斯的幸运假牙", "name_es_ES": "Diente de la suerte de Za'brox", "name_ru_RU": "Счастливый зуб За'брокса", "name_it_IT": "Dente della Fortuna di Za'brox", "name_pt_PT": "Dente da Sorte de Za'brox", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63838, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shrine-Cleansing Purifier", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12455, "buy_price": 62278, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9510999917984009, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Shrine-Cleansing Purifier", "name_ko_KR": "제단 정화기", "name_fr_FR": "Purificateur de sanctuaire", "name_de_DE": "Schreinreinigender Läuterer", "name_zh_CN": "神殿净化器", "name_es_ES": "Purificador limpiador de santuarios", "name_ru_RU": "Очиститель святилища", "name_it_IT": "Monile del Santuario Purificato", "name_pt_PT": "Purificador de Santuários", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63839, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmlight Token", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12504, "buy_price": 62520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954800009727478, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Harmlight Token", "name_ko_KR": "해로운빛 징표", "name_fr_FR": "Marque charmelume", "name_de_DE": "Unheilslichtsymbol", "name_zh_CN": "邪光符记", "name_es_ES": "Marca Dañaluz", "name_ru_RU": "Знак света боли", "name_it_IT": "Monile della Luce Furente", "name_pt_PT": "Emblema da Luz que Fere", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63840, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juju of Nimbleness", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12552, "buy_price": 62763, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585000276565552, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Juju of Nimbleness", "name_ko_KR": "기민함의 부적", "name_fr_FR": "Juju de vivacité", "name_de_DE": "Juju der Gewandtheit", "name_zh_CN": "敏捷护符", "name_es_ES": "Juju de vivacidad", "name_ru_RU": "Джуджу гибкости", "name_it_IT": "Juju della Sveltezza", "name_pt_PT": "Juju da Vivacidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63841, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tank-Commander Insignia", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12946, "buy_price": 64734, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Tank-Commander Insignia", "name_ko_KR": "전차사령관의 휘장", "name_fr_FR": "Insigne de commandant de char", "name_de_DE": "Insigne des Panzerkommandanten", "name_zh_CN": "坦克指挥官的图章", "name_es_ES": "Insignia de comandante de tanque", "name_ru_RU": "Знак отличия командира танка", "name_it_IT": "Fregio del Comandante dei Carri d'Assedio", "name_pt_PT": "Insígnia do Comandante de Tanque", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63842, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "World-Queller Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 12995, "buy_price": 64976, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "World-Queller Focus", "name_ko_KR": "세계평정자 집중점", "name_fr_FR": "Focalisation de pacificateur de monde", "name_de_DE": "Fokus des Weltenbezwingers", "name_zh_CN": "灭世聚焦器", "name_es_ES": "Foco del sofocador de mundos", "name_ru_RU": "Средоточие подавителя миров", "name_it_IT": "Focalizzatore del Domamondi", "name_pt_PT": "Foco Subjugador de Mundos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 63843, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood-Soaked Ale Mug", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13043, "buy_price": 65218, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Blood-Soaked Ale Mug", "name_ko_KR": "피에 젖은 맥주잔", "name_fr_FR": "Chope de bière impregnée de sang", "name_de_DE": "Blutgetränkter Bierkrug", "name_zh_CN": "浸血的啤酒杯", "name_es_ES": "Jarra de cerveza empapada de sangre", "name_ru_RU": "Окровавленная кружка эля", "name_it_IT": "Boccale Insanguinato", "name_pt_PT": "Caneca de Cerveja Ensopada de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Light's Embrace", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5663, "buy_price": 28319, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007200002670288, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Light's Embrace", "name_ko_KR": "빛의 은총", "name_fr_FR": "Étreinte de la Lumière", "name_de_DE": "Umarmung des Lichts", "name_zh_CN": "光之拥抱", "name_es_ES": "Abrazo de la Luz", "name_ru_RU": "Объятия света", "name_it_IT": "Abbraccio della Luce", "name_pt_PT": "Abraço da Luz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64627, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dying Breath", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5870, "buy_price": 29351, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0439000129699707, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 28, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Dying Breath", "name_ko_KR": "임종의 숨결", "name_fr_FR": "Dernier souffle", "name_de_DE": "Letzter Atemzug", "name_zh_CN": "垂死之息", "name_es_ES": "Aliento moribundo", "name_ru_RU": "Последнее прости", "name_it_IT": "Soffio Morente", "name_pt_PT": "Último Suspiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrande's Favorite Doll", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9628000259399414, "flags_1": 134774784, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Tyrande's Favorite Doll", "name_ko_KR": "티란데가 아끼던 인형", "name_fr_FR": "Poupée préférée de Tyrande", "name_de_DE": "Tyrandes Lieblingspuppe", "name_zh_CN": "泰兰德最爱的玩偶", "name_es_ES": "Muñeca favorita de Tyrande", "name_ru_RU": "Любимая кукла Тиранды", "name_it_IT": "Bambola Preferita di Tyrande", "name_pt_PT": "A Boneca Favorita de Tyrande", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64687, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9699000120162964, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Badge of Conquest", "name_ko_KR": "피에 굶주린 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur assoiffé de sang", "name_de_DE": "Eroberungsabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador sanguinario", "name_ru_RU": "Жетон завоевания кровожадного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Sanguinario", "name_pt_PT": "Distintivo de Conquista do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64688, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9735000133514404, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Badge of Dominance", "name_ko_KR": "피에 굶주린 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur assoiffé de sang", "name_de_DE": "Vorherrschaftsabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador sanguinario", "name_ru_RU": "Жетон господства кровожадного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Sanguinario", "name_pt_PT": "Distintivo de Dominância do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9771999716758728, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Badge of Victory", "name_ko_KR": "피에 굶주린 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur assoiffé de sang", "name_de_DE": "Siegesabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador sanguinario", "name_ru_RU": "Жетон победы кровожадного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Sanguinario", "name_pt_PT": "Distintivo de Vitória do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64740, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0439000129699707, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Emblem of Cruelty", "name_ko_KR": "피에 굶주린 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur assoiffé de sang", "name_de_DE": "Grausamkeitsemblem des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador sanguinario", "name_ru_RU": "Эмблема жестокости кровожадного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Sanguinario", "name_pt_PT": "Emblema da Crueldade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64741, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9739000201225281, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Emblem of Meditation", "name_ko_KR": "피에 굶주린 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur assoiffé de sang", "name_de_DE": "Meditationsemblem des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador sanguinario", "name_ru_RU": "Эмблема медитации кровожадного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Sanguinario", "name_pt_PT": "Emblema da Meditação do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64742, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9775999784469604, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Emblem of Tenacity", "name_ko_KR": "피에 굶주린 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur assoiffé de sang", "name_de_DE": "Hartnäckigkeitsemblem des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador sanguinario", "name_ru_RU": "Эмблема упорства кровожадного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Sanguinario", "name_pt_PT": "Emblema da Tenacidade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64761, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.973800003528595, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Insignia of Conquest", "name_ko_KR": "피에 굶주린 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur assoiffé de sang", "name_de_DE": "Eroberungsinsigne des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador sanguinario", "name_ru_RU": "Знак завоевания кровожадного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Sanguinario", "name_pt_PT": "Insígnia de Conquista do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64762, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9775000214576721, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Insignia of Dominance", "name_ko_KR": "피에 굶주린 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur assoiffé de sang", "name_de_DE": "Vorherrschaftsinsigne des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador sanguinario", "name_ru_RU": "Знак господства кровожадного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Sanguinario", "name_pt_PT": "Insígnia de Dominância do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9811000227928162, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Insignia of Victory", "name_ko_KR": "피에 굶주린 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur assoiffé de sang", "name_de_DE": "Siegesinsigne des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador sanguinario", "name_ru_RU": "Знак победы кровожадного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Sanguinario", "name_pt_PT": "Insígnia de Vitória do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64789, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003100037574768, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64790, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Cruelty", "name_ko_KR": "피에 굶주린 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur assoiffé de sang", "name_de_DE": "Grausamkeitsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sanguinario", "name_ru_RU": "Медальон жестокости кровожадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Crueldade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64790, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0332000255584717, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64789, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Cruelty", "name_ko_KR": "피에 굶주린 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur assoiffé de sang", "name_de_DE": "Grausamkeitsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sanguinario", "name_ru_RU": "Медальон жестокости кровожадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Crueldade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64791, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0369000434875488, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64792, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Meditation", "name_ko_KR": "피에 굶주린 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur assoiffé de sang", "name_de_DE": "Meditationsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sanguinario", "name_ru_RU": "Медальон медитации кровожадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Meditação do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64792, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405999422073364, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64791, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Meditation", "name_ko_KR": "피에 굶주린 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur assoiffé de sang", "name_de_DE": "Meditationsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sanguinario", "name_ru_RU": "Медальон медитации кровожадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Meditação do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64793, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0441999435424805, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64794, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Tenacity", "name_ko_KR": "피에 굶주린 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur assoiffé de sang", "name_de_DE": "Hartnäckigkeitsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sanguinario", "name_ru_RU": "Медальон упорства кровожадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 64794, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0478999614715576, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 64793, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Medallion of Tenacity", "name_ko_KR": "피에 굶주린 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur assoiffé de sang", "name_de_DE": "Hartnäckigkeitsmedaillon des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sanguinario", "name_ru_RU": "Медальон упорства кровожадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Sanguinario", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Sedento de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65015, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "DONTUSEFury of Angerforge", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0295000076293945, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "DONTUSEFury of Angerforge", "name_ko_KR": "미사용앵거포지의 격노", "name_fr_FR": "DONTUSEFury of Angerforge", "name_de_DE": "Wut von Zornesschmied", "name_zh_CN": "DONTUSEFury of Angerforge", "name_es_ES": "DONTUSEFury of Angerforge", "name_ru_RU": "DONTUSEFury of Angerforge", "name_it_IT": "DONTUSEFury of Angerforge", "name_pt_PT": "DONTUSEFury of Angerforge", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prestor's Talisman of Machination", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 98, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Prestor's Talisman of Machination", "name_ko_KR": "계략의 프레스톨 부적", "name_fr_FR": "Talisman de machination de Prestor", "name_de_DE": "Prestors Talisman der Intrige", "name_zh_CN": "普瑞斯托的诡计护符", "name_es_ES": "Dije de maquinación de Prestor", "name_ru_RU": "Талисман интриг Престора", "name_it_IT": "Talismano della Macchinazione di Prestor", "name_pt_PT": "Talismã da Maquinação do Prestor", "on_use": false, "id_encounter": 174, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 65029, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jar of Ancient Remedies", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 97, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Jar of Ancient Remedies", "name_ko_KR": "고대 치료제 단지", "name_fr_FR": "Pot d'antiques remèdes", "name_de_DE": "Glas mit uralter Arznei", "name_zh_CN": "古老的愈病药瓶", "name_es_ES": "Tarro de remedios antiguos", "name_ru_RU": "Флакончик с древним целительным зельем", "name_it_IT": "Urna dei Rimedi Antichi", "name_pt_PT": "Jarra dos Antigos Remédios", "on_use": true, "id_encounter": 173, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 65048, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbiotic Worm", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 99, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Symbiotic Worm", "name_ko_KR": "공생충", "name_fr_FR": "Ver symbiotique", "name_de_DE": "Symbiotischer Wurm", "name_zh_CN": "共生之虫", "name_es_ES": "Gusano simbiótico", "name_ru_RU": "Червь-симбионт", "name_it_IT": "Verme Simbiotico", "name_pt_PT": "Verme Simbiótico", "on_use": false, "id_encounter": 170, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 65053, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bell of Enraging Resonance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 95, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219000577926636, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bell of Enraging Resonance", "name_ko_KR": "격노한 공명의 종", "name_fr_FR": "Cloche de résonance enragée", "name_de_DE": "Glocke der rasend machenden Resonanz", "name_zh_CN": "狂怒鸣响之铃", "name_es_ES": "Campana de resonancia enfurecedora", "name_ru_RU": "Колокол яростного резонанса", "name_it_IT": "Campana dei Rintocchi Rabbiosi", "name_pt_PT": "Sino da Ressonância em Fúria", "on_use": false, "id_encounter": 171, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 65072, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 96, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0181000232696533, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Rage", "name_ko_KR": "분노의 심장", "name_fr_FR": "Cœur de rage", "name_de_DE": "Herz des Hasses", "name_zh_CN": "狂怒之心", "name_es_ES": "Corazón de ira", "name_ru_RU": "Сердце ярости", "name_it_IT": "Cuore di Rabbia", "name_pt_PT": "Coração da Ira", "on_use": false, "id_encounter": 172, "id_journal_instance": 73, "id_map": 669, "instance_type": 2}, {"id": 65105, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Theralion's Mirror", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 93, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922000169754028, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Theralion's Mirror", "name_ko_KR": "테랄리온의 거울", "name_fr_FR": "Miroir de Theralion", "name_de_DE": "Theralions Spiegel", "name_zh_CN": "瑟纳利昂之镜", "name_es_ES": "Espejo de Theralion", "name_ru_RU": "Зеркало Тералиона", "name_it_IT": "Specchio di Theralion", "name_pt_PT": "Espelho de Theralion", "on_use": false, "id_encounter": 157, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65109, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Stolen Memories", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 94, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068999528884888, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Stolen Memories", "name_ko_KR": "도난당한 기억의 약병", "name_fr_FR": "Fiole de souvenirs volés", "name_de_DE": "Fläschchen gestohlener Erinnerungen", "name_zh_CN": "存封记忆之瓶", "name_es_ES": "Vial de recuerdos robados", "name_ru_RU": "Фиал украденных воспоминаний", "name_it_IT": "Fialetta dei Ricordi Rubati", "name_pt_PT": "Ampola das Memórias Roubadas", "on_use": true, "id_encounter": 157, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65110, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Ignacious", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 92, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104999542236328, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Ignacious", "name_ko_KR": "이그나시우스의 심장", "name_fr_FR": "Cœur d'Ignacious", "name_de_DE": "Herz von Ignazius", "name_zh_CN": "伊格纳休斯之心", "name_es_ES": "Corazón de Ignacious", "name_ru_RU": "Сердце Огниса", "name_it_IT": "Cuore di Ignacious", "name_pt_PT": "Coração de Ignícius", "on_use": true, "id_encounter": 158, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65118, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crushing Weight", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 89, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9663000106811523, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Crushing Weight", "name_ko_KR": "압도하는 무게", "name_fr_FR": "Poids écrasant", "name_de_DE": "Erdrückendes Gewicht", "name_zh_CN": "压顶之力", "name_es_ES": "Peso aplastante", "name_ru_RU": "Сокрушительный груз", "name_it_IT": "Peso Schiacciante", "name_pt_PT": "Peso Esmagador", "on_use": false, "id_encounter": 158, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65124, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fall of Mortality", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 91, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883999824523926, "flags_1": 528392, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fall of Mortality", "name_ko_KR": "필멸의 몰락", "name_fr_FR": "Baisse de la mortalité", "name_de_DE": "Untergang der Sterblichen", "name_zh_CN": "生命之殒", "name_es_ES": "Caída de mortalidad", "name_ru_RU": "Поступь смерти", "name_it_IT": "Caduta della Mortalità", "name_pt_PT": "Queda da Mortalidade", "on_use": false, "id_encounter": 167, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65140, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Cyclone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 90, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9735000133514404, "flags_1": 524296, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Cyclone", "name_ko_KR": "회오리의 정수", "name_fr_FR": "Essence du cyclone", "name_de_DE": "Essenz des Zyklons", "name_zh_CN": "气旋精华", "name_es_ES": "Esencia del ciclón", "name_ru_RU": "Эссенция циклона", "name_it_IT": "Essenza del Ciclone", "name_pt_PT": "Essência do Ciclone", "on_use": false, "id_encounter": 156, "id_journal_instance": 72, "id_map": 671, "instance_type": 2}, {"id": 65175, "race_mask": 18446744073709551615, "desc": "The footmen who fought and died in the mud and blood of Tol Barad wore these tags so that their corpses might be identified and sent home.", "pad2": "", "pad1": "", "pad0": "", "name": "Baradin Footman's Tags", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 131121, "buy_price": 524486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9814000129699707, "flags_1": 36864, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 65176, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 1177, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Baradin Footman's Tags", "name_ko_KR": "바라딘 보병의 인식표", "name_fr_FR": "Plaques de fantassin de Baradin", "name_de_DE": "Erkennungsmarke eines Fußsoldaten aus Baradin", "name_zh_CN": "巴拉丁步兵的铭牌", "name_es_ES": "Etiquetas de lacayo de Baradin", "name_ru_RU": "Жетон толбарадского пехотинца", "name_it_IT": "Targhette del Coscritto di Baradin", "name_pt_PT": "Placas de Identificação dos Soldados de Baradin", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65176, "race_mask": 18446744073709551615, "desc": "The grunts who fought and died in the mud and blood of Tol Barad wore these talismans so that their corpses might be identified and sent home.", "pad2": "", "pad1": "", "pad0": "", "name": "Baradin Grunt's Talisman", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 131121, "buy_price": 524486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850999712944031, "flags_1": 36864, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 65175, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 1178, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Baradin Grunt's Talisman", "name_ko_KR": "바라딘 그런트의 부적", "name_fr_FR": "Talisman de grunt de Baradin", "name_de_DE": "Talisman eines Grunzers aus Baradin", "name_zh_CN": "巴拉丁步兵的护符", "name_es_ES": "Dije de bruto de Baradin", "name_ru_RU": "Талисман толбарадского рубаки", "name_it_IT": "Talismano del Grunt di Baradin", "name_pt_PT": "Talismã dos Brutos de Baradin", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65286, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Seed Casing", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4249, "buy_price": 21249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.047700047492981, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 25, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ancient Seed Casing", "name_ko_KR": "고대 씨앗 주머니", "name_fr_FR": "Cosse de graine antique", "name_de_DE": "Uralte Samenhülse", "name_zh_CN": "古老的种荚", "name_es_ES": "Semillero antiguo", "name_ru_RU": "Древняя оболочка зерна", "name_it_IT": "Involucro di Seme Antico", "name_pt_PT": "Casca de Semente Ancestral", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65803, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harrison's Insignia of Panache", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17771, "buy_price": 88855, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0184999704360962, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Harrison's Insignia of Panache", "name_ko_KR": "해리슨의 위풍당당 인장", "name_fr_FR": "Insigne de prestige d'Harrison", "name_de_DE": "Harrisons Insigne des Flairs", "name_zh_CN": "哈里森的炫目徽章", "name_es_ES": "Insignia de garbo de Harrison", "name_ru_RU": "Плюмажная брошь Харрисона", "name_it_IT": "Fregio della Vanteria di Harrison", "name_pt_PT": "Insígnia da Petulância de Harrison", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65804, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Sinister Order", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17835, "buy_price": 89178, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of Sinister Order", "name_ko_KR": "사악한 명령의 부적", "name_fr_FR": "Talisman d'ordre sinistre", "name_de_DE": "Talisman der finsteren Order", "name_zh_CN": "邪恶命令护符", "name_es_ES": "Dije de la orden siniestra", "name_ru_RU": "Талисман жесткого порядка", "name_it_IT": "Talismano dell'Ordine Sinistro", "name_pt_PT": "Talismã da Ordem Sinistra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65805, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Schnottz's Medallion of Command", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17900, "buy_price": 89501, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0259000062942505, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Schnottz's Medallion of Command", "name_ko_KR": "슈노츠의 지휘 메달", "name_fr_FR": "Médaillon de commandement de Schnottz", "name_de_DE": "Schnottz' Medaillon der Befehlsgewalt", "name_zh_CN": "司克诺兹的统御奖章", "name_es_ES": "Medallón de mando de Schnottz", "name_ru_RU": "Медальон власти Шнотца", "name_it_IT": "Medaglione del Comando di Schnottz", "name_pt_PT": "Medalhão de Comando de Schnottz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65923, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Barov Servant Caller", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9126, "buy_price": 36502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0441999435424805, "flags_1": 65536, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Barov Servant Caller", "name_ko_KR": "바로브의 하인 호출종", "name_fr_FR": "Signal des Barov", "name_de_DE": "Bedienstetenglöckchen der Barovs", "name_zh_CN": "巴罗夫仆人铃", "name_es_ES": "Llamador de sirviente Barov", "name_ru_RU": "Колокольчик для вызова слуг Барова", "name_it_IT": "Campanella degli Inservienti dei Barov", "name_pt_PT": "Campainha dos Serviçais de Barov", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 65931, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Eranikus' Shade", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 19564, "buy_price": 78254, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 27, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Essence of Eranikus' Shade", "name_ko_KR": "에라니쿠스 사령의 정수", "name_fr_FR": "Essence de l'ombre d'Eranikus", "name_de_DE": "Essenz des Schemens von Eranikus", "name_zh_CN": "伊兰尼库斯阴影精华", "name_es_ES": "Esencia de la sombra de Eranikus", "name_ru_RU": "Сущность тени Эраникуса", "name_it_IT": "Essenza dell'Ombra di Eranikus", "name_pt_PT": "Essência de Vulto de Erânicos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 66879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Lightning", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0408999919891357, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Bottled Lightning", "name_ko_KR": "병에 담긴 번개", "name_fr_FR": "Éclairs en bouteille", "name_de_DE": "Blitz in der Flasche", "name_zh_CN": "闪电缚能瓶", "name_es_ES": "Relámpago embotellado", "name_ru_RU": "Законсервированная молния", "name_it_IT": "Fulmine In Scatola", "name_pt_PT": "Raio Engarrafado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 66969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of the Vile", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Heart of the Vile", "name_ko_KR": "비열한 자의 심장", "name_fr_FR": "Cœur de l'infâme", "name_de_DE": "Herz des Niederträchtigen", "name_zh_CN": "邪恶之心", "name_es_ES": "Corazón del inmundo", "name_ru_RU": "Сердце зла", "name_it_IT": "Cuore dell'Ignobiltà", "name_pt_PT": "Coração do Vil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 66994, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul's Anguish", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Soul's Anguish", "name_ko_KR": "영혼의 고뇌", "name_fr_FR": "Angoisse de l'âme", "name_de_DE": "Pein der Seele", "name_zh_CN": "灵魂之恸", "name_es_ES": "Angustia del alma", "name_ru_RU": "Душевная тоска", "name_it_IT": "Tormento delle Anime", "name_pt_PT": "Angústia da Alma", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 67037, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Binding Promise", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Binding Promise", "name_ko_KR": "구속의 약속", "name_fr_FR": "Promesse engageante", "name_de_DE": "Bindendes Versprechen", "name_zh_CN": "信守之诺", "name_es_ES": "Promesa vinculante", "name_ru_RU": "Обязывающее обещание", "name_it_IT": "Promessa Vincolante", "name_pt_PT": "Compromisso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 67101, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unquenchable Flame", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9997000098228455, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Unquenchable Flame", "name_ko_KR": "멈출 수 없는 불꽃", "name_fr_FR": "Flamme inextinguible", "name_de_DE": "Unauslöschliche Flamme", "name_zh_CN": "无熄之焰", "name_es_ES": "Llama insaciable", "name_ru_RU": "Вечное пламя", "name_it_IT": "Fiamma Insaziabile", "name_pt_PT": "Chamas Inextinguíveis", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 67118, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Electrospark Heartstarter", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Electrospark Heartstarter", "name_ko_KR": "전기불꽃 심장가동기", "name_fr_FR": "Démarre-cœur à électro-étincelles", "name_de_DE": "Elektrofunkenherzstarter", "name_zh_CN": "电火花起搏器", "name_es_ES": "Latecorazones Electrochispa", "name_ru_RU": "Электроискровой сердцеоживитель", "name_it_IT": "Acciarino Elettrolucente", "name_pt_PT": "Reanimador Elétrico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 67152, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lady La-La's Singing Shell", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9927999973297119, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 36, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Lady La-La's Singing Shell", "name_ko_KR": "여군주 라라의 노래하는 껍질", "name_fr_FR": "Carapace chantante de dame La-La", "name_de_DE": "Lady La-Las singende Muschel", "name_zh_CN": "蕾蒂拉拉的吟唱之壳", "name_es_ES": "Concha sonora de lady La-La", "name_ru_RU": "Поющая ракушка леди Ла-Ла", "name_it_IT": "Conchiglia Musicale di Dama Ga-Ga", "name_pt_PT": "Concha Musical da Lady LaLa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68709, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unsolvable Riddle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0480999946594238, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Unsolvable Riddle", "name_ko_KR": "풀리지 않는 수수께끼", "name_fr_FR": "Enigme insoluble", "name_de_DE": "Unlösbares Rätsel", "name_zh_CN": "无解之谜", "name_es_ES": "Enigma sin solución", "name_ru_RU": "Нерешаемая головоломка", "name_it_IT": "Enigma Irrisolvibile", "name_pt_PT": "Charada Insolúvel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stump of Time", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.95169997215271, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Stump of Time", "name_ko_KR": "시간의 그루터기", "name_fr_FR": "Souche temporelle", "name_de_DE": "Strunk der Zeit", "name_zh_CN": "时光的残枝", "name_es_ES": "Tocón del tiempo", "name_ru_RU": "Осколок времени", "name_it_IT": "Ceppo del Tempo", "name_pt_PT": "Cepo do Tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68711, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mandala of Stirring Patterns", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mandala of Stirring Patterns", "name_ko_KR": "살랑거리는 무늬의 만다라", "name_fr_FR": "Mandala de motifs inspirés", "name_de_DE": "Mandala der bewegenden Muster", "name_zh_CN": "激越曼陀罗坠石", "name_es_ES": "Mandala de patrones removidos", "name_ru_RU": "Мандала движущихся узоров", "name_it_IT": "Mandala dei Ricami Frementi", "name_pt_PT": "Mandala dos Padrões Misturados", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68712, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impatience of Youth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9855999946594238, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Impatience of Youth", "name_ko_KR": "젊음의 조바심", "name_fr_FR": "Impatience de la jeunesse", "name_de_DE": "Ungeduld der Jugend", "name_zh_CN": "青春的躁动", "name_es_ES": "Impaciencia de la juventud", "name_ru_RU": "Юношеская горячность", "name_it_IT": "Impazienza della Gioventù", "name_pt_PT": "Impaciência da Juventude", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68713, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Broken Images", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9891999959945679, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Broken Images", "name_ko_KR": "깨진 형상의 거울", "name_fr_FR": "Miroir d'images brisées", "name_de_DE": "Spiegel der gebrochenen Bilder", "name_zh_CN": "破碎影像之镜", "name_es_ES": "Espejo de imágenes rotas", "name_ru_RU": "Зеркало разбитых отражений", "name_it_IT": "Specchio delle Immagini Infrante", "name_pt_PT": "Espelho das Imagens Quebradas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68775, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Volatile Alchemist Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.5, "stat_socket_mul_2": 0.5, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962000250816345, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 4135, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2482, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Volatile Alchemist Stone", "name_ko_KR": "휘발성 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste volatile", "name_de_DE": "Flüchtiger Alchemistenstein", "name_zh_CN": "烈性炼金石", "name_es_ES": "Piedra de alquimista volátil", "name_ru_RU": "Неустойчивый алхимический камень", "name_it_IT": "Pietra Alchemica Volatile", "name_pt_PT": "Pedra Volátil do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68776, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Quicksilver Alchemist Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.5, "stat_socket_mul_2": 0.5, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 2782, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2482, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Quicksilver Alchemist Stone", "name_ko_KR": "쾌활의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste de vif-argent", "name_de_DE": "Lebhafter Alchemistenstein", "name_zh_CN": "活泼炼金石", "name_es_ES": "Piedra de alquimista de mercurio", "name_ru_RU": "Переменчивый алхимический камень", "name_it_IT": "Pietra Alchemica Imprevedibile", "name_pt_PT": "Pedra de Azougue do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68777, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Vibrant Alchemist Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.5, "stat_socket_mul_2": 0.5, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 4444, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0299999713897705, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 4143, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 50, "req_skill": 2482, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Vibrant Alchemist Stone", "name_ko_KR": "고동치는 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste vibrante", "name_de_DE": "Leuchtender Alchemistenstein", "name_zh_CN": "活力炼金石", "name_es_ES": "Piedra de alquimista vibrante", "name_ru_RU": "Резонирующий алхимический камень", "name_it_IT": "Pietra Alchemica Vibrante", "name_pt_PT": "Pedra Vibrante do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68915, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scales of Life", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 132, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Scales of Life", "name_ko_KR": "생명의 저울", "name_fr_FR": "Balance de vie", "name_de_DE": "Waagschalen des Lebens", "name_zh_CN": "生命天平", "name_es_ES": "Balanza de vida", "name_ru_RU": "Весы жизни", "name_it_IT": "Scaglie della Vita", "name_pt_PT": "Balança da Vida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68925, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Variable Pulse Lightning Capacitor", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 133, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Variable Pulse Lightning Capacitor", "name_ko_KR": "가변 파동 번개 축전기", "name_fr_FR": "Condensateur de foudre à pulsation variable", "name_de_DE": "Wechselimpulsblitzkondensator", "name_zh_CN": "变压脉冲电容器", "name_es_ES": "Condensador de relámpagos de pulso variable", "name_ru_RU": "Нестабильный конденсатор молний", "name_it_IT": "Condensatore Variabile a Luce Pulsata", "name_pt_PT": "Capacitor de Relâmpagos de Pulso Variável", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68926, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jaws of Defeat", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 134, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Jaws of Defeat", "name_ko_KR": "타도의 턱뼈", "name_fr_FR": "Mâchoires de défaite", "name_de_DE": "Fänge des Schicksals", "name_zh_CN": "绝境逢生", "name_es_ES": "Mandíbulas de la derrota", "name_ru_RU": "Челюсти погибели", "name_it_IT": "Fauci della Sconfitta", "name_pt_PT": "Mandíbulas da Derrota", "on_use": true, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68927, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Hungerer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 135, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "The Hungerer", "name_ko_KR": "갈구하는 마음", "name_fr_FR": "L'Affameur", "name_de_DE": "Der Hungerleider", "name_zh_CN": "饥不择食", "name_es_ES": "El Hambriento", "name_ru_RU": "Ненасыть", "name_it_IT": "Monile Famelico", "name_pt_PT": "Fome Incontrolável", "on_use": false, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68972, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Apparatus of Khaz'goroth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 136, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Apparatus of Khaz'goroth", "name_ko_KR": "카즈고로스의 기기", "name_fr_FR": "Appareil de Khaz'goroth", "name_de_DE": "Apparat von Khaz'goroth", "name_zh_CN": "卡兹格罗斯的仪器", "name_es_ES": "Artefacto de Khaz'goroth", "name_ru_RU": "Устройство Каз'горота", "name_it_IT": "Apparato di Khaz'goroth", "name_pt_PT": "Aparato de Khaz'goroth", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68981, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spidersilk Spindle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 137, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962999820709229, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Spidersilk Spindle", "name_ko_KR": "거미비단 물레", "name_fr_FR": "Fuseau à soie d'araignée", "name_de_DE": "Spinnenseidenspindel", "name_zh_CN": "蛛丝纺锤", "name_es_ES": "Huso de seda de araña", "name_ru_RU": "Веретено паучьего шелка", "name_it_IT": "Fuso di Seta di Ragno", "name_pt_PT": "Fuso de Seda de Aranha", "on_use": false, "id_encounter": 192, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68982, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Necromantic Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 138, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Necromantic Focus", "name_ko_KR": "강령술 집중 장치", "name_fr_FR": "Focalisation nécromantique", "name_de_DE": "Nekromantischer Fokus", "name_zh_CN": "巫术聚焦器", "name_es_ES": "Foco nigromántico", "name_ru_RU": "Средоточие некромантии", "name_it_IT": "Focalizzatore Negromantico", "name_pt_PT": "Foco Necromântico", "on_use": false, "id_encounter": 196, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68983, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Blazing Power", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 139, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0037000179290771, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Blazing Power", "name_ko_KR": "타오르는 힘의 눈", "name_fr_FR": "Oeil de la puissance flamboyante", "name_de_DE": "Auge der lodernden Kraft", "name_zh_CN": "炽焰能量之眼", "name_es_ES": "Ojo de Poder llameante", "name_ru_RU": "Око пылающей энергии", "name_it_IT": "Occhio del Potere Splendente", "name_pt_PT": "Olho do Poder Fulgurante", "on_use": false, "id_encounter": 194, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68994, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Matrix Restabilizer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 140, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Matrix Restabilizer", "name_ko_KR": "행렬 재안정기", "name_fr_FR": "Restabilisateur de matrice", "name_de_DE": "Matrixrestabilisator", "name_zh_CN": "矩阵回稳器", "name_es_ES": "Estabilizador de matriz", "name_ru_RU": "Рестабилизатор матрицы", "name_it_IT": "Ristabilizzatore della Matrice", "name_pt_PT": "Reestabilizador Matricial", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vessel of Acceleration", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 141, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9740999937057495, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vessel of Acceleration", "name_ko_KR": "가속의 용기", "name_fr_FR": "Calice d'accélération", "name_de_DE": "Gefäß der Beschleunigung", "name_zh_CN": "爆焰魔瓶", "name_es_ES": "Vasija de aceleración", "name_ru_RU": "Сосуд ускорения", "name_it_IT": "Vaso dell'Accelerazione", "name_pt_PT": "Instrumento de Aceleração", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 68996, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stay of Execution", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 142, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 1000000, "buy_price": 4000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Stay of Execution", "name_ko_KR": "집행유예", "name_fr_FR": "Sursis à l'exécution", "name_de_DE": "Hinrichtungsaufschub", "name_zh_CN": "死缓令", "name_es_ES": "Ejecución pospuesta", "name_ru_RU": "Отложенная расправа", "name_it_IT": "Sospensione della Condanna", "name_pt_PT": "Suspensão da Execução", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 68998, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Zeth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 143, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 1000000, "buy_price": 4000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Zeth", "name_ko_KR": "제스의 룬", "name_fr_FR": "Rune de Zeth", "name_de_DE": "Rune von Zeth", "name_zh_CN": "塞斯符文", "name_es_ES": "Runa de Zeth", "name_ru_RU": "Руна Зет", "name_it_IT": "Runa di Zeth", "name_pt_PT": "Runa de Zeth", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69000, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fiery Quintessence", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 145, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 1000000, "buy_price": 4000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fiery Quintessence", "name_ko_KR": "불의 진수", "name_fr_FR": "Quintessence embrasée", "name_de_DE": "Feurige Quintessenz", "name_zh_CN": "火焰精粹", "name_es_ES": "Quintaesencia ígnea", "name_ru_RU": "Квинтэссенция огня", "name_it_IT": "Quintessenza Ardente", "name_pt_PT": "Quintessência Abrasadora", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69001, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Petrified Seed", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 146, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 1000000, "buy_price": 4000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Petrified Seed", "name_ko_KR": "고대의 석화 씨앗", "name_fr_FR": "Graine ancienne pétrifiée", "name_de_DE": "Uraltes versteinertes Samenkorn", "name_zh_CN": "上古化石种子", "name_es_ES": "Semilla petrificada antigua", "name_ru_RU": "Древнее окаменевшее семечко", "name_it_IT": "Antico Seme Pietrificato", "name_pt_PT": "Antiga Semente Petrificada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69002, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Eternal Flame", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 147, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 1000000, "buy_price": 4000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Eternal Flame", "name_ko_KR": "영원한 불꽃의 정수", "name_fr_FR": "Essence de la flamme éternelle", "name_de_DE": "Essenz der ewigen Flamme", "name_zh_CN": "永恒烈焰精华", "name_es_ES": "Esencia de la llama eterna", "name_ru_RU": "Субстанция неугасимого пламени", "name_it_IT": "Essenza della Fiamma Eterna", "name_pt_PT": "Essência da Chama Eterna", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69109, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scales of Life", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 132, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Scales of Life", "name_ko_KR": "생명의 저울", "name_fr_FR": "Balance de vie", "name_de_DE": "Waagschalen des Lebens", "name_zh_CN": "生命天平", "name_es_ES": "Balanza de vida", "name_ru_RU": "Весы жизни", "name_it_IT": "Scaglie della Vita", "name_pt_PT": "Balança da Vida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69110, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Variable Pulse Lightning Capacitor", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 133, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207302, "buy_price": 829210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9815000295639038, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Variable Pulse Lightning Capacitor", "name_ko_KR": "가변 파동 번개 축전기", "name_fr_FR": "Condensateur de foudre à pulsation variable", "name_de_DE": "Wechselimpulsblitzkondensator", "name_zh_CN": "变压脉冲电容器", "name_es_ES": "Condensador de relámpagos de pulso variable", "name_ru_RU": "Нестабильный конденсатор молний", "name_it_IT": "Condensatore Variabile a Luce Pulsata", "name_pt_PT": "Capacitor de Relâmpagos de Pulso Variável", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69111, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jaws of Defeat", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 134, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Jaws of Defeat", "name_ko_KR": "타도의 턱뼈", "name_fr_FR": "Mâchoires de défaite", "name_de_DE": "Fänge des Schicksals", "name_zh_CN": "绝境逢生", "name_es_ES": "Mandíbulas de la derrota", "name_ru_RU": "Челюсти погибели", "name_it_IT": "Fauci della Sconfitta", "name_pt_PT": "Mandíbulas da Derrota", "on_use": true, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69112, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Hungerer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 135, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9887999892234802, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "The Hungerer", "name_ko_KR": "갈구하는 마음", "name_fr_FR": "L'Affameur", "name_de_DE": "Der Hungerleider", "name_zh_CN": "饥不择食", "name_es_ES": "El Hambriento", "name_ru_RU": "Ненасыть", "name_it_IT": "Monile Famelico", "name_pt_PT": "Fome Incontrolável", "on_use": false, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Apparatus of Khaz'goroth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 136, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Apparatus of Khaz'goroth", "name_ko_KR": "카즈고로스의 기기", "name_fr_FR": "Appareil de Khaz'goroth", "name_de_DE": "Apparat von Khaz'goroth", "name_zh_CN": "卡兹格罗斯的仪器", "name_es_ES": "Artefacto de Khaz'goroth", "name_ru_RU": "Устройство Каз'горота", "name_it_IT": "Apparato di Khaz'goroth", "name_pt_PT": "Aparato de Khaz'goroth", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69138, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spidersilk Spindle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 137, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0372999906539917, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Spidersilk Spindle", "name_ko_KR": "거미비단 물레", "name_fr_FR": "Fuseau à soie d'araignée", "name_de_DE": "Spinnenseidenspindel", "name_zh_CN": "蛛丝纺锤", "name_es_ES": "Huso de seda de araña", "name_ru_RU": "Веретено паучьего шелка", "name_it_IT": "Fuso di Seta di Ragno", "name_pt_PT": "Fuso de Seda de Aranha", "on_use": false, "id_encounter": 192, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69139, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Necromantic Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 138, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0408999919891357, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Necromantic Focus", "name_ko_KR": "강령술 집중 장치", "name_fr_FR": "Focalisation nécromantique", "name_de_DE": "Nekromantischer Fokus", "name_zh_CN": "巫术聚焦器", "name_es_ES": "Foco nigromántico", "name_ru_RU": "Средоточие некромантии", "name_it_IT": "Focalizzatore Negromantico", "name_pt_PT": "Foco Necromântico", "on_use": false, "id_encounter": 196, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69149, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Blazing Power", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 139, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442131, "buy_price": 1768524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.00409996509552, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Blazing Power", "name_ko_KR": "타오르는 힘의 눈", "name_fr_FR": "Oeil de la puissance flamboyante", "name_de_DE": "Auge der lodernden Kraft", "name_zh_CN": "炽焰能量之眼", "name_es_ES": "Ojo de Poder llameante", "name_ru_RU": "Око пылающей энергии", "name_it_IT": "Occhio del Potere Splendente", "name_pt_PT": "Olho do Poder Fulgurante", "on_use": false, "id_encounter": 194, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Matrix Restabilizer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 140, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207302, "buy_price": 829210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007699966430664, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Matrix Restabilizer", "name_ko_KR": "행렬 재안정기", "name_fr_FR": "Restabilisateur de matrice", "name_de_DE": "Matrixrestabilisator", "name_zh_CN": "矩阵回稳器", "name_es_ES": "Estabilizador de matriz", "name_ru_RU": "Рестабилизатор матрицы", "name_it_IT": "Ristabilizzatore della Matrice", "name_pt_PT": "Reestabilizador Matricial", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69167, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vessel of Acceleration", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 141, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207302, "buy_price": 829210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vessel of Acceleration", "name_ko_KR": "가속의 용기", "name_fr_FR": "Calice d'accélération", "name_de_DE": "Gefäß der Beschleunigung", "name_zh_CN": "爆焰魔瓶", "name_es_ES": "Vasija de aceleración", "name_ru_RU": "Сосуд ускорения", "name_it_IT": "Vaso dell'Accelerazione", "name_pt_PT": "Instrumento de Aceleração", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 69184, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stay of Execution", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 142, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 4000000, "buy_price": 16000000, "vendor_stack": 1, "unk_2": 4.0, "unk_1": 0.9854000210762024, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Stay of Execution", "name_ko_KR": "집행유예", "name_fr_FR": "Sursis à l'exécution", "name_de_DE": "Hinrichtungsaufschub", "name_zh_CN": "死缓令", "name_es_ES": "Ejecución pospuesta", "name_ru_RU": "Отложенная расправа", "name_it_IT": "Sospensione della Condanna", "name_pt_PT": "Suspensão da Execução", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69185, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Zeth", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 143, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 4000000, "buy_price": 16000000, "vendor_stack": 1, "unk_2": 4.0, "unk_1": 0.9890999794006348, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Zeth", "name_ko_KR": "제스의 룬", "name_fr_FR": "Rune de Zeth", "name_de_DE": "Rune von Zeth", "name_zh_CN": "塞斯符文", "name_es_ES": "Runa de Zeth", "name_ru_RU": "Руна Зет", "name_it_IT": "Runa di Zeth", "name_pt_PT": "Runa de Zeth", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69198, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fiery Quintessence", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 145, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 4000000, "buy_price": 16000000, "vendor_stack": 1, "unk_2": 4.0, "unk_1": 0.9632999897003174, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fiery Quintessence", "name_ko_KR": "불의 진수", "name_fr_FR": "Quintessence embrasée", "name_de_DE": "Feurige Quintessenz", "name_zh_CN": "火焰精粹", "name_es_ES": "Quintaesencia ígnea", "name_ru_RU": "Квинтэссенция огня", "name_it_IT": "Quintessenza Ardente", "name_pt_PT": "Quintessência Abrasadora", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69199, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Petrified Seed", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 146, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 4000000, "buy_price": 16000000, "vendor_stack": 1, "unk_2": 4.0, "unk_1": 0.9668999910354614, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Petrified Seed", "name_ko_KR": "고대의 석화 씨앗", "name_fr_FR": "Graine ancienne pétrifiée", "name_de_DE": "Uraltes versteinertes Samenkorn", "name_zh_CN": "上古化石种子", "name_es_ES": "Semilla petrificada antigua", "name_ru_RU": "Древнее окаменевшее семечко", "name_it_IT": "Antico Seme Pietrificato", "name_pt_PT": "Antiga Semente Petrificada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69200, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Eternal Flame", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 147, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 4000000, "buy_price": 16000000, "vendor_stack": 1, "unk_2": 4.0, "unk_1": 0.9706000089645386, "flags_1": 8, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1204, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Essence of the Eternal Flame", "name_ko_KR": "영원한 불꽃의 정수", "name_fr_FR": "Essence de la flamme éternelle", "name_de_DE": "Essenz der ewigen Flamme", "name_zh_CN": "永恒烈焰精华", "name_es_ES": "Esencia de la llama eterna", "name_ru_RU": "Субстанция неугасимого пламени", "name_it_IT": "Essenza della Fiamma Eterna", "name_pt_PT": "Essência da Chama Eterna", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69762, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Miniature Voodoo Mask", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322028, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595999717712402, "flags_1": 0, "flags_2": 24832, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Miniature Voodoo Mask", "name_ko_KR": "축소판 부두 가면", "name_fr_FR": "Masque vaudou miniature", "name_de_DE": "Miniaturvoodoomaske", "name_zh_CN": "袖珍巫毒面具", "name_es_ES": "Máscara vudú en miniatura", "name_ru_RU": "Миниатюрная вудуистская маска", "name_it_IT": "Maschera Vudù in Miniatura", "name_pt_PT": "Miniatura de Máscara Vodu", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69781, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Mark of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9557999968528748, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Mark of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 징표", "name_fr_FR": "Marque de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷印记", "name_es_ES": "Marca de crueldad de Gladiador sañoso", "name_ru_RU": "Знак жестокости яростного гладиатора", "name_it_IT": "Contrassegno dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Marca da Crueldade do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69782, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Mark of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9593999981880188, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Mark of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 징표", "name_fr_FR": "Marque de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强印记", "name_es_ES": "Marca de tenacidad de Gladiador sañoso", "name_ru_RU": "Знак стойкости яростного гладиатора", "name_it_IT": "Contrassegno della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Marca da Tenacidade do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69783, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Mark of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.963100016117096, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Mark of Meditation", "name_ko_KR": "흉포한 검투사의 명상 징표", "name_fr_FR": "Marque de méditation du gladiateur vicieux", "name_de_DE": "Meditationsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想印记", "name_es_ES": "Marca de meditación de Gladiador sañoso", "name_ru_RU": "Знак медитации яростного гладиатора", "name_it_IT": "Contrassegno della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Marca da Meditação do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69784, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Symbol of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9667999744415283, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Symbol of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 상징", "name_fr_FR": "Symbole de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitssymbol des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷符记", "name_es_ES": "Símbolo de crueldad de Gladiador sañoso", "name_ru_RU": "Символ жестокости яростного гладиатора", "name_it_IT": "Simbolo dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Símbolo da Crueldade do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69785, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Symbol of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9704999923706055, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Symbol of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 상징", "name_fr_FR": "Symbole de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitssymbol des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强符记", "name_es_ES": "Símbolo de tenacidad de Gladiador sañoso", "name_ru_RU": "Символ стойкости яростного гладиатора", "name_it_IT": "Simbolo della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Símbolo da Tenacidade do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69786, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Symbol of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9740999937057495, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 653, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Symbol of Meditation", "name_ko_KR": "흉포한 검투사의 명상 상징", "name_fr_FR": "Symbole de méditation du gladiateur vicieux", "name_de_DE": "Meditationssysmbol des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想符记", "name_es_ES": "Símbolo de meditación de Gladiador sañoso", "name_ru_RU": "Символ медитации яростного гладиатора", "name_it_IT": "Simbolo della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Símbolo da Meditação do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69787, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Mark of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9778000116348267, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Mark of Cruelty", "name_ko_KR": "피에 굶주린 검투사의 잔혹 징표", "name_fr_FR": "Marque de cruauté du gladiateur assoiffé de sang", "name_de_DE": "Grausamkeitsabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的残酷印记", "name_es_ES": "Marca de crueldad de Gladiador sanguinario", "name_ru_RU": "Знак жестокости кровожадного гладиатора", "name_it_IT": "Contrassegno dell'Atrocità del Gladiatore Sanguinario", "name_pt_PT": "Marca da Crueldade do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69788, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Mark of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Mark of Tenacity", "name_ko_KR": "피에 굶주린 검투사의 불굴 징표", "name_fr_FR": "Marque de ténacité du gladiateur assoiffé de sang", "name_de_DE": "Hartnäckigkeitsabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的顽强印记", "name_es_ES": "Marca de tenacidad de Gladiador sanguinario", "name_ru_RU": "Знак стойкости кровожадного гладиатора", "name_it_IT": "Contrassegno della Tenacia del Gladiatore Sanguinario", "name_pt_PT": "Marca da Tenacidade do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69789, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Mark of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0117000341415405, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Mark of Meditation", "name_ko_KR": "피에 굶주린 검투사의 명상 징표", "name_fr_FR": "Marque de méditation du gladiateur assoiffé de sang", "name_de_DE": "Meditationsabzeichen des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的冥想印记", "name_es_ES": "Marca de meditación de Gladiador sanguinario", "name_ru_RU": "Знак медитации кровожадного гладиатора", "name_it_IT": "Contrassegno della Meditazione del Gladiatore Sanguinario", "name_pt_PT": "Marca da Meditação do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69790, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Symbol of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0153000354766846, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Symbol of Cruelty", "name_ko_KR": "피에 굶주린 검투사의 잔혹 상징", "name_fr_FR": "Symbole de cruauté du gladiateur assoiffé de sang", "name_de_DE": "Grausamkeitssymbol des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的残酷符记", "name_es_ES": "Símbolo de crueldad de Gladiador sanguinario", "name_ru_RU": "Символ жестокости кровожадного гладиатора", "name_it_IT": "Simbolo dell'Atrocità del Gladiatore Sanguinario", "name_pt_PT": "Símbolo da Crueldade do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69791, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Symbol of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0190000534057617, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Symbol of Tenacity", "name_ko_KR": "피에 굶주린 검투사의 불굴 상징", "name_fr_FR": "Symbole de ténacité du gladiateur assoiffé de sang", "name_de_DE": "Hartnäckigkeitssymbol des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的顽强符记", "name_es_ES": "Símbolo de tenacidad de Gladiador sanguinario", "name_ru_RU": "Символ стойкости кровожадного гладиатора", "name_it_IT": "Simbolo della Tenacia del Gladiatore Sanguinario", "name_pt_PT": "Símbolo da Tenacidade do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69792, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Gladiator's Symbol of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0226999521255493, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bloodthirsty Gladiator's Symbol of Meditation", "name_ko_KR": "피에 굶주린 검투사의 명상 상징", "name_fr_FR": "Symbole de méditation du gladiateur assoiffé de sang", "name_de_DE": "Meditationssysmbol des blutrünstigen Gladiators", "name_zh_CN": "嗜血角斗士的冥想符记", "name_es_ES": "Símbolo de meditación de Gladiador sanguinario", "name_ru_RU": "Символ медитации кровожадного гладиатора", "name_it_IT": "Simbolo della Meditazione del Gladiatore Sanguinario", "name_pt_PT": "Símbolo da Meditação do Gladiador Sedento de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69861, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9817000031471252, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 69862, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Alliance", "name_ko_KR": "얼라이언스의 메달", "name_fr_FR": "Médaillon de l'Alliance", "name_de_DE": "Medaillon der Allianz", "name_zh_CN": "联盟勋章", "name_es_ES": "Medallón de la Alianza", "name_ru_RU": "Медальон Альянса", "name_it_IT": "Medaglione dell'Alleanza", "name_pt_PT": "Medalhão da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 69862, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4167, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9854000210762024, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 69861, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Medallion of the Horde", "name_ko_KR": "호드의 메달", "name_fr_FR": "Médaillon de la Horde", "name_de_DE": "Medaillon der Horde", "name_zh_CN": "部落勋章", "name_es_ES": "Medallón de la Horda", "name_ru_RU": "Медальон Орды", "name_it_IT": "Medaglione dell'Orda", "name_pt_PT": "Medalhão da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70141, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dwyer's Caber", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592999815940857, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Dwyer's Caber", "name_ko_KR": "드위어의 투척나무", "name_fr_FR": "Tronc de Dwyer", "name_de_DE": "Düsters Baumstamm", "name_zh_CN": "杜耶尔的重棍", "name_es_ES": "Poste de Dwyer", "name_ru_RU": "Молодое деревце Дуайера", "name_it_IT": "Tronco di Dwyre", "name_pt_PT": "Tronco de Dwyer", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70142, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moonwell Chalice", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9894999861717224, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Moonwell Chalice", "name_ko_KR": "달샘 성배", "name_fr_FR": "Calice du Puits de lune", "name_de_DE": "Mondbrunnenkelch", "name_zh_CN": "月亮井圣杯", "name_es_ES": "Cáliz de la Poza de la Luna", "name_ru_RU": "Чаша Лунного колодца", "name_it_IT": "Calice di Pozzo Lunare", "name_pt_PT": "Cálice do Poço Lunar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70143, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moonwell Phial", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9932000041007996, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Moonwell Phial", "name_ko_KR": "달샘 유리병", "name_fr_FR": "Flasque du Puits de lune", "name_de_DE": "Mondbrunnenphiole", "name_zh_CN": "月亮井水瓶", "name_es_ES": "Ampolla de la Poza de la Luna", "name_ru_RU": "Фиал Лунного колодца", "name_it_IT": "Fiala di Pozzo Lunare", "name_pt_PT": "Frasco do Poço Lunar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70144, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ricket's Magnetic Fireball", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9968000054359436, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ricket's Magnetic Fireball", "name_ko_KR": "리켓의 자기 화염구", "name_fr_FR": "Boule de feu magnétique de Ricket", "name_de_DE": "Rickets magnetischer Feuerball", "name_zh_CN": "莉吉特的磁性火球", "name_es_ES": "Bola de Fuego magnética de Ricket", "name_ru_RU": "Магнитный огненный шар Рикет", "name_it_IT": "Palla di Fuoco Magnetica di Ricket", "name_pt_PT": "Bola de Fogo Magnética da Ricket", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70390, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9966999888420105, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70393, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador implacable", "name_ru_RU": "Медальон жестокости беспощадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Medalhão da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70391, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003999471664429, "flags_1": 528384, "flags_2": 24586, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70394, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Meditation", "name_ko_KR": "무정한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador implacable", "name_ru_RU": "Медальон медитации беспощадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Crudele", "name_pt_PT": "Medalhão da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70392, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70395, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador implacable", "name_ru_RU": "Медальон упорства беспощадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Crudele", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70393, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007699966430664, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70390, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador implacable", "name_ru_RU": "Медальон жестокости беспощадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Medalhão da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70394, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 528384, "flags_2": 24585, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70391, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Meditation", "name_ko_KR": "무정한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador implacable", "name_ru_RU": "Медальон медитации беспощадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Crudele", "name_pt_PT": "Medalhão da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70395, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70392, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador implacable", "name_ru_RU": "Медальон упорства беспощадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Crudele", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70396, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0187000036239624, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador implacable", "name_ru_RU": "Эмблема жестокости беспощадного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Emblema da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70397, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0224000215530396, "flags_1": 528384, "flags_2": 24584, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Meditation", "name_ko_KR": "무정한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador implacable", "name_ru_RU": "Эмблема медитации беспощадного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Crudele", "name_pt_PT": "Emblema da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70398, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0261000394821167, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador implacable", "name_ru_RU": "Эмблема упорства беспощадного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Crudele", "name_pt_PT": "Emblema da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70399, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9562000036239624, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Conquest", "name_ko_KR": "무정한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur sans pitié", "name_de_DE": "Eroberungsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador implacable", "name_ru_RU": "Жетон завоевания беспощадного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Crudele", "name_pt_PT": "Distintivo de Conquista do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70400, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9598000049591064, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Victory", "name_ko_KR": "무정한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur sans pitié", "name_de_DE": "Siegesabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador implacable", "name_ru_RU": "Жетон победы беспощадного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Crudele", "name_pt_PT": "Distintivo de Vitória do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70401, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9635000228881836, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Dominance", "name_ko_KR": "무정한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur sans pitié", "name_de_DE": "Vorherrschaftsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador implacable", "name_ru_RU": "Жетон господства беспощадного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Crudele", "name_pt_PT": "Distintivo de Dominância do Gladiador Inclemente", "on_use": true, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70402, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.967199981212616, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Dominance", "name_ko_KR": "무정한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur sans pitié", "name_de_DE": "Vorherrschaftsinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador implacable", "name_ru_RU": "Знак господства беспощадного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Crudele", "name_pt_PT": "Insígnia de Dominância do Gladiador Inclemente", "on_use": false, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70403, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9708999991416931, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Victory", "name_ko_KR": "무정한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur sans pitié", "name_de_DE": "Siegesinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador implacable", "name_ru_RU": "Знак победы беспощадного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Crudele", "name_pt_PT": "Insígnia de Vitória do Gladiador Inclemente", "on_use": false, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70404, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Conquest", "name_ko_KR": "무정한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur sans pitié", "name_de_DE": "Eroberungsinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador implacable", "name_ru_RU": "Знак завоевания беспощадного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Crudele", "name_pt_PT": "Insígnia de Conquista do Gladiador Inclemente", "on_use": false, "id_encounter": 140, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 70409, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Mark of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.992900013923645, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Mark of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 징표", "name_fr_FR": "Marque de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷印记", "name_es_ES": "Marca de crueldad de Gladiador implacable", "name_ru_RU": "Знак жестокости беспощадного гладиатора", "name_it_IT": "Contrassegno dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Marca da Crueldade do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70410, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Mark of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9965999722480774, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Mark of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 징표", "name_fr_FR": "Marque de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强印记", "name_es_ES": "Marca de tenacidad de Gladiador implacable", "name_ru_RU": "Знак стойкости беспощадного гладиатора", "name_it_IT": "Contrassegno della Tenacia del Gladiatore Crudele", "name_pt_PT": "Marca da Tenacidade do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70411, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Mark of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0002000331878662, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Mark of Meditation", "name_ko_KR": "무정한 검투사의 명상 징표", "name_fr_FR": "Marque de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想印记", "name_es_ES": "Marca de meditación de Gladiador implacable", "name_ru_RU": "Знак медитации беспощадного гладиатора", "name_it_IT": "Contrassegno della Meditazione del Gladiatore Crudele", "name_pt_PT": "Marca da Meditação do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70412, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Symbol of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0039000511169434, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Symbol of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 상징", "name_fr_FR": "Symbole de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitssymbol des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷符记", "name_es_ES": "Símbolo de crueldad de Gladiador implacable", "name_ru_RU": "Символ жестокости беспощадного гладиатора", "name_it_IT": "Simbolo dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Símbolo da Crueldade do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Symbol of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.007599949836731, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Symbol of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 상징", "name_fr_FR": "Symbole de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitssymbol des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强符记", "name_es_ES": "Símbolo de tenacidad de Gladiador implacable", "name_ru_RU": "Символ стойкости беспощадного гладиатора", "name_it_IT": "Simbolo della Tenacia del Gladiatore Crudele", "name_pt_PT": "Símbolo da Tenacidade do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Symbol of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.011299967765808, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Symbol of Meditation", "name_ko_KR": "무정한 검투사의 명상 상징", "name_fr_FR": "Symbole de méditation du gladiateur sans pitié", "name_de_DE": "Meditationssysmbol des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想符记", "name_es_ES": "Símbolo de meditación de Gladiador implacable", "name_ru_RU": "Символ медитации беспощадного гладиатора", "name_it_IT": "Simbolo della Meditazione del Gladiatore Crudele", "name_pt_PT": "Símbolo da Meditação do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70517, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Conquest", "name_ko_KR": "흉포한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vicieux", "name_de_DE": "Eroberungsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador sañoso", "name_ru_RU": "Жетон завоевания яростного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Conquista do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70518, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Dominance", "name_ko_KR": "흉포한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vicieux", "name_de_DE": "Vorherrschaftsabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador sañoso", "name_ru_RU": "Жетон господства яростного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Dominância do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70519, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Badge of Victory", "name_ko_KR": "흉포한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vicieux", "name_de_DE": "Siegesabzeichen des boshaften Gladiators", "name_zh_CN": "残忍角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador sañoso", "name_ru_RU": "Жетон победы яростного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Malvagio", "name_pt_PT": "Distintivo de Vitória do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70563, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador sañoso", "name_ru_RU": "Эмблема жестокости яростного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Emblema da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70564, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Meditation", "name_ko_KR": "흉포한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vicieux", "name_de_DE": "Meditationsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador sañoso", "name_ru_RU": "Эмблема медитации яростного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Emblema da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70565, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Emblem of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsemblem des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador sañoso", "name_ru_RU": "Эмблема упорства яростного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Emblema da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Conquest", "name_ko_KR": "흉포한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur vicieux", "name_de_DE": "Eroberungsinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador sañoso", "name_ru_RU": "Знак завоевания яростного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Conquista do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70578, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Dominance", "name_ko_KR": "흉포한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur vicieux", "name_de_DE": "Vorherrschaftsinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador sañoso", "name_ru_RU": "Знак господства яростного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Dominância do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Insignia of Victory", "name_ko_KR": "흉포한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur vicieux", "name_de_DE": "Siegesinsigne des boshaften Gladiators", "name_zh_CN": "残忍角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador sañoso", "name_ru_RU": "Знак победы яростного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Malvagio", "name_pt_PT": "Insígnia de Vitória do Gladiador Cruel", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70602, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70603, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sañoso", "name_ru_RU": "Медальон жестокости яростного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70603, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70602, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Cruelty", "name_ko_KR": "흉포한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur vicieux", "name_de_DE": "Grausamkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador sañoso", "name_ru_RU": "Медальон жестокости яростного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70604, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70605, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Meditation", "name_ko_KR": "흉포한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur vicieux", "name_de_DE": "Meditationsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sañoso", "name_ru_RU": "Медальон медитации яростного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70605, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70604, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Meditation", "name_ko_KR": "흉포한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur vicieux", "name_de_DE": "Meditationsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador sañoso", "name_ru_RU": "Медальон медитации яростного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Meditação do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70606, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70607, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sañoso", "name_ru_RU": "Медальон упорства яростного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 70607, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 70606, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 20, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Gladiator's Medallion of Tenacity", "name_ko_KR": "흉포한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur vicieux", "name_de_DE": "Hartnäckigkeitsmedaillon des boshaften Gladiators", "name_zh_CN": "残忍角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador sañoso", "name_ru_RU": "Медальон упорства яростного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malvagio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cruel", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71333, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bitterer Balebrew Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bitterer Balebrew Charm", "name_ko_KR": "더욱 쓰면서도 감미로운 고통의 맥주", "name_fr_FR": "Charme torvebière plus amer qu'amer", "name_de_DE": "Noch bitterer Plörrbräuglücksbringer", "name_zh_CN": "黑暗苦烈酒咒符", "name_es_ES": "Talismán Fardobirra más amarga", "name_ru_RU": "Амулет очень горького темного варева", "name_it_IT": "Talismano della Birra Amara che fa Molto Più Male", "name_pt_PT": "Patuá Cervamarga Ainda Mais Amarga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71334, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bubblier Brightbrew Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bubblier Brightbrew Charm", "name_ko_KR": "더욱 풍부한 거품의 감미로운 투명 맥주", "name_fr_FR": "Charme brillebière encore plus pétillant", "name_de_DE": "Noch perlenderer Hellbräuglücksbringer", "name_zh_CN": "光明气泡酒咒符", "name_es_ES": "Talismán Brillobirra bullente", "name_ru_RU": "Амулет крепкого игристого светлого напитка", "name_it_IT": "Talismano della Birra che fa Molto Più Bene", "name_pt_PT": "Patuá Cervaleve Ainda Mais Borbulhante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71335, "race_mask": 18446744073709551615, "desc": "Enchanted to fit perfectly beneath any mug, with a frosty finish.", "pad2": "", "pad1": "", "pad0": "", "name": "Coren's Chilled Chromium Coaster", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Coren's Chilled Chromium Coaster", "name_ko_KR": "코렌의 얼어붙은 크롬 받침", "name_fr_FR": "Sous-bock de Coren en chrome givré", "name_de_DE": "Corens gekühlter Chromuntersetzer", "name_zh_CN": "科林的冰冻铬银杯垫", "name_es_ES": "Posavasos de cromo helado de Coren", "name_ru_RU": "Охлажденная хромированная подставка Корена", "name_it_IT": "Sottobicchiere Cromato Gelido di Coren", "name_pt_PT": "Porta-copos Cromado Gelado de Coren", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71336, "race_mask": 18446744073709551615, "desc": "Reeking and rock hard.", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Pickled Egg", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Petrified Pickled Egg", "name_ko_KR": "석화된 초란", "name_fr_FR": "Œuf pétrifié mariné", "name_de_DE": "Versteinertes Solei", "name_zh_CN": "石化卤蛋", "name_es_ES": "Huevo escabechado petrificado", "name_ru_RU": "Окаменевшее маринованное яйцо", "name_it_IT": "Uovo in Salamoia Pietrificato", "name_pt_PT": "Ovo Avinagrado Petrificado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71337, "race_mask": 18446744073709551615, "desc": "Never stops twice.", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Stopwatch", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Mithril Stopwatch", "name_ko_KR": "미스릴 초시계", "name_fr_FR": "Chronomètre en mithril", "name_de_DE": "Mithrilstoppuhr", "name_zh_CN": "密银秒表", "name_es_ES": "Cronómetro de mitril", "name_ru_RU": "Мифриловый секундомер", "name_it_IT": "Cronometro di Mithril", "name_pt_PT": "Cronômetro de Mithril", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 71338, "race_mask": 18446744073709551615, "desc": "The Grim Guzzler's brawls are epic tales of legend.", "pad2": "", "pad1": "", "pad0": "", "name": "Brawler's Trophy", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 13, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Brawler's Trophy", "name_ko_KR": "싸움꾼의 트로피", "name_fr_FR": "Trophée du bagarreur", "name_de_DE": "Muskelprotztrophäe", "name_zh_CN": "打斗者的战利品", "name_es_ES": "Trofeo de camorrista", "name_ru_RU": "Трофей буяна", "name_it_IT": "Trofeo dell'Attaccabrighe", "name_pt_PT": "Troféu dos Brigões", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Conquest", "name_ko_KR": "무정한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur sans pitié", "name_de_DE": "Eroberungsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador implacable", "name_ru_RU": "Жетон завоевания беспощадного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Crudele", "name_pt_PT": "Distintivo de Conquista do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Conquest", "name_ko_KR": "무정한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur sans pitié", "name_de_DE": "Eroberungsinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador implacable", "name_ru_RU": "Знак завоевания беспощадного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Crudele", "name_pt_PT": "Insígnia de Conquista do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador implacable", "name_ru_RU": "Эмблема жестокости беспощадного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Emblema da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72360, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador implacable", "name_ru_RU": "Эмблема упорства беспощадного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Crudele", "name_pt_PT": "Emblema da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72361, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Emblem of Meditation", "name_ko_KR": "무정한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsemblem des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador implacable", "name_ru_RU": "Эмблема медитации беспощадного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Crudele", "name_pt_PT": "Emblema da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72410, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72411, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador implacable", "name_ru_RU": "Медальон жестокости беспощадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Medalhão da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72411, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72410, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Cruelty", "name_ko_KR": "무정한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur sans pitié", "name_de_DE": "Grausamkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador implacable", "name_ru_RU": "Медальон жестокости беспощадного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Crudele", "name_pt_PT": "Medalhão da Crueldade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72412, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72413, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador implacable", "name_ru_RU": "Медальон упорства беспощадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Crudele", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72413, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72412, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Tenacity", "name_ko_KR": "무정한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur sans pitié", "name_de_DE": "Hartnäckigkeitsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador implacable", "name_ru_RU": "Медальон упорства беспощадного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Crudele", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72414, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72415, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Meditation", "name_ko_KR": "무정한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador implacable", "name_ru_RU": "Медальон медитации беспощадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Crudele", "name_pt_PT": "Medalhão da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72415, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 72414, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Medallion of Meditation", "name_ko_KR": "무정한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur sans pitié", "name_de_DE": "Meditationsmedaillon des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador implacable", "name_ru_RU": "Медальон медитации беспощадного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Crudele", "name_pt_PT": "Medalhão da Meditação do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72448, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Dominance", "name_ko_KR": "무정한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur sans pitié", "name_de_DE": "Vorherrschaftsabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador implacable", "name_ru_RU": "Жетон господства беспощадного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Crudele", "name_pt_PT": "Distintivo de Dominância do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Dominance", "name_ko_KR": "무정한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur sans pitié", "name_de_DE": "Vorherrschaftsinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador implacable", "name_ru_RU": "Знак господства беспощадного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Crudele", "name_pt_PT": "Insígnia de Dominância do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72450, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Badge of Victory", "name_ko_KR": "무정한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur sans pitié", "name_de_DE": "Siegesabzeichen des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador implacable", "name_ru_RU": "Жетон победы беспощадного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Crudele", "name_pt_PT": "Distintivo de Vitória do Gladiador Inclemente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72455, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthless Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Ruthless Gladiator's Insignia of Victory", "name_ko_KR": "무정한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur sans pitié", "name_de_DE": "Siegesinsigne des ruchlosen Gladiators", "name_zh_CN": "冷酷角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador implacable", "name_ru_RU": "Знак победы беспощадного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Crudele", "name_pt_PT": "Insígnia de Vitória do Gladiador Inclemente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 72897, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arrow of Time", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 43943, "buy_price": 219718, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0267000198364258, "flags_1": 524288, "flags_2": 167780352, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Arrow of Time", "name_ko_KR": "시간의 화살", "name_fr_FR": "Flèche du Temps", "name_de_DE": "Pfeil der Zeit", "name_zh_CN": "时光之箭", "name_es_ES": "Flecha de tiempo", "name_ru_RU": "Стрела времени", "name_it_IT": "Freccia del Tempo", "name_pt_PT": "Flecha do Tempo", "on_use": false, "id_encounter": 289, "id_journal_instance": 184, "id_map": 938, "instance_type": 1}, {"id": 72898, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Foul Gift of the Demon Lord", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 44102, "buy_price": 220510, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030400037765503, "flags_1": 524352, "flags_2": 201334784, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Foul Gift of the Demon Lord", "name_ko_KR": "악마 군주의 악독한 선물", "name_fr_FR": "Don souillé du seigneur démon", "name_de_DE": "Verderbte Gabe des Dämonenlords", "name_zh_CN": "恶魔领主的邪礼", "name_es_ES": "Obsequio hediondo del Señor demoníaco", "name_ru_RU": "Нечестивый дар повелителя демонов", "name_it_IT": "Dono Infetto del Signore dei Demoni", "name_pt_PT": "Dádiva Repulsiva do Lorde Demônio", "on_use": true, "id_encounter": 292, "id_journal_instance": 185, "id_map": 939, "instance_type": 1}, {"id": 72899, "race_mask": 18446744073709551615, "desc": "A gift from the Queen herself.", "pad2": "", "pad1": "", "pad0": "", "name": "Varo'then's Brooch", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 44260, "buy_price": 221302, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.03410005569458, "flags_1": 524352, "flags_2": 134225920, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Varo'then's Brooch", "name_ko_KR": "바로덴의 브로치", "name_fr_FR": "Broche de Varo'then", "name_de_DE": "Varo'thens Brosche", "name_zh_CN": "瓦罗森的胸针", "name_es_ES": "Broche de Varo'then", "name_ru_RU": "Брошь Варо'тена", "name_it_IT": "Spilla di Varo'then", "name_pt_PT": "Broche de Varo'then", "on_use": true, "id_encounter": 292, "id_journal_instance": 185, "id_map": 939, "instance_type": 1}, {"id": 72900, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Veil of Lies", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 44414, "buy_price": 222072, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0376999378204346, "flags_1": 524288, "flags_2": 33562624, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Veil of Lies", "name_ko_KR": "거짓의 장막", "name_fr_FR": "Tissu de mensonges", "name_de_DE": "Schleier der Lügen", "name_zh_CN": "谎言的面纱", "name_es_ES": "Velo de mentiras", "name_ru_RU": "Пелена лжи", "name_it_IT": "Velo delle Menzogne", "name_pt_PT": "Véu de Mentiras", "on_use": false, "id_encounter": 341, "id_journal_instance": 186, "id_map": 940, "instance_type": 1}, {"id": 72901, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rosary of Light", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 44572, "buy_price": 222864, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413999557495117, "flags_1": 524352, "flags_2": 134225920, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Rosary of Light", "name_ko_KR": "빛의 묵주", "name_fr_FR": "Rosaire de Lumière", "name_de_DE": "Rosenkranz des Lichts", "name_zh_CN": "光辉念珠", "name_es_ES": "Rosario de la Luz", "name_ru_RU": "Четки Света", "name_it_IT": "Rosario della Luce", "name_pt_PT": "Rosário da Luz", "on_use": true, "id_encounter": 341, "id_journal_instance": 186, "id_map": 940, "instance_type": 1}, {"id": 73042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Defender's Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Defender's Stone", "name_ko_KR": "수호자의 열망 어린 돌", "name_fr_FR": "Pierre de défenseur zélée", "name_de_DE": "Zelotenstein des Verteidigers", "name_zh_CN": "狂信防御者之石", "name_es_ES": "Piedra de defensor entusiasta", "name_ru_RU": "Могучий камень защитника", "name_it_IT": "Pietra della Difesa Zelante", "name_pt_PT": "Pedra Zelosa do Defensor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73060, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Defender's Idol", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Defender's Idol", "name_ko_KR": "수호자의 열망 어린 우상", "name_fr_FR": "Idole de défenseur zélée", "name_de_DE": "Zelotenidol des Verteidigers", "name_zh_CN": "狂信防御者雕像", "name_es_ES": "Ídolo de defensor entusiasta", "name_ru_RU": "Могучий идол защитника", "name_it_IT": "Idolo della Difesa Zelante", "name_pt_PT": "Ídolo Zeloso do Defensor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73061, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Stone of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Stone of Battle", "name_ko_KR": "전투의 열망 어린 돌", "name_fr_FR": "Pierre de bataille zélée", "name_de_DE": "Zelotenkampfstein", "name_zh_CN": "狂信战争之石", "name_es_ES": "Piedra de batalla entusiasta", "name_ru_RU": "Могучий камень битвы", "name_it_IT": "Pietra della Battaglia Zelante", "name_pt_PT": "Pedra Zelosa de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73062, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Idol of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Idol of Battle", "name_ko_KR": "전투의 열망 어린 우상", "name_fr_FR": "Idole de bataille zélée", "name_de_DE": "Zelotenidol des Kampfes", "name_zh_CN": "狂信战争雕像", "name_es_ES": "Ídolo de batalla entusiasta", "name_ru_RU": "Могучий идол битвы", "name_it_IT": "Idolo della Battaglia Zelante", "name_pt_PT": "Ídolo Zeloso de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73063, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Idol of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Idol of Wisdom", "name_ko_KR": "지혜의 열망 어린 우상", "name_fr_FR": "Idole de sagesse zélée", "name_de_DE": "Zelotenidol der Weisheit", "name_zh_CN": "狂信智慧雕像", "name_es_ES": "Ídolo de sabiduría entusiasta", "name_ru_RU": "Могучий идол мудрости", "name_it_IT": "Idolo della Saggezza Zelante", "name_pt_PT": "Ídolo Zeloso da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73064, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zealous Stone of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Zealous Stone of Wisdom", "name_ko_KR": "지혜의 열망 어린 돌", "name_fr_FR": "Pierre de sagesse zélée", "name_de_DE": "Zelotenstein der Weisheit", "name_zh_CN": "狂信智慧之石", "name_es_ES": "Piedra de sabiduría entusiasta", "name_ru_RU": "Могучий камень мудрости", "name_it_IT": "Pietra della Saggezza Zelante", "name_pt_PT": "Pedra Zelosa da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73065, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Stone of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Stone of Destruction", "name_ko_KR": "파괴의 야생혼 돌", "name_fr_FR": "Pierre de destruction âme-sauvage", "name_de_DE": "Wildseelenstein der Zerstörung", "name_zh_CN": "野性灵魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma salvaje", "name_ru_RU": "Камень разрушения дикого духа", "name_it_IT": "Pietra della Distruzione dell'Anima Selvaggia", "name_pt_PT": "Pedra da Destruição Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73066, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Idol of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Idol of Destruction", "name_ko_KR": "파괴의 야생혼 우상", "name_fr_FR": "Idole de destruction âme-sauvage", "name_de_DE": "Wildseelenidol der Zerstörung", "name_zh_CN": "野性灵魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma salvaje", "name_ru_RU": "Идол разрушения дикого духа", "name_it_IT": "Idolo della Distruzione dell'Anima Selvaggia", "name_pt_PT": "Ídolo da Destruição Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73067, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Stone of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Stone of Rage", "name_ko_KR": "분노의 야생혼 돌", "name_fr_FR": "Pierre de rage âme-sauvage", "name_de_DE": "Wildseelenstein des Zorns", "name_zh_CN": "野性灵魂狂暴之石", "name_es_ES": "Piedra de ira de alma salvaje", "name_ru_RU": "Камень ярости дикого духа", "name_it_IT": "Pietra della Rabbia dell'Anima Selvaggia", "name_pt_PT": "Pedra da Raiva Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73068, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Idol of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Idol of Rage", "name_ko_KR": "분노의 야생혼 우상", "name_fr_FR": "Idole de rage âme-sauvage", "name_de_DE": "Wildseelenidol des Zorns", "name_zh_CN": "野性灵魂狂暴雕像", "name_es_ES": "Ídolo de ira de alma salvaje", "name_ru_RU": "Идол ярости дикого духа", "name_it_IT": "Idolo della Rabbia dell'Anima Selvaggia", "name_pt_PT": "Ídolo da Raiva Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73101, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magesoul Stone of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Magesoul Stone of Destruction", "name_ko_KR": "파괴의 마법혼 돌", "name_fr_FR": "Pierre de destruction âmemage", "name_de_DE": "Magierseelenstein der Zerstörung", "name_zh_CN": "法魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma de mago", "name_ru_RU": "Камень разрушения магического духа", "name_it_IT": "Pietra della Distruzione dell'Anima Magica", "name_pt_PT": "Pedra da Destruição Magialma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73104, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magesoul Idol of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Magesoul Idol of Destruction", "name_ko_KR": "파괴의 마법혼 우상", "name_fr_FR": "Idole de destruction âmemage", "name_de_DE": "Magierseelenidol der Zerstörung", "name_zh_CN": "法魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma de mago", "name_ru_RU": "Идол разрушения магического духа", "name_it_IT": "Idolo della Distruzione dell'Anima Magica", "name_pt_PT": "Ídolo da Destruição Magialma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73106, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadsoul Stone of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Dreadsoul Stone of Destruction", "name_ko_KR": "파괴의 공포영혼 돌", "name_fr_FR": "Pierre de destruction âmeffroi", "name_de_DE": "Schreckensseelenstein der Zerstörung", "name_zh_CN": "恐魂毁灭之石", "name_es_ES": "Piedra de destrucción Almaespanto", "name_ru_RU": "Камень разрушения грозного духа", "name_it_IT": "Pietra della Distruzione dell'Anima Terribile", "name_pt_PT": "Pedra da Destruição Almatorpe", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73109, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadsoul Idol of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Dreadsoul Idol of Destruction", "name_ko_KR": "파괴의 공포영혼 우상", "name_fr_FR": "Idole de destruction âmeffroi", "name_de_DE": "Schreckensseelenidol der Zerstörung", "name_zh_CN": "恐魂毁灭雕像", "name_es_ES": "Ídolo de destrucción Almaespanto", "name_ru_RU": "Идол разрушения грозного духа", "name_it_IT": "Idolo della Distruzione dell'Anima Terribile", "name_pt_PT": "Ídolo da Destruição Almatorpe", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73111, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seraphic Stone of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Seraphic Stone of Wisdom", "name_ko_KR": "지혜의 대천사 돌", "name_fr_FR": "Pierre de sagesse séraphique", "name_de_DE": "Seraphenstein der Weisheit", "name_zh_CN": "圣洁智慧之石", "name_es_ES": "Piedra de sabiduría seráfica", "name_ru_RU": "Неземной камень мудрости", "name_it_IT": "Pietra della Saggezza Serafica", "name_pt_PT": "Pedra da Sabedoria Seráfica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73114, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seraphic Idol of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Seraphic Idol of Wisdom", "name_ko_KR": "지혜의 대천사 우상", "name_fr_FR": "Idole de sagesse séraphique", "name_de_DE": "Seraphenidol der Weisheit", "name_zh_CN": "圣洁智慧雕像", "name_es_ES": "Ídolo de sabiduría seráfico", "name_ru_RU": "Неземной идол мудрости", "name_it_IT": "Idolo della Saggezza Serafico", "name_pt_PT": "Ídolo da Sabedoria Seráfico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seraphic Stone of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Seraphic Stone of Destruction", "name_ko_KR": "파괴의 대천사 돌", "name_fr_FR": "Pierre de destruction séraphique", "name_de_DE": "Seraphenstein der Zerstörung", "name_zh_CN": "圣洁毁灭之石", "name_es_ES": "Piedra de destrucción seráfica", "name_ru_RU": "Неземной камень разрушения", "name_it_IT": "Pietra della Distruzione Serafica", "name_pt_PT": "Pedra da Destruição Seráfica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73119, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seraphic Idol of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Seraphic Idol of Destruction", "name_ko_KR": "파괴의 대천사 우상", "name_fr_FR": "Idole de destruction séraphique", "name_de_DE": "Seraphenidol der Zerstörung", "name_zh_CN": "圣洁毁灭雕像", "name_es_ES": "Ídolo de destrucción seráfico", "name_ru_RU": "Неземной идол разрушения", "name_it_IT": "Idolo della Distruzione Serafico", "name_pt_PT": "Ídolo da Destruição Seráfico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73121, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowstalking Stone of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Shadowstalking Stone of Rage", "name_ko_KR": "분노의 그림자추적 돌", "name_fr_FR": "Pierre de rage de traque des ombres", "name_de_DE": "Schattenpirscherstein des Zorns", "name_zh_CN": "影行狂暴之石", "name_es_ES": "Piedra de ira acechasombras", "name_ru_RU": "Камень ярости крадущегося в тени", "name_it_IT": "Pietra della Rabbia dell'Anima Ombrosa", "name_pt_PT": "Pedra da Raiva Assombrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73124, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowstalking Idol of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Shadowstalking Idol of Rage", "name_ko_KR": "분노의 그림자추적 우상", "name_fr_FR": "Idole de rage de traque des ombres", "name_de_DE": "Schattenpirscheridol des Zorns", "name_zh_CN": "影行狂暴雕像", "name_es_ES": "Ídolo de ira acechasombras", "name_ru_RU": "Идол ярости крадущегося в тени", "name_it_IT": "Idolo della Rabbia dell'Anima Ombrosa", "name_pt_PT": "Ídolo da Raiva Assombrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73126, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Stone of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Stone of Wisdom", "name_ko_KR": "지혜의 야생혼 돌", "name_fr_FR": "Pierre de sagesse âme-sauvage", "name_de_DE": "Wildseelenstein der Weisheit", "name_zh_CN": "野性灵魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma salvaje", "name_ru_RU": "Камень мудрости дикого духа", "name_it_IT": "Pietra della Saggezza dell'Anima Selvaggia", "name_pt_PT": "Pedra da Sabedoria Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73129, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildsoul Idol of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Wildsoul Idol of Wisdom", "name_ko_KR": "지혜의 야생혼 우상", "name_fr_FR": "Idole de sagesse âme-sauvage", "name_de_DE": "Wildseelenidol der Weisheit", "name_zh_CN": "野性灵魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma salvaje", "name_ru_RU": "Идол мудрости дикого духа", "name_it_IT": "Idolo della Saggezza dell'Anima Selvaggia", "name_pt_PT": "Ídolo da Sabedoria Selvalma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Idol of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Idol of Rage", "name_ko_KR": "분노의 폭풍술사 우상", "name_fr_FR": "Idole de rage de lieur des tempêtes", "name_de_DE": "Sturmbinderidol des Zorns", "name_zh_CN": "驭雷狂暴雕像", "name_es_ES": "Ídolo de ira vinculatormentas", "name_ru_RU": "Идол ярости владыки бурь", "name_it_IT": "Idolo della Rabbia dell'Anima Tempestosa", "name_pt_PT": "Ídolo da Raiva do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73135, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Stone of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Stone of Rage", "name_ko_KR": "분노의 폭풍술사 돌", "name_fr_FR": "Pierre de rage de lieur des tempêtes", "name_de_DE": "Sturmbinderstein des Zorns", "name_zh_CN": "驭雷狂暴之石", "name_es_ES": "Piedra de ira vinculatormentas", "name_ru_RU": "Камень ярости владыки бурь", "name_it_IT": "Pietra della Rabbia dell'Anima Tempestosa", "name_pt_PT": "Pedra da Raiva do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73137, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Idol of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Idol of Destruction", "name_ko_KR": "파괴의 폭풍술사 우상", "name_fr_FR": "Idole de destruction de lieur des tempêtes", "name_de_DE": "Sturmbinderidol der Zerstörung", "name_zh_CN": "驭雷毁灭雕像", "name_es_ES": "Ídolo de destrucción vinculatormentas", "name_ru_RU": "Идол разрушения владыки бурь", "name_it_IT": "Idolo della Distruzione dell'Anima Tempestosa", "name_pt_PT": "Ídolo da Destruição do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73140, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Stone of Destruction", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Stone of Destruction", "name_ko_KR": "파괴의 폭풍술사 돌", "name_fr_FR": "Pierre de destruction de lieur des tempêtes", "name_de_DE": "Sturmbinderstein der Zerstörung", "name_zh_CN": "驭雷毁灭之石", "name_es_ES": "Piedra de destrucción vinculatormentas", "name_ru_RU": "Камень разрушения владыки бурь", "name_it_IT": "Pietra della Distruzione dell'Anima Tempestosa", "name_pt_PT": "Pedra da Destruição do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73142, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Idol of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Idol of Wisdom", "name_ko_KR": "지혜의 폭풍술사 우상", "name_fr_FR": "Idole de sagesse de lieur des tempêtes", "name_de_DE": "Sturmbinderidol der Weisheit", "name_zh_CN": "驭雷智慧雕像", "name_es_ES": "Ídolo de sabiduría vinculatormentas", "name_ru_RU": "Идол мудрости владыки бурь", "name_it_IT": "Idolo della Saggezza dell'Anima Tempestosa", "name_pt_PT": "Ídolo da Sabedoria do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73145, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormbinder Stone of Wisdom", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Stormbinder Stone of Wisdom", "name_ko_KR": "지혜의 폭풍술사 돌", "name_fr_FR": "Pierre de sagesse de lieur des tempêtes", "name_de_DE": "Sturmbinderstein der Weisheit", "name_zh_CN": "驭雷智慧之石", "name_es_ES": "Piedra de sabiduría vinculatormentas", "name_ru_RU": "Камень мудрости владыки бурь", "name_it_IT": "Pietra della Saggezza dell'Anima Tempestosa", "name_pt_PT": "Pedra da Sabedoria do Tempestigador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73147, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beastsoul Idol of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Beastsoul Idol of Rage", "name_ko_KR": "분노의 야수혼 우상", "name_fr_FR": "Idole de rage d'âme-bête", "name_de_DE": "Bestienseelenidol des Zorns", "name_zh_CN": "兽魂狂暴雕像", "name_es_ES": "Ídolo de ira de alma de bestia", "name_ru_RU": "Идол ярости звериного духа", "name_it_IT": "Idolo della Rabbia dell'Anima Bestiale", "name_pt_PT": "Ídolo da Raiva Almaferal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beastsoul Stone of Rage", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Beastsoul Stone of Rage", "name_ko_KR": "분노의 야수혼 돌", "name_fr_FR": "Pierre de rage d'âme-bête", "name_de_DE": "Bestienseelenstein des Zorns", "name_zh_CN": "兽魂狂暴之石", "name_es_ES": "Piedra de ira de alma de bestia", "name_ru_RU": "Камень ярости звериного духа", "name_it_IT": "Pietra della Rabbia dell'Anima Bestiale", "name_pt_PT": "Pedra da Raiva Almaferal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73154, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ebonsoul Stone of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Ebonsoul Stone of Battle", "name_ko_KR": "전투의 흑단혼 돌", "name_fr_FR": "Pierre de bataille âmébène", "name_de_DE": "Schwarzseelenkampfstein", "name_zh_CN": "黑魂战争之石", "name_es_ES": "Piedra de batalla de alma de ébano", "name_ru_RU": "Камень битвы черного духа", "name_it_IT": "Pietra della Battaglia dell'Anima Nera", "name_pt_PT": "Pedra de Batalha Alma-ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73155, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ebonsoul Idol of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Ebonsoul Idol of Battle", "name_ko_KR": "전투의 흑단혼 우상", "name_fr_FR": "Idole de bataille âmébène", "name_de_DE": "Schwarzseelenidol des Kampfes", "name_zh_CN": "黑魂战争雕像", "name_es_ES": "Ídolo de batalla de alma de ébano", "name_ru_RU": "Идол битвы черного духа", "name_it_IT": "Idolo della Battaglia dell'Anima Nera", "name_pt_PT": "Ídolo de Batalha Alma-ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73157, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ebonsoul Defender's Idol", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Ebonsoul Defender's Idol", "name_ko_KR": "수호자의 흑단혼 우상", "name_fr_FR": "Idole de défenseur âmébène", "name_de_DE": "Schwarzseelenidol des Verteidigers", "name_zh_CN": "黑魂防御者雕像", "name_es_ES": "Ídolo de defensor de alma de ébano", "name_ru_RU": "Идол защитника черного духа", "name_it_IT": "Idolo della Difesa dell'Anima Nera", "name_pt_PT": "Ídolo do Defensor Alma-ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ebonsoul Defender's Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Ebonsoul Defender's Stone", "name_ko_KR": "수호자의 흑단혼 돌", "name_fr_FR": "Pierre de défenseur âmébène", "name_de_DE": "Schwarzseelenstein des Verteidigers", "name_zh_CN": "黑魂防御者之石", "name_es_ES": "Piedra de defensor de alma de ébano", "name_ru_RU": "Камень защитника черного духа", "name_it_IT": "Pietra della Difesa dell'Anima Nera", "name_pt_PT": "Pedra do Defensor Alma-ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73164, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valiant Stone of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Valiant Stone of Battle", "name_ko_KR": "전투의 용맹전사 돌", "name_fr_FR": "Pierre de bataille vaillante", "name_de_DE": "Ritterkampfstein", "name_zh_CN": "威武战争之石", "name_es_ES": "Piedra de batalla valerosa", "name_ru_RU": "Камень битвы искателя славы", "name_it_IT": "Pietra della Battaglia Prode", "name_pt_PT": "Pedra de Batalha Valente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73165, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valiant Idol of Battle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Valiant Idol of Battle", "name_ko_KR": "전투의 용맹전사 우상", "name_fr_FR": "Idole de bataille vaillante", "name_de_DE": "Ritteridol des Kampfes", "name_zh_CN": "威武战争雕像", "name_es_ES": "Ídolo de batalla valeroso", "name_ru_RU": "Идол битвы искателя славы", "name_it_IT": "Idolo della Battaglia Prode", "name_pt_PT": "Ídolo de Batalha Valente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73167, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valiant Defender's Idol", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Valiant Defender's Idol", "name_ko_KR": "수호자의 용맹전사 우상", "name_fr_FR": "Idole de défenseur vaillante", "name_de_DE": "Ritteridol des Verteidigers", "name_zh_CN": "威武防御者雕像", "name_es_ES": "Ídolo de defensor valeroso", "name_ru_RU": "Идол защитника искателя славы", "name_it_IT": "Idolo della Difesa Prode", "name_pt_PT": "Ídolo do Defensor Valente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73170, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valiant Defender's Stone", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Valiant Defender's Stone", "name_ko_KR": "수호자의 용맹전사 돌", "name_fr_FR": "Pierre de défenseur vaillante", "name_de_DE": "Ritterstein des Verteidigers", "name_zh_CN": "威武防御者之石", "name_es_ES": "Piedra de defensor valerosa", "name_ru_RU": "Камень защитника искателя славы", "name_it_IT": "Pietra della Difesa Prode", "name_pt_PT": "Pedra do Defensor Valente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73491, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Insignia of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9708999991416931, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Insignia of Victory", "name_ko_KR": "격변한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur cataclysmique", "name_de_DE": "Siegesinsigne des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador cataclísmico", "name_ru_RU": "Знак победы гладиатора Катаклизма", "name_it_IT": "Fregio della Vittoria del Gladiatore Cataclismico", "name_pt_PT": "Insígnia de Vitória do Gladiador Cataclísmico", "on_use": false, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73496, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Badge of Victory", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9598000049591064, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Badge of Victory", "name_ko_KR": "격변한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur cataclysmique", "name_de_DE": "Siegesabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador cataclísmico", "name_ru_RU": "Жетон победы гладиатора Катаклизма", "name_it_IT": "Distintivo della Vittoria del Gladiatore Cataclismico", "name_pt_PT": "Distintivo de Vitória do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73497, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Insignia of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.967199981212616, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Insignia of Dominance", "name_ko_KR": "격변한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur cataclysmique", "name_de_DE": "Vorherrschaftsinsigne des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador cataclísmico", "name_ru_RU": "Знак господства гладиатора Катаклизма", "name_it_IT": "Fregio della Dominazione del Gladiatore Cataclismico", "name_pt_PT": "Insígnia de Dominância do Gladiador Cataclísmico", "on_use": false, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73498, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Badge of Dominance", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9635000228881836, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Badge of Dominance", "name_ko_KR": "격변한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur cataclysmique", "name_de_DE": "Vorherrschaftsabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador cataclísmico", "name_ru_RU": "Жетон господства гладиатора Катаклизма", "name_it_IT": "Distintivo della Dominazione del Gladiatore Cataclismico", "name_pt_PT": "Distintivo de Dominância do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73499, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Symbol of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.011299967765808, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Symbol of Meditation", "name_ko_KR": "격변한 검투사의 명상 상징", "name_fr_FR": "Symbole de méditation du gladiateur cataclysmique", "name_de_DE": "Meditationssysmbol des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的冥想符记", "name_es_ES": "Símbolo de meditación de Gladiador cataclísmico", "name_ru_RU": "Символ медитации гладиатора Катаклизма", "name_it_IT": "Simbolo della Meditazione del Gladiatore Cataclismico", "name_pt_PT": "Símbolo da Meditação do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73500, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Symbol of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.007599949836731, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Symbol of Tenacity", "name_ko_KR": "격변한 검투사의 불굴 상징", "name_fr_FR": "Symbole de ténacité du gladiateur cataclysmique", "name_de_DE": "Hartnäckigkeitssymbol des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的顽强符记", "name_es_ES": "Símbolo de tenacidad de Gladiador cataclísmico", "name_ru_RU": "Символ стойкости гладиатора Катаклизма", "name_it_IT": "Simbolo della Tenacia del Gladiatore Cataclismico", "name_pt_PT": "Símbolo da Tenacidade do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73501, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Symbol of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0039000511169434, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Symbol of Cruelty", "name_ko_KR": "격변한 검투사의 잔혹 상징", "name_fr_FR": "Symbole de cruauté du gladiateur cataclysmique", "name_de_DE": "Grausamkeitssymbol des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的残酷符记", "name_es_ES": "Símbolo de crueldad de Gladiador cataclísmico", "name_ru_RU": "Символ жестокости гладиатора Катаклизма", "name_it_IT": "Simbolo dell'Atrocità del Gladiatore Cataclismico", "name_pt_PT": "Símbolo da Crueldade do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73534, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 528384, "flags_2": 24585, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73535, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Meditation", "name_ko_KR": "격변한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur cataclysmique", "name_de_DE": "Meditationsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador cataclísmico", "name_ru_RU": "Медальон медитации гладиатора Катаклизма", "name_it_IT": "Medaglione della Meditazione del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Meditação do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73535, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003999471664429, "flags_1": 528384, "flags_2": 24586, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73534, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Meditation", "name_ko_KR": "격변한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur cataclysmique", "name_de_DE": "Meditationsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador cataclísmico", "name_ru_RU": "Медальон медитации гладиатора Катаклизма", "name_it_IT": "Medaglione della Meditazione del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Meditação do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73536, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73537, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Tenacity", "name_ko_KR": "격변한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur cataclysmique", "name_de_DE": "Hartnäckigkeitsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador cataclísmico", "name_ru_RU": "Медальон упорства гладиатора Катаклизма", "name_it_IT": "Medaglione della Tenacia del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73537, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73536, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Tenacity", "name_ko_KR": "격변한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur cataclysmique", "name_de_DE": "Hartnäckigkeitsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador cataclísmico", "name_ru_RU": "Медальон упорства гладиатора Катаклизма", "name_it_IT": "Medaglione della Tenacia del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73538, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007699966430664, "flags_1": 528384, "flags_2": 24609, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73539, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Cruelty", "name_ko_KR": "격변한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur cataclysmique", "name_de_DE": "Grausamkeitsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador cataclísmico", "name_ru_RU": "Медальон жестокости гладиатора Катаклизма", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73539, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Medallion of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9966999888420105, "flags_1": 528384, "flags_2": 24610, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 73538, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Medallion of Cruelty", "name_ko_KR": "격변한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur cataclysmique", "name_de_DE": "Grausamkeitsmedaillon des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador cataclísmico", "name_ru_RU": "Медальон жестокости гладиатора Катаклизма", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Cataclismico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Mark of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0002000331878662, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Mark of Meditation", "name_ko_KR": "격변한 검투사의 명상 징표", "name_fr_FR": "Marque de méditation du gladiateur cataclysmique", "name_de_DE": "Meditationsabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的冥想印记", "name_es_ES": "Marca de meditación de Gladiador cataclísmico", "name_ru_RU": "Знак медитации гладиатора Катаклизма", "name_it_IT": "Contrassegno della Meditazione del Gladiatore Cataclismico", "name_pt_PT": "Marca da Meditação do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73578, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Mark of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9965999722480774, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Mark of Tenacity", "name_ko_KR": "격변한 검투사의 불굴 징표", "name_fr_FR": "Marque de ténacité du gladiateur cataclysmique", "name_de_DE": "Hartnäckigkeitsabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的顽强印记", "name_es_ES": "Marca de tenacidad de Gladiador cataclísmico", "name_ru_RU": "Знак стойкости гладиатора Катаклизма", "name_it_IT": "Contrassegno della Tenacia del Gladiatore Cataclismico", "name_pt_PT": "Marca da Tenacidade do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Mark of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.992900013923645, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Mark of Cruelty", "name_ko_KR": "격변한 검투사의 잔혹 징표", "name_fr_FR": "Marque de cruauté du gladiateur cataclysmique", "name_de_DE": "Grausamkeitsabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的残酷印记", "name_es_ES": "Marca de crueldad de Gladiador cataclísmico", "name_ru_RU": "Знак жестокости гладиатора Катаклизма", "name_it_IT": "Contrassegno dell'Atrocità del Gladiatore Cataclismico", "name_pt_PT": "Marca da Crueldade do Gladiador Cataclísmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 73591, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Emblem of Meditation", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0224000215530396, "flags_1": 528384, "flags_2": 24584, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Emblem of Meditation", "name_ko_KR": "격변한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur cataclysmique", "name_de_DE": "Meditationsemblem des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador cataclísmico", "name_ru_RU": "Эмблема медитации гладиатора Катаклизма", "name_it_IT": "Emblema della Meditazione del Gladiatore Cataclismico", "name_pt_PT": "Emblema da Meditação do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73592, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Emblem of Tenacity", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0261000394821167, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Emblem of Tenacity", "name_ko_KR": "격변한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur cataclysmique", "name_de_DE": "Hartnäckigkeitsemblem des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador cataclísmico", "name_ru_RU": "Эмблема упорства гладиатора Катаклизма", "name_it_IT": "Emblema della Tenacia del Gladiatore Cataclismico", "name_pt_PT": "Emblema da Tenacidade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73593, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Emblem of Cruelty", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0187000036239624, "flags_1": 528384, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Emblem of Cruelty", "name_ko_KR": "격변한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur cataclysmique", "name_de_DE": "Grausamkeitsemblem des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador cataclísmico", "name_ru_RU": "Эмблема жестокости гладиатора Катаклизма", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Cataclismico", "name_pt_PT": "Emblema da Crueldade do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73643, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Insignia of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Insignia of Conquest", "name_ko_KR": "격변한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur cataclysmique", "name_de_DE": "Eroberungsinsigne des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador cataclísmico", "name_ru_RU": "Знак завоевания гладиатора Катаклизма", "name_it_IT": "Fregio della Conquista del Gladiatore Cataclismico", "name_pt_PT": "Insígnia de Conquista do Gladiador Cataclísmico", "on_use": false, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 73648, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Gladiator's Badge of Conquest", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9562000036239624, "flags_1": 528384, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1013, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Gladiator's Badge of Conquest", "name_ko_KR": "격변한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur cataclysmique", "name_de_DE": "Eroberungsabzeichen des kataklysmischen Gladiators", "name_zh_CN": "灾变角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador cataclísmico", "name_ru_RU": "Жетон завоевания гладиатора Катаклизма", "name_it_IT": "Distintivo della Conquista del Gladiatore Cataclismico", "name_pt_PT": "Distintivo de Conquista do Gladiador Cataclísmico", "on_use": true, "id_encounter": 339, "id_journal_instance": 75, "id_map": 757, "instance_type": 2}, {"id": 74034, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pit Fighter", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 29760, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10031, "buy_price": 40124, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9787999987602234, "flags_1": 64, "flags_2": 28672, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Pit Fighter", "name_ko_KR": "사투장 싸움꾼", "name_fr_FR": "Combattant de la fosse", "name_de_DE": "Grubenkämpfer", "name_zh_CN": "格斗士", "name_es_ES": "Luchador de fosa", "name_ru_RU": "Боец арены", "name_it_IT": "Combattente della Fossa", "name_pt_PT": "Berloque de Luta Livre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 74035, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Master Pit Fighter", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10031, "buy_price": 40124, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Master Pit Fighter", "name_ko_KR": "사투장 싸움대장", "name_fr_FR": "Maître combattant de la fosse", "name_de_DE": "Meisterhafter Grubenkämpfer", "name_zh_CN": "格斗大师", "name_es_ES": "Maestro luchador de fosa", "name_ru_RU": "Мастер-боец арены", "name_it_IT": "Gran Combattente della Fossa", "name_pt_PT": "Mestre da Luta Livre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 75274, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Zen Alchemist Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9678000211715698, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2481, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Zen Alchemist Stone", "name_ko_KR": "참선의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste zen", "name_de_DE": "Meditativer Alchemistenstein", "name_zh_CN": "禅师的炼金石", "name_es_ES": "Piedra de alquimista zen", "name_ru_RU": "Алхимический дзен-камень", "name_it_IT": "Pietra Alchemica Zen", "name_pt_PT": "Pedra do Alquimista Zen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kiroptyric Sigil", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 181, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 3127500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 4096, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Kiroptyric Sigil", "name_ko_KR": "익수류 인장", "name_fr_FR": "Cachet kiroptyrique", "name_de_DE": "Kiroptyrisches Siegel", "name_zh_CN": "基洛普泰里克的印记", "name_es_ES": "Sigilo quiroptérico", "name_ru_RU": "Кироптировая печать", "name_it_IT": "Suggello Kiroptirico", "name_pt_PT": "Signo Quiroptírico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77114, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Wishes", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 180, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 3012800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 4096, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bottled Wishes", "name_ko_KR": "병에 담긴 소원", "name_fr_FR": "Souhait en bouteille", "name_de_DE": "Wünsche in der Flasche", "name_zh_CN": "瓶中的愿望", "name_es_ES": "Deseos embotellados", "name_ru_RU": "Желания в бутылке", "name_it_IT": "Desideri in Bottiglia", "name_pt_PT": "Desejos Engarrafados", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reflection of the Light", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 179, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 3035100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 4096, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Reflection of the Light", "name_ko_KR": "빛의 투영", "name_fr_FR": "Reflet de la Lumière", "name_de_DE": "Lichtreflexion", "name_zh_CN": "圣光投影", "name_es_ES": "Reflejo de luz", "name_ru_RU": "Отражение Света", "name_it_IT": "Riflesso della Luce", "name_pt_PT": "Reflexo da Luz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rotting Skull", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 182, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 3138800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 4096, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Rotting Skull", "name_ko_KR": "썩어가는 해골", "name_fr_FR": "Crâne putréfié", "name_de_DE": "Verrottender Schädel", "name_zh_CN": "腐败之颅", "name_es_ES": "Calavera putrefacta", "name_ru_RU": "Гниющий череп", "name_it_IT": "Teschio Marcio", "name_pt_PT": "Caveira Apodrecida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fire of the Deep", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 183, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 2990200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 4096, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fire of the Deep", "name_ko_KR": "심연의 불", "name_fr_FR": "Feu des profondeurs", "name_de_DE": "Feuer aus den Tiefen", "name_zh_CN": "地渊之烈火", "name_es_ES": "Fuego de las profundidades", "name_ru_RU": "Огонь глубин", "name_it_IT": "Fiamma del Profondo", "name_pt_PT": "Fogo das Profundezas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77197, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wrath of Unchaining", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 185, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450705, "buy_price": 2253528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Wrath of Unchaining", "name_ko_KR": "탈피의 분노", "name_fr_FR": "Fureur du déchaînement", "name_de_DE": "Zorn der Entfesselten", "name_zh_CN": "无拘之怒火", "name_es_ES": "Cólera de desencadenamiento", "name_ru_RU": "Гнев освобождения от цепей", "name_it_IT": "Ira della Libertà", "name_pt_PT": "Ira do Desacorrentar", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77198, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Will of Unbinding", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 187, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450705, "buy_price": 2253528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Will of Unbinding", "name_ko_KR": "해체의 결의", "name_fr_FR": "Volonté de déliement", "name_de_DE": "Wille der Loslösung", "name_zh_CN": "不羁之意志", "name_es_ES": "Voluntad de desvinculación", "name_ru_RU": "Воля несгибаемости", "name_it_IT": "Volontà Svincolante", "name_pt_PT": "Vontade do Desprender", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77199, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Unliving", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 188, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450705, "buy_price": 2253528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Unliving", "name_ko_KR": "망자의 심장", "name_fr_FR": "Cœur de non-vie", "name_de_DE": "Herz der Leblosen", "name_zh_CN": "不死者之心", "name_es_ES": "Corazón del sin vida", "name_ru_RU": "Сердце неживого", "name_it_IT": "Cuore Senza Vita", "name_pt_PT": "Coração do Desviver", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77200, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Unmaking", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 184, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450705, "buy_price": 2253528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Unmaking", "name_ko_KR": "사멸의 눈", "name_fr_FR": "Oeil d'anéantissement", "name_de_DE": "Auge der Auslöschung", "name_zh_CN": "灭世之魔眼", "name_es_ES": "Ojo de destrucción", "name_ru_RU": "Око рассоздания", "name_it_IT": "Occhio della Decadenza", "name_pt_PT": "Olho do Desfazer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77201, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resolve of Undying", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 186, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450705, "buy_price": 2253528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Resolve of Undying", "name_ko_KR": "불멸의 결단", "name_fr_FR": "Résolution de l'immortel", "name_de_DE": "Entschlossenheit des Unsterblichen", "name_zh_CN": "不朽者之毅", "name_es_ES": "Resolución de eternidad", "name_ru_RU": "Решимость Неумирающего", "name_it_IT": "Risolutezza Imperitura", "name_pt_PT": "Resolução do Desmorrer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77202, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Starcatcher Compass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 196, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Starcatcher Compass", "name_ko_KR": "별잡이 나침반", "name_fr_FR": "Boussole de l'attrapeur d'étoiles", "name_de_DE": "Kompass des Sternenfängers", "name_zh_CN": "摘星罗盘", "name_es_ES": "Brújula cazaestrellas", "name_ru_RU": "Компас ловца звезд", "name_it_IT": "Bussola Stellare", "name_pt_PT": "Compasso do Caça-estrelas", "on_use": false, "id_encounter": 332, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77203, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Corrupted Mind", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 198, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Insignia of the Corrupted Mind", "name_ko_KR": "타락한 마음의 휘장", "name_fr_FR": "Insigne de l'esprit corrompu", "name_de_DE": "Insigne des korrumpierten Gedanken", "name_zh_CN": "堕落心灵印记", "name_es_ES": "Insignia de mente corrupta", "name_ru_RU": "Знак отличия испорченного разума", "name_it_IT": "Fregio della Mente Corrotta", "name_pt_PT": "Insígnia da Mente Corrompida", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77204, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of the Seven Signs", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 197, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Seal of the Seven Signs", "name_ko_KR": "일곱 신호의 인장", "name_fr_FR": "Sceau des sept signes", "name_de_DE": "Siegel der sieben Zeichen", "name_zh_CN": "七兆封印", "name_es_ES": "Sello de los siete símbolos", "name_ru_RU": "Печать семи знамений", "name_it_IT": "Sigillo dei Sette Segni", "name_pt_PT": "Selo dos Sete Sinais", "on_use": false, "id_encounter": 324, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77205, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Creche of the Final Dragon", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 189, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 2129210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Creche of the Final Dragon", "name_ko_KR": "마지막 용의 보금자리", "name_fr_FR": "Crèche du dragon final", "name_de_DE": "Krippe des letzten Drachen", "name_zh_CN": "末代龙裔之源", "name_es_ES": "Nido del último dragón", "name_ru_RU": "Колыбель последнего дракона", "name_it_IT": "Nido del Drago Finale", "name_pt_PT": "Cajila do Dragão Final", "on_use": false, "id_encounter": 331, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77206, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulshifter Vortex", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 190, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579024, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Soulshifter Vortex", "name_ko_KR": "영혼변형자 소용돌이", "name_fr_FR": "Vortex change-l'âme", "name_de_DE": "Vortex des Seelenwandlers", "name_zh_CN": "移魂漩涡", "name_es_ES": "Vórtice transfigurador de almas", "name_ru_RU": "Вихрь смещения душ", "name_it_IT": "Vortice Mutanima", "name_pt_PT": "Vórtice Mutalmas", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77207, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 192, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Shadows", "name_ko_KR": "그림자의 약병", "name_fr_FR": "Fiole d'ombres", "name_de_DE": "Phiole voller Schatten", "name_zh_CN": "暗影之瓶", "name_es_ES": "Vial de sombras", "name_ru_RU": "Фиал Теней", "name_it_IT": "Fiala delle Ombre", "name_pt_PT": "Ampola de Sombras", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77208, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cunning of the Cruel", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 194, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cunning of the Cruel", "name_ko_KR": "잔혹한 자의 교활함", "name_fr_FR": "Ruse du sadique", "name_de_DE": "Listigkeit des Grausamen", "name_zh_CN": "残酷者的诡计", "name_es_ES": "Astucia del cruel", "name_ru_RU": "Хитрость жестоких", "name_it_IT": "Astuzia del Crudele", "name_pt_PT": "Astúcia dos Cruéis", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77209, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windward Heart", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 195, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Windward Heart", "name_ko_KR": "바람맞이 심장", "name_fr_FR": "Cœur garde-vent", "name_de_DE": "Herz der Windseite", "name_zh_CN": "临风之心", "name_es_ES": "Corazón guardavientos", "name_ru_RU": "Противостоящее ветрам сердце", "name_it_IT": "Cuore Guardiavento", "name_pt_PT": "Coração da Proteção Eólica", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77210, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bone-Link Fetish", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 191, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bone-Link Fetish", "name_ko_KR": "뼈고리 우상", "name_fr_FR": "Fétiche mailles-d'os", "name_de_DE": "Gekettelter Knochenfetisch", "name_zh_CN": "骨链雕像", "name_es_ES": "Fetiche de vínculo de huesos", "name_ru_RU": "Фетиш костяной сцепки", "name_it_IT": "Feticcio di Cartilagine", "name_pt_PT": "Fetiche de Elos Ósseos", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77211, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Indomitable Pride", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 193, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 424631, "buy_price": 1698524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Indomitable Pride", "name_ko_KR": "불굴의 긍지", "name_fr_FR": "Fierté indomptable", "name_de_DE": "Unbeugsamer Stolz", "name_zh_CN": "不屈之傲", "name_es_ES": "Orgullo indómito", "name_ru_RU": "Неукротимая гордость", "name_it_IT": "Orgoglio Indomabile", "name_pt_PT": "Orgulho Indomável", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77530, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ghost Iron Dragonling", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9531000256538391, "flags_1": 67633152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 6, "socket_color_2": 6, "socket_color_3": 6, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 3, "name_en_US": "Ghost Iron Dragonling", "name_ko_KR": "유령무쇠 기계용", "name_fr_FR": "Petit dragon en ectofer", "name_de_DE": "Geistereisendrachling", "name_zh_CN": "幽冥铁幼龙", "name_es_ES": "Dragonizo de hierro fantasma", "name_ru_RU": "Дракончик из призрачного железа", "name_it_IT": "Minidrago di Ectoferro", "name_pt_PT": "Dragonete de Ferro Fantasma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of the Seven Signs", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 197, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Seal of the Seven Signs", "name_ko_KR": "일곱 신호의 인장", "name_fr_FR": "Sceau des sept signes", "name_de_DE": "Siegel der sieben Zeichen", "name_zh_CN": "七兆封印", "name_es_ES": "Sello de los siete símbolos", "name_ru_RU": "Печать семи знамений", "name_it_IT": "Sigillo dei Sette Segni", "name_pt_PT": "Selo dos Sete Sinais", "on_use": false, "id_encounter": 324, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77970, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulshifter Vortex", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 190, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579024, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1571, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Soulshifter Vortex", "name_ko_KR": "영혼변형자 소용돌이", "name_fr_FR": "Vortex change-l'âme", "name_de_DE": "Vortex des Seelenwandlers", "name_zh_CN": "移魂漩涡", "name_es_ES": "Vórtice transfigurador de almas", "name_ru_RU": "Вихрь смещения душ", "name_it_IT": "Vortice Mutanima", "name_pt_PT": "Vórtice Mutalmas", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77971, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Corrupted Mind", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 198, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Insignia of the Corrupted Mind", "name_ko_KR": "타락한 마음의 휘장", "name_fr_FR": "Insigne de l'esprit corrompu", "name_de_DE": "Insigne des korrumpierten Gedanken", "name_zh_CN": "堕落心灵印记", "name_es_ES": "Insignia de mente corrupta", "name_ru_RU": "Знак отличия испорченного разума", "name_it_IT": "Fregio della Mente Corrotta", "name_pt_PT": "Insígnia da Mente Corrompida", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77972, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Creche of the Final Dragon", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 189, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Creche of the Final Dragon", "name_ko_KR": "마지막 용의 보금자리", "name_fr_FR": "Crèche du dragon final", "name_de_DE": "Krippe des letzten Drachen", "name_zh_CN": "末代龙裔之源", "name_es_ES": "Nido del último dragón", "name_ru_RU": "Колыбель последнего дракона", "name_it_IT": "Nido del Drago Finale", "name_pt_PT": "Cajila do Dragão Final", "on_use": false, "id_encounter": 331, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77973, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Starcatcher Compass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 196, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1612, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Starcatcher Compass", "name_ko_KR": "별잡이 나침반", "name_fr_FR": "Boussole de l'attrapeur d'étoiles", "name_de_DE": "Kompass des Sternenfängers", "name_zh_CN": "摘星罗盘", "name_es_ES": "Brújula cazaestrellas", "name_ru_RU": "Компас ловца звезд", "name_it_IT": "Bussola Stellare", "name_pt_PT": "Compasso do Caça-estrelas", "on_use": false, "id_encounter": 332, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77974, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wrath of Unchaining", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 185, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432131, "buy_price": 2160655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1612, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Wrath of Unchaining", "name_ko_KR": "탈피의 분노", "name_fr_FR": "Fureur du déchaînement", "name_de_DE": "Zorn der Entfesselten", "name_zh_CN": "无拘之怒火", "name_es_ES": "Cólera de desencadenamiento", "name_ru_RU": "Гнев освобождения от цепей", "name_it_IT": "Ira della Libertà", "name_pt_PT": "Ira do Desacorrentar", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77975, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Will of Unbinding", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 187, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432131, "buy_price": 2160655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Will of Unbinding", "name_ko_KR": "해체의 결의", "name_fr_FR": "Volonté de déliement", "name_de_DE": "Wille der Loslösung", "name_zh_CN": "不羁之意志", "name_es_ES": "Voluntad de desvinculación", "name_ru_RU": "Воля несгибаемости", "name_it_IT": "Volontà Svincolante", "name_pt_PT": "Vontade do Desprender", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77976, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Unliving", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 188, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432131, "buy_price": 2160655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Unliving", "name_ko_KR": "망자의 심장", "name_fr_FR": "Cœur de non-vie", "name_de_DE": "Herz der Leblosen", "name_zh_CN": "不死者之心", "name_es_ES": "Corazón del sin vida", "name_ru_RU": "Сердце неживого", "name_it_IT": "Cuore Senza Vita", "name_pt_PT": "Coração do Desviver", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77977, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Unmaking", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 184, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432131, "buy_price": 2160655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Unmaking", "name_ko_KR": "사멸의 눈", "name_fr_FR": "Oeil d'anéantissement", "name_de_DE": "Auge der Auslöschung", "name_zh_CN": "灭世之魔眼", "name_es_ES": "Ojo de destrucción", "name_ru_RU": "Око рассоздания", "name_it_IT": "Occhio della Decadenza", "name_pt_PT": "Olho do Desfazer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resolve of Undying", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 186, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432131, "buy_price": 2160655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1571, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Resolve of Undying", "name_ko_KR": "불멸의 결단", "name_fr_FR": "Résolution de l'immortel", "name_de_DE": "Entschlossenheit des Unsterblichen", "name_zh_CN": "不朽者之毅", "name_es_ES": "Resolución de eternidad", "name_ru_RU": "Решимость Неумирающего", "name_it_IT": "Risolutezza Imperitura", "name_pt_PT": "Resolução do Desmorrer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77979, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 192, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1612, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Shadows", "name_ko_KR": "그림자의 약병", "name_fr_FR": "Fiole d'ombres", "name_de_DE": "Phiole voller Schatten", "name_zh_CN": "暗影之瓶", "name_es_ES": "Vial de sombras", "name_ru_RU": "Фиал Теней", "name_it_IT": "Fiala delle Ombre", "name_pt_PT": "Ampola de Sombras", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77980, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cunning of the Cruel", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 194, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cunning of the Cruel", "name_ko_KR": "잔혹한 자의 교활함", "name_fr_FR": "Ruse du sadique", "name_de_DE": "Listigkeit des Grausamen", "name_zh_CN": "残酷者的诡计", "name_es_ES": "Astucia del cruel", "name_ru_RU": "Хитрость жестоких", "name_it_IT": "Astuzia del Crudele", "name_pt_PT": "Astúcia dos Cruéis", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77981, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windward Heart", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 195, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Windward Heart", "name_ko_KR": "바람맞이 심장", "name_fr_FR": "Cœur garde-vent", "name_de_DE": "Herz der Windseite", "name_zh_CN": "临风之心", "name_es_ES": "Corazón guardavientos", "name_ru_RU": "Противостоящее ветрам сердце", "name_it_IT": "Cuore Guardiavento", "name_pt_PT": "Coração da Proteção Eólica", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77982, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bone-Link Fetish", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 191, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bone-Link Fetish", "name_ko_KR": "뼈고리 우상", "name_fr_FR": "Fétiche mailles-d'os", "name_de_DE": "Gekettelter Knochenfetisch", "name_zh_CN": "骨链雕像", "name_es_ES": "Fetiche de vínculo de huesos", "name_ru_RU": "Фетиш костяной сцепки", "name_it_IT": "Feticcio di Cartilagine", "name_pt_PT": "Fetiche de Elos Ósseos", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77983, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Indomitable Pride", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 193, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 1571, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Indomitable Pride", "name_ko_KR": "불굴의 긍지", "name_fr_FR": "Fierté indomptable", "name_de_DE": "Unbeugsamer Stolz", "name_zh_CN": "不屈之傲", "name_es_ES": "Orgullo indómito", "name_ru_RU": "Неукротимая гордость", "name_it_IT": "Orgoglio Indomabile", "name_pt_PT": "Orgulho Indomável", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kiroptyric Sigil", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 181, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 0, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Kiroptyric Sigil", "name_ko_KR": "익수류 인장", "name_fr_FR": "Cachet kiroptyrique", "name_de_DE": "Kiroptyrisches Siegel", "name_zh_CN": "基洛普泰里克的印记", "name_es_ES": "Sigilo quiroptérico", "name_ru_RU": "Кироптировая печать", "name_it_IT": "Suggello Kiroptirico", "name_pt_PT": "Signo Quiroptírico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77985, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Wishes", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 180, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bottled Wishes", "name_ko_KR": "병에 담긴 소원", "name_fr_FR": "Souhait en bouteille", "name_de_DE": "Wünsche in der Flasche", "name_zh_CN": "瓶中的愿望", "name_es_ES": "Deseos embotellados", "name_ru_RU": "Желания в бутылке", "name_it_IT": "Desideri in Bottiglia", "name_pt_PT": "Desejos Engarrafados", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77986, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reflection of the Light", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 179, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 0, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Reflection of the Light", "name_ko_KR": "빛의 투영", "name_fr_FR": "Reflet de la Lumière", "name_de_DE": "Lichtreflexion", "name_zh_CN": "圣光投影", "name_es_ES": "Reflejo de luz", "name_ru_RU": "Отражение Света", "name_it_IT": "Riflesso della Luce", "name_pt_PT": "Reflexo da Luz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77987, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rotting Skull", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 182, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 0, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Rotting Skull", "name_ko_KR": "썩어가는 해골", "name_fr_FR": "Crâne putréfié", "name_de_DE": "Verrottender Schädel", "name_zh_CN": "腐败之颅", "name_es_ES": "Calavera putrefacta", "name_ru_RU": "Гниющий череп", "name_it_IT": "Teschio Marcio", "name_pt_PT": "Caveira Apodrecida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77988, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fire of the Deep", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 183, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 0, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Fire of the Deep", "name_ko_KR": "심연의 불", "name_fr_FR": "Feu des profondeurs", "name_de_DE": "Feuer aus den Tiefen", "name_zh_CN": "地渊之烈火", "name_es_ES": "Fuego de las profundidades", "name_ru_RU": "Огонь глубин", "name_it_IT": "Fiamma del Profondo", "name_pt_PT": "Fogo das Profundezas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 77989, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of the Seven Signs", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 197, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 8, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Seal of the Seven Signs", "name_ko_KR": "일곱 신호의 인장", "name_fr_FR": "Sceau des sept signes", "name_de_DE": "Siegel der sieben Zeichen", "name_zh_CN": "七兆封印", "name_es_ES": "Sello de los siete símbolos", "name_ru_RU": "Печать семи знамений", "name_it_IT": "Sigillo dei Sette Segni", "name_pt_PT": "Selo dos Sete Sinais", "on_use": false, "id_encounter": 324, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77990, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulshifter Vortex", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 190, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 8, "flags_2": 33579024, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Soulshifter Vortex", "name_ko_KR": "영혼변형자 소용돌이", "name_fr_FR": "Vortex change-l'âme", "name_de_DE": "Vortex des Seelenwandlers", "name_zh_CN": "移魂漩涡", "name_es_ES": "Vórtice transfigurador de almas", "name_ru_RU": "Вихрь смещения душ", "name_it_IT": "Vortice Mutanima", "name_pt_PT": "Vórtice Mutalmas", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77991, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of the Corrupted Mind", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 198, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 8, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Insignia of the Corrupted Mind", "name_ko_KR": "타락한 마음의 휘장", "name_fr_FR": "Insigne de l'esprit corrompu", "name_de_DE": "Insigne des korrumpierten Gedanken", "name_zh_CN": "堕落心灵印记", "name_es_ES": "Insignia de mente corrupta", "name_ru_RU": "Знак отличия испорченного разума", "name_it_IT": "Fregio della Mente Corrotta", "name_pt_PT": "Insígnia da Mente Corrompida", "on_use": false, "id_encounter": 325, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77992, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Creche of the Final Dragon", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 189, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 8, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Creche of the Final Dragon", "name_ko_KR": "마지막 용의 보금자리", "name_fr_FR": "Crèche du dragon final", "name_de_DE": "Krippe des letzten Drachen", "name_zh_CN": "末代龙裔之源", "name_es_ES": "Nido del último dragón", "name_ru_RU": "Колыбель последнего дракона", "name_it_IT": "Nido del Drago Finale", "name_pt_PT": "Cajila do Dragão Final", "on_use": false, "id_encounter": 331, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77993, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Starcatcher Compass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 196, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 8, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Starcatcher Compass", "name_ko_KR": "별잡이 나침반", "name_fr_FR": "Boussole de l'attrapeur d'étoiles", "name_de_DE": "Kompass des Sternenfängers", "name_zh_CN": "摘星罗盘", "name_es_ES": "Brújula cazaestrellas", "name_ru_RU": "Компас ловца звезд", "name_it_IT": "Bussola Stellare", "name_pt_PT": "Compasso do Caça-estrelas", "on_use": false, "id_encounter": 332, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77994, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wrath of Unchaining", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 185, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482131, "buy_price": 1928524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 8, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Wrath of Unchaining", "name_ko_KR": "탈피의 분노", "name_fr_FR": "Fureur du déchaînement", "name_de_DE": "Zorn der Entfesselten", "name_zh_CN": "无拘之怒火", "name_es_ES": "Cólera de desencadenamiento", "name_ru_RU": "Гнев освобождения от цепей", "name_it_IT": "Ira della Libertà", "name_pt_PT": "Ira do Desacorrentar", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Will of Unbinding", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 187, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482131, "buy_price": 1928524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 8, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Will of Unbinding", "name_ko_KR": "해체의 결의", "name_fr_FR": "Volonté de déliement", "name_de_DE": "Wille der Loslösung", "name_zh_CN": "不羁之意志", "name_es_ES": "Voluntad de desvinculación", "name_ru_RU": "Воля несгибаемости", "name_it_IT": "Volontà Svincolante", "name_pt_PT": "Vontade do Desprender", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77996, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Unliving", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 188, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482131, "buy_price": 1928524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 8, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Unliving", "name_ko_KR": "망자의 심장", "name_fr_FR": "Cœur de non-vie", "name_de_DE": "Herz der Leblosen", "name_zh_CN": "不死者之心", "name_es_ES": "Corazón del sin vida", "name_ru_RU": "Сердце неживого", "name_it_IT": "Cuore Senza Vita", "name_pt_PT": "Coração do Desviver", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77997, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Unmaking", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 184, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482131, "buy_price": 1928524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 8, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Unmaking", "name_ko_KR": "사멸의 눈", "name_fr_FR": "Oeil d'anéantissement", "name_de_DE": "Auge der Auslöschung", "name_zh_CN": "灭世之魔眼", "name_es_ES": "Ojo de destrucción", "name_ru_RU": "Око рассоздания", "name_it_IT": "Occhio della Decadenza", "name_pt_PT": "Olho do Desfazer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77998, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resolve of Undying", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 186, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482131, "buy_price": 1928524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 8, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Resolve of Undying", "name_ko_KR": "불멸의 결단", "name_fr_FR": "Résolution de l'immortel", "name_de_DE": "Entschlossenheit des Unsterblichen", "name_zh_CN": "不朽者之毅", "name_es_ES": "Resolución de eternidad", "name_ru_RU": "Решимость Неумирающего", "name_it_IT": "Risolutezza Imperitura", "name_pt_PT": "Resolução do Desmorrer", "on_use": false, "id_encounter": 318, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 77999, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 192, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 8, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Shadows", "name_ko_KR": "그림자의 약병", "name_fr_FR": "Fiole d'ombres", "name_de_DE": "Phiole voller Schatten", "name_zh_CN": "暗影之瓶", "name_es_ES": "Vial de sombras", "name_ru_RU": "Фиал Теней", "name_it_IT": "Fiala delle Ombre", "name_pt_PT": "Ampola de Sombras", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 78000, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cunning of the Cruel", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 194, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 8, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Cunning of the Cruel", "name_ko_KR": "잔혹한 자의 교활함", "name_fr_FR": "Ruse du sadique", "name_de_DE": "Listigkeit des Grausamen", "name_zh_CN": "残酷者的诡计", "name_es_ES": "Astucia del cruel", "name_ru_RU": "Хитрость жестоких", "name_it_IT": "Astuzia del Crudele", "name_pt_PT": "Astúcia dos Cruéis", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 78001, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windward Heart", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 195, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 8, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Windward Heart", "name_ko_KR": "바람맞이 심장", "name_fr_FR": "Cœur garde-vent", "name_de_DE": "Herz der Windseite", "name_zh_CN": "临风之心", "name_es_ES": "Corazón guardavientos", "name_ru_RU": "Противостоящее ветрам сердце", "name_it_IT": "Cuore Guardiavento", "name_pt_PT": "Coração da Proteção Eólica", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 78002, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bone-Link Fetish", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 191, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 8, "flags_2": 134242320, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Bone-Link Fetish", "name_ko_KR": "뼈고리 우상", "name_fr_FR": "Fétiche mailles-d'os", "name_de_DE": "Gekettelter Knochenfetisch", "name_zh_CN": "骨链雕像", "name_es_ES": "Fetiche de vínculo de huesos", "name_ru_RU": "Фетиш костяной сцепки", "name_it_IT": "Feticcio di Cartilagine", "name_pt_PT": "Fetiche de Elos Ósseos", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 78003, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Indomitable Pride", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 193, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457131, "buy_price": 1828524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 8, "flags_2": 33579008, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Indomitable Pride", "name_ko_KR": "불굴의 긍지", "name_fr_FR": "Fierté indomptable", "name_de_DE": "Unbeugsamer Stolz", "name_zh_CN": "不屈之傲", "name_es_ES": "Orgullo indómito", "name_ru_RU": "Неукротимая гордость", "name_it_IT": "Orgoglio Indomabile", "name_pt_PT": "Orgulho Indomável", "on_use": false, "id_encounter": 311, "id_journal_instance": 187, "id_map": 967, "instance_type": 2}, {"id": 79327, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 206, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0127999782562256, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Relic of Xuen", "name_ko_KR": "쉬엔의 성물", "name_fr_FR": "Relique de Xuen", "name_de_DE": "Reliquie von Xuen", "name_zh_CN": "雪怒圣物", "name_es_ES": "Reliquia de Xuen", "name_ru_RU": "Реликвия Сюэня", "name_it_IT": "Reliquia di Xuen", "name_pt_PT": "Relíquia de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 79328, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 206, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0163999795913696, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Relic of Xuen", "name_ko_KR": "쉬엔의 성물", "name_fr_FR": "Relique de Xuen", "name_de_DE": "Reliquie von Xuen", "name_zh_CN": "雪怒圣物", "name_es_ES": "Reliquia de Xuen", "name_ru_RU": "Реликвия Сюэня", "name_it_IT": "Reliquia di Xuen", "name_pt_PT": "Relíquia de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 79329, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Niuzao", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 206, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0200999975204468, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Relic of Niuzao", "name_ko_KR": "니우짜오의 성물", "name_fr_FR": "Relique de Niuzao", "name_de_DE": "Relikt von Niuzao", "name_zh_CN": "砮皂圣物", "name_es_ES": "Reliquia de Niuzao", "name_ru_RU": "Реликвия Нюцзао", "name_it_IT": "Reliquia di Niuzao", "name_pt_PT": "Relíquia de Niuzao", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 79330, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Chi-Ji", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 206, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8068, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023800015449524, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Relic of Chi-Ji", "name_ko_KR": "츠지의 성물", "name_fr_FR": "Relique de Chi Ji", "name_de_DE": "Relikt von Chi-Ji", "name_zh_CN": "赤精圣物", "name_es_ES": "Reliquia de Chi-Ji", "name_ru_RU": "Реликвия Чи-Цзи", "name_it_IT": "Reliquia di Chi-Ji", "name_pt_PT": "Relíquia de Chi-Ji", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 79331, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Yu'lon", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 206, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027400016784668, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Relic of Yu'lon", "name_ko_KR": "위론의 성물", "name_fr_FR": "Relique de Yu'lon", "name_de_DE": "Reliquie von Yu'lon", "name_zh_CN": "玉珑圣物", "name_es_ES": "Reliquia de Yu'lon", "name_ru_RU": "Реликвия Юй-лун", "name_it_IT": "Reliquia di Yu'lon", "name_pt_PT": "Relíquia de Yu'lon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80773, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Singing Cricket Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 348, "buy_price": 1741, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017999410629272, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Singing Cricket Medallion", "name_ko_KR": "노래하는 귀뚜라미의 대형메달", "name_fr_FR": "Médaillon de criquet chantant", "name_de_DE": "Medaillon der zirpenden Grille", "name_zh_CN": "吟蛩徽章", "name_es_ES": "Medallón del grillo cantarín", "name_ru_RU": "Медальон поющего сверчка", "name_it_IT": "Medaglione del Grillo Canterino", "name_pt_PT": "Medalhão do Grilo Cantador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80774, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grove Viper Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14620, "buy_price": 73101, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0054999589920044, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Grove Viper Medallion", "name_ko_KR": "숲독사 메달", "name_fr_FR": "Médaillon de vipère du bosquet", "name_de_DE": "Hainvipernmedaillon", "name_zh_CN": "林地毒蛇徽章", "name_es_ES": "Medallón de víbora de la arboleda", "name_ru_RU": "Медальон лесной гадюки", "name_it_IT": "Medaglione della Vipera del Bosco", "name_pt_PT": "Medalhão da Víbora do Bosque", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80775, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coral Adder Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14674, "buy_price": 73370, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0091999769210815, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Coral Adder Medallion", "name_ko_KR": "산호 살무사 메달", "name_fr_FR": "Médaillon de vipère corail", "name_de_DE": "Korallnattermedaillon", "name_zh_CN": "珊瑚蝮蛇徽章", "name_es_ES": "Medallón de víboris de coral", "name_ru_RU": "Медальон коралловой гадюки", "name_it_IT": "Medaglione del Serpente Corallo", "name_pt_PT": "Medalhão da Víbora Coral", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80776, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flamelager Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14727, "buy_price": 73639, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0128999948501587, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Flamelager Medallion", "name_ko_KR": "플레임라거 대형메달", "name_fr_FR": "Médaillon de Blonde de Feu", "name_de_DE": "Flammenbräumedaillon", "name_zh_CN": "火酒徽章", "name_es_ES": "Medallón de Aguardiente", "name_ru_RU": "Медальон Огненного Лагера", "name_it_IT": "Medaglione dei Birra Calda", "name_pt_PT": "Medalhão Cevada Flamejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80777, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Amberfly Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14780, "buy_price": 73900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0164999961853027, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Amberfly Idol", "name_ko_KR": "호박말벌 우상", "name_fr_FR": "Idole d'ambraile", "name_de_DE": "Bernfliegengötze", "name_zh_CN": "琥珀蝇雕像", "name_es_ES": "Ídolo Brasacielo", "name_ru_RU": "Идол янтарной мухи", "name_it_IT": "Idolo di Vespa d'Ambra", "name_pt_PT": "Ídolo de Moscâmbar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80778, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Silkbead Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 354, "buy_price": 1773, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0202000141143799, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Silkbead Idol", "name_ko_KR": "비단구슬 우상", "name_fr_FR": "Idole perlesoie", "name_de_DE": "Seidenperlengötze", "name_zh_CN": "珠丝雕像", "name_es_ES": "Ídolo Rastroseda", "name_ru_RU": "Вышитый шелком идол", "name_it_IT": "Idolo dal Guscio Perlato", "name_pt_PT": "Ídolo Conta de Seda", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror Strider Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14887, "buy_price": 74438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023900032043457, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mirror Strider Emblem", "name_ko_KR": "거울 소금쟁이 문장", "name_fr_FR": "Emblème de trotteur du miroir", "name_de_DE": "Spiegelschreiteremblem", "name_zh_CN": "明镜水黾纹章", "name_es_ES": "Emblema de zapatero diáfano", "name_ru_RU": "Эмблема зеркального долгонога", "name_it_IT": "Emblema del Gerride Lacustre", "name_pt_PT": "Emblema do Corre-espelhos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80780, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Greenpaw Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14941, "buy_price": 74707, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276000499725342, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Greenpaw Idol", "name_ko_KR": "푸른발 우상", "name_fr_FR": "Idole de Patte Verte", "name_de_DE": "Laubtatzengötze", "name_zh_CN": "绿掌雕像", "name_es_ES": "Ídolo Zarpaverde", "name_ru_RU": "Идол Зеленой Лапы", "name_it_IT": "Idolo degli Zampaverde", "name_pt_PT": "Ídolo Pataverde", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80781, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shoots of Life", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14993, "buy_price": 74969, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0312000513076782, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Shoots of Life", "name_ko_KR": "인생의 한 방", "name_fr_FR": "Pousses de vie", "name_de_DE": "Sprossen des Lebens", "name_zh_CN": "生命之芽", "name_es_ES": "Brotes de vida", "name_ru_RU": "Ростки жизни", "name_it_IT": "Colpi della Vita", "name_pt_PT": "Descargas de Vida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80782, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Misty Jade Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13977, "buy_price": 69887, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9613000154495239, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Misty Jade Idol", "name_ko_KR": "안개 비취 우상", "name_fr_FR": "Idole de jade brumeux", "name_de_DE": "Nebeljadegötze", "name_zh_CN": "烟玉雕像", "name_es_ES": "Ídolo de jade brumoso", "name_ru_RU": "Туманный нефритовый идол", "name_it_IT": "Idolo di Giada Nebbiosa", "name_pt_PT": "Ídolo de Jade Fumê", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scavenger's Medal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14624, "buy_price": 73122, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 65536, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Scavenger's Medal", "name_ko_KR": "청소부의 메달", "name_fr_FR": "Médaille du charognard", "name_de_DE": "Medaille des Plünderers", "name_zh_CN": "拾荒者勋章", "name_es_ES": "Medalla de carroñero", "name_ru_RU": "Медаль падальщика", "name_it_IT": "Medaglia dell'Usurpatore", "name_pt_PT": "Medalha do Catador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80961, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scavenger's Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14678, "buy_price": 73391, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 65536, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Scavenger's Emblem", "name_ko_KR": "청소부의 문장", "name_fr_FR": "Emblème du charognard", "name_de_DE": "Emblem des Plünderers", "name_zh_CN": "拾荒者符记", "name_es_ES": "Emblema de carroñero", "name_ru_RU": "Эмблема падальщика", "name_it_IT": "Emblema dell'Usurpatore", "name_pt_PT": "Emblema do Catador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80962, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scavenger's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 352, "buy_price": 1760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 65536, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Scavenger's Medallion", "name_ko_KR": "청소부의 대형메달", "name_fr_FR": "Médaillon du charognard", "name_de_DE": "Medaillon des Plünderers", "name_zh_CN": "拾荒者奖章", "name_es_ES": "Medallón de carroñero", "name_ru_RU": "Медальон падальщика", "name_it_IT": "Medaglione dell'Usurpatore", "name_pt_PT": "Medalhão do Catador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80963, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scavenger's Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14784, "buy_price": 73922, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 65536, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Scavenger's Badge", "name_ko_KR": "청소부의 배지", "name_fr_FR": "Ecusson du charognard", "name_de_DE": "Abzeichen des Plünderers", "name_zh_CN": "拾荒者徽章", "name_es_ES": "Distintivo de carroñero", "name_ru_RU": "Знак падальщика", "name_it_IT": "Distintivo dell'Usurpatore", "name_pt_PT": "Distintivo do Catador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 80964, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scavenger's Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14838, "buy_price": 74191, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 65536, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Scavenger's Insignia", "name_ko_KR": "청소부의 휘장", "name_fr_FR": "Insigne du charognard", "name_de_DE": "Insigne des Plünderers", "name_zh_CN": "拾荒者徽记", "name_es_ES": "Insignia de carroñero", "name_ru_RU": "Знак различия падальщика", "name_it_IT": "Fregio dell'Usurpatore", "name_pt_PT": "Insígnia do Catador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81125, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windswept Pages", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9760000109672546, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Windswept Pages", "name_ko_KR": "바람을 맞은 책장", "name_fr_FR": "Pages emportées par le vent", "name_de_DE": "Windgepeitschte Seiten", "name_zh_CN": "风中的书页", "name_es_ES": "Páginas arrastradas por el viento", "name_ru_RU": "Унесенные ветром страницы", "name_it_IT": "Pagine Scombinate dal Vento", "name_pt_PT": "Páginas Levadas pelo Vento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81133, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empty Fruit Barrel", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053999423980713, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Empty Fruit Barrel", "name_ko_KR": "빈 과일 통", "name_fr_FR": "Baril de fruits vide", "name_de_DE": "Leeres Fruchtfass", "name_zh_CN": "空的水果桶", "name_es_ES": "Barril de fruta vacío", "name_ru_RU": "Пустой бочонок из-под фруктов", "name_it_IT": "Barile di Frutta Vuoto", "name_pt_PT": "Barril de Frutas Vazio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81138, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carbonic Carbuncle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502000212669373, "flags_1": 524288, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Carbonic Carbuncle", "name_ko_KR": "탄소 몽돌", "name_fr_FR": "Escarboucle carbonique", "name_de_DE": "Kohlenstoffhaltiger Karfunkel", "name_zh_CN": "钙化红玉", "name_es_ES": "Carbunco carbónico", "name_ru_RU": "Углеродный карбункул", "name_it_IT": "Granato Carbonico", "name_pt_PT": "Carbúnculo Carbônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Fire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9609000086784363, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Fire", "name_ko_KR": "불의 심장", "name_fr_FR": "Cœur de feu", "name_de_DE": "Flammendes Herz", "name_zh_CN": "烈焰之心", "name_es_ES": "Corazón de fuego", "name_ru_RU": "Сердце огня", "name_it_IT": "Cuore di Fuoco", "name_pt_PT": "Coração de Fogo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81192, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vision of the Predator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Vision of the Predator", "name_ko_KR": "약탈자의 환영", "name_fr_FR": "Vision du prédateur", "name_de_DE": "Sicht des Raubtiers", "name_zh_CN": "掠食者幻象", "name_es_ES": "Visión del depredador", "name_ru_RU": "Взгляд хищника", "name_it_IT": "Visione del Predatore", "name_pt_PT": "Visão do Predador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81243, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Protector Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944000244140625, "flags_1": 524288, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Iron Protector Talisman", "name_ko_KR": "무쇠의 수호자 부적", "name_fr_FR": "Talisman de protecteur en fer", "name_de_DE": "Eiserner Schutztalisman", "name_zh_CN": "钢铁保护者护符", "name_es_ES": "Dije protector de hierro", "name_ru_RU": "Талисман железного защитника", "name_it_IT": "Talismano del Protettore di Ferro", "name_pt_PT": "Talismã do Protetor de Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashfrozen Resin Globule", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9941999912261963, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Flashfrozen Resin Globule", "name_ko_KR": "급속 냉동된 나뭇진 방울", "name_fr_FR": "Globule de résine surgelée", "name_de_DE": "Schockgefrorenes Harzkügelchen", "name_zh_CN": "闪冻松脂球", "name_es_ES": "Glóbulo de resina congelado rápidamente", "name_ru_RU": "Замороженная капля смолы", "name_it_IT": "Globulo di Linfa Congelato", "name_pt_PT": "Glóbulo de Resina Supercongelado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81264, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Ichorous Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024399995803833, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Ichorous Blood", "name_ko_KR": "끈끈한 피가 든 병", "name_fr_FR": "Fiole de sang ichoreux", "name_de_DE": "Phiole mit eitrigem Blut", "name_zh_CN": "腐败血瓶", "name_es_ES": "Vial de sangre icorosa", "name_ru_RU": "Сосуд с кровью и гноем", "name_it_IT": "Fiala di Sangue di Icore", "name_pt_PT": "Frasco de Sangue Icoroso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81265, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashing Steel Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0281000137329102, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Flashing Steel Talisman", "name_ko_KR": "번쩍이는 강철 부적", "name_fr_FR": "Talisman d'acier miroitant", "name_de_DE": "Blitzender Stahltalisman", "name_zh_CN": "炫目精钢护符", "name_es_ES": "Dije de acero ostentoso", "name_ru_RU": "Талисман стальной вспышки", "name_it_IT": "Talismano d'Acciaio Lampeggiante", "name_pt_PT": "Talismã do Clarão de Aço", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81266, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Price of Progress", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0318000316619873, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Price of Progress", "name_ko_KR": "연구의 대가", "name_fr_FR": "Prix du progrès", "name_de_DE": "Preis des Fortschritts", "name_zh_CN": "进修的代价", "name_es_ES": "Precio del progreso", "name_ru_RU": "Цена продвижения", "name_it_IT": "Prezzo del Progresso", "name_pt_PT": "Preço do Progresso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81267, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Searing Words", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0354000329971313, "flags_1": 524288, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Searing Words", "name_ko_KR": "이글거리는 주문", "name_fr_FR": "Mots incendiaires", "name_de_DE": "Sengende Worte", "name_zh_CN": "焦灼真言", "name_es_ES": "Palabras abrasadoras", "name_ru_RU": "Обжигающие слова", "name_it_IT": "Parole di Fuoco", "name_pt_PT": "Palavras Calcinantes", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lessons of the Darkmaster", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Lessons of the Darkmaster", "name_ko_KR": "암흑스승의 가르침", "name_fr_FR": "Leçons du Sombre Maître", "name_de_DE": "Lektionen des Dunkelmeisters", "name_zh_CN": "黑暗院长遗训", "name_es_ES": "Lecciones del maestro oscuro", "name_ru_RU": "Уроки темного магистра", "name_it_IT": "Lezioni del Maestro Oscuro", "name_pt_PT": "Lições do Mestre da Escuridão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mist Incarnation Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 352, "buy_price": 1760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Mist Incarnation Medallion", "name_ko_KR": "안개의 화신 대형메달", "name_fr_FR": "Médaillon d'incarnation de la brume", "name_de_DE": "Medaillon der Nebelinkarnation", "name_zh_CN": "迷雾化身徽章", "name_es_ES": "Medallón de encarnación de niebla", "name_ru_RU": "Медальон порождения тумана", "name_it_IT": "Medaglione dell'Incarnazione della Nebbia", "name_pt_PT": "Medalhão da Encarnação das Brumas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bluetip Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14784, "buy_price": 73922, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Bluetip Medallion", "name_ko_KR": "푸른돌기 대형메달", "name_fr_FR": "Médaillon pointe-bleue", "name_de_DE": "Blauspitzenmedaillon", "name_zh_CN": "蓝鳍徽章", "name_es_ES": "Medallón de Puntazul", "name_ru_RU": "Синеватый медальон", "name_it_IT": "Medaglione Blu", "name_pt_PT": "Medalhão Pontazul", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81529, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badger Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14838, "buy_price": 74191, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Badger Medallion", "name_ko_KR": "오소리 대형메달", "name_fr_FR": "Médaillon de blaireau", "name_de_DE": "Honigdachsabzeichen", "name_zh_CN": "獾熊徽章", "name_es_ES": "Medallón de nutria", "name_ru_RU": "Медальон медоеда", "name_it_IT": "Medaglione Distintivo", "name_pt_PT": "Medalhão do Texugo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81530, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mauler Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14890, "buy_price": 74453, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Mauler Medallion", "name_ko_KR": "투사 대형메달", "name_fr_FR": "Médaillon de marteleur", "name_de_DE": "Raufermedaillon", "name_zh_CN": "拳师徽章", "name_es_ES": "Medallón de aplastador", "name_ru_RU": "Медальон изверга", "name_it_IT": "Medaglione del Mazzuolatore", "name_pt_PT": "Medalhão do Espancador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glade Singer Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14944, "buy_price": 74722, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Glade Singer Medallion", "name_ko_KR": "숲 노래학 대형메달", "name_fr_FR": "Médaillon de chanteuse de la clairière", "name_de_DE": "Lichtungssängermedaillon", "name_zh_CN": "林地歌者徽章", "name_es_ES": "Medallón de cantante del claro", "name_ru_RU": "Медальон лугового певуна", "name_it_IT": "Medaglione della Gru Canterina delle Radure", "name_pt_PT": "Medalhão do Canoro da Clareira", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81532, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Silkspawn Carving", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 358, "buy_price": 1792, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Silkspawn Carving", "name_ko_KR": "주단나방 조각상", "name_fr_FR": "Gravure de rejeton de soie", "name_de_DE": "Seidenbrutschnitzerei", "name_zh_CN": "魔丝蛾刻像", "name_es_ES": "Talla de engendro de seda", "name_ru_RU": "Резной шелкопряд", "name_it_IT": "Intaglio della Creatura della Seta", "name_pt_PT": "Entalhe Sedonato", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81533, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Archivist's Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130198, "buy_price": 520793, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0351999998092651, "flags_1": 589824, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Archivist's Emblem", "name_ko_KR": "기록보관인의 문장", "name_fr_FR": "Emblème d'archiviste", "name_de_DE": "Emblem des Archivars", "name_zh_CN": "档案员徽章", "name_es_ES": "Emblema de archivista", "name_ru_RU": "Эмблема архивариуса", "name_it_IT": "Emblema dell'Archivista", "name_pt_PT": "Emblema do Arquivista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81534, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carp Hunter Feather", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15104, "buy_price": 75522, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0388000011444092, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Carp Hunter Feather", "name_ko_KR": "잉어 사냥꾼 깃털", "name_fr_FR": "Plume de chasseur de carpes", "name_de_DE": "Feder des Karpfenjägers", "name_zh_CN": "鲤鱼猎手之羽", "name_es_ES": "Pluma de pescador de carpas", "name_ru_RU": "Перо ловца карпов", "name_it_IT": "Piuma della Gru Cacciatrice di Carpe", "name_pt_PT": "Pena do Pega-carpa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81535, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glade Pincher Feather", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15158, "buy_price": 75791, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0425000190734863, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Glade Pincher Feather", "name_ko_KR": "숲게 깃털", "name_fr_FR": "Plume de pinceur de la clairière", "name_de_DE": "Feder des Lichtungszwickers", "name_zh_CN": "树林钳爪之羽", "name_es_ES": "Pluma de punzador del claro", "name_ru_RU": "Перо лесного хватателя", "name_it_IT": "Piuma delle Radure", "name_pt_PT": "Pena de Pinceiro da Clareira", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81536, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jungle Huntress Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15212, "buy_price": 76060, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0462000370025635, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Jungle Huntress Idol", "name_ko_KR": "밀림의 여사냥꾼 우상", "name_fr_FR": "Idole de chasseresse de la jungle", "name_de_DE": "Idol der Dschungeljägerin", "name_zh_CN": "丛林女猎手雕像", "name_es_ES": "Ídolo de cazadora de la jungla", "name_ru_RU": "Идол охотницы джунглей", "name_it_IT": "Idolo della Cacciatrice della Giungla", "name_pt_PT": "Ídolo da Caçadora da Selva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Forest Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121635, "buy_price": 486543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 2, "name_en_US": "Faded Forest Medallion", "name_ko_KR": "빛 바랜 숲 대형메달", "name_fr_FR": "Médaillon de la forêt flétrie", "name_de_DE": "Medaillon des bleichen Waldes", "name_zh_CN": "黯淡林木徽章", "name_es_ES": "Medallón del bosque desvaído", "name_ru_RU": "Медальон поблекшего леса", "name_it_IT": "Medaglione della Foresta Scomparsa", "name_pt_PT": "Medalhão da Floresta Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81662, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Forest Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121635, "buy_price": 486543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020300030708313, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 2, "name_en_US": "Faded Forest Emblem", "name_ko_KR": "빛 바랜 숲 문장", "name_fr_FR": "Emblème de la forêt flétrie", "name_de_DE": "Emblem des bleichen Waldes", "name_zh_CN": "黯淡林木纹章", "name_es_ES": "Emblema del bosque desvaído", "name_ru_RU": "Эмблема поблекшего леса", "name_it_IT": "Emblema della Foresta Scomparsa", "name_pt_PT": "Emblema da Floresta Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81663, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Forest Medal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121635, "buy_price": 486543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240000486373901, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 2, "name_en_US": "Faded Forest Medal", "name_ko_KR": "빛 바랜 숲 메달", "name_fr_FR": "Médaille de la forêt flétrie", "name_de_DE": "Medaille des bleichen Waldes", "name_zh_CN": "黯淡林木勋章", "name_es_ES": "Medalla del bosque desvaído", "name_ru_RU": "Медаль поблекшего леса", "name_it_IT": "Medaglia della Foresta Scomparsa", "name_pt_PT": "Medalha da Floresta Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81664, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Forest Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121635, "buy_price": 486543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276999473571777, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 2, "name_en_US": "Faded Forest Insignia", "name_ko_KR": "빛 바랜 숲 휘장", "name_fr_FR": "Insigne de la forêt flétrie", "name_de_DE": "Insigne des bleichen Waldes", "name_zh_CN": "黯淡林木徽记", "name_es_ES": "Insignia del bosque desvaído", "name_ru_RU": "Знак различия поблекшего леса", "name_it_IT": "Fregio della Foresta Scomparsa", "name_pt_PT": "Insígnia da Floresta Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81665, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Forest Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121635, "buy_price": 486543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 2, "name_en_US": "Faded Forest Badge", "name_ko_KR": "빛 바랜 숲 배지", "name_fr_FR": "Ecusson de la forêt flétrie", "name_de_DE": "Abzeichen des bleichen Waldes", "name_zh_CN": "黯淡林木奖章", "name_es_ES": "Distintivo del bosque desvaído", "name_ru_RU": "Знак поблекшего леса", "name_it_IT": "Distintivo della Foresta Scomparsa", "name_pt_PT": "Distintivo da Floresta Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81829, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Springtail Foot", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 356, "buy_price": 1780, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024399995803833, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Lucky Springtail Foot", "name_ko_KR": "행운의 껑충꼬리 앞발", "name_fr_FR": "Patte de queubriole porte-bonheur", "name_de_DE": "Glückbringende Springschwanzpfote", "name_zh_CN": "幸运弹尾兔脚", "name_es_ES": "Pata de Cola Saltarina de la suerte", "name_ru_RU": "Счастливая лапка прыгохвоста", "name_it_IT": "Zampa di Codalesta Portafortuna", "name_pt_PT": "Pata de Cauda-de-mola da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81830, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Maizer Leaf", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130198, "buy_price": 520793, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0281000137329102, "flags_1": 589824, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Maizer Leaf", "name_ko_KR": "옥수수요마 잎", "name_fr_FR": "Feuille de maïs", "name_de_DE": "Blatt von einem Korndieb", "name_zh_CN": "玉蜀黍之叶", "name_es_ES": "Hoja de maicillo", "name_ru_RU": "Лист кукурузы", "name_it_IT": "Foglia di Folletto del Grano", "name_pt_PT": "Folha de Milho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81831, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadow Fox Tail", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15002, "buy_price": 75013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0318000316619873, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Shadow Fox Tail", "name_ko_KR": "그림자여우 꼬리", "name_fr_FR": "Queue de renard de l'ombre", "name_de_DE": "Schattenfuchsschwanz", "name_zh_CN": "暗影狐尾", "name_es_ES": "Cola de zorro sombrío", "name_ru_RU": "Хвост темной лисицы", "name_it_IT": "Coda di Volpe delle Ombre", "name_pt_PT": "Rabo de Raposa da Sombra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81832, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mushan Horn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15054, "buy_price": 75274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0354000329971313, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Mushan Horn", "name_ko_KR": "무샨의 뿔", "name_fr_FR": "Corne de mushan", "name_de_DE": "Mushanhorn", "name_zh_CN": "穆山兽角", "name_es_ES": "Cuerno de mushan", "name_ru_RU": "Рог мушана", "name_it_IT": "Corno di Mushan", "name_pt_PT": "Chifre de Mushan", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81833, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Longfang Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15108, "buy_price": 75543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Longfang Tooth", "name_ko_KR": "긴송곳니 이빨", "name_fr_FR": "Dent de long-croc", "name_de_DE": "Tiefbisszahn", "name_zh_CN": "长牙利齿", "name_es_ES": "Diente de Colmilargo", "name_ru_RU": "Зуб длинноклыка", "name_it_IT": "Dente di Zannalunga", "name_pt_PT": "Dente de Colmilhuda", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81834, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Silkspawn Wing", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 362, "buy_price": 1812, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.042799949645996, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Silkspawn Wing", "name_ko_KR": "주단나방 날개", "name_fr_FR": "Aile de rejeton de soie", "name_de_DE": "Seidenbrutflügel", "name_zh_CN": "魔丝蛾之翼", "name_es_ES": "Ala de engendro de seda", "name_ru_RU": "Крыло шелкопряда", "name_it_IT": "Ala di Creatura della Seta", "name_pt_PT": "Asa de Sedonata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81835, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Plainshawk Feather", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15214, "buy_price": 76074, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463999509811401, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Plainshawk Feather", "name_ko_KR": "초원매 깃털", "name_fr_FR": "Plume de faucon des plaines", "name_de_DE": "Feder eines Ebenenfalken", "name_zh_CN": "平原鹰之羽", "name_es_ES": "Pluma de halcón de la llanura", "name_ru_RU": "Перо равнинного ястреба", "name_it_IT": "Piuma di Falco delle Pianure", "name_pt_PT": "Pena de Águia-da-planície", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81836, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky \"Rabbit's\" Foot", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13813, "buy_price": 69066, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.949999988079071, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lucky \"Rabbit's\" Foot", "name_ko_KR": "행운의 \"토끼\" 발", "name_fr_FR": "Patte de « lapin » porte-bonheur", "name_de_DE": "Glückbringende \"Hasen\"-Pfote", "name_zh_CN": "幸运“兔子”脚", "name_es_ES": "Pata de \"conejo\" de la suerte", "name_ru_RU": "Счастливая \"кроличья\" лапка", "name_it_IT": "Zampa di \"Lepre\" Portafortuna", "name_pt_PT": "Pé de \"Coelho\" da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81837, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Viseclaw Carapace", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13867, "buy_price": 69335, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Viseclaw Carapace", "name_ko_KR": "야물집게발 등껍질", "name_fr_FR": "Carapace de pincétau", "name_de_DE": "Zwingzangenpanzer", "name_zh_CN": "钳爪甲壳", "name_es_ES": "Caparazón de pinzatuerca", "name_ru_RU": "Панцирь краба", "name_it_IT": "Carapace di Mordichela", "name_pt_PT": "Carapaça de Torniquete", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 81838, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tawnyhide Antler", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13920, "buy_price": 69604, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574000239372253, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Tawnyhide Antler", "name_ko_KR": "갈색가죽 사슴뿔", "name_fr_FR": "Ramure de robe-fauve", "name_de_DE": "Lohfellgeweihstange", "name_zh_CN": "棕皮鹿角", "name_es_ES": "Cornamenta leonada", "name_ru_RU": "Рог коричневого оленя", "name_it_IT": "Corna di Mantofulvo", "name_pt_PT": "Chifre de Cauda-castanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82574, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coin of Blessings", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 373, "buy_price": 1866, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9761000275611877, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Coin of Blessings", "name_ko_KR": "축복의 주화", "name_fr_FR": "Pièce de bénédiction", "name_de_DE": "Münze der Segnung", "name_zh_CN": "祝福硬币", "name_es_ES": "Moneda de bendiciones", "name_ru_RU": "Благословенная монетка", "name_it_IT": "Moneta delle Benedizioni", "name_pt_PT": "Moeda das Bênçãos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82575, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coin of Serendipity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15817, "buy_price": 79086, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797999858856201, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Coin of Serendipity", "name_ko_KR": "횡재의 주화", "name_fr_FR": "Pièce de heureux hasard", "name_de_DE": "Münze der glücklichen Fügung", "name_zh_CN": "福气硬币", "name_es_ES": "Moneda de serendipia", "name_ru_RU": "Монетка благоприятного исхода", "name_it_IT": "Moneta della Serendipità", "name_pt_PT": "Moeda da Serendipidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coin of Luck", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15877, "buy_price": 79385, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9835000038146973, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Coin of Luck", "name_ko_KR": "행운의 주화", "name_fr_FR": "Pièce de chance", "name_de_DE": "Münze des Glücksfalls", "name_zh_CN": "幸运硬币", "name_es_ES": "Moneda de suerte", "name_ru_RU": "Монетка удачи", "name_it_IT": "Moneta della Fortuna", "name_pt_PT": "Moeda da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coin of Good Fortune", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15935, "buy_price": 79675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9871000051498413, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Coin of Good Fortune", "name_ko_KR": "길운의 주화", "name_fr_FR": "Pièce de bonne fortune", "name_de_DE": "Münze des Glücks", "name_zh_CN": "好运硬币", "name_es_ES": "Moneda de buena fortuna", "name_ru_RU": "Счастливая монетка", "name_it_IT": "Moneta della Speranza", "name_pt_PT": "Moeda da Boa Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82578, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Luckydo Coin", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15994, "buy_price": 79974, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9908000230789185, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Luckydo Coin", "name_ko_KR": "복덩이 주화", "name_fr_FR": "Pièce grigri", "name_de_DE": "Glückbringende Münze", "name_zh_CN": "幸运星硬币", "name_es_ES": "Moneda grisgrís", "name_ru_RU": "Монетка удачки", "name_it_IT": "Moneta Portabene", "name_pt_PT": "Moeda Sorte-sim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lorewalker's Mark", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 380, "buy_price": 1901, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944999814033508, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lorewalker's Mark", "name_ko_KR": "전승지기의 징표", "name_fr_FR": "Marque de chroniqueur", "name_de_DE": "Mal des Lehrensuchers", "name_zh_CN": "游学者印记", "name_es_ES": "Marca del eremita", "name_ru_RU": "Метка хранителя истории", "name_it_IT": "Marchio del Ramingo della Sapienza", "name_pt_PT": "Marca do Andarilho das Lendas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lorewalker's Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16114, "buy_price": 80571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.998199999332428, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lorewalker's Emblem", "name_ko_KR": "전승지기의 문장", "name_fr_FR": "Emblème de chroniqueur", "name_de_DE": "Emblem des Lehrensuchers", "name_zh_CN": "游学者徽章", "name_es_ES": "Emblema del eremita", "name_ru_RU": "Эмблема хранителя истории", "name_it_IT": "Emblema del Ramingo della Sapienza", "name_pt_PT": "Emblema do Andarilho das Lendas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82581, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lorewalker's Sigil", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16172, "buy_price": 80862, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017999410629272, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lorewalker's Sigil", "name_ko_KR": "전승지기의 인장", "name_fr_FR": "Cachet de chroniqueur", "name_de_DE": "Siegel des Lehrensuchers", "name_zh_CN": "游学者符记", "name_es_ES": "Sigilo del eremita", "name_ru_RU": "Печать хранителя истории", "name_it_IT": "Sigillo del Ramingo della Sapienza", "name_pt_PT": "Signo do Andarilho das Lendas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82582, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lorewalker's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16659, "buy_price": 83299, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lorewalker's Medallion", "name_ko_KR": "전승지기의 메달", "name_fr_FR": "Médaillon de chroniqueur", "name_de_DE": "Medaillon des Lehrensuchers", "name_zh_CN": "游学者奖章", "name_es_ES": "Medallón del eremita", "name_ru_RU": "Медальон хранителя истории", "name_it_IT": "Medaglione del Ramingo della Sapienza", "name_pt_PT": "Medalhão do Andarilho das Lendas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82583, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lorewalker's Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16719, "buy_price": 83598, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0356999635696411, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lorewalker's Insignia", "name_ko_KR": "전승지기의 휘장", "name_fr_FR": "Insigne de chroniqueur", "name_de_DE": "Insigne des Lehrensuchers", "name_zh_CN": "游学者徽记", "name_es_ES": "Insignia del eremita", "name_ru_RU": "Знак различия хранителя истории", "name_it_IT": "Fregio del Ramingo della Sapienza", "name_pt_PT": "Insígnia do Andarilho das Lendas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82696, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainscaler Mark", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 128295, "buy_price": 513182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0356999635696411, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 2, "name_en_US": "Mountainscaler Mark", "name_ko_KR": "산악등반가의 징표", "name_fr_FR": "Marque d'ascensionniste", "name_de_DE": "Mal des Bergsteigers", "name_zh_CN": "攀山者印记", "name_es_ES": "Marca de escalamontañas", "name_ru_RU": "Метка горной высоты", "name_it_IT": "Marchio dello Scalatore", "name_pt_PT": "Marca do Alpinista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82697, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainscaler Medal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 128295, "buy_price": 513182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0393999814987183, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 2, "name_en_US": "Mountainscaler Medal", "name_ko_KR": "산악등반가의 메달", "name_fr_FR": "Médaille d'ascensionniste", "name_de_DE": "Medaille des Bergsteigers", "name_zh_CN": "攀山者勋章", "name_es_ES": "Medalla de escalamontañas", "name_ru_RU": "Медаль горной высоты", "name_it_IT": "Medaglia dello Scalatore", "name_pt_PT": "Medalha do Alpinista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82698, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainscaler Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 128295, "buy_price": 513182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0429999828338623, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 2, "name_en_US": "Mountainscaler Emblem", "name_ko_KR": "산악등반가의 문장", "name_fr_FR": "Emblème d'ascensionniste", "name_de_DE": "Emblem des Bergsteigers", "name_zh_CN": "攀山者徽记", "name_es_ES": "Emblema de escalamontañas", "name_ru_RU": "Эмблема горной высоты", "name_it_IT": "Emblema dello Scalatore", "name_pt_PT": "Emblema do Alpinista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82699, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainscaler Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 128295, "buy_price": 513182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0467000007629395, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 2, "name_en_US": "Mountainscaler Insignia", "name_ko_KR": "산악등반가의 휘장", "name_fr_FR": "Insigne d'ascensionniste", "name_de_DE": "Insigne des Bergsteigers", "name_zh_CN": "攀山者徽标", "name_es_ES": "Insignia de escalamontañas", "name_ru_RU": "Знак различия горной высоты", "name_it_IT": "Fregio dello Scalatore", "name_pt_PT": "Insígnia do Alpinista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82700, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainscaler Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 128295, "buy_price": 513182, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502999782562256, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 2, "name_en_US": "Mountainscaler Badge", "name_ko_KR": "산악등반가의 배지", "name_fr_FR": "Ecusson d'ascensionniste", "name_de_DE": "Abzeichen des Bergsteigers", "name_zh_CN": "攀山者徽章", "name_es_ES": "Distintivo de escalamontañas", "name_ru_RU": "Знак горной высоты", "name_it_IT": "Distintivo dello Scalatore", "name_pt_PT": "Distintivo do Alpinista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 82984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Raccoon", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 336, "buy_price": 1684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968999981880188, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Jade Raccoon", "name_ko_KR": "비취 너구리", "name_fr_FR": "Raton laveur de jade", "name_de_DE": "Waschbär aus Jade", "name_zh_CN": "青玉浣熊", "name_es_ES": "Mapache de jade", "name_ru_RU": "Нефритовый енот", "name_it_IT": "Procione di Giada", "name_pt_PT": "Guaxinim de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83245, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wasteland Relic", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133052, "buy_price": 532210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9503999948501587, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 2, "name_en_US": "Wasteland Relic", "name_ko_KR": "황무지 유물", "name_fr_FR": "Relique du désert", "name_de_DE": "Relikt der Einöde", "name_zh_CN": "废土遗物", "name_es_ES": "Reliquia del páramo", "name_ru_RU": "Реликвия Пустошей", "name_it_IT": "Reliquia della Terra Desolata", "name_pt_PT": "Relíquia das Terras Devastadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83246, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wasteland Sigil", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133052, "buy_price": 532210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9541000127792358, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 2, "name_en_US": "Wasteland Sigil", "name_ko_KR": "황무지 인장", "name_fr_FR": "Cachet du désert", "name_de_DE": "Siegel der Einöde", "name_zh_CN": "废土印记", "name_es_ES": "Sigilo del páramo", "name_ru_RU": "Печать Пустошей", "name_it_IT": "Suggello della Terra Desolata", "name_pt_PT": "Signo das Terras Devastadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83247, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wasteland Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133052, "buy_price": 532210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 2, "name_en_US": "Wasteland Emblem", "name_ko_KR": "황무지 문장", "name_fr_FR": "Emblème du désert", "name_de_DE": "Emblem der Einöde", "name_zh_CN": "废土徽记", "name_es_ES": "Emblema del páramo", "name_ru_RU": "Эмблема Пустошей", "name_it_IT": "Emblema della Terra Desolata", "name_pt_PT": "Emblema das Terras Devastadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83248, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wasteland Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133052, "buy_price": 532210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9613999724388123, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 2, "name_en_US": "Wasteland Insignia", "name_ko_KR": "황무지 휘장", "name_fr_FR": "Insigne du désert", "name_de_DE": "Insigne der Einöde", "name_zh_CN": "废土纹章", "name_es_ES": "Insignia del páramo", "name_ru_RU": "Знак различия Пустошей", "name_it_IT": "Fregio della Terra Desolata", "name_pt_PT": "Insígnia das Terras Devastadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83249, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wasteland Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133052, "buy_price": 532210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9650999903678894, "flags_1": 98304, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 2, "name_en_US": "Wasteland Badge", "name_ko_KR": "황무지 배지", "name_fr_FR": "Ecusson du désert", "name_de_DE": "Abzeichen der Einöde", "name_zh_CN": "废土徽章", "name_es_ES": "Distintivo del páramo", "name_ru_RU": "Знак Пустошей", "name_it_IT": "Distintivo della Terra Desolata", "name_pt_PT": "Distintivo das Terras Devastadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83731, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Catacombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 393, "buy_price": 1966, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0282000303268433, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mark of the Catacombs", "name_ko_KR": "지하묘지의 징표", "name_fr_FR": "Marque des catacombes", "name_de_DE": "Mal der Katakomben", "name_zh_CN": "古陵印记", "name_es_ES": "Marca de las catacumbas", "name_ru_RU": "Метка катакомб", "name_it_IT": "Marchio delle Catacombe", "name_pt_PT": "Marca das Catacumbas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83732, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of the Catacombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16658, "buy_price": 83291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0319000482559204, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of the Catacombs", "name_ko_KR": "지하묘지의 인장", "name_fr_FR": "Cachet des catacombes", "name_de_DE": "Siegel der Katakomben", "name_zh_CN": "古陵符记", "name_es_ES": "Sigilo de las catacumbas", "name_ru_RU": "Печать катакомб", "name_it_IT": "Sigillo delle Catacombe", "name_pt_PT": "Signo das Catacumbas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83733, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of the Catacombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16716, "buy_price": 83582, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0355000495910645, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Emblem of the Catacombs", "name_ko_KR": "지하묘지의 문장", "name_fr_FR": "Emblème des catacombes", "name_de_DE": "Emblem der Katakomben", "name_zh_CN": "古陵徽章", "name_es_ES": "Emblema de las catacumbas", "name_ru_RU": "Знак катакомб", "name_it_IT": "Emblema delle Catacombe", "name_pt_PT": "Emblema das Catacumbas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83734, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of the Catacombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16776, "buy_price": 83880, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.039199948310852, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Medallion of the Catacombs", "name_ko_KR": "지하묘지의 메달", "name_fr_FR": "Médaillon des catacombes", "name_de_DE": "Medaillon der Katakomben", "name_zh_CN": "古陵奖章", "name_es_ES": "Medallón de las catacumbas", "name_ru_RU": "Медальон катакомб", "name_it_IT": "Medaglione delle Catacombe", "name_pt_PT": "Medalhão das Catacumbas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83735, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbol of the Catacombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16835, "buy_price": 84179, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0428999662399292, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Symbol of the Catacombs", "name_ko_KR": "지하묘지의 상징", "name_fr_FR": "Symbole des catacombes", "name_de_DE": "Symbol der Katakomben", "name_zh_CN": "古陵徽记", "name_es_ES": "Símbolo de las catacumbas", "name_ru_RU": "Символ катакомб", "name_it_IT": "Simbolo delle Catacombe", "name_pt_PT": "Símbolo das Catacumbas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83736, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Compassion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 400, "buy_price": 2001, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0465999841690063, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Compassion", "name_ko_KR": "동정의 인장", "name_fr_FR": "Cachet de compassion", "name_de_DE": "Siegel des Mitgefühls", "name_zh_CN": "怜悯印记", "name_es_ES": "Sigilo de compasión", "name_ru_RU": "Печать сострадания", "name_it_IT": "Sigillo della Compassione", "name_pt_PT": "Signo da Compaixão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83737, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Fidelity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15337, "buy_price": 76689, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9501000046730042, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Fidelity", "name_ko_KR": "신의의 인장", "name_fr_FR": "Cachet de fidélité", "name_de_DE": "Siegel der Treue", "name_zh_CN": "忠诚印记", "name_es_ES": "Sigilo de fidelidad", "name_ru_RU": "Печать верности", "name_it_IT": "Sigillo della Fedeltà", "name_pt_PT": "Signo da Fidelidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83738, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Grace", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15397, "buy_price": 76987, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9538000226020813, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Grace", "name_ko_KR": "은총의 인장", "name_fr_FR": "Cachet de grâce", "name_de_DE": "Siegel der Anmut", "name_zh_CN": "优雅印记", "name_es_ES": "Sigilo de gracia", "name_ru_RU": "Печать грации", "name_it_IT": "Sigillo della Grazia", "name_pt_PT": "Signo da Graça", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83739, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Patience", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15885, "buy_price": 79425, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Patience", "name_ko_KR": "인내의 인장", "name_fr_FR": "Cachet de patience", "name_de_DE": "Siegel der Geduld", "name_zh_CN": "耐心印记", "name_es_ES": "Sigilo de paciencia", "name_ru_RU": "Печать терпения", "name_it_IT": "Sigillo della Pazienza", "name_pt_PT": "Signo da Paciência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 83740, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Devotion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15944, "buy_price": 79724, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9876999855041504, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Devotion", "name_ko_KR": "헌신의 인장", "name_fr_FR": "Cachet de dévotion", "name_de_DE": "Siegel der Hingabe", "name_zh_CN": "奉献印记", "name_es_ES": "Sigilo de devoción", "name_ru_RU": "Печать преданности", "name_it_IT": "Sigillo della Devozione", "name_pt_PT": "Signo da Devoção", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84070, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearwurm Relic", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 142249, "buy_price": 568997, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0282000303268433, "flags_1": 589824, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Fearwurm Relic", "name_ko_KR": "공포벌레 유물", "name_fr_FR": "Relique de ver-de-peur", "name_de_DE": "Furchtwurmrelikt", "name_zh_CN": "恐惧怪虫圣物", "name_es_ES": "Reliquia de aterrasierpe", "name_ru_RU": "Реликвия жуткого червя", "name_it_IT": "Reliquia del Verme del Terrore", "name_pt_PT": "Relíquia do Verme do Medo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84071, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Ten Songs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 434, "buy_price": 2170, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0319000482559204, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Ten Songs", "name_ko_KR": "열 노래의 부적", "name_fr_FR": "Charme des Dix mélodies", "name_de_DE": "Glücksbringer von den Zehn Gesängen", "name_zh_CN": "十歌符记", "name_es_ES": "Talismán de diez canciones", "name_ru_RU": "Амулет Десяти Песен", "name_it_IT": "Talismano dei Dieci Canti", "name_pt_PT": "Amuleto das Dez Canções", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84072, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Braid of Ten Songs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 18559, "buy_price": 92798, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0355000495910645, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Braid of Ten Songs", "name_ko_KR": "열 노래의 노리개", "name_fr_FR": "Tresse des Dix mélodies", "name_de_DE": "Flechtband von den Zehn Gesängen", "name_zh_CN": "十歌绶带", "name_es_ES": "Trenza de diez canciones", "name_ru_RU": "Коса Десяти Песен", "name_it_IT": "Treccia dei Dieci Canti", "name_pt_PT": "Trança das Dez Canções", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84073, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Knot of Ten Songs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 18626, "buy_price": 93130, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.039199948310852, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Knot of Ten Songs", "name_ko_KR": "열 노래의 매듭", "name_fr_FR": "Nœud des Dix mélodies", "name_de_DE": "Knoten von den Zehn Gesängen", "name_zh_CN": "十歌绳结", "name_es_ES": "Nudo de diez canciones", "name_ru_RU": "Узел Десяти Песен", "name_it_IT": "Cappio dei Dieci Canti", "name_pt_PT": "Nó das Dez Canções", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84074, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearwurm Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 142249, "buy_price": 568997, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0428999662399292, "flags_1": 589824, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Fearwurm Badge", "name_ko_KR": "공포벌레 배지", "name_fr_FR": "Ecusson de ver-de-peur", "name_de_DE": "Furchtwurmabzeichen", "name_zh_CN": "恐惧怪虫徽记", "name_es_ES": "Distintivo de aterrasierpe", "name_ru_RU": "Знак жуткого червя", "name_it_IT": "Distintivo del Verme del Terrore", "name_pt_PT": "Distintivo do Verme do Medo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84075, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Kypari Zar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 440, "buy_price": 2201, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0465999841690063, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Relic of Kypari Zar", "name_ko_KR": "키파리 자르의 유물", "name_fr_FR": "Relique de Kypari Zar", "name_de_DE": "Relikt von Kypari Zar", "name_zh_CN": "凯帕圣树·扎尔圣物", "name_es_ES": "Reliquia de Kypari Zar", "name_ru_RU": "Реликвия Кипари Зар", "name_it_IT": "Reliquia di Kypari Zar", "name_pt_PT": "Relíquia de Kypari Zar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84076, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Kypari Zar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17029, "buy_price": 85145, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9501000046730042, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Sigil of Kypari Zar", "name_ko_KR": "키파리 자르의 인장", "name_fr_FR": "Cachet de Kypari Zar", "name_de_DE": "Siegel von Kypari Zar", "name_zh_CN": "凯帕圣树·扎尔印记", "name_es_ES": "Sigilo de Kypari Zar", "name_ru_RU": "Печать Кипари Зар", "name_it_IT": "Sigillo di Kypari Zar", "name_pt_PT": "Signo de Kypari Zar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84077, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Kypari Zar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17570, "buy_price": 87852, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9803000092506409, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Emblem of Kypari Zar", "name_ko_KR": "키파리 자르의 문장", "name_fr_FR": "Emblème de Kypari Zar", "name_de_DE": "Emblem von Kypari Zar", "name_zh_CN": "凯帕圣树·扎尔徽章", "name_es_ES": "Emblema de Kypari Zar", "name_ru_RU": "Знак Кипари Зар", "name_it_IT": "Emblema di Kypari Zar", "name_pt_PT": "Emblema de Kypari Zar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84078, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Insignia of Kypari Zar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17636, "buy_price": 88183, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Insignia of Kypari Zar", "name_ko_KR": "키파리 자르의 휘장", "name_fr_FR": "Insigne de Kypari Zar", "name_de_DE": "Insigne von Kypari Zar", "name_zh_CN": "凯帕圣树·扎尔符记", "name_es_ES": "Insignia de Kypari Zar", "name_ru_RU": "Знак различия Кипари Зар", "name_it_IT": "Fregio di Kypari Zar", "name_pt_PT": "Insígnia de Kypari Zar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84079, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badge of Kypari Zar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17701, "buy_price": 88506, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9876000285148621, "flags_1": 589824, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Badge of Kypari Zar", "name_ko_KR": "키파리 자르의 배지", "name_fr_FR": "Ecusson de Kypari Zar", "name_de_DE": "Abzeichen von Kypari Zar", "name_zh_CN": "凯帕圣树·扎尔徽记", "name_es_ES": "Distintivo de Kypari Zar", "name_ru_RU": "Знак Кипари Зар", "name_it_IT": "Distintivo di Kypari Zar", "name_pt_PT": "Distintivo de Kypari Zar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84286, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skittering Relic", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 344, "buy_price": 1723, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Skittering Relic", "name_ko_KR": "땅거미 유물", "name_fr_FR": "Relique du Grouillement", "name_de_DE": "Relikt des Huschers", "name_zh_CN": "粘丝圣物", "name_es_ES": "Reliquia arácnida", "name_ru_RU": "Реликвия легкого бега", "name_it_IT": "Reliquia del Brulichio", "name_pt_PT": "Relíquia Rastejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84287, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skittering Sigil", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130198, "buy_price": 520793, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9951000213623047, "flags_1": 589824, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Skittering Sigil", "name_ko_KR": "땅거미 인장", "name_fr_FR": "Cachet du Grouillement", "name_de_DE": "Siegel des Huschers", "name_zh_CN": "粘丝印记", "name_es_ES": "Sigilo arácnido", "name_ru_RU": "Печать легкого бега", "name_it_IT": "Suggello del Brulichio", "name_pt_PT": "Signo Rastejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84288, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skittering Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14522, "buy_price": 72614, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987999796867371, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Skittering Emblem", "name_ko_KR": "땅거미 문장", "name_fr_FR": "Emblème du Grouillement", "name_de_DE": "Emblem des Huschers", "name_zh_CN": "粘丝徽章", "name_es_ES": "Emblema arácnido", "name_ru_RU": "Эмблема легкого бега", "name_it_IT": "Emblema del Brulichio", "name_pt_PT": "Emblema Rastejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84289, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skittering Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14576, "buy_price": 72883, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Skittering Insignia", "name_ko_KR": "땅거미 휘장", "name_fr_FR": "Insigne du Grouillement", "name_de_DE": "Insigne des Huschers", "name_zh_CN": "粘丝符记", "name_es_ES": "Insignia arácnida", "name_ru_RU": "Знак различия легкого бега", "name_it_IT": "Fregio del Brulichio", "name_pt_PT": "Insígnia Rastejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skittering Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14628, "buy_price": 73144, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006100058555603, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Skittering Badge", "name_ko_KR": "땅거미 배지", "name_fr_FR": "Ecusson du Grouillement", "name_de_DE": "Abzeichen des Huschers", "name_zh_CN": "粘丝徽记", "name_es_ES": "Distintivo arácnido", "name_ru_RU": "Знак легкого бега", "name_it_IT": "Distintivo del Brulichio", "name_pt_PT": "Distintivo Rastejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84334, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Dream Relic", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 363, "buy_price": 1819, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0470999479293823, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Golden Dream Relic", "name_ko_KR": "금빛 꿈 유물", "name_fr_FR": "Relique du rêve doré", "name_de_DE": "Relikt des goldenen Traums", "name_zh_CN": "金色梦境圣物", "name_es_ES": "Reliquia del sueño dorado", "name_ru_RU": "Реликвия золотой мечты", "name_it_IT": "Reliquia del Sogno Dorato", "name_pt_PT": "Relíquia do Sonho Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84335, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Dream Sigil", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13821, "buy_price": 69109, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506000280380249, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Golden Dream Sigil", "name_ko_KR": "금빛 꿈 인장", "name_fr_FR": "Cachet du rêve doré", "name_de_DE": "Siegel des goldenen Traums", "name_zh_CN": "金色梦境印记", "name_es_ES": "Sigilo del sueño dorado", "name_ru_RU": "Печать золотой мечты", "name_it_IT": "Suggello del Sogno Dorato", "name_pt_PT": "Signo do Sonho Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84336, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Dream Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13875, "buy_price": 69378, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Golden Dream Emblem", "name_ko_KR": "금빛 꿈 문장", "name_fr_FR": "Emblème du rêve doré", "name_de_DE": "Emblem des goldenen Traums", "name_zh_CN": "金色梦境徽章", "name_es_ES": "Emblema del sueño dorado", "name_ru_RU": "Эмблема золотой мечты", "name_it_IT": "Emblema del Sogno Dorato", "name_pt_PT": "Emblema do Sonho Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84337, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Dream Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13929, "buy_price": 69647, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9580000042915344, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Golden Dream Insignia", "name_ko_KR": "금빛 꿈 휘장", "name_fr_FR": "Insigne du rêve doré", "name_de_DE": "Insigne des goldenen Traums", "name_zh_CN": "金色梦境符记", "name_es_ES": "Insignia del sueño dorado", "name_ru_RU": "Знак различия золотой мечты", "name_it_IT": "Fregio del Sogno Dorato", "name_pt_PT": "Insígnia do Sonho Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84338, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Dream Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13983, "buy_price": 69916, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9617000222206116, "flags_1": 589824, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Golden Dream Badge", "name_ko_KR": "금빛 꿈 배지", "name_fr_FR": "Ecusson du rêve doré", "name_de_DE": "Abzeichen des goldenen Traums", "name_zh_CN": "金色梦境徽记", "name_es_ES": "Distintivo del sueño dorado", "name_ru_RU": "Знак золотой мечты", "name_it_IT": "Distintivo del Sogno Dorato", "name_pt_PT": "Distintivo do Sonho Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Badge of Conquest", "name_ko_KR": "가혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur effroyable", "name_de_DE": "Eroberungsabzeichen des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador infame", "name_ru_RU": "Жетон завоевания жуткого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Truce", "name_pt_PT": "Distintivo de Conquista do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84349, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Insignia of Conquest", "name_ko_KR": "가혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur effroyable", "name_de_DE": "Eroberungsinsigne des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador infame", "name_ru_RU": "Знак завоевания жуткого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Truce", "name_pt_PT": "Insígnia de Conquista do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84399, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Emblem of Cruelty", "name_ko_KR": "가혹한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur effroyable", "name_de_DE": "Grausamkeitsemblem des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador infame", "name_ru_RU": "Эмблема жестокости жуткого гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Truce", "name_pt_PT": "Emblema da Crueldade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84400, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Emblem of Tenacity", "name_ko_KR": "가혹한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur effroyable", "name_de_DE": "Hartnäckigkeitsemblem des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador infame", "name_ru_RU": "Эмблема упорства жуткого гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Truce", "name_pt_PT": "Emblema da Tenacidade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84401, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Emblem of Meditation", "name_ko_KR": "가혹한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur effroyable", "name_de_DE": "Meditationsemblem des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador infame", "name_ru_RU": "Эмблема медитации жуткого гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Truce", "name_pt_PT": "Emblema da Meditação do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84450, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84451, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Cruelty", "name_ko_KR": "가혹한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur effroyable", "name_de_DE": "Grausamkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador infame", "name_ru_RU": "Медальон жестокости жуткого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Truce", "name_pt_PT": "Medalhão da Crueldade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84451, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84450, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Cruelty", "name_ko_KR": "가혹한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur effroyable", "name_de_DE": "Grausamkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador infame", "name_ru_RU": "Медальон жестокости жуткого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Truce", "name_pt_PT": "Medalhão da Crueldade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84452, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84453, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Tenacity", "name_ko_KR": "가혹한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur effroyable", "name_de_DE": "Hartnäckigkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador infame", "name_ru_RU": "Медальон упорства жуткого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Truce", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84453, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84452, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Tenacity", "name_ko_KR": "가혹한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur effroyable", "name_de_DE": "Hartnäckigkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador infame", "name_ru_RU": "Медальон упорства жуткого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Truce", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84454, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84455, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Meditation", "name_ko_KR": "가혹한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur effroyable", "name_de_DE": "Meditationsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador infame", "name_ru_RU": "Медальон медитации жуткого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Truce", "name_pt_PT": "Medalhão da Meditação do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84455, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84454, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Medallion of Meditation", "name_ko_KR": "가혹한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur effroyable", "name_de_DE": "Meditationsmedaillon des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador infame", "name_ru_RU": "Медальон медитации жуткого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Truce", "name_pt_PT": "Medalhão da Meditação do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84488, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Badge of Dominance", "name_ko_KR": "가혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur effroyable", "name_de_DE": "Vorherrschaftsabzeichen des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador infame", "name_ru_RU": "Жетон господства жуткого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Truce", "name_pt_PT": "Distintivo de Dominância do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84489, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Insignia of Dominance", "name_ko_KR": "가혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur effroyable", "name_de_DE": "Vorherrschaftsinsigne des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador infame", "name_ru_RU": "Знак господства жуткого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Truce", "name_pt_PT": "Insígnia de Dominância do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Badge of Victory", "name_ko_KR": "가혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur effroyable", "name_de_DE": "Siegesabzeichen des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador infame", "name_ru_RU": "Жетон победы жуткого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Truce", "name_pt_PT": "Distintivo de Vitória do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84495, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadful Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dreadful Gladiator's Insignia of Victory", "name_ko_KR": "가혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur effroyable", "name_de_DE": "Siegesinsigne des schrecklichen Gladiators", "name_zh_CN": "恐怖角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador infame", "name_ru_RU": "Знак победы жуткого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Truce", "name_pt_PT": "Insígnia de Vitória do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84931, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84945, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador malévolo", "name_ru_RU": "Медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84932, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84933, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur malveillant", "name_de_DE": "Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador malévolo", "name_ru_RU": "Медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84933, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84932, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur malveillant", "name_de_DE": "Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador malévolo", "name_ru_RU": "Медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84934, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Conquest", "name_ko_KR": "극악무도한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur malveillant", "name_de_DE": "Eroberungsabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador malévolo", "name_ru_RU": "Жетон завоевания злонравного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Conquista do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84935, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Conquest", "name_ko_KR": "극악무도한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur malveillant", "name_de_DE": "Eroberungsinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador malévolo", "name_ru_RU": "Знак завоевания злонравного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Conquista do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84936, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador malévolo", "name_ru_RU": "Эмблема жестокости злонравного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Emblema da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84937, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Victory", "name_ko_KR": "극악무도한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur malveillant", "name_de_DE": "Siegesinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador malévolo", "name_ru_RU": "Знак победы злонравного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Vitória do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84938, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador malévolo", "name_ru_RU": "Эмблема упорства злонравного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Emblema da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84939, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur malveillant", "name_de_DE": "Meditationsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador malévolo", "name_ru_RU": "Эмблема медитации злонравного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Emblema da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84940, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Dominance", "name_ko_KR": "극악무도한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur malveillant", "name_de_DE": "Vorherrschaftsabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador malévolo", "name_ru_RU": "Жетон господства злонравного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Dominância do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84941, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Dominance", "name_ko_KR": "극악무도한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur malveillant", "name_de_DE": "Vorherrschaftsinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador malévolo", "name_ru_RU": "Знак господства злонравного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Dominância do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84942, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Victory", "name_ko_KR": "극악무도한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur malveillant", "name_de_DE": "Siegesabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador malévolo", "name_ru_RU": "Жетон победы злонравного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Vitória do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84943, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84944, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador malévolo", "name_ru_RU": "Медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84944, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84943, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador malévolo", "name_ru_RU": "Медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 84945, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 84931, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2255, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador malévolo", "name_ru_RU": "Медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 85181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Protector Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944000244140625, "flags_1": 524288, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 3, "name_en_US": "Iron Protector Talisman", "name_ko_KR": "무쇠의 수호자 부적", "name_fr_FR": "Talisman de protecteur en fer", "name_de_DE": "Eiserner Schutztalisman", "name_zh_CN": "钢铁保护者护符", "name_es_ES": "Dije protector de hierro", "name_ru_RU": "Талисман железного защитника", "name_it_IT": "Talismano del Protettore di Ferro", "name_pt_PT": "Talismã do Protetor de Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Charioteer Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 212, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Charioteer Figurine", "name_ko_KR": "비취 전차병 조각상", "name_fr_FR": "Figurine de charretier en jade", "name_de_DE": "Jadefigur eines Wagenfahrers", "name_zh_CN": "玉质御者俑", "name_es_ES": "Figurilla de auriga de jade", "name_ru_RU": "Нефритовая фигурка возничего", "name_it_IT": "Statuetta di Giada: Cocchiere", "name_pt_PT": "Estatueta de Charreteiro de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86043, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Bandit Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 211, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Bandit Figurine", "name_ko_KR": "비취 산적 조각상", "name_fr_FR": "Figurine de bandit en jade", "name_de_DE": "Jadefigur eines Banditen", "name_zh_CN": "玉质盗匪俑", "name_es_ES": "Figurilla de bandido de jade", "name_ru_RU": "Нефритовая фигурка разбойника", "name_it_IT": "Statuetta di Giada: Bandito", "name_pt_PT": "Estatueta de Bandido de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86044, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Magistrate Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 214, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Magistrate Figurine", "name_ko_KR": "비취 집정관 조각상", "name_fr_FR": "Figurine de magistrat en jade", "name_de_DE": "Jadefigur eines Magistrats", "name_zh_CN": "玉质文官俑", "name_es_ES": "Figurilla de magistrado de jade", "name_ru_RU": "Нефритовая фигурка судьи", "name_it_IT": "Statuetta di Giada: Magistrato", "name_pt_PT": "Estatueta de Juiz de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86045, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Courtesan Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 213, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0321999788284302, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Courtesan Figurine", "name_ko_KR": "비취 무희 조각상", "name_fr_FR": "Figurine de courtisane en jade", "name_de_DE": "Jadefigur einer Kurtisane", "name_zh_CN": "玉质女乐俑", "name_es_ES": "Figurilla de cortesana de jade", "name_ru_RU": "Нефритовая фигурка куртизанки", "name_it_IT": "Statuetta di Giada: Cortigiana", "name_pt_PT": "Estatueta de Cortesã de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86046, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Warlord Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 215, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0358999967575073, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Warlord Figurine", "name_ko_KR": "비취 전쟁군주 조각상", "name_fr_FR": "Figurine de seigneur de guerre en jade", "name_de_DE": "Jadefigur eines Kriegsfürsten", "name_zh_CN": "玉质军阀俑", "name_es_ES": "Figurilla de señor de la guerra de jade", "name_ru_RU": "Нефритовая фигурка полководца", "name_it_IT": "Statuetta di Giada: Signore della Guerra", "name_pt_PT": "Estatueta de Senhor da Guerra de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86131, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Dragon's Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 222, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9801999926567078, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Dragon's Blood", "name_ko_KR": "용의 피가 담긴 약병", "name_fr_FR": "Fiole de sang de dragon", "name_de_DE": "Phiole mit Drachenblut", "name_zh_CN": "龙血之瓶", "name_es_ES": "Vial de sangre de dragón", "name_ru_RU": "Чаша крови дракона", "name_it_IT": "Fiala di Sangue di Drago", "name_pt_PT": "Frasco com Sangue de Dragão", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottle of Infinite Stars", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 208, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bottle of Infinite Stars", "name_ko_KR": "무한한 별들의 병", "name_fr_FR": "Bouteille d'étoiles infinies", "name_de_DE": "Flasche der endlosen Sterne", "name_zh_CN": "群星之瓶", "name_es_ES": "Botella de estrellas infinitas", "name_ru_RU": "Бутыль бессчетных звезд", "name_it_IT": "Fiasca delle Stelle Infinite", "name_pt_PT": "Garrafa de Estrelas Infinitas", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86133, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Light of the Cosmos", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 217, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Light of the Cosmos", "name_ko_KR": "우주의 빛", "name_fr_FR": "Lumière du cosmos", "name_de_DE": "Licht des Kosmos", "name_zh_CN": "秩序之光", "name_es_ES": "Luz del cosmos", "name_ru_RU": "Свет космоса", "name_it_IT": "Luce del Cosmo", "name_pt_PT": "Luz do Cosmos", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86144, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lei Shen's Final Orders", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 216, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lei Shen's Final Orders", "name_ko_KR": "레이 션의 마지막 명령서", "name_fr_FR": "Ordres ultimes de Lei Shen", "name_de_DE": "Lei Shens letzte Befehle", "name_zh_CN": "雷神的遗诏", "name_es_ES": "Últimas órdenes de Lei Shen", "name_ru_RU": "Последние приказы Лэй Шэня", "name_it_IT": "Ordini Finali di Lei Shen", "name_pt_PT": "Ordens Finais de Lei Shen", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86147, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Qin-xi's Polarizing Seal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 218, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Qin-xi's Polarizing Seal", "name_ko_KR": "친시의 양극화 인장", "name_fr_FR": "Sceau polarisant de Qin Xi", "name_de_DE": "Qin-xis polarisierendes Siegel", "name_zh_CN": "秦希的偏振之印", "name_es_ES": "Sello polarizante de Qin-xi", "name_ru_RU": "Поляризующая печать Цинь-си", "name_it_IT": "Sigillo Polarizzato di Qin-Xi", "name_pt_PT": "Selo Polarizante de Qin-xi", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86323, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stuff of Nightmares", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 220, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 257535, "buy_price": 1030142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stuff of Nightmares", "name_ko_KR": "악몽의 물체", "name_fr_FR": "Essence des cauchemars", "name_de_DE": "Alptraumgespinst", "name_zh_CN": "梦魇残片", "name_es_ES": "Cualidad de pesadillas", "name_ru_RU": "Сущность ночных кошмаров", "name_it_IT": "Materia degli Incubi", "name_pt_PT": "Matéria-prima de Pesadelos", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86327, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spirits of the Sun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 219, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 257535, "buy_price": 1030142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0435999631881714, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spirits of the Sun", "name_ko_KR": "태양의 영혼", "name_fr_FR": "Esprits du soleil", "name_de_DE": "Geister der Sonne", "name_zh_CN": "骄阳之魂", "name_es_ES": "Espíritus del sol", "name_ru_RU": "Духи солнца", "name_it_IT": "Spiriti del Sole", "name_pt_PT": "Espíritos do Sol", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86332, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terror in the Mists", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 221, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 257535, "buy_price": 1030142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Terror in the Mists", "name_ko_KR": "안개 속의 공포", "name_fr_FR": "Terreur dans les brumes", "name_de_DE": "Schrecken in den Nebeln", "name_zh_CN": "萦雾之恐", "name_es_ES": "Terror en la niebla", "name_ru_RU": "Ужас в туманах", "name_it_IT": "Terrore nelle Nebbie", "name_pt_PT": "Terror na Névoa", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86336, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmist Vortex", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 209, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 257535, "buy_price": 1030142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Darkmist Vortex", "name_ko_KR": "암흑안개 소용돌이", "name_fr_FR": "Vortex de Sombrebrume", "name_de_DE": "Dunkelnebelvortex", "name_zh_CN": "黑雾漩涡", "name_es_ES": "Vórtice Niebla Negra", "name_ru_RU": "Вихрь Мглистой пещеры", "name_it_IT": "Vortice di Brumafosca", "name_pt_PT": "Vórtice Névoa Negra", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86388, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Terror", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 210, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 257535, "buy_price": 1030142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0469000339508057, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Essence of Terror", "name_ko_KR": "경악의 정수", "name_fr_FR": "Essence de la terreur", "name_de_DE": "Essenz des Schreckens", "name_zh_CN": "惊怖精华", "name_es_ES": "Esencia de terror", "name_ru_RU": "Сущность ужаса", "name_it_IT": "Essenza del Terrore", "name_pt_PT": "Essência do Terror", "on_use": false, "id_encounter": 709, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86525, "race_mask": 18446744073709551615, "desc": "A fragment of Skeer the Bloodseeker's chitin, soaked in the blood of his enemies.", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodsoaked Chitin Fragment", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Bloodsoaked Chitin Fragment", "name_ko_KR": "피에 젖은 껍질 조각", "name_fr_FR": "Fragment de chitine imprégné de sang", "name_de_DE": "Blutgetränktes Chitinfragment", "name_zh_CN": "浸血的甲壳碎片", "name_es_ES": "Fragmento de quitina empapado de sangre", "name_ru_RU": "Окровавленный хитиновый фрагмент", "name_it_IT": "Frammento di Chitina Insanguinato", "name_pt_PT": "Fragmento de Quitina Ensanguentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86526, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Swarmkeeper's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 6666, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": 32, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991599977016449, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 2900, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 5, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Swarmkeeper's Medallion", "name_ko_KR": "무리지기의 메달", "name_fr_FR": "Médaillon de gardien de l'essaim", "name_de_DE": "Medaillon des Schwarmwächters", "name_zh_CN": "虫群卫士奖章", "name_es_ES": "Medallón del Guardaenjambres", "name_ru_RU": "Медальон Хранителя Роя", "name_it_IT": "Medaglione del Custode dello Sciame", "name_pt_PT": "Medalhão do Errante do Pântano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86529, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Manipulator's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 134807552, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 3, "name_en_US": "Manipulator's Talisman", "name_ko_KR": "배후자의 부적", "name_fr_FR": "Talisman du manipulateur", "name_de_DE": "Talisman des Manipulators", "name_zh_CN": "操纵者的护符", "name_es_ES": "Dije de manipulador", "name_ru_RU": "Талисман Манипулятора", "name_it_IT": "Talismano del Manipolatore", "name_pt_PT": "Talismã do Manipulador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86567, "race_mask": 18446744073709551615, "desc": "Used by Yaungol medicine men to detect changes in the weather.", "pad2": "", "pad1": "", "pad0": "", "name": "Yaungol Wind Chime", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9950000047683716, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Yaungol Wind Chime", "name_ko_KR": "야운골 풍경", "name_fr_FR": "Carillon à vent yaungol", "name_de_DE": "Yaungolwindspiel", "name_zh_CN": "野牛人风铃", "name_es_ES": "Campanilla de viento yaungol", "name_ru_RU": "\"Песня ветра\" яунголов", "name_it_IT": "Campana del Vento degli Yaungol", "name_pt_PT": "Sininho de Vento Yaungol", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86570, "race_mask": 18446744073709551615, "desc": "...and they eat puppies!", "pad2": "", "pad1": "", "pad0": "", "name": "Crate of Kidnapped Puppies", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0325000286102295, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Crate of Kidnapped Puppies", "name_ko_KR": "납치된 강아지가 든 상자", "name_fr_FR": "Caisse de chiots enlevés", "name_de_DE": "Kiste mit entführten Welpen", "name_zh_CN": "一箱被诱拐的小狗", "name_es_ES": "Cajón de cachorros secuestrados", "name_ru_RU": "Ящик с похищенными щенками", "name_it_IT": "Cassa di Cuccioli Rapiti", "name_pt_PT": "Caixa de Filhotes Sequestrados", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86572, "race_mask": 18446744073709551615, "desc": "Imbued with powerful Mogu magic.", "pad2": "", "pad1": "", "pad0": "", "name": "Terracotta Fragment", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0398000478744507, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Terracotta Fragment", "name_ko_KR": "토우 조각", "name_fr_FR": "Fragment de terre cuite", "name_de_DE": "Terrakottafragment", "name_zh_CN": "陶制碎片", "name_es_ES": "Fragmento de terracota", "name_ru_RU": "Терракотовый фрагмент", "name_it_IT": "Frammento di Terracotta", "name_pt_PT": "Fragmento de Terracota", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86576, "race_mask": 18446744073709551615, "desc": "The sword techniques of the Mantid are a carefully-guarded secret.", "pad2": "", "pad1": "", "pad0": "", "name": "Dynasty of Steel", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9544000029563904, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Dynasty of Steel", "name_ko_KR": "강철의 왕조", "name_fr_FR": "Dynastie d'acier", "name_de_DE": "Dynastie des Stahls", "name_zh_CN": "钢铁王朝", "name_es_ES": "Dinastía del acero", "name_ru_RU": "Династия стали", "name_it_IT": "Dinastia d'Acciaio", "name_pt_PT": "Dinastia de Aço", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86585, "race_mask": 18446744073709551615, "desc": "Considered a sign of wealth and status amongst the Saurok.", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Fleece", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Golden Fleece", "name_ko_KR": "황금 양털", "name_fr_FR": "Toison dorée", "name_de_DE": "Goldenes Vlies", "name_zh_CN": "金羊毛", "name_es_ES": "Vellocino de oro", "name_ru_RU": "Золотое руно", "name_it_IT": "Vello d'Oro", "name_pt_PT": "Velo Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86587, "race_mask": 18446744073709551615, "desc": "A vibrant life energy emanates from this seed.", "pad2": "", "pad1": "", "pad0": "", "name": "Seed of Tranquil Growth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.021299958229065, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Seed of Tranquil Growth", "name_ko_KR": "평온한 성장의 씨앗", "name_fr_FR": "Graine de croissance tranquille", "name_de_DE": "Samen des ruhigen Wachstums", "name_zh_CN": "宁静生长种子", "name_es_ES": "Semilla de crecimiento tranquilo", "name_ru_RU": "Семя спокойного роста", "name_it_IT": "Seme della Crescita Lenta", "name_pt_PT": "Semente do Crescimento Tranquilo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86771, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Charioteer Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 212, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 0, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Charioteer Figurine", "name_ko_KR": "비취 전차병 조각상", "name_fr_FR": "Figurine de charretier en jade", "name_de_DE": "Jadefigur eines Wagenfahrers", "name_zh_CN": "玉质御者俑", "name_es_ES": "Figurilla de auriga de jade", "name_ru_RU": "Нефритовая фигурка возничего", "name_it_IT": "Statuetta di Giada: Cocchiere", "name_pt_PT": "Estatueta de Charreteiro de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86772, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Bandit Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 211, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Bandit Figurine", "name_ko_KR": "비취 산적 조각상", "name_fr_FR": "Figurine de bandit en jade", "name_de_DE": "Jadefigur eines Banditen", "name_zh_CN": "玉质盗匪俑", "name_es_ES": "Figurilla de bandido de jade", "name_ru_RU": "Нефритовая фигурка разбойника", "name_it_IT": "Statuetta di Giada: Bandito", "name_pt_PT": "Estatueta de Bandido de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86773, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Magistrate Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 214, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Magistrate Figurine", "name_ko_KR": "비취 집정관 조각상", "name_fr_FR": "Figurine de magistrat en jade", "name_de_DE": "Jadefigur eines Magistrats", "name_zh_CN": "玉质文官俑", "name_es_ES": "Figurilla de magistrado de jade", "name_ru_RU": "Нефритовая фигурка судьи", "name_it_IT": "Statuetta di Giada: Magistrato", "name_pt_PT": "Estatueta de Juiz de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86774, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Courtesan Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 213, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0321999788284302, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Courtesan Figurine", "name_ko_KR": "비취 무희 조각상", "name_fr_FR": "Figurine de courtisane en jade", "name_de_DE": "Jadefigur einer Kurtisane", "name_zh_CN": "玉质女乐俑", "name_es_ES": "Figurilla de cortesana de jade", "name_ru_RU": "Нефритовая фигурка куртизанки", "name_it_IT": "Statuetta di Giada: Cortigiana", "name_pt_PT": "Estatueta de Cortesã de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86775, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Warlord Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 215, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0358999967575073, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Warlord Figurine", "name_ko_KR": "비취 전쟁군주 조각상", "name_fr_FR": "Figurine de seigneur de guerre en jade", "name_de_DE": "Jadefigur eines Kriegsfürsten", "name_zh_CN": "玉质军阀俑", "name_es_ES": "Figurilla de señor de la guerra de jade", "name_ru_RU": "Нефритовая фигурка полководца", "name_it_IT": "Statuetta di Giada: Signore della Guerra", "name_pt_PT": "Estatueta de Senhor da Guerra de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 86790, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Dragon's Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 222, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9801999926567078, "flags_1": 0, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Dragon's Blood", "name_ko_KR": "용의 피가 담긴 약병", "name_fr_FR": "Fiole de sang de dragon", "name_de_DE": "Phiole mit Drachenblut", "name_zh_CN": "龙血之瓶", "name_es_ES": "Vial de sangre de dragón", "name_ru_RU": "Чаша крови дракона", "name_it_IT": "Fiala di Sangue di Drago", "name_pt_PT": "Frasco com Sangue de Dragão", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86791, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottle of Infinite Stars", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 208, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 0, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bottle of Infinite Stars", "name_ko_KR": "무한한 별들의 병", "name_fr_FR": "Bouteille d'étoiles infinies", "name_de_DE": "Flasche der endlosen Sterne", "name_zh_CN": "群星之瓶", "name_es_ES": "Botella de estrellas infinitas", "name_ru_RU": "Бутыль бессчетных звезд", "name_it_IT": "Fiasca delle Stelle Infinite", "name_pt_PT": "Garrafa de Estrelas Infinitas", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86792, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Light of the Cosmos", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 217, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Light of the Cosmos", "name_ko_KR": "우주의 빛", "name_fr_FR": "Lumière du cosmos", "name_de_DE": "Licht des Kosmos", "name_zh_CN": "秩序之光", "name_es_ES": "Luz del cosmos", "name_ru_RU": "Свет космоса", "name_it_IT": "Luce del Cosmo", "name_pt_PT": "Luz do Cosmos", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86802, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lei Shen's Final Orders", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 216, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 0, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lei Shen's Final Orders", "name_ko_KR": "레이 션의 마지막 명령서", "name_fr_FR": "Ordres ultimes de Lei Shen", "name_de_DE": "Lei Shens letzte Befehle", "name_zh_CN": "雷神的遗诏", "name_es_ES": "Últimas órdenes de Lei Shen", "name_ru_RU": "Последние приказы Лэй Шэня", "name_it_IT": "Ordini Finali di Lei Shen", "name_pt_PT": "Ordens Finais de Lei Shen", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86805, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Qin-xi's Polarizing Seal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 218, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 247387, "buy_price": 989550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Qin-xi's Polarizing Seal", "name_ko_KR": "친시의 양극화 인장", "name_fr_FR": "Sceau polarisant de Qin Xi", "name_de_DE": "Qin-xis polarisierendes Siegel", "name_zh_CN": "秦希的偏振之印", "name_es_ES": "Sello polarizante de Qin-xi", "name_ru_RU": "Поляризующая печать Цинь-си", "name_it_IT": "Sigillo Polarizzato di Qin-Xi", "name_pt_PT": "Selo Polarizante de Qin-xi", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 86881, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stuff of Nightmares", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 220, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250939, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stuff of Nightmares", "name_ko_KR": "악몽의 물체", "name_fr_FR": "Essence des cauchemars", "name_de_DE": "Alptraumgespinst", "name_zh_CN": "梦魇残片", "name_es_ES": "Cualidad de pesadillas", "name_ru_RU": "Сущность ночных кошмаров", "name_it_IT": "Materia degli Incubi", "name_pt_PT": "Matéria-prima de Pesadelos", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86885, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spirits of the Sun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 219, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250939, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0435999631881714, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spirits of the Sun", "name_ko_KR": "태양의 영혼", "name_fr_FR": "Esprits du soleil", "name_de_DE": "Geister der Sonne", "name_zh_CN": "骄阳之魂", "name_es_ES": "Espíritus del sol", "name_ru_RU": "Духи солнца", "name_it_IT": "Spiriti del Sole", "name_pt_PT": "Espíritos do Sol", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86890, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terror in the Mists", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 221, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250939, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Terror in the Mists", "name_ko_KR": "안개 속의 공포", "name_fr_FR": "Terreur dans les brumes", "name_de_DE": "Schrecken in den Nebeln", "name_zh_CN": "萦雾之恐", "name_es_ES": "Terror en la niebla", "name_ru_RU": "Ужас в туманах", "name_it_IT": "Terrore nelle Nebbie", "name_pt_PT": "Terror na Névoa", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86894, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmist Vortex", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 209, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250939, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Darkmist Vortex", "name_ko_KR": "암흑안개 소용돌이", "name_fr_FR": "Vortex de Sombrebrume", "name_de_DE": "Dunkelnebelvortex", "name_zh_CN": "黑雾漩涡", "name_es_ES": "Vórtice Niebla Negra", "name_ru_RU": "Вихрь Мглистой пещеры", "name_it_IT": "Vortice di Brumafosca", "name_pt_PT": "Vórtice Névoa Negra", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 86907, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Terror", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 210, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 250939, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0469000339508057, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Essence of Terror", "name_ko_KR": "경악의 정수", "name_fr_FR": "Essence de la terreur", "name_de_DE": "Essenz des Schreckens", "name_zh_CN": "惊怖精华", "name_es_ES": "Esencia de terror", "name_ru_RU": "Сущность ужаса", "name_it_IT": "Essenza del Terrore", "name_pt_PT": "Essência do Terror", "on_use": false, "id_encounter": 709, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87057, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottle of Infinite Stars", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 208, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bottle of Infinite Stars", "name_ko_KR": "무한한 별들의 병", "name_fr_FR": "Bouteille d'étoiles infinies", "name_de_DE": "Flasche der endlosen Sterne", "name_zh_CN": "群星之瓶", "name_es_ES": "Botella de estrellas infinitas", "name_ru_RU": "Бутыль бессчетных звезд", "name_it_IT": "Fiasca delle Stelle Infinite", "name_pt_PT": "Garrafa de Estrelas Infinitas", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 87063, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Dragon's Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 222, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9801999926567078, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Dragon's Blood", "name_ko_KR": "용의 피가 담긴 약병", "name_fr_FR": "Fiole de sang de dragon", "name_de_DE": "Phiole mit Drachenblut", "name_zh_CN": "龙血之瓶", "name_es_ES": "Vial de sangre de dragón", "name_ru_RU": "Чаша крови дракона", "name_it_IT": "Fiala di Sangue di Drago", "name_pt_PT": "Frasco com Sangue de Dragão", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 87065, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Light of the Cosmos", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 217, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Light of the Cosmos", "name_ko_KR": "우주의 빛", "name_fr_FR": "Lumière du cosmos", "name_de_DE": "Licht des Kosmos", "name_zh_CN": "秩序之光", "name_es_ES": "Luz del cosmos", "name_ru_RU": "Свет космоса", "name_it_IT": "Luce del Cosmo", "name_pt_PT": "Luz do Cosmos", "on_use": false, "id_encounter": 726, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 87072, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lei Shen's Final Orders", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 216, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lei Shen's Final Orders", "name_ko_KR": "레이 션의 마지막 명령서", "name_fr_FR": "Ordres ultimes de Lei Shen", "name_de_DE": "Lei Shens letzte Befehle", "name_zh_CN": "雷神的遗诏", "name_es_ES": "Últimas órdenes de Lei Shen", "name_ru_RU": "Последние приказы Лэй Шэня", "name_it_IT": "Ordini Finali di Lei Shen", "name_pt_PT": "Ordens Finais de Lei Shen", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 87075, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Qin-xi's Polarizing Seal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 218, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Qin-xi's Polarizing Seal", "name_ko_KR": "친시의 양극화 인장", "name_fr_FR": "Sceau polarisant de Qin Xi", "name_de_DE": "Qin-xis polarisierendes Siegel", "name_zh_CN": "秦希的偏振之印", "name_es_ES": "Sello polarizante de Qin-xi", "name_ru_RU": "Поляризующая печать Цинь-си", "name_it_IT": "Sigillo Polarizzato di Qin-Xi", "name_pt_PT": "Selo Polarizante de Qin-xi", "on_use": false, "id_encounter": 677, "id_journal_instance": 317, "id_map": 1008, "instance_type": 2}, {"id": 87079, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Bandit Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 211, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Bandit Figurine", "name_ko_KR": "비취 산적 조각상", "name_fr_FR": "Figurine de bandit en jade", "name_de_DE": "Jadefigur eines Banditen", "name_zh_CN": "玉质盗匪俑", "name_es_ES": "Figurilla de bandido de jade", "name_ru_RU": "Нефритовая фигурка разбойника", "name_it_IT": "Statuetta di Giada: Bandito", "name_pt_PT": "Estatueta de Bandido de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87080, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Magistrate Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 214, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Magistrate Figurine", "name_ko_KR": "비취 집정관 조각상", "name_fr_FR": "Figurine de magistrat en jade", "name_de_DE": "Jadefigur eines Magistrats", "name_zh_CN": "玉质文官俑", "name_es_ES": "Figurilla de magistrado de jade", "name_ru_RU": "Нефритовая фигурка судьи", "name_it_IT": "Statuetta di Giada: Magistrato", "name_pt_PT": "Estatueta de Juiz de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87081, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Courtesan Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 213, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0321999788284302, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Courtesan Figurine", "name_ko_KR": "비취 무희 조각상", "name_fr_FR": "Figurine de courtisane en jade", "name_de_DE": "Jadefigur einer Kurtisane", "name_zh_CN": "玉质女乐俑", "name_es_ES": "Figurilla de cortesana de jade", "name_ru_RU": "Нефритовая фигурка куртизанки", "name_it_IT": "Statuetta di Giada: Cortigiana", "name_pt_PT": "Estatueta de Cortesã de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87082, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Charioteer Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 212, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 0, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Charioteer Figurine", "name_ko_KR": "비취 전차병 조각상", "name_fr_FR": "Figurine de charretier en jade", "name_de_DE": "Jadefigur eines Wagenfahrers", "name_zh_CN": "玉质御者俑", "name_es_ES": "Figurilla de auriga de jade", "name_ru_RU": "Нефритовая фигурка возничего", "name_it_IT": "Statuetta di Giada: Cocchiere", "name_pt_PT": "Estatueta de Charreteiro de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87083, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jade Warlord Figurine", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 215, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 260580, "buy_price": 1042320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0358999967575073, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Jade Warlord Figurine", "name_ko_KR": "비취 전쟁군주 조각상", "name_fr_FR": "Figurine de seigneur de guerre en jade", "name_de_DE": "Jadefigur eines Kriegsfürsten", "name_zh_CN": "玉质军阀俑", "name_es_ES": "Figurilla de señor de la guerra de jade", "name_ru_RU": "Нефритовая фигурка полководца", "name_it_IT": "Statuetta di Giada: Signore della Guerra", "name_pt_PT": "Estatueta de Chefe Guerreiro de Jade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stuff of Nightmares", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 220, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 264131, "buy_price": 1056527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stuff of Nightmares", "name_ko_KR": "악몽의 물체", "name_fr_FR": "Essence des cauchemars", "name_de_DE": "Alptraumgespinst", "name_zh_CN": "梦魇残片", "name_es_ES": "Cualidad de pesadillas", "name_ru_RU": "Сущность ночных кошмаров", "name_it_IT": "Materia degli Incubi", "name_pt_PT": "Matéria-prima de Pesadelos", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spirits of the Sun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 219, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 264131, "buy_price": 1056527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0435999631881714, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spirits of the Sun", "name_ko_KR": "태양의 영혼", "name_fr_FR": "Esprits du soleil", "name_de_DE": "Geister der Sonne", "name_zh_CN": "骄阳之魂", "name_es_ES": "Espíritus del sol", "name_ru_RU": "Духи солнца", "name_it_IT": "Spiriti del Sole", "name_pt_PT": "Espíritos do Sol", "on_use": false, "id_encounter": 742, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87167, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terror in the Mists", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 221, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 264131, "buy_price": 1056527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Terror in the Mists", "name_ko_KR": "안개 속의 공포", "name_fr_FR": "Terreur dans les brumes", "name_de_DE": "Schrecken in den Nebeln", "name_zh_CN": "萦雾之恐", "name_es_ES": "Terror en la niebla", "name_ru_RU": "Ужас в туманах", "name_it_IT": "Terrore nelle Nebbie", "name_pt_PT": "Terror na Névoa", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87172, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmist Vortex", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 209, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 264131, "buy_price": 1056527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Darkmist Vortex", "name_ko_KR": "암흑안개 소용돌이", "name_fr_FR": "Vortex de Sombrebrume", "name_de_DE": "Dunkelnebelvortex", "name_zh_CN": "黑雾漩涡", "name_es_ES": "Vórtice Niebla Negra", "name_ru_RU": "Вихрь Мглистой пещеры", "name_it_IT": "Vortice di Brumafosca", "name_pt_PT": "Vórtice Névoa Negra", "on_use": false, "id_encounter": 729, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87175, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Terror", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 210, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 264131, "buy_price": 1056527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0469000339508057, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Essence of Terror", "name_ko_KR": "경악의 정수", "name_fr_FR": "Essence de la terreur", "name_de_DE": "Essenz des Schreckens", "name_zh_CN": "惊怖精华", "name_es_ES": "Esencia de terror", "name_ru_RU": "Сущность ужаса", "name_it_IT": "Essenza del Terrore", "name_pt_PT": "Essência do Terror", "on_use": false, "id_encounter": 709, "id_journal_instance": 320, "id_map": 996, "instance_type": 2}, {"id": 87495, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gerp's Perfect Arrow", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 172601, "buy_price": 690407, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Gerp's Perfect Arrow", "name_ko_KR": "거프의 완벽한 화살", "name_fr_FR": "Flèche parfaite de Gerp", "name_de_DE": "Gerps perfekter Pfeil", "name_zh_CN": "格普的完美之箭", "name_es_ES": "Flecha perfecta de Gerp", "name_ru_RU": "Идеальная стрела Джерпа", "name_it_IT": "Freccia Perfetta di Gerp", "name_pt_PT": "Flecha Perfeita de Gerp", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87496, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Daelo's Final Words", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 702585, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Daelo's Final Words", "name_ko_KR": "다엘로의 마지막 기록", "name_fr_FR": "Derniers mots de Daelo", "name_de_DE": "Daelos letzte Worte", "name_zh_CN": "戴罗的遗言", "name_es_ES": "Últimas palabras de Daelo", "name_ru_RU": "Последние слова Даэло", "name_it_IT": "Ultime Parole di Daelo", "name_pt_PT": "Últimas Palavras de Daelo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87497, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Core of Decency", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 169176, "buy_price": 676707, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 31, "inv_type": 12, "quality": 3, "name_en_US": "Core of Decency", "name_ko_KR": "품위의 핵", "name_fr_FR": "Noyau de décence", "name_de_DE": "Kern des Anstands", "name_zh_CN": "庄严之心", "name_es_ES": "Núcleo de decencia", "name_ru_RU": "Средоточие благопристойности", "name_it_IT": "Nucleo della Decenza", "name_pt_PT": "Núcleo da Decência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87498, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritwhisper Conch", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 160043, "buy_price": 640174, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9997000098228455, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Spiritwhisper Conch", "name_ko_KR": "속삭이는 영혼의 소라", "name_fr_FR": "Conque de murmure des esprits", "name_de_DE": "Geisterflüstermuschel", "name_zh_CN": "鬼语海螺", "name_es_ES": "Caracola susurraespíritus", "name_ru_RU": "Раковина шепота духов", "name_it_IT": "Conchiglia dell'Uomo che Sussurrava agli Spiriti", "name_pt_PT": "Concha da Comunicação Espiritual", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87499, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grakl's Gleaming Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 160043, "buy_price": 640174, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0408999919891357, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Grakl's Gleaming Talisman", "name_ko_KR": "그라클의 번뜩이는 부적", "name_fr_FR": "Talisman resplendissant de Grakl", "name_de_DE": "Grakls glänzender Talisman", "name_zh_CN": "格拉克的微光护符", "name_es_ES": "Dije reluciente de Grakl", "name_ru_RU": "Сияющий талисман Гракла", "name_it_IT": "Talismano Luccicante di Grakl", "name_pt_PT": "Talismã Rebrilhante de Grakl", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87500, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brooch of Munificent Deeds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 163088, "buy_price": 652352, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Brooch of Munificent Deeds", "name_ko_KR": "아낌없는 선행의 브로치", "name_fr_FR": "Broche des actes munificents", "name_de_DE": "Brosche der großzügigen Taten", "name_zh_CN": "辉煌功绩胸针", "name_es_ES": "Broche de hazañas munificentes", "name_ru_RU": "Брошь щедрых деяний", "name_it_IT": "Spilla dei Grandi Eventi", "name_pt_PT": "Broche dos Feitos Munificentes", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87571, "race_mask": 18446744073709551615, "desc": "The Grim Guzzler's brawls are epic tales of legend.", "pad2": "", "pad1": "", "pad0": "", "name": "Brawler's Statue", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Brawler's Statue", "name_ko_KR": "싸움꾼의 조각상", "name_fr_FR": "Statue du bagarreur", "name_de_DE": "Muskelprotzstatue", "name_zh_CN": "争斗者雕像", "name_es_ES": "Estatua de camorrista", "name_ru_RU": "Статуя буяна", "name_it_IT": "Pegno dell'Attaccabrighe", "name_pt_PT": "Estátua do Brigão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87572, "race_mask": 18446744073709551615, "desc": "Never stops twice.", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Wristwatch", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Mithril Wristwatch", "name_ko_KR": "미스릴 손목시계", "name_fr_FR": "Bracelet-montre en mithril", "name_de_DE": "Mithrilarmbanduhr", "name_zh_CN": "秘银腕表", "name_es_ES": "Reloj de pulsera de mitril", "name_ru_RU": "Мифриловые часики", "name_it_IT": "Orologio da Polso di Mithril", "name_pt_PT": "Relógio de Pulso de Mithril", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87573, "race_mask": 18446744073709551615, "desc": "Reeking and rock hard.", "pad2": "", "pad1": "", "pad0": "", "name": "Thousand-Year Pickled Egg", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thousand-Year Pickled Egg", "name_ko_KR": "천 년 절인 초란", "name_fr_FR": "Œuf mariné un millier d'années", "name_de_DE": "Tausend Jahre altes Solei", "name_zh_CN": "千年腌蛋", "name_es_ES": "Huevo escabechado milenario", "name_ru_RU": "Тысячелетнее маринованное яйцо", "name_it_IT": "Uovo in Salamoia Millenario", "name_pt_PT": "Ovo em Conserva de Mil Anos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87574, "race_mask": 18446744073709551615, "desc": "Enchanted to fit perfectly beneath any mug, with a frosty finish.", "pad2": "", "pad1": "", "pad0": "", "name": "Coren's Cold Chromium Coaster", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Coren's Cold Chromium Coaster", "name_ko_KR": "코렌의 차가운 크롬 받침", "name_fr_FR": "Sous-bock de Coren en chrome glacé", "name_de_DE": "Corens kalter Chromuntersetzer", "name_zh_CN": "科林的冷冻铬银杯垫", "name_es_ES": "Posavasos de cromo frío de Coren", "name_ru_RU": "Охлажденная хромированная подставка под чашку Корена", "name_it_IT": "Sottobicchiere Cromato Freddo di Coren", "name_pt_PT": "Porta-copos Cromado e Gelado de Coren", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87575, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bubbliest Brightbrew Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bubbliest Brightbrew Charm", "name_ko_KR": "가장 풍부한 거품의 감미로운 투명 맥주", "name_fr_FR": "Charme brillebière le plus pétillant", "name_de_DE": "Perlendster Hellbräuglücksbringer", "name_zh_CN": "光明富泡酒咒符", "name_es_ES": "Talismán Brillobirra más bullente", "name_ru_RU": "Амулет самого крепкого игристого светлого напитка", "name_it_IT": "Talismano della Birra che fa Benissimo", "name_pt_PT": "Patuá Cervaleve Mais Borbulhante de Todos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bitterest Balebrew Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 67633152, "flags_2": 24608, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bitterest Balebrew Charm", "name_ko_KR": "가장 쓰면서도 감미로운 고통의 맥주", "name_fr_FR": "Charme torvebière le plus amer", "name_de_DE": "Bitterster Plörrbräuglücksbringer", "name_zh_CN": "黑暗极苦烈酒咒符", "name_es_ES": "Talismán Fardobirra amarguísima", "name_ru_RU": "Амулет самого горького темного варева", "name_it_IT": "Talismano della Birra che fa Malissimo", "name_pt_PT": "Patuá Cervamarga Muito Amarga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 87780, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Martar's Magnifying Glass", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9584000110626221, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Martar's Magnifying Glass", "name_ko_KR": "마르타의 확대경", "name_fr_FR": "Loupe de Martar", "name_de_DE": "Martars Lupe", "name_zh_CN": "马尔泰的放大镜", "name_es_ES": "Lupa de Martar", "name_ru_RU": "Увеличительное стекло Мартара", "name_it_IT": "Lente d'Ingrandimento di Martar", "name_pt_PT": "Luneta de Martar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88294, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashing Steel Talisman", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3142, "buy_price": 15711, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0281000137329102, "flags_1": 524288, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 19, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 13, "inv_type": 12, "quality": 3, "name_en_US": "Flashing Steel Talisman", "name_ko_KR": "번쩍이는 강철 부적", "name_fr_FR": "Talisman d'acier miroitant", "name_de_DE": "Blitzender Stahltalisman", "name_zh_CN": "炫目精钢护符", "name_es_ES": "Dije de acero ostentoso", "name_ru_RU": "Талисман стальной вспышки", "name_it_IT": "Talismano d'Acciaio Lampeggiante", "name_pt_PT": "Talismã do Clarão de Aço", "on_use": true, "id_encounter": 674, "id_journal_instance": 316, "id_map": 1004, "instance_type": 1}, {"id": 88355, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Searing Words", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7300, "buy_price": 36502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0354000329971313, "flags_1": 524288, "flags_2": 167796736, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Searing Words", "name_ko_KR": "이글거리는 주문", "name_fr_FR": "Mots incendiaires", "name_de_DE": "Sengende Worte", "name_zh_CN": "焦灼真言", "name_es_ES": "Palabras abrasadoras", "name_ru_RU": "Обжигающие слова", "name_it_IT": "Parole di Fuoco", "name_pt_PT": "Palavras Calcinantes", "on_use": false, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 88358, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lessons of the Darkmaster", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7300, "buy_price": 36502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 524288, "flags_2": 134242304, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Lessons of the Darkmaster", "name_ko_KR": "암흑스승의 가르침", "name_fr_FR": "Leçons du Sombre Maître", "name_de_DE": "Lektionen des Dunkelmeisters", "name_zh_CN": "黑暗院长遗训", "name_es_ES": "Lecciones del maestro oscuro", "name_ru_RU": "Уроки темного магистра", "name_it_IT": "Lezioni del Maestro Oscuro", "name_pt_PT": "Lições do Mestre da Escuridão", "on_use": true, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 88360, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Price of Progress", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 7300, "buy_price": 36502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0318000316619873, "flags_1": 524288, "flags_2": 67133440, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 23, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 17, "inv_type": 12, "quality": 3, "name_en_US": "Price of Progress", "name_ko_KR": "연구의 대가", "name_fr_FR": "Prix du progrès", "name_de_DE": "Preis des Fortschritts", "name_zh_CN": "进修的代价", "name_es_ES": "Precio del progreso", "name_ru_RU": "Цена продвижения", "name_it_IT": "Prezzo del Progresso", "name_pt_PT": "Preço do Progresso", "on_use": false, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 88368, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flamelager's Summer Keg", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 125441, "buy_price": 501765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9957000017166138, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Flamelager's Summer Keg", "name_ko_KR": "플레임라거의 여름 맥주통", "name_fr_FR": "Fût d'été de Blonde de Feu", "name_de_DE": "Fass mit Flammenbräus Sommerbier", "name_zh_CN": "火酒的夏日酒桶", "name_es_ES": "Barril de verano de Aguardiente", "name_ru_RU": "Летний бочонок Огненного Лагера", "name_it_IT": "Barile Estivo dei Birra Calda", "name_pt_PT": "Barril de Verão do Cevada Flamejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88369, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alerage's Reserve Keg", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 125441, "buy_price": 501765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994000196456909, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Alerage's Reserve Keg", "name_ko_KR": "에일레이지의 숙성 맥주통", "name_fr_FR": "Fût spécial de Courroux de Bière", "name_de_DE": "Bierwuts Reservefass", "name_zh_CN": "酒怒储备桶", "name_es_ES": "Barril de reserva de Cerveza Colérica", "name_ru_RU": "Припасенный бочонок Хмельной Ярости", "name_it_IT": "Barile di Riserva di Birra Furiosa", "name_pt_PT": "Barril Reserva de Furor Ébrio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88371, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Watermelon Bomb", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14639, "buy_price": 73195, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068000555038452, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Watermelon Bomb", "name_ko_KR": "수박 폭탄", "name_fr_FR": "Bombe pastèque", "name_de_DE": "Wassermelonenbombe", "name_zh_CN": "西瓜炸弹", "name_es_ES": "Sandía bomba", "name_ru_RU": "Арбузная бомба", "name_it_IT": "Anguria Bomba", "name_pt_PT": "Bomba de Melancia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Orange Painted Turnip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14905, "buy_price": 74526, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0250999927520752, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Orange Painted Turnip", "name_ko_KR": "주황색으로 색칠한 순무", "name_fr_FR": "Navet peint en orange", "name_de_DE": "Orange angemalte Rübe", "name_zh_CN": "涂成橙色的芜菁", "name_es_ES": "Naba pintada de naranja", "name_ru_RU": "Покрашенная в оранжевый цвет репа", "name_it_IT": "Rapa Dipinta d'Arancione", "name_pt_PT": "Nabo Laranja Pintado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88378, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mothallus' Spinneret", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130198, "buy_price": 520793, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0325000286102295, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mothallus' Spinneret", "name_ko_KR": "모스랄루스의 돌기", "name_fr_FR": "Filière de Mothallus", "name_de_DE": "Mottallus' Spinndrüsen", "name_zh_CN": "魔丝勒斯的丝囊", "name_es_ES": "Hilera de Alevón", "name_ru_RU": "Паутинная железа Мотылянь", "name_it_IT": "Ghiandola di Falenian", "name_pt_PT": "Fiandeira de Maripozilla", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Explosive Barrel", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16254, "buy_price": 81273, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068999528884888, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Explosive Barrel", "name_ko_KR": "폭탄 통", "name_fr_FR": "Baril explosif", "name_de_DE": "Explosives Fass", "name_zh_CN": "炸药桶", "name_es_ES": "Barril explosivo", "name_ru_RU": "Взрывоопасная бочка", "name_it_IT": "Barile di Esplosivi", "name_pt_PT": "Barril Explosivo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88583, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ban's Bag of Bombs", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16609, "buy_price": 83049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0289000272750854, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ban's Bag of Bombs", "name_ko_KR": "반의 폭탄 꾸러미", "name_fr_FR": "Bouquet de bombes de Ban", "name_de_DE": "Bans Bombenbündel", "name_zh_CN": "班的炸药包", "name_es_ES": "Bolsa de bombas de Ban", "name_ru_RU": "Мешок с бомбами Баня", "name_it_IT": "Sacco di Bombe di Ban", "name_pt_PT": "Bolsa de Bombas do Ban", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88585, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dislodged Stinger", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16729, "buy_price": 83646, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362999439239502, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Dislodged Stinger", "name_ko_KR": "제거된 독침", "name_fr_FR": "Aiguillon délogé", "name_de_DE": "Herausgerissener Stachel", "name_zh_CN": "放逐毒刺", "name_es_ES": "Aguijón desprendido", "name_ru_RU": "Вырванное жало", "name_it_IT": "Pungiglione Rimosso", "name_pt_PT": "Aguilhoador Desalojado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88590, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurong's Gun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15408, "buy_price": 77044, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545000195503235, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 38, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Nurong's Gun", "name_ko_KR": "누롱의 총", "name_fr_FR": "Fusil de Nurong", "name_de_DE": "Nurongs Waffe", "name_zh_CN": "砮荣的枪支", "name_es_ES": "Pistola de Nurong", "name_ru_RU": "Ружье Нужуна", "name_it_IT": "Pistola di Nurong", "name_pt_PT": "Arma de Nurong", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Defender's Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9955000281333923, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Defender's Stone", "name_ko_KR": "수호자의 수행자 돌", "name_fr_FR": "Pierre de défenseur monastique", "name_de_DE": "Monastischer Stein des Verteidigers", "name_zh_CN": "禅院防御者之石", "name_es_ES": "Piedra de defensor monástica", "name_ru_RU": "Монастырский камень защитника", "name_it_IT": "Pietra della Difesa da Monaco", "name_pt_PT": "Pedra do Defensor Monástico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88636, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Defender's Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Defender's Idol", "name_ko_KR": "수호자의 수행자 우상", "name_fr_FR": "Idole de défenseur monastique", "name_de_DE": "Monastisches Idol des Verteidigers", "name_zh_CN": "禅院防御者雕像", "name_es_ES": "Ídolo de defensor monástico", "name_ru_RU": "Монастырский идол защитника", "name_it_IT": "Idolo della Difesa da Monaco", "name_pt_PT": "Ídolo do Defensor Monástico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88639, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Stone of Rage", "name_ko_KR": "분노의 수행자 돌", "name_fr_FR": "Pierre de rage monastique", "name_de_DE": "Monastischer Stein des Zorns", "name_zh_CN": "禅院狂暴之石", "name_es_ES": "Piedra de ira monástica", "name_ru_RU": "Монастырский камень ярости", "name_it_IT": "Pietra della Rabbia da Monaco", "name_pt_PT": "Pedra Monástica da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88642, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Idol of Rage", "name_ko_KR": "분노의 수행자 우상", "name_fr_FR": "Idole de rage monastique", "name_de_DE": "Monastisches Idol des Zorns", "name_zh_CN": "禅院狂暴雕像", "name_es_ES": "Ídolo de ira monástico", "name_ru_RU": "Монастырский идол ярости", "name_it_IT": "Idolo della Rabbia da Monaco", "name_pt_PT": "Ídolo Monástico da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Stone of Wisdom", "name_ko_KR": "지혜의 수행자 돌", "name_fr_FR": "Pierre de sagesse monastique", "name_de_DE": "Monastischer Stein der Weisheit", "name_zh_CN": "禅院智慧之石", "name_es_ES": "Piedra de sabiduría monástica", "name_ru_RU": "Монастырский камень мудрости", "name_it_IT": "Pietra della Saggezza da Monaco", "name_pt_PT": "Pedra Monástica da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Monastic Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 250000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 2, "name_en_US": "Monastic Idol of Wisdom", "name_ko_KR": "지혜의 수행자 우상", "name_fr_FR": "Idole de sagesse monastique", "name_de_DE": "Monastisches Idol der Weisheit", "name_zh_CN": "禅院智慧雕像", "name_es_ES": "Ídolo de sabiduría monástico", "name_ru_RU": "Монастырский идол мудрости", "name_it_IT": "Idolo della Saggezza da Monaco", "name_pt_PT": "Ídolo Monástico da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 88995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shado-Pan Dragon Gun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 2958300, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0291999578475952, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Shado-Pan Dragon Gun", "name_ko_KR": "음영파 용대포", "name_fr_FR": "Fusil-dragon pandashan", "name_de_DE": "Drachengewehr der Shado-Pan", "name_zh_CN": "影踪派龙枪", "name_es_ES": "Pistola de dragón del Shadopan", "name_ru_RU": "Драконье ружье Шадо-Пан", "name_it_IT": "Archibugio del Drago degli Shandaren", "name_pt_PT": "Arma-dragão Shado-Pan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89079, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lao-Chin's Liquid Courage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 237, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 3982200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lao-Chin's Liquid Courage", "name_ko_KR": "라오친의 액체 용기", "name_fr_FR": "Courage en bouteille de Lao Chin", "name_de_DE": "Lao-Chens flüssiger Mut", "name_zh_CN": "老陈的壮胆酒", "name_es_ES": "Coraje líquido de Lao-Chen", "name_ru_RU": "Эликсир храбрости Лао-Чиня", "name_it_IT": "Coraggio Liquido di Lao-Chin", "name_pt_PT": "Coragem Líquida de Lao-Chin", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89080, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scroll of Revered Ancestors", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 237, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 3997000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Scroll of Revered Ancestors", "name_ko_KR": "존경받는 조상의 두루마리", "name_fr_FR": "Parchemin d'ancêtres révérés", "name_de_DE": "Rolle der geachteten Vorfahren", "name_zh_CN": "崇敬先祖卷轴", "name_es_ES": "Pergamino de ancestros reverenciados", "name_ru_RU": "Свиток почитаемых предков", "name_it_IT": "Pergamena degli Antenati Onorati", "name_pt_PT": "Pergaminho dos Ancestrais Reverenciados", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89081, "race_mask": 18446744073709551615, "desc": "A gift from Snow Blossom, Destroyer of Men", "pad2": "", "pad1": "", "pad0": "", "name": "Blossom of Pure Snow", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 237, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4012200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Blossom of Pure Snow", "name_ko_KR": "순수한 눈꽃", "name_fr_FR": "Fleur de neige pure", "name_de_DE": "Blüte aus reinem Schnee", "name_zh_CN": "白雪之花", "name_es_ES": "Flor de nieve pura", "name_ru_RU": "Цветок чистейшей белизны", "name_it_IT": "Bocciolo di Fior di Neve", "name_pt_PT": "Botão de Flor Nívea", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89082, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hawkmaster's Talon", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 237, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4027400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Hawkmaster's Talon", "name_ko_KR": "매사냥꾼의 발톱", "name_fr_FR": "Serre de maître des faucons", "name_de_DE": "Kralle des Falkenmeisters", "name_zh_CN": "鹰眼大师之爪", "name_es_ES": "Garfa del maestro de halcones", "name_ru_RU": "Коготь повелителя ястребов", "name_it_IT": "Artiglio del Mastro Falconiere", "name_pt_PT": "Garra do Mestre Falcoeiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89083, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Belly Wok", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 237, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4042600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Iron Belly Wok", "name_ko_KR": "무쇠뱃살 냄비", "name_fr_FR": "Wok de Panse de Fer", "name_de_DE": "Wok des eisernen Bauchs", "name_zh_CN": "铁腹炒锅", "name_es_ES": "Wok de Panza Férrea", "name_ru_RU": "Вок Стального Брюха", "name_it_IT": "Wok di Panza Forte", "name_pt_PT": "Wok de Barriga de Ferro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89232, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mogu Rune of Paralysis", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 2786700, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Mogu Rune of Paralysis", "name_ko_KR": "마비의 모구 룬", "name_fr_FR": "Rune mogu de paralysie", "name_de_DE": "Mogurune der Paralyse", "name_zh_CN": "魔古麻痹符文", "name_es_ES": "Runa de parálisis mogu", "name_ru_RU": "Парализующая руна могу", "name_it_IT": "Runa della Paralisi dei Mogu", "name_pt_PT": "Runa Mogu da Paralisia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 89611, "race_mask": 18446744073709551615, "desc": "Artifact details have already been logged in your Archaeology Journal, under the Completed Artifacts tab.", "pad2": "", "pad1": "", "pad0": "", "name": "Quilen Statuette", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 150529, "buy_price": 602119, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9957000017166138, "flags_1": 134807552, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Quilen Statuette", "name_ko_KR": "기렌 조각상", "name_fr_FR": "Statuette de quilen", "name_de_DE": "Qilenstatuette", "name_zh_CN": "魁麟雕像", "name_es_ES": "Estatuilla de quilen", "name_ru_RU": "Статуэтка цийлиня", "name_it_IT": "Statuetta Quilen", "name_pt_PT": "Estatueta Quílen", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91099, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94373, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Conquest", "name_ko_KR": "압제적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador tiránico", "name_ru_RU": "Жетон завоевания деспотичного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Conquista do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91104, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94356, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Conquest", "name_ko_KR": "압제적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador tiránico", "name_ru_RU": "Знак завоевания деспотичного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Conquista do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91209, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94396, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador tiránico", "name_ru_RU": "Эмблема жестокости деспотичного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Emblema da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91210, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94422, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador tiránico", "name_ru_RU": "Эмблема упорства деспотичного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Emblema da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91211, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94329, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Meditation", "name_ko_KR": "압제적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador tiránico", "name_ru_RU": "Эмблема медитации деспотичного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Emblema da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91400, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94346, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Dominance", "name_ko_KR": "압제적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador tiránico", "name_ru_RU": "Жетон господства деспотичного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Dominância do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91401, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94482, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Dominance", "name_ko_KR": "압제적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador tiránico", "name_ru_RU": "Знак господства деспотичного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Dominância do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91410, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94349, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Victory", "name_ko_KR": "압제적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur tyrannique", "name_de_DE": "Siegesabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador tiránico", "name_ru_RU": "Жетон победы деспотичного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Vitória do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91415, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94415, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Victory", "name_ko_KR": "압제적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur tyrannique", "name_de_DE": "Siegesinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador tiránico", "name_ru_RU": "Знак победы деспотичного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Vitória do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Conquest", "name_ko_KR": "극악무도한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur malveillant", "name_de_DE": "Eroberungsabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador malévolo", "name_ru_RU": "Жетон завоевания злонравного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Conquista do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91457, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Conquest", "name_ko_KR": "극악무도한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur malveillant", "name_de_DE": "Eroberungsinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador malévolo", "name_ru_RU": "Знак завоевания злонравного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Conquista do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91562, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador malévolo", "name_ru_RU": "Эмблема жестокости злонравного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Emblema da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91563, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador malévolo", "name_ru_RU": "Эмблема упорства злонравного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Emblema da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91564, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Emblem of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur malveillant", "name_de_DE": "Meditationsemblem des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador malévolo", "name_ru_RU": "Эмблема медитации злонравного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Emblema da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91682, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91683, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador malévolo", "name_ru_RU": "Медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91683, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91682, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur malveillant", "name_de_DE": "Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador malévolo", "name_ru_RU": "Медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91684, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91685, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador malévolo", "name_ru_RU": "Медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91685, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91684, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur malveillant", "name_de_DE": "Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador malévolo", "name_ru_RU": "Медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91686, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91687, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur malveillant", "name_de_DE": "Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador malévolo", "name_ru_RU": "Медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91687, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91686, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur malveillant", "name_de_DE": "Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador malévolo", "name_ru_RU": "Медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91753, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Dominance", "name_ko_KR": "극악무도한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur malveillant", "name_de_DE": "Vorherrschaftsabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador malévolo", "name_ru_RU": "Жетон господства злонравного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Dominância do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91754, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Dominance", "name_ko_KR": "극악무도한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur malveillant", "name_de_DE": "Vorherrschaftsinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador malévolo", "name_ru_RU": "Знак господства злонравного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Dominância do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Badge of Victory", "name_ko_KR": "극악무도한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur malveillant", "name_de_DE": "Siegesabzeichen des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador malévolo", "name_ru_RU": "Жетон победы злонравного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Vitória do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 91768, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malevolent Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Malevolent Gladiator's Insignia of Victory", "name_ko_KR": "극악무도한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur malveillant", "name_de_DE": "Siegesinsigne des bösartigen Gladiators", "name_zh_CN": "恶毒角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador malévolo", "name_ru_RU": "Знак победы злонравного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Vitória do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92782, "race_mask": 18446744073709551615, "desc": "The blood of the footman it was taken from has left a permanent stain.", "pad2": "", "pad1": "", "pad0": "", "name": "Steadfast Footman's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0478999614715576, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Steadfast Footman's Medallion", "name_ko_KR": "굳센 보병의 메달", "name_fr_FR": "Médaillon du fantassin inébranlable", "name_de_DE": "Medaillon des standhaften Fußsoldaten", "name_zh_CN": "坚定步兵奖章", "name_es_ES": "Medallón del lacayo férreo", "name_ru_RU": "Медальон стойкого пехотинца", "name_it_IT": "Medaglione del Coscritto Costante", "name_pt_PT": "Medalhão do Soldado Raso Resistente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92783, "race_mask": 18446744073709551615, "desc": "Several gash marks indicate that the grunt did not part with it willingly.", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Hardened Grunt", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9514999985694885, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Mark of the Hardened Grunt", "name_ko_KR": "단련된 그런트의 징표", "name_fr_FR": "Marque du grunt endurci", "name_de_DE": "Mal des gestählten Grunzers", "name_zh_CN": "坚强步兵印记", "name_es_ES": "Marca del bruto curtido", "name_ru_RU": "Значок закаленного рубаки", "name_it_IT": "Marchio del Grunt Corazzato", "name_pt_PT": "Marca do Bruto Endurecido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92784, "race_mask": 18446744073709551615, "desc": "A stolen manual detailing closely-guarded fighting techniques of the Alliance.", "pad2": "", "pad1": "", "pad0": "", "name": "SI:7 Operative's Manual", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9552000164985657, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "SI:7 Operative's Manual", "name_ko_KR": "SI:7 첩보원 교본", "name_fr_FR": "Manuel d'agent du SI:7", "name_de_DE": "Handbuch für Agenten des SI:7", "name_zh_CN": "军情七处特工手册", "name_es_ES": "Manual del operativo del IV:7", "name_ru_RU": "Руководство агента ШРУ", "name_it_IT": "Manuale Operativo dell'IR:7", "name_pt_PT": "Manual de Agente da AVIN", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92785, "race_mask": 18446744073709551615, "desc": "Pilfered information on the Kor'kron's brutal techniques.", "pad2": "", "pad1": "", "pad0": "", "name": "Kor'kron Book of Hurting", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9588000178337097, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kor'kron Book of Hurting", "name_ko_KR": "코르크론 상해의 서", "name_fr_FR": "Précis de brutalité kor'kronne", "name_de_DE": "Kor'kronbuch der Schmerzen", "name_zh_CN": "库卡隆杀敌指南", "name_es_ES": "Libro del dolor Kor'kron", "name_ru_RU": "Кор'кронская книга боли", "name_it_IT": "Libro del Dolore dei Kor'kron", "name_pt_PT": "Livro da Dor Kor'kron", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92786, "race_mask": 18446744073709551615, "desc": "Torn from the grasp of a powerful alliance admiral.", "pad2": "", "pad1": "", "pad0": "", "name": "Alliance Insignia of Conquering", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624999761581421, "flags_1": 557120, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Alliance Insignia of Conquering", "name_ko_KR": "얼라이언스 정복의 계급장", "name_fr_FR": "Insigne de conquête de l'Alliance", "name_de_DE": "Allianzinsigne der Eroberung", "name_zh_CN": "联盟征服印记", "name_es_ES": "Insignia de conquista de la Alianza", "name_ru_RU": "Знак отличия завоеваний Альянса", "name_it_IT": "Fregio della Conquista dell'Alleanza", "name_pt_PT": "Insígnia de Conquista da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 92787, "race_mask": 18446744073709551615, "desc": "Torn from the grip of a powerful horde warleader.", "pad2": "", "pad1": "", "pad0": "", "name": "Horde Insignia of Conquering", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 557120, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horde Insignia of Conquering", "name_ko_KR": "호드 정복의 계급장", "name_fr_FR": "Insigne de conquête de la Horde", "name_de_DE": "Hordeninsigne der Eroberung", "name_zh_CN": "部落征服印记", "name_es_ES": "Insignia de conquista de la Horda", "name_ru_RU": "Знак отличия завоеваний Орды", "name_it_IT": "Fregio della Conquista dell'Orda", "name_pt_PT": "Insígnia de Conquista da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93253, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Woundripper Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 241, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4192900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 1073766401, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93258, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Woundripper Medallion", "name_ko_KR": "상처갈퀴 메달", "name_fr_FR": "Médaillon déchire-plaies", "name_de_DE": "Wundreißermedaillon", "name_zh_CN": "裂伤者奖章", "name_es_ES": "Medallón de destripaheridas", "name_ru_RU": "Медальон рваных ран", "name_it_IT": "Medaglione delle Ferite Squarciate", "name_pt_PT": "Medalhão do Rasga-chaga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93254, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Static-Caster's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 241, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4177100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 1073766401, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93259, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Static-Caster's Medallion", "name_ko_KR": "움직이지 않는 시전자의 메달", "name_fr_FR": "Médaillon de lanceur d'électricité", "name_de_DE": "Medaillon des Schockwirkers", "name_zh_CN": "导电者奖章", "name_es_ES": "Medallón de taumaturgo estático", "name_ru_RU": "Медальон приносящего неприятности", "name_it_IT": "Medaglione dell'Incantatore Statico", "name_pt_PT": "Medalhão do Lançador Estático", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93255, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cutstitcher Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 241, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4161200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 1073766401, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93260, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cutstitcher Medallion", "name_ko_KR": "상처봉합자 메달", "name_fr_FR": "Médaillon coud-entaille", "name_de_DE": "Wundnähermedaillon", "name_zh_CN": "拆线者奖章", "name_es_ES": "Medallón de zurcecortes", "name_ru_RU": "Медальон зашивающего раны", "name_it_IT": "Medaglione del Rianimatore", "name_pt_PT": "Medalhão do Costurador de Talho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93256, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skullrender Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 241, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4208700, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 1073766401, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93261, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skullrender Medallion", "name_ko_KR": "해골분리자 메달", "name_fr_FR": "Médaillon d'arracheur de crâne", "name_de_DE": "Schädelbrechermedaillon", "name_zh_CN": "榨颅者奖章", "name_es_ES": "Medallón de cráneo quebrado", "name_ru_RU": "Медальон раскалывателя черепов", "name_it_IT": "Medaglione del Tagliatore di Teste", "name_pt_PT": "Medalhão do Destruidor de Crânios", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93257, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Medallion of Mystifying Vapors", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 241, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4145800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 1073766401, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93262, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Medallion of Mystifying Vapors", "name_ko_KR": "미혹하는 증기의 메달", "name_fr_FR": "Médaillon de vapeurs mystifiantes", "name_de_DE": "Medaillon der verschleiernden Dämpfe", "name_zh_CN": "秘雾奖章", "name_es_ES": "Medallón de vapores mistificadores", "name_ru_RU": "Медальон таинственных паров", "name_it_IT": "Medaglione dei Vapori Mistici", "name_pt_PT": "Medalhão dos Vapores Mistificantes", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93258, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arrowflight Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 242, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4192900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 1073766402, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93253, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Arrowflight Medallion", "name_ko_KR": "쏜살 매달", "name_fr_FR": "Médaillon du vol de la flèche", "name_de_DE": "Pfeilflugmedaillon", "name_zh_CN": "飞箭奖章", "name_es_ES": "Medallón de Vuelo de Flecha", "name_ru_RU": "Медальон летящей стрелы", "name_it_IT": "Medaglione dello Sfrecciante", "name_pt_PT": "Medalhão Voo da Flecha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93259, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shock-Charger Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 242, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4177100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 1073766402, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93254, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Shock-Charger Medallion", "name_ko_KR": "전기 충격 메달", "name_fr_FR": "Médaillon charge-choc", "name_de_DE": "Medaillon des geballten Schocks", "name_zh_CN": "震击者奖章", "name_es_ES": "Medallón cargachoques", "name_ru_RU": "Медальон электрического разряда", "name_it_IT": "Medaglione del Folgoratore", "name_pt_PT": "Medalhão Carrega-bateria", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93260, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heartwarmer Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 242, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4161200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 1073766402, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93255, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Heartwarmer Medallion", "name_ko_KR": "따뜻한 마음 메달", "name_fr_FR": "Médaillon consolateur", "name_de_DE": "Herzwärmermedaillon", "name_zh_CN": "暖心者奖章", "name_es_ES": "Medallón reconstituyente", "name_ru_RU": "Согревающий сердца медальон", "name_it_IT": "Medaglione del Cuore Caldo", "name_pt_PT": "Medalhão Aquece-coração", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93261, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Helmbreaker Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 242, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4208700, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 1073766402, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93256, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Helmbreaker Medallion", "name_ko_KR": "투구파괴자 메달", "name_fr_FR": "Médaillon brise-heaume", "name_de_DE": "Helmspaltermedaillon", "name_zh_CN": "破盔者奖章", "name_es_ES": "Medallón rompeyelmos", "name_ru_RU": "Медальон разбивателя шлемов", "name_it_IT": "Medaglione dell'Elmo Infranto", "name_pt_PT": "Medalhão Quebra-elmo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93262, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vaporshield Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 242, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 253983, "buy_price": 4145800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 1073766402, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93257, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vaporshield Medallion", "name_ko_KR": "증기보호막 메달", "name_fr_FR": "Médaillon de bouclier de vapeur", "name_de_DE": "Dampfschildmedaillon", "name_zh_CN": "汽盾奖章", "name_es_ES": "Medallón de escudo de vapor", "name_ru_RU": "Медальон парового щита", "name_it_IT": "Medaglione dello Scudo del Vapore", "name_pt_PT": "Medalhão da Égide Vaporosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93341, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominator's Deadeye Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 243, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2819100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93346, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dominator's Deadeye Badge", "name_ko_KR": "지배자의 백발백중 휘장", "name_fr_FR": "Ecusson d'œil-mort de dominateur", "name_de_DE": "Treffsicheres Abzeichen der Herrschaft", "name_zh_CN": "统御者的鹰眼徽章", "name_es_ES": "Distintivo Mortojo de dominador", "name_ru_RU": "Знак точного выстрела Покорителя", "name_it_IT": "Distintivo Sanguinario dell'Offensiva del Dominio", "name_pt_PT": "Distintivo de Mira Certeira do Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93342, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominator's Arcane Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 243, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2808500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93347, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dominator's Arcane Badge", "name_ko_KR": "지배자의 비전 휘장", "name_fr_FR": "Ecusson des Arcanes de dominateur", "name_de_DE": "Arkanes Abzeichen der Herrschaft", "name_zh_CN": "统御者的奥法徽章", "name_es_ES": "Distintivo Arcano de dominador", "name_ru_RU": "Знак магии Покорителя", "name_it_IT": "Distintivo Arcano dell'Offensiva del Dominio", "name_pt_PT": "Distintivo Arcano do Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93343, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominator's Mending Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 243, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2797900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93348, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dominator's Mending Badge", "name_ko_KR": "지배자의 치유 휘장", "name_fr_FR": "Ecusson de soins de dominateur", "name_de_DE": "Heilendes Abzeichen der Herrschaft", "name_zh_CN": "统御者的愈合徽章", "name_es_ES": "Distintivo de alivio de dominador", "name_ru_RU": "Знак врачевания Покорителя", "name_it_IT": "Distintivo Lenitivo dell'Offensiva del Dominio", "name_pt_PT": "Distintivo Restaurador do Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93344, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominator's Knightly Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 243, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 253983, "buy_price": 2829800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93349, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dominator's Knightly Badge", "name_ko_KR": "지배자의 기사 휘장", "name_fr_FR": "Ecusson chevaleresque de dominateur", "name_de_DE": "Ritterliches Abzeichen der Herrschaft", "name_zh_CN": "统御者的骑士徽章", "name_es_ES": "Distintivo de Caballero de dominador", "name_ru_RU": "Знак рыцарства Покорителя", "name_it_IT": "Distintivo Potente dell'Offensiva del Dominio", "name_pt_PT": "Distintivo Fidalgo do Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93345, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominator's Durable Badge", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 243, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2787500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93350, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Dominator's Durable Badge", "name_ko_KR": "지배자의 튼튼한 휘장", "name_fr_FR": "Ecusson durable de dominateur", "name_de_DE": "Standhaftes Abzeichen der Herrschaft", "name_zh_CN": "统御者的坚忍徽章", "name_es_ES": "Distintivo durable de dominador", "name_ru_RU": "Знак стойкости Покорителя", "name_it_IT": "Distintivo Resistente dell'Offensiva del Dominio", "name_pt_PT": "Distintivo Durável do Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93346, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deadeye Badge of the Shieldwall", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 244, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2819100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93341, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Deadeye Badge of the Shieldwall", "name_ko_KR": "철벽방패의 백발백중 휘장", "name_fr_FR": "Ecusson d'œil-mort du Bouclier", "name_de_DE": "Treffsicheres Abzeichen des Schildwalls", "name_zh_CN": "神盾鹰眼徽章", "name_es_ES": "Distintivo Mortojo del Muro de escudos", "name_ru_RU": "Знак точного выстрела \"Заслона\"", "name_it_IT": "Distintivo Sanguinario dell'Operazione Baluardo", "name_pt_PT": "Distintivo de Mira Certeira da Muralha de Escudos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93347, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcane Badge of the Shieldwall", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 244, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2808500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93342, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Arcane Badge of the Shieldwall", "name_ko_KR": "철벽방패의 비전 휘장", "name_fr_FR": "Ecusson des Arcanes du Bouclier", "name_de_DE": "Arkanes Abzeichen des Schildwalls", "name_zh_CN": "神盾奥法徽章", "name_es_ES": "Distintivo Arcano del Muro de escudos", "name_ru_RU": "Знак магии \"Заслона\"", "name_it_IT": "Distintivo Arcano dell'Operazione Baluardo", "name_pt_PT": "Distintivo Arcano da Muralha de Escudos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93348, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mending Badge of the Shieldwall", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 244, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2797900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93343, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Mending Badge of the Shieldwall", "name_ko_KR": "철벽방패의 치유 휘장", "name_fr_FR": "Ecusson de soin du Bouclier", "name_de_DE": "Heilendes Abzeichen des Schildwalls", "name_zh_CN": "神盾愈合徽章", "name_es_ES": "Distintivo de alivio del Muro de escudos", "name_ru_RU": "Знак врачевания \"Заслона\"", "name_it_IT": "Distintivo Lenitivo dell'Operazione Baluardo", "name_pt_PT": "Distintivo Reparador da Muralha de Escudos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93349, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Knightly Badge of the Shieldwall", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 244, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 253983, "buy_price": 2829800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93344, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Knightly Badge of the Shieldwall", "name_ko_KR": "철벽방패의 기사 휘장", "name_fr_FR": "Ecusson chevaleresque du Bouclier", "name_de_DE": "Ritterliches Abzeichen des Schildwalls", "name_zh_CN": "神盾骑士徽章", "name_es_ES": "Distintivo de Caballero del Muro de escudos", "name_ru_RU": "Знак рыцарства \"Заслона\"", "name_it_IT": "Distintivo Potente dell'Operazione Baluardo", "name_pt_PT": "Distintivo Fidalgo da Muralha de Escudos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93350, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Durable Badge of the Shieldwall", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 244, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 2787500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93345, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Durable Badge of the Shieldwall", "name_ko_KR": "철벽방패의 튼튼한 휘장", "name_fr_FR": "Ecusson durable du Bouclier", "name_de_DE": "Standhaftes Abzeichen des Schildwalls", "name_zh_CN": "神盾坚忍徽章", "name_es_ES": "Distintivo durable del Muro de escudos", "name_ru_RU": "Знак стойкости \"Заслона\"", "name_it_IT": "Distintivo Resistente dell'Operazione Baluardo", "name_pt_PT": "Distintivo Durável da Muralha de Escudos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93419, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Badge of Conquest", "name_ko_KR": "제작된 가혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Eroberungsabzeichen des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的征服徽章", "name_es_ES": "Distintivo de conquista artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный жетон завоевания жуткого гладиатора", "name_it_IT": "Distintivo della Conquista Artigianale del Gladiatore Truce", "name_pt_PT": "Distintivo de Conquista Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Insignia of Conquest", "name_ko_KR": "제작된 가혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Eroberungsinsigne des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的征服徽记", "name_es_ES": "Insignia de conquista artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный знак завоевания жуткого гладиатора", "name_it_IT": "Fregio della Conquista Artigianale del Gladiatore Truce", "name_pt_PT": "Insígnia de Conquista Artesanal do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93485, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Emblem of Cruelty", "name_ko_KR": "제작된 가혹한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Grausamkeitsemblem des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленная эмблема жестокости жуткого гладиатора", "name_it_IT": "Emblema dell'Atrocità Artigianale del Gladiatore Truce", "name_pt_PT": "Emblema da Crueldade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93486, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Emblem of Tenacity", "name_ko_KR": "제작된 가혹한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Hartnäckigkeitsemblem des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленная эмблема упорства жуткого гладиатора", "name_it_IT": "Emblema della Tenacia Artigianale del Gladiatore Truce", "name_pt_PT": "Emblema da Tenacidade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93487, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Emblem of Meditation", "name_ko_KR": "제작된 가혹한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Meditationsemblem des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的冥想纹章", "name_es_ES": "Emblema de meditación artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленная эмблема медитации жуткого гладиатора", "name_it_IT": "Emblema della Meditazione Artigianale del Gladiatore Truce", "name_pt_PT": "Emblema da Meditação Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93560, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Cruelty", "name_ko_KR": "제작된 가혹한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Grausamkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон жестокости жуткого гладиатора", "name_it_IT": "Medaglione dell'Atrocità Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Crueldade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93561, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Cruelty", "name_ko_KR": "제작된 가혹한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Grausamkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон жестокости жуткого гладиатора", "name_it_IT": "Medaglione dell'Atrocità Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Crueldade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93562, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Tenacity", "name_ko_KR": "제작된 가혹한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Hartnäckigkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон упорства жуткого гладиатора", "name_it_IT": "Medaglione della Tenacia Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Tenacidade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93563, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Tenacity", "name_ko_KR": "제작된 가혹한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Hartnäckigkeitsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон упорства жуткого гладиатора", "name_it_IT": "Medaglione della Tenacia Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Tenacidade Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93564, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Meditation", "name_ko_KR": "제작된 가혹한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Meditationsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон медитации жуткого гладиатора", "name_it_IT": "Medaglione della Meditazione Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Meditação Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93565, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Medallion of Meditation", "name_ko_KR": "제작된 가혹한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Meditationsmedaillon des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный медальон медитации жуткого гладиатора", "name_it_IT": "Medaglione della Meditazione Artigianale del Gladiatore Truce", "name_pt_PT": "Medalhão da Meditação Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93600, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Badge of Dominance", "name_ko_KR": "제작된 가혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Vorherrschaftsabzeichen des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный жетон господства жуткого гладиатора", "name_it_IT": "Distintivo della Dominazione Artigianale del Gladiatore Truce", "name_pt_PT": "Distintivo de Dominância Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93601, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Insignia of Dominance", "name_ko_KR": "제작된 가혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Vorherrschaftsinsigne des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的统御徽记", "name_es_ES": "Insignia de dominancia artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный знак господства жуткого гладиатора", "name_it_IT": "Fregio della Dominazione Artigianale del Gladiatore Truce", "name_pt_PT": "Insígnia de Dominância Artesanal do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93606, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Badge of Victory", "name_ko_KR": "제작된 가혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Siegesabzeichen des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный жетон победы жуткого гладиатора", "name_it_IT": "Distintivo della Vittoria Artigianale del Gladiatore Truce", "name_pt_PT": "Distintivo de Vitória Artesanal do Gladiador Terrível", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93611, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Dreadful Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 193038, "buy_price": 965194, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Dreadful Gladiator's Insignia of Victory", "name_ko_KR": "제작된 가혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire artisanal du gladiateur effroyable", "name_de_DE": "Hergestelltes Siegesinsigne des schrecklichen Gladiators", "name_zh_CN": "精制恐怖角斗士的胜利徽记", "name_es_ES": "Insignia de victoria artesanal de Gladiador infame", "name_ru_RU": "Искусно изготовленный знак победы жуткого гладиатора", "name_it_IT": "Fregio della Vittoria Artigianale del Gladiatore Truce", "name_pt_PT": "Insígnia de Vitória Artesanal do Gladiador Terrível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93896, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forceful Hand of Justice", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9625999927520752, "flags_1": 134217728, "flags_2": 155648, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Forceful Hand of Justice", "name_ko_KR": "강인한 정의의 손길", "name_fr_FR": "Main de justice énergique", "name_de_DE": "Kraftvolle Hand der Gerechtigkeit", "name_zh_CN": "强力的正义之手", "name_es_ES": "Mano fuerte de justicia", "name_ru_RU": "Могучая рука правосудия", "name_it_IT": "Vigorosa Mano della Giustizia", "name_pt_PT": "Mão da Justiça Ríspida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93897, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Piercing Eye of the Beast", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9927999973297119, "flags_1": 134217728, "flags_2": 155648, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Piercing Eye of the Beast", "name_ko_KR": "꿰뚫는 괴수의 눈", "name_fr_FR": "Oeil perçant de la Bête", "name_de_DE": "Durchdringendes Auge der Bestie", "name_zh_CN": "锐利的比斯巨兽之眼", "name_es_ES": "Ojo de la bestia penetrante", "name_ru_RU": "Пронзающий Глаз Зверя", "name_it_IT": "Occhio Penetrante della Bestia", "name_pt_PT": "Olho da Fera Penetrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93898, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bequeathed Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9965000152587891, "flags_1": 134217728, "flags_2": 155649, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93899, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Bequeathed Insignia of the Horde", "name_ko_KR": "상속의 호드 계급장", "name_fr_FR": "Insigne de la Horde décerné", "name_de_DE": "Hinterlassenes Insigne der Horde", "name_zh_CN": "遗赠的部落徽记", "name_es_ES": "Insignia legada de la Horda", "name_ru_RU": "Завещанный знак различия Орды", "name_it_IT": "Fregio Tramandato dell'Orda", "name_pt_PT": "Insígnia Herdada da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93899, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bequeathed Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000100016593933, "flags_1": 134217728, "flags_2": 155650, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 93898, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Bequeathed Insignia of the Alliance", "name_ko_KR": "상속의 얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance décerné", "name_de_DE": "Hinterlassenes Insigne der Allianz", "name_zh_CN": "遗赠的联盟徽记", "name_es_ES": "Insignia legada de la Alianza", "name_ru_RU": "Завещанный знак различия Альянса", "name_it_IT": "Fregio Tramandato dell'Alleanza", "name_pt_PT": "Insígnia Herdada da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 93900, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Mark of Tyranny", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0038000345230103, "flags_1": 134217728, "flags_2": 155648, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Mark of Tyranny", "name_ko_KR": "계승의 폭정의 징표", "name_fr_FR": "Marque de tyrannie héritée", "name_de_DE": "Geerbtes Mal der Tyrannei", "name_zh_CN": "祖传的暴君印记", "name_es_ES": "Marca de Tiranía heredada", "name_ru_RU": "Унаследованный знак деспотизма", "name_it_IT": "Marchio Ereditato della Tirannia", "name_pt_PT": "Marca da Tirania Herdada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94329, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91211, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Meditation", "name_ko_KR": "압제적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador tiránico", "name_ru_RU": "Эмблема медитации деспотичного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Emblema da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94338, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94388, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Meditation", "name_ko_KR": "압제적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador tiránico", "name_ru_RU": "Медальон медитации деспотичного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94346, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91400, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Dominance", "name_ko_KR": "압제적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador tiránico", "name_ru_RU": "Жетон господства деспотичного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Dominância do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94349, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91410, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Victory", "name_ko_KR": "압제적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur tyrannique", "name_de_DE": "Siegesabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador tiránico", "name_ru_RU": "Жетон победы деспотичного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Vitória do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94356, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91104, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Conquest", "name_ko_KR": "압제적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador tiránico", "name_ru_RU": "Знак завоевания деспотичного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Conquista do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94361, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94387, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador tiránico", "name_ru_RU": "Медальон упорства деспотичного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94373, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91099, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Conquest", "name_ko_KR": "압제적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador tiránico", "name_ru_RU": "Жетон завоевания деспотичного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Conquista do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94386, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94454, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador tiránico", "name_ru_RU": "Медальон жестокости деспотичного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94387, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94361, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador tiránico", "name_ru_RU": "Медальон упорства деспотичного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94388, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94338, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Meditation", "name_ko_KR": "압제적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador tiránico", "name_ru_RU": "Медальон медитации деспотичного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94396, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91209, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador tiránico", "name_ru_RU": "Эмблема жестокости деспотичного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Emblema da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94415, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91415, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Victory", "name_ko_KR": "압제적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur tyrannique", "name_de_DE": "Siegesinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador tiránico", "name_ru_RU": "Знак победы деспотичного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Vitória do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94422, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91210, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador tiránico", "name_ru_RU": "Эмблема упорства деспотичного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Emblema da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94454, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 94386, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador tiránico", "name_ru_RU": "Медальон жестокости деспотичного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94482, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 91401, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 3933, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Dominance", "name_ko_KR": "압제적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador tiránico", "name_ru_RU": "Знак господства деспотичного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Dominância do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Steadfast Talisman of the Shado-Pan Assault", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 283, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 253983, "buy_price": 4309500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1435, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Steadfast Talisman of the Shado-Pan Assault", "name_ko_KR": "음영파 강습단의 견실한 부적", "name_fr_FR": "Talisman inébranlable de l'assaut des Pandashan", "name_de_DE": "Beständiger Talisman des Shado-Pan-Vorstoßes", "name_zh_CN": "影踪突袭营的坚定护符", "name_es_ES": "Dije de determinación férrea del Asalto del Shadopan", "name_ru_RU": "Талисман непреклонности Натиска Шадо-Пан", "name_it_IT": "Talismano Costante dell'Avanzata degli Shandaren", "name_pt_PT": "Talismã Inabalável do Ataque Shado-Pan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94508, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brutal Talisman of the Shado-Pan Assault", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 283, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 253983, "buy_price": 4374800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1435, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Brutal Talisman of the Shado-Pan Assault", "name_ko_KR": "음영파 강습단의 무자비한 부적", "name_fr_FR": "Talisman brutal de l'assaut des Pandashan", "name_de_DE": "Brutaler Talisman des Shado-Pan-Vorstoßes", "name_zh_CN": "影踪突袭营的野蛮护符", "name_es_ES": "Dije brutal del Asalto del Shadopan", "name_ru_RU": "Жестокий талисман Натиска Шадо-Пан", "name_it_IT": "Talismano Brutale dell'Avanzata degli Shandaren", "name_pt_PT": "Talismã Brutal do Ataque Shado-Pan", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94509, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soothing Talisman of the Shado-Pan Assault", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 283, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 253983, "buy_price": 4325500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1435, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soothing Talisman of the Shado-Pan Assault", "name_ko_KR": "음영파 강습단의 어루만지는 부적", "name_fr_FR": "Talisman apaisant de l'assaut des Pandashan", "name_de_DE": "Beruhigender Talisman des Shado-Pan-Vorstoßes", "name_zh_CN": "影踪突袭营的抚慰护符", "name_es_ES": "Dije reconfortante del Asalto del Shadopan", "name_ru_RU": "Умиротворяющий талисман Натиска Шадо-Пан", "name_it_IT": "Talismano Curativo dell'Avanzata degli Shandaren", "name_pt_PT": "Talismã Reconfortante do Ataque Shado-Pan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94510, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Volatile Talisman of the Shado-Pan Assault", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 283, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 253983, "buy_price": 4341900, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1435, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Volatile Talisman of the Shado-Pan Assault", "name_ko_KR": "음영파 강습단의 일촉즉발 부적", "name_fr_FR": "Talisman volatil de l'assaut des Pandashan", "name_de_DE": "Unberechenbarer Talisman des Shado-Pan-Vorstoßes", "name_zh_CN": "影踪突袭营的爆裂护符", "name_es_ES": "Dije volátil del Asalto del Shadopan", "name_ru_RU": "Невесомый талисман Натиска Шадо-Пан", "name_it_IT": "Talismano Instabile dell'Avanzata degli Shandaren", "name_pt_PT": "Talismã Volátil do Ataque Shado-Pan", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94511, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vicious Talisman of the Shado-Pan Assault", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 283, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 253983, "buy_price": 4358400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1435, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vicious Talisman of the Shado-Pan Assault", "name_ko_KR": "음영파 강습단의 흉포한 부적", "name_fr_FR": "Talisman vicieux de l'assaut des Pandashan", "name_de_DE": "Heimtückischer Talisman des Shado-Pan-Vorstoßes", "name_zh_CN": "影踪突袭营的邪恶护符", "name_es_ES": "Dije sañoso del Asalto del Shadopan", "name_ru_RU": "Яростный талисман Натиска Шадо-Пан", "name_it_IT": "Talismano Feroce dell'Avanzata degli Shandaren", "name_pt_PT": "Talismã Cruel do Ataque Shado-Pan", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 94512, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Soul Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 273, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Soul Charm", "name_ko_KR": "레나타키의 영혼 부적", "name_fr_FR": "Charme d'âme de Renataki", "name_de_DE": "Renatakis Seelentalisman", "name_zh_CN": "雷纳塔基的灵魂符咒", "name_es_ES": "Talismán de alma de Renataki", "name_ru_RU": "Оберег души Ренатаки", "name_it_IT": "Ammalianime di Renataki", "name_pt_PT": "Patuá de Renataki", "on_use": false, "id_encounter": 827, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94513, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Final Choice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 280, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Final Choice", "name_ko_KR": "우슐레이의 마지막 선택", "name_fr_FR": "Ultime choix de Wushoolay", "name_de_DE": "Wushoolays letzte Wahl", "name_zh_CN": "乌苏雷的最终抉择", "name_es_ES": "Decisión final de Wushoolay", "name_ru_RU": "Последний выбор Вушулая", "name_it_IT": "Scelta Finale di Wushoolay", "name_pt_PT": "Última Escolha de Vuxulai", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horridon's Last Gasp", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 268, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horridon's Last Gasp", "name_ko_KR": "호리돈의 마지막 들숨", "name_fr_FR": "Dernier souffle d'Horridon", "name_de_DE": "Horridons letzter Atemzug", "name_zh_CN": "赫利东的垂死之息", "name_es_ES": "Último aliento de Horridonte", "name_ru_RU": "Последний вздох Хорридона", "name_it_IT": "Ultimo Respiro di Horridon", "name_pt_PT": "Último Suspiro de Horridon", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94515, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fabled Feather of Ji-Kun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 265, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fabled Feather of Ji-Kun", "name_ko_KR": "지쿤의 전설적인 깃털", "name_fr_FR": "Plume fabuleuse de Ji Kun", "name_de_DE": "Legendäre Feder von Ji-Kun", "name_zh_CN": "季鹍的传说之羽", "name_es_ES": "Pluma de fábula de Ji Kun", "name_ru_RU": "Легендарное перо Цзи-Кунь", "name_it_IT": "Piuma Leggendaria di Ji-Kun", "name_pt_PT": "Pena Fabulosa de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fortitude of the Zandalari", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 266, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fortitude of the Zandalari", "name_ko_KR": "잔달라의 인내", "name_fr_FR": "Endurance des Zandalari", "name_de_DE": "Kraft der Zandalari", "name_zh_CN": "赞达拉之韧", "name_es_ES": "Entereza de los Zandalari", "name_ru_RU": "Стойкость зандаларов", "name_it_IT": "Vigore degli Zandalari", "name_pt_PT": "Fortitude dos Zandalari", "on_use": true, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94518, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delicate Vial of the Sanguinaire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 264, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Delicate Vial of the Sanguinaire", "name_ko_KR": "핏덩이가 담긴 섬세한 유리병", "name_fr_FR": "Fiole délicate du sanguinaire", "name_de_DE": "Filigrane Phiole des Blutsaugers", "name_zh_CN": "嗜血者的精致小瓶", "name_es_ES": "Vial delicado del Sanguinario", "name_ru_RU": "Хрупкий фиал кровопролития", "name_it_IT": "Fiala del Sanguinario", "name_pt_PT": "Ampola Delicada do Sanguinário", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94519, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primordius' Talisman of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 272, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Primordius' Talisman of Rage", "name_ko_KR": "프리모디우스의 분노의 부적", "name_fr_FR": "Talisman de rage de Primordius", "name_de_DE": "Primordius' Talisman der Wut", "name_zh_CN": "普利莫修斯的狂怒护符", "name_es_ES": "Dije de ira de Primordius", "name_ru_RU": "Талисман ярости Изначалия", "name_it_IT": "Talismano della Rabbia di Primordius", "name_pt_PT": "Talismã da Ira de Primordius", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94520, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscribed Bag of Hydra-Spawn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 269, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Inscribed Bag of Hydra-Spawn", "name_ko_KR": "히드라혈족의 문자가 새겨진 주머니", "name_fr_FR": "Sac gravé de rejeton d'hydre", "name_de_DE": "Verzierter Beutel mit Hydraeiern", "name_zh_CN": "九头蛇卵的铭文袋", "name_es_ES": "Bolsa de engendro de hidra con inscripciones", "name_ru_RU": "Покрытый письменами мешок порождений гидры", "name_it_IT": "Borsa Decorata della Prole dell'Idra", "name_pt_PT": "Bolsa de Ova de Hidra Inscrita", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94521, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Hydra", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 262, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Breath of the Hydra", "name_ko_KR": "히드라의 숨결", "name_fr_FR": "Souffle de l'hydre", "name_de_DE": "Odem der Hydra", "name_zh_CN": "九头蛇之息", "name_es_ES": "Aliento de la hidra", "name_ru_RU": "Дыхание гидры", "name_it_IT": "Soffio dell'Idra", "name_pt_PT": "Sopro da Hidra", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94522, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Bloodlust", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 278, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Bloodlust", "name_ko_KR": "피바람의 부적", "name_fr_FR": "Talisman de furie sanguinaire", "name_de_DE": "Talisman des Blutdurstes", "name_zh_CN": "杀戮护符", "name_es_ES": "Dije de Ansia de sangre", "name_ru_RU": "Талисман жажды крови", "name_it_IT": "Talismano della Brama di Sangue", "name_pt_PT": "Talismã da Sede de Sangue", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94523, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bad Juju", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 261, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bad Juju", "name_ko_KR": "나쁜 부적", "name_fr_FR": "Mauvais juju", "name_de_DE": "Finsteres Juju", "name_zh_CN": "邪恶魂能", "name_es_ES": "Mal yuyu", "name_ru_RU": "Зловещее джуджу", "name_it_IT": "Juju Cattivo", "name_pt_PT": "Juju do Mal", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94524, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unerring Vision of Lei Shen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 279, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Unerring Vision of Lei Shen", "name_ko_KR": "레이 션의 흔들림 없는 시선", "name_fr_FR": "Vision infaillible de Lei Shen", "name_de_DE": "Unfehlbarer Blick des Lei Shen", "name_zh_CN": "雷神的精准之视", "name_es_ES": "Visión infalible de Lei Shen", "name_ru_RU": "Отчетливое видение Лэй Шэня", "name_it_IT": "Visione Infallibile di Lei Shen", "name_pt_PT": "Visão Infalível de Lei Shen", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94525, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Relic of Zuldazar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 277, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stolen Relic of Zuldazar", "name_ko_KR": "줄다자르의 도둑맞은 유물", "name_fr_FR": "Relique volée de Zuldazar", "name_de_DE": "Gestohlenes Relikt von Zuldazar", "name_zh_CN": "祖达萨的失窃遗物", "name_es_ES": "Reliquia robada de Zuldazar", "name_ru_RU": "Украденная реликвия Зулдазара", "name_it_IT": "Reliquia Rubata di Zuldazar", "name_pt_PT": "Relíquia Roubada de Zuldazar", "on_use": true, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94526, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Zandalar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 276, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Zandalar", "name_ko_KR": "잔달라의 불꽃", "name_fr_FR": "Etincelle de Zandalar", "name_de_DE": "Funken von Zandalar", "name_zh_CN": "赞达拉之火", "name_es_ES": "Chispa de Zandalar", "name_ru_RU": "Искра Зандалара", "name_it_IT": "Monile della Scintilla di Zandalar", "name_pt_PT": "Centelha de Zandalar", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ji-Kun's Rising Winds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 270, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ji-Kun's Rising Winds", "name_ko_KR": "지쿤의 이는 바람", "name_fr_FR": "Levée du vent de Ji Kun", "name_de_DE": "Ji-Kuns Aufwind", "name_zh_CN": "季鹍的复苏之风", "name_es_ES": "Vientos crecientes de Ji Kun", "name_ru_RU": "Нарастающий ветер Цзи-Кунь", "name_it_IT": "Venti Crescenti di Ji-Kun", "name_pt_PT": "Vento Crescente de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Barrier", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 275, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soul Barrier", "name_ko_KR": "영혼 방벽", "name_fr_FR": "Barrière d'âme", "name_de_DE": "Seelenbarriere", "name_zh_CN": "灵魂壁障", "name_es_ES": "Barrera de alma", "name_ru_RU": "Призрачный барьер", "name_it_IT": "Barriera d'Anima", "name_pt_PT": "Barreira de Almas", "on_use": true, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94529, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gaze of the Twins", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 267, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Gaze of the Twins", "name_ko_KR": "쌍둥이의 응시", "name_fr_FR": "Regard des concubines", "name_de_DE": "Blick der Zwillinge", "name_zh_CN": "双天的凝视", "name_es_ES": "Mirada de las Gemelas", "name_ru_RU": "Взгляд близнецов", "name_it_IT": "Sguardo delle Gemelle", "name_pt_PT": "Olhar das Gêmeas", "on_use": false, "id_encounter": 829, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94530, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning-Imbued Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 271, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lightning-Imbued Chalice", "name_ko_KR": "번개 깃든 성배", "name_fr_FR": "Calice imprégné de foudre", "name_de_DE": "Blitz-verzauberter Kelch", "name_zh_CN": "闪电圣杯", "name_es_ES": "Cáliz imbuido de relámpagos", "name_ru_RU": "Заряженный молнией кубок", "name_it_IT": "Calice Infuso di Fulmini", "name_pt_PT": "Cálice Imbuído em Relâmpago", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cha-Ye's Essence of Brilliance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 263, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cha-Ye's Essence of Brilliance", "name_ko_KR": "차예의 총명함의 정수", "name_fr_FR": "Essence de brillance de Cha Ye", "name_de_DE": "Cha-Yes brillante Essenz", "name_zh_CN": "张叶的辉煌精华", "name_es_ES": "Esencia de resplandor de Cha Ye", "name_ru_RU": "Сущность гениальности Ча-Йе", "name_it_IT": "Essenza dell'Acume di Cha-Ye", "name_pt_PT": "Essência do Esplendor de Cha-Ye", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 94532, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Re-Origination", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 274, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Re-Origination", "name_ko_KR": "재창시의 룬", "name_fr_FR": "Rune de redistribution", "name_de_DE": "Rune der Neuerschaffung", "name_zh_CN": "重生符文", "name_es_ES": "Runa de reoriginación", "name_ru_RU": "Руна перераспределения", "name_it_IT": "Runa della Rioriginazione", "name_pt_PT": "Runa da Recriação", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95625, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Soul Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 273, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Soul Charm", "name_ko_KR": "레나타키의 영혼 부적", "name_fr_FR": "Charme d'âme de Renataki", "name_de_DE": "Renatakis Seelentalisman", "name_zh_CN": "雷纳塔基的灵魂符咒", "name_es_ES": "Talismán de alma de Renataki", "name_ru_RU": "Оберег души Ренатаки", "name_it_IT": "Ammalianime di Renataki", "name_pt_PT": "Patuá de Renataki", "on_use": false, "id_encounter": 827, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horridon's Last Gasp", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 268, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horridon's Last Gasp", "name_ko_KR": "호리돈의 마지막 들숨", "name_fr_FR": "Dernier souffle d'Horridon", "name_de_DE": "Horridons letzter Atemzug", "name_zh_CN": "赫利东的垂死之息", "name_es_ES": "Último aliento de Horridonte", "name_ru_RU": "Последний вздох Хорридона", "name_it_IT": "Ultimo Respiro di Horridon", "name_pt_PT": "Último Suspiro de Horridon", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Zandalar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 276, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Zandalar", "name_ko_KR": "잔달라의 불꽃", "name_fr_FR": "Etincelle de Zandalar", "name_de_DE": "Funken von Zandalar", "name_zh_CN": "赞达拉之火", "name_es_ES": "Chispa de Zandalar", "name_ru_RU": "Искра Зандалара", "name_it_IT": "Monile della Scintilla di Zandalar", "name_pt_PT": "Centelha de Zandalar", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95665, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bad Juju", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 261, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bad Juju", "name_ko_KR": "나쁜 부적", "name_fr_FR": "Mauvais juju", "name_de_DE": "Finsteres Juju", "name_zh_CN": "邪恶魂能", "name_es_ES": "Mal yuyu", "name_ru_RU": "Зловещее джуджу", "name_it_IT": "Juju Cattivo", "name_pt_PT": "Juju do Mal", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95669, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Final Choice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 280, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Final Choice", "name_ko_KR": "우슐레이의 마지막 선택", "name_fr_FR": "Ultime choix de Wushoolay", "name_de_DE": "Wushoolays letzte Wahl", "name_zh_CN": "乌苏雷的最终抉择", "name_es_ES": "Decisión final de Wushoolay", "name_ru_RU": "Последний выбор Вушулая", "name_it_IT": "Scelta Finale di Wushoolay", "name_pt_PT": "Última Escolha de Vuxulai", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95677, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fortitude of the Zandalari", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 266, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fortitude of the Zandalari", "name_ko_KR": "잔달라의 인내", "name_fr_FR": "Endurance des Zandalari", "name_de_DE": "Kraft der Zandalari", "name_zh_CN": "赞达拉之韧", "name_es_ES": "Entereza de los Zandalari", "name_ru_RU": "Стойкость зандаларов", "name_it_IT": "Vigore degli Zandalari", "name_pt_PT": "Fortitude dos Zandalari", "on_use": true, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95711, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Hydra", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 262, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Breath of the Hydra", "name_ko_KR": "히드라의 숨결", "name_fr_FR": "Souffle de l'hydre", "name_de_DE": "Odem der Hydra", "name_zh_CN": "九头蛇之息", "name_es_ES": "Aliento de la hidra", "name_ru_RU": "Дыхание гидры", "name_it_IT": "Soffio dell'Idra", "name_pt_PT": "Sopro da Hidra", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95712, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscribed Bag of Hydra-Spawn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 269, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Inscribed Bag of Hydra-Spawn", "name_ko_KR": "히드라혈족의 문자가 새겨진 주머니", "name_fr_FR": "Sac gravé de rejeton d'hydre", "name_de_DE": "Verzierter Beutel mit Hydraeiern", "name_zh_CN": "九头蛇卵的铭文袋", "name_es_ES": "Bolsa de engendro de hidra con inscripciones", "name_ru_RU": "Покрытый письменами мешок порождений гидры", "name_it_IT": "Borsa Decorata della Prole dell'Idra", "name_pt_PT": "Bolsa de Ova de Hidra Inscrita", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fabled Feather of Ji-Kun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 265, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fabled Feather of Ji-Kun", "name_ko_KR": "지쿤의 전설적인 깃털", "name_fr_FR": "Plume fabuleuse de Ji Kun", "name_de_DE": "Legendäre Feder von Ji-Kun", "name_zh_CN": "季鹍的传说之羽", "name_es_ES": "Pluma de fábula de Ji Kun", "name_ru_RU": "Легендарное перо Цзи-Кунь", "name_it_IT": "Piuma Leggendaria di Ji-Kun", "name_pt_PT": "Pena Fabulosa de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ji-Kun's Rising Winds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 270, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ji-Kun's Rising Winds", "name_ko_KR": "지쿤의 이는 바람", "name_fr_FR": "Levée du vent de Ji Kun", "name_de_DE": "Ji-Kuns Aufwind", "name_zh_CN": "季鹍的复苏之风", "name_es_ES": "Vientos crecientes de Ji Kun", "name_ru_RU": "Нарастающий ветер Цзи-Кунь", "name_it_IT": "Venti Crescenti di Ji-Kun", "name_pt_PT": "Vento Crescente de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95748, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Bloodlust", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 278, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Bloodlust", "name_ko_KR": "피바람의 부적", "name_fr_FR": "Talisman de furie sanguinaire", "name_de_DE": "Talisman des Blutdurstes", "name_zh_CN": "杀戮护符", "name_es_ES": "Dije de Ansia de sangre", "name_ru_RU": "Талисман жажды крови", "name_it_IT": "Talismano della Brama di Sangue", "name_pt_PT": "Talismã da Sede de Sangue", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95757, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primordius' Talisman of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 272, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Primordius' Talisman of Rage", "name_ko_KR": "프리모디우스의 분노의 부적", "name_fr_FR": "Talisman de rage de Primordius", "name_de_DE": "Primordius' Talisman der Wut", "name_zh_CN": "普利莫修斯的狂怒护符", "name_es_ES": "Dije de ira de Primordius", "name_ru_RU": "Талисман ярости Изначалия", "name_it_IT": "Talismano della Rabbia di Primordius", "name_pt_PT": "Talismã da Ira de Primordius", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Relic of Zuldazar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 277, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stolen Relic of Zuldazar", "name_ko_KR": "줄다자르의 도둑맞은 유물", "name_fr_FR": "Relique volée de Zuldazar", "name_de_DE": "Gestohlenes Relikt von Zuldazar", "name_zh_CN": "祖达萨的失窃遗物", "name_es_ES": "Reliquia robada de Zuldazar", "name_ru_RU": "Украденная реликвия Зулдазара", "name_it_IT": "Reliquia Rubata di Zuldazar", "name_pt_PT": "Relíquia Roubada de Zuldazar", "on_use": true, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95772, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cha-Ye's Essence of Brilliance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 263, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cha-Ye's Essence of Brilliance", "name_ko_KR": "차예의 총명함의 정수", "name_fr_FR": "Essence de brillance de Cha Ye", "name_de_DE": "Cha-Yes brillante Essenz", "name_zh_CN": "张叶的辉煌精华", "name_es_ES": "Esencia de resplandor de Cha Ye", "name_ru_RU": "Сущность гениальности Ча-Йе", "name_it_IT": "Essenza dell'Acume di Cha-Ye", "name_pt_PT": "Essência do Esplendor de Cha-Ye", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delicate Vial of the Sanguinaire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 264, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Delicate Vial of the Sanguinaire", "name_ko_KR": "핏덩이가 담긴 섬세한 유리병", "name_fr_FR": "Fiole délicate du sanguinaire", "name_de_DE": "Filigrane Phiole des Blutsaugers", "name_zh_CN": "嗜血者的精致小瓶", "name_es_ES": "Vial delicado del Sanguinario", "name_ru_RU": "Хрупкий фиал кровопролития", "name_it_IT": "Fiala del Sanguinario", "name_pt_PT": "Ampola Delicada do Sanguinário", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95799, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gaze of the Twins", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 267, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Gaze of the Twins", "name_ko_KR": "쌍둥이의 응시", "name_fr_FR": "Regard des concubines", "name_de_DE": "Blick der Zwillinge", "name_zh_CN": "双天的凝视", "name_es_ES": "Mirada de las Gemelas", "name_ru_RU": "Взгляд близнецов", "name_it_IT": "Sguardo delle Gemelle", "name_pt_PT": "Olhar das Gêmeas", "on_use": false, "id_encounter": 829, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95802, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Re-Origination", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 274, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Re-Origination", "name_ko_KR": "재창시의 룬", "name_fr_FR": "Rune de redistribution", "name_de_DE": "Rune der Neuerschaffung", "name_zh_CN": "重生符文", "name_es_ES": "Runa de reoriginación", "name_ru_RU": "Руна перераспределения", "name_it_IT": "Runa della Rioriginazione", "name_pt_PT": "Runa da Recriação", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Barrier", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 275, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soul Barrier", "name_ko_KR": "영혼 방벽", "name_fr_FR": "Barrière d'âme", "name_de_DE": "Seelenbarriere", "name_zh_CN": "灵魂壁障", "name_es_ES": "Barrera de alma", "name_ru_RU": "Призрачный барьер", "name_it_IT": "Barriera d'Anima", "name_pt_PT": "Barreira de Almas", "on_use": true, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95814, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unerring Vision of Lei Shen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 279, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Unerring Vision of Lei Shen", "name_ko_KR": "레이 션의 흔들림 없는 시선", "name_fr_FR": "Vision infaillible de Lei Shen", "name_de_DE": "Unfehlbarer Blick des Lei Shen", "name_zh_CN": "雷神的精准之视", "name_es_ES": "Visión infalible de Lei Shen", "name_ru_RU": "Отчетливое видение Лэй Шэня", "name_it_IT": "Visione Infallibile di Lei Shen", "name_pt_PT": "Visão Infalível de Lei Shen", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95817, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning-Imbued Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 271, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lightning-Imbued Chalice", "name_ko_KR": "번개 깃든 성배", "name_fr_FR": "Calice imprégné de foudre", "name_de_DE": "Blitz-verzauberter Kelch", "name_zh_CN": "闪电圣杯", "name_es_ES": "Cáliz imbuido de relámpagos", "name_ru_RU": "Заряженный молнией кубок", "name_it_IT": "Calice Infuso di Fulmini", "name_pt_PT": "Cálice Imbuído em Relâmpago", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 95997, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Soul Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 273, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64851, "buy_price": 324255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Soul Charm", "name_ko_KR": "레나타키의 영혼 부적", "name_fr_FR": "Charme d'âme de Renataki", "name_de_DE": "Renatakis Seelentalisman", "name_zh_CN": "雷纳塔基的灵魂符咒", "name_es_ES": "Talismán de alma de Renataki", "name_ru_RU": "Оберег души Ренатаки", "name_it_IT": "Ammalianime di Renataki", "name_pt_PT": "Patuá de Renataki", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96013, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horridon's Last Gasp", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 268, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64361, "buy_price": 321808, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horridon's Last Gasp", "name_ko_KR": "호리돈의 마지막 들숨", "name_fr_FR": "Dernier souffle d'Horridon", "name_de_DE": "Horridons letzter Atemzug", "name_zh_CN": "赫利东的垂死之息", "name_es_ES": "Último aliento de Horridonte", "name_ru_RU": "Последний вздох Хорридона", "name_it_IT": "Ultimo Respiro di Horridon", "name_pt_PT": "Último Suspiro de Horridon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Zandalar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 276, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65095, "buy_price": 325478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Zandalar", "name_ko_KR": "잔달라의 불꽃", "name_fr_FR": "Etincelle de Zandalar", "name_de_DE": "Funken von Zandalar", "name_zh_CN": "赞达拉之火", "name_es_ES": "Chispa de Zandalar", "name_ru_RU": "Искра Зандалара", "name_it_IT": "Monile della Scintilla di Zandalar", "name_pt_PT": "Centelha de Zandalar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96037, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bad Juju", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 261, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64851, "buy_price": 324255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bad Juju", "name_ko_KR": "나쁜 부적", "name_fr_FR": "Mauvais juju", "name_de_DE": "Finsteres Juju", "name_zh_CN": "邪恶魂能", "name_es_ES": "Mal yuyu", "name_ru_RU": "Зловещее джуджу", "name_it_IT": "Juju Cattivo", "name_pt_PT": "Juju do Mal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Final Choice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 280, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723, "buy_price": 3617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Final Choice", "name_ko_KR": "우슐레이의 마지막 선택", "name_fr_FR": "Ultime choix de Wushoolay", "name_de_DE": "Wushoolays letzte Wahl", "name_zh_CN": "乌苏雷的最终抉择", "name_es_ES": "Decisión final de Wushoolay", "name_ru_RU": "Последний выбор Вушулая", "name_it_IT": "Scelta Finale di Wushoolay", "name_pt_PT": "Última Escolha de Vuxulai", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96049, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fortitude of the Zandalari", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 266, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64123, "buy_price": 320618, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fortitude of the Zandalari", "name_ko_KR": "잔달라의 인내", "name_fr_FR": "Endurance des Zandalari", "name_de_DE": "Kraft der Zandalari", "name_zh_CN": "赞达拉之韧", "name_es_ES": "Entereza de los Zandalari", "name_ru_RU": "Стойкость зандаларов", "name_it_IT": "Vigore degli Zandalari", "name_pt_PT": "Fortitude dos Zandalari", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96083, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Hydra", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 262, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723, "buy_price": 3617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Breath of the Hydra", "name_ko_KR": "히드라의 숨결", "name_fr_FR": "Souffle de l'hydre", "name_de_DE": "Odem der Hydra", "name_zh_CN": "九头蛇之息", "name_es_ES": "Aliento de la hidra", "name_ru_RU": "Дыхание гидры", "name_it_IT": "Soffio dell'Idra", "name_pt_PT": "Sopro da Hidra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96084, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscribed Bag of Hydra-Spawn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 269, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64361, "buy_price": 321808, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Inscribed Bag of Hydra-Spawn", "name_ko_KR": "히드라혈족의 문자가 새겨진 주머니", "name_fr_FR": "Sac gravé de rejeton d'hydre", "name_de_DE": "Verzierter Beutel mit Hydraeiern", "name_zh_CN": "九头蛇卵的铭文袋", "name_es_ES": "Bolsa de engendro de hidra con inscripciones", "name_ru_RU": "Покрытый письменами мешок порождений гидры", "name_it_IT": "Borsa Decorata della Prole dell'Idra", "name_pt_PT": "Bolsa de Ova de Hidra Inscrita", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96098, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fabled Feather of Ji-Kun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 265, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65095, "buy_price": 325478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fabled Feather of Ji-Kun", "name_ko_KR": "지쿤의 전설적인 깃털", "name_fr_FR": "Plume fabuleuse de Ji Kun", "name_de_DE": "Legendäre Feder von Ji-Kun", "name_zh_CN": "季鹍的传说之羽", "name_es_ES": "Pluma de fábula de Ji Kun", "name_ru_RU": "Легендарное перо Цзи-Кунь", "name_it_IT": "Piuma Leggendaria di Ji-Kun", "name_pt_PT": "Pena Fabulosa de Ji-Kun", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96099, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ji-Kun's Rising Winds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 270, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64123, "buy_price": 320618, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ji-Kun's Rising Winds", "name_ko_KR": "지쿤의 이는 바람", "name_fr_FR": "Levée du vent de Ji Kun", "name_de_DE": "Ji-Kuns Aufwind", "name_zh_CN": "季鹍的复苏之风", "name_es_ES": "Vientos crecientes de Ji Kun", "name_ru_RU": "Нарастающий ветер Цзи-Кунь", "name_it_IT": "Venti Crescenti di Ji-Kun", "name_pt_PT": "Vento Crescente de Ji-Kun", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96120, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Bloodlust", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 278, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64851, "buy_price": 324255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Bloodlust", "name_ko_KR": "피바람의 부적", "name_fr_FR": "Talisman de furie sanguinaire", "name_de_DE": "Talisman des Blutdurstes", "name_zh_CN": "杀戮护符", "name_es_ES": "Dije de Ansia de sangre", "name_ru_RU": "Талисман жажды крови", "name_it_IT": "Talismano della Brama di Sangue", "name_pt_PT": "Talismã da Sede de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96129, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primordius' Talisman of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 272, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65095, "buy_price": 325478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Primordius' Talisman of Rage", "name_ko_KR": "프리모디우스의 분노의 부적", "name_fr_FR": "Talisman de rage de Primordius", "name_de_DE": "Primordius' Talisman der Wut", "name_zh_CN": "普利莫修斯的狂怒护符", "name_es_ES": "Dije de ira de Primordius", "name_ru_RU": "Талисман ярости Изначалия", "name_it_IT": "Talismano della Rabbia di Primordius", "name_pt_PT": "Talismã da Ira de Primordius", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96135, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Relic of Zuldazar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 277, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64361, "buy_price": 321808, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stolen Relic of Zuldazar", "name_ko_KR": "줄다자르의 도둑맞은 유물", "name_fr_FR": "Relique volée de Zuldazar", "name_de_DE": "Gestohlenes Relikt von Zuldazar", "name_zh_CN": "祖达萨的失窃遗物", "name_es_ES": "Reliquia robada de Zuldazar", "name_ru_RU": "Украденная реликвия Зулдазара", "name_it_IT": "Reliquia Rubata di Zuldazar", "name_pt_PT": "Relíquia Roubada de Zuldazar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96144, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cha-Ye's Essence of Brilliance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 263, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723, "buy_price": 3617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cha-Ye's Essence of Brilliance", "name_ko_KR": "차예의 총명함의 정수", "name_fr_FR": "Essence de brillance de Cha Ye", "name_de_DE": "Cha-Yes brillante Essenz", "name_zh_CN": "张叶的辉煌精华", "name_es_ES": "Esencia de resplandor de Cha Ye", "name_ru_RU": "Сущность гениальности Ча-Йе", "name_it_IT": "Essenza dell'Acume di Cha-Ye", "name_pt_PT": "Essência do Esplendor de Cha-Ye", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96151, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delicate Vial of the Sanguinaire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 264, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64123, "buy_price": 320618, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Delicate Vial of the Sanguinaire", "name_ko_KR": "핏덩이가 담긴 섬세한 유리병", "name_fr_FR": "Fiole délicate du sanguinaire", "name_de_DE": "Filigrane Phiole des Blutsaugers", "name_zh_CN": "嗜血者的精致小瓶", "name_es_ES": "Vial delicado del Sanguinario", "name_ru_RU": "Хрупкий фиал кровопролития", "name_it_IT": "Fiala del Sanguinario", "name_pt_PT": "Ampola Delicada do Sanguinário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96171, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gaze of the Twins", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 267, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65095, "buy_price": 325478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Gaze of the Twins", "name_ko_KR": "쌍둥이의 응시", "name_fr_FR": "Regard des concubines", "name_de_DE": "Blick der Zwillinge", "name_zh_CN": "双天的凝视", "name_es_ES": "Mirada de las Gemelas", "name_ru_RU": "Взгляд близнецов", "name_it_IT": "Sguardo delle Gemelle", "name_pt_PT": "Olhar das Gêmeas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96174, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Re-Origination", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 274, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64851, "buy_price": 324255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Re-Origination", "name_ko_KR": "재창시의 룬", "name_fr_FR": "Rune de redistribution", "name_de_DE": "Rune der Neuerschaffung", "name_zh_CN": "重生符文", "name_es_ES": "Runa de reoriginación", "name_ru_RU": "Руна перераспределения", "name_it_IT": "Runa della Rioriginazione", "name_pt_PT": "Runa da Recriação", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96183, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Barrier", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 275, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64123, "buy_price": 320618, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soul Barrier", "name_ko_KR": "영혼 방벽", "name_fr_FR": "Barrière d'âme", "name_de_DE": "Seelenbarriere", "name_zh_CN": "灵魂壁障", "name_es_ES": "Barrera de alma", "name_ru_RU": "Призрачный барьер", "name_it_IT": "Barriera d'Anima", "name_pt_PT": "Barreira de Almas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96186, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unerring Vision of Lei Shen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 279, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723, "buy_price": 3617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Unerring Vision of Lei Shen", "name_ko_KR": "레이 션의 흔들림 없는 시선", "name_fr_FR": "Vision infaillible de Lei Shen", "name_de_DE": "Unfehlbarer Blick des Lei Shen", "name_zh_CN": "雷神的精准之视", "name_es_ES": "Visión infalible de Lei Shen", "name_ru_RU": "Отчетливое видение Лэй Шэня", "name_it_IT": "Visione Infallibile di Lei Shen", "name_pt_PT": "Visão Infalível de Lei Shen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96189, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning-Imbued Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 271, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64361, "buy_price": 321808, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 5616, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lightning-Imbued Chalice", "name_ko_KR": "번개 깃든 성배", "name_fr_FR": "Calice imprégné de foudre", "name_de_DE": "Blitz-verzauberter Kelch", "name_zh_CN": "闪电圣杯", "name_es_ES": "Cáliz imbuido de relámpagos", "name_ru_RU": "Заряженный молнией кубок", "name_it_IT": "Calice Infuso di Fulmini", "name_pt_PT": "Cálice Imbuído em Relâmpago", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96369, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Soul Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 273, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Soul Charm", "name_ko_KR": "레나타키의 영혼 부적", "name_fr_FR": "Charme d'âme de Renataki", "name_de_DE": "Renatakis Seelentalisman", "name_zh_CN": "雷纳塔基的灵魂符咒", "name_es_ES": "Talismán de alma de Renataki", "name_ru_RU": "Оберег души Ренатаки", "name_it_IT": "Ammalianime di Renataki", "name_pt_PT": "Patuá de Renataki", "on_use": false, "id_encounter": 827, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96385, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horridon's Last Gasp", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 268, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horridon's Last Gasp", "name_ko_KR": "호리돈의 마지막 들숨", "name_fr_FR": "Dernier souffle d'Horridon", "name_de_DE": "Horridons letzter Atemzug", "name_zh_CN": "赫利东的垂死之息", "name_es_ES": "Último aliento de Horridonte", "name_ru_RU": "Последний вздох Хорридона", "name_it_IT": "Ultimo Respiro di Horridon", "name_pt_PT": "Último Suspiro de Horridon", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96398, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Zandalar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 276, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Zandalar", "name_ko_KR": "잔달라의 불꽃", "name_fr_FR": "Etincelle de Zandalar", "name_de_DE": "Funken von Zandalar", "name_zh_CN": "赞达拉之火", "name_es_ES": "Chispa de Zandalar", "name_ru_RU": "Искра Зандалара", "name_it_IT": "Monile della Scintilla di Zandalar", "name_pt_PT": "Centelha de Zandalar", "on_use": false, "id_encounter": 819, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96409, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bad Juju", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 261, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bad Juju", "name_ko_KR": "나쁜 부적", "name_fr_FR": "Mauvais juju", "name_de_DE": "Finsteres Juju", "name_zh_CN": "邪恶魂能", "name_es_ES": "Mal yuyu", "name_ru_RU": "Зловещее джуджу", "name_it_IT": "Juju Cattivo", "name_pt_PT": "Juju do Mal", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Final Choice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 280, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Final Choice", "name_ko_KR": "우슐레이의 마지막 선택", "name_fr_FR": "Ultime choix de Wushoolay", "name_de_DE": "Wushoolays letzte Wahl", "name_zh_CN": "乌苏雷的最终抉择", "name_es_ES": "Decisión final de Wushoolay", "name_ru_RU": "Последний выбор Вушулая", "name_it_IT": "Scelta Finale di Wushoolay", "name_pt_PT": "Última Escolha de Vuxulai", "on_use": false, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96421, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fortitude of the Zandalari", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 266, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fortitude of the Zandalari", "name_ko_KR": "잔달라의 인내", "name_fr_FR": "Endurance des Zandalari", "name_de_DE": "Kraft der Zandalari", "name_zh_CN": "赞达拉之韧", "name_es_ES": "Entereza de los Zandalari", "name_ru_RU": "Стойкость зандаларов", "name_it_IT": "Vigore degli Zandalari", "name_pt_PT": "Fortitude dos Zandalari", "on_use": true, "id_encounter": 816, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96455, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Hydra", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 262, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Breath of the Hydra", "name_ko_KR": "히드라의 숨결", "name_fr_FR": "Souffle de l'hydre", "name_de_DE": "Odem der Hydra", "name_zh_CN": "九头蛇之息", "name_es_ES": "Aliento de la hidra", "name_ru_RU": "Дыхание гидры", "name_it_IT": "Soffio dell'Idra", "name_pt_PT": "Sopro da Hidra", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96456, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscribed Bag of Hydra-Spawn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 269, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Inscribed Bag of Hydra-Spawn", "name_ko_KR": "히드라혈족의 문자가 새겨진 주머니", "name_fr_FR": "Sac gravé de rejeton d'hydre", "name_de_DE": "Verzierter Beutel mit Hydraeiern", "name_zh_CN": "九头蛇卵的铭文袋", "name_es_ES": "Bolsa de engendro de hidra con inscripciones", "name_ru_RU": "Покрытый письменами мешок порождений гидры", "name_it_IT": "Borsa Decorata della Prole dell'Idra", "name_pt_PT": "Bolsa de Ova de Hidra Inscrita", "on_use": false, "id_encounter": 821, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96470, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fabled Feather of Ji-Kun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 265, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fabled Feather of Ji-Kun", "name_ko_KR": "지쿤의 전설적인 깃털", "name_fr_FR": "Plume fabuleuse de Ji Kun", "name_de_DE": "Legendäre Feder von Ji-Kun", "name_zh_CN": "季鹍的传说之羽", "name_es_ES": "Pluma de fábula de Ji Kun", "name_ru_RU": "Легендарное перо Цзи-Кунь", "name_it_IT": "Piuma Leggendaria di Ji-Kun", "name_pt_PT": "Pena Fabulosa de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96471, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ji-Kun's Rising Winds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 270, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ji-Kun's Rising Winds", "name_ko_KR": "지쿤의 이는 바람", "name_fr_FR": "Levée du vent de Ji Kun", "name_de_DE": "Ji-Kuns Aufwind", "name_zh_CN": "季鹍的复苏之风", "name_es_ES": "Vientos crecientes de Ji Kun", "name_ru_RU": "Нарастающий ветер Цзи-Кунь", "name_it_IT": "Venti Crescenti di Ji-Kun", "name_pt_PT": "Vento Crescente de Ji-Kun", "on_use": false, "id_encounter": 828, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Bloodlust", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 278, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Bloodlust", "name_ko_KR": "피바람의 부적", "name_fr_FR": "Talisman de furie sanguinaire", "name_de_DE": "Talisman des Blutdurstes", "name_zh_CN": "杀戮护符", "name_es_ES": "Dije de Ansia de sangre", "name_ru_RU": "Талисман жажды крови", "name_it_IT": "Talismano della Brama di Sangue", "name_pt_PT": "Talismã da Sede de Sangue", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96501, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primordius' Talisman of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 272, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Primordius' Talisman of Rage", "name_ko_KR": "프리모디우스의 분노의 부적", "name_fr_FR": "Talisman de rage de Primordius", "name_de_DE": "Primordius' Talisman der Wut", "name_zh_CN": "普利莫修斯的狂怒护符", "name_es_ES": "Dije de ira de Primordius", "name_ru_RU": "Талисман ярости Изначалия", "name_it_IT": "Talismano della Rabbia di Primordius", "name_pt_PT": "Talismã da Ira de Primordius", "on_use": false, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Relic of Zuldazar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 277, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stolen Relic of Zuldazar", "name_ko_KR": "줄다자르의 도둑맞은 유물", "name_fr_FR": "Relique volée de Zuldazar", "name_de_DE": "Gestohlenes Relikt von Zuldazar", "name_zh_CN": "祖达萨的失窃遗物", "name_es_ES": "Reliquia robada de Zuldazar", "name_ru_RU": "Украденная реликвия Зулдазара", "name_it_IT": "Reliquia Rubata di Zuldazar", "name_pt_PT": "Relíquia Roubada de Zuldazar", "on_use": true, "id_encounter": 820, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cha-Ye's Essence of Brilliance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 263, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cha-Ye's Essence of Brilliance", "name_ko_KR": "차예의 총명함의 정수", "name_fr_FR": "Essence de brillance de Cha Ye", "name_de_DE": "Cha-Yes brillante Essenz", "name_zh_CN": "张叶的辉煌精华", "name_es_ES": "Esencia de resplandor de Cha Ye", "name_ru_RU": "Сущность гениальности Ча-Йе", "name_it_IT": "Essenza dell'Acume di Cha-Ye", "name_pt_PT": "Essência do Esplendor de Cha-Ye", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96523, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delicate Vial of the Sanguinaire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 264, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Delicate Vial of the Sanguinaire", "name_ko_KR": "핏덩이가 담긴 섬세한 유리병", "name_fr_FR": "Fiole délicate du sanguinaire", "name_de_DE": "Filigrane Phiole des Blutsaugers", "name_zh_CN": "嗜血者的精致小瓶", "name_es_ES": "Vial delicado del Sanguinario", "name_ru_RU": "Хрупкий фиал кровопролития", "name_it_IT": "Fiala del Sanguinario", "name_pt_PT": "Ampola Delicada do Sanguinário", "on_use": false, "id_encounter": 824, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96543, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gaze of the Twins", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 267, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073766416, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Gaze of the Twins", "name_ko_KR": "쌍둥이의 응시", "name_fr_FR": "Regard des concubines", "name_de_DE": "Blick der Zwillinge", "name_zh_CN": "双天的凝视", "name_es_ES": "Mirada de las Gemelas", "name_ru_RU": "Взгляд близнецов", "name_it_IT": "Sguardo delle Gemelle", "name_pt_PT": "Olhar das Gêmeas", "on_use": false, "id_encounter": 829, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96546, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Re-Origination", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 274, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Re-Origination", "name_ko_KR": "재창시의 룬", "name_fr_FR": "Rune de redistribution", "name_de_DE": "Rune der Neuerschaffung", "name_zh_CN": "重生符文", "name_es_ES": "Runa de reoriginación", "name_ru_RU": "Руна перераспределения", "name_it_IT": "Runa della Rioriginazione", "name_pt_PT": "Runa da Recriação", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96555, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Barrier", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 275, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soul Barrier", "name_ko_KR": "영혼 방벽", "name_fr_FR": "Barrière d'âme", "name_de_DE": "Seelenbarriere", "name_zh_CN": "灵魂壁障", "name_es_ES": "Barrera de alma", "name_ru_RU": "Призрачный барьер", "name_it_IT": "Barriera d'Anima", "name_pt_PT": "Barreira de Almas", "on_use": true, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96558, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unerring Vision of Lei Shen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 279, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Unerring Vision of Lei Shen", "name_ko_KR": "레이 션의 흔들림 없는 시선", "name_fr_FR": "Vision infaillible de Lei Shen", "name_de_DE": "Unfehlbarer Blick des Lei Shen", "name_zh_CN": "雷神的精准之视", "name_es_ES": "Visión infalible de Lei Shen", "name_ru_RU": "Отчетливое видение Лэй Шэня", "name_it_IT": "Visione Infallibile di Lei Shen", "name_pt_PT": "Visão Infalível de Lei Shen", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96561, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning-Imbued Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 271, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073766400, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lightning-Imbued Chalice", "name_ko_KR": "번개 깃든 성배", "name_fr_FR": "Calice imprégné de foudre", "name_de_DE": "Blitz-verzauberter Kelch", "name_zh_CN": "闪电圣杯", "name_es_ES": "Cáliz imbuido de relámpagos", "name_ru_RU": "Заряженный молнией кубок", "name_it_IT": "Calice Infuso di Fulmini", "name_pt_PT": "Cálice Imbuído em Relâmpago", "on_use": false, "id_encounter": 832, "id_journal_instance": 362, "id_map": 1098, "instance_type": 2}, {"id": 96741, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Renataki's Soul Charm", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 273, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74968, "buy_price": 374841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Renataki's Soul Charm", "name_ko_KR": "레나타키의 영혼 부적", "name_fr_FR": "Charme d'âme de Renataki", "name_de_DE": "Renatakis Seelentalisman", "name_zh_CN": "雷纳塔基的灵魂符咒", "name_es_ES": "Talismán de alma de Renataki", "name_ru_RU": "Оберег души Ренатаки", "name_it_IT": "Ammalianime di Renataki", "name_pt_PT": "Patuá de Renataki", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96757, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horridon's Last Gasp", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 268, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74402, "buy_price": 372013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Horridon's Last Gasp", "name_ko_KR": "호리돈의 마지막 들숨", "name_fr_FR": "Dernier souffle d'Horridon", "name_de_DE": "Horridons letzter Atemzug", "name_zh_CN": "赫利东的垂死之息", "name_es_ES": "Último aliento de Horridonte", "name_ru_RU": "Последний вздох Хорридона", "name_it_IT": "Ultimo Respiro di Horridon", "name_pt_PT": "Último Suspiro de Horridon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96770, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Zandalar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 276, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75251, "buy_price": 376255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Zandalar", "name_ko_KR": "잔달라의 불꽃", "name_fr_FR": "Etincelle de Zandalar", "name_de_DE": "Funken von Zandalar", "name_zh_CN": "赞达拉之火", "name_es_ES": "Chispa de Zandalar", "name_ru_RU": "Искра Зандалара", "name_it_IT": "Monile della Scintilla di Zandalar", "name_pt_PT": "Centelha de Zandalar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96781, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bad Juju", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 261, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74968, "buy_price": 374841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bad Juju", "name_ko_KR": "나쁜 부적", "name_fr_FR": "Mauvais juju", "name_de_DE": "Finsteres Juju", "name_zh_CN": "邪恶魂能", "name_es_ES": "Mal yuyu", "name_ru_RU": "Зловещее джуджу", "name_it_IT": "Juju Cattivo", "name_pt_PT": "Juju do Mal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96785, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wushoolay's Final Choice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 280, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795, "buy_price": 3977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Wushoolay's Final Choice", "name_ko_KR": "우슐레이의 마지막 선택", "name_fr_FR": "Ultime choix de Wushoolay", "name_de_DE": "Wushoolays letzte Wahl", "name_zh_CN": "乌苏雷的最终抉择", "name_es_ES": "Decisión final de Wushoolay", "name_ru_RU": "Последний выбор Вушулая", "name_it_IT": "Scelta Finale di Wushoolay", "name_pt_PT": "Última Escolha de Vuxulai", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96793, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fortitude of the Zandalari", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 266, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74127, "buy_price": 370637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fortitude of the Zandalari", "name_ko_KR": "잔달라의 인내", "name_fr_FR": "Endurance des Zandalari", "name_de_DE": "Kraft der Zandalari", "name_zh_CN": "赞达拉之韧", "name_es_ES": "Entereza de los Zandalari", "name_ru_RU": "Стойкость зандаларов", "name_it_IT": "Vigore degli Zandalari", "name_pt_PT": "Fortitude dos Zandalari", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96827, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Hydra", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 262, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795, "buy_price": 3977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Breath of the Hydra", "name_ko_KR": "히드라의 숨결", "name_fr_FR": "Souffle de l'hydre", "name_de_DE": "Odem der Hydra", "name_zh_CN": "九头蛇之息", "name_es_ES": "Aliento de la hidra", "name_ru_RU": "Дыхание гидры", "name_it_IT": "Soffio dell'Idra", "name_pt_PT": "Sopro da Hidra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96828, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscribed Bag of Hydra-Spawn", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 269, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74402, "buy_price": 372013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Inscribed Bag of Hydra-Spawn", "name_ko_KR": "히드라혈족의 문자가 새겨진 주머니", "name_fr_FR": "Sac gravé de rejeton d'hydre", "name_de_DE": "Verzierter Beutel mit Hydraeiern", "name_zh_CN": "九头蛇卵的铭文袋", "name_es_ES": "Bolsa de engendro de hidra con inscripciones", "name_ru_RU": "Покрытый письменами мешок порождений гидры", "name_it_IT": "Borsa Decorata della Prole dell'Idra", "name_pt_PT": "Bolsa de Ova de Hidra Inscrita", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96842, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fabled Feather of Ji-Kun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 265, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75251, "buy_price": 376255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fabled Feather of Ji-Kun", "name_ko_KR": "지쿤의 전설적인 깃털", "name_fr_FR": "Plume fabuleuse de Ji Kun", "name_de_DE": "Legendäre Feder von Ji-Kun", "name_zh_CN": "季鹍的传说之羽", "name_es_ES": "Pluma de fábula de Ji Kun", "name_ru_RU": "Легендарное перо Цзи-Кунь", "name_it_IT": "Piuma Leggendaria di Ji-Kun", "name_pt_PT": "Pena Fabulosa de Ji-Kun", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96843, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ji-Kun's Rising Winds", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 270, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74127, "buy_price": 370637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ji-Kun's Rising Winds", "name_ko_KR": "지쿤의 이는 바람", "name_fr_FR": "Levée du vent de Ji Kun", "name_de_DE": "Ji-Kuns Aufwind", "name_zh_CN": "季鹍的复苏之风", "name_es_ES": "Vientos crecientes de Ji Kun", "name_ru_RU": "Нарастающий ветер Цзи-Кунь", "name_it_IT": "Venti Crescenti di Ji-Kun", "name_pt_PT": "Vento Crescente de Ji-Kun", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96864, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of Bloodlust", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 278, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74968, "buy_price": 374841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of Bloodlust", "name_ko_KR": "피바람의 부적", "name_fr_FR": "Talisman de furie sanguinaire", "name_de_DE": "Talisman des Blutdurstes", "name_zh_CN": "杀戮护符", "name_es_ES": "Dije de Ansia de sangre", "name_ru_RU": "Талисман жажды крови", "name_it_IT": "Talismano della Brama di Sangue", "name_pt_PT": "Talismã da Sede de Sangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96873, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primordius' Talisman of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 272, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75251, "buy_price": 376255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Primordius' Talisman of Rage", "name_ko_KR": "프리모디우스의 분노의 부적", "name_fr_FR": "Talisman de rage de Primordius", "name_de_DE": "Primordius' Talisman der Wut", "name_zh_CN": "普利莫修斯的狂怒护符", "name_es_ES": "Dije de ira de Primordius", "name_ru_RU": "Талисман ярости Изначалия", "name_it_IT": "Talismano della Rabbia di Primordius", "name_pt_PT": "Talismã da Ira de Primordius", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Relic of Zuldazar", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 277, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74402, "buy_price": 372013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stolen Relic of Zuldazar", "name_ko_KR": "줄다자르의 도둑맞은 유물", "name_fr_FR": "Relique volée de Zuldazar", "name_de_DE": "Gestohlenes Relikt von Zuldazar", "name_zh_CN": "祖达萨的失窃遗物", "name_es_ES": "Reliquia robada de Zuldazar", "name_ru_RU": "Украденная реликвия Зулдазара", "name_it_IT": "Reliquia Rubata di Zuldazar", "name_pt_PT": "Relíquia Roubada de Zuldazar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96888, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cha-Ye's Essence of Brilliance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 263, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795, "buy_price": 3977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Cha-Ye's Essence of Brilliance", "name_ko_KR": "차예의 총명함의 정수", "name_fr_FR": "Essence de brillance de Cha Ye", "name_de_DE": "Cha-Yes brillante Essenz", "name_zh_CN": "张叶的辉煌精华", "name_es_ES": "Esencia de resplandor de Cha Ye", "name_ru_RU": "Сущность гениальности Ча-Йе", "name_it_IT": "Essenza dell'Acume di Cha-Ye", "name_pt_PT": "Essência do Esplendor de Cha-Ye", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96895, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delicate Vial of the Sanguinaire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 264, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74127, "buy_price": 370637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Delicate Vial of the Sanguinaire", "name_ko_KR": "핏덩이가 담긴 섬세한 유리병", "name_fr_FR": "Fiole délicate du sanguinaire", "name_de_DE": "Filigrane Phiole des Blutsaugers", "name_zh_CN": "嗜血者的精致小瓶", "name_es_ES": "Vial delicado del Sanguinario", "name_ru_RU": "Хрупкий фиал кровопролития", "name_it_IT": "Fiala del Sanguinario", "name_pt_PT": "Ampola Delicada do Sanguinário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96915, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gaze of the Twins", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 267, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75251, "buy_price": 376255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 1073750032, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Gaze of the Twins", "name_ko_KR": "쌍둥이의 응시", "name_fr_FR": "Regard des concubines", "name_de_DE": "Blick der Zwillinge", "name_zh_CN": "双天的凝视", "name_es_ES": "Mirada de las Gemelas", "name_ru_RU": "Взгляд близнецов", "name_it_IT": "Sguardo delle Gemelle", "name_pt_PT": "Olhar das Gêmeas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96918, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of Re-Origination", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 274, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74968, "buy_price": 374841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rune of Re-Origination", "name_ko_KR": "재창시의 룬", "name_fr_FR": "Rune de redistribution", "name_de_DE": "Rune der Neuerschaffung", "name_zh_CN": "重生符文", "name_es_ES": "Runa de reoriginación", "name_ru_RU": "Руна перераспределения", "name_it_IT": "Runa della Rioriginazione", "name_pt_PT": "Runa da Recriação", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96927, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Barrier", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 275, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74127, "buy_price": 370637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Soul Barrier", "name_ko_KR": "영혼 방벽", "name_fr_FR": "Barrière d'âme", "name_de_DE": "Seelenbarriere", "name_zh_CN": "灵魂壁障", "name_es_ES": "Barrera de alma", "name_ru_RU": "Призрачный барьер", "name_it_IT": "Barriera d'Anima", "name_pt_PT": "Barreira de Almas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96930, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unerring Vision of Lei Shen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 279, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795, "buy_price": 3977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Unerring Vision of Lei Shen", "name_ko_KR": "레이 션의 흔들림 없는 시선", "name_fr_FR": "Vision infaillible de Lei Shen", "name_de_DE": "Unfehlbarer Blick des Lei Shen", "name_zh_CN": "雷神的精准之视", "name_es_ES": "Visión infalible de Lei Shen", "name_ru_RU": "Отчетливое видение Лэй Шэня", "name_it_IT": "Visione Infallibile di Lei Shen", "name_pt_PT": "Visão Infalível de Lei Shen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 96933, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning-Imbued Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 271, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74402, "buy_price": 372013, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 4096, "flags_2": 1073750016, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 6360, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Lightning-Imbued Chalice", "name_ko_KR": "번개 깃든 성배", "name_fr_FR": "Calice imprégné de foudre", "name_de_DE": "Blitz-verzauberter Kelch", "name_zh_CN": "闪电圣杯", "name_es_ES": "Cáliz imbuido de relámpagos", "name_ru_RU": "Заряженный молнией кубок", "name_it_IT": "Calice Infuso di Fulmini", "name_pt_PT": "Cálice Imbuído em Relâmpago", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98755, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Badge of Conquest", "name_ko_KR": "제작된 극악무도한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Eroberungsabzeichen des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的征服徽章", "name_es_ES": "Distintivo de conquista artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный жетон завоевания злонравного гладиатора", "name_it_IT": "Distintivo della Conquista Artigianale del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Conquista Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98760, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Insignia of Conquest", "name_ko_KR": "제작된 극악무도한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Eroberungsinsigne des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的征服徽记", "name_es_ES": "Insignia de conquista artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный знак завоевания злонравного гладиатора", "name_it_IT": "Fregio della Conquista Artigianale del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Conquista Artesanal do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Emblem of Cruelty", "name_ko_KR": "제작된 극악무도한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Grausamkeitsemblem des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленная эмблема жестокости злонравного гладиатора", "name_it_IT": "Emblema dell'Atrocità Artigianale del Gladiatore Malevolo", "name_pt_PT": "Emblema da Crueldade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98812, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Emblem of Tenacity", "name_ko_KR": "제작된 극악무도한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Hartnäckigkeitsemblem des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленная эмблема упорства злонравного гладиатора", "name_it_IT": "Emblema della Tenacia Artigianale del Gladiatore Malevolo", "name_pt_PT": "Emblema da Tenacidade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98813, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Emblem of Meditation", "name_ko_KR": "제작된 극악무도한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Meditationsemblem des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的冥想纹章", "name_es_ES": "Emblema de meditación artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленная эмблема медитации злонравного гладиатора", "name_it_IT": "Emblema della Meditazione Artigianale del Gladiatore Malevolo", "name_pt_PT": "Emblema da Meditação Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98875, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "제작된 극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98876, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Cruelty", "name_ko_KR": "제작된 극악무도한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Grausamkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон жестокости злонравного гладиатора", "name_it_IT": "Medaglione dell'Atrocità Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Crueldade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98877, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "제작된 극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98878, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "제작된 극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98879, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "제작된 극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98880, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Meditation", "name_ko_KR": "제작된 극악무도한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Meditationsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的冥想勋章", "name_es_ES": "Medallón de meditación artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон медитации злонравного гладиатора", "name_it_IT": "Medaglione della Meditazione Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Meditação Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98910, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Badge of Dominance", "name_ko_KR": "제작된 극악무도한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Vorherrschaftsabzeichen des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный жетон господства злонравного гладиатора", "name_it_IT": "Distintivo della Dominazione Artigianale del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Dominância Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98911, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Insignia of Dominance", "name_ko_KR": "제작된 극악무도한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Vorherrschaftsinsigne des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的统御徽记", "name_es_ES": "Insignia de dominancia artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный знак господства злонравного гладиатора", "name_it_IT": "Fregio della Dominazione Artigianale del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Dominância Artesanal do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98912, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Badge of Victory", "name_ko_KR": "제작된 극악무도한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Siegesabzeichen des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный жетон победы злонравного гладиатора", "name_it_IT": "Distintivo della Vittoria Artigianale del Gladiatore Malevolo", "name_pt_PT": "Distintivo de Vitória Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 98917, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Insignia of Victory", "name_ko_KR": "제작된 극악무도한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Siegesinsigne des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的胜利徽记", "name_es_ES": "Insignia de victoria artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный знак победы злонравного гладиатора", "name_it_IT": "Fregio della Vittoria Artigianale del Gladiatore Malevolo", "name_pt_PT": "Insígnia de Vitória Artesanal do Gladiador Malévolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99772, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100043, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Conquest", "name_ko_KR": "압제적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador tiránico", "name_ru_RU": "Жетон завоевания деспотичного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Conquista do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99777, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100026, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Conquest", "name_ko_KR": "압제적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador tiránico", "name_ru_RU": "Знак завоевания деспотичного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Conquista do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99838, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100066, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador tiránico", "name_ru_RU": "Эмблема жестокости деспотичного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Emblema da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99839, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100092, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador tiránico", "name_ru_RU": "Эмблема упорства деспотичного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Emblema da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99840, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99990, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Meditation", "name_ko_KR": "압제적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador tiránico", "name_ru_RU": "Эмблема медитации деспотичного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Emblema da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99937, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100016, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Dominance", "name_ko_KR": "압제적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador tiránico", "name_ru_RU": "Жетон господства деспотичного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Dominância do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99938, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100152, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Dominance", "name_ko_KR": "압제적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador tiránico", "name_ru_RU": "Знак господства деспотичного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Dominância do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99943, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100019, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Victory", "name_ko_KR": "압제적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur tyrannique", "name_de_DE": "Siegesabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador tiránico", "name_ru_RU": "Жетон победы деспотичного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Vitória do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99948, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100085, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Victory", "name_ko_KR": "압제적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur tyrannique", "name_de_DE": "Siegesinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador tiránico", "name_ru_RU": "Знак победы деспотичного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Vitória do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 99990, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99840, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Meditation", "name_ko_KR": "압제적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador tiránico", "name_ru_RU": "Эмблема медитации деспотичного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Emblema da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100006, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100058, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Meditation", "name_ko_KR": "압제적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador tiránico", "name_ru_RU": "Медальон медитации деспотичного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100016, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99937, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Dominance", "name_ko_KR": "압제적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador tiránico", "name_ru_RU": "Жетон господства деспотичного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Dominância do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100019, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99943, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Victory", "name_ko_KR": "압제적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur tyrannique", "name_de_DE": "Siegesabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador tiránico", "name_ru_RU": "Жетон победы деспотичного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Vitória do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100026, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99777, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Conquest", "name_ko_KR": "압제적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador tiránico", "name_ru_RU": "Знак завоевания деспотичного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Conquista do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100031, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100057, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador tiránico", "name_ru_RU": "Медальон упорства деспотичного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100043, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99772, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Badge of Conquest", "name_ko_KR": "압제적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur tyrannique", "name_de_DE": "Eroberungsabzeichen des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador tiránico", "name_ru_RU": "Жетон завоевания деспотичного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Tirannico", "name_pt_PT": "Distintivo de Conquista do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100056, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100124, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador tiránico", "name_ru_RU": "Медальон жестокости деспотичного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100057, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100031, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador tiránico", "name_ru_RU": "Медальон упорства деспотичного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100058, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100006, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Meditation", "name_ko_KR": "압제적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur tyrannique", "name_de_DE": "Meditationsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador tiránico", "name_ru_RU": "Медальон медитации деспотичного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Meditação do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100066, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99838, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador tiránico", "name_ru_RU": "Эмблема жестокости деспотичного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Emblema da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100085, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99948, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Victory", "name_ko_KR": "압제적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur tyrannique", "name_de_DE": "Siegesinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador tiránico", "name_ru_RU": "Знак победы деспотичного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Vitória do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100092, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99839, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Emblem of Tenacity", "name_ko_KR": "압제적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur tyrannique", "name_de_DE": "Hartnäckigkeitsemblem des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador tiránico", "name_ru_RU": "Эмблема упорства деспотичного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Tirannico", "name_pt_PT": "Emblema da Tenacidade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100124, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100056, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Medallion of Cruelty", "name_ko_KR": "압제적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur tyrannique", "name_de_DE": "Grausamkeitsmedaillon des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador tiránico", "name_ru_RU": "Медальон жестокости деспотичного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Tirannico", "name_pt_PT": "Medalhão da Crueldade do Gladiador Tirano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100152, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrannical Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 99938, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Tyrannical Gladiator's Insignia of Dominance", "name_ko_KR": "압제적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur tyrannique", "name_de_DE": "Vorherrschaftsinsigne des tyrannischen Gladiators", "name_zh_CN": "暴虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador tiránico", "name_ru_RU": "Знак господства деспотичного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Tirannico", "name_pt_PT": "Insígnia de Dominância do Gladiador Tirano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100195, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100603, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur dramatique", "name_de_DE": "Eroberungsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador severo", "name_ru_RU": "Жетон завоевания бездушного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temibile", "name_pt_PT": "Distintivo de Conquista do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100200, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100586, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur dramatique", "name_de_DE": "Eroberungsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador severo", "name_ru_RU": "Знак завоевания бездушного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temibile", "name_pt_PT": "Insígnia de Conquista do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100305, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100626, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador severo", "name_ru_RU": "Эмблема жестокости бездушного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Emblema da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100306, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100652, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador severo", "name_ru_RU": "Эмблема упорства бездушного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temibile", "name_pt_PT": "Emblema da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100307, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100559, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur dramatique", "name_de_DE": "Meditationsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador severo", "name_ru_RU": "Эмблема медитации бездушного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temibile", "name_pt_PT": "Emblema da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100490, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100576, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur dramatique", "name_de_DE": "Vorherrschaftsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador severo", "name_ru_RU": "Жетон господства бездушного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temibile", "name_pt_PT": "Distintivo de Dominância do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100491, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100712, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur dramatique", "name_de_DE": "Vorherrschaftsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador severo", "name_ru_RU": "Знак господства бездушного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temibile", "name_pt_PT": "Insígnia de Dominância do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100500, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100579, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur dramatique", "name_de_DE": "Siegesabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador severo", "name_ru_RU": "Жетон победы бездушного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temibile", "name_pt_PT": "Distintivo de Vitória do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100505, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100645, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur dramatique", "name_de_DE": "Siegesinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador severo", "name_ru_RU": "Знак победы бездушного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temibile", "name_pt_PT": "Insígnia de Vitória do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100559, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100307, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur dramatique", "name_de_DE": "Meditationsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador severo", "name_ru_RU": "Эмблема медитации бездушного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temibile", "name_pt_PT": "Emblema da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100568, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100618, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur dramatique", "name_de_DE": "Meditationsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador severo", "name_ru_RU": "Медальон медитации бездушного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Temibile", "name_pt_PT": "Medalhão da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100576, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100490, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur dramatique", "name_de_DE": "Vorherrschaftsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador severo", "name_ru_RU": "Жетон господства бездушного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temibile", "name_pt_PT": "Distintivo de Dominância do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100579, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100500, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur dramatique", "name_de_DE": "Siegesabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador severo", "name_ru_RU": "Жетон победы бездушного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temibile", "name_pt_PT": "Distintivo de Vitória do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100586, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100200, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur dramatique", "name_de_DE": "Eroberungsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador severo", "name_ru_RU": "Знак завоевания бездушного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temibile", "name_pt_PT": "Insígnia de Conquista do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100591, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100617, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador severo", "name_ru_RU": "Медальон упорства бездушного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Temibile", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100603, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100195, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur dramatique", "name_de_DE": "Eroberungsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador severo", "name_ru_RU": "Жетон завоевания бездушного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temibile", "name_pt_PT": "Distintivo de Conquista do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100616, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100684, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador severo", "name_ru_RU": "Медальон жестокости бездушного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Medalhão da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100617, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100591, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador severo", "name_ru_RU": "Медальон упорства бездушного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Temibile", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100618, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100568, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur dramatique", "name_de_DE": "Meditationsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador severo", "name_ru_RU": "Медальон медитации бездушного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Temibile", "name_pt_PT": "Medalhão da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100626, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100305, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador severo", "name_ru_RU": "Эмблема жестокости бездушного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Emblema da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100645, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100505, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur dramatique", "name_de_DE": "Siegesinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador severo", "name_ru_RU": "Знак победы бездушного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temibile", "name_pt_PT": "Insígnia de Vitória do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100652, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100306, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador severo", "name_ru_RU": "Эмблема упорства бездушного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temibile", "name_pt_PT": "Emblema da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100684, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100616, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador severo", "name_ru_RU": "Медальон жестокости бездушного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Medalhão da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100712, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 100491, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur dramatique", "name_de_DE": "Vorherrschaftsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador severo", "name_ru_RU": "Знак господства бездушного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temibile", "name_pt_PT": "Insígnia de Dominância do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100951, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashfrozen Resin Globule", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9941999912261963, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 3, "name_en_US": "Flashfrozen Resin Globule", "name_ko_KR": "급속 냉동된 나뭇진 방울", "name_fr_FR": "Globule de résine surgelée", "name_de_DE": "Schockgefrorenes Harzkügelchen", "name_zh_CN": "闪冻松脂球", "name_es_ES": "Glóbulo de resina congelado rápidamente", "name_ru_RU": "Замороженная капля смолы", "name_it_IT": "Globulo di Linfa Congelato", "name_pt_PT": "Glóbulo de Resina Supercongelado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100963, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Ichorous Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024399995803833, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Ichorous Blood", "name_ko_KR": "끈끈한 피가 든 병", "name_fr_FR": "Fiole de sang ichoreux", "name_de_DE": "Phiole mit eitrigem Blut", "name_zh_CN": "腐败血瓶", "name_es_ES": "Vial de sangre icorosa", "name_ru_RU": "Сосуд с кровью и гноем", "name_it_IT": "Fiala di Sangue di Icore", "name_pt_PT": "Frasco de Sangue Icoroso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100990, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100991, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 100999, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101002, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Defensor de Pedra da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101009, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101012, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101038, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101054, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101057, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101069, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101072, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101087, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9955000281333923, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Defensor de Pedra do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101089, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101102, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101107, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101135, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d'âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101138, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d'âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101151, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d'âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101152, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d'âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Defensor de Pedra Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101168, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101171, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101179, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101183, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101200, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101203, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101217, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455000400543213, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101220, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101225, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101247, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101250, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0116000175476074, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101266, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0080000162124634, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101294, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4495, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9933000206947327, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101295, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9969000220298767, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 101306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9970999956130981, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Defensor de Pedra do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102293, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102294, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102295, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102296, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102297, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102298, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102299, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_ko_KR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_fr_FR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_de_DE": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_zh_CN": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_es_ES": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_ru_RU": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_it_IT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "name_pt_PT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102313, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_ko_KR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_fr_FR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_de_DE": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_zh_CN": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_es_ES": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_ru_RU": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_it_IT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "name_pt_PT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102314, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_ko_KR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_fr_FR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_de_DE": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_zh_CN": "临时物品", "name_es_ES": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Spirit Trinket (5)", "name_ru_RU": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_it_IT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "name_pt_PT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Versatility Trinket (5)", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_ko_KR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_fr_FR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_de_DE": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_zh_CN": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_es_ES": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_ru_RU": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_it_IT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "name_pt_PT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 2015, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_ko_KR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_fr_FR": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_de_DE": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_zh_CN": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_es_ES": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_ru_RU": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_it_IT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "name_pt_PT": "5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102480, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027400016784668, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1203, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Medallion", "name_ko_KR": "검투사의 메달", "name_fr_FR": "Médaillon de gladiateur", "name_de_DE": "Medaillon des Gladiators", "name_zh_CN": "角斗士的勋章", "name_es_ES": "Medallón de Gladiador", "name_ru_RU": "Медальон гладиатора", "name_it_IT": "Medaglione del Gladiatore", "name_pt_PT": "Medalhão do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102481, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031000018119812, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1203, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Emblem", "name_ko_KR": "검투사의 문장", "name_fr_FR": "Emblème de gladiateur", "name_de_DE": "Emblem des Gladiators", "name_zh_CN": "角斗士的纹章", "name_es_ES": "Emblema de Gladiador", "name_ru_RU": "Эмблема гладиатора", "name_it_IT": "Emblema del Gladiatore", "name_pt_PT": "Emblema do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102483, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crafted Malevolent Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384000539779663, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Crafted Malevolent Gladiator's Medallion of Tenacity", "name_ko_KR": "제작된 극악무도한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité artisanal du gladiateur malveillant", "name_de_DE": "Hergestelltes Hartnäckigkeitsmedaillon des bösartigen Gladiators", "name_zh_CN": "精制恶毒角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad artesanal de Gladiador malévolo", "name_ru_RU": "Искусно изготовленный медальон упорства злонравного гладиатора", "name_it_IT": "Medaglione della Tenacia Artigianale del Gladiatore Malevolo", "name_pt_PT": "Medalhão da Tenacidade Artesanal do Gladiador Malévolo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102616, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103409, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Meditation", "name_ko_KR": "자부심 가득한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur orgueilleux", "name_de_DE": "Meditationsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador orgulloso", "name_ru_RU": "Эмблема медитации гордого гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Meditação do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102625, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103532, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Meditation", "name_ko_KR": "자부심 가득한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur orgueilleux", "name_de_DE": "Meditationsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador orgulloso", "name_ru_RU": "Медальон медитации гордого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Meditação do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102633, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103505, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Dominance", "name_ko_KR": "자부심 가득한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur orgueilleux", "name_de_DE": "Vorherrschaftsabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador orgulloso", "name_ru_RU": "Жетон господства гордого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Dominância do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102636, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103511, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Victory", "name_ko_KR": "자부심 가득한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur orgueilleux", "name_de_DE": "Siegesabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador orgulloso", "name_ru_RU": "Жетон победы гордого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Vitória do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102643, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103347, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Conquest", "name_ko_KR": "자부심 가득한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur orgueilleux", "name_de_DE": "Eroberungsinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador orgulloso", "name_ru_RU": "Знак завоевания гордого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Conquista do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102659, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103342, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Conquest", "name_ko_KR": "자부심 가득한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur orgueilleux", "name_de_DE": "Eroberungsabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador orgulloso", "name_ru_RU": "Жетон завоевания гордого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Conquista do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102672, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103530, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Tenacity", "name_ko_KR": "자부심 가득한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur orgueilleux", "name_de_DE": "Hartnäckigkeitsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador orgulloso", "name_ru_RU": "Медальон упорства гордого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102680, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103407, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Cruelty", "name_ko_KR": "자부심 가득한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur orgueilleux", "name_de_DE": "Grausamkeitsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador orgulloso", "name_ru_RU": "Эмблема жестокости гордого гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102699, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103516, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Victory", "name_ko_KR": "자부심 가득한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur orgueilleux", "name_de_DE": "Siegesinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador orgulloso", "name_ru_RU": "Знак победы гордого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Vitória do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102706, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103408, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Tenacity", "name_ko_KR": "자부심 가득한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur orgueilleux", "name_de_DE": "Hartnäckigkeitsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador orgulloso", "name_ru_RU": "Эмблема упорства гордого гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102738, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103531, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Cruelty", "name_ko_KR": "자부심 가득한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur orgueilleux", "name_de_DE": "Grausamkeitsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador orgulloso", "name_ru_RU": "Медальон жестокости гордого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Crueldade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102766, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103506, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Dominance", "name_ko_KR": "자부심 가득한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur orgueilleux", "name_de_DE": "Vorherrschaftsinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador orgulloso", "name_ru_RU": "Знак господства гордого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Dominância do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102813, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103212, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur dramatique", "name_de_DE": "Meditationsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador severo", "name_ru_RU": "Эмблема медитации бездушного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temibile", "name_pt_PT": "Emblema da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102822, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103335, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur dramatique", "name_de_DE": "Meditationsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador severo", "name_ru_RU": "Медальон медитации бездушного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Temibile", "name_pt_PT": "Medalhão da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102830, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103308, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur dramatique", "name_de_DE": "Vorherrschaftsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador severo", "name_ru_RU": "Жетон господства бездушного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temibile", "name_pt_PT": "Distintivo de Dominância do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102833, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103314, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur dramatique", "name_de_DE": "Siegesabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador severo", "name_ru_RU": "Жетон победы бездушного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temibile", "name_pt_PT": "Distintivo de Vitória do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102840, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103150, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur dramatique", "name_de_DE": "Eroberungsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador severo", "name_ru_RU": "Знак завоевания бездушного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temibile", "name_pt_PT": "Insígnia de Conquista do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102856, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103145, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur dramatique", "name_de_DE": "Eroberungsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador severo", "name_ru_RU": "Жетон завоевания бездушного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temibile", "name_pt_PT": "Distintivo de Conquista do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102869, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103333, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador severo", "name_ru_RU": "Медальон упорства бездушного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Temibile", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102877, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103210, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador severo", "name_ru_RU": "Эмблема жестокости бездушного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Emblema da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102896, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103319, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur dramatique", "name_de_DE": "Siegesinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador severo", "name_ru_RU": "Знак победы бездушного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temibile", "name_pt_PT": "Insígnia de Vitória do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102903, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103211, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador severo", "name_ru_RU": "Эмблема упорства бездушного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temibile", "name_pt_PT": "Emblema da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102935, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103334, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador severo", "name_ru_RU": "Медальон жестокости бездушного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Medalhão da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 102963, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 103309, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur dramatique", "name_de_DE": "Vorherrschaftsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador severo", "name_ru_RU": "Знак господства бездушного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temibile", "name_pt_PT": "Insígnia de Dominância do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103145, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102856, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur dramatique", "name_de_DE": "Eroberungsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador severo", "name_ru_RU": "Жетон завоевания бездушного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temibile", "name_pt_PT": "Distintivo de Conquista do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103150, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102840, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Conquest", "name_ko_KR": "고통을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur dramatique", "name_de_DE": "Eroberungsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador severo", "name_ru_RU": "Знак завоевания бездушного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temibile", "name_pt_PT": "Insígnia de Conquista do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103210, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102877, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador severo", "name_ru_RU": "Эмблема жестокости бездушного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Emblema da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103211, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102903, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador severo", "name_ru_RU": "Эмблема упорства бездушного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temibile", "name_pt_PT": "Emblema da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103212, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102813, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Emblem of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur dramatique", "name_de_DE": "Meditationsemblem des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador severo", "name_ru_RU": "Эмблема медитации бездушного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temibile", "name_pt_PT": "Emblema da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103308, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102830, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur dramatique", "name_de_DE": "Vorherrschaftsabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador severo", "name_ru_RU": "Жетон господства бездушного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temibile", "name_pt_PT": "Distintivo de Dominância do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103309, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102963, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Dominance", "name_ko_KR": "고통을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur dramatique", "name_de_DE": "Vorherrschaftsinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador severo", "name_ru_RU": "Знак господства бездушного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temibile", "name_pt_PT": "Insígnia de Dominância do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103314, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102833, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Badge of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur dramatique", "name_de_DE": "Siegesabzeichen des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador severo", "name_ru_RU": "Жетон победы бездушного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temibile", "name_pt_PT": "Distintivo de Vitória do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103319, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102896, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Insignia of Victory", "name_ko_KR": "고통을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur dramatique", "name_de_DE": "Siegesinsigne des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador severo", "name_ru_RU": "Знак победы бездушного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temibile", "name_pt_PT": "Insígnia de Vitória do Gladiador Atroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103333, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102869, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Tenacity", "name_ko_KR": "고통을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur dramatique", "name_de_DE": "Hartnäckigkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador severo", "name_ru_RU": "Медальон упорства бездушного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Temibile", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103334, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102935, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Cruelty", "name_ko_KR": "고통을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur dramatique", "name_de_DE": "Grausamkeitsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador severo", "name_ru_RU": "Медальон жестокости бездушного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Temibile", "name_pt_PT": "Medalhão da Crueldade do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103335, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grievous Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102822, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Grievous Gladiator's Medallion of Meditation", "name_ko_KR": "고통을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur dramatique", "name_de_DE": "Meditationsmedaillon des erbitterten Gladiators", "name_zh_CN": "恶孽角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador severo", "name_ru_RU": "Медальон медитации бездушного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Temibile", "name_pt_PT": "Medalhão da Meditação do Gladiador Atroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103342, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9745000004768372, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102659, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Conquest", "name_ko_KR": "자부심 가득한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur orgueilleux", "name_de_DE": "Eroberungsabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador orgulloso", "name_ru_RU": "Жетон завоевания гордого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Conquista do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103347, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Conquest", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102643, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Conquest", "name_ko_KR": "자부심 가득한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur orgueilleux", "name_de_DE": "Eroberungsinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador orgulloso", "name_ru_RU": "Знак завоевания гордого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Conquista do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103407, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102680, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Cruelty", "name_ko_KR": "자부심 가득한 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur orgueilleux", "name_de_DE": "Grausamkeitsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador orgulloso", "name_ru_RU": "Эмблема жестокости гордого гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103408, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102706, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Tenacity", "name_ko_KR": "자부심 가득한 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur orgueilleux", "name_de_DE": "Hartnäckigkeitsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador orgulloso", "name_ru_RU": "Эмблема упорства гордого гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103409, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Emblem of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102616, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Emblem of Meditation", "name_ko_KR": "자부심 가득한 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur orgueilleux", "name_de_DE": "Meditationsemblem des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador orgulloso", "name_ru_RU": "Эмблема медитации гордого гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Orgoglioso", "name_pt_PT": "Emblema da Meditação do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103505, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102633, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Dominance", "name_ko_KR": "자부심 가득한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur orgueilleux", "name_de_DE": "Vorherrschaftsabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador orgulloso", "name_ru_RU": "Жетон господства гордого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Dominância do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103506, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Dominance", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102766, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Dominance", "name_ko_KR": "자부심 가득한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur orgueilleux", "name_de_DE": "Vorherrschaftsinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador orgulloso", "name_ru_RU": "Знак господства гордого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Dominância do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103511, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Badge of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9818999767303467, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102636, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Badge of Victory", "name_ko_KR": "자부심 가득한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur orgueilleux", "name_de_DE": "Siegesabzeichen des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador orgulloso", "name_ru_RU": "Жетон победы гордого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Orgoglioso", "name_pt_PT": "Distintivo de Vitória do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103516, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Insignia of Victory", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102699, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Insignia of Victory", "name_ko_KR": "자부심 가득한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur orgueilleux", "name_de_DE": "Siegesinsigne des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador orgulloso", "name_ru_RU": "Знак победы гордого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Orgoglioso", "name_pt_PT": "Insígnia de Vitória do Gladiador Orgulhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103530, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Tenacity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102672, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Tenacity", "name_ko_KR": "자부심 가득한 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur orgueilleux", "name_de_DE": "Hartnäckigkeitsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador orgulloso", "name_ru_RU": "Медальон упорства гордого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103531, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Cruelty", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102738, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Cruelty", "name_ko_KR": "자부심 가득한 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur orgueilleux", "name_de_DE": "Grausamkeitsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador orgulloso", "name_ru_RU": "Медальон жестокости гордого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Crueldade do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103532, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prideful Gladiator's Medallion of Meditation", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 528384, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 102625, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 10126, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prideful Gladiator's Medallion of Meditation", "name_ko_KR": "자부심 가득한 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur orgueilleux", "name_de_DE": "Meditationsmedaillon des stolzen Gladiators", "name_zh_CN": "骄矜角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador orgulloso", "name_ru_RU": "Медальон медитации гордого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Orgoglioso", "name_pt_PT": "Medalhão da Meditação do Gladiador Orgulhoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103639, "race_mask": 18446744073709551615, "desc": "An unusual substance only found in the great pyres of the Ordon.", "pad2": "", "pad1": "", "pad0": "", "name": "Pouch of White Ash", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9866999983787537, "flags_1": 67670016, "flags_2": 90112, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Pouch of White Ash", "name_ko_KR": "하얀 재 주머니", "name_fr_FR": "Bourse de cendres blanches", "name_de_DE": "Beutel mit weißer Asche", "name_zh_CN": "一袋白灰", "name_es_ES": "Faltriquera de ceniza blanca", "name_ru_RU": "Мешочек белого пепла", "name_it_IT": "Sacchettino di Cenere Bianca", "name_pt_PT": "Bolsa de Cinzas Brancas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103678, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time-Lost Artifact", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.982699990272522, "flags_1": 37056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1492, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Time-Lost Artifact", "name_ko_KR": "잃어버린 시간의 유물", "name_fr_FR": "Artéfact perdu dans le temps", "name_de_DE": "Zeitverlorenes Artefakt", "name_zh_CN": "迷时神器", "name_es_ES": "Artefacto perdido en el tiempo", "name_ru_RU": "Затерянный во времени артефакт", "name_it_IT": "Manufatto Senza Tempo", "name_pt_PT": "Artefato Perdido no Tempo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103686, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Discipline of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 295, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Discipline of Xuen", "name_ko_KR": "쉬엔의 수양", "name_fr_FR": "Discipline de Xuen", "name_de_DE": "Xuens Disziplin", "name_zh_CN": "雪怒之律", "name_es_ES": "Disciplina de Xuen", "name_ru_RU": "Выдержка Сюэня", "name_it_IT": "Disciplina di Xuen", "name_pt_PT": "Disciplina de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103687, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Yu'lon's Bite", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 296, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Yu'lon's Bite", "name_ko_KR": "위론의 이빨", "name_fr_FR": "Morsure de Yu'lon", "name_de_DE": "Yu'lons Biss", "name_zh_CN": "玉珑之噬", "name_es_ES": "Mordisco de Yu'lon", "name_ru_RU": "Укус Юй-лун", "name_it_IT": "Morso di Yu'lon", "name_pt_PT": "Mordida de Yulon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103688, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Contemplation of Chi-Ji", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 297, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Contemplation of Chi-Ji", "name_ko_KR": "츠지의 사색", "name_fr_FR": "Contemplation de Chi Ji", "name_de_DE": "Chi-Jis Nachsinnen", "name_zh_CN": "赤精之祈", "name_es_ES": "Reflexión de Chi-Ji", "name_ru_RU": "Размышления Чи-Цзи", "name_it_IT": "Contemplazione di Chi-Ji", "name_pt_PT": "Contemplação de Chi-Ji", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alacrity of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 298, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Alacrity of Xuen", "name_ko_KR": "쉬엔의 날렵함", "name_fr_FR": "Empressement de Xuen", "name_de_DE": "Xuens Tatkraft", "name_zh_CN": "雪怒之捷", "name_es_ES": "Prontitud de Xuen", "name_ru_RU": "Проворство Сюэня", "name_it_IT": "Alacrità di Xuen", "name_pt_PT": "Diligência de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103690, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resolve of Niuzao", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 299, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Resolve of Niuzao", "name_ko_KR": "니우짜오의 결의", "name_fr_FR": "Résolution de Niuzao", "name_de_DE": "Niuzaos Entschlossenheit", "name_zh_CN": "砮皂之毅", "name_es_ES": "Resolución de Niuzao", "name_ru_RU": "Решимость Нюцзао", "name_it_IT": "Risolutezza di Niuzao", "name_pt_PT": "Resolução de Niuzao", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103986, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Discipline of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 295, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11080, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Discipline of Xuen", "name_ko_KR": "쉬엔의 수양", "name_fr_FR": "Discipline de Xuen", "name_de_DE": "Xuens Disziplin", "name_zh_CN": "雪怒之律", "name_es_ES": "Disciplina de Xuen", "name_ru_RU": "Выдержка Сюэня", "name_it_IT": "Disciplina di Xuen", "name_pt_PT": "Disciplina de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103987, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Yu'lon's Bite", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 296, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11080, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Yu'lon's Bite", "name_ko_KR": "위론의 이빨", "name_fr_FR": "Morsure de Yu'lon", "name_de_DE": "Yu'lons Biss", "name_zh_CN": "玉珑之噬", "name_es_ES": "Mordisco de Yu'lon", "name_ru_RU": "Укус Юй-лун", "name_it_IT": "Morso di Yu'lon", "name_pt_PT": "Mordida de Yulon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103988, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Contemplation of Chi-Ji", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 297, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11080, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Contemplation of Chi-Ji", "name_ko_KR": "츠지의 사색", "name_fr_FR": "Contemplation de Chi Ji", "name_de_DE": "Chi-Jis Nachsinnen", "name_zh_CN": "赤精之祈", "name_es_ES": "Reflexión de Chi-Ji", "name_ru_RU": "Размышления Чи-Цзи", "name_it_IT": "Contemplazione di Chi-Ji", "name_pt_PT": "Contemplação de Chi-Ji", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103989, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alacrity of Xuen", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 298, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11080, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Alacrity of Xuen", "name_ko_KR": "쉬엔의 날렵함", "name_fr_FR": "Empressement de Xuen", "name_de_DE": "Xuens Tatkraft", "name_zh_CN": "雪怒之捷", "name_es_ES": "Prontitud de Xuen", "name_ru_RU": "Проворство Сюэня", "name_it_IT": "Alacrità di Xuen", "name_pt_PT": "Diligência de Xuen", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 103990, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resolve of Niuzao", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 299, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11080, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Resolve of Niuzao", "name_ko_KR": "니우짜오의 결의", "name_fr_FR": "Résolution de Niuzao", "name_de_DE": "Niuzaos Entschlossenheit", "name_zh_CN": "砮皂之毅", "name_es_ES": "Resolución de Niuzao", "name_ru_RU": "Решимость Нюцзао", "name_it_IT": "Risolutezza di Niuzao", "name_pt_PT": "Resolução de Niuzao", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104298, "race_mask": 18446744073709551615, "desc": "The Ordon ring these chimes before a sacrifice is made to Ordos.", "pad2": "", "pad1": "", "pad0": "", "name": "Ordon Death Chime", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904999732971191, "flags_1": 67665920, "flags_2": 90112, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ordon Death Chime", "name_ko_KR": "오르도 죽음 풍경", "name_fr_FR": "Carillon de la mort d'Ordos", "name_de_DE": "Totenglocke von Ordos", "name_zh_CN": "斡耳朵死亡之钟", "name_es_ES": "Campanilla de muerte Ordon", "name_ru_RU": "Ордосский смертный колокол", "name_it_IT": "Campana della Morte degli Ordon", "name_pt_PT": "Campainha da Morte de Ordon", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104313, "race_mask": 18446744073709551615, "desc": "The moss is flecked with gold and other precious minerals that have slowly built up over thousands of years in the damp caverns.", "pad2": "", "pad1": "", "pad0": "", "name": "Golden Moss", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 32768, "flags_2": 24640, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Golden Moss", "name_ko_KR": "황금 이끼", "name_fr_FR": "Mousse dorée", "name_de_DE": "Goldenes Moos", "name_zh_CN": "金苔藓", "name_es_ES": "Musgo de oro", "name_ru_RU": "Золотой мох", "name_it_IT": "Muschio Dorato", "name_pt_PT": "Musgo Dourado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104321, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Captain Zvezdan's Lost Leg", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0013999938964844, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Captain Zvezdan's Lost Leg", "name_ko_KR": "선장 즈베즈단의 잃어버린 다리", "name_fr_FR": "Jambe perdue du capitaine Zvezdan", "name_de_DE": "Kapitän Zvezdans verlorenes Bein", "name_zh_CN": "扎维兹坦船长遗失的小腿", "name_es_ES": "Pierna perdida del capitán Zvezdan", "name_ru_RU": "Утраченная нога капитана Звездана", "name_it_IT": "Gamba Perduta del Capitano Zvezdan", "name_pt_PT": "Perna Perdida do Capitão Zvezdan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104426, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104442, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104476, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104478, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104495, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104518, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104544, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104553, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104584, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104611, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104613, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104616, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104636, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104649, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104652, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13145, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104924, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104940, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104961, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104974, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104976, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 104993, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105029, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105051, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105070, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105074, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105082, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105109, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105111, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105114, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105134, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105147, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 1641, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105173, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105189, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105210, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105223, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105225, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105242, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105265, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105278, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105291, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105323, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105331, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105358, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105360, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105363, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105366, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105383, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105396, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105399, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 11179, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105422, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105438, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105459, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105472, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105474, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105491, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105540, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105549, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105568, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105607, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105609, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766416, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105612, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105615, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9733999967575073, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105632, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 105648, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253983, "buy_price": 1015935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 528384, "flags_2": 1073766400, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13188, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 106899, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frostwolf Veteran's Keepsake", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 49481, "buy_price": 247406, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9977999925613403, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Frostwolf Veteran's Keepsake", "name_ko_KR": "서리늑대 정예 용사의 유품", "name_fr_FR": "Souvenir du vétéran loup-de-givre", "name_de_DE": "Andenken eines Frostwolfveteranen", "name_zh_CN": "霜狼老兵的纪念品", "name_es_ES": "Recuerdo de veterano Lobo Gélido", "name_ru_RU": "Памятная вещица ветерана из клана Северного Волка", "name_it_IT": "Pegno del Veterano dei Lupi Bianchi", "name_pt_PT": "Lembrança do Lobo do Gelo Veterano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 107195, "race_mask": 18446744073709551615, "desc": "Warms your pocket. Burns your foes.", "pad2": "", "pad1": "", "pad0": "", "name": "Firefury Spirit", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 48945, "buy_price": 244728, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9869999885559082, "flags_1": 67633152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Firefury Spirit", "name_ko_KR": "화염격노 영혼", "name_fr_FR": "Esprit fureur-de-feu", "name_de_DE": "Feuerzorngeist", "name_zh_CN": "炎怒之灵", "name_es_ES": "Espíritu de furia ígnea", "name_ru_RU": "Дух Огненной Ярости", "name_it_IT": "Spirito di Fuocofuria", "name_pt_PT": "Espírito Furiachama", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 108902, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Armored Elekk Tusk", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574999809265137, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Armored Elekk Tusk", "name_ko_KR": "장갑 엘레크 엄니", "name_fr_FR": "Défense d'elekk cuirassé", "name_de_DE": "Gepanzerter Elekkstoßzahn", "name_zh_CN": "装甲雷象獠牙", "name_es_ES": "Colmillo de elekk acorazado", "name_ru_RU": "Бронированный бивень элекка", "name_it_IT": "Zanna di Elekk Corazzata", "name_pt_PT": "Presa de Elekk Blindado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 108903, "race_mask": 18446744073709551615, "desc": "A miniaturized version of an Iron Star, presented as tribute to the Shadowmoon Orc Clan.", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Iron Star", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 134955, "buy_price": 539821, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9611999988555908, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Tiny Iron Star", "name_ko_KR": "초소형 강철의 별", "name_fr_FR": "Minuscule étoile de Fer", "name_de_DE": "Winziger eiserner Stern", "name_zh_CN": "微型钢铁之星", "name_es_ES": "Pequeña estrella de hierro", "name_ru_RU": "Маленькая железная звезда", "name_it_IT": "Pirostella in Miniatura", "name_pt_PT": "Estrelinha de Ferro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 108907, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mushroom of Destiny", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 48395, "buy_price": 241976, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9758999943733215, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mushroom of Destiny", "name_ko_KR": "운명의 버섯", "name_fr_FR": "Champignon du destin", "name_de_DE": "Pilz der Verheißung", "name_zh_CN": "命运魔菇", "name_es_ES": "Champiñón del destino", "name_ru_RU": "Гриб судьбы", "name_it_IT": "Fungo del Destino", "name_pt_PT": "Cogumelo do Destino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 109262, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Draenic Philosopher's Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4459, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85105, "buy_price": 425528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9610000252723694, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2480, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Draenic Philosopher's Stone", "name_ko_KR": "드레나이 현자의 돌", "name_fr_FR": "Pierre philosophale draenique", "name_de_DE": "Draenischer Stein der Weisen", "name_zh_CN": "德拉诺点金石", "name_es_ES": "Piedra filosofal draénica", "name_ru_RU": "Дренорский философский камень", "name_it_IT": "Pietra Filosofale Draenoriana", "name_pt_PT": "Pedra Filosofal Draenoriana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 109995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood Seal of Azzakel", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35827, "buy_price": 179136, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9873999953269958, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Blood Seal of Azzakel", "name_ko_KR": "아자켈의 피의 인장", "name_fr_FR": "Sceau de sang d'Azzakel", "name_de_DE": "Azzakels Blutsiegel", "name_zh_CN": "阿扎凯尔的鲜血之印", "name_es_ES": "Sello de sangre de Azzakel", "name_ru_RU": "Кровавая печать Аззакеля", "name_it_IT": "Sigillo Insanguinato di Azzakel", "name_pt_PT": "Selo de Sangue de Azzakel", "on_use": false, "id_encounter": 1216, "id_journal_instance": 547, "id_map": 1182, "instance_type": 1}, {"id": 109996, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thundertower's Targeting Reticle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37590, "buy_price": 187953, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0360000133514404, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Thundertower's Targeting Reticle", "name_ko_KR": "썬더타워의 조준경", "name_fr_FR": "Réticule de visée de Tour-de-Tonnerre", "name_de_DE": "Donnerturms Fadenkreuz", "name_zh_CN": "雷塔的准心", "name_es_ES": "Retícula de objetivo de Torre del Trueno", "name_ru_RU": "Прицел Громовой Горы", "name_it_IT": "Reticolo di Puntamento di Torretonante", "name_pt_PT": "Retículo de Mira de Grantrovão", "on_use": false, "id_encounter": 1163, "id_journal_instance": 536, "id_map": 1208, "instance_type": 1}, {"id": 109997, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kihra's Adrenaline Injector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5213, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35021, "buy_price": 175108, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kihra's Adrenaline Injector", "name_ko_KR": "키라의 아드레날린 주입기", "name_fr_FR": "Injecteur d'adrénaline de Kihra", "name_de_DE": "Kihras Adrenalinspritze", "name_zh_CN": "琪拉的激素注射器", "name_es_ES": "Inyector de adrenalina de Kihra", "name_ru_RU": "Впрыскиватель адреналина Киры", "name_it_IT": "Iniettore d'Adrenalina di Kihra", "name_pt_PT": "Injetor de Adrenalina de Kihra", "on_use": true, "id_encounter": 1237, "id_journal_instance": 558, "id_map": 1195, "instance_type": 1}, {"id": 109998, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gor'ashan's Lodestone Spike", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35703, "buy_price": 178519, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Gor'ashan's Lodestone Spike", "name_ko_KR": "고라샨의 자철석 쐐기", "name_fr_FR": "Pointe en magnétite de Gor'ashan", "name_de_DE": "Gor'ashans Leitsteinsplitter", "name_zh_CN": "高尔山的磁石针", "name_es_ES": "Púa de magnetita de Gor'ashan", "name_ru_RU": "Железняковый шип Гор'ашана", "name_it_IT": "Spuntone di Magnetite di Gor'ashan", "name_pt_PT": "Espeto de Magnetita de Gor'ashan", "on_use": true, "id_encounter": 1226, "id_journal_instance": 559, "id_map": 1358, "instance_type": 1}, {"id": 109999, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Witherbark's Branch", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 839, "buy_price": 4197, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Witherbark's Branch", "name_ko_KR": "마른껍질의 가지", "name_fr_FR": "Branche de Fanécorce", "name_de_DE": "Bleichborkes Ast", "name_zh_CN": "枯木的树枝", "name_es_ES": "Rama de Cortezamustia", "name_ru_RU": "Ветвь Сухокожего", "name_it_IT": "Ramo di Scorzasecca", "name_pt_PT": "Ramo de Cascasseca", "on_use": true, "id_encounter": 1214, "id_journal_instance": 556, "id_map": 1279, "instance_type": 1}, {"id": 110000, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crushto's Runic Alarm", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 839, "buy_price": 4196, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.032099962234497, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Crushto's Runic Alarm", "name_ko_KR": "크러쉬토의 룬 경보기", "name_fr_FR": "Alarme runique de Crushto", "name_de_DE": "Crushtos Runenalarm", "name_zh_CN": "库鲁斯托的符文报警器", "name_es_ES": "Alarma rúnica de Crushto", "name_ru_RU": "Руна тревоги Крушто", "name_it_IT": "Allarme Runico di Schiant", "name_pt_PT": "Alarme Rúnico de Smagg", "on_use": false, "id_encounter": 888, "id_journal_instance": 385, "id_map": 1175, "instance_type": 1}, {"id": 110001, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tovra's Lightning Repository", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35424, "buy_price": 177122, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9763000011444092, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Tovra's Lightning Repository", "name_ko_KR": "토브라의 번개 축전기", "name_fr_FR": "Réceptacle à foudre de Tovra", "name_de_DE": "Tovras Blitzspeicher", "name_zh_CN": "托瓦拉的电容器", "name_es_ES": "Repositorio de rayos de Tovra", "name_ru_RU": "Накопитель молний Товры", "name_it_IT": "Vestibolo Fulminante di Tovra", "name_pt_PT": "Repositório de Raios de Tovra", "on_use": false, "id_encounter": 1133, "id_journal_instance": 536, "id_map": 1208, "instance_type": 1}, {"id": 110002, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fleshrender's Meathook", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5213, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 36244, "buy_price": 181222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fleshrender's Meathook", "name_ko_KR": "살점분리자의 고기 갈고리", "name_fr_FR": "Croc de boucher du tranchechair", "name_de_DE": "Fleischhaken des Fleischfetzers", "name_zh_CN": "血肉撕裂者的肉钩", "name_es_ES": "Gancho del sacrificador", "name_ru_RU": "Мясной крюк Раздирателя Плоти", "name_it_IT": "Gancio da Macellaio di Tranciacarne", "name_pt_PT": "Gancho do Rasga-carne", "on_use": true, "id_encounter": 1235, "id_journal_instance": 558, "id_map": 1195, "instance_type": 1}, {"id": 110003, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ragewing's Firefang", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 830, "buy_price": 4151, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0210000276565552, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ragewing's Firefang", "name_ko_KR": "격노날개의 불꽃송곳니", "name_fr_FR": "Croc de feu de Ragevolée", "name_de_DE": "Zornschwinges Flammenzahn", "name_zh_CN": "怒翼的火焰之牙", "name_es_ES": "Colmillo de fuego de Alaíra", "name_ru_RU": "Огнеклык Ярокрыла", "name_it_IT": "Zanna Infuocata di Alafolle", "name_pt_PT": "Garra de Fogo de Asafúria", "on_use": true, "id_encounter": 1229, "id_journal_instance": 559, "id_map": 1358, "instance_type": 1}, {"id": 110004, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coagulated Genesaur Blood", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 775, "buy_price": 3879, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Coagulated Genesaur Blood", "name_ko_KR": "응고된 제네사우루스 피", "name_fr_FR": "Sang de génésaure coagulé", "name_de_DE": "Geronnenes Genesaurierblut", "name_zh_CN": "凝固的原祖荆兽血", "name_es_ES": "Sangre de genosaurio coagulada", "name_ru_RU": "Свернувшаяся кровь генезотавра", "name_it_IT": "Sangue di Genesauro Coagulato", "name_pt_PT": "Sangue Coagulado de Genessauro", "on_use": false, "id_encounter": 1210, "id_journal_instance": 556, "id_map": 1279, "instance_type": 1}, {"id": 110005, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crystalline Blood Drop", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37986, "buy_price": 189930, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0469000339508057, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Crystalline Blood Drop", "name_ko_KR": "핏방울 결정", "name_fr_FR": "Goutte de sang cristallin", "name_de_DE": "Kristallisierter Bluttropfen", "name_zh_CN": "晶化血滴", "name_es_ES": "Gota de sangre cristalina", "name_ru_RU": "Кристаллическая капля крови", "name_it_IT": "Goccia di Sangue Cristallino", "name_pt_PT": "Gota Cristalina de Sangue ", "on_use": false, "id_encounter": 1225, "id_journal_instance": 547, "id_map": 1182, "instance_type": 1}, {"id": 110006, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rukhran's Quill", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 36378, "buy_price": 181893, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rukhran's Quill", "name_ko_KR": "루크란의 깃털", "name_fr_FR": "Plume de Rukhran", "name_de_DE": "Rukhrans Feder", "name_zh_CN": "鲁克兰的羽毛", "name_es_ES": "Pluma de Rukhran", "name_ru_RU": "Перо Рухрана", "name_it_IT": "Piuma di Rukhran", "name_pt_PT": "Pena de Rukhran", "on_use": false, "id_encounter": 967, "id_journal_instance": 476, "id_map": 1209, "instance_type": 1}, {"id": 110007, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Voidmender's Shadowgem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 791, "buy_price": 3956, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Voidmender's Shadowgem", "name_ko_KR": "공허치유사의 음영석", "name_fr_FR": "Oeil ténébreux de soigne-vide", "name_de_DE": "Schattenedelstein des Leerenheilers", "name_zh_CN": "虚空篡改者的暗影宝石", "name_es_ES": "Gema de las Sombras de ensalmador de Vacío", "name_ru_RU": "Камень теней исцелителя Бездны", "name_it_IT": "Gemma d'Ombra del Curavuoto", "name_pt_PT": "Tenebrita do Sana-caos", "on_use": true, "id_encounter": 1168, "id_journal_instance": 537, "id_map": 1176, "instance_type": 1}, {"id": 110008, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tharbek's Lucky Pebble", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 36516, "buy_price": 182583, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0063999891281128, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Tharbek's Lucky Pebble", "name_ko_KR": "탈베크의 행운의 조약돌", "name_fr_FR": "Caillou porte-bonheur de Tharbek", "name_de_DE": "Tharbeks Glückskiesel", "name_zh_CN": "萨贝克的幸运石", "name_es_ES": "Guijarro de la suerte de Tharbek", "name_ru_RU": "Счастливый камушек Тарбека", "name_it_IT": "Ciottolo Fortunato di Tharbek", "name_pt_PT": "Seixo da Sorte de Tharbek", "on_use": true, "id_encounter": 1228, "id_journal_instance": 559, "id_map": 1358, "instance_type": 1}, {"id": 110009, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leaf of the Ancient Protectors", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 836, "buy_price": 4180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Leaf of the Ancient Protectors", "name_ko_KR": "고대 수호자의 잎사귀", "name_fr_FR": "Feuille des anciens protecteurs", "name_de_DE": "Blatt des uralten Beschützers", "name_zh_CN": "古树卫士叶片", "name_es_ES": "Hoja de los ancianos protectores", "name_ru_RU": "Лист древних защитников", "name_it_IT": "Foglia dei Protettori Antichi", "name_pt_PT": "Folha dos Protetores Ancestrais", "on_use": true, "id_encounter": 1207, "id_journal_instance": 556, "id_map": 1279, "instance_type": 1}, {"id": 110010, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mote of Corruption", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37187, "buy_price": 185939, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mote of Corruption", "name_ko_KR": "타락의 티끌", "name_fr_FR": "Granule de corruption", "name_de_DE": "Partikel der Verderbnis", "name_zh_CN": "腐蚀微粒", "name_es_ES": "Mota de corrupción", "name_ru_RU": "Частица Скверны", "name_it_IT": "Granulo di Corruzione", "name_pt_PT": "Partícula de Corrupção", "on_use": false, "id_encounter": 1225, "id_journal_instance": 547, "id_map": 1182, "instance_type": 1}, {"id": 110011, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fires of the Sun", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 34749, "buy_price": 173747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fires of the Sun", "name_ko_KR": "태양의 불꽃", "name_fr_FR": "Feux du soleil", "name_de_DE": "Feuer der Sonne", "name_zh_CN": "骄阳烈火", "name_es_ES": "Fuegos del Sol", "name_ru_RU": "Пламя Солнца", "name_it_IT": "Fuochi del Sole", "name_pt_PT": "Chamas do Sol", "on_use": false, "id_encounter": 968, "id_journal_instance": 476, "id_map": 1209, "instance_type": 1}, {"id": 110012, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bonemaw's Big Toe", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 36233, "buy_price": 181168, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9986000061035156, "flags_1": 524288, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Bonemaw's Big Toe", "name_ko_KR": "해골아귀의 커다란 발가락", "name_fr_FR": "Gros orteil d'Ossegueule", "name_de_DE": "Knochenschlunds großer Zeh", "name_zh_CN": "骨喉的大脚趾", "name_es_ES": "Dedo gordo de Quijahueso", "name_ru_RU": "Отросток Костебрюха", "name_it_IT": "Alluce di Fauci d'Ossa", "name_pt_PT": "Dedão de Gorjóssea", "on_use": true, "id_encounter": 1140, "id_journal_instance": 537, "id_map": 1176, "instance_type": 1}, {"id": 110013, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emberscale Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37325, "buy_price": 186628, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0286999940872192, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Emberscale Talisman", "name_ko_KR": "잿불비늘 부적", "name_fr_FR": "Talisman écailles-de-braise", "name_de_DE": "Glutschuppentalisman", "name_zh_CN": "烬鳞护符", "name_es_ES": "Dije Escama de Ascuas", "name_ru_RU": "Талисман из чешуи пепельного дракона", "name_it_IT": "Talismano di Scagliardente", "name_pt_PT": "Talismã Escamabrasa", "on_use": true, "id_encounter": 1234, "id_journal_instance": 559, "id_map": 1358, "instance_type": 1}, {"id": 110014, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spores of Alacrity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 824, "buy_price": 4121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Spores of Alacrity", "name_ko_KR": "날렵함의 포자", "name_fr_FR": "Spores d'empressement", "name_de_DE": "Sporen des Eifers", "name_zh_CN": "轻盈孢子", "name_es_ES": "Esporas de prontitud", "name_ru_RU": "Споры рвения", "name_it_IT": "Spore dell'Alacrità", "name_pt_PT": "Esporos da Vivacidade", "on_use": true, "id_encounter": 1208, "id_journal_instance": 556, "id_map": 1279, "instance_type": 1}, {"id": 110015, "race_mask": 18446744073709551615, "desc": "A weak spirit succumbs, a powerful spirit conquers. Toria conquered.", "pad2": "", "pad1": "", "pad0": "", "name": "Toria's Unseeing Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37452, "buy_price": 187263, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0321999788284302, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Toria's Unseeing Eye", "name_ko_KR": "토리아의 보지 않는 눈", "name_fr_FR": "Oeil aveugle de Toria", "name_de_DE": "Torias blindes Auge", "name_zh_CN": "托利亚的迷茫之眼", "name_es_ES": "Ojo ciego de Toria", "name_ru_RU": "Незрячий глаз Тории", "name_it_IT": "Occhio Cieco di Toria", "name_pt_PT": "Olho Que Não Vê de Tória", "on_use": false, "id_encounter": 887, "id_journal_instance": 385, "id_map": 1175, "instance_type": 1}, {"id": 110016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solar Containment Unit", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 37184, "buy_price": 185921, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Solar Containment Unit", "name_ko_KR": "태양 구속 장치", "name_fr_FR": "Unité de confinement solaire", "name_de_DE": "Solareindämmungsgerät", "name_zh_CN": "阳光密封器", "name_es_ES": "Unidad de contención solar", "name_ru_RU": "Устройство сдерживания солнца", "name_it_IT": "Unità di Contenimento Solare", "name_pt_PT": "Unidade de Contenção Solar", "on_use": false, "id_encounter": 966, "id_journal_instance": 476, "id_map": 1209, "instance_type": 1}, {"id": 110017, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enforcer's Stun Grenade", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8665, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35424, "buy_price": 177122, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9763000011444092, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Enforcer's Stun Grenade", "name_ko_KR": "집행자의 섬광 수류탄", "name_fr_FR": "Grenade étourdissante de massacreur", "name_de_DE": "Blendgranate des Vollstreckers", "name_zh_CN": "执行者的眩晕手雷", "name_es_ES": "Granada aturdidora de déspota", "name_ru_RU": "Светошумовая граната головореза", "name_it_IT": "Granata a Stordimento dello Scagnozzo", "name_pt_PT": "Granada do Impositor", "on_use": true, "id_encounter": 1236, "id_journal_instance": 558, "id_map": 1195, "instance_type": 1}, {"id": 110018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kyrak's Vileblood Serum", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 34753, "buy_price": 173765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577999711036682, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kyrak's Vileblood Serum", "name_ko_KR": "카이락의 썩은피 약", "name_fr_FR": "Sérum de vilsang de Kyrak", "name_de_DE": "Kyraks Ekelblutserum", "name_zh_CN": "奇拉克的邪血药水", "name_es_ES": "Suero sangrevil de Kyrak", "name_ru_RU": "Сыворотка гнусной крови Кирака", "name_it_IT": "Siero di Vilsangue di Kyrak", "name_pt_PT": "Soro de Sangue Vil de Kyrak", "on_use": true, "id_encounter": 1227, "id_journal_instance": 559, "id_map": 1358, "instance_type": 1}, {"id": 110019, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Xeri'tac's Unhatched Egg Sac", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 809, "buy_price": 4046, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.995199978351593, "flags_1": 524288, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Xeri'tac's Unhatched Egg Sac", "name_ko_KR": "제리타크의 부화하지 않은 알 주머니", "name_fr_FR": "Cocon d'œufs non éclos de Xeri'tac", "name_de_DE": "Xeri'tacs unausgebrüteter Eiersack", "name_zh_CN": "艾里塔克未孵化的卵囊", "name_es_ES": "Saco de huevos sin abrir de Xeri'tac", "name_ru_RU": "Непроклюнувшиеся яйца Зери'так", "name_it_IT": "Sacco di Uova Non Covate di Xeri'tac", "name_pt_PT": "Bolsa de Ovos Intactos de Xeri'tac", "on_use": false, "id_encounter": 1209, "id_journal_instance": 556, "id_map": 1279, "instance_type": 1}, {"id": 111222, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 116142, "buy_price": 580714, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836000204086304, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115749, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Conquest", "name_ko_KR": "야성적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur primordial", "name_de_DE": "Eroberungsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador primigenio", "name_ru_RU": "Жетон завоевания необузданного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Conquista do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111223, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 116579, "buy_price": 582898, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115750, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Conquest", "name_ko_KR": "야성적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur primordial", "name_de_DE": "Eroberungsinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador primigenio", "name_ru_RU": "Знак завоевания необузданного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Conquista do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111224, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120133, "buy_price": 600669, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0174000263214111, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115751, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Cruelty", "name_ko_KR": "야성적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur primordial", "name_de_DE": "Grausamkeitsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador primigenio", "name_ru_RU": "Эмблема жестокости необузданного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Primordiale", "name_pt_PT": "Emblema da Crueldade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111225, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120570, "buy_price": 602854, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211000442504883, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115752, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Tenacity", "name_ko_KR": "야성적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur primordial", "name_de_DE": "Hartnäckigkeitsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador primigenio", "name_ru_RU": "Эмблема упорства необузданного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Primordiale", "name_pt_PT": "Emblema da Tenacidade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111226, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121007, "buy_price": 605038, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115753, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Meditation", "name_ko_KR": "야성적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur primordial", "name_de_DE": "Meditationsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador primigenio", "name_ru_RU": "Эмблема медитации необузданного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Primordiale", "name_pt_PT": "Emblema da Meditação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111227, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121444, "buy_price": 607223, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.028499960899353, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115754, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Dominance", "name_ko_KR": "야성적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur primordial", "name_de_DE": "Vorherrschaftsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador primigenio", "name_ru_RU": "Жетон господства необузданного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Dominância do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111228, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1119, "buy_price": 5595, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.032099962234497, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115755, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Dominance", "name_ko_KR": "야성적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur primordial", "name_de_DE": "Vorherrschaftsinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador primigenio", "name_ru_RU": "Знак господства необузданного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Dominância do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111229, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 122306, "buy_price": 611533, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0357999801635742, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115756, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Cruelty", "name_ko_KR": "야성적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur primordial", "name_de_DE": "Grausamkeitsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador orgulloso", "name_ru_RU": "Медальон жестокости необузданного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Crueldade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111230, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 122743, "buy_price": 613717, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0394999980926514, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115757, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Tenacity", "name_ko_KR": "야성적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur primordial", "name_de_DE": "Hartnäckigkeitsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador primigenio", "name_ru_RU": "Медальон упорства необузданного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111231, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 123168, "buy_price": 615843, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0430999994277954, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115758, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Meditation", "name_ko_KR": "야성적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur primordial", "name_de_DE": "Meditationsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador primigenio", "name_ru_RU": "Медальон медитации необузданного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Meditação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111232, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 123605, "buy_price": 618027, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0468000173568726, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115759, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Victory", "name_ko_KR": "야성적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur primordial", "name_de_DE": "Siegesabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador primigenio", "name_ru_RU": "Жетон победы необузданного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Vitória do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111233, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 112222, "buy_price": 561113, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9503999948501587, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115760, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Victory", "name_ko_KR": "야성적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur primordial", "name_de_DE": "Siegesinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador primigenio", "name_ru_RU": "Знак победы необузданного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Vitória do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111293, "race_mask": 18446744073709551615, "desc": "A silvery disc of bizarre metals.", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of Talador", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 518435, "buy_price": 2592179, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764999747276306, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 5, "socket_color_2": 5, "socket_color_3": 5, "sheath": 0, "material": 6, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Icon of Talador", "name_ko_KR": "탈라도르의 상징", "name_fr_FR": "Icône de Talador", "name_de_DE": "Ikone von Talador", "name_zh_CN": "塔拉多的模型", "name_es_ES": "Icono de Talador", "name_ru_RU": "Таладорский символ", "name_it_IT": "Icona di Talador", "name_pt_PT": "Ícone de Talador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111305, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Emblem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4, "buy_price": 23, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0470999479293823, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1231, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Emblem", "name_ko_KR": "검투사의 문장", "name_fr_FR": "Emblème de gladiateur", "name_de_DE": "Emblem des Gladiators", "name_zh_CN": "角斗士的纹章", "name_es_ES": "Emblema de Gladiador", "name_ru_RU": "Эмблема гладиатора", "name_it_IT": "Emblema del Gladiatore", "name_pt_PT": "Emblema do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111306, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Medallion", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 4, "buy_price": 21, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506999850273132, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1231, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Medallion", "name_ko_KR": "검투사의 메달", "name_fr_FR": "Médaillon de gladiateur", "name_de_DE": "Medaillon des Gladiators", "name_zh_CN": "角斗士的勋章", "name_es_ES": "Medallón de Gladiador", "name_ru_RU": "Медальон гладиатора", "name_it_IT": "Medaglione del Gladiatore", "name_pt_PT": "Medalhão do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111530, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Giantstalker's Guile", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 51742, "buy_price": 258713, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0434000492095947, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Giantstalker's Guile", "name_ko_KR": "거인추적자의 간계", "name_fr_FR": "Fourberie du traqueur de géants", "name_de_DE": "Arglist des Riesenjägers", "name_zh_CN": "巨人追猎者的诡诈", "name_es_ES": "Astucia de acechagigantes", "name_ru_RU": "Коварство истребителя великанов", "name_it_IT": "Ingegno del Predatore di Giganti", "name_pt_PT": "Logro do Espreita-gigantes", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111533, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrosive Tongue of Reeg'ak", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47324, "buy_price": 236620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Corrosive Tongue of Reeg'ak", "name_ko_KR": "리그아크의 부식성 혓바닥", "name_fr_FR": "Langue corrosive de Reeg'ak", "name_de_DE": "Reeg'aks ätzende Zunge", "name_zh_CN": "里戈艾克的腐蚀之舌", "name_es_ES": "Lengua corrosiva de Reeg'ak", "name_ru_RU": "Едкий язык Риг'ак", "name_it_IT": "Lingua Corrosiva di Reeg'ak", "name_pt_PT": "Língua Corrosiva de Reeg'ak", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111546, "race_mask": 18446744073709551615, "desc": "Wait a minute...", "pad2": "", "pad1": "", "pad0": "", "name": "Grondo's Eyepatch", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 51008, "buy_price": 255043, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113163, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Grondo's Eyepatch", "name_ko_KR": "그론도의 안대", "name_fr_FR": "Couvre-œil de Grondo", "name_de_DE": "Grondos Augenklappe", "name_zh_CN": "戈隆多的眼罩", "name_es_ES": "Parche de Grondo", "name_ru_RU": "Глазная повязка Грондо", "name_it_IT": "Benda per Occhio di Grondo", "name_pt_PT": "Tapa-olho de Grondo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111547, "race_mask": 18446744073709551615, "desc": "This appears to be an ordinary rock.", "pad2": "", "pad1": "", "pad0": "", "name": "Grondo's Spare Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 51192, "buy_price": 255961, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0322999954223633, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113159, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Grondo's Spare Eye", "name_ko_KR": "그론도의 여벌 눈", "name_fr_FR": "Œil de rechange de Grondo", "name_de_DE": "Grondos Ersatzauge", "name_zh_CN": "戈隆多的假眼", "name_es_ES": "Ojo de repuesto de Grondo", "name_ru_RU": "Запасной глаз Грондо", "name_it_IT": "Occhio di Riserva di Grondo", "name_pt_PT": "Olho Reserva de Grondo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111548, "race_mask": 18446744073709551615, "desc": "Has a single entry: 'Whatever Grondo Wants'", "pad2": "", "pad1": "", "pad0": "", "name": "Grondo's To-Do List", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 575, "buy_price": 2876, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0358999967575073, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113161, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Grondo's To-Do List", "name_ko_KR": "그론도의 할 일 목록", "name_fr_FR": "Choses que Grondo doit faire", "name_de_DE": "Grondos Aufgabenliste", "name_zh_CN": "戈隆多的计划表", "name_es_ES": "Lista de tareas de Grondo", "name_ru_RU": "Список дел Грондо", "name_it_IT": "Lista di Cose da Fare di Grondo", "name_pt_PT": "Lista de Afazeres de Grondo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111554, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rimefrost Fetish", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47502, "buy_price": 237513, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Rimefrost Fetish", "name_ko_KR": "서리얼음 우상", "name_fr_FR": "Fétiche recouvert de givre", "name_de_DE": "Raureiffetisch", "name_zh_CN": "白霜神像", "name_es_ES": "Fetiche Escarchalado", "name_ru_RU": "Фетиш морозного инея", "name_it_IT": "Feticci di Brina Gelata", "name_pt_PT": "Fetiche da Geada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 111948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gruuk's Evil Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47884, "buy_price": 239422, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Gruuk's Evil Eye", "name_ko_KR": "그루크의 악마눈", "name_fr_FR": "Mauvais œil de Gruuk", "name_de_DE": "Gruuks böser Blick", "name_zh_CN": "古鲁克的邪眼", "name_es_ES": "Ojo malvado de Gruuk", "name_ru_RU": "Дурной глаз Груука", "name_it_IT": "Occhio Maligno di Gruuk", "name_pt_PT": "Olho Malévolo de Gruuk", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112317, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Winged Hourglass", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4454, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0286999940872192, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Winged Hourglass", "name_ko_KR": "비행 모래시계", "name_fr_FR": "Sablier ailé", "name_de_DE": "Geflügeltes Stundenglas", "name_zh_CN": "羽翼沙漏", "name_es_ES": "Reloj de arena alado", "name_ru_RU": "Песочные часы с крыльями", "name_it_IT": "Clessidra Alata", "name_pt_PT": "Ampulheta Alada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skull of War", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6515, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0324000120162964, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skull of War", "name_ko_KR": "전쟁의 해골", "name_fr_FR": "Crâne de guerre", "name_de_DE": "Schädel des Krieges", "name_zh_CN": "战争之颅", "name_es_ES": "Cráneo de guerra", "name_ru_RU": "Череп войны", "name_it_IT": "Teschio della Guerra", "name_pt_PT": "Crânio da Guerra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Knight's Badge", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8757, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0361000299453735, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Knight's Badge", "name_ko_KR": "기사의 휘장", "name_fr_FR": "Ecusson de chevalier", "name_de_DE": "Ritterabzeichen", "name_zh_CN": "骑士徽章", "name_es_ES": "Insignia de caballero", "name_ru_RU": "Знак рыцаря", "name_it_IT": "Distintivo del Cavaliere", "name_pt_PT": "Distintivo do Cavaleiro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112320, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sandman's Pouch", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0397000312805176, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sandman's Pouch", "name_ko_KR": "잠귀신의 주머니", "name_fr_FR": "Bourse du marchand de sable", "name_de_DE": "Sandmannsbeutel", "name_zh_CN": "睡魔之袋", "name_es_ES": "Faltriquera de Sueño", "name_ru_RU": "Мешочек Песчаного человека", "name_it_IT": "Sacca dell'Uomo del Sonno", "name_pt_PT": "Bolsa de Morfeu", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112426, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Bindings of Immerseus", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 321, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 804, "buy_price": 4020, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Purified Bindings of Immerseus", "name_ko_KR": "잿빛너울의 정화된 구속끈", "name_fr_FR": "Liens purifiés d'Immerseus", "name_de_DE": "Geläuterte Bindungen von Immerseus", "name_zh_CN": "伊墨苏斯的净化之缚", "name_es_ES": "Ataduras purificadas de Immerseus", "name_ru_RU": "Очищенные путы Глубиния", "name_it_IT": "Nastri Purificati di Immerseus", "name_pt_PT": "Ataduras Purificadas de Immerseus", "on_use": false, "id_encounter": 852, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112476, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rook's Unlucky Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 324, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72644, "buy_price": 363222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9503999948501587, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Rook's Unlucky Talisman", "name_ko_KR": "루크의 불행 부적", "name_fr_FR": "Talisman malchanceux de Freux", "name_de_DE": "Rooks Pechbringer", "name_zh_CN": "鲁克的不幸护符", "name_es_ES": "Dije de desgracia de Rook", "name_ru_RU": "Несчастливый талисман Рука", "name_it_IT": "Talismano Sfortunato di Rook", "name_pt_PT": "Talismã Azarado de Rook", "on_use": true, "id_encounter": 849, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112503, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fusion-Fire Core", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 323, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76626, "buy_price": 383134, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Fusion-Fire Core", "name_ko_KR": "융합화염 핵", "name_fr_FR": "Noyau du feu de la fusion", "name_de_DE": "Fusionsfeuerkern", "name_zh_CN": "融火之核", "name_es_ES": "Núcleo ígneo de fusión", "name_ru_RU": "Источник плавкого пламени", "name_it_IT": "Nucleo di Fuoco Fuso", "name_pt_PT": "Núcleo do Fogo de Fusão", "on_use": false, "id_encounter": 866, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112703, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evil Eye of Galakras", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 326, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74952, "buy_price": 374764, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9805999994277954, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Evil Eye of Galakras", "name_ko_KR": "갈라크라스의 악마눈", "name_fr_FR": "Mauvais œil de Galakras", "name_de_DE": "Galakras' böser Blick", "name_zh_CN": "迦拉卡斯的邪恶之眼", "name_es_ES": "Ojo malvado de Galakras", "name_ru_RU": "Злобное око Галакраса", "name_it_IT": "Occhio Maligno di Galakras", "name_pt_PT": "Olho Malévolo de Galakras", "on_use": false, "id_encounter": 868, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112729, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Juggernaut's Focusing Crystal", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 325, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 722692, "buy_price": 3613460, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Juggernaut's Focusing Crystal", "name_ko_KR": "거대괴수의 집중 수정", "name_fr_FR": "Cristal de focalisation du mastodonte", "name_de_DE": "Fokussierkristall des eisernen Kolosses", "name_zh_CN": "战蝎的聚焦水晶", "name_es_ES": "Cristal de enfoque del gigante", "name_ru_RU": "Фокусирующий кристалл исполина", "name_it_IT": "Cristallo Focalizzante del Mastodonte", "name_pt_PT": "Cristal de Concentração do Jaganata", "on_use": false, "id_encounter": 864, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112754, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Haromm's Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 329, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80043, "buy_price": 400217, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0471999645233154, "flags_1": 528384, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Haromm's Talisman", "name_ko_KR": "하로옴의 부적", "name_fr_FR": "Talisman de Haromm", "name_de_DE": "Haromms Talisman", "name_zh_CN": "哈洛姆的护符", "name_es_ES": "Dije de Haromm", "name_ru_RU": "Талисман Харомма", "name_it_IT": "Talismano di Haromm", "name_pt_PT": "Talismã de Haromm", "on_use": false, "id_encounter": 856, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112768, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kardris' Toxic Totem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 328, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 834, "buy_price": 4172, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024999976158142, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Kardris' Toxic Totem", "name_ko_KR": "칼드리스의 독성 토템", "name_fr_FR": "Totem toxique de Kardris", "name_de_DE": "Kardris' toxisches Totem", "name_zh_CN": "卡德里斯的剧毒图腾", "name_es_ES": "Tótem tóxico de Kardris", "name_ru_RU": "Ядовитый тотем Кардрис", "name_it_IT": "Totem Tossico di Kardris", "name_pt_PT": "Totem Tóxico de Kardris", "on_use": false, "id_encounter": 856, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112778, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nazgrim's Burnished Insignia", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 322, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73508, "buy_price": 367541, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9617000222206116, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Nazgrim's Burnished Insignia", "name_ko_KR": "나즈그림의 빛나는 인장", "name_fr_FR": "Insigne bruni de Nazgrim", "name_de_DE": "Nazgrims glänzendes Insigne", "name_zh_CN": "纳兹戈林的抛光勋章", "name_es_ES": "Insignia bruñida de Nazgrim", "name_ru_RU": "Отполированный знак отличия Назгрима", "name_it_IT": "Insegna Brunita di Nazgrim", "name_pt_PT": "Insígnia Polida de Nazgrim", "on_use": false, "id_encounter": 850, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112792, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Living Corruption", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 334, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 79462, "buy_price": 397313, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0396000146865845, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Living Corruption", "name_ko_KR": "실체화된 타락의 약병", "name_fr_FR": "Fiole de corruption vivante", "name_de_DE": "Phiole der lebenden Verderbnis", "name_zh_CN": "活性腐蚀之瓶", "name_es_ES": "Vial de corrupción viviente", "name_ru_RU": "Фиал живой скверны", "name_it_IT": "Fiala di Corruzione Vivente", "name_pt_PT": "Frasco de Corrupção Viva", "on_use": false, "id_encounter": 846, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112815, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzied Crystal of Rage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 331, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795, "buy_price": 3976, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Frenzied Crystal of Rage", "name_ko_KR": "광적인 분노의 수정", "name_fr_FR": "Cristal de rage frénétique", "name_de_DE": "Kristall des aufbrausenden Zorns", "name_zh_CN": "狂怒水晶", "name_es_ES": "Cristal de ira demente", "name_ru_RU": "Разъяренный кристалл ярости", "name_it_IT": "Cristallo della Rabbia Furiosa", "name_pt_PT": "Cristal de Raiva Enfurecido", "on_use": false, "id_encounter": 846, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112825, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Rampage", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 330, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77475, "buy_price": 387376, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Rampage", "name_ko_KR": "광란의 인장", "name_fr_FR": "Cachet de massacre", "name_de_DE": "Siegel der Raserei", "name_zh_CN": "暴怒之印", "name_es_ES": "Sigilo de desenfreno", "name_ru_RU": "Печать буйства", "name_it_IT": "Sigillo della Furia", "name_pt_PT": "Signo da Desordem", "on_use": false, "id_encounter": 870, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Acid-Grooved Tooth", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 332, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72965, "buy_price": 364828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545999765396118, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Acid-Grooved Tooth", "name_ko_KR": "토크의 산성 이빨", "name_fr_FR": "Dent sillonnée d'acide de Thok", "name_de_DE": "Thoks säuregekerbter Zahn", "name_zh_CN": "索克的酸蚀之牙", "name_es_ES": "Diente con marcas de ácido de Thok", "name_ru_RU": "Изъеденный кислотой зуб Тока", "name_it_IT": "Dente Corroso di Thok", "name_pt_PT": "Dente Escavado com Ácido de Thok", "on_use": false, "id_encounter": 851, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112850, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thok's Tail Tip", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 333, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73248, "buy_price": 366242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958299994468689, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Thok's Tail Tip", "name_ko_KR": "토크의 꼬리 가시", "name_fr_FR": "Extrémité de la queue de Thok", "name_de_DE": "Thoks Schwanzspitze", "name_zh_CN": "索克的尾巴尖", "name_es_ES": "Punta de la cola de Thok", "name_ru_RU": "Кончик хвоста Тока", "name_it_IT": "Coda di Thok", "name_pt_PT": "Ponta da Cauda de Thok", "on_use": false, "id_encounter": 851, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112877, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dysmorphic Samophlange of Discontinuity", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 337, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75197, "buy_price": 375987, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9837999939918518, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Dysmorphic Samophlange of Discontinuity", "name_ko_KR": "이형의 불연속 사모플랜지", "name_fr_FR": "Samophlange dysmorphique de discontinuité", "name_de_DE": "Deformiertes Samophlang der Diskontinuität", "name_zh_CN": "间歇性变异平衡器", "name_es_ES": "Churumbele dismórfico de discontinuidad", "name_ru_RU": "Деформированный самофланж прерывистости", "name_it_IT": "Samoflago Dismorfico della Discontinuità", "name_pt_PT": "Rebimboca Dismorfa da Descontinuidade", "on_use": false, "id_encounter": 865, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Ebon Detonator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 339, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77788, "buy_price": 388943, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017699956893921, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ticking Ebon Detonator", "name_ko_KR": "재깍거리는 흑단 기폭장치", "name_fr_FR": "Détonateur en ébène tic-taquant", "name_de_DE": "Tickender schwarzer Detonator", "name_zh_CN": "滴答作响的黑色雷管", "name_es_ES": "Detonador de ébano que hace tic-tac", "name_ru_RU": "Тикающий черный детонатор", "name_it_IT": "Detonatore d'Ebano Scoppiettante", "name_pt_PT": "Detonador Tiquetaqueante de Ébano", "on_use": false, "id_encounter": 865, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112884, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of Kor'gall", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4867, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47452, "buy_price": 237261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9933000206947327, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Might of Kor'gall", "name_ko_KR": "코르갈의 힘", "name_fr_FR": "Puissance de Kor'gall", "name_de_DE": "Macht von Kor'gall", "name_zh_CN": "考戈尔的力量", "name_es_ES": "Poder de Kor'gall", "name_ru_RU": "Мощь Кор'галла", "name_it_IT": "Vigore di Kor'gall", "name_pt_PT": "Poder de Kor'gall", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112885, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Commander Gar's Iron Insignia", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4414, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66064, "buy_price": 330323, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9969000220298767, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Commander Gar's Iron Insignia", "name_ko_KR": "사령관 가르의 강철 계급장", "name_fr_FR": "Insigne de Fer du commandant Gar", "name_de_DE": "Kommandant Gars Eisernes Insigne", "name_zh_CN": "指挥官加尔的铁制玺戒", "name_es_ES": "Insignia de hierro del comandante Gar", "name_ru_RU": "Знак командира Гара", "name_it_IT": "Insegna di Ferro del Comandante Gar", "name_pt_PT": "Insígnia de Ferro do Comandante Gar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112886, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocity of Kor'gall", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4973, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 49946, "buy_price": 249730, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ferocity of Kor'gall", "name_ko_KR": "코르갈의 야성", "name_fr_FR": "Férocité de Kor'gall", "name_de_DE": "Wildheit von Kor'gall", "name_zh_CN": "考戈尔的凶猛", "name_es_ES": "Ferocidad de Kor'gall", "name_ru_RU": "Жестокость Кор'галла", "name_it_IT": "Ferocia di Kor'gall", "name_pt_PT": "Ferocidade de Kor'gall", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112887, "race_mask": 18446744073709551615, "desc": "A collection of loosely strung bones.", "pad2": "", "pad1": "", "pad0": "", "name": "Goc's Trophy", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5045, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69040, "buy_price": 345201, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0418000221252441, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Goc's Trophy", "name_ko_KR": "고크의 전리품", "name_fr_FR": "Trophée de Goc", "name_de_DE": "Gocs Trophäe", "name_zh_CN": "苟克的战利品", "name_es_ES": "Trofeo de Goc", "name_ru_RU": "Трофей Гока", "name_it_IT": "Trofeo di Goc", "name_pt_PT": "Troféu de Goc", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112888, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anger of Kor'gall", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8359, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 514, "buy_price": 2573, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0116000175476074, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Anger of Kor'gall", "name_ko_KR": "코르갈의 분노", "name_fr_FR": "Colère de Kor'gall", "name_de_DE": "Wut von Kor'gall", "name_zh_CN": "考戈尔的愤怒", "name_es_ES": "Inquina de Kor'gall", "name_ru_RU": "Ярость Кор'галла", "name_it_IT": "Rabbia di Kor'gall", "name_pt_PT": "Fúria de Kor'gall", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112889, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Genesaur's Greatness", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 677, "buy_price": 3386, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0080000162124634, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Genesaur's Greatness", "name_ko_KR": "제네사우루스의 위대함", "name_fr_FR": "Grandeur des génésaures", "name_de_DE": "Größe des Genesauriers", "name_zh_CN": "原祖荆兽的伟业", "name_es_ES": "Grandeza de genosaurio", "name_ru_RU": "Величие генезотавра", "name_it_IT": "Grandezza del Genesauro", "name_pt_PT": "Grandiosidade do Genessauro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 112913, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skeer's Bloodsoaked Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 336, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76084, "buy_price": 380420, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9954000115394592, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Skeer's Bloodsoaked Talisman", "name_ko_KR": "스키르의 피에 젖은 부적", "name_fr_FR": "Talisman imprégné de sang de Skeer", "name_de_DE": "Skeers blutgetränkter Talisman", "name_zh_CN": "斯基尔的沁血护符", "name_es_ES": "Dije empapado de sangre de Skeer", "name_ru_RU": "Окровавленный амулет Скира", "name_it_IT": "Talismano Insanguinato di Skeer", "name_pt_PT": "Talismã Ensanguentado de Skeer", "on_use": false, "id_encounter": 853, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112924, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Curse of Hubris", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 335, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 79172, "buy_price": 395861, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0357999801635742, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Curse of Hubris", "name_ko_KR": "자만심의 저주", "name_fr_FR": "Malédiction de fatuité", "name_de_DE": "Fluch der Hybris", "name_zh_CN": "狂妄之诅咒", "name_es_ES": "Maldición de soberbia", "name_ru_RU": "Проклятие высокомерия", "name_it_IT": "Maledizione della Superbia", "name_pt_PT": "Maldição da Arrogância", "on_use": true, "id_encounter": 869, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112938, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Black Blood of Y'Shaarj", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 338, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 825, "buy_price": 4126, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Black Blood of Y'Shaarj", "name_ko_KR": "이샤라즈의 검은 피", "name_fr_FR": "Sang noir d'Y'Shaarj", "name_de_DE": "Schwarzes Blut von Y'Shaarj", "name_zh_CN": "亚煞极的黑暗之血", "name_es_ES": "Sangre negra de Y'Shaarj", "name_ru_RU": "Черная кровь И'Шараджа", "name_it_IT": "Sangue Nero di Y'shaarj", "name_pt_PT": "Sangue Negro de Y'Shaarj", "on_use": false, "id_encounter": 869, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112947, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Assurance of Consequence", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 320, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74379, "buy_price": 371898, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 528384, "flags_2": 8208, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Assurance of Consequence", "name_ko_KR": "보장된 결과", "name_fr_FR": "Assurance de conséquence", "name_de_DE": "Garantierte Konsequenzen", "name_zh_CN": "既定之天命", "name_es_ES": "Garantía de consecuencias", "name_ru_RU": "Утверждение последствий", "name_it_IT": "Certezza del Destino", "name_pt_PT": "Certeza da Consequência", "on_use": false, "id_encounter": 867, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 112948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prismatic Prison of Pride", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 327, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74654, "buy_price": 373274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9767000079154968, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Prismatic Prison of Pride", "name_ko_KR": "교만의 오색 감옥", "name_fr_FR": "Prison d'orgueil prismatique", "name_de_DE": "Prismatisches Stolzgefängnis", "name_zh_CN": "傲慢之棱光囚笼", "name_es_ES": "Prisión prismática de orgullo", "name_ru_RU": "Призматическая тюрьма гордыни", "name_it_IT": "Prigione Prismatica dell'Orgoglio", "name_pt_PT": "Prisão Prismática do Orgulho", "on_use": false, "id_encounter": 867, "id_journal_instance": 369, "id_map": 1136, "instance_type": 2}, {"id": 113023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Foolproof Targeting Mechanism", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536, "buy_price": 2681, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Foolproof Targeting Mechanism", "name_ko_KR": "바보라도 쓸 수 있는 대상 지정 장치", "name_fr_FR": "Système de visée sécurisé", "name_de_DE": "Idiotensicherer Zielmechanismus", "name_zh_CN": "安全校准器", "name_es_ES": "Mecanismo de selección de objetivos a prueba de tontos", "name_ru_RU": "Механизм наведения с предохранителем", "name_it_IT": "Meccanismo di Mira Infallibile", "name_pt_PT": "Mecanismo de Mira Anti-idiota", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113024, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "\"Reliable\" Threat Assessor", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4383, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 54562, "buy_price": 272812, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879999756813049, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "\"Reliable\" Threat Assessor", "name_ko_KR": "\"정확한\" 위협 평가기", "name_fr_FR": "Evaluateur de danger « fiable »", "name_de_DE": "\"Zuverlässiger\" Bedrohungsmesser", "name_zh_CN": "“可靠”威胁评估器", "name_es_ES": "Evaluador de amenaza \"fiable\"", "name_ru_RU": "\"Надежный\" измеритель угрозы", "name_it_IT": "Valutatore di Minaccia \"Affidabile\"", "name_pt_PT": "Avaliador de Ameaças \"Confiável\"", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113025, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "External Combustion Engine", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5844, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 54766, "buy_price": 273833, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9916999936103821, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "External Combustion Engine", "name_ko_KR": "외연 기관", "name_fr_FR": "Moteur thermique externe", "name_de_DE": "Externer Verbrennungsmotor", "name_zh_CN": "外燃机", "name_es_ES": "Motor de combustión externa", "name_ru_RU": "Двигатель внешнего сгорания", "name_it_IT": "Motore a Combustione Esterna", "name_pt_PT": "Motor de Combustão Externa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113158, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dol'mak's Lucky Charm", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 40978, "buy_price": 204891, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991599977016449, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113254, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Dol'mak's Lucky Charm", "name_ko_KR": "돌마크의 행운 깃든 부적", "name_fr_FR": "Porte-bonheur de Dol'mak", "name_de_DE": "Dol'maks Glücksbringer", "name_zh_CN": "多玛克的好运符", "name_es_ES": "Talismán de la suerte de Dol'mak", "name_ru_RU": "Талисман Дол'мак", "name_it_IT": "Amuleto Fortunato di Dol'mak", "name_pt_PT": "Patuá da Sorte de Dol'mak", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113159, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Probiscus of the Swampfly Queen", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 49352, "buy_price": 246762, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.995199978351593, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111547, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Probiscus of the Swampfly Queen", "name_ko_KR": "늪지반딧불이 여왕의 주둥이", "name_fr_FR": "Trompe de la reine mouche des marais", "name_de_DE": "Fühler der Sumpfleuchterkönigin", "name_zh_CN": "沼泽萤光虫女王的喙", "name_es_ES": "Probisco de la Reina Moscapantano", "name_ru_RU": "Хоботок королевы Болотного Роя", "name_it_IT": "Proboscide della Regina delle Mosche", "name_pt_PT": "Tromba da Mosca do Pântano Rainha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113160, "race_mask": 18446744073709551615, "desc": "Crudely etched in to its surface: 'D & K'", "pad2": "", "pad1": "", "pad0": "", "name": "Moonstone Luck Token", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 462, "buy_price": 2311, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113255, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Moonstone Luck Token", "name_ko_KR": "월장석 행운 징표", "name_fr_FR": "Jeton porte-bonheur en pierre de lune", "name_de_DE": "Mondsteinglücksbringer", "name_zh_CN": "月亮石幸运徽记", "name_es_ES": "Muestra de la suerte de piedra lunar", "name_ru_RU": "Талисман из лунного камня", "name_it_IT": "Pegno Fortunato di Pietraluna", "name_pt_PT": "Berloque da Sorte de Pedra-da-lua", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Throbbing Swampfly Venom Sac", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 556, "buy_price": 2783, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111548, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Throbbing Swampfly Venom Sac", "name_ko_KR": "고동치는 늪지반딧불이 독 주머니", "name_fr_FR": "Glande à venin palpitante de mouche des marais", "name_de_DE": "Pulsierender Giftbeutel eines Sumpfleuchters", "name_zh_CN": "脉动的萤光虫毒囊", "name_es_ES": "Glándula de veneno palpitante Moscapantano", "name_ru_RU": "Пульсирующая ядовитая железа Болотного Роя", "name_it_IT": "Sacca di Veleno Pulsante di Mosca", "name_pt_PT": "Saco de Veneno Pulsante de Mosca do Pântano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113162, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kral'za's Resolve", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 41585, "buy_price": 207928, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0062999725341797, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113253, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Kral'za's Resolve", "name_ko_KR": "크랄자의 결의", "name_fr_FR": "Résolution de Kral'za", "name_de_DE": "Kral'zas Entschlossenheit", "name_zh_CN": "卡拉扎的决心", "name_es_ES": "Resolución de Kral'za", "name_ru_RU": "Решимость Крал'за", "name_it_IT": "Risolutezza di Kral'za", "name_pt_PT": "Determinação de Kral'za", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kliaa's Venomclaws", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 50081, "buy_price": 250406, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0098999738693237, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111546, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kliaa's Venomclaws", "name_ko_KR": "클리아의 맹독발톱", "name_fr_FR": "Griffes-venins de Kliaa", "name_de_DE": "Kliaas Gifthaken", "name_zh_CN": "克利亚的毒爪", "name_es_ES": "Garraveneno de Kliaa", "name_ru_RU": "Ядовитые клешни Клайи", "name_it_IT": "Grinfie Velenose di Kliaa", "name_pt_PT": "Garras de Peçonha de Kliaa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113253, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Karg's Hunting Horn", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 41284, "buy_price": 206420, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9990000128746033, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113162, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Karg's Hunting Horn", "name_ko_KR": "카르그의 사냥용 뿔피리", "name_fr_FR": "Cor de chasse de Karg", "name_de_DE": "Kargs Jagdhorn", "name_zh_CN": "卡格的狩猎号角", "name_es_ES": "Cuerno de caza de Karg", "name_ru_RU": "Охотничий рог Карга", "name_it_IT": "Corno da Caccia di Karg", "name_pt_PT": "Trompa de Caça de Karg", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113254, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lokra's Fury", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 463, "buy_price": 2319, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0026999711990356, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113158, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lokra's Fury", "name_ko_KR": "로크라의 분노", "name_fr_FR": "Fureur de Lokra", "name_de_DE": "Lokras Wut", "name_zh_CN": "洛卡拉之怒", "name_es_ES": "Furia de Lokra", "name_ru_RU": "Ярость Локры", "name_it_IT": "Furia di Lokra", "name_pt_PT": "Fúria de Lorka", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113255, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Asha's Fang", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 41589, "buy_price": 207949, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0063999891281128, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 113160, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Asha's Fang", "name_ko_KR": "아샤의 송곳니", "name_fr_FR": "Croc d'Asha", "name_de_DE": "Ashas Reißzahn", "name_zh_CN": "阿莎的獠牙", "name_es_ES": "Colmillo de asha", "name_ru_RU": "Клык Аши", "name_it_IT": "Zanna di Asha", "name_pt_PT": "Presa de Asha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113408, "race_mask": 18446744073709551615, "desc": "A collection of metal teeth, each carefully filed to a point.", "pad2": "", "pad1": "", "pad0": "", "name": "Greka's Dentures", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 49892, "buy_price": 249464, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006100058555603, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Greka's Dentures", "name_ko_KR": "그레카의 의치", "name_fr_FR": "Dentier de Greka", "name_de_DE": "Grekas Gebiss", "name_zh_CN": "格瑞卡的假牙", "name_es_ES": "Dentadura postiza de Greka", "name_ru_RU": "Зубной протез Греки", "name_it_IT": "Dentiera di Greka", "name_pt_PT": "Dentadura de Greka", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Legacy of Om'ra", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47339, "buy_price": 236695, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545999765396118, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Legacy of Om'ra", "name_ko_KR": "옴라의 유산", "name_fr_FR": "Héritage d'Om'ra", "name_de_DE": "Erbe von Om'ra", "name_zh_CN": "奥姆拉的遗物", "name_es_ES": "Legado de Om'ra", "name_ru_RU": "Наследие Ом'ры", "name_it_IT": "Eredità di Om'ra", "name_pt_PT": "Legado de Om'ra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113612, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scales of Doom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5735, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 117949, "buy_price": 589747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Scales of Doom", "name_ko_KR": "파멸의 비늘", "name_fr_FR": "Balance du destin", "name_de_DE": "Schuppen der Verdammnis", "name_zh_CN": "毁灭之鳞", "name_es_ES": "Escamas de fatalidad", "name_ru_RU": "Гибельные весы", "name_it_IT": "Scaglie del Destino", "name_pt_PT": "Escamas da Ruína", "on_use": false, "id_encounter": 971, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tectus' Beating Heart", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5735, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114879, "buy_price": 574397, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9728999733924866, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tectus' Beating Heart", "name_ko_KR": "텍터스의 두근대는 심장", "name_fr_FR": "Cœur palpitant de Tectus", "name_de_DE": "Tectus' schlagendes Herz", "name_zh_CN": "泰克图斯的脉动之心", "name_es_ES": "Corazón palpitante de Tectus", "name_ru_RU": "Бьющееся сердце Тектоника", "name_it_IT": "Cuore Pulsante di Tectus", "name_pt_PT": "Coração Pulsante de Tectus", "on_use": false, "id_encounter": 1195, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113650, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pillar of the Earth", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15394, "stat_alloc_2": 3555, "stat_alloc_3": 3555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367467, "buy_price": 1837337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9912999868392944, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Pillar of the Earth", "name_ko_KR": "대지의 기둥", "name_fr_FR": "Pilier de la terre", "name_de_DE": "Säule der Erde", "name_zh_CN": "大地之柱", "name_es_ES": "Pilar de la Tierra", "name_ru_RU": "Столп земли", "name_it_IT": "Pilastro della Terra", "name_pt_PT": "Pilar da Terra", "on_use": false, "id_encounter": 1195, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113658, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottle of Infesting Spores", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6057, "stat_alloc_2": 3555, "stat_alloc_3": 3555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 32, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 388189, "buy_price": 1940946, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0471999645233154, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Bottle of Infesting Spores", "name_ko_KR": "감염성 포자가 든 병", "name_fr_FR": "Bouteille de spores infestantes", "name_de_DE": "Flasche mit befallenden Sporen", "name_zh_CN": "感染孢子瓶", "name_es_ES": "Botella de Esporas infestadoras", "name_ru_RU": "Бутылка с заразными спорами", "name_it_IT": "Bottiglia di Spore Infestanti", "name_pt_PT": "Garrafa de Esporos Infectantes", "on_use": false, "id_encounter": 1196, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113663, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Flesh-Eating Spore", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 14338, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114005, "buy_price": 570028, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Petrified Flesh-Eating Spore", "name_ko_KR": "석화된 육식성 포자", "name_fr_FR": "Spore mangeuse de chair pétrifiée", "name_de_DE": "Versteinerte fleischfressende Spore", "name_zh_CN": "石化食肉孢子", "name_es_ES": "Espora carnívora petrificada", "name_ru_RU": "Окаменевшая плотоядная спора", "name_it_IT": "Spora Mangiacarne Pietrificata", "name_pt_PT": "Esporo Comedor de Carne Petrificado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 113834, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pol's Blinded Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6407, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 116213, "buy_price": 581068, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Pol's Blinded Eye", "name_ko_KR": "폴의 멀어버린 눈", "name_fr_FR": "Oeil aveugle de Pol", "name_de_DE": "Pols geblendetes Auge", "name_zh_CN": "普尔的盲目之眼", "name_es_ES": "Ojo ciego de Pol", "name_ru_RU": "Слепой глаз Пола", "name_it_IT": "Occhio Accecato di Poli", "name_pt_PT": "Olho Cego de Pol", "on_use": true, "id_encounter": 1148, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113835, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shards of Nothing", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6078, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1071, "buy_price": 5355, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Shards of Nothing", "name_ko_KR": "허무의 조각", "name_fr_FR": "Éclats de néantise", "name_de_DE": "Splitter des Nichts", "name_zh_CN": "虚无碎片", "name_es_ES": "Fragmentos de la nada", "name_ru_RU": "Осколки Ничего", "name_it_IT": "Schegge del Nulla", "name_pt_PT": "Fragmentos do Nada", "on_use": true, "id_encounter": 1148, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113842, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Caustic Healing", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8009, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 119685, "buy_price": 598426, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Emblem of Caustic Healing", "name_ko_KR": "신랄한 치유의 문장", "name_fr_FR": "Emblème de soins caustiques", "name_de_DE": "Emblem der ätzenden Heilung", "name_zh_CN": "腐蚀治疗徽章", "name_es_ES": "Emblema de sanación cáustica", "name_ru_RU": "Эмблема едкого исцеления", "name_it_IT": "Emblema della Guarigione Corrosiva", "name_pt_PT": "Emblema da Cura Cáustica", "on_use": true, "id_encounter": 1153, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113853, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Captive Micro-Aberration", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6058, "stat_alloc_2": 3555, "stat_alloc_3": 3555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 327539, "buy_price": 1637698, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.980400025844574, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Captive Micro-Aberration", "name_ko_KR": "사로잡힌 초소형 돌연변이", "name_fr_FR": "Micro-aberration captive", "name_de_DE": "Gefangene Mikroentartung", "name_zh_CN": "被捕获的微型畸变怪", "name_es_ES": "Microaberración cautiva", "name_ru_RU": "Пленная мини-аберрация", "name_it_IT": "Micro-Aberrazione Catturata", "name_pt_PT": "Microaberração Aprisionada", "on_use": false, "id_encounter": 1197, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113854, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Rapid Replication", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8009, "stat_alloc_2": 3555, "stat_alloc_3": 3555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 36, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 364798, "buy_price": 1823992, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9840999841690063, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Mark of Rapid Replication", "name_ko_KR": "빠른 복제의 징표", "name_fr_FR": "Marque de réplication rapide", "name_de_DE": "Mal der schnellen Replikation", "name_zh_CN": "迅捷反应徽记", "name_es_ES": "Marca de réplica rauda", "name_ru_RU": "Знак быстрого восстановления", "name_it_IT": "Marchio della Replicazione Rapida", "name_pt_PT": "Marca da Replicação Rápida", "on_use": false, "id_encounter": 1197, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113859, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Quiescent Runestone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6058, "stat_alloc_2": 3555, "stat_alloc_3": 3555, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1086, "buy_price": 5434, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Quiescent Runestone", "name_ko_KR": "침묵하는 마법석", "name_fr_FR": "Pierre runique quiescente", "name_de_DE": "Ruhender Runenstein", "name_zh_CN": "沉寂符石", "name_es_ES": "Piedra rúnica inactiva", "name_ru_RU": "Спокойный рунический камень", "name_it_IT": "Pietra Runica Quiescente", "name_pt_PT": "Pedra Rúnica Quiescente", "on_use": false, "id_encounter": 1197, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113861, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Evergaze Arcane Eidolon", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7566, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 122365, "buy_price": 611828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362999439239502, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Evergaze Arcane Eidolon", "name_ko_KR": "영원한 시선의 비전 허깨비", "name_fr_FR": "Eidolon arcanique de scrutation éternelle", "name_de_DE": "Arkanes Ewigblickeidolon", "name_zh_CN": "不眠奥术精魂", "name_es_ES": "Eidolon Arcano de mirada eterna", "name_ru_RU": "Волшебный идол вечного бдения", "name_it_IT": "Idolo Arcano dello Sguardo Eterno", "name_pt_PT": "Fantasma Arcano Mireterno", "on_use": false, "id_encounter": 1197, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 113889, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elementalist's Shielding Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11143, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114005, "buy_price": 570028, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Elementalist's Shielding Talisman", "name_ko_KR": "정령술사의 보호 부적", "name_fr_FR": "Talisman protecteur de l'élémentaliste", "name_de_DE": "Schutztalisman des Elementaristen", "name_zh_CN": "元素师的屏蔽护符", "name_es_ES": "Dije protector de elementalista", "name_ru_RU": "Талисман барьера повелителя стихий", "name_it_IT": "Talismano Protettivo dell'Elementalista", "name_pt_PT": "Talismã Protetor do Elementalista", "on_use": false, "id_encounter": 1154, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113893, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blast Furnace Door", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8378, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 118870, "buy_price": 594352, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006700038909912, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Blast Furnace Door", "name_ko_KR": "격노의 가열로 문", "name_fr_FR": "Porte du haut fourneau", "name_de_DE": "Tür des Schmelzofens", "name_zh_CN": "爆裂熔炉之门", "name_es_ES": "Puerta del Horno de Fundición", "name_ru_RU": "Дверь Горнила", "name_it_IT": "Porta dell'Altoforno", "name_pt_PT": "Porta da Fornalha Explosiva", "on_use": false, "id_encounter": 1154, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113905, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tablet of Turnbuckle Teamwork", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9742, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 112246, "buy_price": 561231, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506000280380249, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tablet of Turnbuckle Teamwork", "name_ko_KR": "강요된 협력의 석판", "name_fr_FR": "Tablette du tendeur tactique", "name_de_DE": "Tafel der abgestimmten Spannschrauben", "name_zh_CN": "无懈合击石板", "name_es_ES": "Tablilla de tensor colaborativo", "name_ru_RU": "Скрижаль крепкого сотрудничества", "name_it_IT": "Tavoletta del Tenditoio", "name_pt_PT": "Placa da Tensão do Trabalho de Equipe", "on_use": true, "id_encounter": 1155, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113931, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beating Heart of the Mountain", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6581, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 117961, "buy_price": 589806, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9990000128746033, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Beating Heart of the Mountain", "name_ko_KR": "고동치는 산의 심장", "name_fr_FR": "Cœur palpitant de la montagne", "name_de_DE": "Schlagendes Herz des Berges", "name_zh_CN": "跳动的山脉之心", "name_es_ES": "Corazón palpitante de la montaña", "name_ru_RU": "Бьющееся сердце горы", "name_it_IT": "Cuore Pulsante della Montagna", "name_pt_PT": "Coração da Montanha Pulsante", "on_use": true, "id_encounter": 1162, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darmac's Unstable Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6284, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1071, "buy_price": 5355, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Darmac's Unstable Talisman", "name_ko_KR": "다르마크의 불안정한 부적", "name_fr_FR": "Talisman instable de Darmac", "name_de_DE": "Darmacs instabiler Talisman", "name_zh_CN": "达玛克的无常护符", "name_es_ES": "Talismán inestable de Darmac", "name_ru_RU": "Нестабильный талисман Дармака", "name_it_IT": "Talismano Instabile di Darmac", "name_pt_PT": "Talismã Instável de Darmac", "on_use": false, "id_encounter": 1122, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Convulsive Shadows", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7435, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 117063, "buy_price": 585319, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9914000034332275, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Convulsive Shadows", "name_ko_KR": "경련의 그림자가 담긴 유리병", "name_fr_FR": "Fiole d'ombres convulsives", "name_de_DE": "Phiole der Schattenkrämpfe", "name_zh_CN": "抽搐暗影之瓶", "name_es_ES": "Vial de Sombras convulsivas", "name_ru_RU": "Фиал с дрожащими тенями", "name_it_IT": "Fiala delle Ombre Agitate", "name_pt_PT": " Frasco das Sombras Convulsas", "on_use": true, "id_encounter": 1203, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113983, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forgemaster's Insignia", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114454, "buy_price": 572271, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692999720573425, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Forgemaster's Insignia", "name_ko_KR": "제련장인의 휘장", "name_fr_FR": "Insigne de maître-forge", "name_de_DE": "Insigne des Schmiedemeisters", "name_zh_CN": "熔炉主管的徽记", "name_es_ES": "Insignia del maestro de forja", "name_ru_RU": "Знак начальника кузни", "name_it_IT": "Fregio del Mastro Forgiatore", "name_pt_PT": "Insígnia do Mestre Forjador", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blackiron Micro Crucible", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1054, "buy_price": 5274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9728999733924866, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Blackiron Micro Crucible", "name_ko_KR": "검은무쇠 소형 도가니", "name_fr_FR": "Micro-creuset en noirfer", "name_de_DE": "Winziger Schwarzeisentiegel", "name_zh_CN": "黑铁微型坩埚", "name_es_ES": "Microcrisol Hierro Negro", "name_ru_RU": "Микрогорнило Черного железа", "name_it_IT": "Crogiolo in Miniatura di Ferro Nero", "name_pt_PT": "Microcrisol de Ferro Negro", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113985, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Humming Blackiron Trigger", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115316, "buy_price": 576581, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Humming Blackiron Trigger", "name_ko_KR": "웅웅거리는 검은무쇠 방아쇠", "name_fr_FR": "Gâchette en noirfer frémissante", "name_de_DE": "Summender Schwarzeisenzünder", "name_zh_CN": "蜂鸣黑铁触发器", "name_es_ES": "Gatillo Hierro Negro zumbante", "name_ru_RU": "Гудящее пусковое устройство Черного железа", "name_it_IT": "Grilletto Ronzante di Ferro Nero", "name_pt_PT": "Gatilho de Ferro Negro Murmurante", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113986, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Auto-Repairing Autoclave", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 13497, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115753, "buy_price": 578766, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9803000092506409, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Auto-Repairing Autoclave", "name_ko_KR": "자동수리 자동절단기", "name_fr_FR": "Autoclave à réparation automatique", "name_de_DE": "Dampfkessel mit automatischer Reparatur", "name_zh_CN": "自动修复灭菌器", "name_es_ES": "Autoclave autorreparadora", "name_ru_RU": "Саморемонтирующийся автоклав", "name_it_IT": "Autoclave Autoriparante", "name_pt_PT": "Autoclave de Conserto Automático", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 113987, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battering Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 14916, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 116190, "buy_price": 580950, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Battering Talisman", "name_ko_KR": "분쇄의 부적", "name_fr_FR": "Talisman ravageur", "name_de_DE": "Rammtalisman", "name_zh_CN": "重击护符", "name_es_ES": "Dije de paliza", "name_ru_RU": "Талисман града ударов", "name_it_IT": "Talismano a Percussione", "name_pt_PT": "Talismã do Espancamento", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 114303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Eye of Horror", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 53739, "buy_price": 268697, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Eye of Horror", "name_ko_KR": "공포의 유령 눈", "name_fr_FR": "Oeil spectral de l'horreur", "name_de_DE": "Spektrales Auge des Schreckens", "name_zh_CN": "鬼灵恐惧之眼", "name_es_ES": "Ojo de horror espectral", "name_ru_RU": "Призрачный глаз ужаса", "name_it_IT": "Occhio dell'Orrore Impressionante", "name_pt_PT": "Olho Espectral do Horror", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Ghost of Insight", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 546, "buy_price": 2734, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9767000079154968, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Ghost of Insight", "name_ko_KR": "유령 통찰의 혼령", "name_fr_FR": "Fantôme spectral de clairvoyance", "name_de_DE": "Spektraler Geist der Einsicht", "name_zh_CN": "鬼灵幽魂之眼", "name_es_ES": "Fantasma de introspección espectral", "name_ru_RU": "Призрачный дух озарения", "name_it_IT": "Fantasma della Consapevolezza Impressionante", "name_pt_PT": "Fantasma Espectral da Percepção", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Whisper of Healing", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 54142, "buy_price": 270713, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.980400025844574, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Whisper of Healing", "name_ko_KR": "유령 치유의 귓속말", "name_fr_FR": "Murmures spectraux de soins", "name_de_DE": "Spektrales Flüstern der Heilung", "name_zh_CN": "鬼灵治疗低语", "name_es_ES": "Susurro de sanación espectral", "name_ru_RU": "Призрачный шепот исцеления", "name_it_IT": "Sussurro della Guarigione Impressionante", "name_pt_PT": "Sussurro Espectral da Cura", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Claw of Might", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 54347, "buy_price": 271735, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9840999841690063, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Claw of Might", "name_ko_KR": "유령 힘의 발톱", "name_fr_FR": "Griffe spectrale de puissance", "name_de_DE": "Spektrale Klaue der Macht", "name_zh_CN": "鬼灵力量之爪", "name_es_ES": "Garra de poderío espectral", "name_ru_RU": "Призрачный коготь мощи", "name_it_IT": "Artiglio del Vigore Impressionante", "name_pt_PT": "Garra Espectral do Poder", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Miasma of Fortitude", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 54551, "buy_price": 272756, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Spectral Miasma of Fortitude", "name_ko_KR": "유령 인내의 독기", "name_fr_FR": "Miasme spectral de robustesse", "name_de_DE": "Spektrales Miasma der Seelenstärke", "name_zh_CN": "鬼灵坚韧气息", "name_es_ES": "Miasma de entereza espectral", "name_ru_RU": "Призрачные миазмы стойкости", "name_it_IT": "Miasma della Fermezza Impressionante", "name_pt_PT": "Miasma Espectral da Fortitude", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114366, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Tooth of Ferocity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5944, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89462, "buy_price": 447314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Tooth of Ferocity", "name_ko_KR": "고통받는 야성의 이빨", "name_fr_FR": "Dent tourmentée de férocité", "name_de_DE": "Gequälter Zahn der Wildheit", "name_zh_CN": "折磨残暴之牙", "name_es_ES": "Diente de ferocidad atormentado", "name_ru_RU": "Иссеченный зуб свирепости", "name_it_IT": "Dente della Ferocia Avventuroso", "name_pt_PT": "Dente da Ferocidade Atormentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114367, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Emblem of Flame", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5944, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 824, "buy_price": 4122, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0139000415802002, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Emblem of Flame", "name_ko_KR": "고통받는 불의 문장", "name_fr_FR": "Emblème tourmenté de la flamme", "name_de_DE": "Gequältes Emblem der Flamme", "name_zh_CN": "折磨烈焰徽章", "name_es_ES": "Emblema de la llama atormentado", "name_ru_RU": "Иссеченная эмблема пламени", "name_it_IT": "Emblema del Fuoco Avventuroso", "name_pt_PT": "Emblema das Chamas Atormentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114368, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Insignia of Dreams", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5944, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90109, "buy_price": 450546, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0175000429153442, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Insignia of Dreams", "name_ko_KR": "고통받는 꿈의 계급장", "name_fr_FR": "Insigne tourmenté des rêves", "name_de_DE": "Gequältes Insigne der Träume", "name_zh_CN": "折磨梦境徽记", "name_es_ES": "Insignia de sueños atormentada", "name_ru_RU": "Иссеченный знак снов", "name_it_IT": "Insegna dei Sogni Avventurosa", "name_pt_PT": "Insígnia dos Sonhos Atormentada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114369, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Fang of Gore", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5944, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90437, "buy_price": 452185, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Fang of Gore", "name_ko_KR": "고통받는 피의 송곳니", "name_fr_FR": "Croc tourmenté du sang", "name_de_DE": "Gequälter Fangzahn des Blutes", "name_zh_CN": "折磨穿刺之牙", "name_es_ES": "Colmillo sangriento atormentado", "name_ru_RU": "Иссеченный клык крови", "name_it_IT": "Zanna del Massacro Avventurosa", "name_pt_PT": "Presa Evisceradora Atormentada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Seal of Fortitude", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5944, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90764, "buy_price": 453823, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Seal of Fortitude", "name_ko_KR": "고통받는 인내의 인장", "name_fr_FR": "Sceau tourmenté de robustesse", "name_de_DE": "Gequältes Siegel der Seelenstärke", "name_zh_CN": "折磨坚韧印记", "name_es_ES": "Sello de entereza atormentado", "name_ru_RU": "Иссеченная печать стойкости", "name_it_IT": "Sigillo della Fermezza Avventuroso", "name_pt_PT": "Selo da Fortitude Atormentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114427, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Munificent Emblem of Terror", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92101, "buy_price": 460509, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0399999618530273, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Munificent Emblem of Terror", "name_ko_KR": "아낌없이 주는 공포의 문장", "name_fr_FR": "Emblème de terreur munificent", "name_de_DE": "Freigiebiges Emblem des Schreckens", "name_zh_CN": "慷慨恐惧徽章", "name_es_ES": "Emblema de terror munificente", "name_ru_RU": "Щедрая эмблема ужаса", "name_it_IT": "Emblema del Terrore Magnifico", "name_pt_PT": "Emblema do Terror Munificente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114428, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Munificent Orb of Ice", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 848, "buy_price": 4243, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0435999631881714, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Munificent Orb of Ice", "name_ko_KR": "아낌없이 주는 얼음의 보주", "name_fr_FR": "Orbe de glace munificent", "name_de_DE": "Freigiebige Kugel des Eises", "name_zh_CN": "慷慨寒冰宝珠", "name_es_ES": "Orbe de hielo munificente", "name_ru_RU": "Щедрая сфера льда", "name_it_IT": "Globo di Ghiaccio Magnifico", "name_pt_PT": "Orbe de Gelo Munificente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114429, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Munificent Censer of Tranquility", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92748, "buy_price": 463742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0472999811172485, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Munificent Censer of Tranquility", "name_ko_KR": "아낌없이 주는 평온의 향로", "name_fr_FR": "Encensoir de tranquillité munificent", "name_de_DE": "Freigiebiger Rauchbrenner der Ruhe", "name_zh_CN": "慷慨宁静香炉", "name_es_ES": "Incensario de tranquilidad munificente", "name_ru_RU": "Щедрое кадило спокойствия", "name_it_IT": "Incensiere della Tranquillità Magnifico", "name_pt_PT": "Incensório da Tranquilidade Munificente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114430, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Munificent Bonds of Fury", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84211, "buy_price": 421056, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509000182151794, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Munificent Bonds of Fury", "name_ko_KR": "아낌없이 주는 격노의 굴레", "name_fr_FR": "Liens de fureur munificents", "name_de_DE": "Freigiebige Fesseln des Zorns", "name_zh_CN": "慷慨愤怒之骨", "name_es_ES": "Vínculos de furia munificentes", "name_ru_RU": "Щедрые узы ярости", "name_it_IT": "Vincoli della Furia Magnifici", "name_pt_PT": "Elos da Fúria Munificentes", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114431, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Munificent Soul of Compassion", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84538, "buy_price": 422694, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545999765396118, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Munificent Soul of Compassion", "name_ko_KR": "아낌없이 주는 연민의 영혼", "name_fr_FR": "Âme de compassion munificente", "name_de_DE": "Freigiebige Seele des Mitgefühls", "name_zh_CN": "慷慨悲悯之魂", "name_es_ES": "Alma de compasión munificente", "name_ru_RU": "Щедрая душа сострадания", "name_it_IT": "Anima della Compassione Magnifica", "name_pt_PT": "Alma de Compaixão Munificente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114488, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Turbulent Vial of Toxin", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85867, "buy_price": 429336, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696000218391418, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Turbulent Vial of Toxin", "name_ko_KR": "격동의 맹독 약병", "name_fr_FR": "Fiole de toxine turbulente", "name_de_DE": "Turbulente Phiole des Toxins", "name_zh_CN": "动荡剧毒药瓶", "name_es_ES": "Vial de toxinas turbulento", "name_ru_RU": "Штормовой фиал отравы", "name_it_IT": "Fiala di Tossina Tumultuosa", "name_pt_PT": "Frasco de Toxina Turbulento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114489, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Turbulent Focusing Crystal", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 791, "buy_price": 3957, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732999801635742, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Turbulent Focusing Crystal", "name_ko_KR": "격동의 집중 수정", "name_fr_FR": "Cristal de focalisation turbulent", "name_de_DE": "Turbulenter Fokussierkristall", "name_zh_CN": "动荡聚焦水晶", "name_es_ES": "Cristal de enfoque turbulento", "name_ru_RU": "Штормовой кристалл средоточия", "name_it_IT": "Cristallo della Concentrazione Tumultuoso", "name_pt_PT": "Cristal de Concentração Turbulento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Turbulent Relic of Mendacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86522, "buy_price": 432613, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9769999980926514, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Turbulent Relic of Mendacity", "name_ko_KR": "격동의 기만 유물", "name_fr_FR": "Relique de mendiant turbulente", "name_de_DE": "Turbulentes Relikt der Verlogenheit", "name_zh_CN": "动荡虚伪圣物", "name_es_ES": "Reliquia de mendacidad turbulenta", "name_ru_RU": "Штормовая реликвия лицемерия", "name_it_IT": "Reliquia della Mendacità Tumultuosa", "name_pt_PT": "Relíquia da Falsidade Turbulento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114491, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Turbulent Emblem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86850, "buy_price": 434251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807000160217285, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Turbulent Emblem", "name_ko_KR": "격동의 문장", "name_fr_FR": "Emblème turbulent", "name_de_DE": "Turbulentes Emblem", "name_zh_CN": "动荡徽记", "name_es_ES": "Emblema turbulento", "name_ru_RU": "Штормовая эмблема", "name_it_IT": "Emblema Tumultuoso", "name_pt_PT": "Emblema Turbulento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Turbulent Seal of Defiance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87169, "buy_price": 435845, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9843000173568726, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Turbulent Seal of Defiance", "name_ko_KR": "격동의 저항 인장", "name_fr_FR": "Sceau de défi turbulent", "name_de_DE": "Turbulentes Siegel des Trotzes", "name_zh_CN": "动荡反抗印记", "name_es_ES": "Sello de desafío turbulento", "name_ru_RU": "Штормовая печать непокорности", "name_it_IT": "Sigillo della Sfida Tumultuoso", "name_pt_PT": "Selo do Desafio Turbulento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114549, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grandiose Plans", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 355236, "buy_price": 1776180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9728999733924866, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grandiose Plans", "name_ko_KR": "거창한 계획", "name_fr_FR": "Plans grandioses", "name_de_DE": "Grandiose Pläne", "name_zh_CN": "豪华之预判", "name_es_ES": "Planes grandiosos", "name_ru_RU": "Потрясающие планы", "name_it_IT": "Piani Grandiosi", "name_pt_PT": "Instruções Grandiosas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114550, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grandiose Power", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1058, "buy_price": 5294, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grandiose Power", "name_ko_KR": "거창한 힘", "name_fr_FR": "Puissance grandiose", "name_de_DE": "Grandiose Macht", "name_zh_CN": "豪华之能量", "name_es_ES": "Poder grandioso", "name_ru_RU": "Потрясающая мощь", "name_it_IT": "Potenza Grandiosa", "name_pt_PT": "Poder Grandioso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114551, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grandiose Prescience", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367614, "buy_price": 1838070, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068000555038452, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grandiose Prescience", "name_ko_KR": "거창한 예지", "name_fr_FR": "Prescience grandiose", "name_de_DE": "Grandiose Voraussicht", "name_zh_CN": "豪华之先知", "name_es_ES": "Presciencia grandiosa", "name_ru_RU": "Потрясающее предвидение", "name_it_IT": "Prescienza Grandiosa", "name_pt_PT": "Presciência Grandiosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114552, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grandiose Carnage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 368928, "buy_price": 1844642, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104000568389893, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grandiose Carnage", "name_ko_KR": "거창한 학살", "name_fr_FR": "Carnage grandiose", "name_de_DE": "Grandioses Massaker", "name_zh_CN": "豪华之杀戮", "name_es_ES": "Masacre grandiosa", "name_ru_RU": "Потрясающая резня", "name_it_IT": "Massacro Grandioso", "name_pt_PT": "Chacina Grandiosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114553, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grandiose Resistance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 370279, "buy_price": 1851397, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140999555587769, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grandiose Resistance", "name_ko_KR": "거창한 저항", "name_fr_FR": "Résistance grandiose", "name_de_DE": "Grandioser Widerstand", "name_zh_CN": "豪华之抗性", "name_es_ES": "Resistencia grandiosa", "name_ru_RU": "Потрясающее сопротивление", "name_it_IT": "Resistenza Grandiosa", "name_pt_PT": "Resistência Grandiosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114610, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Formidable Jar of Doom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3714, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 118398, "buy_price": 591991, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0026999711990356, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Formidable Jar of Doom", "name_ko_KR": "위협적인 파멸의 단지", "name_fr_FR": "Réceptacle de fatalité formidable", "name_de_DE": "Formidabler Krug der Verdammnis", "name_zh_CN": "威凌毁灭之罐", "name_es_ES": "Tarro de fatalidad formidable", "name_ru_RU": "Грозный кувшин рока", "name_it_IT": "Giara del Destino Formidabile", "name_pt_PT": "Jarro da Ruína Formidável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114611, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Formidable Orb of Putrescence", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3714, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1091, "buy_price": 5455, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0063999891281128, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Formidable Orb of Putrescence", "name_ko_KR": "위협적인 부패의 보주", "name_fr_FR": "Orbe de putrescence formidable", "name_de_DE": "Formidable Kugel der Fäulnis", "name_zh_CN": "威凌腐败宝珠", "name_es_ES": "Orbe de putrescencia formidable", "name_ru_RU": "Грозная сфера гниения", "name_it_IT": "Globo della Putrescenza Formidabile", "name_pt_PT": "Orbe de Putrescência Formidável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114612, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Formidable Censer of Faith", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3714, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 119272, "buy_price": 596360, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.01010000705719, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Formidable Censer of Faith", "name_ko_KR": "위협적인 신념의 향로", "name_fr_FR": "Encensoir de foi formidable", "name_de_DE": "Formidabler Rauchbrenner des Glaubens", "name_zh_CN": "威凌信仰香炉", "name_es_ES": "Incensario de fe formidable", "name_ru_RU": "Грозное кадило веры", "name_it_IT": "Incensiere della Fede Formidabile", "name_pt_PT": "Incensário da Fé Formidável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114613, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Formidable Fang", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3714, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 119697, "buy_price": 598485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013700008392334, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Formidable Fang", "name_ko_KR": "위협적인 송곳니", "name_fr_FR": "Croc formidable", "name_de_DE": "Formidabler Fangzahn", "name_zh_CN": "威凌之牙", "name_es_ES": "Colmillo formidable", "name_ru_RU": "Грозный клык", "name_it_IT": "Zanna Formidabile", "name_pt_PT": "Presa Formidável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114614, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Formidable Relic of Blood", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3714, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120133, "buy_price": 600669, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0174000263214111, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Formidable Relic of Blood", "name_ko_KR": "위협적인 피의 유물", "name_fr_FR": "Relique de sang formidable", "name_de_DE": "Formidables Relikt des Blutes", "name_zh_CN": "威凌鲜血圣物", "name_es_ES": "Reliquia de sangre formidable", "name_ru_RU": "Грозная реликвия крови", "name_it_IT": "Reliquia di Sangue Formidabile", "name_pt_PT": "Relíquia de Sangue Formidável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114886, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Twisted Elemental Focus", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5119, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 71260, "buy_price": 356304, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Twisted Elemental Focus", "name_ko_KR": "뒤틀린 원소의 집중 장치", "name_fr_FR": "Focalisateur élémentaire distordu", "name_de_DE": "Gewundener Elementarfokus", "name_zh_CN": "扭曲的元素焦镜", "name_es_ES": "Enfoque elemental alterado", "name_ru_RU": "Сосредоточение искаженного элементаля", "name_it_IT": "Concentrazione Elementale Corrotta", "name_pt_PT": "Foco do Elemental Distorcido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114887, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Excavated Highmaul Knicknack", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4423, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 61880, "buy_price": 309402, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692999720573425, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Excavated Highmaul Knicknack", "name_ko_KR": "발굴된 높은망치 잡동사니", "name_fr_FR": "Bibelot cognefort déterré", "name_de_DE": "Ausgegrabener Hochfelsschnickschnack", "name_zh_CN": "出土的悬槌玩具", "name_es_ES": "Baratija de la excavación de Ogrópolis", "name_ru_RU": "Выкопанная безделушка Верховного Молота", "name_it_IT": "Affare Sterrato degli Altomaglio", "name_pt_PT": "Correntinha do Malho Imponente Desenterrada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114888, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Excavated Highmaul Thingamabob", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8223, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 615, "buy_price": 3076, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994000196456909, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Excavated Highmaul Thingamabob", "name_ko_KR": "발굴된 높은망치 잡살뱅이", "name_fr_FR": "Trucmuche cognefort déterré", "name_de_DE": "Ausgegrabener Hochfelssoundso", "name_zh_CN": "出土的悬槌饰物", "name_es_ES": "Chisme de la excavación de Ogrópolis", "name_ru_RU": "Выкопанная штуковина Верховного Молота", "name_it_IT": "Arnese Sterrato degli Altomaglio", "name_pt_PT": "Trequinho do Malho Imponente Desenterrado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114889, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kuhlrath's Cursed Totem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5119, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 679, "buy_price": 3398, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003100037574768, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Kuhlrath's Cursed Totem", "name_ko_KR": "쿨라스의 저주 토템", "name_fr_FR": "Totem maudit de Kuhlrath", "name_de_DE": "Kuhlraths verfluchtes Totem", "name_zh_CN": "库拉斯的诅咒图腾", "name_es_ES": "Tótem maldito de Kuhlrath", "name_ru_RU": "Проклятый тотем Кулрата", "name_it_IT": "Totem Maledetto di Kuhlrath", "name_pt_PT": "Totem Amaldiçoado de Kuhlrath", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114890, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Excavated Highmaul Doohickey", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4423, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64274, "buy_price": 321372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068000555038452, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Excavated Highmaul Doohickey", "name_ko_KR": "발굴된 높은망치 거시기", "name_fr_FR": "Bidutruc cognefort déterré", "name_de_DE": "Ausgegrabenes Hochfelsdingsbums", "name_zh_CN": "出土的悬槌饰品", "name_es_ES": "Trasto de la excavación de Ogrópolis", "name_ru_RU": "Выкопанная ерундовина Верховного Молота", "name_it_IT": "Aggeggio Sterrato degli Altomaglio", "name_pt_PT": "Berloque do Malho Imponente Desenterrado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114891, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void-Touched Totem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5119, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74567, "buy_price": 372835, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104000568389893, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Void-Touched Totem", "name_ko_KR": "공허에 물든 토템", "name_fr_FR": "Totem touché par le Vide", "name_de_DE": "Leerenberührtes Totem", "name_zh_CN": "灵媒图腾", "name_es_ES": "Tótem tocado por el Vacío", "name_ru_RU": "Меченный Бездной тотем", "name_it_IT": "Totem Toccato dal Vuoto", "name_pt_PT": "Totem Tocado pelo Caos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114957, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oversized Shadeback Talon", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5102, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 61191, "buy_price": 305955, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585000276565552, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Oversized Shadeback Talon", "name_ko_KR": "지나치게 큰 그늘등 발톱", "name_fr_FR": "Serre d'ombredos géante", "name_de_DE": "Übergroße Schattenrückenklaue", "name_zh_CN": "巨型影背利爪", "name_es_ES": "Garfa Lomosombra descomunal", "name_ru_RU": "Огромный коготь темноспина", "name_it_IT": "Artiglio Smisurato dei Dorsombroso", "name_pt_PT": "Garra de Costanera Supercrescido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114958, "race_mask": 18446744073709551615, "desc": "Courses with a familiar dark power.", "pad2": "", "pad1": "", "pad0": "", "name": "Watch Commander Branson's Lapel", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 53137, "buy_price": 265688, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Watch Commander Branson's Lapel", "name_ko_KR": "경비대 사령관 브란손의 옷깃", "name_fr_FR": "Insigne du commandant de la garde Branson", "name_de_DE": "Wachkommandant Bransons Reversnadel", "name_zh_CN": "执勤官布兰森的翻领", "name_es_ES": "Broche del comandante de vigilancia Branson", "name_ru_RU": "Лацкан командира стражи Брансона", "name_it_IT": "Spilla del Comandante della Guardia Branson", "name_pt_PT": "Lapela do Comandante da Vigia Branson", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114959, "race_mask": 18446744073709551615, "desc": "Even their thorns have thorns!", "pad2": "", "pad1": "", "pad0": "", "name": "Prickly Shadeback Thorn", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4421, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 61657, "buy_price": 308285, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9657999873161316, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Prickly Shadeback Thorn", "name_ko_KR": "가시투성이 그늘등 가시", "name_fr_FR": "Epine d'ombredos piquante", "name_de_DE": "Stachliger Schattenrückendorn", "name_zh_CN": "多刺的影背尖刺", "name_es_ES": "Espina de Lomosombra erizado", "name_ru_RU": "Колючий шип темноспина", "name_it_IT": "Rovo Spinoso dei Dorsombroso", "name_pt_PT": "Espinho Espinhoso Costanera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spires unused", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 53540, "buy_price": 267703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 0, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Spires unused", "name_ko_KR": "Spires unused", "name_fr_FR": "Spires unused", "name_de_DE": "Spires unused", "name_zh_CN": "Spires unused", "name_es_ES": "Spires unused", "name_ru_RU": "Spires unused", "name_it_IT": "Spires unused", "name_pt_PT": "Spires unused", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 114961, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thornmother Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8298, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 599, "buy_price": 2996, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Thornmother Eye", "name_ko_KR": "가시어미 눈", "name_fr_FR": "Oeil de la ronce-mère", "name_de_DE": "Dornenmutterauge", "name_zh_CN": "棘母之眼", "name_es_ES": "Ojo de madrespina", "name_ru_RU": "Глаз матери темноспинов", "name_it_IT": "Occhio della Madre Spinosa", "name_pt_PT": "Olho da Mão-espinho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115149, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86859, "buy_price": 434296, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119926, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Conquest", "name_ko_KR": "야성적인 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant primordial", "name_de_DE": "Eroberungsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente primigenio", "name_ru_RU": "Жетон завоевания необузданного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Primordiale", "name_pt_PT": "Distintivo da Conquista do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115150, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87186, "buy_price": 435934, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119927, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Conquest", "name_ko_KR": "야성적인 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant primordial", "name_de_DE": "Eroberungsinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente primigenio", "name_ru_RU": "Знак завоевания необузданного бойца", "name_it_IT": "Fregio della Conquista del Combattente Primordiale", "name_pt_PT": "Insígnia da Conquista do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115151, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87505, "buy_price": 437528, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.988099992275238, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119928, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Cruelty", "name_ko_KR": "야성적인 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant primordial", "name_de_DE": "Grausamkeitsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente primigenio", "name_ru_RU": "Эмблема жестокости необузданного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Primordiale", "name_pt_PT": "Emblema da Crueldade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115152, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87833, "buy_price": 439166, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9918000102043152, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119929, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Tenacity", "name_ko_KR": "야성적인 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant primordial", "name_de_DE": "Hartnäckigkeitsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente primigenio", "name_ru_RU": "Эмблема упорства необузданного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Primordiale", "name_pt_PT": "Emblema da Tenacidade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115153, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88161, "buy_price": 440805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955000281333923, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119930, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Meditation", "name_ko_KR": "야성적인 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant primordial", "name_de_DE": "Meditationsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente primigenio", "name_ru_RU": "Эмблема медитации необузданного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Primordiale", "name_pt_PT": "Emblema da Meditação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115154, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88488, "buy_price": 442443, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9991999864578247, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119931, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Dominance", "name_ko_KR": "야성적인 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant primordial", "name_de_DE": "Vorherrschaftsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente primigenio", "name_ru_RU": "Жетон господства необузданного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Primordiale", "name_pt_PT": "Distintivo da Dominância do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115155, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 815, "buy_price": 4077, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0027999877929688, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119932, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Dominance", "name_ko_KR": "야성적인 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant primordial", "name_de_DE": "Vorherrschaftsinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente primigenio", "name_ru_RU": "Знак господства необузданного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Primordiale", "name_pt_PT": "Insígnia da Dominância do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115156, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89135, "buy_price": 445675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006500005722046, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119933, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Cruelty", "name_ko_KR": "야성적인 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant primordial", "name_de_DE": "Grausamkeitsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente orgulloso", "name_ru_RU": "Медальон жестокости необузданного бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Primordiale", "name_pt_PT": "Medalhão da Crueldade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115157, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89462, "buy_price": 447314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119934, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Tenacity", "name_ko_KR": "야성적인 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant primordial", "name_de_DE": "Hartnäckigkeitsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente primigenio", "name_ru_RU": "Медальон упорства необузданного бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Primordiale", "name_pt_PT": "Medalhão da Tenacidade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115158, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89790, "buy_price": 448952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0139000415802002, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119935, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Meditation", "name_ko_KR": "야성적인 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant primordial", "name_de_DE": "Meditationsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente primigenio", "name_ru_RU": "Медальон медитации необузданного бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Primordiale", "name_pt_PT": "Medalhão da Meditação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115159, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90109, "buy_price": 450546, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0175000429153442, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119936, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Victory", "name_ko_KR": "야성적인 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant primordial", "name_de_DE": "Siegesabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente primigenio", "name_ru_RU": "Жетон победы необузданного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Primordiale", "name_pt_PT": "Distintivo da Vitória do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115160, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90437, "buy_price": 452185, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211999416351318, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 119937, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Victory", "name_ko_KR": "야성적인 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant primordial", "name_de_DE": "Siegesinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente primigenio", "name_ru_RU": "Знак победы необузданного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Primordiale", "name_pt_PT": "Insígnia da Vitória do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115495, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 118846, "buy_price": 594234, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006500005722046, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115496, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Adaptation", "name_ko_KR": "야성적인 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur primordial", "name_de_DE": "Anpassungsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador primigenio", "name_ru_RU": "Жетон адаптации необузданного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Adaptação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115496, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 119283, "buy_price": 596419, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115495, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1682, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Adaptation", "name_ko_KR": "야성적인 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur primordial", "name_de_DE": "Anpassungsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador primigenio", "name_ru_RU": "Жетон адаптации необузданного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Adaptação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115521, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 84556, "buy_price": 422783, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954800009727478, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 120049, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1682, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Adaptation", "name_ko_KR": "야성적인 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant primordial", "name_de_DE": "Anpassungsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente primigenio", "name_ru_RU": "Жетон адаптации необузданного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Primordiale", "name_pt_PT": "Distintivo da Adaptação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115749, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113616, "buy_price": 568080, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111222, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Conquest", "name_ko_KR": "야성적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur primordial", "name_de_DE": "Eroberungsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador primigenio", "name_ru_RU": "Жетон завоевания необузданного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Conquista do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115750, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114041, "buy_price": 570205, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9657999873161316, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111223, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Conquest", "name_ko_KR": "야성적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur primordial", "name_de_DE": "Eroberungsinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador primigenio", "name_ru_RU": "Знак завоевания необузданного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Conquista do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115751, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114477, "buy_price": 572389, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111224, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Cruelty", "name_ko_KR": "야성적인 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur primordial", "name_de_DE": "Grausamkeitsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador primigenio", "name_ru_RU": "Эмблема жестокости необузданного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Primordiale", "name_pt_PT": "Emblema da Crueldade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115752, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114914, "buy_price": 574574, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111225, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Tenacity", "name_ko_KR": "야성적인 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur primordial", "name_de_DE": "Hartnäckigkeitsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador primigenio", "name_ru_RU": "Эмблема упорства необузданного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Primordiale", "name_pt_PT": "Emblema da Tenacidade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115753, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115351, "buy_price": 576758, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111226, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Emblem of Meditation", "name_ko_KR": "야성적인 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur primordial", "name_de_DE": "Meditationsemblem des wilden Gladiators", "name_zh_CN": "原祖角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador primigenio", "name_ru_RU": "Эмблема медитации необузданного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Primordiale", "name_pt_PT": "Emblema da Meditação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115754, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115776, "buy_price": 578884, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111227, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Dominance", "name_ko_KR": "야성적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur primordial", "name_de_DE": "Vorherrschaftsabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador primigenio", "name_ru_RU": "Жетон господства необузданного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Dominância do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115755, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1067, "buy_price": 5335, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111228, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Dominance", "name_ko_KR": "야성적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur primordial", "name_de_DE": "Vorherrschaftsinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador primigenio", "name_ru_RU": "Знак господства необузданного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Dominância do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115756, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 119779, "buy_price": 598898, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0144000053405762, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111229, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Cruelty", "name_ko_KR": "야성적인 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur primordial", "name_de_DE": "Grausamkeitsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador orgulloso", "name_ru_RU": "Медальон жестокости необузданного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Crueldade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115757, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120204, "buy_price": 601024, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111230, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Tenacity", "name_ko_KR": "야성적인 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur primordial", "name_de_DE": "Hartnäckigkeitsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador primigenio", "name_ru_RU": "Медальон упорства необузданного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115758, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120641, "buy_price": 603208, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111231, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Meditation", "name_ko_KR": "야성적인 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur primordial", "name_de_DE": "Meditationsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador primigenio", "name_ru_RU": "Медальон медитации необузданного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Meditação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115759, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121078, "buy_price": 605393, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111232, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Badge of Victory", "name_ko_KR": "야성적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur primordial", "name_de_DE": "Siegesabzeichen des wilden Gladiators", "name_zh_CN": "原祖角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador primigenio", "name_ru_RU": "Жетон победы необузданного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Primordiale", "name_pt_PT": "Distintivo da Vitória do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 115760, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121515, "buy_price": 607577, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 111233, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Insignia of Victory", "name_ko_KR": "야성적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur primordial", "name_de_DE": "Siegesinsigne des wilden Gladiators", "name_zh_CN": "原祖角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador primigenio", "name_ru_RU": "Знак победы необузданного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Primordiale", "name_pt_PT": "Insígnia de Vitória do Gladiador Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116075, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scales of Gennadian", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65474, "buy_price": 327374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879999756813049, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Scales of Gennadian", "name_ko_KR": "제나디안의 비늘", "name_fr_FR": "Écailles de Gennadien", "name_de_DE": "Schuppen von Gennadian", "name_zh_CN": "加纳迪安鳞片", "name_es_ES": "Escamas de Gennadian", "name_ru_RU": "Чешуя Геннадиана", "name_it_IT": "Scaglie di Gennadian", "name_pt_PT": "Escamas de Gennadian", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116077, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pulsating Brain of No'losh", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 668, "buy_price": 3343, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9952999949455261, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Pulsating Brain of No'losh", "name_ko_KR": "노로쉬의 고동치는 두뇌", "name_fr_FR": "Cerveau palpitant de No'losh", "name_de_DE": "Pulsierendes Gehirn von No'losh", "name_zh_CN": "诺洛什的活跃之脑", "name_es_ES": "Cerebro pulsante de No'losh", "name_ru_RU": "Пульсирующий мозг Но'лоша", "name_it_IT": "Cervello Pulsante di No'losh", "name_pt_PT": "Cérebro Pulsante de No'losh", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116127, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bright Coin", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7222, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65256, "buy_price": 326281, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847000241279602, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Bright Coin", "name_ko_KR": "빛나는 동전", "name_fr_FR": "Pièce brillante", "name_de_DE": "Glänzende Münze", "name_zh_CN": "闪亮硬币", "name_es_ES": "Moneda brillante", "name_ru_RU": "Блестящая монетка", "name_it_IT": "Moneta Lucida", "name_pt_PT": "Moeda Brilhante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116154, "race_mask": 18446744073709551615, "desc": "Property of Barov Industries", "pad2": "", "pad1": "", "pad0": "", "name": "Barov Lumberjack Caller", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9126, "buy_price": 36502, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0103000402450562, "flags_1": 65536, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Barov Lumberjack Caller", "name_ko_KR": "바로브의 나무꾼 호출종", "name_fr_FR": "Signal des bûcherons Barov", "name_de_DE": "Holzfällerrufer von Barov", "name_zh_CN": "巴罗夫伐木工召唤器", "name_es_ES": "Llamador de leñador Barov", "name_ru_RU": "Колокол дровосеков рода Баровых", "name_it_IT": "Campanella del Taglialegna dei Barov", "name_pt_PT": "Convocador de Lenhador de Barov", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116289, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodmaw's Tooth", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 331076, "buy_price": 1655381, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0440000295639038, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Bloodmaw's Tooth", "name_ko_KR": "붉은아귀의 이빨", "name_fr_FR": "Dent de saignegueule", "name_de_DE": "Blutrachenzahn", "name_zh_CN": "血喉之牙", "name_es_ES": "Diente de los Sangrefauce", "name_ru_RU": "Зуб кровавого хищнореза", "name_it_IT": "Dente di Linguarossa", "name_pt_PT": "Dente de Gorjassangue", "on_use": false, "id_encounter": 1128, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 116290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Gushing Wounds", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1135, "buy_price": 5679, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.047700047492981, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Emblem of Gushing Wounds", "name_ko_KR": "피가 솟는 상처의 문장", "name_fr_FR": "Emblème des blessures hémorragiques", "name_de_DE": "Emblem der klaffenden Wunden", "name_zh_CN": "龟裂创伤徽章", "name_es_ES": "Emblema de Heridas sangrantes", "name_ru_RU": "Эмблема кровоточащей раны", "name_it_IT": "Emblema delle Ferite Zampillanti", "name_pt_PT": "Emblema das Feridas Torrentes", "on_use": false, "id_encounter": 971, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 116291, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Immaculate Living Mushroom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2956, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 112328, "buy_price": 561644, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513000249862671, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Immaculate Living Mushroom", "name_ko_KR": "온전한 살아있는 버섯", "name_fr_FR": "Champignon vivant immaculé", "name_de_DE": "Makelloser lebender Pilz", "name_zh_CN": "完美的活性蘑菇", "name_es_ES": "Champiñón viviente inmaculado", "name_ru_RU": "Безупречный живой гриб", "name_it_IT": "Fungo Vivente Immacolato", "name_pt_PT": "Cogumelo Vivo Imaculado", "on_use": false, "id_encounter": 1196, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 116292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mote of the Mountain", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 112754, "buy_price": 563770, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549000263214111, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Mote of the Mountain", "name_ko_KR": "산의 자갈", "name_fr_FR": "Granule de la montagne", "name_de_DE": "Fragment des Berges", "name_zh_CN": "活体之山微粒", "name_es_ES": "Fragmento de la montaña", "name_ru_RU": "Песчинка горы", "name_it_IT": "Granulo della Montagna", "name_pt_PT": "Grânulo da Montanha", "on_use": false, "id_encounter": 1195, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 116293, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of Suppression", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 303993, "buy_price": 1519969, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585999846458435, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Idol of Suppression", "name_ko_KR": "억제의 우상", "name_fr_FR": "Idole de suppression", "name_de_DE": "Götze der Unterdrückung", "name_zh_CN": "抑制雕像", "name_es_ES": "Ídolo de supresión", "name_ru_RU": "Идол усмирения", "name_it_IT": "Idolo della Soppressione", "name_pt_PT": "Ídolo da Supressão", "on_use": false, "id_encounter": 1153, "id_journal_instance": 477, "id_map": 1228, "instance_type": 2}, {"id": 116314, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blackheart Enforcer's Medallion", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2819, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113616, "buy_price": 568080, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Blackheart Enforcer's Medallion", "name_ko_KR": "검은심장 집행자의 메달", "name_fr_FR": "Médaillon de massacreur de Cœur-Noir", "name_de_DE": "Medaillon des Schwarzherzvollstreckers", "name_zh_CN": "黑心执行者勋章", "name_es_ES": "Medallón de déspota de Negrozón", "name_ru_RU": "Медальон головореза Черносерда", "name_it_IT": "Medaglione dello Scagnozzo Roccianera", "name_pt_PT": "Medalhão do Impositor Cordisnero", "on_use": false, "id_encounter": 1203, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 116315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Furyheart Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2819, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1047, "buy_price": 5235, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9657999873161316, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Furyheart Talisman", "name_ko_KR": "격노심장 부적", "name_fr_FR": "Talisman du cœur de la fureur", "name_de_DE": "Wutherztalisman", "name_zh_CN": "狂怒之心护符", "name_es_ES": "Talismán de corazón furibundo", "name_ru_RU": "Талисман яростного сердца", "name_it_IT": "Talismano del Cuor Furioso", "name_pt_PT": "Talismã Furicórdeo", "on_use": false, "id_encounter": 1154, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 116316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Captured Flickerspark", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 323898, "buy_price": 1619490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Captured Flickerspark", "name_ko_KR": "포착된 깜부기불", "name_fr_FR": "Escarbille capturée", "name_de_DE": "Gefangener Flimmerfunke", "name_zh_CN": "被禁锢的闪烁之火", "name_es_ES": "Chisparpadeante capturado", "name_ru_RU": "Захваченный искросвет", "name_it_IT": "Scintilla Catturata", "name_pt_PT": "Centelha Capturada", "on_use": false, "id_encounter": 1123, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 116317, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Storage House Key", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 325134, "buy_price": 1625671, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Storage House Key", "name_ko_KR": "창고 열쇠", "name_fr_FR": "Clé d'entrepôt", "name_de_DE": "Schlüssel zum Lager", "name_zh_CN": "储藏室钥匙", "name_es_ES": "Llave de la sala de almacenamiento", "name_ru_RU": "Ключ от склада", "name_it_IT": "Chiave del Magazzino", "name_pt_PT": "Chave do Armazém", "on_use": false, "id_encounter": 959, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 116318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stoneheart Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3665, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115339, "buy_price": 576699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768000245094299, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Stoneheart Idol", "name_ko_KR": "돌심장 우상", "name_fr_FR": "Idole du cœur de pierre", "name_de_DE": "Steinherzgötze", "name_zh_CN": "岩心雕像", "name_es_ES": "Ídolo de corazón de piedra", "name_ru_RU": "Идол каменного сердца", "name_it_IT": "Idolo di Cuordipietra", "name_pt_PT": "Ídolo Coração de Pedra", "on_use": false, "id_encounter": 1162, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 116799, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Heart of Hyperious", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91774, "buy_price": 458871, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362999439239502, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Smoldering Heart of Hyperious", "name_ko_KR": "하이페리우스의 연기나는 심장", "name_fr_FR": "Cœur fumant d'Hyperius", "name_de_DE": "Qualmendes Herz von Hyperius", "name_zh_CN": "亥伯里奥斯的阴燃之心", "name_es_ES": "Corazón de Hiperioso humeante", "name_ru_RU": "Истлевшее сердце Ярости Огня", "name_it_IT": "Cuore di Iperius Infuocato", "name_pt_PT": "Coração Abrasador de Hipérius", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116823, "race_mask": 18446744073709551615, "desc": "Patent Pending", "pad2": "", "pad1": "", "pad0": "", "name": "Katealystic Konverter", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 794, "buy_price": 3973, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771999716758728, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Katealystic Konverter", "name_ko_KR": "케트야식 변환기", "name_fr_FR": "Convertisseur Katealytique", "name_de_DE": "Katealystischer Konverter", "name_zh_CN": "催化转换器", "name_es_ES": "Konversor Katealístico", "name_ru_RU": "Кейтилитический конвертор", "name_it_IT": "Konvertitore Katalitiko", "name_pt_PT": "Konversor Katalístico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 116824, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rabid Talbuk Horn", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86868, "buy_price": 434340, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rabid Talbuk Horn", "name_ko_KR": "광적인 탈부크의 뿔", "name_fr_FR": "Corne de talbuk enragé", "name_de_DE": "Horn eines tollwütigen Talbuks", "name_zh_CN": "狂暴塔布羊角", "name_es_ES": "Cuerno de talbuk rabioso", "name_ru_RU": "Рог бешеного талбука", "name_it_IT": "Corno di Talbuk Rabbioso", "name_pt_PT": "Chifre de Talbuque Raivoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117033, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9921000003814697, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117034, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9957000017166138, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117042, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9514999985694885, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117045, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9624999761581421, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Defensor de Pedra da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117052, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9883000254631042, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117055, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9993000030517578, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117066, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9660999774932861, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117069, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9771000146865845, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117081, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.047700047492981, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117084, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9585999846458435, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117097, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0328999757766724, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117100, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0439000129699707, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117112, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0144000053405762, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0254000425338745, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117130, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0068999528884888, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Defensor de Pedra do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117132, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.01419997215271, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117145, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9883999824523926, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0068000555038452, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117156, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9552000164985657, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9699000120162964, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117178, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9624000191688538, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d'âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9733999967575073, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d'âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117194, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.047700047492981, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d'âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117195, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9513000249862671, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d'âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117203, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.007099986076355, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117206, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0182000398635864, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Defensor de Pedra Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117211, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0364999771118164, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117214, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0476000308990479, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0032999515533447, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117226, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0180000066757202, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117243, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0068999528884888, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117246, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.017899990081787, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117260, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9957000017166138, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0068000555038452, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117265, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0140999555587769, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9514999985694885, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117290, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9587000012397766, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117293, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9697999954223633, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0440000295639038, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9549000263214111, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117337, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4495, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.010699987411499, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117338, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0144000053405762, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0436999797821045, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117349, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9811999797821045, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Defensor de Pedra do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117357, "race_mask": 18446744073709551615, "desc": "The Grim Guzzler's brawls are epic tales of legend.", "pad2": "", "pad1": "", "pad0": "", "name": "Brawler's Statue", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 35965, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.010599970817566, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Brawler's Statue", "name_ko_KR": "싸움꾼의 조각상", "name_fr_FR": "Statue du bagarreur", "name_de_DE": "Muskelprotzstatue", "name_zh_CN": "争斗者雕像", "name_es_ES": "Estatua de camorrista", "name_ru_RU": "Статуя буяна", "name_it_IT": "Pegno dell'Attaccabrighe", "name_pt_PT": "Estátua do Brigão", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117358, "race_mask": 18446744073709551615, "desc": "Never stops twice.", "pad2": "", "pad1": "", "pad0": "", "name": "Mithril Wristwatch", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 35965, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.01419997215271, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Mithril Wristwatch", "name_ko_KR": "미스릴 손목시계", "name_fr_FR": "Bracelet-montre en mithril", "name_de_DE": "Mithrilarmbanduhr", "name_zh_CN": "秘银腕表", "name_es_ES": "Reloj de pulsera de mitril", "name_ru_RU": "Мифриловые часики", "name_it_IT": "Orologio da Polso di Mithril", "name_pt_PT": "Relógio de Pulso de Mithril", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117359, "race_mask": 18446744073709551615, "desc": "Reeking and rock hard.", "pad2": "", "pad1": "", "pad0": "", "name": "Thousand-Year Pickled Egg", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 35965, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.017899990081787, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Thousand-Year Pickled Egg", "name_ko_KR": "천 년 절인 초란", "name_fr_FR": "Œuf mariné un millier d'années", "name_de_DE": "Tausend Jahre altes Solei", "name_zh_CN": "千年腌蛋", "name_es_ES": "Huevo escabechado milenario", "name_ru_RU": "Тысячелетнее маринованное яйцо", "name_it_IT": "Uovo in Salamoia Millenario", "name_pt_PT": "Ovo em Conserva de Mil Anos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117360, "race_mask": 18446744073709551615, "desc": "Enchanted to fit perfectly beneath any mug, with a frosty finish.", "pad2": "", "pad1": "", "pad0": "", "name": "Coren's Cold Chromium Coaster", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 35965, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0216000080108643, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Coren's Cold Chromium Coaster", "name_ko_KR": "코렌의 차가운 크롬 받침", "name_fr_FR": "Sous-bock de Coren en chrome glacé", "name_de_DE": "Corens kalter Chromuntersetzer", "name_zh_CN": "科林的冷冻铬银杯垫", "name_es_ES": "Posavasos de cromo frío de Coren", "name_ru_RU": "Охлажденная хромированная подставка под чашку Корена", "name_it_IT": "Sottobicchiere Cromato Freddo di Coren", "name_pt_PT": "Porta-copos Cromado e Gelado de Coren", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117361, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bitterest Balebrew Charm", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0252000093460083, "flags_1": 67633152, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Bitterest Balebrew Charm", "name_ko_KR": "가장 쓰면서도 감미로운 고통의 맥주", "name_fr_FR": "Charme torvebière le plus amer", "name_de_DE": "Bitterster Plörrbräuglücksbringer", "name_zh_CN": "黑暗极苦烈酒咒符", "name_es_ES": "Talismán Fardobirra amarguísima", "name_ru_RU": "Амулет самого горького темного варева", "name_it_IT": "Talismano della Birra che fa Malissimo", "name_pt_PT": "Patuá Cervamarga Muito Amarga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117391, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bubbliest Brightbrew Charm", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 35965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 67633216, "flags_2": 24608, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Bubbliest Brightbrew Charm", "name_ko_KR": "가장 풍부한 거품의 감미로운 투명 맥주", "name_fr_FR": "Charme brillebière le plus pétillant", "name_de_DE": "Perlendster Hellbräuglücksbringer", "name_zh_CN": "光明富泡酒咒符", "name_es_ES": "Talismán Brillobirra más bullente", "name_ru_RU": "Амулет самого крепкого игристого светлого напитка", "name_it_IT": "Talismano della Birra che fa Benissimo", "name_pt_PT": "Patuá Cervaleve Mais Borbulhante de Todos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117402, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ultra-Electrified Reflector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 342, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7692, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2436, "buy_price": 12181, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9550999999046326, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Ultra-Electrified Reflector", "name_ko_KR": "초대전 반사기", "name_fr_FR": "Réflecteur ultra-électrifié", "name_de_DE": "Hochspannungsreflektor", "name_zh_CN": "超级电化反射器", "name_es_ES": "Reflector ultraelectrificado", "name_ru_RU": "Ультраэлектрифицированный отражатель", "name_it_IT": "Riflettore Ultra Elettrificato", "name_pt_PT": "Refletor Ultraeletrificado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117403, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gyro-Radiant Reflector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 342, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7692, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2444, "buy_price": 12220, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9587000012397766, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Gyro-Radiant Reflector", "name_ko_KR": "회전발광 반사기", "name_fr_FR": "Réflecteur à gyro-rayonnement", "name_de_DE": "Gyrostrahlenreflektor", "name_zh_CN": "旋转辐射反射器", "name_es_ES": "Reflector girorradiante", "name_ru_RU": "Гироизлучательный отражатель", "name_it_IT": "Riflettore Giroradiante", "name_pt_PT": "Refletor Girorradiante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117438, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomish Net Launcher", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 128, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7665, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2652, "buy_price": 13260, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0401999950408936, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Gnomish Net Launcher", "name_ko_KR": "노움 그물 발사기", "name_fr_FR": "Lance-filet gnome", "name_de_DE": "Gnomischer Netzwerfer", "name_zh_CN": "侏儒渔网发射器", "name_es_ES": "Lanzarredes gnómico", "name_ru_RU": "Гномский сетемет", "name_it_IT": "Lanciarete degli Gnomi", "name_pt_PT": "Lançador de Rede Gnômico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117537, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9623000025749207, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117540, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9998000264167786, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117729, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117930, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Conquest", "name_ko_KR": "토너먼트 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur de tournoi", "name_de_DE": "Eroberungsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador de torneo", "name_ru_RU": "Жетон завоевания состязающегося гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Conquista do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117730, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9882000088691711, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117931, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Conquest", "name_ko_KR": "토너먼트 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur de tournoi", "name_de_DE": "Eroberungsinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador de torneo", "name_ru_RU": "Знак завоевания состязающегося гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Conquista do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117731, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117932, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Cruelty", "name_ko_KR": "토너먼트 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur de tournoi", "name_de_DE": "Grausamkeitsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador de torneo", "name_ru_RU": "Эмблема жестокости состязающегося гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore del Torneo", "name_pt_PT": "Emblema da Crueldade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117732, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117933, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Tenacity", "name_ko_KR": "토너먼트 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur de tournoi", "name_de_DE": "Hartnäckigkeitsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador de torneo", "name_ru_RU": "Эмблема упорства состязающегося гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore del Torneo", "name_pt_PT": "Emblema da Tenacidade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117733, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0257999897003174, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117934, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Meditation", "name_ko_KR": "토너먼트 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur de tournoi", "name_de_DE": "Meditationsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador de torneo", "name_ru_RU": "Эмблема медитации состязающегося гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore del Torneo", "name_pt_PT": "Emblema da Meditação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117734, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0293999910354614, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117935, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Dominance", "name_ko_KR": "토너먼트 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur de tournoi", "name_de_DE": "Vorherrschaftsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador de torneo", "name_ru_RU": "Жетон господства состязающегося гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Dominância do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117735, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0331000089645386, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117936, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Dominance", "name_ko_KR": "토너먼트 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur de tournoi", "name_de_DE": "Vorherrschaftsinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador de torneo", "name_ru_RU": "Знак господства состязающегося гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Dominância do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117736, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0368000268936157, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117937, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Cruelty", "name_ko_KR": "토너먼트 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur de tournoi", "name_de_DE": "Grausamkeitsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador de torneo", "name_ru_RU": "Медальон жестокости состязающегося гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Crueldade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117737, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405000448226929, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117938, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Tenacity", "name_ko_KR": "토너먼트 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur de tournoi", "name_de_DE": "Hartnäckigkeitsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador de torneo", "name_ru_RU": "Медальон упорства состязающегося гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117738, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044100046157837, "flags_1": 4755456, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117939, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Meditation", "name_ko_KR": "토너먼트 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur de tournoi", "name_de_DE": "Meditationsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador de torneo", "name_ru_RU": "Медальон медитации состязающегося гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Meditação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117739, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0477999448776245, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117940, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Victory", "name_ko_KR": "토너먼트 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur de tournoi", "name_de_DE": "Siegesabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador de torneo", "name_ru_RU": "Жетон победы состязающегося гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Vitória do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117740, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117941, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Victory", "name_ko_KR": "토너먼트 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur de tournoi", "name_de_DE": "Siegesinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador de torneo", "name_ru_RU": "Знак победы состязающегося гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Vitória do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117773, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.025499939918518, "flags_1": 4231168, "flags_2": 4218881, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117774, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Adaptation", "name_ko_KR": "토너먼트 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur de tournoi", "name_de_DE": "Anpassungsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador de torneo", "name_ru_RU": "Жетон адаптации состязающегося гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Adaptação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117774, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0291999578475952, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117773, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Adaptation", "name_ko_KR": "토너먼트 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur de tournoi", "name_de_DE": "Anpassungsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador de torneo", "name_ru_RU": "Жетон адаптации состязающегося гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Adaptação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117930, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9663000106811523, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117729, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Conquest", "name_ko_KR": "토너먼트 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur de tournoi", "name_de_DE": "Eroberungsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador de torneo", "name_ru_RU": "Жетон завоевания состязающегося гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Conquista do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117931, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700000286102295, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117730, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 2047, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Conquest", "name_ko_KR": "토너먼트 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur de tournoi", "name_de_DE": "Eroberungsinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador de torneo", "name_ru_RU": "Знак завоевания состязающегося гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Conquista do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117932, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736999869346619, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117731, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Cruelty", "name_ko_KR": "토너먼트 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur de tournoi", "name_de_DE": "Grausamkeitsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador de torneo", "name_ru_RU": "Эмблема жестокости состязающегося гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore del Torneo", "name_pt_PT": "Emblema da Crueldade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117933, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.977400004863739, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117732, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Tenacity", "name_ko_KR": "토너먼트 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur de tournoi", "name_de_DE": "Hartnäckigkeitsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador de torneo", "name_ru_RU": "Эмблема упорства состязающегося гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore del Torneo", "name_pt_PT": "Emblema da Tenacidade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117934, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9810000061988831, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117733, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Emblem of Meditation", "name_ko_KR": "토너먼트 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur de tournoi", "name_de_DE": "Meditationsemblem des Turniergladiators", "name_zh_CN": "竞技角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador de torneo", "name_ru_RU": "Эмблема медитации состязающегося гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore del Torneo", "name_pt_PT": "Emblema da Meditação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117935, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847000241279602, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117734, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Dominance", "name_ko_KR": "토너먼트 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur de tournoi", "name_de_DE": "Vorherrschaftsabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador de torneo", "name_ru_RU": "Жетон господства состязающегося гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Dominância do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117936, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883999824523926, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117735, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Dominance", "name_ko_KR": "토너먼트 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur de tournoi", "name_de_DE": "Vorherrschaftsinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador de torneo", "name_ru_RU": "Знак господства состязающегося гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Dominância do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117937, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9921000003814697, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117736, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Cruelty", "name_ko_KR": "토너먼트 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur de tournoi", "name_de_DE": "Grausamkeitsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador de torneo", "name_ru_RU": "Медальон жестокости состязающегося гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Crueldade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117938, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9957000017166138, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117737, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Tenacity", "name_ko_KR": "토너먼트 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur de tournoi", "name_de_DE": "Hartnäckigkeitsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador de torneo", "name_ru_RU": "Медальон упорства состязающегося гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Tenacidade do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117939, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994000196456909, "flags_1": 4755456, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117738, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Meditation", "name_ko_KR": "토너먼트 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur de tournoi", "name_de_DE": "Meditationsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador de torneo", "name_ru_RU": "Медальон медитации состязающегося гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Meditação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117940, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003100037574768, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117739, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Badge of Victory", "name_ko_KR": "토너먼트 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur de tournoi", "name_de_DE": "Siegesabzeichen des Turniergladiators", "name_zh_CN": "竞技角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador de torneo", "name_ru_RU": "Жетон победы состязающегося гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore del Torneo", "name_pt_PT": "Distintivo da Vitória do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 117941, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006700038909912, "flags_1": 4231168, "flags_2": 4218882, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 117740, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Insignia of Victory", "name_ko_KR": "토너먼트 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur de tournoi", "name_de_DE": "Siegesinsigne des Turniergladiators", "name_zh_CN": "竞技角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador de torneo", "name_ru_RU": "Знак победы состязающегося гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore del Torneo", "name_pt_PT": "Insígnia de Vitória do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Ancient's Bark", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 48460, "buy_price": 242301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0144000053405762, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Smoldering Ancient's Bark", "name_ko_KR": "연기 나는 고대정령의 껍질", "name_fr_FR": "Ecorce d'ancien fumante", "name_de_DE": "Rinde des schwelenden Urtums", "name_zh_CN": "阴燃的古树树皮", "name_es_ES": "Corteza de anciano humeante", "name_ru_RU": "Тлеющая кора древнего", "name_it_IT": "Corteccia dell'Antico Ardente", "name_pt_PT": "Casca de Anciente Fumegante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118017, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blistered Ancient Bark", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 48632, "buy_price": 243161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Blistered Ancient Bark", "name_ko_KR": "물집 잡힌 고대 껍질", "name_fr_FR": "Ecorce ancienne boursouflée", "name_de_DE": "Blasige uralte Rinde", "name_zh_CN": "起泡的古树树皮", "name_es_ES": "Corteza de anciano con ampollas", "name_ru_RU": "Покрытая волдырями кора древнего", "name_it_IT": "Corteccia Antica Gonfia", "name_pt_PT": "Casca de Anciente Empolada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charred Ancient's Ember", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 519, "buy_price": 2599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Charred Ancient's Ember", "name_ko_KR": "악에물든 고대정령의 잿불", "name_fr_FR": "Braise d'ancien calciné", "name_de_DE": "Glut des verkohlten Urtums", "name_zh_CN": "烧焦的古树余烬", "name_es_ES": "Ascua de anciano carbonizado", "name_ru_RU": "Обгоревший уголек древнего", "name_it_IT": "Brace dell'Antico Carbonizzato", "name_pt_PT": "Brasa do Anciente Calcinado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118019, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of the Magnaron", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4414, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67953, "buy_price": 339767, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Might of the Magnaron", "name_ko_KR": "마그나론의 힘", "name_fr_FR": "Puissance des Magnarons", "name_de_DE": "Macht der Magnaron", "name_zh_CN": "玛戈隆的力量", "name_es_ES": "Poderío del magnarón", "name_ru_RU": "Мощь магнарона", "name_it_IT": "Vigore dei Magnaron", "name_pt_PT": "Poder do Magnaron", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118020, "race_mask": 18446744073709551615, "desc": "A collection of loosely strung bones.", "pad2": "", "pad1": "", "pad0": "", "name": "Goc's Trophy", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5045, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68191, "buy_price": 340959, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0290000438690186, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Goc's Trophy", "name_ko_KR": "고크의 전리품", "name_fr_FR": "Trophée de Goc", "name_de_DE": "Gocs Trophäe", "name_zh_CN": "苟克的战利品", "name_es_ES": "Trofeo de Goc", "name_ru_RU": "Трофей Гока", "name_it_IT": "Trofeo di Goc", "name_pt_PT": "Troféu de Goc", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118021, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goc's Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 693, "buy_price": 3469, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0326999425888062, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Goc's Eye", "name_ko_KR": "고크의 눈", "name_fr_FR": "Oeil de Goc", "name_de_DE": "Gocs Auge", "name_zh_CN": "苟克之眼", "name_es_ES": "Ojo de Goc", "name_ru_RU": "Глаз Гока", "name_it_IT": "Occhio di Goc", "name_pt_PT": "Olho de Goc", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118114, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Meaty Dragonspine Trophy", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6284, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121952, "buy_price": 609762, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0327999591827393, "flags_1": 589824, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Meaty Dragonspine Trophy", "name_ko_KR": "커다란 용뼈 장식", "name_fr_FR": "Trophée charnu de l'Epine-de-Dragon", "name_de_DE": "Blutige Drachenwirbeltrophäe", "name_zh_CN": "多肉龙脊奖章", "name_es_ES": "Trofeo de espinazo de dragón carnoso", "name_ru_RU": "Трофей из драконьего хребта с остатками мяса", "name_it_IT": "Trofeo Spina di Drago Carnosa", "name_pt_PT": "Troféu Espinha do Dragão Carnudo", "on_use": false, "id_encounter": 1161, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 118199, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Poison Cask", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76884, "buy_price": 384421, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Poison Cask", "name_ko_KR": "독 통", "name_fr_FR": "Fût de poison", "name_de_DE": "Giftfass", "name_zh_CN": "毒液桶", "name_es_ES": "Tonel de veneno", "name_ru_RU": "Бочонок с ядом", "name_it_IT": "Barile di Veleno", "name_pt_PT": "Barril de Veneno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118202, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fungus-Infected Hydra Lung", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 749, "buy_price": 3748, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0146000385284424, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fungus-Infected Hydra Lung", "name_ko_KR": "곰팡이에 감염된 히드라 폐", "name_fr_FR": "Poumon d'hydre infesté de champignons", "name_de_DE": "Pilzbefallene Hydralunge", "name_zh_CN": "染菌多头蛇肺叶", "name_es_ES": "Pulmón de hidra infectada por hongos", "name_ru_RU": "Зараженное спорами легкое гидры", "name_it_IT": "Polmone d'Idra Infettato dai Funghi", "name_pt_PT": "Pulmão de Hidra com Infecção Fúngica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118211, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rolkor's Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 60061, "buy_price": 300306, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.047700047492981, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rolkor's Rage", "name_ko_KR": "롤코르의 분노", "name_fr_FR": "Rage de Rolkor", "name_de_DE": "Rolkors Wut", "name_zh_CN": "洛克尔之怒", "name_es_ES": "Ira de Rolkor", "name_ru_RU": "Ярость Ролкора", "name_it_IT": "Rabbia di Rolkor", "name_pt_PT": "Fúria de Rolkor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118229, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resonant Hidecrystal of the Gorger", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 59631, "buy_price": 298156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0401999950408936, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Resonant Hidecrystal of the Gorger", "name_ko_KR": "먹보의 공명하는 등껍질수정", "name_fr_FR": "Cristal de peau de résonance du goinfre", "name_de_DE": "Schwingender Panzerkristall des Schlingers", "name_zh_CN": "吞噬者的共振隐匿水晶", "name_es_ES": "Cristal oculto resonante del Glotón", "name_ru_RU": "Звонкий тайный кристалл Пожирателя", "name_it_IT": "Cristallo Risonante del Bramacarne", "name_pt_PT": "Cristal Ressoante do Devorador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118230, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Cerulean Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 59843, "buy_price": 299217, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0439000129699707, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Smoldering Cerulean Stone", "name_ko_KR": "연기나는 감청색 돌", "name_fr_FR": "Pierre céruléenne fumante", "name_de_DE": "Schwelender himmelblauer Stein", "name_zh_CN": "阴燃的蔚蓝之石", "name_es_ES": "Piedra cerúlea humeante", "name_ru_RU": "Тлеющий лазурный камень", "name_it_IT": "Pietra Cerulea Bruciante", "name_pt_PT": "Pedra Cerúlea Fumegante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118246, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Call of the Wolfmother", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91127, "buy_price": 455638, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0290000438690186, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Call of the Wolfmother", "name_ko_KR": "늑대어미의 부름", "name_fr_FR": "Appel de la mère des loups", "name_de_DE": "Ruf der Wolfsmutter", "name_zh_CN": "狼母的召唤", "name_es_ES": "Llamada de la Madre de Lobos", "name_ru_RU": "Зов волчицы", "name_it_IT": "Richiamo della Madre dei Lupi", "name_pt_PT": "Chamado da Mãe-loba", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118601, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ocean Tarot", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14915, "buy_price": 74575, "vendor_stack": 1, "unk_2": 0.25, "unk_1": 1.0406999588012695, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 41, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Ocean Tarot", "name_ko_KR": "바다 카드", "name_fr_FR": "Carte de tarot océanique", "name_de_DE": "Meerestarot", "name_zh_CN": "海洋塔罗牌", "name_es_ES": "Tarot del océano", "name_ru_RU": "Карта Океана", "name_it_IT": "Tarocco dell'Oceano", "name_pt_PT": "Tarô do Oceano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118602, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Laughing Tarot", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 17303, "buy_price": 86515, "vendor_stack": 1, "unk_2": 0.25, "unk_1": 1.0443999767303467, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 42, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Laughing Tarot", "name_ko_KR": "웃음 카드", "name_fr_FR": "Carte de tarot ricanant", "name_de_DE": "Lachendes Tarot", "name_zh_CN": "蔑笑塔罗牌", "name_es_ES": "Tarot de la risa", "name_ru_RU": "Смеющаяся карта", "name_it_IT": "Tarocco Ridente", "name_pt_PT": "Tarô Ridente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118603, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Savage Tarot", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20073, "buy_price": 100366, "vendor_stack": 1, "unk_2": 0.25, "unk_1": 1.0480999946594238, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Savage Tarot", "name_ko_KR": "야만 카드", "name_fr_FR": "Carte de tarot sauvage", "name_de_DE": "Wildes Tarot", "name_zh_CN": "狂野塔罗牌", "name_es_ES": "Tarot salvaje", "name_ru_RU": "Дикая карта", "name_it_IT": "Tarocco Selvaggio", "name_pt_PT": "Taro Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118677, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Howl of the Frostwolf", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.025499939918518, "flags_1": 4096, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 118680, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1445, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Howl of the Frostwolf", "name_ko_KR": "서리늑대의 포효", "name_fr_FR": "Hurlement des Loups-de-Givre", "name_de_DE": "Heulen der Frostwölfe", "name_zh_CN": "霜狼之嗥", "name_es_ES": "Aullido Lobo Gélido", "name_ru_RU": "Вой северного волка", "name_it_IT": "Ululato dei Lupi Bianchi", "name_pt_PT": "Uivo do Lobo do Gelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118680, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tranquility of the Exarchs", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0364999771118164, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 118677, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1731, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Tranquility of the Exarchs", "name_ko_KR": "총독의 평온", "name_fr_FR": "Tranquillité des exarques", "name_de_DE": "Gelassenheit der Exarchen", "name_zh_CN": "主教的宁静", "name_es_ES": "Tranquilidad de los exarcas", "name_ru_RU": "Спокойствие экзархов", "name_it_IT": "Tranquillità degli Esarchi", "name_pt_PT": "Tranquilidade dos Exarcas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118682, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Saberon Protector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.970300018787384, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1515, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Saberon Protector", "name_ko_KR": "서슬니 수호자", "name_fr_FR": "Protecteur sabron", "name_de_DE": "Beschützer der Saberon", "name_zh_CN": "刃牙虎人保护者", "name_es_ES": "Protector sablerón", "name_ru_RU": "Оберег саблеронов", "name_it_IT": "Protettore dei Saberon", "name_pt_PT": "Protetor Saberon", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Portable Goon Squad", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739000201225281, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1711, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Portable Goon Squad", "name_ko_KR": "휴대용 깡패", "name_fr_FR": "Bande de casseurs portative", "name_de_DE": "Taschenschlägertruppe", "name_zh_CN": "便携式打手小队", "name_es_ES": "Matones portátiles", "name_ru_RU": "Передвижной отряд громил", "name_it_IT": "Squadra di Sgherri Portatile", "name_pt_PT": "Esquadrão de Capangas Portátil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118684, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Maniacal Grimace", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 0, "flags_2": 24577, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 118685, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1708, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Maniacal Grimace", "name_ko_KR": "광란의 우거지상", "name_fr_FR": "Grimace forcenée", "name_de_DE": "Irrsinnige Grimasse", "name_zh_CN": "狂热鬼面", "name_es_ES": "Mueca maníaca", "name_ru_RU": "Маниакальная гримаса", "name_it_IT": "Smorfia da Maniaco", "name_pt_PT": "Careta Maníaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sha'tari Protector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 1000000, "buy_price": 5000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9812999963760376, "flags_1": 0, "flags_2": 24578, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 118684, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1710, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 37, "inv_type": 12, "quality": 3, "name_en_US": "Sha'tari Protector", "name_ko_KR": "샤타리 수호자", "name_fr_FR": "Protecteur sha'tari", "name_de_DE": "Beschützer der Sha'tar", "name_zh_CN": "沙塔尔保护者", "name_es_ES": "Protector Sha'tari", "name_ru_RU": "Ша'тарский оберег", "name_it_IT": "Protettore degli Sha'tar", "name_pt_PT": "Protetor Sha'tari", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118690, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empty Crawdad Trap", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88532, "buy_price": 442664, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9997000098228455, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Empty Crawdad Trap", "name_ko_KR": "빈 가재 덫", "name_fr_FR": "Piège à écrevisses vide", "name_de_DE": "Leere Flusskrebsfalle", "name_zh_CN": "空的龙虾笼", "name_es_ES": "Trampa de cigalas vacía", "name_ru_RU": "Пустая ловушка для речного рака", "name_it_IT": "Trappola per Astici Vuota", "name_pt_PT": "Armadilha de Lagostim Vazia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118776, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Invader", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.047700047492981, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of the Invader", "name_ko_KR": "침략자의 부적", "name_fr_FR": "Talisman de l'envahisseur", "name_de_DE": "Talisman des Invasoren", "name_zh_CN": "入侵者护符", "name_es_ES": "Dije del invasor", "name_ru_RU": "Талисман налетчика", "name_it_IT": "Talismano dell'Invasore", "name_pt_PT": "Talismã do Invasor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118777, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodcaster's Charm", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.951200008392334, "flags_1": 561152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bloodcaster's Charm", "name_ko_KR": "혈술사의 부적", "name_fr_FR": "Charme du lanceur de sang", "name_de_DE": "Talisman des Blutwirkers", "name_zh_CN": "血法师的符咒", "name_es_ES": "Talismán de lanzador sangriento", "name_ru_RU": "Талисман мага крови", "name_it_IT": "Talismano dell'Invocasangue", "name_pt_PT": "Patuá do Clamassangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118778, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ironmender's Totem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9814000129699707, "flags_1": 561152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Ironmender's Totem", "name_ko_KR": "무쇠치유자의 토템", "name_fr_FR": "Totem de soigne-fer", "name_de_DE": "Totem des Eisenheilers", "name_zh_CN": "愈铁者的图腾", "name_es_ES": "Tótem de ensalmador férreo", "name_ru_RU": "Тотем железного штопальщика", "name_it_IT": "Totem del Guaritore Ferroso", "name_pt_PT": "Totem do Cerzeferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bladespike Charm", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850999712944031, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bladespike Charm", "name_ko_KR": "칼가시 부적", "name_fr_FR": "Charme pointelame", "name_de_DE": "Klingenstachelanhänger", "name_zh_CN": "刀刺护符", "name_es_ES": "Talismán de puntafilo", "name_ru_RU": "Талисман шипастого клинка", "name_it_IT": "Talismano di Piccolama", "name_pt_PT": "Patuá Gumespinho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118780, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodburn Protector", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9887999892234802, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Bloodburn Protector", "name_ko_KR": "피의 연소 수호물", "name_fr_FR": "Protecteur de brûlure sanguine", "name_de_DE": "Blutfeuerbeschützer", "name_zh_CN": "燃血防御者", "name_es_ES": "Protector quemasangre", "name_ru_RU": "Заступник жгучей крови", "name_it_IT": "Protettore della Combustione del Sangue", "name_pt_PT": "Protetor Fervessange", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118875, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pajeet-Nov's Perpetual Puzzle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3703, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88223, "buy_price": 441115, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962000250816345, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 38, "inv_type": 12, "quality": 3, "name_en_US": "Pajeet-Nov's Perpetual Puzzle", "name_ko_KR": "파지트노브의 영원한 수수께끼", "name_fr_FR": "Enigme perpétuelle de Pajeet-Nov", "name_de_DE": "Pajeet-Novs ewiges Rätsel", "name_zh_CN": "帕吉诺夫的永恒之谜", "name_es_ES": "Puzle perpetuo de Pajeet-Nov", "name_ru_RU": "Неразрешимая головоломка Пажит-Нова", "name_it_IT": "Rompicapo Perpetuo di Pajeet-Nov", "name_pt_PT": "Quebra-cabeça Eterno de Pajeet-Nov", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118876, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Double-Sided Coin", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3181, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 118067, "buy_price": 590337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998999834060669, "flags_1": 524288, "flags_2": 8448, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Lucky Double-Sided Coin", "name_ko_KR": "행운의 양면 동전", "name_fr_FR": "Pièce à deux faces porte-bonheur", "name_de_DE": "Doppelseitige Glücksmünze", "name_zh_CN": "双面幸运金币", "name_es_ES": "Moneda de la suerte de dos caras", "name_ru_RU": "Счастливая монетка с двумя орлами", "name_it_IT": "Moneta Fortunata a Due Facce", "name_pt_PT": "Moeda de Duas Caras Sortuda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118877, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fizzlebang's Folly", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3597, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 49768, "buy_price": 248844, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Fizzlebang's Folly", "name_ko_KR": "피즐뱅의 어리석음", "name_fr_FR": "Folie de Flopboum", "name_de_DE": "Zischknalls Torheit", "name_zh_CN": "菲兹班的愚蠢", "name_es_ES": "Locura de Chispobang", "name_ru_RU": "Причуда Непопамса", "name_it_IT": "Follia di Frizzabum", "name_pt_PT": "Insensatez de Chiabangue", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118878, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Copeland's Clarity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6276, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 118941, "buy_price": 594706, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0073000192642212, "flags_1": 528384, "flags_2": 8448, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Copeland's Clarity", "name_ko_KR": "코프랜드의 청명", "name_fr_FR": "Clarté de Copeland", "name_de_DE": "Copelands Klarsicht", "name_zh_CN": "科普兰的清醒", "name_es_ES": "Claridad de Copeland", "name_ru_RU": "Ясность Коупленда", "name_it_IT": "Lucidità di Copeland", "name_pt_PT": "Clareza de Terranova", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Everblooming Thorny Hibiscus", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3746, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77443, "buy_price": 387217, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0109000205993652, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 38, "inv_type": 12, "quality": 3, "name_en_US": "Everblooming Thorny Hibiscus", "name_ko_KR": "상록숲의 가시투성이 불상화", "name_fr_FR": "Hibiscus épineux sempervirent", "name_de_DE": "Immergrüner Dornenhibiskus", "name_zh_CN": "永茂棘刺木槿", "name_es_ES": "Hibisco espinoso de brote perpetuo", "name_ru_RU": "Вечноцветущая колючая мальва", "name_it_IT": "Ibisco Spinoso Semprefiorente", "name_pt_PT": "Hibisco Espinhento Floreterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118880, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Everburning Candle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7229, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 119803, "buy_price": 599016, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0146000385284424, "flags_1": 524288, "flags_2": 8448, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Everburning Candle", "name_ko_KR": "영원히 타오르는 양초", "name_fr_FR": "Bougie semperardente", "name_de_DE": "Immerflammenkerze", "name_zh_CN": "永燃蜡烛", "name_es_ES": "Vela de llama perpetua", "name_ru_RU": "Негаснущая свеча", "name_it_IT": "Candela Inestinguibile", "name_pt_PT": "Vela da Chama Eterna", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118881, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bajheric Bangle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3746, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 78010, "buy_price": 390051, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 38, "inv_type": 12, "quality": 3, "name_en_US": "Bajheric Bangle", "name_ko_KR": "바제릭 팔찌", "name_fr_FR": "Bracelet de Bajheric", "name_de_DE": "Bajherischer Armreif", "name_zh_CN": "巴赫里克的手镯", "name_es_ES": "Broche de Bajheric", "name_ru_RU": "Бахжерайский браслет", "name_it_IT": "Ciondolo Bajheric", "name_pt_PT": "Pulseira Bajherica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118882, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scabbard of Kyanos", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 120677, "buy_price": 603385, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219999551773071, "flags_1": 524288, "flags_2": 8448, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Scabbard of Kyanos", "name_ko_KR": "키아노스의 칼집", "name_fr_FR": "Fourreau de Kyanos", "name_de_DE": "Degenscheide des Kyanos", "name_zh_CN": "奇亚诺斯的剑鞘", "name_es_ES": "Vaina de Kyanos", "name_ru_RU": "Ножны Кианоса", "name_it_IT": "Fodero di Kyanos", "name_pt_PT": "Bainha de Kyanos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118883, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bronzed Elekk Statue", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5510, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90826, "buy_price": 454133, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255999565124512, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Bronzed Elekk Statue", "name_ko_KR": "청동 입힌 엘레크 조각상", "name_fr_FR": "Statue d'elekk en bronze", "name_de_DE": "Talmielekkstatue", "name_zh_CN": "雷象铜像", "name_es_ES": "Estatua de elekk de bronce", "name_ru_RU": "Покрытая бронзой фигурка элекка", "name_it_IT": "Statua di Elekk di Bronzo", "name_pt_PT": "Estátua de Elekk de Bronze", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118884, "race_mask": 18446744073709551615, "desc": "Should've left a long time ago.", "pad2": "", "pad1": "", "pad0": "", "name": "Kyb's Foolish Perseverance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 14934, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 121539, "buy_price": 607695, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0292999744415283, "flags_1": 524288, "flags_2": 8448, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Kyb's Foolish Perseverance", "name_ko_KR": "킵의 어리석은 끈기", "name_fr_FR": "Persévérance absurde de Kyb", "name_de_DE": "Kybs törichte Beharrlichkeit", "name_zh_CN": "齐布的愚忠", "name_es_ES": "Perseverancia insensata de Kyb", "name_ru_RU": "Бессмысленное упрямство Киба", "name_it_IT": "Perseveranza Folle di Kyb", "name_pt_PT": "Perseverança Tola de Kyb", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 118936, "race_mask": 18446744073709551615, "desc": "The words are written in an ink so dark it seems to pull light away from the pages.", "pad2": "", "pad1": "", "pad0": "", "name": "Manual of Void-Calling", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156618, "buy_price": 626474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994999766349792, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Manual of Void-Calling", "name_ko_KR": "공허 소환 안내서", "name_fr_FR": "Manuel d'invocation du Vide", "name_de_DE": "Anleitung zum Leerenrufen", "name_zh_CN": "虚空召唤手册", "name_es_ES": "Manual de llamada del Vacío", "name_ru_RU": "Учебник призыва Бездны", "name_it_IT": "Manuale dell'Evocazione del Vuoto", "name_pt_PT": "Manual de Evocação Caótica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119192, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ironspike Chew Toy", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4426, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113651, "buy_price": 568257, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624999761581421, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Ironspike Chew Toy", "name_ko_KR": "강철쐐기 노리개", "name_fr_FR": "Jouet à mâcher lance-de-fer", "name_de_DE": "Kauspielzeug mit Eisenstacheln", "name_zh_CN": "铁刺狗玩具", "name_es_ES": "Mordedor Pinchoférreo", "name_ru_RU": "Игрушка для питомца с железными шипами", "name_it_IT": "Giocattolo con Punte di Ferro", "name_pt_PT": "Brinquedinho de Morder de Espigaférrea", "on_use": false, "id_encounter": 1122, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 119193, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of Screaming Spirits", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6283, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 114088, "buy_price": 570441, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 524288, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Horn of Screaming Spirits", "name_ko_KR": "울부짖는 영혼의 뿔피리", "name_fr_FR": "Cor des esprits hurlants", "name_de_DE": "Horn der kreischenden Geister", "name_zh_CN": "尖啸之魂号角", "name_es_ES": "Cuerno de espíritus aulladores", "name_ru_RU": "Рог ревущих духов", "name_it_IT": "Corno degli Spiriti Urlanti", "name_pt_PT": "Chifre dos Espíritos Gritantes", "on_use": false, "id_encounter": 1123, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 119194, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goren Soul Repository", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6284, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1051, "buy_price": 5257, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8192, "flags_3": 16, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Goren Soul Repository", "name_ko_KR": "고렌 영혼 보관소", "name_fr_FR": "Collecteur d'âmes goren", "name_de_DE": "Gorenseelensammler", "name_zh_CN": "鬣蜥人灵魂容器", "name_es_ES": "Repositorio de almas goren", "name_ru_RU": "Хранилище души горена", "name_it_IT": "Lanterna d'Anime dei Goren", "name_pt_PT": "Repositório de Almas de Goren", "on_use": false, "id_encounter": 1202, "id_journal_instance": 457, "id_map": 1205, "instance_type": 2}, {"id": 119483, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0069999694824219, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119484, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.010699987411499, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9664999842643738, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119495, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9775000214576721, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Defensor de Pedra da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119502, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0297000408172607, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119505, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0406999588012695, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9810000061988831, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119519, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0184999704360962, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9624999761581421, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119534, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119547, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0477999448776245, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119550, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119562, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0292999744415283, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119565, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.96670001745224, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0218000411987305, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Defensor de Pedra do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119582, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9556000232696533, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119595, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0032999515533447, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119600, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.048200011253357, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119606, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9700999855995178, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119610, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9847999811172485, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119628, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9772999882698059, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d'âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119631, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0148999691009521, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d'âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9624999761581421, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d'âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9661999940872192, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d'âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119653, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0220999717712402, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119656, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0331000089645386, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Defensor de Pedra Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9513999819755554, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119664, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9889000058174133, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119672, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0183000564575195, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119676, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0329999923706055, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119693, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0218000411987305, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119696, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9592000246047974, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0371999740600586, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119713, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.048200011253357, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9553999900817871, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119718, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9664999842643738, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119740, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8282, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9736999869346619, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119743, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.011199951171875, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119756, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9588000178337097, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119759, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.996399998664856, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119787, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4495, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0255999565124512, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119788, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0292999744415283, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119796, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6717, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9850999712944031, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119799, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7626, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9961000084877014, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Defensor de Pedra do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119805, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4444, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0181000232696533, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119808, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5101, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 20, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9556000232696533, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119926, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86248, "buy_price": 431240, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739000201225281, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115149, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Conquest", "name_ko_KR": "야성적인 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant primordial", "name_de_DE": "Eroberungsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente primigenio", "name_ru_RU": "Жетон завоевания необузданного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Primordiale", "name_pt_PT": "Distintivo da Conquista do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119927, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86575, "buy_price": 432879, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115150, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Conquest", "name_ko_KR": "야성적인 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant primordial", "name_de_DE": "Eroberungsinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente primigenio", "name_ru_RU": "Знак завоевания необузданного бойца", "name_it_IT": "Fregio della Conquista del Combattente Primordiale", "name_pt_PT": "Insígnia da Conquista do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119928, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86903, "buy_price": 434517, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9812999963760376, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115151, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Cruelty", "name_ko_KR": "야성적인 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant primordial", "name_de_DE": "Grausamkeitsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente primigenio", "name_ru_RU": "Эмблема жестокости необузданного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Primordiale", "name_pt_PT": "Emblema da Crueldade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119929, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87222, "buy_price": 436111, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115152, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Tenacity", "name_ko_KR": "야성적인 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant primordial", "name_de_DE": "Hartnäckigkeitsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente primigenio", "name_ru_RU": "Эмблема упорства необузданного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Primordiale", "name_pt_PT": "Emblema da Tenacidade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119930, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87549, "buy_price": 437749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115153, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Emblem of Meditation", "name_ko_KR": "야성적인 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant primordial", "name_de_DE": "Meditationsemblem des wilden Kämpfers", "name_zh_CN": "原祖争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente primigenio", "name_ru_RU": "Эмблема медитации необузданного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Primordiale", "name_pt_PT": "Emblema da Meditação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119931, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87877, "buy_price": 439388, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115154, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Dominance", "name_ko_KR": "야성적인 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant primordial", "name_de_DE": "Vorherrschaftsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente primigenio", "name_ru_RU": "Жетон господства необузданного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Primordiale", "name_pt_PT": "Distintivo da Dominância do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119932, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 809, "buy_price": 4049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115155, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Dominance", "name_ko_KR": "야성적인 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant primordial", "name_de_DE": "Vorherrschaftsinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente primigenio", "name_ru_RU": "Знак господства необузданного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Primordiale", "name_pt_PT": "Insígnia da Dominância do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119933, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88524, "buy_price": 442620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9995999932289124, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115156, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Cruelty", "name_ko_KR": "야성적인 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant primordial", "name_de_DE": "Grausamkeitsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente orgulloso", "name_ru_RU": "Медальон жестокости необузданного бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Primordiale", "name_pt_PT": "Medalhão da Crueldade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119934, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88851, "buy_price": 444258, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0032999515533447, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115157, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Tenacity", "name_ko_KR": "야성적인 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant primordial", "name_de_DE": "Hartnäckigkeitsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente primigenio", "name_ru_RU": "Медальон упорства необузданного бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Primordiale", "name_pt_PT": "Medalhão da Tenacidade do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119935, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91526, "buy_price": 457631, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115158, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Meditation", "name_ko_KR": "야성적인 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant primordial", "name_de_DE": "Meditationsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente primigenio", "name_ru_RU": "Медальон медитации необузданного бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Primordiale", "name_pt_PT": "Medalhão da Meditação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119936, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91853, "buy_price": 459269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115159, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Victory", "name_ko_KR": "야성적인 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant primordial", "name_de_DE": "Siegesabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente primigenio", "name_ru_RU": "Жетон победы необузданного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Primordiale", "name_pt_PT": "Distintivo da Vitória do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 119937, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92172, "buy_price": 460863, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0407999753952026, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115160, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Insignia of Victory", "name_ko_KR": "야성적인 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant primordial", "name_de_DE": "Siegesinsigne des wilden Kämpfers", "name_zh_CN": "原祖争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente primigenio", "name_ru_RU": "Знак победы необузданного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Primordiale", "name_pt_PT": "Insígnia da Vitória do Combatente Primevo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 120049, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 91853, "buy_price": 459269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 115521, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 1681, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Badge of Adaptation", "name_ko_KR": "야성적인 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant primordial", "name_de_DE": "Anpassungsabzeichen des wilden Kämpfers", "name_zh_CN": "原祖争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente primigenio", "name_ru_RU": "Жетон адаптации необузданного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Primordiale", "name_pt_PT": "Distintivo da Adaptação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 120337, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Novice Rylak Hunter's Horn", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74348, "buy_price": 371742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Novice Rylak Hunter's Horn", "name_ko_KR": "풋내기 라일라크 사냥꾼의 뿔피리", "name_fr_FR": "Cor du chasseur de rylaks débutant", "name_de_DE": "Horn des Rylakjägernovizen", "name_zh_CN": "新晋双头飞龙猎手的号角", "name_es_ES": "Cuerno de cazador de rylaks novicio", "name_ru_RU": "Рог начинающего охотника на рилаков", "name_it_IT": "Corno del Cacciatore Novizio di Rylak", "name_pt_PT": "Trompa do Caçador de Rylak Novato", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 120341, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burning Pearl", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 48856, "buy_price": 244282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 40, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 36, "inv_type": 12, "quality": 3, "name_en_US": "Burning Pearl", "name_ko_KR": "불타는 진주", "name_fr_FR": "Perle ardente", "name_de_DE": "Brennende Perle", "name_zh_CN": "燃烧的珍珠", "name_es_ES": "Perla ardiente", "name_ru_RU": "Горящая жемчужина", "name_it_IT": "Perla Ardente", "name_pt_PT": "Pérola Incandescente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121014, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Preserved Blue Dragon Scale", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 221007, "buy_price": 1105039, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9667999744415283, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Preserved Blue Dragon Scale", "name_ko_KR": "보존된 푸른용 비늘", "name_fr_FR": "Ecaille de dragon bleu préservée", "name_de_DE": "Konservierte blaue Drachenschuppe", "name_zh_CN": "珍藏的蓝龙鳞片", "name_es_ES": "Escama de dragón azul conservada", "name_ru_RU": "Сохранившаяся чешуйка синего дракона", "name_it_IT": "Scaglia di Drago Blu Conservata", "name_pt_PT": "Escama de Dragão Azul Preservada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121015, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Academy Faculty Pin", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 221853, "buy_price": 1109268, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Academy Faculty Pin", "name_ko_KR": "대학 교직원 핀", "name_fr_FR": "Epingle de la faculté de l'académie", "name_de_DE": "Anstecknadel der akademischen Fakultät", "name_zh_CN": "学院教员胸针", "name_es_ES": "Alfiler de profesor de la Academia", "name_ru_RU": "Булавка преподавательницы академии", "name_it_IT": "Spilla da Professore dell'Accademia", "name_pt_PT": "Broche de Professor Universitário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corsair's Spyglass", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 222699, "buy_price": 1113497, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9742000102996826, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Corsair's Spyglass", "name_ko_KR": "해적의 망원경", "name_fr_FR": "Longue-vue de corsaire", "name_de_DE": "Fernrohr des Korsaren", "name_zh_CN": "海盗的望远镜", "name_es_ES": "Catalejo de corsario", "name_ru_RU": "Подзорная труба корсара", "name_it_IT": "Cannocchiale del Corsaro", "name_pt_PT": "Luneta do Corsário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121069, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brulwurm Scale", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 239615, "buy_price": 1198078, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048200011253357, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Brulwurm Scale", "name_ko_KR": "브룰용 비늘", "name_fr_FR": "Ecaille de verbrouf", "name_de_DE": "Brulwurmschuppe", "name_zh_CN": "双生虫鳞片", "name_es_ES": "Escama de Brulgusano", "name_ru_RU": "Чешуйка червебрула", "name_it_IT": "Scaglia di Vermebrul", "name_pt_PT": "Escama de Minholesk", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121070, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hexweaver's Charm", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217556, "buy_price": 1087780, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95169997215271, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Hexweaver's Charm", "name_ko_KR": "사술사의 부적", "name_fr_FR": "Charme de trame-sort", "name_de_DE": "Glücksbringer der Fluchweberin", "name_zh_CN": "妖术师的护身符", "name_es_ES": "Talismán de tejemales", "name_ru_RU": "Талисман проклинательницы", "name_it_IT": "Talismano del Tessimalocchio", "name_pt_PT": "Patuá do Tramandinga", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121071, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enchanted Roc Feather", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218401, "buy_price": 1092009, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Enchanted Roc Feather", "name_ko_KR": "마법 깃든 로크 깃털", "name_fr_FR": "Plume de roc enchantée", "name_de_DE": "Verzauberte Rocfeder", "name_zh_CN": "魔化鹏羽", "name_es_ES": "Pluma de roc encantada", "name_ru_RU": "Зачарованное перо руха", "name_it_IT": "Piuma di Grifalco Incantata", "name_pt_PT": "Pena de Roca Encantada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121124, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormforged Idol", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218493, "buy_price": 1092466, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormforged Idol", "name_ko_KR": "폭풍으로 벼려낸 우상", "name_fr_FR": "Idole de Forge-foudre", "name_de_DE": "Sturmgeschmiedeter Götze", "name_zh_CN": "雷铸雕像", "name_es_ES": "Ídolo Tronaforjado", "name_ru_RU": "Закаленный бурей идол", "name_it_IT": "Idolo dei Forgiatuono", "name_pt_PT": "Ídolo Forjado em Tempestade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121125, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune-Etched Bark", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 219339, "buy_price": 1096695, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595000147819519, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Rune-Etched Bark", "name_ko_KR": "룬이 새겨진 나무껍질", "name_fr_FR": "Ecorce gravée de runes", "name_de_DE": "Runenverzierte Borke", "name_zh_CN": "符文蚀刻树皮", "name_es_ES": "Corteza con runas grabadas", "name_ru_RU": "Кора с вырезанными рунами", "name_it_IT": "Corteccia con Rune Intagliate", "name_pt_PT": "Casca Entalhada com Runas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121126, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormwing Tail Tip", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 220184, "buy_price": 1100924, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9631999731063843, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormwing Tail Tip", "name_ko_KR": "폭풍날개 꼬리 끄트머리", "name_fr_FR": "Extrémité de queue d'aile-tempête", "name_de_DE": "Sturmschwingenschwanzende", "name_zh_CN": "风暴之翼尾尖", "name_es_ES": "Punta de cola de Alatormenta", "name_ru_RU": "Чешуйка штормокрыла", "name_it_IT": "Punta di Coda di Alatempestosa", "name_pt_PT": "Ponta de Cauda de Asatempéria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121179, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Malorne", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 237078, "buy_price": 1185391, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0370999574661255, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mark of Malorne", "name_ko_KR": "말로른의 징표", "name_fr_FR": "Marque de Malorne", "name_de_DE": "Mal von Malorne", "name_zh_CN": "玛洛恩印记", "name_es_ES": "Marca de Malorne", "name_ru_RU": "Знак Малорна", "name_it_IT": "Marchio di Malorne", "name_pt_PT": "Marca de Malorne", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121180, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Lore", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 237924, "buy_price": 1189620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0407999753952026, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mark of Lore", "name_ko_KR": "지식의 징표", "name_fr_FR": "Marque du savoir", "name_de_DE": "Mal der Lehren", "name_zh_CN": "知识印记", "name_es_ES": "Marca de conocimiento", "name_ru_RU": "Знак мудрости", "name_it_IT": "Marchio della Conoscenza", "name_pt_PT": "Marca da Tradição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121181, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mangler's Mark", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 238769, "buy_price": 1193849, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0444999933242798, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mangler's Mark", "name_ko_KR": "분쇄자의 징표", "name_fr_FR": "Marque de mutilateur", "name_de_DE": "Mal des Zerfleischers", "name_zh_CN": "绞肉者印记", "name_es_ES": "Marca del mutilador", "name_ru_RU": "Знак уничтожителя", "name_it_IT": "Marchio del Dilaniatore", "name_pt_PT": "Marca do Mutilador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121234, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Koralune Keepsake", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 232803, "buy_price": 1164017, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.018399953842163, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Koralune Keepsake", "name_ko_KR": "코랄룬 기념품", "name_fr_FR": "Souvenir de Koralune", "name_de_DE": "Andenken der Koralune", "name_zh_CN": "库拉伦纪念品", "name_es_ES": "Recuerdo de Koralune", "name_ru_RU": "Коралунский сувенир", "name_it_IT": "Pegno di Koralune", "name_pt_PT": "Lembrança Koraluna", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121235, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sashj'tar Brooch", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 233649, "buy_price": 1168246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sashj'tar Brooch", "name_ko_KR": "사쉬즈타르 브로치", "name_fr_FR": "Broche sashj'tar", "name_de_DE": "Brosche der Sashj'tar", "name_zh_CN": "萨吉塔胸针", "name_es_ES": "Broche Sashj'tar", "name_ru_RU": "Садж'тарская брошь", "name_it_IT": "Spilla dei Sashj'tar", "name_pt_PT": "Broche Sashj'tar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121236, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dawnswood Hunter's Fletchings", "id_expansion": 6, "dmg_range": 0.6000000238418579, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 234472, "buy_price": 1172361, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0256999731063843, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 1700, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Dawnswood Hunter's Fletchings", "name_ko_KR": "새벽숲 사냥꾼의 화살 깃", "name_fr_FR": "Empennages de chasseur d'Aubesylve", "name_de_DE": "Pfeilfedern des Morgenforstjägers", "name_zh_CN": "晨曦林地猎手箭羽", "name_es_ES": "Remates del cazador Bosque del Alba", "name_ru_RU": "Оперение стрелы охотника Рассветного леса", "name_it_IT": "Penne di Frecce del Cacciatore di Bosco d'Alba", "name_pt_PT": "Flechas do Caçador da Floresta da Aurora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121287, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightmare Bark", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 304911, "buy_price": 1524557, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightmare Bark", "name_ko_KR": "악몽 나무껍질", "name_fr_FR": "Ecorce cauchemardesque", "name_de_DE": "Alptraumborke", "name_zh_CN": "梦魇树皮", "name_es_ES": "Corteza de la Pesadilla", "name_ru_RU": "Кора Кошмара", "name_it_IT": "Corteccia dell'Incubo", "name_pt_PT": "Casca do Pesadelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightmare Thorn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 308173, "buy_price": 1540868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0297000408172607, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightmare Thorn", "name_ko_KR": "악몽 가시", "name_fr_FR": "Epine cauchemardesque", "name_de_DE": "Alptraumdorn", "name_zh_CN": "梦魇之棘", "name_es_ES": "Espina de la Pesadilla", "name_ru_RU": "Шип Кошмара", "name_it_IT": "Spina dell'Incubo", "name_pt_PT": "Espinho do Pesadelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightmare Bloom", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 309251, "buy_price": 1546255, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0333000421524048, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightmare Bloom", "name_ko_KR": "악몽 꽃", "name_fr_FR": "Floraison cauchemardesque", "name_de_DE": "Alptraumblüte", "name_zh_CN": "梦魇花蕾", "name_es_ES": "Corola de la Pesadilla", "name_ru_RU": "Кошмарный цветок", "name_it_IT": "Germoglio dell'Incubo", "name_pt_PT": "Flor do Pesadelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121489, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valiana's Secret Recipe", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420811, "buy_price": 2104059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9776999950408936, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Valiana's Secret Recipe", "name_ko_KR": "발리아나의 양조 비법", "name_fr_FR": "Recette secrète de Valiana", "name_de_DE": "Valianas Geheimrezept", "name_zh_CN": "瓦里亚娜的秘方", "name_es_ES": "Receta secreta de Valiana", "name_ru_RU": "Тайный рецепт Валианы", "name_it_IT": "Ricetta Segreta di Valiana", "name_pt_PT": "Receita Secreta de Valiana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Precious Ookin' Coin", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72426, "buy_price": 362134, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9814000129699707, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Precious Ookin' Coin", "name_ko_KR": "소중한 우끼끼 동전", "name_fr_FR": "Pièce précieuse oukarde", "name_de_DE": "Verfiddelt wertvolle Münze", "name_zh_CN": "乌克的宝贝硬币", "name_es_ES": "Moneda dingue preciosa", "name_ru_RU": "Драгоценная монета Уки", "name_it_IT": "Moneta Preziosa dell'Uggatore", "name_pt_PT": "Moeda Fedida Preciosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121491, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shalrala's Engraved Goblet", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72700, "buy_price": 363500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850999712944031, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Shalrala's Engraved Goblet", "name_ko_KR": "샬랄라의 문양이 새겨진 술잔", "name_fr_FR": "Coupe ouvragée de Shalrala", "name_de_DE": "Shalralas gravierter Kelch", "name_zh_CN": "莎莱拉的雕饰酒杯", "name_es_ES": "Cáliz grabado de Shalrala", "name_ru_RU": "Чеканный кубок Шалралы", "name_it_IT": "Calice Inciso di Shalrala", "name_pt_PT": "Cálice Entalhado de Shalrala", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiny Ookin' Bauble", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72965, "buy_price": 364828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886999726295471, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Shiny Ookin' Bauble", "name_ko_KR": "반짝이는 장식품", "name_fr_FR": "Babiole brillante oukarde", "name_de_DE": "Verfiddelte Glänzkugel", "name_zh_CN": "乌克的闪光饰品", "name_es_ES": "Adorno dingue lustroso", "name_ru_RU": "Блестящая безделушка Уки", "name_it_IT": "Bolla dell'Uggatore Luccicante", "name_pt_PT": "Bibelô Fedido Brilhoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121493, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Liastrin's Wine Taster", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 427138, "buy_price": 2135694, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9923999905586243, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Liastrin's Wine Taster", "name_ko_KR": "리아스트린의 와인 시음기", "name_fr_FR": "Tâte-vin de Liastrin", "name_de_DE": "Liastrins Weinverkoster", "name_zh_CN": "莉娅丝汀的试酒碟", "name_es_ES": "Catador de vinos de Liastrin", "name_ru_RU": "Дегустатор вина Лиастрин", "name_it_IT": "Assaggia Vino di Liastrin", "name_pt_PT": "Provador de Vinho de Liastrin", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121494, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mundane Ookin' Curio", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75467, "buy_price": 377337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226000547409058, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mundane Ookin' Curio", "name_ko_KR": "무난한 우끼끼 장식", "name_fr_FR": "Bibelot quelconque oukard", "name_de_DE": "Normal verfiddelte Kuriosität", "name_zh_CN": "乌克的普通古玩", "name_es_ES": "Bibelot dingue corriente", "name_ru_RU": "Обычная безделушка Уки", "name_it_IT": "Rarità dell'Uggatore", "name_pt_PT": "Treco Fedido Mundano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121568, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blessing of the Banshee Queen", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 516492, "buy_price": 2582460, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Blessing of the Banshee Queen", "name_ko_KR": "밴시 여왕의 축복", "name_fr_FR": "Bénédiction de la reine banshee", "name_de_DE": "Segen der Bansheekönigin", "name_zh_CN": "女妖之王的祝福", "name_es_ES": "Bendición de la Reina Alma en Pena", "name_ru_RU": "Благословение Королевы-банши", "name_it_IT": "Benedizione della Regina Banshee", "name_pt_PT": "Bênção da Rainha Banshee", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121570, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of the Forsaken", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89214, "buy_price": 446074, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0074000358581543, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Might of the Forsaken", "name_ko_KR": "포세이큰의 힘", "name_fr_FR": "Puissance des Réprouvés", "name_de_DE": "Macht der Verlassenen", "name_zh_CN": "被遗忘者之力", "name_es_ES": "Poder de los Renegados", "name_ru_RU": "Сила Отрекшихся", "name_it_IT": "Vigore del Reietto", "name_pt_PT": "Poder dos Renegados", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sylvanas' Barbed Arrow", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89861, "buy_price": 449306, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0147000551223755, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sylvanas' Barbed Arrow", "name_ko_KR": "실바나스의 가시 화살", "name_fr_FR": "Flèche barbelée de Sylvanas", "name_de_DE": "Sylvanas' gezackter Pfeil", "name_zh_CN": "希尔瓦娜斯的倒钩箭", "name_es_ES": "Flecha dentada de Sylvanas", "name_ru_RU": "Стрела Сильваны с зазубренным наконечником", "name_it_IT": "Freccia Uncinata di Sylvanas", "name_pt_PT": "Flecha Serrilhada de Sylvana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Temple Priestess' Charm", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75445, "buy_price": 377226, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0223000049591064, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Temple Priestess' Charm", "name_ko_KR": "사원 여사제의 부적", "name_fr_FR": "Charme de prêtresse du temple", "name_de_DE": "Talisman der Tempelpriesterin", "name_zh_CN": "神殿女祭司的护符", "name_es_ES": "Talismán de la sacerdotisa del templo", "name_ru_RU": "Амулет жрицы храма", "name_it_IT": "Talismano della Sacerdotessa del Tempio", "name_pt_PT": "Patuá da Sacerdotisa do Templo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121649, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vibrant Temple Masonry", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75991, "buy_price": 379957, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0297000408172607, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Vibrant Temple Masonry", "name_ko_KR": "생동감 넘치는 사원 석조 장식", "name_fr_FR": "Pierre de construction de temple éclatante", "name_de_DE": "Mauerwerk des prächtigen Tempels", "name_zh_CN": "震颤的神殿石砖", "name_es_ES": "Mampostería del templo radiante", "name_ru_RU": "Яркие камни храма", "name_it_IT": "Muratura Vibrante del Tempio", "name_pt_PT": "Alvenaria Vibrante do Templo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121651, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkfiend Dreadbringer Horn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446335, "buy_price": 2231675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0369999408721924, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Darkfiend Dreadbringer Horn", "name_ko_KR": "어둠마귀 공포인도자 뿔", "name_fr_FR": "Corne de porteffroi sombrefiel", "name_de_DE": "Horn des Verdammnisbringers der Schattenteufel", "name_zh_CN": "暗魔恐怖使者的角", "name_es_ES": "Cuerno de extiendevapor maligno oscuro", "name_ru_RU": "Рог мракобеса-ужасня", "name_it_IT": "Corno dell'Araldo del Terrore Cuortruce", "name_pt_PT": "Chifre de Deimarauto Demonero", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121652, "race_mask": 18446744073709551615, "desc": "It held on till the bitter end.", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Leaf", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 846, "buy_price": 4231, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0406999588012695, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ancient Leaf", "name_ko_KR": "고대의 잎사귀", "name_fr_FR": "Feuille ancienne", "name_de_DE": "Uraltes Blatt", "name_zh_CN": "远古树叶", "name_es_ES": "Hoja vieja", "name_ru_RU": "Древний лист", "name_it_IT": "Antica Foglia", "name_pt_PT": "Folha Antiga", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Navarrogg's Guidance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77091, "buy_price": 385455, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Navarrogg's Guidance", "name_ko_KR": "나바로그의 인도", "name_fr_FR": "Soutien de Navarrogg", "name_de_DE": "Navarroggs Führung", "name_zh_CN": "纳瓦罗格的指引", "name_es_ES": "Consejo de Navarrogg", "name_ru_RU": "Наставление Наваррогга", "name_it_IT": "Guida di Navarrogg", "name_pt_PT": "Orientação de Navarrogg", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cleansed Poison Idol", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77364, "buy_price": 386820, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cleansed Poison Idol", "name_ko_KR": "정화된 독 우상", "name_fr_FR": "Idole empoisonnée purifiée", "name_de_DE": "Geläuterter Giftgötze", "name_zh_CN": "净化的剧毒雕像", "name_es_ES": "Ídolo de veneno purificado", "name_ru_RU": "Очищенный ядовитый идол", "name_it_IT": "Idolo Velenoso Purificato", "name_pt_PT": "Ídolo Venenoso Purificado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121728, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stonedark Insignia", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 409707, "buy_price": 2048536, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9519000053405762, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stonedark Insignia", "name_ko_KR": "돌어둠 휘장", "name_fr_FR": "Insigne sombre-pierre", "name_de_DE": "Dunkelsteininsignien", "name_zh_CN": "黯石徽章", "name_es_ES": "Insignia Piedra Lóbrega", "name_ru_RU": "Знак племени Темного Камня", "name_it_IT": "Fregio di Pietrascura", "name_pt_PT": "Insígnia Pedrescura", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121729, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ormgul's Bug Sprayer", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70515, "buy_price": 352577, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9555000066757202, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ormgul's Bug Sprayer", "name_ko_KR": "오름굴의 벌레 분무기", "name_fr_FR": "Pulvérisateur à insectes d'Ormgul", "name_de_DE": "Ormguls Käferspray", "name_zh_CN": "奥姆古尔的杀虫剂", "name_es_ES": "Pulverizador de insectos de Ormgul", "name_ru_RU": "Опрыскиватель Ормгула", "name_it_IT": "Repellente di Ormgul", "name_pt_PT": "Borrifador para Insetos de Ormgul", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121730, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ironbull's Sacrifice", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 412849, "buy_price": 2064246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592000246047974, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ironbull's Sacrifice", "name_ko_KR": "아이언불의 희생", "name_fr_FR": "Sacrifice de Buffle-de-Fer", "name_de_DE": "Eisenstiers Opfer", "name_zh_CN": "铁牛的牺牲", "name_es_ES": "Sacrificio de Asta Férrea", "name_ru_RU": "Жертва Железного Быка", "name_it_IT": "Toro Ferreo Sacrificale", "name_pt_PT": "Sacrifício do Touro de Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121731, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Poison-Resistant Pumpkin", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 414441, "buy_price": 2072208, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9628999829292297, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Poison-Resistant Pumpkin", "name_ko_KR": "독 저항 호박", "name_fr_FR": "Potiron résistant aux poisons", "name_de_DE": "Giftresistenter Kürbis", "name_zh_CN": "抗毒南瓜", "name_es_ES": "Calabaza resistente al veneno", "name_ru_RU": "Устойчивая к яду тыква", "name_it_IT": "Zucca Resistente al Veleno", "name_pt_PT": "Abóbora Resistente a Veneno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121806, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountain Rage Shaker", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 205107, "buy_price": 1025537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Mountain Rage Shaker", "name_ko_KR": "산의 분노 진동기", "name_fr_FR": "Hochet de rage de la montagne", "name_de_DE": "Bergzornerschütterer", "name_zh_CN": "群山的震怒", "name_es_ES": "Enfurecedor de montaña", "name_ru_RU": "Гневный сотрясатель гор", "name_it_IT": "Scuotirabbia della Montagna", "name_pt_PT": "Chocalho de Raiva da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121808, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nether Conductors", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 206650, "buy_price": 1033251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Nether Conductors", "name_ko_KR": "황천의 전도체", "name_fr_FR": "Conducteurs du Néant", "name_de_DE": "Netherleiter", "name_zh_CN": "虚空导体", "name_es_ES": "Conductores abisales", "name_ru_RU": "Проводники Пустоты", "name_it_IT": "Conduttori Fatui", "name_pt_PT": "Condutores Etéreos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pocket Void Portal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1367, "buy_price": 6838, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Pocket Void Portal", "name_ko_KR": "휴대용 공허의 차원문", "name_fr_FR": "Portail du Vide de poche", "name_de_DE": "Miniatur-Leerenportal", "name_zh_CN": "便携式虚空传送门", "name_es_ES": "Portal del Vacío de bolsillo", "name_ru_RU": "Карманные врата Бездны", "name_it_IT": "Portale del Vuoto Tascabile", "name_pt_PT": "Portal do Caos de Bolso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121848, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74102, "buy_price": 370511, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.00409996509552, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Inexorable Stone of Battle", "name_ko_KR": "전투의 거침없는 돌", "name_fr_FR": "Pierre de bataille inexorable", "name_de_DE": "Unerbittlicher Stein des Kampfes", "name_zh_CN": "严酷战争之石", "name_es_ES": "Piedra de batalla inexorable", "name_ru_RU": "Негнущийся камень битвы", "name_it_IT": "Pietra della Battaglia Inflessibile", "name_pt_PT": "Pedra Inexorável de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74375, "buy_price": 371876, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0077999830245972, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Inexorable Idol of Battle", "name_ko_KR": "전투의 거침없는 우상", "name_fr_FR": "Idole de bataille inexorable", "name_de_DE": "Unerbittlicher Götze des Kampfes", "name_zh_CN": "严酷战争雕像", "name_es_ES": "Ídolo de batalla inexorable", "name_ru_RU": "Негнущийся идол битвы", "name_it_IT": "Idolo della Battaglia Inflessibile", "name_pt_PT": "Ídolo Inexorável de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121852, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75187, "buy_price": 375935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Inexorable Defender Idol", "name_ko_KR": "거침없는 수호 우상", "name_fr_FR": "Idole de défenseur inexorable", "name_de_DE": "Unerbittlicher Verteidigergötze", "name_zh_CN": "严酷防御者雕像", "name_es_ES": "Ídolo defensor inexorable", "name_ru_RU": "Негнущийся идол защитника", "name_it_IT": "Idolo della Difesa Inflessibile", "name_pt_PT": "Ídolo Protetor Inexorável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121855, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75998, "buy_price": 379994, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298000574111938, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Inexorable Defender Stone", "name_ko_KR": "거침없는 수호 돌", "name_fr_FR": "Pierre de défenseur inexorable", "name_de_DE": "Unerbittlicher Verteidigerstein", "name_zh_CN": "严酷防御者之石", "name_es_ES": "Piedra defensora inexorable", "name_ru_RU": "Негнущийся камень защитника", "name_it_IT": "Pietra della Difesa Inflessibile", "name_pt_PT": "Pedra Inexorável Protetora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121860, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77356, "buy_price": 386783, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048200011253357, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Idol of Rage", "name_ko_KR": "분노의 양육자 우상", "name_fr_FR": "Idole de rage nourricière", "name_de_DE": "Fürsorgergötze des Zorns", "name_zh_CN": "滋养者狂暴雕像", "name_es_ES": "Ídolo de ira nutricio", "name_ru_RU": "Воспитательский идол ярости", "name_it_IT": "Idolo della Rabbia Corroborante", "name_pt_PT": "Ídolo da Raiva do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121863, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70781, "buy_price": 353906, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9591000080108643, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Stone of Rage", "name_ko_KR": "분노의 양육자 돌", "name_fr_FR": "Pierre de rage nourricière", "name_de_DE": "Fürsorgerstein des Zorns", "name_zh_CN": "滋养者狂暴之石", "name_es_ES": "Piedra de ira nutricia", "name_ru_RU": "Воспитательский камень ярости", "name_it_IT": "Pietra della Rabbia Corroborante", "name_pt_PT": "Pedra da Raiva do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121866, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Idol of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73548, "buy_price": 367743, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Idol of Durability", "name_ko_KR": "내구성의 양육자 우상", "name_fr_FR": "Idole de durabilité nourricière", "name_de_DE": "Fürsorgergötze der Haltbarkeit", "name_zh_CN": "滋养者坚韧雕像", "name_es_ES": "Ídolo de durabilidad nutricio", "name_ru_RU": "Воспитательский прочный идол", "name_it_IT": "Idolo dell'Integrità Corroborante", "name_pt_PT": "Ídolo da Durabilidade do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121869, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Stone of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74360, "buy_price": 371802, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007599949836731, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Stone of Durability", "name_ko_KR": "내구성의 양육자 돌", "name_fr_FR": "Pierre de durabilité nourricière", "name_de_DE": "Fürsorgerstein der Haltbarkeit", "name_zh_CN": "滋养者坚韧之石", "name_es_ES": "Piedra de durabilidad nutricia", "name_ru_RU": "Воспитательский камень прочности", "name_it_IT": "Pietra dell'Integrità Corroborante", "name_pt_PT": "Pedra da Durabilidade do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121876, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76257, "buy_price": 381285, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0333000421524048, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Idol of Destruction", "name_ko_KR": "파괴의 양육자 우상", "name_fr_FR": "Idole de destruction nourricière", "name_de_DE": "Fürsorgergötze der Zerstörung", "name_zh_CN": "滋养者毁灭雕像", "name_es_ES": "Ídolo de destrucción nutricio", "name_ru_RU": "Воспитательский идол разрушения", "name_it_IT": "Idolo della Distruzione Corroborante", "name_pt_PT": "Ídolo da Destruição do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121879, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77076, "buy_price": 385381, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0443999767303467, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Stone of Destruction", "name_ko_KR": "파괴의 양육자 돌", "name_fr_FR": "Pierre de destruction nourricière", "name_de_DE": "Fürsorgerstein der Zerstörung", "name_zh_CN": "滋养者毁灭之石", "name_es_ES": "Piedra de destrucción nutricia", "name_ru_RU": "Воспитательский камень разрушения", "name_it_IT": "Pietra della Distruzione Corroborante", "name_pt_PT": "Pedra da Destruição do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121882, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72456, "buy_price": 362282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818000197410583, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Idol of Wisdom", "name_ko_KR": "지혜의 양육자 우상", "name_fr_FR": "Idole de sagesse nourricière", "name_de_DE": "Fürsorgergötze der Weisheit", "name_zh_CN": "滋养者智慧雕像", "name_es_ES": "Ídolo de sabiduría nutricio", "name_ru_RU": "Воспитательский идол мудрости", "name_it_IT": "Idolo della Saggezza Corroborante", "name_pt_PT": "Ídolo da Sabedoria do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121885, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nurturer Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73268, "buy_price": 366341, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9927999973297119, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nurturer Stone of Wisdom", "name_ko_KR": "지혜의 양육자 돌", "name_fr_FR": "Pierre de sagesse nourricière", "name_de_DE": "Fürsorgerstein der Weisheit", "name_zh_CN": "滋养者智慧之石", "name_es_ES": "Piedra de sabiduría nutricia", "name_ru_RU": "Воспитательский камень мудрости", "name_it_IT": "Pietra della Saggezza Corroborante", "name_pt_PT": "Pedra da Sabedoria do Alimentador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121892, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warscout Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75164, "buy_price": 375824, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0184999704360962, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warscout Idol of Rage", "name_ko_KR": "분노의 전쟁정찰병 우상", "name_fr_FR": "Idole de rage d'éclaireur de guerre", "name_de_DE": "Kriegsspähergötze des Zorns", "name_zh_CN": "战地斥候狂暴雕像", "name_es_ES": "Ídolo de ira de explorador de guerra", "name_ru_RU": "Идол ярости военного разведчика", "name_it_IT": "Idolo della Rabbia dell'Avanscoperta", "name_pt_PT": "Ídolo da Raiva do Batedor da Guerra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121895, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warscout Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75976, "buy_price": 379883, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0295000076293945, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warscout Stone of Rage", "name_ko_KR": "분노의 전쟁정찰병 돌", "name_fr_FR": "Pierre de rage d'éclaireur de guerre", "name_de_DE": "Kriegsspäherstein des Zorns", "name_zh_CN": "战地斥候狂暴之石", "name_es_ES": "Piedra de ira de explorador de guerra", "name_ru_RU": "Камень ярости военного разведчика", "name_it_IT": "Pietra della Rabbia dell'Avanscoperta", "name_pt_PT": "Pedra da Raiva do Batedor da Guerra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121909, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Abstruse Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74345, "buy_price": 371728, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0074000358581543, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Abstruse Idol of Destruction", "name_ko_KR": "파괴의 난해한 우상", "name_fr_FR": "Idole de destruction abstruse", "name_de_DE": "Abstruser Götze der Zerstörung", "name_zh_CN": "晦涩毁灭雕像", "name_es_ES": "Ídolo de destrucción abstruso", "name_ru_RU": "Неясный идол разрушения", "name_it_IT": "Idolo della Distruzione Astruso", "name_pt_PT": "Ídolo Abstruso da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121912, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Abstruse Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77113, "buy_price": 385566, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0448999404907227, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Abstruse Stone of Destruction", "name_ko_KR": "파괴의 난해한 돌", "name_fr_FR": "Pierre de destruction abstruse", "name_de_DE": "Abstruser Stein der Zerstörung", "name_zh_CN": "晦涩毁灭之石", "name_es_ES": "Piedra de destrucción abstrusa", "name_ru_RU": "Неясный камень разрушения", "name_it_IT": "Pietra della Distruzione Astrusa", "name_pt_PT": "Pedra Abstrusa da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121924, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72980, "buy_price": 364902, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9889000058174133, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Defender Stone", "name_ko_KR": "조화로운 수호 돌", "name_fr_FR": "Pierre de défenseur harmonieuse", "name_de_DE": "Harmonischer Verteidigerstein", "name_zh_CN": "谐律防御者之石", "name_es_ES": "Piedra defensora armoniosa", "name_ru_RU": "Гармоничный камень защитника", "name_it_IT": "Pietra della Difesa Armoniosa", "name_pt_PT": "Pedra Harmoniosa Protetora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121925, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73246, "buy_price": 366230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Defender Idol", "name_ko_KR": "조화로운 수호 우상", "name_fr_FR": "Idole de défenseur harmonieuse", "name_de_DE": "Harmonischer Verteidigergötze", "name_zh_CN": "谐律防御者雕像", "name_es_ES": "Ídolo defensor armonioso", "name_ru_RU": "Гармоничный идол защитника", "name_it_IT": "Idolo della Difesa Armonioso", "name_pt_PT": "Ídolo Harmonioso do Defensor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121934, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70257, "buy_price": 351286, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520000219345093, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Idol of Wisdom", "name_ko_KR": "지혜의 조화로운 우상", "name_fr_FR": "Idole de sagesse harmonieuse", "name_de_DE": "Harmonischer Götze der Weisheit", "name_zh_CN": "谐律智慧雕像", "name_es_ES": "Ídolo de sabiduría armonioso", "name_ru_RU": "Гармоничный идол мудрости", "name_it_IT": "Idolo della Saggezza Armonioso", "name_pt_PT": "Ídolo Harmonioso da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121936, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70795, "buy_price": 353979, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592999815940857, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Stone of Wisdom", "name_ko_KR": "지혜의 조화로운 돌", "name_fr_FR": "Pierre de sagesse harmonieuse", "name_de_DE": "Harmonischer Stein der Weisheit", "name_zh_CN": "谐律智慧之石", "name_es_ES": "Piedra de sabiduría armoniosa", "name_ru_RU": "Гармоничный камень мудрости", "name_it_IT": "Pietra della Saggezza Armoniosa", "name_pt_PT": "Pedra Harmoniosa da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121939, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 71615, "buy_price": 358075, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9703999757766724, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Idol of Rage", "name_ko_KR": "분노의 조화로운 우상", "name_fr_FR": "Idole de rage harmonieuse", "name_de_DE": "Harmonischer Götze des Zorns", "name_zh_CN": "谐律狂暴雕像", "name_es_ES": "Ídolo de ira armonioso", "name_ru_RU": "Гармоничный идол ярости", "name_it_IT": "Idolo della Rabbia Armonioso", "name_pt_PT": "Ídolo Harmonioso da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121941, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonious Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72153, "buy_price": 360769, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9776999950408936, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Harmonious Stone of Rage", "name_ko_KR": "분노의 조화로운 돌", "name_fr_FR": "Pierre de rage harmonieuse", "name_de_DE": "Harmonischer Stein des Zorns", "name_zh_CN": "谐律狂暴之石", "name_es_ES": "Piedra de ira armoniosa", "name_ru_RU": "Гармоничный камень ярости", "name_it_IT": "Pietra della Rabbia Armoniosa", "name_pt_PT": "Pedra Harmoniosa da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121949, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76279, "buy_price": 381396, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Idol of Wisdom", "name_ko_KR": "지혜의 황혼파괴자 우상", "name_fr_FR": "Idole de sagesse brise-pénombre", "name_de_DE": "Dämmerbrechergötze der Weisheit", "name_zh_CN": "破晓者智慧雕像", "name_es_ES": "Ídolo de sabiduría de rompeocasos", "name_ru_RU": "Идол мудрости рассеивающего сумерки", "name_it_IT": "Idolo della Saggezza Crepuscolare", "name_pt_PT": "Ídolo Quebranoite da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121952, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77091, "buy_price": 385455, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Stone of Wisdom", "name_ko_KR": "지혜의 황혼파괴자 돌", "name_fr_FR": "Pierre de sagesse brise-pénombre", "name_de_DE": "Dämmerbrecherstein der Weisheit", "name_zh_CN": "破晓者智慧之石", "name_es_ES": "Piedra de sabiduría de rompeocasos", "name_ru_RU": "Камень мудрости рассеивающего сумерки", "name_it_IT": "Pietra della Saggezza Crepuscolare", "name_pt_PT": "Pedra Quebranoite da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73829, "buy_price": 369145, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003999471664429, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Stone of Battle", "name_ko_KR": "전투의 황혼파괴자 돌", "name_fr_FR": "Pierre de bataille brise-pénombre", "name_de_DE": "Dämmerbrecherstein des Kampfes", "name_zh_CN": "破晓者战争之石", "name_es_ES": "Piedra de batalla de rompeocasos", "name_ru_RU": "Камень битвы рассеивающего сумерки", "name_it_IT": "Pietra della Battaglia Crepuscolare", "name_pt_PT": "Pedra Quebranoite de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121961, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74102, "buy_price": 370511, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.00409996509552, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Idol of Battle", "name_ko_KR": "전투의 황혼파괴자 우상", "name_fr_FR": "Idole de bataille brise-pénombre", "name_de_DE": "Dämmerbrechergötze des Kampfes", "name_zh_CN": "破晓者战争雕像", "name_es_ES": "Ídolo de batalla de rompeocasos", "name_ru_RU": "Идол битвы рассеивающего сумерки", "name_it_IT": "Idolo della Battaglia Crepuscolare", "name_pt_PT": "Ídolo Quebranoite de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121964, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74914, "buy_price": 374570, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Defender Idol", "name_ko_KR": "황혼파괴자 수호 우상", "name_fr_FR": "Idole de défenseur brise-pénombre", "name_de_DE": "Dämmerbrechergötze des Verteidigers", "name_zh_CN": "破晓者卫士雕像", "name_es_ES": "Ídolo defensor de rompeocasos", "name_ru_RU": "Идол защитника рассеивающего сумерки", "name_it_IT": "Idolo della Difesa Crepuscolare", "name_pt_PT": "Ídolo Quebranoite do Defensor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121967, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Duskbreaker Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75725, "buy_price": 378629, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0261000394821167, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Duskbreaker Defender Stone", "name_ko_KR": "황혼파괴자 수호 돌", "name_fr_FR": "Pierre de défenseur brise-pénombre", "name_de_DE": "Dämmerbrecherstein des Verteidigers", "name_zh_CN": "破晓者卫士之石", "name_es_ES": "Piedra defensora de rompeocasos", "name_ru_RU": "Камень защитника рассеивающего сумерки", "name_it_IT": "Pietra della Difesa Crepuscolare", "name_pt_PT": "Pedra Quebranoite Protetora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121975, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulward Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70508, "buy_price": 352540, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Soulward Idol of Destruction", "name_ko_KR": "파괴의 영혼파수꾼 우상", "name_fr_FR": "Idole de destruction garde-âme", "name_de_DE": "Seelenschützergötze der Zerstörung", "name_zh_CN": "护魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de resguardo de alma", "name_ru_RU": "Душеспасительный идол разрушения", "name_it_IT": "Idolo della Distruzione Tutelare", "name_pt_PT": "Ídolo Guardalma da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulward Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73275, "buy_price": 366378, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.992900013923645, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Soulward Stone of Destruction", "name_ko_KR": "파괴의 영혼파수꾼 돌", "name_fr_FR": "Pierre de destruction garde-âme", "name_de_DE": "Seelenschützerstein der Zerstörung", "name_zh_CN": "护魂毁灭之石", "name_es_ES": "Piedra de destrucción de resguardo de alma", "name_ru_RU": "Душеспасительный камень разрушения", "name_it_IT": "Pietra della Distruzione Tutelare", "name_pt_PT": "Pedra Guardalma da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121981, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulward Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74094, "buy_price": 370474, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Soulward Idol of Wisdom", "name_ko_KR": "지혜의 영혼파수꾼 우상", "name_fr_FR": "Idole de sagesse garde-âme", "name_de_DE": "Seelenschützergötze der Weisheit", "name_zh_CN": "护魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de resguardo de alma", "name_ru_RU": "Душеспасительный идол мудрости", "name_it_IT": "Idolo della Saggezza Tutelare", "name_pt_PT": "Ídolo Guardalma da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulward Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74906, "buy_price": 374533, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0149999856948853, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Soulward Stone of Wisdom", "name_ko_KR": "지혜의 영혼파수꾼 돌", "name_fr_FR": "Pierre de sagesse garde-âme", "name_de_DE": "Seelenschützerstein der Weisheit", "name_zh_CN": "护魂智慧之石", "name_es_ES": "Piedra de sabiduría de resguardo de alma", "name_ru_RU": "Душеспасительный камень мудрости", "name_it_IT": "Pietra della Saggezza Tutelare", "name_pt_PT": "Pedra Guardalma da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121992, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skulldugger Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 71644, "buy_price": 358223, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.97079998254776, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Skulldugger Idol of Rage", "name_ko_KR": "분노의 해골추적자 우상", "name_fr_FR": "Idole de rage d'arnaqueur", "name_de_DE": "Betrügergötze des Zorns", "name_zh_CN": "凿颅者狂暴雕像", "name_es_ES": "Ídolo de ira de fullero", "name_ru_RU": "Идол ярости мошенника", "name_it_IT": "Idolo della Rabbia Spaccacrani", "name_pt_PT": "Ídolo Trapaçaveira da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 121995, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skulldugger Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72456, "buy_price": 362282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818000197410583, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Skulldugger Stone of Rage", "name_ko_KR": "분노의 해골추적자 돌", "name_fr_FR": "Pierre de rage d'arnaqueur", "name_de_DE": "Betrügerstein des Zorns", "name_zh_CN": "凿颅者狂暴之石", "name_es_ES": "Piedra de ira de fullero", "name_ru_RU": "Камень ярости мошенника", "name_it_IT": "Pietra della Rabbia Spaccacrani", "name_pt_PT": "Pedra Trapaçaveira da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122006, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75437, "buy_price": 377189, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Idol of Rage", "name_ko_KR": "분노의 폭풍탐구자 우상", "name_fr_FR": "Idole de rage cherche-tempête", "name_de_DE": "Sturmsuchergötze des Zorns", "name_zh_CN": "逐风者狂暴雕像", "name_es_ES": "Ídolo de ira de buscatormentas", "name_ru_RU": "Идол ярости искателя бурь", "name_it_IT": "Idolo della Rabbia del Trovatempeste", "name_pt_PT": "Ídolo Busca-tempestade da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122009, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70818, "buy_price": 354090, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595999717712402, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Stone of Rage", "name_ko_KR": "분노의 폭풍탐구자 돌", "name_fr_FR": "Pierre de rage cherche-tempête", "name_de_DE": "Sturmsucherstein des Zorns", "name_zh_CN": "逐风者狂暴之石", "name_es_ES": "Piedra de ira de buscatormentas", "name_ru_RU": "Камень ярости искателя бурь", "name_it_IT": "Pietra della Rabbia del Trovatempeste", "name_pt_PT": "Pedra Busca-tempestade da Raiva", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122017, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72987, "buy_price": 364939, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9890000224113464, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Idol of Destruction", "name_ko_KR": "파괴의 폭풍탐구자 우상", "name_fr_FR": "Idole de destruction cherche-tempête", "name_de_DE": "Sturmsuchergötze der Zerstörung", "name_zh_CN": "逐风者毁灭雕像", "name_es_ES": "Ídolo de destrucción de buscatormentas", "name_ru_RU": "Идол разрушения искателя бурь", "name_it_IT": "Idolo della Distruzione del Trovatempeste", "name_pt_PT": "Ídolo Busca-tempestade da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122020, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73799, "buy_price": 368998, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Stone of Destruction", "name_ko_KR": "파괴의 폭풍탐구자 돌", "name_fr_FR": "Pierre de destruction cherche-tempête", "name_de_DE": "Sturmsucherstein der Zerstörung", "name_zh_CN": "逐风者毁灭之石", "name_es_ES": "Piedra de destrucción de buscatormentas", "name_ru_RU": "Камень разрушения искателя бурь", "name_it_IT": "Pietra della Distruzione del Trovatempeste", "name_pt_PT": "Pedra Busca-tempestade da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74611, "buy_price": 373057, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0110000371932983, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Idol of Wisdom", "name_ko_KR": "지혜의 폭풍탐구자 우상", "name_fr_FR": "Idole de sagesse cherche-tempête", "name_de_DE": "Sturmsuchergötze der Weisheit", "name_zh_CN": "逐风者智慧雕像", "name_es_ES": "Ídolo de sabiduría de buscatormentas", "name_ru_RU": "Идол мудрости искателя бурь", "name_it_IT": "Idolo della Saggezza del Trovatempeste", "name_pt_PT": "Ídolo Busca-tempestade da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormseeker Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 77386, "buy_price": 386931, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0485999584197998, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stormseeker Stone of Wisdom", "name_ko_KR": "지혜의 폭풍탐구자 돌", "name_fr_FR": "Pierre de sagesse cherche-tempête", "name_de_DE": "Sturmsucherstein der Weisheit", "name_zh_CN": "逐风者智慧之石", "name_es_ES": "Piedra de sabiduría de buscatormentas", "name_ru_RU": "Камень мудрости искателя бурь", "name_it_IT": "Pietra della Saggezza del Trovatempeste", "name_pt_PT": "Pedra Busca-tempestade da Sabedoria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122037, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruinrain Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72980, "buy_price": 364902, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9889000058174133, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Ruinrain Idol of Destruction", "name_ko_KR": "파괴의 파멸비 우상", "name_fr_FR": "Idole de destruction pluie-de-ruine", "name_de_DE": "Todesregengötze der Zerstörung", "name_zh_CN": "灾雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia ruinosa", "name_ru_RU": "Идол разрушения губительного ливня", "name_it_IT": "Idolo della Distruzione Burrascoso", "name_pt_PT": "Ídolo Chove-ruína da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122040, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruinrain Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73792, "buy_price": 368961, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998999834060669, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Ruinrain Stone of Destruction", "name_ko_KR": "파괴의 파멸비 돌", "name_fr_FR": "Pierre de destruction pluie-de-ruine", "name_de_DE": "Todesregenstein der Zerstörung", "name_zh_CN": "灾雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia ruinosa", "name_ru_RU": "Камень разрушения губительного ливня", "name_it_IT": "Pietra della Distruzione Burrascosa", "name_pt_PT": "Pedra Chove-ruína da Destruição", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122056, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiant Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72700, "buy_price": 363500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850999712944031, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Defiant Stone of Battle", "name_ko_KR": "전투의 항거의 돌", "name_fr_FR": "Pierre de bataille de rebelle", "name_de_DE": "Unbeugsamer Stein des Kampfes", "name_zh_CN": "挑战战争之石", "name_es_ES": "Piedra de batalla desafiante", "name_ru_RU": "Камень битвы непокорного", "name_it_IT": "Pietra della Battaglia Sprezzante", "name_pt_PT": "Pedra Desafiadora de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122057, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiant Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74921, "buy_price": 374606, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0152000188827515, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Defiant Idol of Battle", "name_ko_KR": "전투의 항거의 우상", "name_fr_FR": "Idole de bataille de rebelle", "name_de_DE": "Unbeugsamer Götze des Kampfes", "name_zh_CN": "挑战战争雕像", "name_es_ES": "Ídolo de batalla desafiante", "name_ru_RU": "Идол битвы непокорного", "name_it_IT": "Idolo della Battaglia Sprezzante", "name_pt_PT": "Ídolo Desafiador de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122060, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiant Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75740, "buy_price": 378702, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262999534606934, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Defiant Defender Idol", "name_ko_KR": "항거의 수호 우상", "name_fr_FR": "Idole de défenseur de rebelle", "name_de_DE": "Unbeugsamer Verteidigergötze", "name_zh_CN": "挑战防御者雕像", "name_es_ES": "Ídolo defensor desafiante", "name_ru_RU": "Идол защитника непокорного", "name_it_IT": "Idolo della Difesa Sprezzante", "name_pt_PT": "Ídolo Desafiador Protetor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122063, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiant Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76552, "buy_price": 382761, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0372999906539917, "flags_1": 98304, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Defiant Defender Stone", "name_ko_KR": "항거의 수호 돌", "name_fr_FR": "Pierre de défenseur de rebelle", "name_de_DE": "Unbeugsamer Verteidigerstein", "name_zh_CN": "挑战防御者之石", "name_es_ES": "Piedra defensora desafiante", "name_ru_RU": "Камень защитника непокорного", "name_it_IT": "Pietra della Difesa Sprezzante", "name_pt_PT": "Pedra Desafiadora Protetora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122361, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Swift Hand of Justice", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 7500000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0074000358581543, "flags_1": 134217728, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Swift Hand of Justice", "name_ko_KR": "신속한 정의의 손길", "name_fr_FR": "Main de justice rapide", "name_de_DE": "Schnelle Hand der Gerechtigkeit", "name_zh_CN": "迅捷的正义之手", "name_es_ES": "Mano presta de justicia", "name_ru_RU": "Стремительная рука правосудия", "name_it_IT": "Rapida Mano della Giustizia", "name_pt_PT": "Mão Veloz da Justiça", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122362, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Discerning Eye of the Beast", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 7500000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.037500023841858, "flags_1": 134217728, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Discerning Eye of the Beast", "name_ko_KR": "번뜩이는 괴수의 눈", "name_fr_FR": "Oeil de la Bête perspicace", "name_de_DE": "Scharfes Auge der Bestie", "name_zh_CN": "敏锐的比斯巨兽之眼", "name_es_ES": "Ojo de la bestia exigente", "name_ru_RU": "Прозорливый Глаз Зверя", "name_it_IT": "Occhio Perspicace della Bestia", "name_pt_PT": "Olho Penetrante da Fera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122370, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Insignia of the Horde", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9667999744415283, "flags_1": 134217728, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Insignia of the Horde", "name_ko_KR": "계승의 호드 계급장", "name_fr_FR": "Insigne de la Horde hérité", "name_de_DE": "Geerbtes Insigne der Horde", "name_zh_CN": "家传的部落徽记", "name_es_ES": "Insignia heredada de la Horda", "name_ru_RU": "Унаследованный знак различия Орды", "name_it_IT": "Fregio Ereditato dell'Orda", "name_pt_PT": "Insígnia Herdada da Horda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122371, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Insignia of the Alliance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9704999923706055, "flags_1": 134217728, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Insignia of the Alliance", "name_ko_KR": "계승의 얼라이언스 계급장", "name_fr_FR": "Insigne de l'Alliance hérité", "name_de_DE": "Geerbtes Insigne der Allianz", "name_zh_CN": "家传的联盟徽记", "name_es_ES": "Insignia heredada de la Alianza", "name_ru_RU": "Унаследованный знак различия Альянса", "name_it_IT": "Fregio Ereditato dell'Alleanza", "name_pt_PT": "Insígnia Herdada da Aliança", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122530, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inherited Mark of Tyranny", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0188000202178955, "flags_1": 134217728, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Inherited Mark of Tyranny", "name_ko_KR": "계승의 폭정의 징표", "name_fr_FR": "Marque de tyrannie héritée", "name_de_DE": "Geerbtes Mal der Tyrannei", "name_zh_CN": "祖传的暴君印记", "name_es_ES": "Marca de Tiranía heredada", "name_ru_RU": "Унаследованный знак деспотизма", "name_it_IT": "Marchio Ereditato della Tirannia", "name_pt_PT": "Marca da Tirania Herdada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122601, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of Wind", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 58165, "buy_price": 290829, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9851999878883362, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13187, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2480, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of Wind", "name_ko_KR": "바람의 돌", "name_fr_FR": "Pierre du vent", "name_de_DE": "Stein des Windes", "name_zh_CN": "旋风之石", "name_es_ES": "Piedra del viento", "name_ru_RU": "Камень ветра", "name_it_IT": "Pietra del Vento", "name_pt_PT": "Pedra do Vento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122602, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of the Earth", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 58384, "buy_price": 291921, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9889000058174133, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13185, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2480, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of the Earth", "name_ko_KR": "대지의 돌", "name_fr_FR": "Pierre de la Terre", "name_de_DE": "Stein der Erde", "name_zh_CN": "大地之石", "name_es_ES": "Piedra de la tierra", "name_ru_RU": "Камень земли", "name_it_IT": "Pietra della Terra", "name_pt_PT": "Pedra da Terra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122603, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of the Waters", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 60161, "buy_price": 300807, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0190000534057617, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13186, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2480, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of the Waters", "name_ko_KR": "물의 돌", "name_fr_FR": "Pierre des eaux", "name_de_DE": "Stein des Wassers", "name_zh_CN": "流水之石", "name_es_ES": "Piedra de las aguas", "name_ru_RU": "Камень вод", "name_it_IT": "Pietra dell'Acqua", "name_pt_PT": "Pedra das Águas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122604, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of Fire", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 60379, "buy_price": 301899, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0226999521255493, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13208, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of Fire", "name_ko_KR": "불의 돌", "name_fr_FR": "Pierre du feu", "name_de_DE": "Stein des Feuers", "name_zh_CN": "烈火之石", "name_es_ES": "Piedra del fuego", "name_ru_RU": "Камень огня", "name_it_IT": "Pietra del Fuoco", "name_pt_PT": "Pedra do Fogo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122706, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 112860, "buy_price": 564301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 122707, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Adaptation", "name_ko_KR": "야성적인 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur primordial", "name_de_DE": "Anpassungsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador primigenio", "name_ru_RU": "Медальон адаптации необузданного гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Adaptação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122707, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113297, "buy_price": 566485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595000147819519, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 122706, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Primal Gladiator's Medallion of Adaptation", "name_ko_KR": "야성적인 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur primordial", "name_de_DE": "Anpassungsmedaillon des wilden Gladiators", "name_zh_CN": "原祖角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador primigenio", "name_ru_RU": "Медальон адаптации необузданного гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Primordiale", "name_pt_PT": "Medalhão da Adaptação do Gladiador Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122708, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85291, "buy_price": 426458, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.963100016117096, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 122709, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Adaptation", "name_ko_KR": "야성적인 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant primordial", "name_de_DE": "Anpassungsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente primigenio", "name_ru_RU": "Медальон адаптации необузданного бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Primordiale", "name_pt_PT": "Medalhão da Adaptação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 122709, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85619, "buy_price": 428096, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9667999744415283, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 122708, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Primal Combatant's Medallion of Adaptation", "name_ko_KR": "야성적인 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant primordial", "name_de_DE": "Anpassungsmedaillon des wilden Kämpfers", "name_zh_CN": "原祖争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente primigenio", "name_ru_RU": "Медальон адаптации необузданного бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Primordiale", "name_pt_PT": "Medalhão da Adaptação do Combatente Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 123959, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy", "name_ko_KR": "악마 상징물", "name_fr_FR": "Trophée de démon", "name_de_DE": "Dämonentrophäe", "name_zh_CN": "恶魔战利品", "name_es_ES": "Trofeo demoníaco", "name_ru_RU": "Демонический трофей", "name_it_IT": "Trofeo Demoniaco", "name_pt_PT": "Troféu do Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 123960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Demonic Fire", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Demonic Fire", "name_ko_KR": "악마의 불 부적", "name_fr_FR": "Charme de feu démoniaque", "name_de_DE": "Glücksbringer des Dämonenfeuers", "name_zh_CN": "魔火护符", "name_es_ES": "Talismán de fuego demoníaco", "name_ru_RU": "Талисман демонического огня", "name_it_IT": "Talismano del Fuoco Demoniaco", "name_pt_PT": "Patuá do Fogo Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 123992, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurine of the Colossus", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66290, "buy_price": 265161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9929999709129333, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Figurine of the Colossus", "name_ko_KR": "거대괴수 조각상", "name_fr_FR": "Figurine du colosse", "name_de_DE": "Figur des Kolosses", "name_zh_CN": "巨人塑像", "name_es_ES": "Figura del coloso", "name_ru_RU": "Статуэтка Колосса", "name_it_IT": "Statuetta del Colosso", "name_pt_PT": "Estatueta do Colosso", "on_use": true, "id_encounter": 566, "id_journal_instance": 259, "id_map": 540, "instance_type": 1}, {"id": 124223, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fel-Spring Coil", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4649, "stat_alloc_2": 4649, "stat_alloc_3": 4649, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 381364, "buy_price": 1906821, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Fel-Spring Coil", "name_ko_KR": "지옥용수철 코일", "name_fr_FR": "Torsade de ressort gangrené", "name_de_DE": "Dämonische Windung", "name_zh_CN": "邪能弹簧", "name_es_ES": "Espiral de salto vil", "name_ru_RU": "Завиток Скверны", "name_it_IT": "Bobina a Molla Vile", "name_pt_PT": "Espiral Vil", "on_use": false, "id_encounter": 1425, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124224, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of the Blademaster", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 138561, "buy_price": 692805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3660, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of the Blademaster", "name_ko_KR": "검귀의 거울", "name_fr_FR": "Miroir du maître-lame", "name_de_DE": "Spiegel des Klingenmeisters", "name_zh_CN": "剑圣之镜", "name_es_ES": "Espejo del Maestro de las Espadas", "name_ru_RU": "Зеркало мастера клинка", "name_it_IT": "Specchio del Maestro di Spade", "name_pt_PT": "Espelho do Mestre da Espada", "on_use": true, "id_encounter": 1432, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124225, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Capacitor", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6198, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 139066, "buy_price": 695331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3660, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Soul Capacitor", "name_ko_KR": "영혼 축전기", "name_fr_FR": "Condensateur d'âmes", "name_de_DE": "Seelenkondensator", "name_zh_CN": "灵魂之匣", "name_es_ES": "Condensador de almas", "name_ru_RU": "Конденсатор душ", "name_it_IT": "Condensatore d'Anima", "name_pt_PT": "Capacitor das Almas", "on_use": false, "id_encounter": 1427, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124226, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Malicious Censer", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 139557, "buy_price": 697788, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0224000215530396, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3660, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Malicious Censer", "name_ko_KR": "악의의 향로", "name_fr_FR": "Encensoir malveillant", "name_de_DE": "Verpestender Rauchschwenker", "name_zh_CN": "恶毒熏炉", "name_es_ES": "Incensario malicioso", "name_ru_RU": "Курильница злости", "name_it_IT": "Incensiere Maligno", "name_pt_PT": "Cibório Malicioso", "on_use": false, "id_encounter": 1394, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124227, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Reaver Piston", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4649, "stat_alloc_2": 4649, "stat_alloc_3": 4649, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1135, "buy_price": 5677, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524999856948853, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Iron Reaver Piston", "name_ko_KR": "강철절단기 피스톤", "name_fr_FR": "Piston du saccageur de Fer", "name_de_DE": "Kolben des Eisernen Häschers", "name_zh_CN": "钢铁掠夺者活塞", "name_es_ES": "Pistón del atracador de la Horda de Hierro", "name_ru_RU": "Поршень Железного разорителя", "name_it_IT": "Pistone del Razziatore di Ferro", "name_pt_PT": "Pistão do Aniquilador de Ferro", "on_use": false, "id_encounter": 1425, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124228, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Desecrated Shadowmoon Insignia", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1139, "buy_price": 5699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9562000036239624, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Desecrated Shadowmoon Insignia", "name_ko_KR": "훼손된 어둠달 휘장", "name_fr_FR": "Insigne d'Ombrelune désacralisé", "name_de_DE": "Entweihtes Schattenmondinsigne", "name_zh_CN": "亵渎影月徽记", "name_es_ES": "Insignia de Sombraluna profanada", "name_ru_RU": "Оскверненный знак Призрачной Луны", "name_it_IT": "Fregio di Torvaluna Dissacrato", "name_pt_PT": "Insígnia da Lua Negra Profanada", "on_use": false, "id_encounter": 1432, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124229, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unblinking Gaze of Sethe", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6198, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1144, "buy_price": 5721, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9598000049591064, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 1490, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Unblinking Gaze of Sethe", "name_ko_KR": "세드의 깜박이지 않는 눈", "name_fr_FR": "Regard fixe de Sethe", "name_de_DE": "Sethes bohrender Blick", "name_zh_CN": "塞泰的永恒凝视", "name_es_ES": "Mirada imperturbable de Sethe", "name_ru_RU": "Немигающий взор Сете", "name_it_IT": "Sguardo Fisso di Sethe", "name_pt_PT": "Olhar Vidrado de Sethe", "on_use": false, "id_encounter": 1433, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124230, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prophecy of Fear", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6198, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1148, "buy_price": 5743, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 1488, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Prophecy of Fear", "name_ko_KR": "공포의 예언", "name_fr_FR": "Prophétie de peur", "name_de_DE": "Prophezeiung der Furcht", "name_zh_CN": "恐惧预言", "name_es_ES": "Profecía de miedo", "name_ru_RU": "Предсказание ужаса", "name_it_IT": "Profezia della Paura", "name_pt_PT": "Profecia do Medo", "on_use": false, "id_encounter": 1395, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124231, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flickering Felspark", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3724, "stat_alloc_2": 3724, "stat_alloc_3": 3724, "stat_alloc_4": 3724, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": 5, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 364698, "buy_price": 1823490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Flickering Felspark", "name_ko_KR": "명멸하는 지옥불꽃", "name_fr_FR": "Gangrétincelle vacillante", "name_de_DE": "Flackernder Teufelsfunke", "name_zh_CN": "闪烁的邪火", "name_es_ES": "Llama infernal chisporroteante", "name_ru_RU": "Мерцающая вспышка Скверны", "name_it_IT": "Vilscintilla Lampeggiante", "name_pt_PT": "Vil Fagulha Tremeluzente", "on_use": false, "id_encounter": 1426, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124232, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Intuition's Gift", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4649, "stat_alloc_2": 4649, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 132527, "buy_price": 662639, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Intuition's Gift", "name_ko_KR": "직감의 선물", "name_fr_FR": "Don de l'intuition", "name_de_DE": "Gabe der Intuition", "name_zh_CN": "直觉之赐", "name_es_ES": "Obsequio de intuición", "name_ru_RU": "Дар интуиции", "name_it_IT": "Dono dell'Intuizione", "name_pt_PT": "Dádiva da Intuição", "on_use": true, "id_encounter": 1396, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124233, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Phylactery", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4648, "stat_alloc_2": 4648, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133019, "buy_price": 665096, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9745000004768372, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Phylactery", "name_ko_KR": "악마의 성물함", "name_fr_FR": "Phylactère démoniaque", "name_de_DE": "Dämonisches Phylakterium", "name_zh_CN": "魔化护命匣", "name_es_ES": "Filacteria demoníaca", "name_ru_RU": "Демоническая филактерия", "name_it_IT": "Filatterio Demoniaco", "name_pt_PT": "Filactério Demoníaco", "on_use": false, "id_encounter": 1427, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124234, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Felshadow Emulsion", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133524, "buy_price": 667621, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782000184059143, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Unstable Felshadow Emulsion", "name_ko_KR": "불안정한 지옥어둠 유화액", "name_fr_FR": "Emulsion de gangrombre instable", "name_de_DE": "Instabile Teufelsschattenemulsion", "name_zh_CN": "动荡邪影制剂", "name_es_ES": "Emulsión de sombra vil inestable", "name_ru_RU": "Нестабильная эмульсия тени Скверны", "name_it_IT": "Emulsione Instabile di Vilombra", "name_pt_PT": "Emulsão Instável de Sombravil", "on_use": false, "id_encounter": 1447, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124235, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rumbling Pebble", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4649, "stat_alloc_2": 4649, "stat_alloc_3": 4649, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 370240, "buy_price": 1851204, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818999767303467, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Rumbling Pebble", "name_ko_KR": "우르릉 자갈", "name_fr_FR": "Caillou grondant", "name_de_DE": "Grollender Stein", "name_zh_CN": "低鸣之石", "name_es_ES": "Guijarro resonador", "name_ru_RU": "Грохочущий булыжник", "name_it_IT": "Sassolino Rotolante", "name_pt_PT": "Cascalho Ribombante", "on_use": false, "id_encounter": 1392, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124236, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unending Hunger", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 12397, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 134534, "buy_price": 672672, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Unending Hunger", "name_ko_KR": "그치지 않는 허기", "name_fr_FR": "Appétit insatiable", "name_de_DE": "Nie endender Hunger", "name_zh_CN": "无餍之饥", "name_es_ES": "Apetito inagotable", "name_ru_RU": "Неутолимый голод", "name_it_IT": "Fame Interminabile", "name_pt_PT": "Fome Infinita", "on_use": false, "id_encounter": 1372, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124237, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Discordant Chorus", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 135025, "buy_price": 675129, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9891999959945679, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Discordant Chorus", "name_ko_KR": "불협화음", "name_fr_FR": "Chœur discordant", "name_de_DE": "Kakophonie", "name_zh_CN": "不谐合声", "name_es_ES": "Coro discordante", "name_ru_RU": "Нестройный хор", "name_it_IT": "Ritornello Stonato", "name_pt_PT": "Coro Discordante", "on_use": false, "id_encounter": 1391, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124238, "race_mask": 18446744073709551615, "desc": "A few globules of sizzling green liquid remain.", "pad2": "", "pad1": "", "pad0": "", "name": "Empty Drinking Horn", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 135530, "buy_price": 677654, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.992900013923645, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 35, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Empty Drinking Horn", "name_ko_KR": "텅 빈 뿔잔", "name_fr_FR": "Corne à boire vide", "name_de_DE": "Leeres Trinkhorn", "name_zh_CN": "空角杯", "name_es_ES": "Cuerno para beber vacío", "name_ru_RU": "Пустой рог для питья", "name_it_IT": "Corno per Libagioni Vuoto", "name_pt_PT": "Copo de Chifre Vazio", "on_use": false, "id_encounter": 1395, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124239, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Imbued Stone Sigil", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6974, "stat_alloc_2": 4649, "stat_alloc_3": 4649, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 375783, "buy_price": 1878918, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Imbued Stone Sigil", "name_ko_KR": "마력 깃든 바위 인장", "name_fr_FR": "Cachet de pierre imprégné", "name_de_DE": "Durchdrungenes Steinsiegel", "name_zh_CN": "嵌石魔印", "name_es_ES": "Sigilo de piedra imbuido", "name_ru_RU": "Насыщенная каменная печать", "name_it_IT": "Sigillo di Pietra Infusa", "name_pt_PT": "Sigilo Imbuído em Pedra", "on_use": false, "id_encounter": 1392, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124240, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warlord's Unseeing Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 12397, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 136540, "buy_price": 682704, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003000497817993, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3619, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warlord's Unseeing Eye", "name_ko_KR": "전쟁군주의 보지 않는 눈", "name_fr_FR": "Oeil aveugle du seigneur de guerre", "name_de_DE": "Blindes Auge des Kriegsherrn", "name_zh_CN": "督军的迷茫之眼", "name_es_ES": "Ojo ciego del señor de la guerra", "name_ru_RU": "Невидящее око вождя", "name_it_IT": "Occhio Cieco del Signore della Guerra", "name_pt_PT": "Olho Que Não Vê do Senhor da Guerra", "on_use": false, "id_encounter": 1396, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124241, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anzu's Cursed Plume", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137032, "buy_price": 685161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0039000511169434, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3619, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Anzu's Cursed Plume", "name_ko_KR": "안주의 저주받은 깃털", "name_fr_FR": "Plume maudite d'Anzu", "name_de_DE": "Anzus verfluchte Feder", "name_zh_CN": "安苏的诅咒之羽", "name_es_ES": "Pluma maldita de Anzu", "name_ru_RU": "Проклятое перо Анзу", "name_it_IT": "Piuma Maledetta di Anzu", "name_pt_PT": "Penacho Maldito de Anzu", "on_use": false, "id_encounter": 1433, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124242, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tyrant's Decree", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6199, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137537, "buy_price": 687686, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007599949836731, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 3619, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tyrant's Decree", "name_ko_KR": "폭군의 법령", "name_fr_FR": "Décret du tyran", "name_de_DE": "Tyrannisches Dekret", "name_zh_CN": "暴君赦令", "name_es_ES": "Decreto de tirano", "name_ru_RU": "Решение деспота", "name_it_IT": "Decreto della Despota", "name_pt_PT": "Decreto do Tirano", "on_use": false, "id_encounter": 1394, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124513, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reaper's Harvest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 129961, "buy_price": 649808, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520999789237976, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Reaper's Harvest", "name_ko_KR": "사신의 수확", "name_fr_FR": "Moisson de la faucheuse", "name_de_DE": "Des Todes Ernte", "name_zh_CN": "收割者的收获", "name_es_ES": "Cosecha de segador", "name_ru_RU": "Жатва Жнеца", "name_it_IT": "Raccolto del Mietitore", "name_pt_PT": "Colheita do Ceifador", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seed of Creation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130466, "buy_price": 652333, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Seed of Creation", "name_ko_KR": "창조의 씨앗", "name_fr_FR": "Graine de création", "name_de_DE": "Saat der Schöpfung", "name_zh_CN": "造物之种", "name_es_ES": "Semilla de la creación", "name_ru_RU": "Семя созидания", "name_it_IT": "Seme della Creazione", "name_pt_PT": "Semente da Criação", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124515, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Master Tracker", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130971, "buy_price": 654858, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595000147819519, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Talisman of the Master Tracker", "name_ko_KR": "정예 추적자의 부적", "name_fr_FR": "Talisman du maître pisteur", "name_de_DE": "Talisman des meisterhaften Fährtenlesers", "name_zh_CN": "追猎大师的护符", "name_es_ES": "Dije del maestro rastreador", "name_ru_RU": "Талисман мастера-следопыта", "name_it_IT": "Talismano del Maestro Braccatore", "name_pt_PT": "Talismã do Rastreador Mestre", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Shifting Words", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 135080, "buy_price": 675402, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9896000027656555, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tome of Shifting Words", "name_ko_KR": "변화하는 말의 고서", "name_fr_FR": "Tome des mots changeants", "name_de_DE": "Foliant der wandernden Worte", "name_zh_CN": "百变魔典", "name_es_ES": "Escrito sobre palabras cambiantes", "name_ru_RU": "Фолиант изменчивых слов", "name_it_IT": "Tomo delle Parole Instabili", "name_pt_PT": "Tomo das palavras Cambiantes", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124517, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sacred Draenic Incense", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 135585, "buy_price": 677927, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9933000206947327, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Sacred Draenic Incense", "name_ko_KR": "신성한 드레나이 향", "name_fr_FR": "Encens draenique sacré", "name_de_DE": "Heiliger Draeneiweihrauch", "name_zh_CN": "神圣的德拉诺熏炉", "name_es_ES": "Incienso draénico sagrado", "name_ru_RU": "Священные дренейские благовония", "name_it_IT": "Incenso Draenoriano Sacro", "name_pt_PT": "Incenso Draenoriano Sagrado", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124518, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Libram of Vindication", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 136090, "buy_price": 680452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Libram of Vindication", "name_ko_KR": "구원의 성서", "name_fr_FR": "Libram de justification", "name_de_DE": "Buchband der Verteidigung", "name_zh_CN": "辩护圣契", "name_es_ES": "Tratado sobre vindicación", "name_ru_RU": "Манускрипт оправдания", "name_it_IT": "Libram della Rivendicazione", "name_pt_PT": "Incunábulo da Vindicação", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124519, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Repudiation of War", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 136581, "buy_price": 682909, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Repudiation of War", "name_ko_KR": "전쟁에 대한 거부", "name_fr_FR": "Répudiation de la guerre", "name_de_DE": "Kriegserklärung an den Krieg", "name_zh_CN": "斥战祷言", "name_es_ES": "Repudio de guerra", "name_ru_RU": "Отказ от войн", "name_it_IT": "Ripudio della Guerra", "name_pt_PT": "Repúdio da Guerra", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124520, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bleeding Hollow Toxin Vessel", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137086, "buy_price": 685434, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0042999982833862, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Bleeding Hollow Toxin Vessel", "name_ko_KR": "피눈물 독소 용기", "name_fr_FR": "Porte-toxine de l'Orbite-Sanglante", "name_de_DE": "Toxingefäß des Blutenden Auges", "name_zh_CN": "血环毒药瓶", "name_es_ES": "Vasija de toxinas de los Foso Sangrante", "name_ru_RU": "Сосуд с отравой клана Кровавой Глазницы", "name_it_IT": "Ampolla di Tossina dei Guerci Insanguinati", "name_pt_PT": "Recipiente de Toxinas dos Olhos Sangrentos", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124521, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Core of the Primal Elements", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137592, "buy_price": 687960, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0080000162124634, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Core of the Primal Elements", "name_ko_KR": "원시 정령 핵", "name_fr_FR": "Noyau des éléments primordiaux", "name_de_DE": "Kern der Urelemente", "name_zh_CN": "始祖元素之核", "name_es_ES": "Núcleo de los elementos primigenios", "name_ru_RU": "Ядро изначальных стихий", "name_it_IT": "Nucleo degli Elementi Primordiali", "name_pt_PT": "Núcleo dos Elementos Primevos", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124522, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fragment of the Dark Star", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 138097, "buy_price": 690485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0117000341415405, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Fragment of the Dark Star", "name_ko_KR": "검은 별의 조각", "name_fr_FR": "Fragment de l'Etoile noire", "name_de_DE": "Fragment des dunklen Sterns", "name_zh_CN": "黑暗之星碎片", "name_es_ES": "Fragmento de la Estrella Oscura", "name_ru_RU": "Фрагмент Темной Звезды", "name_it_IT": "Frammento della Stella Oscura", "name_pt_PT": "Fragmento da Estrela Negra", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124523, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Worldbreaker's Resolve", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 138588, "buy_price": 692942, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0153000354766846, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Worldbreaker's Resolve", "name_ko_KR": "세계파괴자의 결의", "name_fr_FR": "Résolution du Brise-monde", "name_de_DE": "Entschlossenheit des Weltenbrechers", "name_zh_CN": "灭世者的决意", "name_es_ES": "Resolución de rompemundos", "name_ru_RU": "Решимость разрушителя миров", "name_it_IT": "Risolutezza del Devastamondi", "name_pt_PT": "Determinação do Quebramundo", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 124545, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chipped Soul Prism", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4900, "stat_alloc_2": 4900, "stat_alloc_3": 4900, "stat_alloc_4": 4900, "stat_alloc_5": 0, "stat_alloc_6": 4900, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": 40, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 399466, "buy_price": 1997331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226000547409058, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Chipped Soul Prism", "name_ko_KR": "영혼 파편 프리즘", "name_fr_FR": "Prisme d'âme ébréché", "name_de_DE": "Gesprungenes Seelenprisma", "name_zh_CN": "碎裂的灵魂棱镜", "name_es_ES": "Prisma de almas astillado", "name_ru_RU": "Сколотая призма души", "name_it_IT": "Prisma dell'Anima Fratturata", "name_pt_PT": "Prisma da Alma Lascada", "on_use": false, "id_encounter": 1452, "id_journal_instance": 557, "id_map": 1228, "instance_type": 2}, {"id": 124546, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Supreme Doom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 1990, "stat_alloc_2": 5326, "stat_alloc_3": 5326, "stat_alloc_4": 5326, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 62, "stat_type_3": 63, "stat_type_4": 61, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 400872, "buy_price": 2004362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262000560760498, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Mark of Supreme Doom", "name_ko_KR": "무시무시한 멸망의 징표", "name_fr_FR": "Marque de Destin funeste suprême", "name_de_DE": "Übermächtiges Verdammnismal", "name_zh_CN": "终极末日印记", "name_es_ES": "Marca de Fatalidad suprema", "name_ru_RU": "Знак превосходящего рока", "name_it_IT": "Marchio della Rovina Suprema", "name_pt_PT": "Marca da Ruína Suprema", "on_use": false, "id_encounter": 1452, "id_journal_instance": 557, "id_map": 1228, "instance_type": 2}, {"id": 124619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Saberblade Emblem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84475, "buy_price": 422379, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.0264999866485596, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Saberblade Emblem", "name_ko_KR": "서슬날 문장", "name_fr_FR": "Emblème de sabrelame", "name_de_DE": "Säbelklingenemblem", "name_zh_CN": "剑刃徽记", "name_es_ES": "Emblema de filosable", "name_ru_RU": "Эмблема клинка сабли", "name_it_IT": "Emblema della Sciabola", "name_pt_PT": "Emblema da Lâmina do Sabre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124620, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Saberblade Talisman", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 251, "buy_price": 1256, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.0302000045776367, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Saberblade Talisman", "name_ko_KR": "서슬날 부적", "name_fr_FR": "Talisman de sabrelame", "name_de_DE": "Säbelklingentalisman", "name_zh_CN": "剑刃护符", "name_es_ES": "Dije de sombramira", "name_ru_RU": "Талисман клинка сабли", "name_it_IT": "Talismano della Sciabola", "name_pt_PT": "Talismã da Lâmina do Sabre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124621, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ardent Seal", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85076, "buy_price": 425383, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.0338000059127808, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Ardent Seal", "name_ko_KR": "헌신의 인장", "name_fr_FR": "Sceau ardent", "name_de_DE": "Siegel der Inbrunst", "name_zh_CN": "热忱印记", "name_es_ES": "Sello candente", "name_ru_RU": "Пылкая печать", "name_it_IT": "Sigillo Ardente", "name_pt_PT": "Selo Ardente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124622, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Saberblade Insignia", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85381, "buy_price": 426905, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.037500023841858, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Saberblade Insignia", "name_ko_KR": "서슬날 휘장", "name_fr_FR": "Insigne de sabrelame", "name_de_DE": "Säbelklingeninsigne", "name_zh_CN": "剑刃徽章", "name_es_ES": "Insignia de filosable", "name_ru_RU": "Знак клинка сабли", "name_it_IT": "Fregio della Sciabola", "name_pt_PT": "Insígnia da Lâmina do Sabre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124623, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spineshard Crest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85685, "buy_price": 428428, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.041200041770935, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Spineshard Crest", "name_ko_KR": "등골파편 문장", "name_fr_FR": "Ecu de pointéchine", "name_de_DE": "Rückgratsplitterwappen", "name_zh_CN": "碎脊徽章", "name_es_ES": "Blasón de fragmentos de espinas", "name_ru_RU": "Герб обломка хребта", "name_it_IT": "Amuleto delle Spine", "name_pt_PT": "Escudo de Estilhaço do Espinhaço", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124856, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 135585, "buy_price": 677927, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9933000206947327, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125335, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Conquest", "name_ko_KR": "거침없는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur farouche", "name_de_DE": "Eroberungsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador salvaje", "name_ru_RU": "Жетон завоевания дикого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Indomito", "name_pt_PT": "Distintivo da Conquista do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124857, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 136090, "buy_price": 680452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125336, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Conquest", "name_ko_KR": "거침없는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur farouche", "name_de_DE": "Eroberungsinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador salvaje", "name_ru_RU": "Знак завоевания дикого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Indomito", "name_pt_PT": "Insígnia da Conquista do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124858, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 136581, "buy_price": 682909, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125337, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Cruelty", "name_ko_KR": "거침없는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur farouche", "name_de_DE": "Grausamkeitsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador salvaje", "name_ru_RU": "Эмблема жестокости дикого гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Indomito", "name_pt_PT": "Emblema da Crueldade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124859, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137086, "buy_price": 685434, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0042999982833862, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125338, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Tenacity", "name_ko_KR": "거침없는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur farouche", "name_de_DE": "Hartnäckigkeitsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador salvaje", "name_ru_RU": "Эмблема упорства дикого гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Indomito", "name_pt_PT": "Emblema da Tenacidade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124860, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 137592, "buy_price": 687960, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0080000162124634, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125339, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Meditation", "name_ko_KR": "거침없는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur farouche", "name_de_DE": "Meditationsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador salvaje", "name_ru_RU": "Эмблема медитации дикого гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Indomito", "name_pt_PT": "Emblema da Meditação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124861, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 138097, "buy_price": 690485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0117000341415405, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125340, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Dominance", "name_ko_KR": "거침없는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur farouche", "name_de_DE": "Vorherrschaftsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador salvaje", "name_ru_RU": "Жетон господства дикого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Indomito", "name_pt_PT": "Distintivo da Dominância do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124862, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1210, "buy_price": 6052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0153000354766846, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125341, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Dominance", "name_ko_KR": "거침없는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur farouche", "name_de_DE": "Vorherrschaftsinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador salvaje", "name_ru_RU": "Знак господства дикого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Indomito", "name_pt_PT": "Insígnia da Dominância do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124863, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 139093, "buy_price": 695467, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 127124, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Cruelty", "name_ko_KR": "거침없는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur farouche", "name_de_DE": "Grausamkeitsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador salvaje", "name_ru_RU": "Медальон жестокости дикого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Indomito", "name_pt_PT": "Medalhão da Crueldade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124864, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 139598, "buy_price": 697992, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 127123, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Adaptation", "name_ko_KR": "거침없는 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur farouche", "name_de_DE": "Anpassungsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador salvaje", "name_ru_RU": "Медальон адаптации дикого гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Indomito", "name_pt_PT": "Medalhão da Adaptação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124865, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 140103, "buy_price": 700518, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125342, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Tenacity", "name_ko_KR": "거침없는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur farouche", "name_de_DE": "Hartnäckigkeitsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador salvaje", "name_ru_RU": "Медальон упорства дикого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Indomito", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124866, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 140595, "buy_price": 702975, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0299999713897705, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125343, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Meditation", "name_ko_KR": "거침없는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur farouche", "name_de_DE": "Meditationsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador salvaje", "name_ru_RU": "Медальон медитации дикого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Indomito", "name_pt_PT": "Medalhão da Meditação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124867, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141100, "buy_price": 705500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0336999893188477, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125344, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Victory", "name_ko_KR": "거침없는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur farouche", "name_de_DE": "Siegesabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador salvaje", "name_ru_RU": "Жетон победы дикого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Indomito", "name_pt_PT": "Distintivo da Vitória do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124868, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 141605, "buy_price": 708025, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0374000072479248, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125345, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Victory", "name_ko_KR": "거침없는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur farouche", "name_de_DE": "Siegesinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador salvaje", "name_ru_RU": "Знак победы дикого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Indomito", "name_pt_PT": "Insígnia da Vitória do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124869, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 132063, "buy_price": 660318, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125346, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Adaptation", "name_ko_KR": "거침없는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur farouche", "name_de_DE": "Anpassungsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador salvaje", "name_ru_RU": "Жетон адаптации дикого гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Indomito", "name_pt_PT": "Distintivo da Adaptação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124870, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 377151, "buy_price": 1885758, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710999727249146, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125347, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Conquest", "name_ko_KR": "거침없는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête de gladiateur farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador salvaje", "name_ru_RU": "Акколада завоевания дикого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Indomito", "name_pt_PT": "Galardão da Conquista do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124871, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 1162, "buy_price": 5810, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9747999906539917, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125348, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Dominance", "name_ko_KR": "거침없는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination de gladiateur farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador salvaje", "name_ru_RU": "Акколада господства дикого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Indomito", "name_pt_PT": "Galardão da Dominância do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124872, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 380025, "buy_price": 1900128, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9785000085830688, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125349, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Victory", "name_ko_KR": "거침없는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire de gladiateur farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador salvaje", "name_ru_RU": "Акколада победы дикого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Indomito", "name_pt_PT": "Galardão da Vitória do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124873, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 381423, "buy_price": 1907119, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9821000099182129, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125350, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Meditation", "name_ko_KR": "거침없는 검투사의 명상 상징", "name_fr_FR": "Décoration de méditation du gladiateur farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想奖章", "name_es_ES": "Galardón de meditación de Gladiador salvaje", "name_ru_RU": "Акколада медитации дикого гладиатора", "name_it_IT": "Decorazione della Meditazione del Gladiatore Indomito", "name_pt_PT": "Galardão da Meditação do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 124874, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 382860, "buy_price": 1914304, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98580002784729, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125351, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Endurance", "name_ko_KR": "거침없는 검투사의 인내 상징", "name_fr_FR": "Décoration d'endurance du gladiateur farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的坚韧奖章", "name_es_ES": "Galardón de robustez de Gladiador salvaje", "name_ru_RU": "Акколада выносливости дикого гладиатора", "name_it_IT": "Decorazione della Resistenza del Gladiatore Indomito", "name_pt_PT": "Galardão da Resistência do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125030, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90605, "buy_price": 453026, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0231000185012817, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125507, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Conquest", "name_ko_KR": "거침없는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant farouche", "name_de_DE": "Eroberungsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente salvaje", "name_ru_RU": "Жетон завоевания дикого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Indomito", "name_pt_PT": "Distintivo da Conquista do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125031, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90924, "buy_price": 454620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0267000198364258, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125508, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Conquest", "name_ko_KR": "거침없는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant farouche", "name_de_DE": "Eroberungsinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente salvaje", "name_ru_RU": "Знак завоевания дикого бойца", "name_it_IT": "Fregio della Conquista del Combattente Indomito", "name_pt_PT": "Insígnia da Conquista do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125032, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91251, "buy_price": 456258, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030400037765503, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125509, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Cruelty", "name_ko_KR": "거침없는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant farouche", "name_de_DE": "Grausamkeitsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente salvaje", "name_ru_RU": "Эмблема жестокости дикого бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Indomito", "name_pt_PT": "Emblema da Crueldade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125033, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91579, "buy_price": 457897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.03410005569458, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125510, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Tenacity", "name_ko_KR": "거침없는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant farouche", "name_de_DE": "Hartnäckigkeitsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente salvaje", "name_ru_RU": "Эмблема упорства дикого бойца", "name_it_IT": "Emblema della Tenacia del Combattente Indomito", "name_pt_PT": "Emblema da Tenacidade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125034, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91907, "buy_price": 459535, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377999544143677, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125511, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Meditation", "name_ko_KR": "거침없는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant farouche", "name_de_DE": "Meditationsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente salvaje", "name_ru_RU": "Эмблема медитации дикого бойца", "name_it_IT": "Emblema della Meditazione del Combattente Indomito", "name_pt_PT": "Emblema da Meditação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125035, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92225, "buy_price": 461129, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413999557495117, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125512, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Dominance", "name_ko_KR": "거침없는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant farouche", "name_de_DE": "Vorherrschaftsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente salvaje", "name_ru_RU": "Жетон господства дикого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Indomito", "name_pt_PT": "Distintivo da Dominância do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125036, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 849, "buy_price": 4249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0450999736785889, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125513, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Dominance", "name_ko_KR": "거침없는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant farouche", "name_de_DE": "Vorherrschaftsinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente salvaje", "name_ru_RU": "Знак господства дикого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Indomito", "name_pt_PT": "Insígnia da Dominância do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125037, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92881, "buy_price": 464406, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048799991607666, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125514, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Cruelty", "name_ko_KR": "거침없는 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant farouche", "name_de_DE": "Grausamkeitsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente salvaje", "name_ru_RU": "Медальон жестокости дикого бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Indomito", "name_pt_PT": "Medalhão da Crueldade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125038, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84344, "buy_price": 421720, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524000287055969, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125515, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Adaptation", "name_ko_KR": "거침없는 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant farouche", "name_de_DE": "Anpassungsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente salvaje", "name_ru_RU": "Медальон адаптации дикого бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Indomito", "name_pt_PT": "Medalhão da Adaptação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125039, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84662, "buy_price": 423314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559999704360962, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125516, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Tenacity", "name_ko_KR": "거침없는 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant farouche", "name_de_DE": "Hartnäckigkeitsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente salvaje", "name_ru_RU": "Медальон упорства дикого бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Indomito", "name_pt_PT": "Medalhão da Tenacidade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125040, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84990, "buy_price": 424953, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9596999883651733, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125517, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Meditation", "name_ko_KR": "거침없는 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant farouche", "name_de_DE": "Meditationsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente salvaje", "name_ru_RU": "Медальон медитации дикого бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Indomito", "name_pt_PT": "Medalhão da Meditação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125041, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85318, "buy_price": 426591, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9634000062942505, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125518, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Victory", "name_ko_KR": "거침없는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant farouche", "name_de_DE": "Siegesabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente salvaje", "name_ru_RU": "Жетон победы дикого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Indomito", "name_pt_PT": "Distintivo da Vitória do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125042, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85645, "buy_price": 428229, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9671000242233276, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125519, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Victory", "name_ko_KR": "거침없는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant farouche", "name_de_DE": "Siegesinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente salvaje", "name_ru_RU": "Знак победы дикого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Indomito", "name_pt_PT": "Insígnia da Vitória do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125043, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 85964, "buy_price": 429823, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9707000255584717, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125520, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Adaptation", "name_ko_KR": "거침없는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant farouche", "name_de_DE": "Anpassungsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente salvaje", "name_ru_RU": "Жетон адаптации дикого бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Indomito", "name_pt_PT": "Distintivo da Adaptação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125044, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 267294, "buy_price": 1336471, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.974399983882904, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125521, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Conquest", "name_ko_KR": "거침없는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente salvaje", "name_ru_RU": "Акколада завоевания дикого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Indomito", "name_pt_PT": "Galardão da Conquista do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125045, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 795, "buy_price": 3976, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9781000018119812, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125522, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Dominance", "name_ko_KR": "거침없는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente salvaje", "name_ru_RU": "Акколада господства дикого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Indomito", "name_pt_PT": "Galardão da Dominância do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125046, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 276593, "buy_price": 1382968, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082999467849731, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125523, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Victory", "name_ko_KR": "거침없는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente salvaje", "name_ru_RU": "Акколада победы дикого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Indomito", "name_pt_PT": "Galardão da Vitória do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125047, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 277581, "buy_price": 1387906, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125524, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Meditation", "name_ko_KR": "거침없는 전투원의 명상 상징", "name_fr_FR": "Décoration de méditation du combattant farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想奖章", "name_es_ES": "Galardón de meditación de Combatiente salvaje", "name_ru_RU": "Акколада медитации дикого бойца", "name_it_IT": "Decorazione della Meditazione del Combattente Indomito", "name_pt_PT": "Galardão da Meditação do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125048, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 278596, "buy_price": 1392980, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0155999660491943, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125525, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Endurance", "name_ko_KR": "거침없는 전투원의 인내 상징", "name_fr_FR": "Décoration d'endurance du combattant farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的坚韧奖章", "name_es_ES": "Galardón de robustez de Combatiente salvaje", "name_ru_RU": "Акколада выносливости дикого бойца", "name_it_IT": "Decorazione della Resistenza del Combattente Indomito", "name_pt_PT": "Galardão da Resistência do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125139, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 193226, "buy_price": 966130, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818999767303467, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125616, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Conquest", "name_ko_KR": "거침없는 지원자의 정복 상징", "name_fr_FR": "Décoration de conquête de l'aspirant farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的征服奖章", "name_es_ES": "Galardón de conquista de aspirante salvaje", "name_ru_RU": "Акколада завоевания дикого претендента", "name_it_IT": "Decorazione della Conquista del Pretendente Indomito", "name_pt_PT": "Galardão da Conquista do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125140, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 667, "buy_price": 3339, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125617, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Dominance", "name_ko_KR": "거침없는 지원자의 지배 상징", "name_fr_FR": "Décoration de domination de l'aspirant farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的统御奖章", "name_es_ES": "Galardón de dominancia de aspirante salvaje", "name_ru_RU": "Акколада господства дикого претендента", "name_it_IT": "Decorazione della Dominazione del Pretendente Indomito", "name_pt_PT": "Galardão da Dominância do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125141, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 194662, "buy_price": 973313, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9891999959945679, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125618, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Victory", "name_ko_KR": "거침없는 지원자의 승리 상징", "name_fr_FR": "Décoration de victoire de l'aspirant farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的胜利奖章", "name_es_ES": "Galardón de victoria de aspirante salvaje", "name_ru_RU": "Акколада победы дикого претендента", "name_it_IT": "Decorazione della Vittoria del Pretendente Indomito", "name_pt_PT": "Galardão da Vitória do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125142, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 195390, "buy_price": 976954, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.992900013923645, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125619, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Meditation", "name_ko_KR": "거침없는 지원자의 명상 상징", "name_fr_FR": "Décoration de méditation de l'aspirant farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的冥想奖章", "name_es_ES": "Galardón de meditación de aspirante salvaje", "name_ru_RU": "Акколада медитации дикого претендента", "name_it_IT": "Decorazione della Meditazione del Pretendente Indomito", "name_pt_PT": "Galardão da Meditação do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125143, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 201333, "buy_price": 1006669, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0231000185012817, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125620, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Endurance", "name_ko_KR": "거침없는 지원자의 인내 상징", "name_fr_FR": "Décoration d'endurance de l'aspirant farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的坚韧奖章", "name_es_ES": "Galardón de robustez de aspirante salvaje", "name_ru_RU": "Акколада выносливости дикого претендента", "name_it_IT": "Decorazione della Resistenza del Pretendente Indomito", "name_pt_PT": "Galardão da Resistência do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125335, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 139079, "buy_price": 695399, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124856, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Conquest", "name_ko_KR": "거침없는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur farouche", "name_de_DE": "Eroberungsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador salvaje", "name_ru_RU": "Жетон завоевания дикого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Indomito", "name_pt_PT": "Distintivo da Conquista do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125336, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 143188, "buy_price": 715942, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0490000247955322, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124857, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Conquest", "name_ko_KR": "거침없는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête de gladiateur farouche", "name_de_DE": "Eroberungsinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador salvaje", "name_ru_RU": "Знак завоевания дикого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Indomito", "name_pt_PT": "Insígnia da Conquista do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125337, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130029, "buy_price": 650149, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9526000022888184, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124858, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Cruelty", "name_ko_KR": "거침없는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur farouche", "name_de_DE": "Grausamkeitsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador salvaje", "name_ru_RU": "Эмблема жестокости дикого гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Indomito", "name_pt_PT": "Emblema da Crueldade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125338, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 130534, "buy_price": 652674, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563000202178955, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124859, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Tenacity", "name_ko_KR": "거침없는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur farouche", "name_de_DE": "Hartnäckigkeitsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador salvaje", "name_ru_RU": "Эмблема упорства дикого гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Indomito", "name_pt_PT": "Emblema da Tenacidade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125339, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 131040, "buy_price": 655200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599999785423279, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124860, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Emblem of Meditation", "name_ko_KR": "거침없는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur farouche", "name_de_DE": "Meditationsemblem des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador salvaje", "name_ru_RU": "Эмблема медитации дикого гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Indomito", "name_pt_PT": "Emblema da Meditação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125340, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 131531, "buy_price": 657657, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635999798774719, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124861, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Dominance", "name_ko_KR": "거침없는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur farouche", "name_de_DE": "Vorherrschaftsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador salvaje", "name_ru_RU": "Жетон господства дикого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Indomito", "name_pt_PT": "Distintivo da Dominância do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125341, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1153, "buy_price": 5766, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9672999978065491, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124862, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Dominance", "name_ko_KR": "거침없는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination de gladiateur farouche", "name_de_DE": "Vorherrschaftsinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador salvaje", "name_ru_RU": "Знак господства дикого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Indomito", "name_pt_PT": "Insígnia da Dominância do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125342, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 132541, "buy_price": 662707, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710000157356262, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124865, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Tenacity", "name_ko_KR": "거침없는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur farouche", "name_de_DE": "Hartnäckigkeitsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador salvaje", "name_ru_RU": "Медальон упорства дикого гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Indomito", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125343, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133046, "buy_price": 665232, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746999740600586, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124866, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Meditation", "name_ko_KR": "거침없는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur farouche", "name_de_DE": "Meditationsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador salvaje", "name_ru_RU": "Медальон медитации дикого гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Indomito", "name_pt_PT": "Medalhão da Meditação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125344, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 133537, "buy_price": 667689, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782999753952026, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124867, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Victory", "name_ko_KR": "거침없는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur farouche", "name_de_DE": "Siegesabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador salvaje", "name_ru_RU": "Жетон победы дикого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Indomito", "name_pt_PT": "Distintivo da Vitória do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125345, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 134043, "buy_price": 670215, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9819999933242798, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124868, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Insignia of Victory", "name_ko_KR": "거침없는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire de gladiateur farouche", "name_de_DE": "Siegesinsigne des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador salvaje", "name_ru_RU": "Знак победы дикого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Indomito", "name_pt_PT": "Insígnia da Vitória do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125346, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 134548, "buy_price": 672740, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9857000112533569, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124869, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Badge of Adaptation", "name_ko_KR": "거침없는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur farouche", "name_de_DE": "Anpassungsabzeichen des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador salvaje", "name_ru_RU": "Жетон адаптации дикого гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Indomito", "name_pt_PT": "Distintivo da Adaptação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125347, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 384259, "buy_price": 1921295, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9894000291824341, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124870, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Conquest", "name_ko_KR": "거침없는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête de gladiateur farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador salvaje", "name_ru_RU": "Акколада завоевания дикого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Indomito", "name_pt_PT": "Galardão da Conquista do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125348, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 1183, "buy_price": 5919, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9929999709129333, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124871, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Dominance", "name_ko_KR": "거침없는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination de gladiateur farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador salvaje", "name_ru_RU": "Акколада господства дикого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Indomito", "name_pt_PT": "Galardão da Dominância do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125349, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 387094, "buy_price": 1935470, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9966999888420105, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124872, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Victory", "name_ko_KR": "거침없는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire de gladiateur farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador salvaje", "name_ru_RU": "Акколада победы дикого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Indomito", "name_pt_PT": "Galardão da Vitória do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125350, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 388531, "buy_price": 1942655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003999471664429, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124873, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Meditation", "name_ko_KR": "거침없는 검투사의 명상 상징", "name_fr_FR": "Décoration de méditation du gladiateur farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的冥想奖章", "name_es_ES": "Galardón de meditación de Gladiador salvaje", "name_ru_RU": "Акколада медитации дикого гладиатора", "name_it_IT": "Decorazione della Meditazione del Gladiatore Indomito", "name_pt_PT": "Galardão da Meditação do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125351, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 389929, "buy_price": 1949646, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124874, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Accolade of Endurance", "name_ko_KR": "거침없는 검투사의 인내 상징", "name_fr_FR": "Décoration d'endurance du gladiateur farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的坚韧奖章", "name_es_ES": "Galardón de robustez de Gladiador salvaje", "name_ru_RU": "Акколада выносливости дикого гладиатора", "name_it_IT": "Decorazione della Resistenza del Gladiatore Indomito", "name_pt_PT": "Galardão da Resistência do Gladiador Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125507, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92217, "buy_price": 461085, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125030, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Conquest", "name_ko_KR": "거침없는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant farouche", "name_de_DE": "Eroberungsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente salvaje", "name_ru_RU": "Жетон завоевания дикого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Indomito", "name_pt_PT": "Distintivo da Conquista do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125508, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92544, "buy_price": 462723, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0449999570846558, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125031, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Conquest", "name_ko_KR": "거침없는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant farouche", "name_de_DE": "Eroberungsinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente salvaje", "name_ru_RU": "Знак завоевания дикого бойца", "name_it_IT": "Fregio della Conquista del Combattente Indomito", "name_pt_PT": "Insígnia da Conquista do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125509, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92872, "buy_price": 464362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048699975013733, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125032, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Cruelty", "name_ko_KR": "거침없는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant farouche", "name_de_DE": "Grausamkeitsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente salvaje", "name_ru_RU": "Эмблема жестокости дикого бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Indomito", "name_pt_PT": "Emblema da Crueldade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125510, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84326, "buy_price": 421632, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9521999955177307, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125033, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Tenacity", "name_ko_KR": "거침없는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant farouche", "name_de_DE": "Hartnäckigkeitsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente salvaje", "name_ru_RU": "Эмблема упорства дикого бойца", "name_it_IT": "Emblema della Tenacia del Combattente Indomito", "name_pt_PT": "Emblema da Tenacidade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125511, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84654, "buy_price": 423270, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559000134468079, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125034, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Emblem of Meditation", "name_ko_KR": "거침없는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant farouche", "name_de_DE": "Meditationsemblem des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente salvaje", "name_ru_RU": "Эмблема медитации дикого бойца", "name_it_IT": "Emblema della Meditazione del Combattente Indomito", "name_pt_PT": "Emblema da Meditação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125512, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87328, "buy_price": 436642, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9861000180244446, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125035, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Dominance", "name_ko_KR": "거침없는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant farouche", "name_de_DE": "Vorherrschaftsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente salvaje", "name_ru_RU": "Жетон господства дикого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Indomito", "name_pt_PT": "Distintivo da Dominância do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125513, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 804, "buy_price": 4023, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9897000193595886, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125036, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Dominance", "name_ko_KR": "거침없는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant farouche", "name_de_DE": "Vorherrschaftsinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente salvaje", "name_ru_RU": "Знак господства дикого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Indomito", "name_pt_PT": "Insígnia da Dominância do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125514, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87975, "buy_price": 439875, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.993399977684021, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125037, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Cruelty", "name_ko_KR": "거침없는 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant farouche", "name_de_DE": "Grausamkeitsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente salvaje", "name_ru_RU": "Медальон жестокости дикого бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Indomito", "name_pt_PT": "Medalhão da Crueldade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125515, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88302, "buy_price": 441513, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9970999956130981, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125038, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Adaptation", "name_ko_KR": "거침없는 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant farouche", "name_de_DE": "Anpassungsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente salvaje", "name_ru_RU": "Медальон адаптации дикого бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Indomito", "name_pt_PT": "Medalhão da Adaptação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125516, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88630, "buy_price": 443152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0008000135421753, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125039, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Tenacity", "name_ko_KR": "거침없는 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant farouche", "name_de_DE": "Hartnäckigkeitsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente salvaje", "name_ru_RU": "Медальон упорства дикого бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Indomito", "name_pt_PT": "Medalhão da Tenacidade do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125517, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88949, "buy_price": 444746, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0044000148773193, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125040, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Medallion of Meditation", "name_ko_KR": "거침없는 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant farouche", "name_de_DE": "Meditationsmedaillon des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente salvaje", "name_ru_RU": "Медальон медитации дикого бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Indomito", "name_pt_PT": "Medalhão da Meditação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125518, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89276, "buy_price": 446384, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0081000328063965, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125041, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Victory", "name_ko_KR": "거침없는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant farouche", "name_de_DE": "Siegesabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente salvaje", "name_ru_RU": "Жетон победы дикого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Indomito", "name_pt_PT": "Distintivo da Vitória do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125519, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89604, "buy_price": 448022, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118000507354736, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125042, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Insignia of Victory", "name_ko_KR": "거침없는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant farouche", "name_de_DE": "Siegesinsigne des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente salvaje", "name_ru_RU": "Знак победы дикого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Indomito", "name_pt_PT": "Insígnia da Vitória do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125520, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 89932, "buy_price": 449661, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0154999494552612, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125043, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Badge of Adaptation", "name_ko_KR": "거침없는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant farouche", "name_de_DE": "Anpassungsabzeichen des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente salvaje", "name_ru_RU": "Жетон адаптации дикого бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Indomito", "name_pt_PT": "Distintivo da Adaptação do Combatente Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125521, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 279556, "buy_price": 1397781, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190999507904053, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125044, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Conquest", "name_ko_KR": "거침없는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente salvaje", "name_ru_RU": "Акколада завоевания дикого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Indomito", "name_pt_PT": "Galardão da Conquista do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125522, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 831, "buy_price": 4158, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0227999687194824, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125045, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Dominance", "name_ko_KR": "거침없는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente salvaje", "name_ru_RU": "Акколада господства дикого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Indomito", "name_pt_PT": "Galardão da Dominância do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125523, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 281586, "buy_price": 1407931, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0264999866485596, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125046, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Victory", "name_ko_KR": "거침없는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente salvaje", "name_ru_RU": "Акколада победы дикого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Indomito", "name_pt_PT": "Galardão da Vitória do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125524, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 282601, "buy_price": 1413006, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0302000045776367, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125047, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Meditation", "name_ko_KR": "거침없는 전투원의 명상 상징", "name_fr_FR": "Décoration de méditation du combattant farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的冥想奖章", "name_es_ES": "Galardón de meditación de Combatiente salvaje", "name_ru_RU": "Акколада медитации дикого бойца", "name_it_IT": "Decorazione della Meditazione del Combattente Indomito", "name_pt_PT": "Galardão da Meditação do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125525, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Combatant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 283588, "buy_price": 1417943, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0338000059127808, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125048, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Wild Combatant's Accolade of Endurance", "name_ko_KR": "거침없는 전투원의 인내 상징", "name_fr_FR": "Décoration d'endurance du combattant farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Kämpfers", "name_zh_CN": "狂野争斗者的坚韧奖章", "name_es_ES": "Galardón de robustez de Combatiente salvaje", "name_ru_RU": "Акколада выносливости дикого бойца", "name_it_IT": "Decorazione della Resistenza del Combattente Indomito", "name_pt_PT": "Galardão da Resistência do Combatente Indomado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125616, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 202022, "buy_price": 1010112, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0266000032424927, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125139, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Conquest", "name_ko_KR": "거침없는 지원자의 정복 상징", "name_fr_FR": "Décoration de conquête de l'aspirant farouche", "name_de_DE": "Eroberungsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的征服奖章", "name_es_ES": "Galardón de conquista de aspirante salvaje", "name_ru_RU": "Акколада завоевания дикого претендента", "name_it_IT": "Decorazione della Conquista del Pretendente Indomito", "name_pt_PT": "Galardão da Conquista do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125617, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 698, "buy_price": 3490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0303000211715698, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125140, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Dominance", "name_ko_KR": "거침없는 지원자의 지배 상징", "name_fr_FR": "Décoration de domination de l'aspirant farouche", "name_de_DE": "Vorherrschaftsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的统御奖章", "name_es_ES": "Galardón de dominancia de aspirante salvaje", "name_ru_RU": "Акколада господства дикого претендента", "name_it_IT": "Decorazione della Dominazione del Pretendente Indomito", "name_pt_PT": "Galardão da Dominância do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125618, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 203478, "buy_price": 1017394, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034000039100647, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125141, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Victory", "name_ko_KR": "거침없는 지원자의 승리 상징", "name_fr_FR": "Décoration de victoire de l'aspirant farouche", "name_de_DE": "Siegesauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的胜利奖章", "name_es_ES": "Galardón de victoria de aspirante salvaje", "name_ru_RU": "Акколада победы дикого претендента", "name_it_IT": "Decorazione della Vittoria del Pretendente Indomito", "name_pt_PT": "Galardão da Vitória do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125619, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 204187, "buy_price": 1020936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037600040435791, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125142, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Meditation", "name_ko_KR": "거침없는 지원자의 명상 상징", "name_fr_FR": "Décoration de méditation de l'aspirant farouche", "name_de_DE": "Meditationsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的冥想奖章", "name_es_ES": "Galardón de meditación de aspirante salvaje", "name_ru_RU": "Акколада медитации дикого претендента", "name_it_IT": "Decorazione della Meditazione del Pretendente Indomito", "name_pt_PT": "Galardão da Meditação do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125620, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Aspirant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 204915, "buy_price": 1024576, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125143, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Wild Aspirant's Accolade of Endurance", "name_ko_KR": "거침없는 지원자의 인내 상징", "name_fr_FR": "Décoration d'endurance de l'aspirant farouche", "name_de_DE": "Beständigkeitsauszeichnung des unbändigen Aspiranten", "name_zh_CN": "狂野候选者的坚韧奖章", "name_es_ES": "Galardón de robustez de aspirante salvaje", "name_ru_RU": "Акколада выносливости дикого претендента", "name_it_IT": "Decorazione della Resistenza del Pretendente Indomito", "name_pt_PT": "Galardão da Resistência do Aspirante Selvagem", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125970, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 159072, "buy_price": 795360, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0081000328063965, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126449, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador belicista", "name_ru_RU": "Жетон завоевания воинственного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Conquista do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125971, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 159655, "buy_price": 798279, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118000507354736, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126450, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador belicista", "name_ru_RU": "Знак завоевания воинственного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia da Conquista do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125972, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 160239, "buy_price": 801199, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0154999494552612, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126451, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Cruelty", "name_ko_KR": "전쟁을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur belliqueux", "name_de_DE": "Grausamkeitsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador belicista", "name_ru_RU": "Эмблема жестокости воинственного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Crueldade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125973, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 160807, "buy_price": 804039, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190999507904053, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126452, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Tenacity", "name_ko_KR": "전쟁을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur belliqueux", "name_de_DE": "Hartnäckigkeitsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador belicista", "name_ru_RU": "Эмблема упорства воинственного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Tenacidade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125974, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 161391, "buy_price": 806958, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0227999687194824, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126453, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador belicista", "name_ru_RU": "Эмблема медитации воинственного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Meditação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125975, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 161975, "buy_price": 809877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0264999866485596, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126454, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador belicista", "name_ru_RU": "Жетон господства воинственного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Dominância do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125976, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1351, "buy_price": 6756, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0302000045776367, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126455, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador belicista", "name_ru_RU": "Знак господства воинственного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia da Dominância do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125977, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 163127, "buy_price": 815637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0338000059127808, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 127126, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Cruelty", "name_ko_KR": "전쟁을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur belliqueux", "name_de_DE": "Grausamkeitsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador belicista", "name_ru_RU": "Медальон жестокости воинственного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125978, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 152097, "buy_price": 760488, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638999700546265, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 127125, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Adaptation", "name_ko_KR": "전쟁을 부르는 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur belliqueux", "name_de_DE": "Anpassungsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador belicista", "name_ru_RU": "Медальон адаптации воинственного гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Adaptação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125979, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 152681, "buy_price": 763407, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126456, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Tenacity", "name_ko_KR": "전쟁을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur belliqueux", "name_de_DE": "Hartnäckigkeitsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador belicista", "name_ru_RU": "Медальон упорства воинственного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125980, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 153249, "buy_price": 766247, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9711999893188477, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126457, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador belicista", "name_ru_RU": "Медальон медитации воинственного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Meditação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125981, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 153833, "buy_price": 769166, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9749000072479248, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126458, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur belliqueux", "name_de_DE": "Siegesabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador belicista", "name_ru_RU": "Жетон победы воинственного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Vitória do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125982, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 154417, "buy_price": 772086, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.978600025177002, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126459, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur belliqueux", "name_de_DE": "Siegesinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador belicista", "name_ru_RU": "Знак победы воинственного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia de Vitória do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125983, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 155001, "buy_price": 775005, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9822999835014343, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126460, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Adaptation", "name_ko_KR": "전쟁을 부르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur belliqueux", "name_de_DE": "Anpassungsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador belicista", "name_ru_RU": "Жетон адаптации воинственного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Adaptação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125984, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 394050, "buy_price": 1970251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9858999848365784, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126461, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador belicista", "name_ru_RU": "Акколада завоевания воинственного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125985, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 1297, "buy_price": 6489, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9896000027656555, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126462, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador belicista", "name_ru_RU": "Акколада господства воинственного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125986, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 397007, "buy_price": 1985039, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9933000206947327, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126463, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador belicista", "name_ru_RU": "Акколада победы воинственного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125987, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 398486, "buy_price": 1992433, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126464, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 상징", "name_fr_FR": "Décoration de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想奖章", "name_es_ES": "Galardón de meditación de Gladiador belicista", "name_ru_RU": "Акколада медитации воинственного гладиатора", "name_it_IT": "Decorazione della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 125988, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 399925, "buy_price": 1999628, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126465, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 검투사의 인내 상징", "name_fr_FR": "Décoration d'endurance du gladiateur belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的坚韧奖章", "name_es_ES": "Galardón de robustez de Gladiador belicista", "name_ru_RU": "Акколада выносливости воинственного гладиатора", "name_it_IT": "Decorazione della Resistenza del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126144, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 106255, "buy_price": 531275, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0378999710083008, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126621, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant belliqueux", "name_de_DE": "Eroberungsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente belicista", "name_ru_RU": "Жетон завоевания воинственного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Conquista do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126145, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 106633, "buy_price": 533169, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041599988937378, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126622, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant belliqueux", "name_de_DE": "Eroberungsinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente belicista", "name_ru_RU": "Знак завоевания воинственного бойца", "name_it_IT": "Fregio della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Conquista do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126146, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107002, "buy_price": 535011, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045199990272522, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126623, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Cruelty", "name_ko_KR": "전쟁을 부르는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant belliqueux", "name_de_DE": "Grausamkeitsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente belicista", "name_ru_RU": "Эмблема жестокости воинственного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Crueldade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126147, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 107381, "buy_price": 536905, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126624, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Tenacity", "name_ko_KR": "전쟁을 부르는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant belliqueux", "name_de_DE": "Hartnäckigkeitsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente belicista", "name_ru_RU": "Эмблема упорства воинственного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Tenacidade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126148, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 97512, "buy_price": 487560, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524999856948853, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126625, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant belliqueux", "name_de_DE": "Meditationsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente belicista", "name_ru_RU": "Эмблема медитации воинственного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Meditação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126149, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 97890, "buy_price": 489454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9562000036239624, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126626, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente belicista", "name_ru_RU": "Жетон господства воинственного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Dominância do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126150, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 858, "buy_price": 4291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9598000049591064, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126627, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente belicista", "name_ru_RU": "Знак господства воинственного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Dominância do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126151, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 98638, "buy_price": 493191, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126628, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Cruelty", "name_ko_KR": "전쟁을 부르는 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant belliqueux", "name_de_DE": "Grausamkeitsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente belicista", "name_ru_RU": "Медальон жестокости воинственного бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Crueldade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126152, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 99017, "buy_price": 495085, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126629, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Adaptation", "name_ko_KR": "전쟁을 부르는 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant belliqueux", "name_de_DE": "Anpassungsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente belicista", "name_ru_RU": "Медальон адаптации воинственного бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Adaptação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126153, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 99395, "buy_price": 496979, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126630, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Tenacity", "name_ko_KR": "전쟁을 부르는 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant belliqueux", "name_de_DE": "Hartnäckigkeitsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente belicista", "name_ru_RU": "Медальон упорства воинственного бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Tenacidade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126154, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 99764, "buy_price": 498822, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9745000004768372, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126631, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant belliqueux", "name_de_DE": "Meditationsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente belicista", "name_ru_RU": "Медальон медитации воинственного бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Meditação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126155, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 102856, "buy_price": 514280, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.004699945449829, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126632, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant belliqueux", "name_de_DE": "Siegesabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente belicista", "name_ru_RU": "Жетон победы воинственного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Vitória do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126156, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103234, "buy_price": 516174, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0083999633789062, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126633, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant belliqueux", "name_de_DE": "Siegesinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente belicista", "name_ru_RU": "Знак победы воинственного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Vitória do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126157, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 103603, "buy_price": 518017, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0119999647140503, "flags_1": 4096, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126634, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Adaptation", "name_ko_KR": "전쟁을 부르는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant belliqueux", "name_de_DE": "Anpassungsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente belicista", "name_ru_RU": "Жетон адаптации воинственного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Adaptação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126158, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 295854, "buy_price": 1479274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126635, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente belicista", "name_ru_RU": "Акколада завоевания воинственного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126159, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 911, "buy_price": 4557, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0194000005722046, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126636, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente belicista", "name_ru_RU": "Акколада господства воинственного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126160, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 298010, "buy_price": 1490052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0231000185012817, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126637, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente belicista", "name_ru_RU": "Акколада победы воинственного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126161, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 299059, "buy_price": 1495295, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0267000198364258, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126638, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 상징", "name_fr_FR": "Décoration de méditation du combattant belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想奖章", "name_es_ES": "Galardón de meditación de Combatiente belicista", "name_ru_RU": "Акколада медитации воинственного бойца", "name_it_IT": "Decorazione della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126162, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 300136, "buy_price": 1500684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030400037765503, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126639, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 전투원의 인내 상징", "name_fr_FR": "Décoration d'endurance du combattant belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的坚韧奖章", "name_es_ES": "Galardón de robustez de Combatiente belicista", "name_ru_RU": "Акколада выносливости воинственного бойца", "name_it_IT": "Decorazione della Resistenza del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126253, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 201353, "buy_price": 1006767, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0232000350952148, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126730, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 지원자의 정복 상징", "name_fr_FR": "Décoration de conquête de l'aspirant belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的征服奖章", "name_es_ES": "Galardón de conquista de aspirante belicista", "name_ru_RU": "Акколада завоевания воинственного претендента", "name_it_IT": "Decorazione della Conquista del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126254, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 695, "buy_price": 3479, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.026900053024292, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126731, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 지원자의 지배 상징", "name_fr_FR": "Décoration de domination de l'aspirant belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的统御奖章", "name_es_ES": "Galardón de dominancia de aspirante belicista", "name_ru_RU": "Акколада господства воинственного претендента", "name_it_IT": "Decorazione della Dominazione del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126255, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 202790, "buy_price": 1013950, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030500054359436, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126732, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 지원자의 승리 상징", "name_fr_FR": "Décoration de victoire de l'aspirant belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的胜利奖章", "name_es_ES": "Galardón de victoria de aspirante belicista", "name_ru_RU": "Акколада победы воинственного претендента", "name_it_IT": "Decorazione della Vittoria del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126256, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 203518, "buy_price": 1017590, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0341999530792236, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126733, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 지원자의 명상 상징", "name_fr_FR": "Décoration de méditation de l'aspirant belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的冥想奖章", "name_es_ES": "Galardón de meditación de aspirante belicista", "name_ru_RU": "Акколада медитации воинственного претендента", "name_it_IT": "Decorazione della Meditazione del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126257, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 204246, "buy_price": 1021231, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0378999710083008, "flags_1": 528384, "flags_2": 8194, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126734, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 지원자의 인내 상징", "name_fr_FR": "Décoration d'endurance de l'aspirant belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的坚韧奖章", "name_es_ES": "Galardón de robustez de aspirante belicista", "name_ru_RU": "Акколада выносливости воинственного претендента", "name_it_IT": "Decorazione della Resistenza del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126449, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 151498, "buy_price": 757490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.960099995136261, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125970, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador belicista", "name_ru_RU": "Жетон завоевания воинственного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Conquista do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126450, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 152081, "buy_price": 760409, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638000130653381, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125971, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador belicista", "name_ru_RU": "Знак завоевания воинственного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia da Conquista do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126451, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 152649, "buy_price": 763249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674000144004822, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125972, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Cruelty", "name_ko_KR": "전쟁을 부르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur belliqueux", "name_de_DE": "Grausamkeitsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador belicista", "name_ru_RU": "Эмблема жестокости воинственного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Crueldade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126452, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 153233, "buy_price": 766168, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710999727249146, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125973, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Tenacity", "name_ko_KR": "전쟁을 부르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur belliqueux", "name_de_DE": "Hartnäckigkeitsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador belicista", "name_ru_RU": "Эмблема упорства воинственного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Tenacidade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126453, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 153817, "buy_price": 769087, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9747999906539917, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125974, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Emblem of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsemblem des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador belicista", "name_ru_RU": "Эмблема медитации воинственного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Emblema da Meditação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126454, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 154401, "buy_price": 772007, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9785000085830688, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125975, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador belicista", "name_ru_RU": "Жетон господства воинственного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Dominância do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126455, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1288, "buy_price": 6440, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9821000099182129, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125976, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador belicista", "name_ru_RU": "Знак господства воинственного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia da Dominância do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126456, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 155553, "buy_price": 777766, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98580002784729, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125979, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Tenacity", "name_ko_KR": "전쟁을 부르는 검투사의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du gladiateur belliqueux", "name_de_DE": "Hartnäckigkeitsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的顽强勋章", "name_es_ES": "Medallón de tenacidad de Gladiador belicista", "name_ru_RU": "Медальон упорства воинственного гладиатора", "name_it_IT": "Medaglione della Tenacia del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Tenacidade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126457, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 11625, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156137, "buy_price": 780685, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9894999861717224, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125980, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 메달", "name_fr_FR": "Médaillon de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想勋章", "name_es_ES": "Medallón de meditación de Gladiador belicista", "name_ru_RU": "Медальон медитации воинственного гладиатора", "name_it_IT": "Medaglione della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Meditação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126458, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 156721, "buy_price": 783605, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9932000041007996, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125981, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur belliqueux", "name_de_DE": "Siegesabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador belicista", "name_ru_RU": "Жетон победы воинственного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Vitória do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126459, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 157289, "buy_price": 786445, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9968000054359436, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125982, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Insignia of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur belliqueux", "name_de_DE": "Siegesinsigne des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador belicista", "name_ru_RU": "Знак победы воинственного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Insígnia de Vitória do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126460, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7750, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 157872, "buy_price": 789364, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000499963760376, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125983, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Badge of Adaptation", "name_ko_KR": "전쟁을 부르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur belliqueux", "name_de_DE": "Anpassungsabzeichen des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador belicista", "name_ru_RU": "Жетон адаптации воинственного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Guerrafondaio", "name_pt_PT": "Distintivo da Adaptação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126461, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 411956, "buy_price": 2059780, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0306999683380127, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125984, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador belicista", "name_ru_RU": "Акколада завоевания воинственного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126462, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 1356, "buy_price": 6782, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0342999696731567, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125985, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador belicista", "name_ru_RU": "Акколада господства воинственного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126463, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 414873, "buy_price": 2074369, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0379999876022339, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125986, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador belicista", "name_ru_RU": "Акколада победы воинственного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126464, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 416352, "buy_price": 2081763, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041700005531311, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125987, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 검투사의 명상 상징", "name_fr_FR": "Décoration de méditation du gladiateur belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的冥想奖章", "name_es_ES": "Galardón de meditación de Gladiador belicista", "name_ru_RU": "Акколада медитации воинственного гладиатора", "name_it_IT": "Decorazione della Meditazione del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126465, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 417831, "buy_price": 2089157, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0454000234603882, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125988, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 검투사의 인내 상징", "name_fr_FR": "Décoration d'endurance du gladiateur belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的坚韧奖章", "name_es_ES": "Galardón de robustez de Gladiador belicista", "name_ru_RU": "Акколада выносливости воинственного гладиатора", "name_it_IT": "Decorazione della Resistenza del Gladiatore Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Gladiador Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126621, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100583, "buy_price": 502917, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126144, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant belliqueux", "name_de_DE": "Eroberungsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente belicista", "name_ru_RU": "Жетон завоевания воинственного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Conquista do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126622, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 100962, "buy_price": 504811, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9861999750137329, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126145, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant belliqueux", "name_de_DE": "Eroberungsinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente belicista", "name_ru_RU": "Знак завоевания воинственного бойца", "name_it_IT": "Fregio della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Conquista do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126623, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 101341, "buy_price": 506705, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9898999929428101, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126146, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Cruelty", "name_ko_KR": "전쟁을 부르는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant belliqueux", "name_de_DE": "Grausamkeitsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente belicista", "name_ru_RU": "Эмблема жестокости воинственного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Crueldade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126624, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 101709, "buy_price": 508547, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9934999942779541, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126147, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Tenacity", "name_ko_KR": "전쟁을 부르는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant belliqueux", "name_de_DE": "Hartnäckigkeitsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente belicista", "name_ru_RU": "Эмблема упорства воинственного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Tenacidade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126625, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Emblem of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7051, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 102088, "buy_price": 510441, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126148, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Emblem of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant belliqueux", "name_de_DE": "Meditationsemblem des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente belicista", "name_ru_RU": "Эмблема медитации воинственного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Emblema da Meditação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126626, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 102467, "buy_price": 512335, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126149, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente belicista", "name_ru_RU": "Жетон господства воинственного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Dominância do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126627, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 898, "buy_price": 4491, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126150, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente belicista", "name_ru_RU": "Знак господства воинственного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Dominância do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126628, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103214, "buy_price": 516072, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082000494003296, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126151, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Cruelty", "name_ko_KR": "전쟁을 부르는 전투원의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du combattant belliqueux", "name_de_DE": "Grausamkeitsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的残酷勋章", "name_es_ES": "Medallón de crueldad de Combatiente belicista", "name_ru_RU": "Медальон жестокости воинственного бойца", "name_it_IT": "Medaglione dell'Atrocità del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Crueldade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126629, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103593, "buy_price": 517966, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126152, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Adaptation", "name_ko_KR": "전쟁을 부르는 전투원의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du combattant belliqueux", "name_de_DE": "Anpassungsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的同化勋章", "name_es_ES": "Medallón de adaptación de Combatiente belicista", "name_ru_RU": "Медальон адаптации воинственного бойца", "name_it_IT": "Medaglione dell'Adattamento del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Adaptação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126630, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Tenacity", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 15863, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 103972, "buy_price": 519860, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0155999660491943, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126153, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Tenacity", "name_ko_KR": "전쟁을 부르는 전투원의 불굴 메달", "name_fr_FR": "Médaillon de ténacité du combattant belliqueux", "name_de_DE": "Hartnäckigkeitsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的顽强勋章", "name_es_ES": "Medallón de tenacidad de Combatiente belicista", "name_ru_RU": "Медальон упорства воинственного бойца", "name_it_IT": "Medaglione della Tenacia del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Tenacidade do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126631, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Medallion of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10575, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 104350, "buy_price": 521754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0192999839782715, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126154, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Medallion of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 메달", "name_fr_FR": "Médaillon de méditation du combattant belliqueux", "name_de_DE": "Meditationsmedaillon des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想勋章", "name_es_ES": "Medallón de meditación de Combatiente belicista", "name_ru_RU": "Медальон медитации воинственного бойца", "name_it_IT": "Medaglione della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Medalhão da Meditação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126632, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 104719, "buy_price": 523596, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0228999853134155, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126155, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant belliqueux", "name_de_DE": "Siegesabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente belicista", "name_ru_RU": "Жетон победы воинственного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Vitória do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126633, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Insignia of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 105098, "buy_price": 525490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0266000032424927, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126156, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Insignia of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant belliqueux", "name_de_DE": "Siegesinsigne des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente belicista", "name_ru_RU": "Знак победы воинственного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Insígnia da Vitória do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126634, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Badge of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7050, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 105476, "buy_price": 527384, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0303000211715698, "flags_1": 4096, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126157, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Badge of Adaptation", "name_ko_KR": "전쟁을 부르는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant belliqueux", "name_de_DE": "Anpassungsabzeichen des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente belicista", "name_ru_RU": "Жетон адаптации воинственного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Guerrafondaio", "name_pt_PT": "Distintivo da Adaptação do Combatente Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126635, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 301156, "buy_price": 1505781, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126158, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente belicista", "name_ru_RU": "Акколада завоевания воинственного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126636, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 927, "buy_price": 4638, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037600040435791, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126159, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的统御勋章", "name_es_ES": "Galardón de dominancia de Combatiente belicista", "name_ru_RU": "Акколада господства воинственного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126637, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 281873, "buy_price": 1409367, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9677000045776367, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126160, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente belicista", "name_ru_RU": "Акколада победы воинственного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126638, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 282951, "buy_price": 1414756, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9714000225067139, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126161, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 전투원의 명상 상징", "name_fr_FR": "Décoration de méditation du combattant belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的冥想奖章", "name_es_ES": "Galardón de meditación de Combatiente belicista", "name_ru_RU": "Акколада медитации воинственного бойца", "name_it_IT": "Decorazione della Meditazione del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126639, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Combatant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 283999, "buy_price": 1419999, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750000238418579, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126162, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Warmongering Combatant's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 전투원의 인내 상징", "name_fr_FR": "Décoration d'endurance du combattant belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Kämpfers", "name_zh_CN": "好战争斗者的坚韧奖章", "name_es_ES": "Galardón de robustez de Combatiente belicista", "name_ru_RU": "Акколада выносливости воинственного бойца", "name_it_IT": "Decorazione della Resistenza del Combattente Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Combatente Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126730, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 204935, "buy_price": 1024675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413999557495117, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126253, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Conquest", "name_ko_KR": "전쟁을 부르는 지원자의 정복 상징", "name_fr_FR": "Décoration de conquête de l'aspirant belliqueux", "name_de_DE": "Eroberungsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的征服奖章", "name_es_ES": "Galardón de conquista de aspirante belicista", "name_ru_RU": "Акколада завоевания воинственного претендента", "name_it_IT": "Decorazione della Conquista del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Conquista do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126731, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 708, "buy_price": 3540, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0450999736785889, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126254, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Dominance", "name_ko_KR": "전쟁을 부르는 지원자의 지배 상징", "name_fr_FR": "Décoration de domination de l'aspirant belliqueux", "name_de_DE": "Vorherrschaftsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的统御奖章", "name_es_ES": "Galardón de dominancia de aspirante belicista", "name_ru_RU": "Акколада господства воинственного претендента", "name_it_IT": "Decorazione della Dominazione del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Dominância do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126732, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 206391, "buy_price": 1031956, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048799991607666, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126255, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Victory", "name_ko_KR": "전쟁을 부르는 지원자의 승리 상징", "name_fr_FR": "Décoration de victoire de l'aspirant belliqueux", "name_de_DE": "Siegesauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的胜利奖章", "name_es_ES": "Galardón de victoria de aspirante belicista", "name_ru_RU": "Акколада победы воинственного претендента", "name_it_IT": "Decorazione della Vittoria del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Vitória do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126733, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 187401, "buy_price": 937006, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9523000121116638, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126256, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Meditation", "name_ko_KR": "전쟁을 부르는 지원자의 명상 상징", "name_fr_FR": "Décoration de méditation de l'aspirant belliqueux", "name_de_DE": "Meditationsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的冥想奖章", "name_es_ES": "Galardón de meditación de aspirante belicista", "name_ru_RU": "Акколада медитации воинственного претендента", "name_it_IT": "Decorazione della Meditazione del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Meditação do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126734, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Aspirant's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 193344, "buy_price": 966721, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 528384, "flags_2": 8193, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 126257, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Warmongering Aspirant's Accolade of Endurance", "name_ko_KR": "전쟁을 부르는 지원자의 인내 상징", "name_fr_FR": "Décoration d'endurance de l'aspirant belliqueux", "name_de_DE": "Beständigkeitsauszeichnung des kriegstreibenden Aspiranten", "name_zh_CN": "好战候选者的坚韧奖章", "name_es_ES": "Galardón de robustez de aspirante belicista", "name_ru_RU": "Акколада выносливости воинственного претендента", "name_it_IT": "Decorazione della Resistenza del Pretendente Guerrafondaio", "name_pt_PT": "Galardão da Resistência do Aspirante Pugnaz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126941, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Accolade of Conquest", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9598000049591064, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Accolade of Conquest", "name_ko_KR": "토너먼트 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur de tournoi", "name_de_DE": "Eroberungsauszeichnung des Turniergladiators", "name_zh_CN": "竞技角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador de torneo", "name_ru_RU": "Акколада завоевания состязающегося гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore del Torneo", "name_pt_PT": "Galardão da Conquista do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126942, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Accolade of Dominance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Accolade of Dominance", "name_ko_KR": "토너먼트 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur de tournoi", "name_de_DE": "Vorherrschaftsauszeichnung des Turniergladiators", "name_zh_CN": "竞技角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador de torneo", "name_ru_RU": "Акколада господства состязающегося гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore del Torneo", "name_pt_PT": "Galardão da Dominância do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126943, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Accolade of Victory", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937000274658203, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Accolade of Victory", "name_ko_KR": "토너먼트 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur de tournoi", "name_de_DE": "Siegesauszeichnung des Turniergladiators", "name_zh_CN": "竞技角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador de torneo", "name_ru_RU": "Акколада победы состязающегося гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore del Torneo", "name_pt_PT": "Galardão da Vitória do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126944, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Accolade of Meditation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973000288009644, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Accolade of Meditation", "name_ko_KR": "토너먼트 검투사의 명상 상징", "name_fr_FR": "Décoration de méditation du gladiateur de tournoi", "name_de_DE": "Meditationsauszeichnung des Turniergladiators", "name_zh_CN": "竞技角斗士的冥想奖章", "name_es_ES": "Galardón de meditación de Gladiador de torneo", "name_ru_RU": "Акколада медитации состязающегося гладиатора", "name_it_IT": "Decorazione della Meditazione del Gladiatore del Torneo", "name_pt_PT": "Galardão da Meditação do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126945, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Accolade of Endurance", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0010000467300415, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13178, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Accolade of Endurance", "name_ko_KR": "토너먼트 검투사의 인내 상징", "name_fr_FR": "Décoration d'endurance du gladiateur de tournoi", "name_de_DE": "Beständigkeitsauszeichnung des Turniergladiators", "name_zh_CN": "狂野候选者的坚韧奖章", "name_es_ES": "Galardón de robustez de Gladiador de torneo", "name_ru_RU": "Акколада выносливости состязающегося гладиатора", "name_it_IT": "Decorazione della Resistenza del Gladiatore del Torneo", "name_pt_PT": "Galardão da Resistência do Gladiador do Torneio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126948, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defending Champion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 5259, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0119999647140503, "flags_1": 134742080, "flags_2": 159744, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Defending Champion", "name_ko_KR": "난공불락의 용사", "name_fr_FR": "Champion défendant", "name_de_DE": "Verteidigender Champion", "name_zh_CN": "卫冕勇士", "name_es_ES": "Campeón defensor", "name_ru_RU": "Действующий чемпион", "name_it_IT": "Campione In Carica", "name_pt_PT": "Campeão Atual", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 126949, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Returning Champion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 5259, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 134742080, "flags_2": 159744, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Returning Champion", "name_ko_KR": "돌아온 용사", "name_fr_FR": "Retour du champion", "name_de_DE": "Zurückkehrender Champion", "name_zh_CN": "回归勇士", "name_es_ES": "Campeón retornado", "name_ru_RU": "Вернувшийся чемпион", "name_it_IT": "Campione di Ritorno", "name_pt_PT": "Campeão Obstinado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127123, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 142710, "buy_price": 713553, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124864, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Adaptation", "name_ko_KR": "거침없는 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur farouche", "name_de_DE": "Anpassungsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador salvaje", "name_ru_RU": "Медальон адаптации дикого гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Indomito", "name_pt_PT": "Medalhão da Adaptação do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127124, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wild Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 143215, "buy_price": 716079, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0492000579833984, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 124863, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Wild Gladiator's Medallion of Cruelty", "name_ko_KR": "거침없는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur farouche", "name_de_DE": "Grausamkeitsmedaillon des unbändigen Gladiators", "name_zh_CN": "狂野角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador salvaje", "name_ru_RU": "Медальон жестокости дикого гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Indomito", "name_pt_PT": "Medalhão da Crueldade do Gladiador Indomado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127125, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 150330, "buy_price": 751651, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9527000188827515, "flags_1": 528384, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125978, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Adaptation", "name_ko_KR": "전쟁을 부르는 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur belliqueux", "name_de_DE": "Anpassungsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador belicista", "name_ru_RU": "Медальон адаптации воинственного гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Adaptação do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127126, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmongering Gladiator's Medallion of Cruelty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17438, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 150914, "buy_price": 754570, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 528384, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 125977, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13213, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Warmongering Gladiator's Medallion of Cruelty", "name_ko_KR": "전쟁을 부르는 검투사의 잔혹 메달", "name_fr_FR": "Médaillon de cruauté du gladiateur belliqueux", "name_de_DE": "Grausamkeitsmedaillon des kriegstreibenden Gladiators", "name_zh_CN": "好战角斗士的残酷勋章", "name_es_ES": "Medallón de crueldad de Gladiador belicista", "name_ru_RU": "Медальон жестокости воинственного гладиатора", "name_it_IT": "Medaglione dell'Atrocità del Gladiatore Guerrafondaio", "name_pt_PT": "Medalhão da Crueldade do Gladiador Pugnaz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127173, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiffar's Nexus-Horn", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0083999633789062, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Shiffar's Nexus-Horn", "name_ko_KR": "쉬파르의 연합 뿔피리", "name_fr_FR": "Corne-nexus de Shiffar", "name_de_DE": "Shiffars Nexushorn", "name_zh_CN": "希法尔的节点号角", "name_es_ES": "Cuerno-nexo de Shiffar", "name_ru_RU": "Астральный рог Шиффара", "name_it_IT": "Corno del Nexus di Shiffar", "name_pt_PT": "Trompa-Nexus de Shiffar", "on_use": false, "id_encounter": 551, "id_journal_instance": 254, "id_map": 552, "instance_type": 1}, {"id": 127184, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Runed Fungalcap", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1807, "buy_price": 7230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9751999974250793, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Runed Fungalcap", "name_ko_KR": "룬새김 곰팡이버섯", "name_fr_FR": "Chapeau de champignon runique", "name_de_DE": "Runenverzierte Fungushülle", "name_zh_CN": "符文菌帽", "name_es_ES": "Seta rúnica", "name_ru_RU": "Рунический гриб", "name_it_IT": "Funghetto Runico", "name_pt_PT": "Cogumelo Rúnico", "on_use": true, "id_encounter": 571, "id_journal_instance": 260, "id_map": 547, "instance_type": 1}, {"id": 127201, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Quagmirran's Eye", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9639999866485596, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Quagmirran's Eye", "name_ko_KR": "쿠아그미란의 눈", "name_fr_FR": "Oeil de Bourbierreux", "name_de_DE": "Quagmirrans Auge", "name_zh_CN": "夸格米拉之眼", "name_es_ES": "Ojo de Quagmirran", "name_ru_RU": "Око Зыбуна", "name_it_IT": "Occhio di Bragatur", "name_pt_PT": "Olho de Atolaço", "on_use": false, "id_encounter": 572, "id_journal_instance": 260, "id_map": 547, "instance_type": 1}, {"id": 127245, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warp-Scarab Brooch", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9783999919891357, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Warp-Scarab Brooch", "name_ko_KR": "차원의 쇠똥구리 브로치", "name_fr_FR": "Broche du scarabée dimensionnel", "name_de_DE": "Sphärenskarabäusbrosche", "name_zh_CN": "星界甲虫", "name_es_ES": "Broche de escarabajo de distorsión", "name_ru_RU": "Покореженная скарабеем брошь", "name_it_IT": "Spilla degli Scarabei Distorti", "name_pt_PT": "Broche do Escaravelho Dimensional", "on_use": true, "id_encounter": 537, "id_journal_instance": 250, "id_map": 557, "instance_type": 1}, {"id": 127397, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Splendid Skettis Sapphire", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 7889, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 517008, "buy_price": 2585042, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0010000467300415, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Splendid Skettis Sapphire", "name_ko_KR": "화려한 스케티스 사파이어", "name_fr_FR": "Splendide saphir de Skettis", "name_de_DE": "Herrlicher Skettissaphir", "name_zh_CN": "璀璨的斯克提斯蓝宝石", "name_es_ES": "Zafiro de Skettis espléndido", "name_ru_RU": "Великолепный сапфир из Скеттиса", "name_it_IT": "Splendido Zaffiro di Skettis", "name_pt_PT": "Safira Skettis Esplêndida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127401, "race_mask": 18446744073709551615, "desc": "Screams and weeping are heard faintly in the distance as you clutch the skull.", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Skull", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524600, "buy_price": 2623004, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Tormented Skull", "name_ko_KR": "고통 받는 해골", "name_fr_FR": "Crâne tourmenté", "name_de_DE": "Gequälter Schädel", "name_zh_CN": "苦难颅骨", "name_es_ES": "Calavera atormentada", "name_ru_RU": "Изувеченный череп", "name_it_IT": "Teschio Tormentato", "name_pt_PT": "Caveira Atormentada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127418, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soothing Incense Brazier", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88966, "buy_price": 444834, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Soothing Incense Brazier", "name_ko_KR": "마음을 가라앉히는 향로", "name_fr_FR": "Brasero d'encens apaisant", "name_de_DE": "Besänftigender Weihrauchbrenner", "name_zh_CN": "宁神熏香炉", "name_es_ES": "Blandón de incienso reconfortante", "name_ru_RU": "Жаровня с умиротворяющими благовониями", "name_it_IT": "Braciere di Incenso Rilassante", "name_pt_PT": "Braseiro de Incenso Reconfortante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127441, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hourglass of the Unraveller", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0419000387191772, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Hourglass of the Unraveller", "name_ko_KR": "해결사의 모래시계", "name_fr_FR": "Sablier du détrameur", "name_de_DE": "Stundenglas des Entwirrers", "name_zh_CN": "分解者的沙漏", "name_es_ES": "Reloj de arena del liberador", "name_ru_RU": "Песочные часы Расплетающего", "name_it_IT": "Clessidra del Dipanatore", "name_pt_PT": "Ampulheta do Desembaraçador", "on_use": false, "id_encounter": 553, "id_journal_instance": 255, "id_map": 269, "instance_type": 1}, {"id": 127448, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scarab of the Infinite Cycle", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Scarab of the Infinite Cycle", "name_ko_KR": "무한한 세월의 스카라베", "name_fr_FR": "Scarabée du cycle infini", "name_de_DE": "Skarabäus des unendlichen Kreislaufs", "name_zh_CN": "无尽循环甲虫", "name_es_ES": "Escarabajo del ciclo infinito", "name_ru_RU": "Скарабей бесконечного цикла", "name_it_IT": "Scarabeo del Ciclo Eterno", "name_pt_PT": "Escaravelho do Ciclo Infinito", "on_use": false, "id_encounter": 554, "id_journal_instance": 255, "id_map": 269, "instance_type": 1}, {"id": 127474, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vestige of Haldor", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75560, "buy_price": 302242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0160000324249268, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Vestige of Haldor", "name_ko_KR": "할도르의 형적", "name_fr_FR": "Vestige d'Haldor", "name_de_DE": "Überreste von Haldor", "name_zh_CN": "赫尔多之痕", "name_es_ES": "Vestigio de Haldor", "name_ru_RU": "Останки Галдора", "name_it_IT": "Vestigia di Haldor", "name_pt_PT": "Vestígio de Haldor", "on_use": false, "id_encounter": 644, "id_journal_instance": 286, "id_map": 575, "instance_type": 1}, {"id": 127493, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Meteorite Whetstone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0121999979019165, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Meteorite Whetstone", "name_ko_KR": "유성 숫돌", "name_fr_FR": "Pierre à aiguiser météorique", "name_de_DE": "Meteoritenschleifstein", "name_zh_CN": "陨星磨石", "name_es_ES": "Piedra de afilar de meteorito", "name_ru_RU": "Метеоритный оселок", "name_it_IT": "Cote di Meteorite", "name_pt_PT": "Pedra-ume de Meteorito", "on_use": false, "id_encounter": 644, "id_journal_instance": 286, "id_map": 575, "instance_type": 1}, {"id": 127512, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Winged Talisman", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0083999633789062, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Winged Talisman", "name_ko_KR": "날개 달린 부적", "name_fr_FR": "Talisman ailé", "name_de_DE": "Geflügelter Talisman", "name_zh_CN": "展翼护符", "name_es_ES": "Dije alado", "name_ru_RU": "Крылатый талисман", "name_it_IT": "Talismano Alato", "name_pt_PT": "Talismã Alado", "on_use": true, "id_encounter": 599, "id_journal_instance": 275, "id_map": 602, "instance_type": 1}, {"id": 127550, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Offering of Sacrifice", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0006999969482422, "flags_1": 524288, "flags_2": 33579008, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Offering of Sacrifice", "name_ko_KR": "희생의 제물", "name_fr_FR": "Offrande de sacrifice", "name_de_DE": "Hingebungsvolle Opfergabe", "name_zh_CN": "献祭供品", "name_es_ES": "Ofrenda de sacrificio", "name_ru_RU": "Жертвоприношение", "name_it_IT": "Offerta di Sacrificio", "name_pt_PT": "Oferenda Sacrificial", "on_use": true, "id_encounter": 596, "id_journal_instance": 274, "id_map": 604, "instance_type": 1}, {"id": 127594, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sphere of Red Dragon's Blood", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041700005531311, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sphere of Red Dragon's Blood", "name_ko_KR": "붉은용 피의 구슬", "name_fr_FR": "Sphère de sang de dragon rouge", "name_de_DE": "Rote Drachenblutsphäre", "name_zh_CN": "红龙血珠", "name_es_ES": "Esfera de sangre de dragón Rojo", "name_ru_RU": "Сфера крови красного дракона", "name_it_IT": "Sfera di Sangue del Drago Rosso", "name_pt_PT": "Esfera de Sangue de Dragão Vermelho", "on_use": true, "id_encounter": 617, "id_journal_instance": 281, "id_map": 576, "instance_type": 1}, {"id": 127654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burning Agony", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85699, "buy_price": 428495, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9677000045776367, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Burning Agony", "name_ko_KR": "불타는 고뇌", "name_fr_FR": "Agonie brûlante", "name_de_DE": "Brennende Pein", "name_zh_CN": "炽燃之殇", "name_es_ES": "Agonía ardiente", "name_ru_RU": "Жаркая агония", "name_it_IT": "Agonia Bruciante", "name_pt_PT": "Agonia Ardente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127657, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Encroaching Void", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86673, "buy_price": 433366, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9786999821662903, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Encroaching Void", "name_ko_KR": "공허의 침해", "name_fr_FR": "Vide envahissant", "name_de_DE": "Übergreifende Leere", "name_zh_CN": "侵蚀虚空", "name_es_ES": "Vacío invasor", "name_ru_RU": "Подкрадывающаяся Бездна", "name_it_IT": "Vuoto Opprimente", "name_pt_PT": "Caos Envolvente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127660, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Contained Flame", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 32, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87647, "buy_price": 438236, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9897000193595886, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Contained Flame", "name_ko_KR": "병에 든 불꽃", "name_fr_FR": "Flamme contenue", "name_de_DE": "Eingedämmte Flamme", "name_zh_CN": "可控烈焰", "name_es_ES": "Llama contenida", "name_ru_RU": "Обузданный огонь", "name_it_IT": "Fiamma Trattenuta", "name_pt_PT": "Chama Contida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fang of Rasthe", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 36, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87975, "buy_price": 439875, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.993399977684021, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fang of Rasthe", "name_ko_KR": "라스더의 송곳니", "name_fr_FR": "Croc de Rasthe", "name_de_DE": "Zahn von Rasthe", "name_zh_CN": "拉瑟之牙", "name_es_ES": "Colmillo de Rasthe", "name_ru_RU": "Клык Расте", "name_it_IT": "Zanna di Rasthe", "name_pt_PT": "Presa de Rasthe", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127673, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638999700546265, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Adaptation", "name_ko_KR": "토너먼트 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur de tournoi", "name_de_DE": "Anpassungsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador de torneo", "name_ru_RU": "Медальон адаптации состязающегося гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Adaptação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127674, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tournament Gladiator's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500000, "buy_price": 500000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 561152, "flags_2": 24576, "flags_3": 8396800, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13196, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 5, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Tournament Gladiator's Medallion of Adaptation", "name_ko_KR": "토너먼트 검투사의 적응 메달", "name_fr_FR": "Médaillon d'adaptation du gladiateur de tournoi", "name_de_DE": "Anpassungsmedaillon des Turniergladiators", "name_zh_CN": "竞技角斗士的同化勋章", "name_es_ES": "Medallón de adaptación de Gladiador de torneo", "name_ru_RU": "Медальон адаптации состязающегося гладиатора", "name_it_IT": "Medaglione dell'Adattamento del Gladiatore del Torneo", "name_pt_PT": "Medalhão da Adaptação do Gladiador do Torneio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 127842, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Infernal Alchemist Stone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 47522, "buy_price": 237610, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0489000082015991, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2479, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Infernal Alchemist Stone", "name_ko_KR": "불지옥 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste infernale", "name_de_DE": "Infernaler Alchemistenstein", "name_zh_CN": "地狱火炼金石", "name_es_ES": "Piedra de alquimista infernal", "name_ru_RU": "Инфернальный алхимический камень", "name_it_IT": "Pietra Alchemica Infernale", "name_pt_PT": "Pedra do Alquimista Infernal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128023, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of the Wilds", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70352, "buy_price": 351760, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0307999849319458, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13217, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of the Wilds", "name_ko_KR": "야생의 돌", "name_fr_FR": "Pierre des étendues sauvages", "name_de_DE": "Stein der Wildnis", "name_zh_CN": "荒野之石", "name_es_ES": "Piedra de las espesuras", "name_ru_RU": "Камень дикости", "name_it_IT": "Pietra Selvaggia", "name_pt_PT": "Pedra dos Ermos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128024, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Stone of the Elements", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 341, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 81618, "buy_price": 408094, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.034500002861023, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13218, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 4, "name_en_US": "Stone of the Elements", "name_ko_KR": "원소의 돌", "name_fr_FR": "Pierre des éléments", "name_de_DE": "Stein der Elemente", "name_zh_CN": "元素之石", "name_es_ES": "Piedra de los elementos", "name_ru_RU": "Камень стихий", "name_it_IT": "Pietra Elementale", "name_pt_PT": "Pedra dos Elementos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128140, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Felblade Remnant", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382397, "buy_price": 1911988, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Smoldering Felblade Remnant", "name_ko_KR": "연기를 뿜는 지옥칼날 잔해", "name_fr_FR": "Vestige de gangrelame fumante", "name_de_DE": "Schwelende Dämonenklingenüberreste", "name_zh_CN": "阴燃的魔刃残片", "name_es_ES": "Remanente de hoja mácula candente", "name_ru_RU": "Тлеющий обломок клинка Скверны", "name_it_IT": "Resti Fumanti della Vilspada", "name_pt_PT": "Restos de Lâmina Vil Fumegante", "on_use": false, "id_encounter": 1432, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128141, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crackling Fel-Spark Plug", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 383751, "buy_price": 1918755, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0492000579833984, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Crackling Fel-Spark Plug", "name_ko_KR": "파지직거리는 지옥불티 플러그", "name_fr_FR": "Gangrebougie crépitante", "name_de_DE": "Knisternder Teufelsfunkenstecker", "name_zh_CN": "开裂的邪能火花塞", "name_es_ES": "Bujías viles crepitantes", "name_ru_RU": "Потрескивающая запальная свеча Скверны", "name_it_IT": "Spina della Vilscintilla Crepitante", "name_pt_PT": "Plugue de Chispa Vil Fasicante", "on_use": false, "id_encounter": 1425, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128142, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pledge of Iron Loyalty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 348455, "buy_price": 1742277, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9527000188827515, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Pledge of Iron Loyalty", "name_ko_KR": "강철 같은 충성의 서약", "name_fr_FR": "Serment de loyauté de fer", "name_de_DE": "Eiserner Treueeid", "name_zh_CN": "死忠誓词", "name_es_ES": "Juramento de Lealtad de Hierro", "name_ru_RU": "Клятва верности Железной Орде", "name_it_IT": "Pegno della Lealtà di Ferro", "name_pt_PT": "Jura de Lealdade de Ferro", "on_use": false, "id_encounter": 1426, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128143, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fragmented Runestone Etching", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 351972, "buy_price": 1759861, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Fragmented Runestone Etching", "name_ko_KR": "식각 마법석 파편", "name_fr_FR": "Gravure sur pierre runique fragmentée", "name_de_DE": "Verätzte Runensteinsplitter", "name_zh_CN": "铭刻符文石碎片", "name_es_ES": "Inscripción de piedra rúnica fragmentada", "name_ru_RU": "Фрагмент узора рунического камня", "name_it_IT": "Incisione su Pietra Runica Spezzata", "name_pt_PT": "Gravura de Pedra Rúnica Fragmentada", "on_use": false, "id_encounter": 1392, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128144, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Vile Viscera", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 40, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 351162, "buy_price": 1755810, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.960099995136261, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Vile Viscera", "name_ko_KR": "더러운 내장이 든 병", "name_fr_FR": "Fiole de vils viscères", "name_de_DE": "Phiole mit faulenden Innereien", "name_zh_CN": "邪心之瓶", "name_es_ES": "Vial de vísceras inmundas", "name_ru_RU": "Пузырек с отвратительными внутренностями", "name_it_IT": "Fiala di Viscere Vili", "name_pt_PT": "Vidro de Vísceras Vis", "on_use": false, "id_encounter": 1396, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128145, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Howling Soul Gem", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 352478, "buy_price": 1762394, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.963699996471405, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Howling Soul Gem", "name_ko_KR": "울부짖는 영혼 보석", "name_fr_FR": "Gemme d'âme hurlante", "name_de_DE": "Heulender Seelenedelstein", "name_zh_CN": "哀嚎的灵魂宝石", "name_es_ES": "Gema de alma aullante", "name_ru_RU": "Воющий самоцвет души", "name_it_IT": "Gemma dell'Anima Ululante", "name_pt_PT": "Gema Anímica Ululante", "on_use": false, "id_encounter": 1427, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128146, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ensnared Orb of the Sky", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 353832, "buy_price": 1769160, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674000144004822, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Ensnared Orb of the Sky", "name_ko_KR": "얼기설기한 하늘 보주", "name_fr_FR": "Orbe du ciel piégé", "name_de_DE": "Eingeschlossene Himmelskugel", "name_zh_CN": "被俘的天空宝珠", "name_es_ES": "Orbe celeste atrapado", "name_ru_RU": "Захваченная небесная сфера", "name_it_IT": "Globo del Cielo Intrappolato", "name_pt_PT": "Orbe Aprisionado do Céu", "on_use": false, "id_encounter": 1433, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128147, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Teardrop of Blood", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 355185, "buy_price": 1775927, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710999727249146, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Teardrop of Blood", "name_ko_KR": "피의 눈물방울", "name_fr_FR": "Larme de sang", "name_de_DE": "Blutige Träne", "name_zh_CN": "血泪晶珠", "name_es_ES": "Lágrima de sangre", "name_ru_RU": "Кровавая слеза", "name_it_IT": "Lacrima di Sangue", "name_pt_PT": "Lágrima de Sangue", "on_use": false, "id_encounter": 1396, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128148, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetid Salivation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 368496, "buy_price": 1842481, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0012999773025513, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Fetid Salivation", "name_ko_KR": "구린내 나는 타액", "name_fr_FR": "Salivation fétide", "name_de_DE": "Übelriechendes Speichelsekret", "name_zh_CN": "腐臭灵液", "name_es_ES": "Salivación fétida", "name_ru_RU": "Вонючие слюни", "name_it_IT": "Salivazione Fetida", "name_pt_PT": "Salivação Fétida", "on_use": false, "id_encounter": 1372, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128149, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Accusation of Inferiority", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 40, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 369821, "buy_price": 1849105, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0048999786376953, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Accusation of Inferiority", "name_ko_KR": "열등함의 고발", "name_fr_FR": "Accusation d'infériorité", "name_de_DE": "Schuldspruch der Minderwertigkeit", "name_zh_CN": "卑贱之罪", "name_es_ES": "Acusación de inferioridad", "name_ru_RU": "Обвинение в неполноценности", "name_it_IT": "Accusa d'Inferiorità", "name_pt_PT": "Acusação de Inferioridade", "on_use": false, "id_encounter": 1394, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pressure-Compressed Loop", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 371182, "buy_price": 1855913, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0085999965667725, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Pressure-Compressed Loop", "name_ko_KR": "기압 압축 실반지", "name_fr_FR": "Jonc comprimé", "name_de_DE": "Druckgehärtetes Band", "name_zh_CN": "压力指环", "name_es_ES": "Aro comprimido a presión", "name_ru_RU": "Сжатая под давлением петля", "name_it_IT": "Anello Compresso a Pressione", "name_pt_PT": "Anel Comprimido", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128151, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Portent of Disaster", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 372544, "buy_price": 1862722, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0123000144958496, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Portent of Disaster", "name_ko_KR": "재앙의 징조", "name_fr_FR": "Auspice du désastre", "name_de_DE": "Omen des Unheils", "name_zh_CN": "潜伏灾难", "name_es_ES": "Augurio de desastre", "name_ru_RU": "Предвестие бедствия", "name_it_IT": "Portento del Disastro", "name_pt_PT": "Agoiro do Desastre", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128152, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Decree of Demonic Sovereignty", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 373906, "buy_price": 1869530, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0160000324249268, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Decree of Demonic Sovereignty", "name_ko_KR": "악마 통치의 칙령", "name_fr_FR": "Décret de souveraineté démoniaque", "name_de_DE": "Erklärung der dämonischen Obergewalt", "name_zh_CN": "恶魔主宰谕令", "name_es_ES": "Decreto de soberanía demoníaca", "name_ru_RU": "Декрет демонического владычества", "name_it_IT": "Decreto della Sovranità Demoniaca", "name_pt_PT": "Decreto de Soberania Demoníaca", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128153, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unquenchable Doomfire Censer", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 32, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 375230, "buy_price": 1876154, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0196000337600708, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Unquenchable Doomfire Censer", "name_ko_KR": "꺼지지 않는 파멸불꽃 향로", "name_fr_FR": "Encensoir du feu funeste inextinguible", "name_de_DE": "Unauslöschbarer Teufelsqualmschwenker", "name_zh_CN": "不灭的魔火熏炉", "name_es_ES": "Incensario de Fuego apocalíptico insaciable", "name_ru_RU": "Неугасимая курильница Рокового Огня", "name_it_IT": "Incensiere del Fuoco della Rovina Inestinguibile", "name_pt_PT": "Cibório da Chama da Ruína Inextinguível", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128154, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grasp of the Defiler", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 40, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 376592, "buy_price": 1882963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023300051689148, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Grasp of the Defiler", "name_ko_KR": "더럽히는 자의 손아귀", "name_fr_FR": "Torsade du profanateur", "name_de_DE": "Griff des Entweihers", "name_zh_CN": "污染者之握", "name_es_ES": "Alcance del Corruptor", "name_ru_RU": "Хватка Осквернителя", "name_it_IT": "Stretta del Profanatore", "name_pt_PT": "Guante do Profanador", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 128217, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fel Shard", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 495987, "buy_price": 2479936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9603000283241272, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Fel Shard", "name_ko_KR": "지옥 파편", "name_fr_FR": "Éclat gangrené", "name_de_DE": "Teufelssplitter", "name_zh_CN": "邪能碎片", "name_es_ES": "Fragmento vil", "name_ru_RU": "Осколок Скверны", "name_it_IT": "Vilscheggia", "name_pt_PT": "Fragmento Vil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128220, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grannok's Lidless Eye", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 501720, "buy_price": 2508601, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9714000225067139, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Grannok's Lidless Eye", "name_ko_KR": "그란노크의 눈꺼풀 없는 눈", "name_fr_FR": "Œil sans paupière de Grannok", "name_de_DE": "Grannoks lidloses Auge", "name_zh_CN": "格兰诺克的不瞑之目", "name_es_ES": "Ojo sin párpado de Grannok", "name_ru_RU": "Глазное яблоко Граннока", "name_it_IT": "Occhio Senza Palpebra di Grannok", "name_pt_PT": "Olho Sem Pálpebra de Grannok", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smokeglass Lens Spyglass", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 505490, "buy_price": 2527453, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9786999821662903, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Smokeglass Lens Spyglass", "name_ko_KR": "간유리 렌즈 망원경", "name_fr_FR": "Longue-vue à verres fumés", "name_de_DE": "Rauchglasfernrohr", "name_zh_CN": "茶晶望远镜", "name_es_ES": "Catalejo de cristal ahumado", "name_ru_RU": "Подзорная труба с мутными линзами", "name_it_IT": "Cannocchiale con Lente Annerita", "name_pt_PT": "Luneta de Lente de Fumovítreo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Touch of the Void", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9898999929428101, "flags_1": 134742080, "flags_2": 155648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2053, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Touch of the Void", "name_ko_KR": "공허의 손길", "name_fr_FR": "Toucher du Vide", "name_de_DE": "Berührung der Leere", "name_zh_CN": "虚空之触", "name_es_ES": "Toque del Vacío", "name_ru_RU": "Касание Бездны", "name_it_IT": "Tocco del Vuoto", "name_pt_PT": "Toque do Caos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128705, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Dominion", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0455000400543213, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Dominion", "name_ko_KR": "다크문 카드 한 벌: 지배", "name_fr_FR": "Suite de Sombrelune : Domination", "name_de_DE": "Dunkelmondkartenset: Herrschaft", "name_zh_CN": "暗月套牌:统御", "name_es_ES": "Colección de la Luna Negra: Dominio", "name_ru_RU": "Колода карт Новолуния \"Господство\"", "name_it_IT": "Mazzo del Dominio di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Domínio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128709, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Hellfire", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.960099995136261, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Hellfire", "name_ko_KR": "다크문 카드 한 벌: 지옥불", "name_fr_FR": "Suite de Sombrelune : Flammes infernales", "name_de_DE": "Dunkelmondkartenset: Höllenfeuer", "name_zh_CN": "暗月套牌:地狱火", "name_es_ES": "Colección de la Luna Negra: Fuego Infernal", "name_ru_RU": "Колода карт Новолуния \"Адское пламя\"", "name_it_IT": "Mazzo del Fuoco Infernale di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Fogo do Inferno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Promises", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.963699996471405, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 131072, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Promises", "name_ko_KR": "다크문 카드 한 벌: 약속", "name_fr_FR": "Suite de Sombrelune : Promesses", "name_de_DE": "Dunkelmondkartenset: Verheißung", "name_zh_CN": "暗月套牌:应许", "name_es_ES": "Colección de la Luna Negra: Promesas", "name_ru_RU": "Колода карт Новолуния \"Обещания\"", "name_it_IT": "Mazzo delle Promesse di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Promessas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128711, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Immortality", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 1, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9939000010490417, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Immortality", "name_ko_KR": "다크문 카드 한 벌: 불멸", "name_fr_FR": "Suite de Sombrelune : Immortalité", "name_de_DE": "Dunkelmondkartenset: Unsterblichkeit", "name_zh_CN": "暗月套牌:不朽", "name_es_ES": "Colección de la Luna Negra: Inmortalidad", "name_ru_RU": "Колода карт Новолуния \"Бессмертие\"", "name_it_IT": "Mazzo dell'Immortalità di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Imortalidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128958, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lekos' Leash", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 108437, "buy_price": 542185, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9975000023841858, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Lekos' Leash", "name_ko_KR": "레코스의 목줄", "name_fr_FR": "Laisse de Lekos", "name_de_DE": "Lekos' Leine", "name_zh_CN": "勒考斯的缰绳", "name_es_ES": "Correa de Lekos", "name_ru_RU": "Поводок Лекоса", "name_it_IT": "Guinzaglio di Lekos", "name_pt_PT": "Coleira de Lekos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128959, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seal of House Wrynn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 36324, "buy_price": 181621, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.001099944114685, "flags_1": 32768, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 129104, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Seal of House Wrynn", "name_ko_KR": "린 가문의 인장", "name_fr_FR": "Sceau de la maison Wrynn", "name_de_DE": "Siegel des Hauses Wrynn", "name_zh_CN": "乌瑞恩王室印章", "name_es_ES": "Sello de la casa Wrynn", "name_ru_RU": "Печать дома Риннов", "name_it_IT": "Sigillo di Casa Wrynn", "name_pt_PT": "Selo da Casa Wrynn", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 128978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prophecy Tarot", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 32, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 4, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9973000288009644, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 46, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Prophecy Tarot", "name_ko_KR": "예언 카드", "name_fr_FR": "Tarot prophétique", "name_de_DE": "Tarot der Prophezeiung", "name_zh_CN": "先知塔罗牌", "name_es_ES": "Tarot de profecía", "name_ru_RU": "Карта Таро Пророчества", "name_it_IT": "Tarocco della Profezia", "name_pt_PT": "Tarô da Profecia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129044, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frothing Helhound's Fury", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92589, "buy_price": 462945, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Frothing Helhound's Fury", "name_ko_KR": "거품 무는 지옥개의 분노", "name_fr_FR": "Fureur du molosse de Hel écumant", "name_de_DE": "Schäumende Wut des Helhunds", "name_zh_CN": "冥狱之犬的沸腾之怒", "name_es_ES": "Furia de infercan rabioso", "name_ru_RU": "Кипящая ярость адской гончей", "name_it_IT": "Furia del Segugio Infernale Schiumante", "name_pt_PT": "Fúria do Cão Raivoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129056, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadlord's Hamstring", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524755, "buy_price": 2623779, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0160000324249268, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Dreadlord's Hamstring", "name_ko_KR": "공포의 군주의 오금줄", "name_fr_FR": "Tendon jambier de seigneur de l'effroi", "name_de_DE": "Kniesehne eines Schreckenslords", "name_zh_CN": "恐惧魔王的肌腱", "name_es_ES": "Tendón de Señor del Terror", "name_ru_RU": "Сухожилие повелителя ужаса", "name_it_IT": "Tendine del Signore del Terrore", "name_pt_PT": "Cordão do Senhor do Medo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129091, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golza's Iron Fin", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 3, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 515097, "buy_price": 2575487, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973000288009644, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Golza's Iron Fin", "name_ko_KR": "골자의 강철 지느러미", "name_fr_FR": "Nageoire de fer de Golza", "name_de_DE": "Golzas Eisenflosse", "name_zh_CN": "贡尔扎的铁鳍", "name_es_ES": "Aleta de hierro de Golza", "name_ru_RU": "Железный плавник Голзы", "name_it_IT": "Pinna di Ferro di Golza", "name_pt_PT": "Barbatana de Ferro de Golza", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129101, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alpha's Paw", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 85061, "buy_price": 425307, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9605000019073486, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Alpha's Paw", "name_ko_KR": "우두머리의 앞발", "name_fr_FR": "Patte d'alpha", "name_de_DE": "Die Pranke des Alphas", "name_zh_CN": "头狼的爪子", "name_es_ES": "Zarpa del alfa", "name_ru_RU": "Лапа вожака стаи", "name_it_IT": "Zampa di Alfa", "name_pt_PT": "Pata do Alfa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129104, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brand of the Banshee Queen", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 35250, "buy_price": 176251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9714999794960022, "flags_1": 32768, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 128959, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Brand of the Banshee Queen", "name_ko_KR": "밴시 여왕의 낙인", "name_fr_FR": "Marque de la reine banshee", "name_de_DE": "Marke der Bansheekönigin", "name_zh_CN": "女妖之王的铭牌", "name_es_ES": "Marca de la Reina Alma en Pena", "name_ru_RU": "Клеймо Королевы-банши", "name_it_IT": "Distintivo della Regina Banshee", "name_pt_PT": "Marca da Rainha Banshee", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129107, "race_mask": 18446744073709551615, "desc": "This demon laughed in the face of death...", "pad2": "", "pad1": "", "pad0": "", "name": "Flaming Demon Skull", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 9999, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 43, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Flaming Demon Skull", "name_ko_KR": "불타오르는 악마 해골", "name_fr_FR": "Crâne de démon enflammé", "name_de_DE": "Flammender Dämonenschädel", "name_zh_CN": "炽燃的恶魔之颅", "name_es_ES": "Cráneo de demonio llameante", "name_ru_RU": "Пылающий череп демона", "name_it_IT": "Teschio di Demone in Fiamme", "name_pt_PT": "Crânio de Demônio Flamejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lost Etin's Strength", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88019, "buy_price": 440096, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9939000010490417, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Lost Etin's Strength", "name_ko_KR": "잃어버린 거인의 힘", "name_fr_FR": "Force de l'ettin perdu", "name_de_DE": "Stärke des verlorenen Ettin", "name_zh_CN": "迷失双头怪之力", "name_es_ES": "Fuerza del ettin perdido", "name_ru_RU": "Утраченная сила эттина", "name_it_IT": "Forza dell'Ettin Perduto", "name_pt_PT": "Força de Gorjala Perdida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129258, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sylvanas' Broken Arrow", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88683, "buy_price": 443417, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0013999938964844, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sylvanas' Broken Arrow", "name_ko_KR": "실바나스의 부러진 화살", "name_fr_FR": "Flèche brisée de Sylvanas", "name_de_DE": "Sylvanas' zerbrochener Pfeil", "name_zh_CN": "希尔瓦娜斯的断箭", "name_es_ES": "Flecha partida de Sylvanas", "name_ru_RU": "Сломанная стрела Сильваны", "name_it_IT": "Freccia Rotta di Sylvanas", "name_pt_PT": "Flecha Quebrada de Sylvana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129259, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bane of the Darklady", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 519126, "buy_price": 2595630, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0051000118255615, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Bane of the Darklady", "name_ko_KR": "어둠 여왕의 파멸", "name_fr_FR": "Fléau de la Dame noire", "name_de_DE": "Bann der Lady der Finsternis", "name_zh_CN": "黑暗女王克星", "name_es_ES": "El terror de la dama oscura", "name_ru_RU": "Проклятие Темной Госпожи", "name_it_IT": "Esilio della Dama Oscura", "name_pt_PT": "Ruína da Dama Sombria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129260, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tenacity of Cursed Blood", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89330, "buy_price": 446650, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0087000131607056, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Tenacity of Cursed Blood", "name_ko_KR": "저주받은 피의 끈기", "name_fr_FR": "Ténacité de sang maudit", "name_de_DE": "Hartnäckigkeit des verfluchten Blutes", "name_zh_CN": "诅咒血脉之韧", "name_es_ES": "Tenacidad de sangre maldita", "name_ru_RU": "Упорство проклятой крови", "name_it_IT": "Tenacia del Sangue Maledetto", "name_pt_PT": "Tenacidade do Sangue Amaldiçoado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129317, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lodestone of the Mystic", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73600, "buy_price": 368001, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973000288009644, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lodestone of the Mystic", "name_ko_KR": "비술사의 자철석", "name_fr_FR": "Magnétite de mystique", "name_de_DE": "Leitstein des Mystikers", "name_zh_CN": "秘法师的磁石", "name_es_ES": "Magnetita del místico", "name_ru_RU": "Магнетит мистика", "name_it_IT": "Magnetite del Mistico", "name_pt_PT": "Magnetita do Místico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lodestone of the Galeborn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430840, "buy_price": 2154202, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0010000467300415, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lodestone of the Galeborn", "name_ko_KR": "질풍살이의 자철석", "name_fr_FR": "Magnétite des typhon-nés", "name_de_DE": "Leitstein des Sturmgeborenen", "name_zh_CN": "风裔骑士的磁石", "name_es_ES": "Magnetita de tempesnato", "name_ru_RU": "Магнетит сына бури", "name_it_IT": "Magnetite dello Sferzavento", "name_pt_PT": "Magnetita do Natéolo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lodestone of the Stormbreaker", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 74146, "buy_price": 370732, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.004699945449829, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lodestone of the Stormbreaker", "name_ko_KR": "폭풍파괴자의 자철석", "name_fr_FR": "Magnétite du Brise-tempête", "name_de_DE": "Leitstein des Sturmbrechers", "name_zh_CN": "破风者的磁石", "name_es_ES": "Magnetita de Rompetormentas", "name_ru_RU": "Магнетит рассекателя туч", "name_it_IT": "Magnetite del Solcatempeste", "name_pt_PT": "Magnetita do Rompe-procelas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129375, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0161000490188599, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129378, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0270999670028687, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129386, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9829000234603882, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9976000189781189, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129411, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.001099944114685, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0120999813079834, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129440, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9605000019073486, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129441, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9641000032424927, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9934999942779541, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.031000018119812, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Defensor de Pedra da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129459, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.95660001039505, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9677000045776367, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129477, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.049299955368042, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Defensor de Pedra do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129479, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9564999938011169, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129492, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0307999849319458, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129497, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0491000413894653, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129503, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9976000189781189, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0123000144958496, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129511, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0269999504089355, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9643999934196472, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129542, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9936000108718872, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129543, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9973000288009644, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129551, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9531000256538391, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129554, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6777, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9641000032424927, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Defensor de Pedra do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129560, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9861999750137329, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129563, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0236999988555908, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129574, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9639999866485596, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9750000238418579, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129589, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0455999374389648, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129592, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9564999938011169, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129605, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0307999849319458, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129608, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0418000221252441, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129611, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.979200005531311, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129614, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9901999831199646, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129616, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9976000189781189, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0085999965667725, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0157999992370605, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9531999826431274, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129671, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9787999987602234, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d'âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129674, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.989799976348877, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d'âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129687, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9639999866485596, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d'âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129688, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9677000045776367, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d'âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129696, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0235999822616577, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129699, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.034600019454956, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Defensor de Pedra Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129705, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9564999938011169, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129708, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9940000176429749, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129848, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodlust Brooch", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15853, "buy_price": 79268, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0196000337600708, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Bloodlust Brooch", "name_ko_KR": "피의 욕망 브로치", "name_fr_FR": "Broche sanguinaire", "name_de_DE": "Kampfrauschbrosche", "name_zh_CN": "嗜血胸针", "name_es_ES": "Broche Ansia de sangre", "name_ru_RU": "Брошь Кровожадности", "name_it_IT": "Spilla della Brama di Sangue", "name_pt_PT": "Broche Sede de Sangue", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gnomeregan Auto-Blocker 601", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15911, "buy_price": 79555, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023300051689148, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Gnomeregan Auto-Blocker 601", "name_ko_KR": "놈리건 자동차단기 601", "name_fr_FR": "Auto-bloqueur de Gnomeregan 601", "name_de_DE": "Gnomereganischer Blockifizierer 601", "name_zh_CN": "诺莫瑞根自动格挡器601型", "name_es_ES": "Autobloqueador 601 de Gnomeregan", "name_ru_RU": "Гномреганский автоблокиратор 601", "name_it_IT": "Auto-Bloccatore 601 di Gnomeregan", "name_pt_PT": "Autobloqueio Gnomeregan 601", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129850, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of the Silver Crescent", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 265, "buy_price": 1328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0269999504089355, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Icon of the Silver Crescent", "name_ko_KR": "은빛 초승달의 상징", "name_fr_FR": "Icône du croissant d'argent", "name_de_DE": "Ikone des Silberwappens", "name_zh_CN": "银色新月徽记", "name_es_ES": "Icono de media luna de plata", "name_ru_RU": "Икона Серебряного Полумесяца", "name_it_IT": "Icona della Falce d'Argento", "name_pt_PT": "Ícone do Crescente Prateado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129851, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of the Martyr", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16024, "buy_price": 80123, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0305999517440796, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Essence of the Martyr", "name_ko_KR": "순교자의 정수", "name_fr_FR": "Essence du martyr", "name_de_DE": "Essenz des Märtyrers", "name_zh_CN": "殉难者精华", "name_es_ES": "Esencia del mártir", "name_ru_RU": "Сущность Мученика", "name_it_IT": "Essenza del Martire", "name_pt_PT": "Essência do Mártir", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129893, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sundial of the Exiled", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 332, "buy_price": 1661, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9641000032424927, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Sundial of the Exiled", "name_ko_KR": "추방자의 해시계", "name_fr_FR": "Cadran solaire de l'exilé", "name_de_DE": "Sonnenuhr des Exilierten", "name_zh_CN": "流放者的日晷", "name_es_ES": "Reloj de sol del Exiliado", "name_ru_RU": "Солнечные часы изгнанника", "name_it_IT": "Meridiana dell'Esiliato", "name_pt_PT": "Relógio Solar do Exilado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129895, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Valor Medal of the First War", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23336, "buy_price": 116682, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9714999794960022, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Valor Medal of the First War", "name_ko_KR": "1차 대전쟁 무공 훈장", "name_fr_FR": "Médaille du courage de la Première guerre", "name_de_DE": "Ehrenmedaille des Ersten Krieges", "name_zh_CN": "第一次大战勇气勋章", "name_es_ES": "Medalla al valor de la Primera Guerra", "name_ru_RU": "Медаль Первой войны \"За отвагу\"", "name_it_IT": "Medaglia al Valore della Prima Guerra", "name_pt_PT": "Medalha de Bravura da Primeira Guerra", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129896, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Truth", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23422, "buy_price": 117114, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750999808311462, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Mirror of Truth", "name_ko_KR": "진실의 거울", "name_fr_FR": "Miroir de vérité", "name_de_DE": "Spiegel der Wahrheit", "name_zh_CN": "真实之镜", "name_es_ES": "Espejo de verdad", "name_ru_RU": "Правдивое зеркальце", "name_it_IT": "Specchio della Verità", "name_pt_PT": "Espelho da Verdade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129897, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Egg of Mortal Essence", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23511, "buy_price": 117558, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9787999987602234, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "The Egg of Mortal Essence", "name_ko_KR": "필멸의 정수 알", "name_fr_FR": "L'œuf d'essence mortelle", "name_de_DE": "Ei der sterblichen Essenz", "name_zh_CN": "精魄", "name_es_ES": "El huevo de Esencia mortal", "name_ru_RU": "Яйцо смертной сущности", "name_it_IT": "Uovo dell'Essenza Mortale", "name_pt_PT": "O Ovo da Essência Mortal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129898, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Supremacy", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23600, "buy_price": 118003, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9825000166893005, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Supremacy", "name_ko_KR": "궁극의 징표", "name_fr_FR": "Marque de suprématie", "name_de_DE": "Mal der Überlegenheit", "name_zh_CN": "霸权印记", "name_es_ES": "Marca de Supremacía", "name_ru_RU": "Знак превосходства", "name_it_IT": "Marchio della Supremazia", "name_pt_PT": "Signo de Supremacia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 129937, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Fury", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15628, "buy_price": 78140, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0051000118255615, "flags_1": 561152, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Emblem of Fury", "name_ko_KR": "격노의 문장", "name_fr_FR": "Emblème de fureur", "name_de_DE": "Emblem der Wut", "name_zh_CN": "愤怒徽章", "name_es_ES": "Emblema de furia", "name_ru_RU": "Эмблема ярости", "name_it_IT": "Emblema della Furia", "name_pt_PT": "Emblema da Fúria", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 130126, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Branch", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524910, "buy_price": 2624554, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0162999629974365, "flags_1": 589824, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Iron Branch", "name_ko_KR": "강철 가지", "name_fr_FR": "Branche en fer", "name_de_DE": "Eisenzweig", "name_zh_CN": "钢铁枝桠", "name_es_ES": "Rama de hierro", "name_ru_RU": "Железная ветвь", "name_it_IT": "Ramo di Ferro", "name_pt_PT": "Galho de Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 130185, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mercenary's Medallion of Adaptation", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 17458, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0123000144958496, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13211, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mercenary's Medallion of Adaptation", "name_ko_KR": "용병의 적응 메달", "name_fr_FR": "Médaillon d'adaptation de mercenaire", "name_de_DE": "Anpassungsmedaillon des Söldners", "name_zh_CN": "雇佣兵的同化勋章", "name_es_ES": "Medallón de adaptación de mercenario", "name_ru_RU": "Медальон адаптации наемника", "name_it_IT": "Medaglione dell'Adattamento del Mercenario", "name_pt_PT": "Medalhão da Adaptação do Mercenário", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 131735, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Imp Generator", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 10000, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3, "buy_price": 15, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9682999849319458, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Imp Generator", "name_ko_KR": "임프 생성기", "name_fr_FR": "Générateur de diablotins", "name_de_DE": "Wichtelgenerator", "name_zh_CN": "小鬼传送器", "name_es_ES": "Generador de diablillos", "name_ru_RU": "Генератор бесов", "name_it_IT": "Generatore di Imp", "name_pt_PT": "Gerador de Diabrete", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 131799, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zugdug's Piece of Paradise", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89365, "buy_price": 446827, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0090999603271484, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Zugdug's Piece of Paradise", "name_ko_KR": "저그더그의 천국 문", "name_fr_FR": "Morceau de paradis de Zugdug", "name_de_DE": "Zugdugs Stück vom Glück", "name_zh_CN": "祖格都格的天堂碎片", "name_es_ES": "Pedazo de paraíso de Cavazug", "name_ru_RU": "Кусочек рая Зугдуга", "name_it_IT": "Pezzo di Paradiso di Zugdug", "name_pt_PT": "Pedacinho de Céu de Zugdug", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 131803, "race_mask": 18446744073709551615, "desc": "Every hunter loves a trophy.", "pad2": "", "pad1": "", "pad0": "", "name": "Spine of Barax", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90667, "buy_price": 453336, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023800015449524, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "Spine of Barax", "name_ko_KR": "바락스의 척추", "name_fr_FR": "Echine de Barax", "name_de_DE": "Barax' Rückgrat", "name_zh_CN": "巴拉克斯的脊骨", "name_es_ES": "Espina de Barax", "name_ru_RU": "Хребет Баракса", "name_it_IT": "Spina Dorsale di Barax", "name_pt_PT": "Espinha de Barax", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132091, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Warmth of Uriah", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 84760, "buy_price": 423801, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.957099974155426, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Warmth of Uriah", "name_ko_KR": "우리아의 온기", "name_fr_FR": "Chaleur d'Uriah", "name_de_DE": "Uriahs Wärme", "name_zh_CN": "乌拉的温暖", "name_es_ES": "Calor de Uriah", "name_ru_RU": "Тепло Урии", "name_it_IT": "Calore di Uriah", "name_pt_PT": "Cordialidade de Uriah", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132092, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Solace of Uriah", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 496245, "buy_price": 2481227, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9607999920845032, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Solace of Uriah", "name_ko_KR": "우리아의 위안", "name_fr_FR": "Réconfort d'Uriah", "name_de_DE": "Uriahs Trost", "name_zh_CN": "乌拉的慰藉", "name_es_ES": "Consuelo de Uriah", "name_ru_RU": "Утешение Урии", "name_it_IT": "Conforto di Uriah", "name_pt_PT": "Consolação de Uriah", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132093, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Courage of Uriah", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 498156, "buy_price": 2490782, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9645000100135803, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Courage of Uriah", "name_ko_KR": "우리아의 용기", "name_fr_FR": "Courage d'Uriah", "name_de_DE": "Uriahs Mut", "name_zh_CN": "乌拉的勇气", "name_es_ES": "Coraje de Uriah", "name_ru_RU": "Храбрость Урии", "name_it_IT": "Coraggio di Uriah", "name_pt_PT": "Coragem de Uriah", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132895, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Watcher's Divine Inspiration", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 838, "buy_price": 4193, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 39, "inv_type": 12, "quality": 3, "name_en_US": "The Watcher's Divine Inspiration", "name_ko_KR": "감시자의 신성한 감화", "name_fr_FR": "Inspiration divine du guetteur", "name_de_DE": "Göttliche Inspiration der Behüterin", "name_zh_CN": "守护者的神圣鼓舞", "name_es_ES": "Inspiración divina del vigía", "name_ru_RU": "Божественное воодушевление стража", "name_it_IT": "Ispirazione Divina del Guardiano", "name_pt_PT": "Inspiração Divina da Observadora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132962, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Jailer's Key", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 423136, "buy_price": 2115680, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9830999970436096, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "The Jailer's Key", "name_ko_KR": "간수의 열쇠", "name_fr_FR": "Clé du geôlier", "name_de_DE": "Schlüssel des Gefängniswärters", "name_zh_CN": "狱卒的钥匙", "name_es_ES": "La llave del carcelero", "name_ru_RU": "Ключ тюремщика", "name_it_IT": "Chiave del Carceriere", "name_pt_PT": "Chave do Carcereiro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132963, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Young Drake's Impulse", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72825, "buy_price": 364127, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868000149726868, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Young Drake's Impulse", "name_ko_KR": "어린 비룡의 충동", "name_fr_FR": "Impulsion de jeune drake", "name_de_DE": "Impuls des Jungdrachen", "name_zh_CN": "幼龙的冲动", "name_es_ES": "Impulso del draco joven", "name_ru_RU": "Импульсивность молодого дракона", "name_it_IT": "Impulso del Giovane Draco", "name_pt_PT": "Impulso do Jovem Draco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132964, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stellagosa's Breath", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 73098, "buy_price": 365492, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904999732971191, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Stellagosa's Breath", "name_ko_KR": "스텔라고사의 숨결", "name_fr_FR": "Souffle de Stellagosa", "name_de_DE": "Stellagosas Atem", "name_zh_CN": "丝黛拉苟萨之息", "name_es_ES": "Aliento de Stellagosa", "name_ru_RU": "Дыхание Стеллагосы", "name_it_IT": "Respiro di Stellagosa", "name_pt_PT": "Sopro de Stellagosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Lost Blue Flight", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 434197, "buy_price": 2170988, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0088000297546387, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Talisman of the Lost Blue Flight", "name_ko_KR": "잃어버린 푸른용군단의 부적", "name_fr_FR": "Talisman du Vol bleu perdu", "name_de_DE": "Talisman des verlorenen blauen Drachenschwarms", "name_zh_CN": "失落的蓝龙军团护符", "name_es_ES": "Talismán del Vuelo Azul perdido", "name_ru_RU": "Талисман утраты синих драконов", "name_it_IT": "Talismano dello Stormo Blu Perduto", "name_pt_PT": "Talismã da Revoada Azul Perdida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132970, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Runas' Nearly Depleted Ley Crystal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 704, "buy_price": 3520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0390000343322754, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Runas' Nearly Depleted Ley Crystal", "name_ko_KR": "루나스의 마력이 거의 고갈된 지맥 수정", "name_fr_FR": "Cristal tellurique presque épuisé de Runas", "name_de_DE": "Runas' fast entleerter Leykristall", "name_zh_CN": "鲁纳斯的报废魔网水晶", "name_es_ES": "Cristal Ley casi agotado de Runas", "name_ru_RU": "Почти пустой силовой кристалл Рунаса", "name_it_IT": "Cristallo di Faglia Quasi Esaurito di Runas", "name_pt_PT": "Cristal de Meridiano Quase Exaurido de Runas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 132971, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightfallen's Desperation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76950, "buy_price": 384754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0427000522613525, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Nightfallen's Desperation", "name_ko_KR": "나이트폴른의 절망", "name_fr_FR": "Désespoir des Souffrenuit", "name_de_DE": "Verzweiflung der Nachtsüchtigen", "name_zh_CN": "堕夜精灵的绝望", "name_es_ES": "Desesperación de los Caídos de la Noche", "name_ru_RU": "Отчаяние помраченных", "name_it_IT": "Disperazione degli Esuli Oscuri", "name_pt_PT": "Desespero dos Caianoite", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133062, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy of Insanity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 400, "buy_price": 1600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0089999437332153, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy of Insanity", "name_ko_KR": "광기의 악마 상징물", "name_fr_FR": "Trophée démoniaque de démence", "name_de_DE": "Dämonentrophäe des Wahnsinns", "name_zh_CN": "恶魔的癫狂战利品", "name_es_ES": "Trofeo de demencia demoníaco", "name_ru_RU": "Демонический трофей безумия", "name_it_IT": "Trofeo Demoniaco della Pazzia", "name_pt_PT": "Troféu Demoníaco da Insanidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133192, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Porcelain Crab", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 101, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 416, "buy_price": 2081, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9977999925613403, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Porcelain Crab", "name_ko_KR": "도자기 게", "name_fr_FR": "Crabe en porcelaine", "name_de_DE": "Porzellankrebs", "name_zh_CN": "瓷蟹", "name_es_ES": "Cangrejo de porcelana", "name_ru_RU": "Фарфоровый краб", "name_it_IT": "Granchio di Porcellana", "name_pt_PT": "Caranguejo de Porcelana", "on_use": false, "id_encounter": 103, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 133197, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of the Ocean", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 100, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0427000522613525, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Might of the Ocean", "name_ko_KR": "대양의 힘", "name_fr_FR": "Puissance de l'océan", "name_de_DE": "Macht des Ozeans", "name_zh_CN": "海洋之力", "name_es_ES": "Poderío del océano", "name_ru_RU": "Мощь океана", "name_it_IT": "Forza dell'Oceano", "name_pt_PT": "Poder do Oceano", "on_use": true, "id_encounter": 104, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 133201, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sea Star", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 102, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Sea Star", "name_ko_KR": "불가사리", "name_fr_FR": "Etoile de mer", "name_de_DE": "Seestern", "name_zh_CN": "碧海之星", "name_es_ES": "Estrella de mar", "name_ru_RU": "Морская звезда", "name_it_IT": "Stella Marina", "name_pt_PT": "Estrela do Mar", "on_use": false, "id_encounter": 104, "id_journal_instance": 65, "id_map": 643, "instance_type": 1}, {"id": 133206, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Key to the Endless Chamber", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 105, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.975600004196167, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Key to the Endless Chamber", "name_ko_KR": "무한한 방의 열쇠", "name_fr_FR": "Clé de la chambre sans fin", "name_de_DE": "Schlüssel zur unendlichen Kammer", "name_zh_CN": "无尽密室之匙", "name_es_ES": "Llave a la Cámara sin Fin", "name_ru_RU": "Ключ от Бесконечного Чертога", "name_it_IT": "Chiave della Sala Sconfinata", "name_pt_PT": "Chave da Câmara Infinda", "on_use": false, "id_encounter": 110, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 133216, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tendrils of Burrowing Dark", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 109, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0389000177383423, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tendrils of Burrowing Dark", "name_ko_KR": "파고드는 어둠의 덩굴", "name_fr_FR": "Vrilles de noirceur fouisseuse", "name_de_DE": "Ranken des vergrabenen Dunkels", "name_zh_CN": "黑暗潜藏卷须", "name_es_ES": "Zarcillos de oscuridad penetrante", "name_ru_RU": "Витки могильной тьмы", "name_it_IT": "Tentacoli dell'Oscurità Nascosta", "name_pt_PT": "Gavinhas da Escuridão Penetrante", "on_use": false, "id_encounter": 112, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 133222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magnetite Mirror", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 107, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9607999920845032, "flags_1": 524288, "flags_2": 24592, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Magnetite Mirror", "name_ko_KR": "자철석 거울", "name_fr_FR": "Miroir en magnétite", "name_de_DE": "Magnetitspiegel", "name_zh_CN": "磁力之镜", "name_es_ES": "Espejo de calamita", "name_ru_RU": "Магнетитовое зерцало", "name_it_IT": "Specchio di Magnetite", "name_pt_PT": "Espelho de Magnetita", "on_use": true, "id_encounter": 113, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 133224, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leaden Despair", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 106, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9682000279426575, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Leaden Despair", "name_ko_KR": "납빛 절망", "name_fr_FR": "Désespoir plombé", "name_de_DE": "Bleierne Verzweiflung", "name_zh_CN": "沉重绝望", "name_es_ES": "Desesperación plomiza", "name_ru_RU": "Мрак отчаяния", "name_it_IT": "Disperazione Cupa", "name_pt_PT": "Desespero Plúmbeo", "on_use": false, "id_encounter": 113, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 133227, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tear of Blood", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 108, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0056999921798706, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tear of Blood", "name_ko_KR": "피눈물", "name_fr_FR": "Larme de sang", "name_de_DE": "Blutträne", "name_zh_CN": "血红之泪", "name_es_ES": "Lágrima de sangre", "name_ru_RU": "Кровавая слеза", "name_it_IT": "Lacrima di Sangue", "name_pt_PT": "Lágrima de Sangue", "on_use": false, "id_encounter": 112, "id_journal_instance": 67, "id_map": 725, "instance_type": 1}, {"id": 133246, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Thunder", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 110, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0018999576568604, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Thunder", "name_ko_KR": "천둥의 심장", "name_fr_FR": "Cœur de tonnerre", "name_de_DE": "Herz des Sturms", "name_zh_CN": "雷霆之心", "name_es_ES": "Corazón de trueno", "name_ru_RU": "Сердце Грома", "name_it_IT": "Cuore di Tuono", "name_pt_PT": "Coração do Trovão", "on_use": false, "id_encounter": 116, "id_journal_instance": 68, "id_map": 657, "instance_type": 1}, {"id": 133252, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rainsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023900032043457, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Rainsong", "name_ko_KR": "비의 노래", "name_fr_FR": "Chantepluie", "name_de_DE": "Regengesang", "name_zh_CN": "雨歌", "name_es_ES": "Cantolluvia", "name_ru_RU": "Песнь дождя", "name_it_IT": "Canto della Pioggia", "name_pt_PT": "Canção da Chuva", "on_use": false, "id_encounter": 114, "id_journal_instance": 68, "id_map": 657, "instance_type": 1}, {"id": 133268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Solace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 112, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0090999603271484, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Solace", "name_ko_KR": "위안의 심장", "name_fr_FR": "Cœur de réconfort", "name_de_DE": "Herz des Trostes", "name_zh_CN": "抚慰之心", "name_es_ES": "Corazón de consuelo", "name_ru_RU": "Сердце Утешения", "name_it_IT": "Cuore di Conforto", "name_pt_PT": "Coração do Consolo", "on_use": false, "id_encounter": 119, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 133269, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tia's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 114, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0127999782562256, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Tia's Grace", "name_ko_KR": "티아의 은총", "name_fr_FR": "Grâce de Tia", "name_de_DE": "Tias Gunst", "name_zh_CN": "提亚的优雅", "name_es_ES": "Gracia de Tia", "name_ru_RU": "Благоволение Тиа", "name_it_IT": "Grazia di Siamat", "name_pt_PT": "Graça de Tia", "on_use": false, "id_encounter": 122, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 133275, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sorrowsong", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 113, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9611999988555908, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Sorrowsong", "name_ko_KR": "슬픔의 노래", "name_fr_FR": "Tristechant", "name_de_DE": "Klagelied", "name_zh_CN": "悲歌", "name_es_ES": "Canción de penas", "name_ru_RU": "Песнь печали", "name_it_IT": "Canto della Tristezza", "name_pt_PT": "Canção do Pesar", "on_use": false, "id_encounter": 122, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 133281, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impetuous Query", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9832000136375427, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Impetuous Query", "name_ko_KR": "성급한 의혹", "name_fr_FR": "Demande impétueuse", "name_de_DE": "Ungestümes Ersuchen", "name_zh_CN": "鲁莽之询", "name_es_ES": "Petición impetuosa", "name_ru_RU": "Допрос с пристрастием", "name_it_IT": "Richiesta Impetuosa", "name_pt_PT": "Dúvida Impetuosa", "on_use": true, "id_encounter": 118, "id_journal_instance": 69, "id_map": 755, "instance_type": 1}, {"id": 133282, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skardyn's Grace", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868999719619751, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Skardyn's Grace", "name_ko_KR": "스카르딘의 은총", "name_fr_FR": "Grâce de Skardyn", "name_de_DE": "Gunst der Skardyn", "name_zh_CN": "灰鳞的优雅", "name_es_ES": "Gracia de skardyn", "name_ru_RU": "Милость Скардина", "name_it_IT": "Grazia di Skardyn", "name_pt_PT": "Graça dos Skardyn", "on_use": true, "id_encounter": 131, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 133291, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Throngus's Finger", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0199999809265137, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Throngus's Finger", "name_ko_KR": "트롱구스의 손가락", "name_fr_FR": "Doigt de Throngus", "name_de_DE": "Finger von Throngus", "name_zh_CN": "索朗格斯的指节", "name_es_ES": "Dedo de Throngus", "name_ru_RU": "Палец Тронга", "name_it_IT": "Dito di Throngus", "name_pt_PT": "Dedo de Throngus", "on_use": false, "id_encounter": 132, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 133300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Khardros", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9793999791145325, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Khardros", "name_ko_KR": "카드로스의 징표", "name_fr_FR": "Marque de Khardros", "name_de_DE": "Mal von Khardros", "name_zh_CN": "卡德罗斯的印记", "name_es_ES": "Marca de Khardros", "name_ru_RU": "Знак Кардроса", "name_it_IT": "Contrassegno di Khardros", "name_pt_PT": "Marca de Khardros", "on_use": true, "id_encounter": 134, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 133304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gale of Shadows", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940999746322632, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Gale of Shadows", "name_ko_KR": "암흑 돌풍", "name_fr_FR": "Bourrasque d'ombres", "name_de_DE": "Schattensturm", "name_zh_CN": "暗影飓风", "name_es_ES": "Vendaval de sombras", "name_ru_RU": "Буря теней", "name_it_IT": "Zefiro delle Ombre", "name_pt_PT": "Vendaval de Sombras", "on_use": false, "id_encounter": 132, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 133305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Egg Shell", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9977999925613403, "flags_1": 528384, "flags_2": 24584, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Egg Shell", "name_ko_KR": "썩은 알껍질", "name_fr_FR": "Coquille d'œuf corrompu", "name_de_DE": "Verderbte Eierschale", "name_zh_CN": "被腐蚀的蛋壳", "name_es_ES": "Cáscara de huevo corrupto", "name_ru_RU": "Оскверненная яичная скорлупа", "name_it_IT": "Guscio d'Uovo Corrotto", "name_pt_PT": "Casca de Ovo Corrompido", "on_use": true, "id_encounter": 134, "id_journal_instance": 0, "id_map": null, "instance_type": null}, {"id": 133420, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arrow of Time", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 524288, "flags_2": 134242304, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Arrow of Time", "name_ko_KR": "시간의 화살", "name_fr_FR": "Flèche du Temps", "name_de_DE": "Pfeil der Zeit", "name_zh_CN": "时光之箭", "name_es_ES": "Flecha de tiempo", "name_ru_RU": "Стрела времени", "name_it_IT": "Freccia del Tempo", "name_pt_PT": "Flecha do Tempo", "on_use": false, "id_encounter": 289, "id_journal_instance": 184, "id_map": 938, "instance_type": 1}, {"id": 133461, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timbal's Focusing Crystal", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035099983215332, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Timbal's Focusing Crystal", "name_ko_KR": "팀발의 집중 수정", "name_fr_FR": "Cristal focalisateur de Timbal", "name_de_DE": "Timbals Fokussierungskristall", "name_zh_CN": "提巴尔的聚焦水晶", "name_es_ES": "Cristal de enfoque de Timbal", "name_ru_RU": "Фокусирующий кристалл Тимбала", "name_it_IT": "Cristallo Focalizzante di Timbal", "name_pt_PT": "Cristal de Concentração de Timbal", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 133462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of the Sunwell", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038699984550476, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Vial of the Sunwell", "name_ko_KR": "태양샘 약병", "name_fr_FR": "Fiole du Puits de soleil", "name_de_DE": "Phiole des Sonnenbrunnens", "name_zh_CN": "太阳之井的水瓶", "name_es_ES": "Vial de La Fuente del Sol", "name_ru_RU": "Флакон воды из Солнечного Колодца", "name_it_IT": "Fiala del Pozzo Solare", "name_pt_PT": "Ampola da Nascente do Sol", "on_use": true, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 133463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of Contempt", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0424000024795532, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Shard of Contempt", "name_ko_KR": "경멸의 파편", "name_fr_FR": "Éclat du mépris", "name_de_DE": "Scherbe der Verachtung", "name_zh_CN": "耻辱碎片", "name_es_ES": "Fragmento de desprecio", "name_ru_RU": "Осколок презрения", "name_it_IT": "Frammento del Disprezzo", "name_pt_PT": "Estilhaço do Desprezo", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 133464, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Commendation of Kael'thas", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0461000204086304, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Commendation of Kael'thas", "name_ko_KR": "캘타스의 증표", "name_fr_FR": "Recommandation de Kael'thas", "name_de_DE": "Belobigung von Kael'thas", "name_zh_CN": "凯尔萨斯的赞誉", "name_es_ES": "Mención de honor de Kael'thas", "name_ru_RU": "Рекомендация Кель'таса", "name_it_IT": "Distintivo d'Encomio di Kael'thas", "name_pt_PT": "Comenda de Kael'thas", "on_use": false, "id_encounter": 532, "id_journal_instance": 249, "id_map": 585, "instance_type": 1}, {"id": 133537, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kiroptyric Sigil", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 181, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463000535964966, "flags_1": 36864, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Kiroptyric Sigil", "name_ko_KR": "익수류 인장", "name_fr_FR": "Cachet kiroptyrique", "name_de_DE": "Kiroptyrisches Siegel", "name_zh_CN": "基洛普泰里克的印记", "name_es_ES": "Sigilo quiroptérico", "name_ru_RU": "Кироптировая печать", "name_it_IT": "Suggello Kiroptirico", "name_pt_PT": "Signo Quiroptírico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133538, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Wishes", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 180, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0499999523162842, "flags_1": 36864, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Bottled Wishes", "name_ko_KR": "병에 담긴 소원", "name_fr_FR": "Souhait en bouteille", "name_de_DE": "Wünsche in der Flasche", "name_zh_CN": "瓶中的愿望", "name_es_ES": "Deseos embotellados", "name_ru_RU": "Желания в бутылке", "name_it_IT": "Desideri in Bottiglia", "name_pt_PT": "Desejos Engarrafados", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133539, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reflection of the Light", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 179, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 36864, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Reflection of the Light", "name_ko_KR": "빛의 투영", "name_fr_FR": "Reflet de la Lumière", "name_de_DE": "Lichtreflexion", "name_zh_CN": "圣光投影", "name_es_ES": "Reflejo de luz", "name_ru_RU": "Отражение Света", "name_it_IT": "Riflesso della Luce", "name_pt_PT": "Reflexo da Luz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133540, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rotting Skull", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 182, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 36864, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Rotting Skull", "name_ko_KR": "썩어가는 해골", "name_fr_FR": "Crâne putréfié", "name_de_DE": "Verrottender Schädel", "name_zh_CN": "腐败之颅", "name_es_ES": "Calavera putrefacta", "name_ru_RU": "Гниющий череп", "name_it_IT": "Teschio Marcio", "name_pt_PT": "Caveira Apodrecida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133541, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fire of the Deep", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 183, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407131, "buy_price": 1628524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9609000086784363, "flags_1": 36864, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Fire of the Deep", "name_ko_KR": "심연의 불", "name_fr_FR": "Feu des profondeurs", "name_de_DE": "Feuer aus den Tiefen", "name_zh_CN": "地渊之烈火", "name_es_ES": "Fuego de las profundidades", "name_ru_RU": "Огонь глубин", "name_it_IT": "Fiamma del Profondo", "name_pt_PT": "Fogo das Profundezas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brutarg's Sword Tip", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 104034, "buy_price": 520172, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9570000171661377, "flags_1": 32832, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Brutarg's Sword Tip", "name_ko_KR": "브루타그의 검날", "name_fr_FR": "Pointe de l'épée de Brutarg", "name_de_DE": "Brutargs Schwertspitze", "name_zh_CN": "布鲁塔格的剑尖", "name_es_ES": "Punta de la espada de Brutarg", "name_ru_RU": "Острие меча Брутарга", "name_it_IT": "Punta della Spada di Brutarg", "name_pt_PT": "Ponta da Espada de Brutarg", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133585, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Judgment of the Naaru", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 349, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0018999576568604, "flags_1": 134742080, "flags_2": 159808, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2054, "id_curve": 1690, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Judgment of the Naaru", "name_ko_KR": "나루의 심판", "name_fr_FR": "Jugement des Naaru", "name_de_DE": "Urteil der Naaru", "name_zh_CN": "纳鲁的审判", "name_es_ES": "Sentencia de los naaru", "name_ru_RU": "Суждение наару", "name_it_IT": "Giudizio del Naaru", "name_pt_PT": "Julgamento dos Naarus", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133595, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gronntooth War Horn", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 349, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2666, "stat_alloc_2": 2666, "stat_alloc_3": 2666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 32, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038599967956543, "flags_1": 134742080, "flags_2": 159808, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2054, "id_curve": 1690, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Gronntooth War Horn", "name_ko_KR": "그론이빨 전쟁 뿔피리", "name_fr_FR": "Cor de guerre en dent de Gronn", "name_de_DE": "Gronnzahnkriegshorn", "name_zh_CN": "戈隆獠牙战争号角", "name_es_ES": "Cuerno de guerra de diente de gronn", "name_ru_RU": "Боевой рог из зуба гронна", "name_it_IT": "Corno da Guerra di Dente di Gronn", "name_pt_PT": "Trompa de Guerra de Dente de Gronn", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133596, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Orb of Voidsight", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 349, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0422999858856201, "flags_1": 134742080, "flags_2": 159808, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2054, "id_curve": 1690, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Orb of Voidsight", "name_ko_KR": "공허시선의 보주", "name_fr_FR": "Orbe de vision du Vide", "name_de_DE": "Kugel der Leerensicht", "name_zh_CN": "虚空透视之球", "name_es_ES": "Orbe de visión del Vacío", "name_ru_RU": "Сфера видения Бездны", "name_it_IT": "Globo della Visione del Vuoto", "name_pt_PT": "Orbe da Visão do Caos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infallible Tracking Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 349, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 134742080, "flags_2": 159808, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2054, "id_curve": 1690, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Infallible Tracking Charm", "name_ko_KR": "틀림없는 추적 부적", "name_fr_FR": "Charme de pistage infaillible", "name_de_DE": "Unfehlbare Spurensucherkette", "name_zh_CN": "精准追踪护符", "name_es_ES": "Talismán de rastreo infalible", "name_ru_RU": "Безупречный охотничий талисман", "name_it_IT": "Talismano del Rintracciamento Infallibile", "name_pt_PT": "Berloque de Rastreamento Infalível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133598, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Purified Shard of the Third Moon", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 349, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9760000109672546, "flags_1": 134742080, "flags_2": 159808, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2054, "id_curve": 1690, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Purified Shard of the Third Moon", "name_ko_KR": "정화된 세 번째 달의 파편", "name_fr_FR": "Éclat de la troisième lune purifié", "name_de_DE": "Gereinigter Splitter des dritten Monds", "name_zh_CN": "纯净的第三月碎片", "name_es_ES": "Fragmento purificado de la tercera luna", "name_ru_RU": "Очищенный осколок третьей луны", "name_it_IT": "Frammento Purificato della Terza Luna", "name_pt_PT": "Estilhaço Purificado da Terceira Lua", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 133641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Skovald", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1369, "buy_price": 6849, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868000149726868, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Eye of Skovald", "name_ko_KR": "스코발드의 눈", "name_fr_FR": "Oeil de Skovald", "name_de_DE": "Auge von Skovald", "name_zh_CN": "斯科瓦尔德之眼", "name_es_ES": "Ojo de Skovald", "name_ru_RU": "Глаз Сковальда", "name_it_IT": "Occhio di Skovald", "name_pt_PT": "Olho de Skovald", "on_use": false, "id_encounter": 1488, "id_journal_instance": 721, "id_map": 1477, "instance_type": 1}, {"id": 133642, "race_mask": 18446744073709551615, "desc": "The strongest Vrykul are awaited by Odyn at the Halls of Valor, to become Valarjar. They fight eternal, shiny and gold.", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of Valor", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67314, "buy_price": 336571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904999732971191, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Horn of Valor", "name_ko_KR": "용맹의 뿔피리", "name_fr_FR": "Cor de vaillance", "name_de_DE": "Horn der Ehre", "name_zh_CN": "勇气号角", "name_es_ES": "Cuerno del valor", "name_ru_RU": "Рог доблести", "name_it_IT": "Corno del Valore", "name_pt_PT": "Trompa da Bravura", "on_use": true, "id_encounter": 1485, "id_journal_instance": 721, "id_map": 1477, "instance_type": 1}, {"id": 133644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Memento of Angerboda", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 72, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67810, "buy_price": 339051, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9977999925613403, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Memento of Angerboda", "name_ko_KR": "앵거보다의 기념품", "name_fr_FR": "Souvenir d'Angrboda", "name_de_DE": "Andenken an Angerboda", "name_zh_CN": "安格博达的回忆", "name_es_ES": "Recuerdo de Inquinoda", "name_ru_RU": "Память об Ангербоде", "name_it_IT": "Cimelio di Angrboda", "name_pt_PT": "Recordação de Angerboda", "on_use": false, "id_encounter": 1502, "id_journal_instance": 727, "id_map": 1492, "instance_type": 1}, {"id": 133645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Naglfar Fare", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69862, "buy_price": 349313, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027999997138977, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Naglfar Fare", "name_ko_KR": "나글파르 뱃삯", "name_fr_FR": "Prix pour le Naglfar", "name_de_DE": "Fährmannslohn der Naglfar", "name_zh_CN": "纳格法尔船票", "name_es_ES": "Bono del Naglfar", "name_ru_RU": "Плата за проезд на \"Нагльфаре\"", "name_it_IT": "Obolo della Naglfar", "name_pt_PT": "Passagem do Naglfar", "on_use": false, "id_encounter": 1512, "id_journal_instance": 727, "id_map": 1492, "instance_type": 1}, {"id": 133646, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mote of Sanctification", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70114, "buy_price": 350571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mote of Sanctification", "name_ko_KR": "축성의 티끌", "name_fr_FR": "Granule de sanctification", "name_de_DE": "Partikel der Weihe", "name_zh_CN": "圣灵微粒", "name_es_ES": "Mota de santificación", "name_ru_RU": "Частица освящения", "name_it_IT": "Granulo della Santificazione", "name_pt_PT": "Partícula de Santificação", "on_use": true, "id_encounter": 1486, "id_journal_instance": 721, "id_map": 1477, "instance_type": 1}, {"id": 133647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gift of Radiance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 5666, "stat_alloc_3": 5666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 72, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70358, "buy_price": 351794, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0353000164031982, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Gift of Radiance", "name_ko_KR": "광휘의 선물", "name_fr_FR": "Don de radiance", "name_de_DE": "Gabe des Glanzes", "name_zh_CN": "光辉之赐", "name_es_ES": "Ofrenda de radiancia", "name_ru_RU": "Светозарный дар", "name_it_IT": "Dono della Radiosità", "name_pt_PT": "Dádiva do Esplendor", "on_use": true, "id_encounter": 1489, "id_journal_instance": 721, "id_map": 1477, "instance_type": 1}, {"id": 133766, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nether Anti-Toxin", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65058, "buy_price": 325290, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Nether Anti-Toxin", "name_ko_KR": "황천 해독제", "name_fr_FR": "Antitoxine du Néant", "name_de_DE": "Nethergegengift", "name_zh_CN": "虚空抗体", "name_es_ES": "Antitoxina abisal", "name_ru_RU": "Противоядие Пустоты", "name_it_IT": "Antitossina Fatua", "name_pt_PT": "Antitoxina Etérea", "on_use": false, "id_encounter": 1500, "id_journal_instance": 726, "id_map": 1516, "instance_type": 1}, {"id": 134146, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brulstone Idol", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295454, "buy_price": 1477270, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872000217437744, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Brulstone Idol", "name_ko_KR": "브룰바위 우상", "name_fr_FR": "Idole en broufpierre", "name_de_DE": "Brulsteingötze", "name_zh_CN": "蛮石雕像", "name_es_ES": "Ídolo de piedra brul", "name_ru_RU": "Идол из камня брулов", "name_it_IT": "Idolo di Pietrabrulla", "name_pt_PT": "Ídolo de Pedralesk", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134159, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rocksunder Lucky Statue", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287702, "buy_price": 1438512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9613000154495239, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Rocksunder Lucky Statue", "name_ko_KR": "바위가름 행운의 조각상", "name_fr_FR": "Statue porte-bonheur de brise-caillou", "name_de_DE": "Steinspalterglücksstatue", "name_zh_CN": "裂石者幸运雕像", "name_es_ES": "Estatua de la suerte Agrietarroca", "name_ru_RU": "Статуэтка-талисман из расколотого камня", "name_it_IT": "Statua della Fortuna del Fendiroccia", "name_pt_PT": "Estátua da Sorte Dividerrocha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Huge Roggstone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288809, "buy_price": 1444049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9649999737739563, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Huge Roggstone", "name_ko_KR": "커다란 로그바위", "name_fr_FR": "Enorme pierre de rogg", "name_de_DE": "Riesiger Roggstein", "name_zh_CN": "巨型赤岩", "name_es_ES": "Piedra rogg enorme", "name_ru_RU": "Огромный камень роггов", "name_it_IT": "Pietrarogg Enorme", "name_pt_PT": "Pedra-rogg Enorme", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134190, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ironrune Charm", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 299763, "buy_price": 1498818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0016000270843506, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Ironrune Charm", "name_ko_KR": "강철룬 부적", "name_fr_FR": "Charme runefer", "name_de_DE": "Eisenrunenamulett", "name_zh_CN": "铁符护身符", "name_es_ES": "Talismán Runaférrea", "name_ru_RU": "Амулет Железной Руны", "name_it_IT": "Talismano di Runaferrea", "name_pt_PT": "Patuá Runaferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134203, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Three-Toed Rabbit Foot", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292042, "buy_price": 1460210, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9757999777793884, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Three-Toed Rabbit Foot", "name_ko_KR": "세 발가락 토끼 발", "name_fr_FR": "Patte de lapin à trois doigts", "name_de_DE": "Dreizehige Hasenpfote", "name_zh_CN": "三趾兔脚", "name_es_ES": "Pata de conejo con tres dedos", "name_ru_RU": "Трехпалая кроличья лапка", "name_it_IT": "Zampa di Coniglio a Tre Dita", "name_pt_PT": "Pé de Coelho de Três Dedos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134204, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bleached Skull Talisman", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293119, "buy_price": 1465598, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9793999791145325, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Bleached Skull Talisman", "name_ko_KR": "하얗게 바랜 해골 호신부", "name_fr_FR": "Talisman au crâne blanchi", "name_de_DE": "Gebleichter Schädeltalisman", "name_zh_CN": "破颅护身符", "name_es_ES": "Talismán de calavera blanquecina", "name_ru_RU": "Талисман из отбеленного черепа", "name_it_IT": "Talismano con Teschio Sbiancato", "name_pt_PT": "Talismã de Crânio Alvejado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134234, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Barnacled Azsharan Insignia", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 312004, "buy_price": 1560022, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0425000190734863, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Barnacled Azsharan Insignia", "name_ko_KR": "따개비 덮인 아즈샤라 휘장", "name_fr_FR": "Insigne d'Azshara couvert de bigorneaux", "name_de_DE": "Muschelverkrustetes azsharisches Insigne", "name_zh_CN": "长满藤壶的艾萨拉徽记", "name_es_ES": "Insignia de Azshara erosionada por el agua", "name_ru_RU": "Обросший ракушками знак Азшары", "name_it_IT": "Insegna di Azshara Incrostata di Conchiglie", "name_pt_PT": "Insígnia Azsharana com Cracas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134247, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Silent Seashell", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 304282, "buy_price": 1521414, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Silent Seashell", "name_ko_KR": "소리 없는 조개껍질", "name_fr_FR": "Coquillage silencieux", "name_de_DE": "Stumme Seemuschelschale", "name_zh_CN": "静默贝壳", "name_es_ES": "Caracola silenciosa", "name_ru_RU": "Безмолвная морская ракушка", "name_it_IT": "Conchiglia Silente", "name_pt_PT": "Concha Silenciosa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134248, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leycoral Shard", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 305390, "buy_price": 1526951, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020400047302246, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Leycoral Shard", "name_ko_KR": "지맥산호 조각", "name_fr_FR": "Éclat de corail tellurique", "name_de_DE": "Leykorallensplitter", "name_zh_CN": "魔珊瑚碎片", "name_es_ES": "Fragmento de coral Ley", "name_ru_RU": "Осколок коралла силы", "name_it_IT": "Scheggia di Corallo di Faglia", "name_pt_PT": "Estilhaço de Coral do Meridiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134278, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightborne Defender's Badge", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294316, "buy_price": 1471583, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9833999872207642, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightborne Defender's Badge", "name_ko_KR": "나이트본 방어병의 휘장", "name_fr_FR": "Ecusson de défenseur sacrenuit", "name_de_DE": "Abzeichen des Verteidigers der Nachtgeborenen", "name_zh_CN": "夜之子防御者徽章", "name_es_ES": "Distintivo de defensor Nocheterna", "name_ru_RU": "Жетон ночнорожденного-защитника", "name_it_IT": "Distintivo del Difensore Nobile Oscuro", "name_pt_PT": "Distintivo de Defensor Filho da Noite", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134291, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightborne's Hunting Horn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286565, "buy_price": 1432826, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574999809265137, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightborne's Hunting Horn", "name_ko_KR": "나이트본의 사냥용 뿔피리", "name_fr_FR": "Cor de chasse sacrenuit", "name_de_DE": "Jagdhorn der Nachtgeborenen", "name_zh_CN": "夜之子的狩猎号角", "name_es_ES": "Cuerno de caza de los Nocheterna", "name_ru_RU": "Охотничий рог ночнорожденных", "name_it_IT": "Corno da Caccia dei Nobili Oscuri", "name_pt_PT": "Trompa de Caça dos Filhos da Noite", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightborne Researcher's Phial", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287672, "buy_price": 1438363, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9611999988555908, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Nightborne Researcher's Phial", "name_ko_KR": "나이트본 연구원의 약병", "name_fr_FR": "Flasque de chercheur sacrenuit", "name_de_DE": "Forschungsphiole der Nachtgeborenen", "name_zh_CN": "夜之子研究员的药瓶", "name_es_ES": "Ampolla de investigador Nocheterna", "name_ru_RU": "Фиал исследователя-ночнорожденного", "name_it_IT": "Fiala del Ricercatore Nobile Oscuro", "name_pt_PT": "Frasco do Pesquisador Filho da Noite", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134322, "race_mask": 18446744073709551615, "desc": "No more mana, but still packs a wallop.", "pad2": "", "pad1": "", "pad0": "", "name": "Drained Mana Crystal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 306557, "buy_price": 1532787, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Drained Mana Crystal", "name_ko_KR": "고갈된 마나 결정", "name_fr_FR": "Cristal de mana drainé", "name_de_DE": "Ausgelaugter Manakristall", "name_zh_CN": "干涸的法力水晶", "name_es_ES": "Cristal de maná drenado", "name_ru_RU": "Истощенный кристалл маны", "name_it_IT": "Cristallo di Mana Prosciugato", "name_pt_PT": "Cristal do Mana Drenado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134335, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mana Crystal Shard", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290904, "buy_price": 1454524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mana Crystal Shard", "name_ko_KR": "마나 결정 파편", "name_fr_FR": "Éclat de cristal de mana", "name_de_DE": "Manakristallsplitter", "name_zh_CN": "法力水晶碎片", "name_es_ES": "Fragmento de cristal de maná", "name_ru_RU": "Осколок кристалла маны", "name_it_IT": "Frammento di Cristallo di Mana", "name_pt_PT": "Estilhaço de Cristal de Mana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134336, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Mana Crystal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 299913, "buy_price": 1499566, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stolen Mana Crystal", "name_ko_KR": "도둑맞은 마나 결정", "name_fr_FR": "Cristal de mana volé", "name_de_DE": "Gestohlener Manakristall", "name_zh_CN": "失窃的法力水晶", "name_es_ES": "Cristal de maná robado", "name_ru_RU": "Украденный кристалл маны", "name_it_IT": "Cristallo di Mana Rubato", "name_pt_PT": "Cristal de Mana Roubado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134366, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Legionnaire's Mandate", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 310867, "buy_price": 1554336, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038699984550476, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Legionnaire's Mandate", "name_ko_KR": "용사의 지령", "name_fr_FR": "Mandat de légionnaire", "name_de_DE": "Legionärsmandat", "name_zh_CN": "军团士兵指令", "name_es_ES": "Mandato de Legionario", "name_ru_RU": "Предписание легионера", "name_it_IT": "Ordine del Legionario", "name_pt_PT": "Mandato do Legionário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134379, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infernal Bloodstone Shard", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 303145, "buy_price": 1515728, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0128999948501587, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Infernal Bloodstone Shard", "name_ko_KR": "조각난 지옥 혈석", "name_fr_FR": "Éclat de pierre de sang infernale", "name_de_DE": "Höllischer Blutsteinsplitter", "name_zh_CN": "狱火血石碎片", "name_es_ES": "Fragmento de sangrita infernal", "name_ru_RU": "Осколок инфернального кровавого камня", "name_it_IT": "Scheggia di Sanguinite Infernale", "name_pt_PT": "Lasca de Pedra-sangrenta Infernal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134380, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burning Portal Key", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 304253, "buy_price": 1521265, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0166000127792358, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Burning Portal Key", "name_ko_KR": "불타는 차원문 열쇠", "name_fr_FR": "Clé de portail ardente", "name_de_DE": "Brennender Portalschlüssel", "name_zh_CN": "燃烧的传送门之钥", "name_es_ES": "Llave de portal ardiente", "name_ru_RU": "Ключ от портала Легиона", "name_it_IT": "Chiave del Portale Infuocato", "name_pt_PT": "Chave do Portal Ardente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Accolade", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 28362, "buy_price": 141814, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535000324249268, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Recruit's Accolade", "name_ko_KR": "훈련생용 상징", "name_fr_FR": "Décoration de recrue", "name_de_DE": "Auszeichnung des Rekruten", "name_zh_CN": "新兵奖章", "name_es_ES": "Galardón de recluta", "name_ru_RU": "Акколада новичка", "name_it_IT": "Decorazione della Recluta", "name_pt_PT": "Galardão do Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134690, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Distinction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 29258, "buy_price": 146291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836000204086304, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Recruit's Distinction", "name_ko_KR": "훈련생용 훈장", "name_fr_FR": "Distinction de recrue", "name_de_DE": "Ehrennadel des Rekruten", "name_zh_CN": "新兵的荣耀", "name_es_ES": "Distinción de recluta", "name_ru_RU": "Знак отличия новичка", "name_it_IT": "Onorificenza della Recluta", "name_pt_PT": "Distinção do Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134691, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Badge", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 29368, "buy_price": 146841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Recruit's Badge", "name_ko_KR": "훈련생용 휘장", "name_fr_FR": "Ecusson de recrue", "name_de_DE": "Abzeichen des Rekruten", "name_zh_CN": "新兵徽章", "name_es_ES": "Distintivo de recluta", "name_ru_RU": "Жетон новичка", "name_it_IT": "Distintivo della Recluta", "name_pt_PT": "Distintivo do Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134692, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enveloping Accolade", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 295890, "buy_price": 1479454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9909999966621399, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Enveloping Accolade", "name_ko_KR": "휘감는 상징", "name_fr_FR": "Décoration enveloppante", "name_de_DE": "Einhüllende Auszeichnung", "name_zh_CN": "遮蔽奖章", "name_es_ES": "Galardón envolvente", "name_ru_RU": "Опутывающая акколада", "name_it_IT": "Decorazione Avvolgente", "name_pt_PT": "Galardão Envolvente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134698, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enveloping Distinction", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 302459, "buy_price": 1512297, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0130000114440918, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Enveloping Distinction", "name_ko_KR": "휘감는 훈장", "name_fr_FR": "Distinction enveloppante", "name_de_DE": "Einhüllende Ehrennadel", "name_zh_CN": "遮蔽荣耀", "name_es_ES": "Distinción envolvente", "name_ru_RU": "Опутывающий знак отличия", "name_it_IT": "Onorificenza Avvolgente", "name_pt_PT": "Distinção Envolvente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enveloping Badge", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 299145, "buy_price": 1495726, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0018999576568604, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Enveloping Badge", "name_ko_KR": "휘감는 휘장", "name_fr_FR": "Ecusson enveloppant", "name_de_DE": "Einhüllendes Abzeichen", "name_zh_CN": "遮蔽徽章", "name_es_ES": "Distintivo envolvente", "name_ru_RU": "Опутывающий жетон", "name_it_IT": "Distintivo Avvolgente", "name_pt_PT": "Distintivo Envolvente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134743, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cold-Touched Accolade", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 72826, "buy_price": 364130, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574999809265137, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cold-Touched Accolade", "name_ko_KR": "차가운 손길의 상징", "name_fr_FR": "Décoration touchée par le froid", "name_de_DE": "Kältedurchdrungene Auszeichnung", "name_zh_CN": "寒触奖章", "name_es_ES": "Galardón de tacto frío", "name_ru_RU": "Тронутая холодом акколада", "name_it_IT": "Decorazione Toccata dal Freddo", "name_pt_PT": "Galardão Tocado pelo Frio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134744, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cold-Touched Distinction", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 73107, "buy_price": 365537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9611999988555908, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cold-Touched Distinction", "name_ko_KR": "차가운 손길의 훈장", "name_fr_FR": "Distinction touchée par le froid", "name_de_DE": "Kältedurchdrungene Ehrennadel", "name_zh_CN": "寒触荣耀", "name_es_ES": "Distinción de tacto frío", "name_ru_RU": "Тронутый холодом знак отличия", "name_it_IT": "Onorificenza Toccata dal Freddo", "name_pt_PT": "Distinção Tocada pelo Frio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134745, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cold-Touched Badge", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 73388, "buy_price": 366944, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.964900016784668, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cold-Touched Badge", "name_ko_KR": "차가운 손길의 휘장", "name_fr_FR": "Ecusson touché par le froid", "name_de_DE": "Kältedurchdrungenes Abzeichen", "name_zh_CN": "寒触徽章", "name_es_ES": "Distintivo de tacto frío", "name_ru_RU": "Тронутый холодом жетон", "name_it_IT": "Distintivo Toccato dal Freddo", "name_pt_PT": "Distintivo Tocado pelo Frio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134777, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seasoned Accolade", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 203734, "buy_price": 1018673, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0353000164031982, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Seasoned Accolade", "name_ko_KR": "숙련의 상징", "name_fr_FR": "Décoration aguerrie", "name_de_DE": "Bewährte Auszeichnung", "name_zh_CN": "老兵奖章", "name_es_ES": "Galardón avezado", "name_ru_RU": "Ветеранская акколада", "name_it_IT": "Decorazione Capace", "name_pt_PT": "Galardão Experiente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134788, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seasoned Distinction", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 197201, "buy_price": 986006, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Seasoned Distinction", "name_ko_KR": "숙련의 훈장", "name_fr_FR": "Distinction aguerrie", "name_de_DE": "Bewährte Ehrennadel", "name_zh_CN": "老兵荣耀", "name_es_ES": "Distinción avezada", "name_ru_RU": "Ветеранский знак отличия", "name_it_IT": "Onorificenza Capace", "name_pt_PT": "Distinção do Experiente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 134804, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seasoned Badge", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 4, "req_spell": 0, "sell_price": 194288, "buy_price": 971443, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Seasoned Badge", "name_ko_KR": "숙련의 휘장", "name_fr_FR": "Ecusson aguerri", "name_de_DE": "Bewährtes Abzeichen", "name_zh_CN": "老兵徽章", "name_es_ES": "Distintivo avezado", "name_ru_RU": "Ветеранский жетон", "name_it_IT": "Distintivo Capace", "name_pt_PT": "Distintivo de Experiente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135691, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281338, "buy_price": 1406692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135804, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador vindicativo", "name_ru_RU": "Жетон завоевания карающего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135692, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 484394, "buy_price": 2421974, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135805, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador vindicativo", "name_ru_RU": "Акколада завоевания карающего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135693, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283423, "buy_price": 1417118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135806, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador vindicativo", "name_ru_RU": "Знак завоевания карающего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135694, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284466, "buy_price": 1422332, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135807, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador vindicativo", "name_ru_RU": "Эмблема жестокости карающего гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Astioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135695, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285480, "buy_price": 1427404, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135808, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador vindicativo", "name_ru_RU": "Эмблема упорства карающего гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Astioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135696, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286523, "buy_price": 1432617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135809, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Meditation", "name_ko_KR": "앙갚음하는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador vindicativo", "name_ru_RU": "Эмблема медитации карающего гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Astioso", "name_pt_PT": "Emblema da Meditação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135697, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287566, "buy_price": 1437830, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135810, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador vindicativo", "name_ru_RU": "Жетон господства карающего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominância do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135698, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 495077, "buy_price": 2475387, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135811, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador vindicativo", "name_ru_RU": "Акколада господства карающего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135699, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1902, "buy_price": 9512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135812, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador vindicativo", "name_ru_RU": "Знак господства карающего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135700, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290665, "buy_price": 1453328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135813, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador vindicativo", "name_ru_RU": "Жетон победы карающего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Astioso", "name_pt_PT": "Distintivo da Vitória do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135701, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500394, "buy_price": 2501973, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0351999998092651, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135814, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador vindicativo", "name_ru_RU": "Акколада победы карающего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Astioso", "name_pt_PT": "Galardão da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135702, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271983, "buy_price": 1359915, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135815, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador vindicativo", "name_ru_RU": "Знак победы карающего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Astioso", "name_pt_PT": "Insígnia da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135703, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273025, "buy_price": 1365128, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135816, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Adaptation", "name_ko_KR": "앙갚음하는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador vindicativo", "name_ru_RU": "Жетон адаптации карающего гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Astioso", "name_pt_PT": "Distintivo da Adaptação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135804, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281338, "buy_price": 1406692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135691, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador vindicativo", "name_ru_RU": "Жетон завоевания карающего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135805, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 484394, "buy_price": 2421974, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135692, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador vindicativo", "name_ru_RU": "Акколада завоевания карающего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135806, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283423, "buy_price": 1417118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135693, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador vindicativo", "name_ru_RU": "Знак завоевания карающего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135807, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284466, "buy_price": 1422332, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135694, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador vindicativo", "name_ru_RU": "Эмблема жестокости карающего гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Astioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135808, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285480, "buy_price": 1427404, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135695, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador vindicativo", "name_ru_RU": "Эмблема упорства карающего гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Astioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135809, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286523, "buy_price": 1432617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135696, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Meditation", "name_ko_KR": "앙갚음하는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador vindicativo", "name_ru_RU": "Эмблема медитации карающего гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Astioso", "name_pt_PT": "Emblema da Meditação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135810, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287566, "buy_price": 1437830, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135697, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador vindicativo", "name_ru_RU": "Жетон господства карающего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominância do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135811, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 495077, "buy_price": 2475387, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135698, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador vindicativo", "name_ru_RU": "Акколада господства карающего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135812, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1902, "buy_price": 9512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135699, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador vindicativo", "name_ru_RU": "Знак господства карающего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135813, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290665, "buy_price": 1453328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135700, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador vindicativo", "name_ru_RU": "Жетон победы карающего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Astioso", "name_pt_PT": "Distintivo da Vitória do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135814, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500394, "buy_price": 2501973, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0351999998092651, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135701, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador vindicativo", "name_ru_RU": "Акколада победы карающего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Astioso", "name_pt_PT": "Galardão da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135815, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271983, "buy_price": 1359915, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135702, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador vindicativo", "name_ru_RU": "Знак победы карающего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Astioso", "name_pt_PT": "Insígnia da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135816, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273025, "buy_price": 1365128, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135703, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Adaptation", "name_ko_KR": "앙갚음하는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador vindicativo", "name_ru_RU": "Жетон адаптации карающего гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Astioso", "name_pt_PT": "Distintivo da Adaptação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135917, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211003, "buy_price": 1055019, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136030, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente vindicativo", "name_ru_RU": "Жетон завоевания карающего бойца", "name_it_IT": "Distintivo della Conquista del Combattente Astioso", "name_pt_PT": "Distintivo da Dominação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135918, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 359896, "buy_price": 1799480, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136031, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente vindicativo", "name_ru_RU": "Акколада завоевания карающего бойца", "name_it_IT": "Decorazione della Conquista del Combattente Astioso", "name_pt_PT": "Galardão da Dominação do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135919, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212567, "buy_price": 1062839, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136032, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente vindicativo", "name_ru_RU": "Знак завоевания карающего бойца", "name_it_IT": "Fregio della Conquista del Combattente Astioso", "name_pt_PT": "Insígnia da Dominação do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135920, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 213349, "buy_price": 1066749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136033, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente vindicativo", "name_ru_RU": "Эмблема жестокости карающего бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Astioso", "name_pt_PT": "Emblema da Crueldade do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135921, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214110, "buy_price": 1070553, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136034, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente vindicativo", "name_ru_RU": "Эмблема упорства карающего бойца", "name_it_IT": "Emblema della Tenacia del Combattente Astioso", "name_pt_PT": "Emblema da Tenacidade do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135922, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214892, "buy_price": 1074463, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136035, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Meditation", "name_ko_KR": "앙갚음하는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente vindicativo", "name_ru_RU": "Эмблема медитации карающего бойца", "name_it_IT": "Emblema della Meditazione del Combattente Astioso", "name_pt_PT": "Emblema da Meditação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135923, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 215674, "buy_price": 1078372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136036, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente vindicativo", "name_ru_RU": "Жетон господства карающего бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Astioso", "name_pt_PT": "Distintivo da Dominância do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135924, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367833, "buy_price": 1839165, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136037, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente vindicativo", "name_ru_RU": "Акколада господства карающего бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Astioso", "name_pt_PT": "Galardão da Dominância do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135925, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1426, "buy_price": 7134, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136038, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente vindicativo", "name_ru_RU": "Знак господства карающего бойца", "name_it_IT": "Fregio della Dominazione del Combattente Astioso", "name_pt_PT": "Insígnia da Dominância do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135926, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217999, "buy_price": 1089996, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136039, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente vindicativo", "name_ru_RU": "Жетон победы карающего бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Astioso", "name_pt_PT": "Distintivo da Vitória do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135927, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 345350, "buy_price": 1726754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136040, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente vindicativo", "name_ru_RU": "Акколада победы карающего бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Astioso", "name_pt_PT": "Galardão da Vitória do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135928, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203987, "buy_price": 1019936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136041, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente vindicativo", "name_ru_RU": "Знак победы карающего бойца", "name_it_IT": "Fregio della Vittoria del Combattente Astioso", "name_pt_PT": "Insígnia da Vitória do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 135929, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204769, "buy_price": 1023846, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136042, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Adaptation", "name_ko_KR": "앙갚음하는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente vindicativo", "name_ru_RU": "Жетон адаптации карающего бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Astioso", "name_pt_PT": "Distintivo da Adaptação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136030, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211003, "buy_price": 1055019, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135917, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente vindicativo", "name_ru_RU": "Жетон завоевания карающего бойца", "name_it_IT": "Distintivo della Conquista del Combattente Astioso", "name_pt_PT": "Distintivo da Dominação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136031, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 359896, "buy_price": 1799480, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135918, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente vindicativo", "name_ru_RU": "Акколада завоевания карающего бойца", "name_it_IT": "Decorazione della Conquista del Combattente Astioso", "name_pt_PT": "Galardão da Dominação do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136032, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212567, "buy_price": 1062839, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135919, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Conquest", "name_ko_KR": "앙갚음하는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente vindicativo", "name_ru_RU": "Знак завоевания карающего бойца", "name_it_IT": "Fregio della Conquista del Combattente Astioso", "name_pt_PT": "Insígnia da Dominação do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136033, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 213349, "buy_price": 1066749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135920, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente vindicativo", "name_ru_RU": "Эмблема жестокости карающего бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Astioso", "name_pt_PT": "Emblema da Crueldade do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136034, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214110, "buy_price": 1070553, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135921, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente vindicativo", "name_ru_RU": "Эмблема упорства карающего бойца", "name_it_IT": "Emblema della Tenacia del Combattente Astioso", "name_pt_PT": "Emblema da Tenacidade do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136035, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214892, "buy_price": 1074463, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135922, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Emblem of Meditation", "name_ko_KR": "앙갚음하는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente vindicativo", "name_ru_RU": "Эмблема медитации карающего бойца", "name_it_IT": "Emblema della Meditazione del Combattente Astioso", "name_pt_PT": "Emblema da Meditação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136036, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 215674, "buy_price": 1078372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135923, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente vindicativo", "name_ru_RU": "Жетон господства карающего бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Astioso", "name_pt_PT": "Distintivo da Dominância do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136037, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367833, "buy_price": 1839165, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135924, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente vindicativo", "name_ru_RU": "Акколада господства карающего бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Astioso", "name_pt_PT": "Galardão da Dominância do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136038, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1426, "buy_price": 7134, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135925, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Dominance", "name_ko_KR": "앙갚음하는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente vindicativo", "name_ru_RU": "Знак господства карающего бойца", "name_it_IT": "Fregio della Dominazione del Combattente Astioso", "name_pt_PT": "Insígnia da Dominância do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136039, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217999, "buy_price": 1089996, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135926, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente vindicativo", "name_ru_RU": "Жетон победы карающего бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Astioso", "name_pt_PT": "Distintivo da Vitória do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136040, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 345350, "buy_price": 1726754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135927, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Accolade of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente vindicativo", "name_ru_RU": "Акколада победы карающего бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Astioso", "name_pt_PT": "Galardão da Vitória do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136041, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203987, "buy_price": 1019936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135928, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Insignia of Victory", "name_ko_KR": "앙갚음하는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente vindicativo", "name_ru_RU": "Знак победы карающего бойца", "name_it_IT": "Fregio della Vittoria del Combattente Astioso", "name_pt_PT": "Insígnia da Vitória do Combatente Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136042, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Combatant's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204769, "buy_price": 1023846, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 135929, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13226, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Vindictive Combatant's Badge of Adaptation", "name_ko_KR": "앙갚음하는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Kämpfers", "name_zh_CN": "血仇争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente vindicativo", "name_ru_RU": "Жетон адаптации карающего бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Astioso", "name_pt_PT": "Distintivo da Adaptação do Combatente Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136143, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281338, "buy_price": 1406692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136256, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador vindicativo", "name_ru_RU": "Жетон завоевания карающего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136144, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 501395, "buy_price": 2506977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136257, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador vindicativo", "name_ru_RU": "Акколада завоевания карающего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136145, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283423, "buy_price": 1417118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136258, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador vindicativo", "name_ru_RU": "Знак завоевания карающего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136146, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284466, "buy_price": 1422332, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136259, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador vindicativo", "name_ru_RU": "Эмблема жестокости карающего гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Astioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136147, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285480, "buy_price": 1427404, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136260, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador vindicativo", "name_ru_RU": "Эмблема упорства карающего гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Astioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136148, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286523, "buy_price": 1432617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136261, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Meditation", "name_ko_KR": "앙갚음하는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador vindicativo", "name_ru_RU": "Эмблема медитации карающего гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Astioso", "name_pt_PT": "Emblema da Meditação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136149, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287566, "buy_price": 1437830, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136262, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador vindicativo", "name_ru_RU": "Жетон господства карающего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominância do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136150, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 512453, "buy_price": 2562265, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0241999626159668, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136263, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador vindicativo", "name_ru_RU": "Акколада господства карающего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136151, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1902, "buy_price": 9512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136264, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador vindicativo", "name_ru_RU": "Знак господства карающего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136152, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269926, "buy_price": 1349630, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136265, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador vindicativo", "name_ru_RU": "Жетон победы карающего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Astioso", "name_pt_PT": "Distintivo da Vitória do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136153, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 481131, "buy_price": 2405657, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136266, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador vindicativo", "name_ru_RU": "Акколада победы карающего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Astioso", "name_pt_PT": "Galardão da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136154, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271983, "buy_price": 1359915, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136267, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador vindicativo", "name_ru_RU": "Знак победы карающего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Astioso", "name_pt_PT": "Insígnia da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136155, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273025, "buy_price": 1365128, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136268, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Adaptation", "name_ko_KR": "앙갚음하는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador vindicativo", "name_ru_RU": "Жетон адаптации карающего гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Astioso", "name_pt_PT": "Distintivo da Adaptação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136256, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281338, "buy_price": 1406692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983999729156494, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136143, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador vindicativo", "name_ru_RU": "Жетон завоевания карающего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136257, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 501395, "buy_price": 2506977, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0020999908447266, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136144, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador vindicativo", "name_ru_RU": "Акколада завоевания карающего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136258, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283423, "buy_price": 1417118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136145, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Conquest", "name_ko_KR": "앙갚음하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur vindicatif", "name_de_DE": "Eroberungsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador vindicativo", "name_ru_RU": "Знак завоевания карающего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominação do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136259, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284466, "buy_price": 1422332, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0095000267028809, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136146, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Cruelty", "name_ko_KR": "앙갚음하는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur vindicatif", "name_de_DE": "Grausamkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador vindicativo", "name_ru_RU": "Эмблема жестокости карающего гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Astioso", "name_pt_PT": "Emblema da Crueldade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136260, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285480, "buy_price": 1427404, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013100028038025, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136147, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Tenacity", "name_ko_KR": "앙갚음하는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur vindicatif", "name_de_DE": "Hartnäckigkeitsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador vindicativo", "name_ru_RU": "Эмблема упорства карающего гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Astioso", "name_pt_PT": "Emblema da Tenacidade do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136261, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286523, "buy_price": 1432617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136148, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Emblem of Meditation", "name_ko_KR": "앙갚음하는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur vindicatif", "name_de_DE": "Meditationsemblem des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador vindicativo", "name_ru_RU": "Эмблема медитации карающего гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Astioso", "name_pt_PT": "Emblema da Meditação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136262, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287566, "buy_price": 1437830, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136149, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador vindicativo", "name_ru_RU": "Жетон господства карающего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Astioso", "name_pt_PT": "Distintivo da Dominância do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136263, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 512403, "buy_price": 2562015, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136150, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador vindicativo", "name_ru_RU": "Акколада господства карающего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Astioso", "name_pt_PT": "Galardão da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136264, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1902, "buy_price": 9512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136151, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Dominance", "name_ko_KR": "앙갚음하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur vindicatif", "name_de_DE": "Vorherrschaftsinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador vindicativo", "name_ru_RU": "Знак господства карающего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Astioso", "name_pt_PT": "Insígnia da Dominância do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136265, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269926, "buy_price": 1349630, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136152, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur vindicatif", "name_de_DE": "Siegesabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador vindicativo", "name_ru_RU": "Жетон победы карающего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Astioso", "name_pt_PT": "Distintivo da Vitória do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136266, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 481131, "buy_price": 2405657, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136153, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Accolade of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur vindicatif", "name_de_DE": "Siegesauszeichnung des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador vindicativo", "name_ru_RU": "Акколада победы карающего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Astioso", "name_pt_PT": "Galardão da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136267, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271983, "buy_price": 1359915, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9652000069618225, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136154, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Insignia of Victory", "name_ko_KR": "앙갚음하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur vindicatif", "name_de_DE": "Siegesinsigne des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador vindicativo", "name_ru_RU": "Знак победы карающего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Astioso", "name_pt_PT": "Insígnia da Vitória do Gladiador Víndice", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136268, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273025, "buy_price": 1365128, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 136155, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13227, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vindictive Gladiator's Badge of Adaptation", "name_ko_KR": "앙갚음하는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur vindicatif", "name_de_DE": "Anpassungsabzeichen des rachgierigen Gladiators", "name_zh_CN": "血仇角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador vindicativo", "name_ru_RU": "Жетон адаптации карающего гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Astioso", "name_pt_PT": "Distintivo da Adaptação do Gladiador Víndice", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136714, "race_mask": 18446744073709551615, "desc": "This oversized bone is slowly leaking soul energy.", "pad2": "", "pad1": "", "pad0": "", "name": "Amalgam's Seventh Spine", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1416, "buy_price": 7083, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Amalgam's Seventh Spine", "name_ko_KR": "융합체의 일곱 번째 척추뼈", "name_fr_FR": "Septième vertèbre de l'amalgame", "name_de_DE": "Siebenter Stachel des Amalgams", "name_zh_CN": "融合怪的第七块脊柱", "name_es_ES": "Séptimo espinazo de la amalgama", "name_ru_RU": "Седьмой шип Слияния", "name_it_IT": "Settima Spina Dorsale dell'Amalgama", "name_pt_PT": "Espinha da Sétima Amálgama", "on_use": false, "id_encounter": 1518, "id_journal_instance": 740, "id_map": 1501, "instance_type": 1}, {"id": 136715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spiked Counterweight", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1319, "buy_price": 6597, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9505000114440918, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Spiked Counterweight", "name_ko_KR": "가시 돋친 평형추", "name_fr_FR": "Contrepoids pointu", "name_de_DE": "Stachelbesetztes Gegengewicht", "name_zh_CN": "倒刺砝码", "name_es_ES": "Contrapeso con púas", "name_ru_RU": "Шипастый противовес", "name_it_IT": "Contrappeso Puntuto", "name_pt_PT": "Contrapeso Espinhento", "on_use": false, "id_encounter": 1664, "id_journal_instance": 740, "id_map": 1501, "instance_type": 1}, {"id": 136716, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Caged Horror", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1324, "buy_price": 6623, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954200029373169, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Caged Horror", "name_ko_KR": "우리에 갇힌 공포", "name_fr_FR": "Horreur en cage", "name_de_DE": "Eingefangener Schrecken", "name_zh_CN": "笼中恐魔", "name_es_ES": "Horror enjaulado", "name_ru_RU": "Заточенный ужас", "name_it_IT": "Orrore in Gabbia", "name_pt_PT": "Terror Enjaulado", "on_use": false, "id_encounter": 1672, "id_journal_instance": 740, "id_map": 1501, "instance_type": 1}, {"id": 136736, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Badge of the Wardens", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285547, "buy_price": 1427738, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9541000127792358, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Badge of the Wardens", "name_ko_KR": "감시관의 휘장", "name_fr_FR": "Ecusson des Gardiennes", "name_de_DE": "Abzeichen der Wächterinnen", "name_zh_CN": "守望者徽章", "name_es_ES": "Distintivo de las Celadoras", "name_ru_RU": "Жетон Стражей", "name_it_IT": "Distintivo delle Custodi", "name_pt_PT": "Distintivo das Guardiãs", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136749, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of the Sentinel", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 307754, "buy_price": 1538773, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mark of the Sentinel", "name_ko_KR": "파수꾼의 징표", "name_fr_FR": "Marque de la Sentinelle", "name_de_DE": "Zeichen der Schildwache", "name_zh_CN": "哨兵印记", "name_es_ES": "Marca del centinela", "name_ru_RU": "Знак часового", "name_it_IT": "Marchio della Sentinella", "name_pt_PT": "Marca da Sentinela", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136750, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vault Guardian's Talisman", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 308861, "buy_price": 1544309, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Vault Guardian's Talisman", "name_ko_KR": "금고 경비병의 부적", "name_fr_FR": "Talisman de gardien du caveau", "name_de_DE": "Talisman des Verlieswächters", "name_zh_CN": "地窟守护者的护符", "name_es_ES": "Talismán de guardián de la cámara", "name_ru_RU": "Талисман стража Казематов", "name_it_IT": "Talismano delle Custodi delle Segrete", "name_pt_PT": "Talismã do Guardião da Câmara", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 136975, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hunger of the Pack", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69883, "buy_price": 349415, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Hunger of the Pack", "name_ko_KR": "무리의 굶주림", "name_fr_FR": "Faim de la meute", "name_de_DE": "Hunger des Rudels", "name_zh_CN": "狼群之饥", "name_es_ES": "El hambre de la manada", "name_ru_RU": "Голод стаи", "name_it_IT": "Fame del Branco", "name_pt_PT": "Fome da Matilha", "on_use": false, "id_encounter": 1487, "id_journal_instance": 721, "id_map": 1477, "instance_type": 1}, {"id": 136978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ember of Nullification", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1442, "buy_price": 7214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0393999814987183, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Ember of Nullification", "name_ko_KR": "무효화의 잿불", "name_fr_FR": "Braise d'invalidation", "name_de_DE": "Funke der Nullifikation", "name_zh_CN": "废灵余烬", "name_es_ES": "Ascua de anulación", "name_ru_RU": "Уголек нейтрализации", "name_it_IT": "Brace della Nullificazione", "name_pt_PT": "Brasa de Nulificação", "on_use": false, "id_encounter": 1653, "id_journal_instance": 740, "id_map": 1501, "instance_type": 1}, {"id": 137301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Starlight", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1324, "buy_price": 6622, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9541000127792358, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Starlight", "name_ko_KR": "더럽혀진 별빛", "name_fr_FR": "Lumétoile corrompue", "name_de_DE": "Verderbtes Sternenlicht", "name_zh_CN": "腐化星光", "name_es_ES": "Luz estelar corrupta", "name_ru_RU": "Оскверненный звездный свет", "name_it_IT": "Luce Stellare Corrotta", "name_pt_PT": "Luz Estelar Corrompida", "on_use": false, "id_encounter": 1654, "id_journal_instance": 762, "id_map": 1466, "instance_type": 1}, {"id": 137306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oakheart's Gnarled Root", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1349, "buy_price": 6749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oakheart's Gnarled Root", "name_ko_KR": "나무심장의 비틀린 뿌리", "name_fr_FR": "Racine noueuse de Chênecœur", "name_de_DE": "Runzelwurzel von Eichenherz", "name_zh_CN": "橡树之心的瘤节之根", "name_es_ES": "Raíz nudosa de Corazón de Roble", "name_ru_RU": "Узловатый корень Дубосерда", "name_it_IT": "Radice Contorta di Cuorquercia", "name_pt_PT": "Raiz Nodosa do Coração de Carvalho", "on_use": false, "id_encounter": 1655, "id_journal_instance": 762, "id_map": 1466, "instance_type": 1}, {"id": 137312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightmare Egg Shell", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1417, "buy_price": 7087, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0210000276565552, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Nightmare Egg Shell", "name_ko_KR": "악몽의 알 껍질", "name_fr_FR": "Coquille d'œuf cauchemardesque", "name_de_DE": "Alptraumeierschale", "name_zh_CN": "梦魇蛋壳", "name_es_ES": "Cáscara de huevo de la Pesadilla", "name_ru_RU": "Скорлупа кошмарного яйца", "name_it_IT": "Guscio d'Uovo dell'Incubo", "name_pt_PT": "Casca de Ovo do Pesadelo", "on_use": false, "id_encounter": 1656, "id_journal_instance": 762, "id_map": 1466, "instance_type": 1}, {"id": 137315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Writhing Heart of Darkness", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1432, "buy_price": 7163, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Writhing Heart of Darkness", "name_ko_KR": "몸서리치는 어둠의 심장", "name_fr_FR": "Cœur des ténèbres grouillant", "name_de_DE": "Zuckendes Herz der Dunkelheit", "name_zh_CN": "蠕动的黑暗之心", "name_es_ES": "Corazón avieso de la oscuridad", "name_ru_RU": "Бьющееся сердце Тьмы", "name_it_IT": "Cuore di Tenebra Vorticante", "name_pt_PT": "Coração das Trevas Convulsente", "on_use": false, "id_encounter": 1657, "id_journal_instance": 762, "id_map": 1466, "instance_type": 1}, {"id": 137329, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Figurehead of the Naglfar", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1401, "buy_price": 7009, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0097999572753906, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Figurehead of the Naglfar", "name_ko_KR": "나글파르의 선수상", "name_fr_FR": "Figure de proue du Naglfar", "name_de_DE": "Galionsfigur der Naglfar", "name_zh_CN": "纳格法尔号船首像", "name_es_ES": "Mascarón del Naglfar", "name_ru_RU": "Резная фигура \"Нагльфара\"", "name_it_IT": "Statuetta della Naglfar", "name_pt_PT": "Carranca dos Naglfar", "on_use": true, "id_encounter": 1663, "id_journal_instance": 727, "id_map": 1492, "instance_type": 1}, {"id": 137338, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of Rokmora", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 72, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70875, "buy_price": 354376, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0428999662399292, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shard of Rokmora", "name_ko_KR": "로크모라의 파편", "name_fr_FR": "Éclat de Rokmora", "name_de_DE": "Splitter von Rokmora", "name_zh_CN": "洛克莫拉的碎片", "name_es_ES": "Fragmento de Rokmora", "name_ru_RU": "Осколок Рокморы", "name_it_IT": "Scheggia di Rokmora", "name_pt_PT": "Estilhaço de Rokmora", "on_use": true, "id_encounter": 1662, "id_journal_instance": 767, "id_map": 1458, "instance_type": 1}, {"id": 137344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Talisman of the Cragshaper", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67368, "buy_price": 336843, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9912999868392944, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Talisman of the Cragshaper", "name_ko_KR": "바위구체자의 부적", "name_fr_FR": "Talisman de Sculpte-Roche", "name_de_DE": "Talisman des Klippenformers", "name_zh_CN": "塑山的护符", "name_es_ES": "Dije del Formarriscos", "name_ru_RU": "Талисман Скаломола", "name_it_IT": "Talismano del Plasmarupi", "name_pt_PT": "Talismã do Fazpenhasco", "on_use": true, "id_encounter": 1665, "id_journal_instance": 767, "id_map": 1458, "instance_type": 1}, {"id": 137349, "race_mask": 18446744073709551615, "desc": "This thing is enormous. It must weigh a tongue!", "pad2": "", "pad1": "", "pad0": "", "name": "Naraxas' Spiked Tongue", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1401, "buy_price": 7008, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0096999406814575, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Naraxas' Spiked Tongue", "name_ko_KR": "나락사스의 가시 돋친 혀", "name_fr_FR": "Langue à pointes de Naraxas", "name_de_DE": "Naraxas' Hakenzunge", "name_zh_CN": "纳拉萨斯的尖刺之舌", "name_es_ES": "Lengua con pinchos de Naraxas", "name_ru_RU": "Шипастый язык Нараксас", "name_it_IT": "Lingua Biforcuta di Naraxas", "name_pt_PT": "Língua Espinhenta de Naraxas", "on_use": false, "id_encounter": 1673, "id_journal_instance": 767, "id_map": 1458, "instance_type": 1}, {"id": 137357, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mark of Dargrul", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70617, "buy_price": 353085, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0391000509262085, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mark of Dargrul", "name_ko_KR": "다르그룰의 징표", "name_fr_FR": "Marque de Dargrul", "name_de_DE": "Mal von Dargrul", "name_zh_CN": "达古尔的印记", "name_es_ES": "Marca de Dargrul", "name_ru_RU": "Знак Даргрула", "name_it_IT": "Marchio di Dargrul", "name_pt_PT": "Marca de Dargrul", "on_use": false, "id_encounter": 1687, "id_journal_instance": 767, "id_map": 1458, "instance_type": 1}, {"id": 137362, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Parjesh's Medallion", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66865, "buy_price": 334328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9839000105857849, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Parjesh's Medallion", "name_ko_KR": "파르제쉬의 메달", "name_fr_FR": "Médaillon de Parjesh", "name_de_DE": "Parjeshs Medaillon", "name_zh_CN": "帕杰什的勋章", "name_es_ES": "Medallón de Parjesh", "name_ru_RU": "Медальон Паржеша", "name_it_IT": "Medaglione di Parjesh", "name_pt_PT": "Medalhão de Parjesh", "on_use": false, "id_encounter": 1480, "id_journal_instance": 716, "id_map": 1456, "instance_type": 1}, {"id": 137367, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormsinger Fulmination Charge", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1391, "buy_price": 6956, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Stormsinger Fulmination Charge", "name_ko_KR": "폭풍노래꾼 부르짖음의 충전체", "name_fr_FR": "Charge de fulmination chante-orage", "name_de_DE": "Gespeicherte Entladung des Sturmsängers", "name_zh_CN": "风暴歌者的爆鸣冲击", "name_es_ES": "Carga de fulminación de cantatormentas", "name_ru_RU": "Заряд молнии певца бури", "name_it_IT": "Carica Fulminante del Cantatuoni", "name_pt_PT": "Carga Fulminante do Cantempesta", "on_use": false, "id_encounter": 1490, "id_journal_instance": 716, "id_map": 1456, "instance_type": 1}, {"id": 137369, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Giant Ornamental Pearl", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68612, "buy_price": 343061, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.009600043296814, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Giant Ornamental Pearl", "name_ko_KR": "거대한 장식용 진주", "name_fr_FR": "Perle ornementale géante", "name_de_DE": "Riesige Schmuckperle", "name_zh_CN": "巨型观赏珍珠", "name_es_ES": "Perla decorativa gigante", "name_ru_RU": "Огромная украшенная резьбой жемчужина", "name_it_IT": "Perla Gigante Ornamentale", "name_pt_PT": "Pérola Ornamental Gigante", "on_use": true, "id_encounter": 1491, "id_journal_instance": 716, "id_map": 1456, "instance_type": 1}, {"id": 137373, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tempered Egg of Serpentrix", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69611, "buy_price": 348056, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Tempered Egg of Serpentrix", "name_ko_KR": "서펜트릭스의 달궈진 알", "name_fr_FR": "Œuf de Serpentrix tempéré", "name_de_DE": "Gehärtetes Ei von Serpentrix", "name_zh_CN": "瑟芬崔斯克的淬炼之蛋", "name_es_ES": "Huevo de Serpentrix templado", "name_ru_RU": "Закаленное яйцо Змеикса", "name_it_IT": "Uovo di Serpentrix Temprato", "name_pt_PT": "Ovo Temperado de Serpentrix", "on_use": false, "id_encounter": 1479, "id_journal_instance": 716, "id_map": 1456, "instance_type": 1}, {"id": 137378, "race_mask": 18446744073709551615, "desc": "Compressing the raging storm into a tiny flask had been accomplished by others, but keeping it cold was Stormcaller Inayad's greatest contribution to the field.", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Hurricane", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65853, "buy_price": 329265, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968999981880188, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Bottled Hurricane", "name_ko_KR": "병 속의 태풍", "name_fr_FR": "Ouragan en bouteille", "name_de_DE": "Hurrikan in der Flasche", "name_zh_CN": "飓风之瓶", "name_es_ES": "Huracán embotellado", "name_ru_RU": "Ураган в бутылке", "name_it_IT": "Uragano in Bottiglia", "name_pt_PT": "Furacão Engarrafado", "on_use": true, "id_encounter": 1492, "id_journal_instance": 716, "id_map": 1456, "instance_type": 1}, {"id": 137398, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Portable Manacracker", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1345, "buy_price": 6725, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Portable Manacracker", "name_ko_KR": "휴대용 마나부수개", "name_fr_FR": "Pétard de mana portable", "name_de_DE": "Tragbarer Manabrecher", "name_zh_CN": "便携式魔力裂化器", "name_es_ES": "Rompemaná portátil", "name_ru_RU": "Портативный манокол", "name_it_IT": "Spezzamana Portatile", "name_pt_PT": "Quebra-mana Portátil", "on_use": false, "id_encounter": 1497, "id_journal_instance": 726, "id_map": 1516, "instance_type": 1}, {"id": 137400, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coagulated Nightwell Residue", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66349, "buy_price": 331746, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9763000011444092, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Coagulated Nightwell Residue", "name_ko_KR": "응고된 밤샘 잔류물", "name_fr_FR": "Résidu du Puits de la nuit coagulé", "name_de_DE": "Geronnene Nachtbrunnenrückstände", "name_zh_CN": "凝固的暗夜井残渣", "name_es_ES": "Residuo de la Fuente de la Noche coagulado", "name_ru_RU": "Загустевшая мана из Ночного Колодца", "name_it_IT": "Residuo del Pozzo Oscuro Coagulato", "name_pt_PT": "Resíduo da Nascente da Noite Coagulado", "on_use": true, "id_encounter": 1498, "id_journal_instance": 726, "id_map": 1516, "instance_type": 1}, {"id": 137406, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terrorbound Nexus", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69645, "buy_price": 348226, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Terrorbound Nexus", "name_ko_KR": "공포결속 연합체", "name_fr_FR": "Nexus ancré dans la terreur", "name_de_DE": "Schreckensgebundener Nexus", "name_zh_CN": "缚恐魔枢", "name_es_ES": "Nexo de terror", "name_ru_RU": "Скованное страхом средоточие", "name_it_IT": "Nexus del Terrore", "name_pt_PT": "Nexus Terrorizado", "on_use": false, "id_encounter": 1499, "id_journal_instance": 726, "id_map": 1516, "instance_type": 1}, {"id": 137419, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chrono Shard", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66084, "buy_price": 330421, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1294, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Chrono Shard", "name_ko_KR": "시간의 파편", "name_fr_FR": "Éclat de temps", "name_de_DE": "Chronosplitter", "name_zh_CN": "时光碎片", "name_es_ES": "Cronofragmento", "name_ru_RU": "Осколок времени", "name_it_IT": "Cronoframmento", "name_pt_PT": "Estilhaço de Tempo", "on_use": false, "id_encounter": 1501, "id_journal_instance": 726, "id_map": 1516, "instance_type": 1}, {"id": 137430, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Impenetrable Nerubian Husk", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70637, "buy_price": 353187, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0393999814987183, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Impenetrable Nerubian Husk", "name_ko_KR": "뚫을 수 없는 네루비안 껍질", "name_fr_FR": "Carcasse de nérubien impénétrable", "name_de_DE": "Undurchdringlicher nerubischer Panzer", "name_zh_CN": "坚固的蛛魔甲壳", "name_es_ES": "Caparazón nerubiano impenetrable", "name_ru_RU": "Непробиваемый панцирь неруба", "name_it_IT": "Guscio di Nerubiano Impenetrabile", "name_pt_PT": "Carcaça Nerubiana Impenetrável", "on_use": false, "id_encounter": 1696, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137433, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obelisk of the Void", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1319, "buy_price": 6596, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502999782562256, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Obelisk of the Void", "name_ko_KR": "공허의 방첨탑", "name_fr_FR": "Obélisque du Vide", "name_de_DE": "Obelisk der Leere", "name_zh_CN": "虚空方尖碑", "name_es_ES": "Obelisco del Vacío", "name_ru_RU": "Обелиск Бездны", "name_it_IT": "Obelisco del Vuoto", "name_pt_PT": "Obelisco do Caos", "on_use": true, "id_encounter": 1686, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137439, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Oozeling in a Jar", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67878, "buy_price": 339391, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987999796867371, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Tiny Oozeling in a Jar", "name_ko_KR": "단지 안에 든 작은 수액덩어리", "name_fr_FR": "Petit suinteux en pot", "name_de_DE": "Winziger Schlammling im Krug", "name_zh_CN": "罐装迷你软泥怪", "name_es_ES": "Moquito diminuto en un tarro", "name_ru_RU": "Миниатюрный слизнюченыш в колбе", "name_it_IT": "Piccole Melmette in Scatola", "name_pt_PT": "Gosmícula numa Jarra", "on_use": true, "id_encounter": 1693, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137440, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shivermaw's Jawbone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68129, "buy_price": 340649, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.002500057220459, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shivermaw's Jawbone", "name_ko_KR": "한기아귀 턱뼈", "name_fr_FR": "Mâchoire de Froidegueule", "name_de_DE": "Zitterschlunds Kieferknochen", "name_zh_CN": "颤栗之喉的颚骨", "name_es_ES": "Mandíbula de Estremefauce", "name_ru_RU": "Челюсть Ледопасти", "name_it_IT": "Mandibola di Tremafauci", "name_pt_PT": "Mandíbula de Gorjafria", "on_use": true, "id_encounter": 1694, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137446, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elementium Bomb Squirrel Generator", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1422, "buy_price": 7111, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0245000123977661, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Elementium Bomb Squirrel Generator", "name_ko_KR": "엘레멘티움 폭탄 다람쥐 생성기", "name_fr_FR": "Générateur d'écureuil-bombe en élémentium", "name_de_DE": "Generator für Elementiumbombeneichhörnchen", "name_zh_CN": "源质炸弹松鼠发生器", "name_es_ES": "Generador de ardillas bomba de elementium", "name_ru_RU": "Генератор элементиевых бомбелок", "name_it_IT": "Generatore di Bombe Scoiattolo d'Elementio", "name_pt_PT": "Gerador de Esquilos-bombas de Elemêntio", "on_use": false, "id_encounter": 1688, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thrumming Gossamer", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 71126, "buy_price": 355634, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0465999841690063, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Thrumming Gossamer", "name_ko_KR": "짜고 남은 거미줄", "name_fr_FR": "Tulle grondante", "name_de_DE": "Klimperndes Gespinst", "name_zh_CN": "流苏蛛丝", "name_es_ES": "Delicadeza vibrante", "name_ru_RU": "Распушенная паутинка", "name_it_IT": "Stoffa Finissima Vibrante", "name_pt_PT": "Escumilha Franjada", "on_use": false, "id_encounter": 1697, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137459, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chaos Talisman", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67871, "buy_price": 339357, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987000226974487, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Chaos Talisman", "name_ko_KR": "혼돈의 부적", "name_fr_FR": "Talisman du chaos", "name_de_DE": "Chaostalisman", "name_zh_CN": "混沌护符", "name_es_ES": "Talismán del caos", "name_ru_RU": "Талисман Хаоса", "name_it_IT": "Talismano del Caos", "name_pt_PT": "Talismã do Caos", "on_use": false, "id_encounter": 1711, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jewel of Insatiable Desire", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68619, "buy_price": 343095, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0096999406814575, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Jewel of Insatiable Desire", "name_ko_KR": "만족을 모르는 욕망의 보석", "name_fr_FR": "Joyau de désir insatiable", "name_de_DE": "Juwel der unersättlichen Begierde", "name_zh_CN": "无尽欲望珠宝", "name_es_ES": "Joya de deseo insaciable", "name_ru_RU": "Самоцвет ненасытного желания", "name_it_IT": "Gioiello dell'Insaziabile Desiderio", "name_pt_PT": "Joia do Desejo Insaciável", "on_use": true, "id_encounter": 1702, "id_journal_instance": 777, "id_map": 1544, "instance_type": 1}, {"id": 137484, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flask of the Solemn Night", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 5, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69108, "buy_price": 345542, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0168999433517456, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Flask of the Solemn Night", "name_ko_KR": "엄숙한 밤의 영약", "name_fr_FR": "Flacon de la nuit solennelle", "name_de_DE": "Fläschchen der ehrwürdigen Nacht", "name_zh_CN": "庄严静夜合剂", "name_es_ES": "Frasco de la noche solemne", "name_ru_RU": "Настой священной ночи", "name_it_IT": "Tonico della Notte Solenne", "name_pt_PT": "Frasco da Noite Solene", "on_use": false, "id_encounter": 1718, "id_journal_instance": 800, "id_map": 1571, "instance_type": 1}, {"id": 137485, "race_mask": 18446744073709551615, "desc": "This document is concise and exact. Brevity is the soul of writ.", "pad2": "", "pad1": "", "pad0": "", "name": "Infernal Writ", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1416, "buy_price": 7084, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0205999612808228, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Infernal Writ", "name_ko_KR": "지옥의 계약서", "name_fr_FR": "Écrit infernal", "name_de_DE": "Teuflischer Erlass", "name_zh_CN": "地狱火文书", "name_es_ES": "Escrito infernal", "name_ru_RU": "Инфернальное писание", "name_it_IT": "Encomio Infernale", "name_pt_PT": "Decreto Infernal", "on_use": false, "id_encounter": 1719, "id_journal_instance": 800, "id_map": 1571, "instance_type": 1}, {"id": 137486, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windscar Whetstone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64609, "buy_price": 323047, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506999850273132, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Windscar Whetstone", "name_ko_KR": "바람상처 숫돌", "name_fr_FR": "Pierre à aiguiser brèche-vent", "name_de_DE": "Windnarbenschleifstein", "name_zh_CN": "风痕磨石", "name_es_ES": "Piedra de afilar de viento cortante", "name_ru_RU": "Точильный камень секущих ветров", "name_it_IT": "Cote di Scaglie di Vento", "name_pt_PT": "Pedra-ume Cortavento", "on_use": true, "id_encounter": 1720, "id_journal_instance": 800, "id_map": 1571, "instance_type": 1}, {"id": 137537, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tirathon's Betrayal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 3, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69135, "buy_price": 345678, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017300009727478, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Tirathon's Betrayal", "name_ko_KR": "티라손의 배신", "name_fr_FR": "Trahison de Tirathon", "name_de_DE": "Tirathons Verrat", "name_zh_CN": "提拉宋的背叛", "name_es_ES": "Traición de Tirathon", "name_ru_RU": "Предательство Тиратона", "name_it_IT": "Tradimento di Tirathon", "name_pt_PT": "Traição de Tirathon", "on_use": true, "id_encounter": 1467, "id_journal_instance": 707, "id_map": 1493, "instance_type": 1}, {"id": 137538, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Orb of Torment", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69387, "buy_price": 346935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0210000276565552, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Orb of Torment", "name_ko_KR": "고문의 보주", "name_fr_FR": "Orbe de tourment", "name_de_DE": "Kugel der Qual", "name_zh_CN": "折磨宝珠", "name_es_ES": "Orbe de tormento", "name_ru_RU": "Сфера истязания", "name_it_IT": "Globo del Tormento", "name_pt_PT": "Orbe do Tormento", "on_use": true, "id_encounter": 1695, "id_journal_instance": 707, "id_map": 1493, "instance_type": 1}, {"id": 137539, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faulty Countermeasure", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69638, "buy_price": 348192, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247000455856323, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Faulty Countermeasure", "name_ko_KR": "망가진 방어 장치", "name_fr_FR": "Contre-mesure défaillante", "name_de_DE": "Fehlerhafte Gegenmaßnahme", "name_zh_CN": "残次的反制机关", "name_es_ES": "Contramedida defectuosa", "name_ru_RU": "Неисправная система безопасности", "name_it_IT": "Contromisura Fallace", "name_pt_PT": "Contramedida Defeituosa", "on_use": true, "id_encounter": 1468, "id_journal_instance": 707, "id_map": 1493, "instance_type": 1}, {"id": 137540, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Concave Reflecting Lens", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69883, "buy_price": 349415, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Concave Reflecting Lens", "name_ko_KR": "오목 반사 렌즈", "name_fr_FR": "Lentille réfléchissante concave", "name_de_DE": "Konkave Reflexionslinse", "name_zh_CN": "凹面反射透镜", "name_es_ES": "Lente reflectora cóncava", "name_ru_RU": "Выпуклые отражающие линзы", "name_it_IT": "Lenti Riflettenti Concave", "name_pt_PT": "Lente Reflexiva Côncava", "on_use": false, "id_encounter": 1469, "id_journal_instance": 707, "id_map": 1493, "instance_type": 1}, {"id": 137541, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moonlit Prism", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1432, "buy_price": 7163, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031999945640564, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Moonlit Prism", "name_ko_KR": "달빛 프리즘", "name_fr_FR": "Prisme de clair de lune", "name_de_DE": "Monderleuchtetes Prisma", "name_zh_CN": "月光棱镜", "name_es_ES": "Prisma luniscente", "name_ru_RU": "Призма лунного света", "name_it_IT": "Prisma Monolitico", "name_pt_PT": "Prisma do Brilho Lunar", "on_use": true, "id_encounter": 1470, "id_journal_instance": 707, "id_map": 1493, "instance_type": 1}, {"id": 138084, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Wrought Insignia of Conquest", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87428, "buy_price": 437141, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Iron Wrought Insignia of Conquest", "name_ko_KR": "철세공 정복 계급장", "name_fr_FR": "Insigne de conquête en fer forgé", "name_de_DE": "Schmiedeeisernes Eroberungsinsigne", "name_zh_CN": "铁铸征服徽记", "name_es_ES": "Insignia de conquista de hierro forjado", "name_ru_RU": "Железный кованый знак завоевания", "name_it_IT": "Fregio della Conquista in Ferro Battuto", "name_pt_PT": "Insígnia da Dominação Forjada em Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138090, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Wrought Insignia of Dominance", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89305, "buy_price": 446525, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0468000173568726, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Iron Wrought Insignia of Dominance", "name_ko_KR": "철세공 지배 계급장", "name_fr_FR": "Insigne de domination en fer forgé", "name_de_DE": "Schmiedeeisernes Vorherrschaftsinsigne", "name_zh_CN": "铁铸统御徽记", "name_es_ES": "Insignia de dominancia de hierro forjado", "name_ru_RU": "Железный кованый знак господства", "name_it_IT": "Fregio della Dominazione in Ferro Battuto", "name_pt_PT": "Insígnia da Dominância Forjada em Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138093, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Wrought Insignia of Victory", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 81703, "buy_price": 408518, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Iron Wrought Insignia of Victory", "name_ko_KR": "철세공 승리 계급장", "name_fr_FR": "Insigne de victoire en fer forgé", "name_de_DE": "Schmiedeeisernes Siegesinsigne", "name_zh_CN": "铁铸胜利徽记", "name_es_ES": "Insignia de victoria de hierro forjado", "name_ru_RU": "Железный кованый знак победы", "name_it_IT": "Fregio della Vittoria in Ferro Battuto", "name_pt_PT": "Insígnia da Vitória Forjada em Ferro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mo'arg Clan Token", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 359, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292548, "buy_price": 1462742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013200044631958, "flags_1": 593920, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Mo'arg Clan Token", "name_ko_KR": "모아그 부족 징표", "name_fr_FR": "Marque du clan mo'arg", "name_de_DE": "Klanabzeichen der Mo'arg", "name_zh_CN": "莫尔葛氏族徽记", "name_es_ES": "Marca del clan Mo'arg", "name_ru_RU": "Знак клана мо'аргов", "name_it_IT": "Emblema del Clan dei Mo'arg", "name_pt_PT": "Símbolo do Clã Mo'arg", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138170, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felstalker Spine", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 359, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280854, "buy_price": 1404272, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9726999998092651, "flags_1": 593920, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Felstalker Spine", "name_ko_KR": "지옥사냥개 척추", "name_fr_FR": "Echine de traqueur gangrené", "name_de_DE": "Teufelspirscherrückgrat", "name_zh_CN": "魔犬脊骨", "name_es_ES": "Espinazo de acechador vil", "name_ru_RU": "Хребет ловца Скверны", "name_it_IT": "Spina Dorsale di Vilpredatore", "name_pt_PT": "Coluna de Espreitador Vil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138171, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inquisitor's Talisman", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 359, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281922, "buy_price": 1409614, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764000177383423, "flags_1": 593920, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Inquisitor's Talisman", "name_ko_KR": "심문관의 부적", "name_fr_FR": "Talisman d'inquisiteur", "name_de_DE": "Talisman des Inquisitors", "name_zh_CN": "审判官的护符", "name_es_ES": "Dije del inquisidor", "name_ru_RU": "Талисман инквизитора", "name_it_IT": "Talismano dell'Inquisitore", "name_pt_PT": "Talismã do Inquisidor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Nightmare Fog", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293906, "buy_price": 1469531, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0429999828338623, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Nightmare Fog", "name_ko_KR": "악몽 안개 약병", "name_fr_FR": "Fiole de brouillard cauchemardesque", "name_de_DE": "Phiole mit Alptraumnebel", "name_zh_CN": "一瓶梦魇之雾", "name_es_ES": "Vial de niebla de la Pesadilla", "name_ru_RU": "Фиал кошмарного тумана", "name_it_IT": "Fiala di Nebbia dell'Incubo", "name_pt_PT": "Frasco de Nevoeiro do Pesadelo", "on_use": false, "id_encounter": 1704, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 138224, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Horrorslime", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1759, "buy_price": 8795, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502999782562256, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Unstable Horrorslime", "name_ko_KR": "불안정한 공포수액", "name_fr_FR": "Gelée horrifique instable", "name_de_DE": "Instabiler Schreckensschleim", "name_zh_CN": "不稳定的恐怖软泥", "name_es_ES": "Baba horrorosa inestable", "name_ru_RU": "Взрывоопасная жуткая слизь", "name_it_IT": "Orrore Melmoso Instabile", "name_pt_PT": "Gosmorrenda Instável", "on_use": false, "id_encounter": 1704, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 138225, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Phantasmal Echo", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 268798, "buy_price": 1343994, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9538999795913696, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Phantasmal Echo", "name_ko_KR": "실체 없는 메아리", "name_fr_FR": "Echo fantasmatique", "name_de_DE": "Phantomhaftes Echo", "name_zh_CN": "幻影回响", "name_es_ES": "Eco fantasmal", "name_ru_RU": "Призрачное эхо", "name_it_IT": "Eco Fantasma", "name_pt_PT": "Eco Fantasmagórico", "on_use": false, "id_encounter": 1704, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 138773, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Favor of House Wrynn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 512574, "buy_price": 2562871, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991599977016449, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 138775, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Favor of House Wrynn", "name_ko_KR": "린 가문의 문장", "name_fr_FR": "Faveur de la maison Wrynn", "name_de_DE": "Gunst des Hauses Wrynn", "name_zh_CN": "乌瑞恩家族的青睐", "name_es_ES": "Favor de la casa Wrynn", "name_ru_RU": "Милость дома Риннов", "name_it_IT": "Dono di Casa Wrynn", "name_pt_PT": "Distintivo da Casa Wrynn", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138774, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Accolade of House Wrynn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 337191, "buy_price": 1685957, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9952999949455261, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 138776, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Accolade of House Wrynn", "name_ko_KR": "린 가문의 상징", "name_fr_FR": "Décoration de la maison Wrynn", "name_de_DE": "Auszeichnung des Hauses Wrynn", "name_zh_CN": "乌瑞恩家族奖章", "name_es_ES": "Galardón de la casa Wrynn", "name_ru_RU": "Акколада дома Риннов", "name_it_IT": "Decorazione di Casa Wrynn", "name_pt_PT": "Galardão da Casa Wrynn", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138775, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Token of the Banshee Queen", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 516347, "buy_price": 2581738, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 138773, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Token of the Banshee Queen", "name_ko_KR": "밴시 여왕의 징표", "name_fr_FR": "Gage de la reine banshee", "name_de_DE": "Abzeichen der Bansheekönigin", "name_zh_CN": "女妖之王的徽记", "name_es_ES": "Marca de la Reina Alma en Pena", "name_ru_RU": "Знак Королевы-банши", "name_it_IT": "Emblema della Regina Banshee", "name_pt_PT": "Símbolo da Rainha Banshee", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138776, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Accolade of the Banshee Queen", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 6667, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 518260, "buy_price": 2591301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 138774, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Accolade of the Banshee Queen", "name_ko_KR": "밴시 여왕의 상징", "name_fr_FR": "Décoration de la reine banshee", "name_de_DE": "Auszeichnung der Bansheekönigin", "name_zh_CN": "女妖之王奖章", "name_es_ES": "Galardón de la Reina Alma en Pena", "name_ru_RU": "Акколада Королевы-банши", "name_it_IT": "Decorazione della Regina Banshee", "name_pt_PT": "Galardão da Rainha Banshee", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138819, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defiance of the Stalwart Survivors", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 436177, "buy_price": 2180887, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0133999586105347, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Defiance of the Stalwart Survivors", "name_ko_KR": "강인한 생존자들의 저항", "name_fr_FR": "Défiance des vaillants survivants", "name_de_DE": "Widerstand des tapferen Überlebenden", "name_zh_CN": "坚忍幸存者的反抗", "name_es_ES": "Desafío de los supervivientes adeptos", "name_ru_RU": "Отвага стойких выживших", "name_it_IT": "Sfida dei Sopravvissuti Robusti", "name_pt_PT": "Desobediência dos Sobreviventes Impávidos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138823, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Starlance's Protective Ward", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70441, "buy_price": 352208, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545000195503235, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Starlance's Protective Ward", "name_ko_KR": "스타랜스의 호신부", "name_fr_FR": "Gardien protecteur de Lancétoile", "name_de_DE": "Schutzzauber der Sternenlanze", "name_zh_CN": "星矛的防护结界", "name_es_ES": "Resguardo protector de Picaestrella", "name_ru_RU": "Идол защиты Звездного Копья", "name_it_IT": "Guardia Protettiva dei Lanciastellare", "name_pt_PT": "Manancial de Proteção dos Estrelança", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 138837, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ghostly Defenses", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 76190, "buy_price": 380953, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ghostly Defenses", "name_ko_KR": "유령 같은 방어", "name_fr_FR": "Défenses fantomatiques", "name_de_DE": "Geisterhafte Verteidigung", "name_zh_CN": "幽灵防护", "name_es_ES": "Defensas fantasmales", "name_ru_RU": "Призрачная защита", "name_it_IT": "Difese Spettrali", "name_pt_PT": "Defesas Fantasmagóricas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139064, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resilient Heart of the Forest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 310089, "buy_price": 1550445, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0361000299453735, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Resilient Heart of the Forest", "name_ko_KR": "굴하지 않는 숲의 심장", "name_fr_FR": "Cœur de la forêt résistant", "name_de_DE": "Widerstandsfähiges Herz des Waldes", "name_zh_CN": "坚韧的森林之心", "name_es_ES": "Corazón del bosque resistente", "name_ru_RU": "Стойкое лесное сердце", "name_it_IT": "Cuore Resiliente della Foresta", "name_pt_PT": "Coração da Floresta Resiliente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139075, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forest Creeper's Guile", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292221, "buy_price": 1461108, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764000177383423, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Forest Creeper's Guile", "name_ko_KR": "숲거미의 간계", "name_fr_FR": "Fourberie du rampant forestier", "name_de_DE": "Arglist des Waldkrabblers", "name_zh_CN": "森林爬行者的狡诈", "name_es_ES": "Astucia de trepador del bosque", "name_ru_RU": "Хитрость лесного ползуна", "name_it_IT": "Ingegno della Fanghiglia delle Foreste", "name_pt_PT": "Astúcia do Rastejante da Floresta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139076, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloom of New Growth", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293299, "buy_price": 1466495, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9800000190734863, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Bloom of New Growth", "name_ko_KR": "새로운 성장의 꽃", "name_fr_FR": "Floraison de jeune pousse", "name_de_DE": "Blüte des neuen Wachstums", "name_zh_CN": "新生之蕾", "name_es_ES": "Flor de nuevo crecimiento", "name_ru_RU": "Цветение нового роста", "name_it_IT": "Bocciolo della Prossima Fioritura", "name_pt_PT": "Florescer de um Novo Crescimento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139102, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "An'she's Invigoring Charm", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 307814, "buy_price": 1539072, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.028499960899353, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "An'she's Invigoring Charm", "name_ko_KR": "안쉬의 활기 부적", "name_fr_FR": "Charme revigorant d'An'she", "name_de_DE": "An'shes belebender Talisman", "name_zh_CN": "安瑟的振作护符", "name_es_ES": "Talismán vigorizante de An'she", "name_ru_RU": "Живительный талисман Ан'ше", "name_it_IT": "Talismano Rinvigorente di An'she", "name_pt_PT": "Patuá Revigorante de An'she", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "An'she's Token of Guile", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 297878, "buy_price": 1489391, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9952999949455261, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "An'she's Token of Guile", "name_ko_KR": "안쉬의 간계 징표", "name_fr_FR": "Gage de fourberie d'An'she", "name_de_DE": "An'shes Zeichen der Arglist", "name_zh_CN": "安瑟的诡诈徽记", "name_es_ES": "Marca de astucia de An'she", "name_ru_RU": "Знак коварства Ан'ше", "name_it_IT": "Emblema dell'Astuzia di An'she", "name_pt_PT": "Símbolo de Astúcia de An'she", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139114, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "An'she's Infusion of Light", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 298955, "buy_price": 1494778, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 3500, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "An'she's Infusion of Light", "name_ko_KR": "안쉬의 빛 주입", "name_fr_FR": "Imprégnation de lumière d'An'she", "name_de_DE": "An'shes Lichtinfusion", "name_zh_CN": "安瑟的光之鼓舞", "name_es_ES": "Infusión de Luz de An'she", "name_ru_RU": "Прилив Света Ан'ше", "name_it_IT": "Infusione di Luce di An'she", "name_pt_PT": "Infusão de Luz de An'she", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 139320, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ravaged Seed Pod", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281535, "buy_price": 1407679, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9991000294685364, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ravaged Seed Pod", "name_ko_KR": "훼손된 씨앗 꼬투리", "name_fr_FR": "Cosse ravagée", "name_de_DE": "Verheerte Samenkapsel", "name_zh_CN": "残缺的种荚", "name_es_ES": "Vaina de semilla devastada", "name_ru_RU": "Обломки скорлупы", "name_it_IT": "Contenitore di Semi Devastato", "name_pt_PT": "Vagem Devastada", "on_use": true, "id_encounter": 1703, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139321, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Swarming Plaguehive", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1855, "buy_price": 9279, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0026999711990356, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Swarming Plaguehive", "name_ko_KR": "들끓는 역병 군락", "name_fr_FR": "Ruchepeste grouillante", "name_de_DE": "Schwärmender Pestbau", "name_zh_CN": "瘟疫虫巢", "name_es_ES": "Pestecolmena enjambradora", "name_ru_RU": "Чумной улей", "name_it_IT": "Alveare della Piaga Sciamante", "name_pt_PT": "Colmeia Pestilenta Fervilhante", "on_use": false, "id_encounter": 1703, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139322, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cocoon of Enforced Solitude", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283592, "buy_price": 1417964, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0063999891281128, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cocoon of Enforced Solitude", "name_ko_KR": "강제된 고독의 고치", "name_fr_FR": "Cocon de solitude imposée", "name_de_DE": "Kokon der erzwungenen Einsamkeit", "name_zh_CN": "隔离之茧", "name_es_ES": "Crisálida de soledad forzada", "name_ru_RU": "Кокон вынужденного одиночества", "name_it_IT": "Bozzolo della Solitudine Forzata", "name_pt_PT": "Casulo de Solidão Forçada", "on_use": true, "id_encounter": 1744, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139323, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Twisting Wind", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1869, "buy_price": 9348, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.01010000705719, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Twisting Wind", "name_ko_KR": "뒤틀린 바람", "name_fr_FR": "Vent sinueux", "name_de_DE": "Wirbelnder Wind", "name_zh_CN": "扭曲之风", "name_es_ES": "Viento agitado", "name_ru_RU": "Ураганный ветер", "name_it_IT": "Vento Vorticoso", "name_pt_PT": "Vento de Distorção", "on_use": false, "id_encounter": 1744, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139324, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goblet of Nightmarish Ichor", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285678, "buy_price": 1428390, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013800024986267, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Goblet of Nightmarish Ichor", "name_ko_KR": "악몽 수액 술잔", "name_fr_FR": "Coupe d'ichor cauchemardesque", "name_de_DE": "Becher mit Alptraumsekret", "name_zh_CN": "梦魇脓液杯", "name_es_ES": "Cáliz de icor de tormento", "name_ru_RU": "Чаша кошмарного гноя", "name_it_IT": "Calice di Icore dell'Incubo", "name_pt_PT": "Cálice de Linfa Pesadelar", "on_use": false, "id_encounter": 1738, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139325, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spontaneous Appendages", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286692, "buy_price": 1433462, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0174000263214111, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Spontaneous Appendages", "name_ko_KR": "자생 부속물", "name_fr_FR": "Appendices spontanés", "name_de_DE": "Spontane Gliedmaßen", "name_zh_CN": "天然附肢", "name_es_ES": "Apéndices espontáneos", "name_ru_RU": "Дикие щупальца", "name_it_IT": "Appendici Spontanee", "name_pt_PT": "Membros Espontâneos", "on_use": false, "id_encounter": 1738, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139326, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wriggling Sinew", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1890, "buy_price": 9450, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211000442504883, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Wriggling Sinew", "name_ko_KR": "꿈틀대는 힘줄", "name_fr_FR": "Tendon frétillant", "name_de_DE": "Zuckende Sehne", "name_zh_CN": "蠕动肌腱", "name_es_ES": "Tendón sinuoso", "name_ru_RU": "Извивающееся сухожилие", "name_it_IT": "Tendine Scalpitante", "name_pt_PT": "Tendão Contorcido", "on_use": true, "id_encounter": 1738, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139327, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unbridled Fury", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288777, "buy_price": 1443888, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Unbridled Fury", "name_ko_KR": "굴레를 벗어난 격노", "name_fr_FR": "Fureur débridée", "name_de_DE": "Ungezügelte Wut", "name_zh_CN": "不羁之怒", "name_es_ES": "Furia desbocada", "name_ru_RU": "Неукротимая ярость", "name_it_IT": "Furia Sfrenata", "name_pt_PT": "Fúria Descontrolada", "on_use": true, "id_encounter": 1667, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139328, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ursoc's Rending Paw", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289792, "buy_price": 1448961, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.02839994430542, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ursoc's Rending Paw", "name_ko_KR": "우르속의 분쇄 앞발", "name_fr_FR": "Patte étripeuse d'Ursoc", "name_de_DE": "Ursocs reißende Pranke", "name_zh_CN": "乌索克的撕裂之爪", "name_es_ES": "Zarpa desgarradora de Ursoc", "name_ru_RU": "Раздирающая лапа Урсока", "name_it_IT": "Zampata Lacerante di Ursoc", "name_pt_PT": "Pata Dilacerante de Ursoc", "on_use": false, "id_encounter": 1667, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139329, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Instinct", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290834, "buy_price": 1454174, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.032099962234497, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Bloodthirsty Instinct", "name_ko_KR": "피에 굶주린 본능", "name_fr_FR": "Instinct assoiffé de sang", "name_de_DE": "Blutrünstiger Instinkt", "name_zh_CN": "嗜血本能", "name_es_ES": "Instinto sanguinario", "name_ru_RU": "Инстинкт жажды крови", "name_it_IT": "Istinto Assetato di Sangue", "name_pt_PT": "Instinto de Sede de Sangue", "on_use": false, "id_encounter": 1667, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139330, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heightened Senses", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 291877, "buy_price": 1459387, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0357999801635742, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Heightened Senses", "name_ko_KR": "향상된 감각", "name_fr_FR": "Sens amplifiés", "name_de_DE": "Geschärfte Sinne", "name_zh_CN": "强化感知", "name_es_ES": "Sentidos agudizados", "name_ru_RU": "Обостренные чувства", "name_it_IT": "Sensi Affinati", "name_pt_PT": "Sentidos Aguçados", "on_use": false, "id_encounter": 1667, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139333, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of Cenarius", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294977, "buy_price": 1474885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0468000173568726, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Horn of Cenarius", "name_ko_KR": "세나리우스의 뿔피리", "name_fr_FR": "Cor de Cénarius", "name_de_DE": "Horn des Cenarius", "name_zh_CN": "塞纳留斯之角", "name_es_ES": "Cuerno de Cenarius", "name_ru_RU": "Рог Кенария", "name_it_IT": "Corno di Cenarius", "name_pt_PT": "Trompa de Cenarius", "on_use": true, "id_encounter": 1750, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139334, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nature's Call", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2222, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": 36, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 267812, "buy_price": 1339063, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9503999948501587, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Nature's Call", "name_ko_KR": "자연의 부름", "name_fr_FR": "Appel de la nature", "name_de_DE": "Der Ruf der Natur", "name_zh_CN": "自然的召唤", "name_es_ES": "La llamada de la naturaleza", "name_ru_RU": "Зов природы", "name_it_IT": "Chiamata della Natura", "name_pt_PT": "Chamado da Natureza", "on_use": false, "id_encounter": 1750, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139335, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grotesque Statuette", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276322, "buy_price": 1381613, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9805999994277954, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Grotesque Statuette", "name_ko_KR": "괴기한 조각상", "name_fr_FR": "Statuette grotesque", "name_de_DE": "Groteske Statue", "name_zh_CN": "诡异雕像", "name_es_ES": "Estatuilla grotesca", "name_ru_RU": "Гротескная статуэтка", "name_it_IT": "Statuetta Grottesca", "name_pt_PT": "Estatueta Grotesca", "on_use": false, "id_encounter": 1726, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139336, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bough of Corruption", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1821, "buy_price": 9108, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Bough of Corruption", "name_ko_KR": "타락의 가지", "name_fr_FR": "Rameau de corruption", "name_de_DE": "Zweig der Verderbnis", "name_zh_CN": "腐蚀树枝", "name_es_ES": "Rama de corrupción", "name_ru_RU": "Ветвь порчи", "name_it_IT": "Albero della Corruzione", "name_pt_PT": "Galho da corrupção", "on_use": false, "id_encounter": 1726, "id_journal_instance": 768, "id_map": 1520, "instance_type": 2}, {"id": 139630, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Etching of Sargeras", "id_expansion": 5, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 4649, "stat_alloc_2": 4649, "stat_alloc_3": 4649, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 406146, "buy_price": 2030730, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0397000312805176, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 45, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Etching of Sargeras", "name_ko_KR": "살게라스의 부조", "name_fr_FR": "Gravure de Sargeras", "name_de_DE": "Gravur von Sargeras", "name_zh_CN": "萨格拉斯蚀刻", "name_es_ES": "Inscripción de Sargeras", "name_ru_RU": "Гравировка Саргераса", "name_it_IT": "Incisione di Sargeras", "name_pt_PT": "Entalhe de Sargeras", "on_use": false, "id_encounter": 1438, "id_journal_instance": 669, "id_map": 1448, "instance_type": 2}, {"id": 140026, "race_mask": 18446744073709551615, "desc": "Pulled from a fallen handler during a 'feeding' incident.", "pad2": "", "pad1": "", "pad0": "", "name": "The Devilsaur's Bite", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 201768, "buy_price": 1008841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9546999931335449, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "The Devilsaur's Bite", "name_ko_KR": "데빌사우루스의 이빨", "name_fr_FR": "La morsure du diablosaure", "name_de_DE": "Der Teufelssaurierbiss", "name_zh_CN": "魔暴龙之牙", "name_es_ES": "Mordedura de demosaurio", "name_ru_RU": "Укус дьявозавра", "name_it_IT": "Morso del Gigantosauro", "name_pt_PT": "A Mordida do Demossauro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140027, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ley Spark", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 168791, "buy_price": 843959, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9584000110626221, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Ley Spark", "name_ko_KR": "지맥 불꽃", "name_fr_FR": "Etincelle tellurique", "name_de_DE": "Leyfunke", "name_zh_CN": "魔网火花", "name_es_ES": "Chispa Ley", "name_ru_RU": "Магическая вспышка", "name_it_IT": "Scintilla di Faglia", "name_pt_PT": "Centelha do Meridiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140030, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Devilsaur Shock-Baton", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1345, "buy_price": 6728, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9693999886512756, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Devilsaur Shock-Baton", "name_ko_KR": "데빌사우루스 전기 충격 봉", "name_fr_FR": "Aiguillon électrique pour diablosaure", "name_de_DE": "Teufelssaurierschockstab", "name_zh_CN": "魔暴龙电击棍", "name_es_ES": "Bastón eléctrico de demosaurio", "name_ru_RU": "Электрошокер дьявозавра", "name_it_IT": "Bacchetta Folgorante del Gigantosauro", "name_pt_PT": "Bastão de Choque de Demossauro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140031, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mana Spark", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1125, "buy_price": 5628, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Mana Spark", "name_ko_KR": "마나 불꽃", "name_fr_FR": "Etincelle de mana", "name_de_DE": "Manafunke", "name_zh_CN": "魔力火花", "name_es_ES": "Chispa de maná", "name_ru_RU": "Искорка маны", "name_it_IT": "Scintilla di Mana", "name_pt_PT": "Centelha de Mana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140034, "race_mask": 18446744073709551615, "desc": "Must go faster!", "pad2": "", "pad1": "", "pad0": "", "name": "Impact Tremor", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207981, "buy_price": 1039908, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9840999841690063, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Impact Tremor", "name_ko_KR": "충돌 진동", "name_fr_FR": "Secousse d'impact", "name_de_DE": "Einschlagsbeben", "name_zh_CN": "冲击之颤", "name_es_ES": "Temblor de impacto", "name_ru_RU": "Ударное сотрясение", "name_it_IT": "Tremore d'Impatto", "name_pt_PT": "Tremor de Impacto", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140035, "race_mask": 18446744073709551615, "desc": "Capable of handling 1.21 mana sparks.", "pad2": "", "pad1": "", "pad0": "", "name": "Fluctuating Arc Capacitor", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 173969, "buy_price": 869848, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Fluctuating Arc Capacitor", "name_ko_KR": "요동치는 아크 축전기", "name_fr_FR": "Condensateur à arc variable", "name_de_DE": "Fluktuierender Bogenkondensator", "name_zh_CN": "不稳定的魔力电容", "name_es_ES": "Condensador de arco oscilante", "name_ru_RU": "Пульсирующий разрядный конденсатор", "name_it_IT": "Condensatore ad Arco Fluttuante", "name_pt_PT": "Arc-capacitor Flutuante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hargal's Favorite Trinket", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203289, "buy_price": 1016449, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Hargal's Favorite Trinket", "name_ko_KR": "하르갈이 가장 아끼는 장신구", "name_fr_FR": "Bijou préféré de Hargal", "name_de_DE": "Hargals Lieblingsschmuckstück", "name_zh_CN": "哈尔加的心爱饰品", "name_es_ES": "Abalorio favorito de Hargal", "name_ru_RU": "Любимая безделушка Харгала", "name_it_IT": "Monile Preferito di Hargal", "name_pt_PT": "Berloque Favorito de Hargal", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140400, "race_mask": 18446744073709551615, "desc": "The petals are all perfectly intact.", "pad2": "", "pad1": "", "pad0": "", "name": "Perfect Dreamgrove Blossom", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218992, "buy_price": 1094963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362000465393066, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 42, "inv_type": 12, "quality": 3, "name_en_US": "Perfect Dreamgrove Blossom", "name_ko_KR": "완벽한 꿈숲 꽃", "name_fr_FR": "Fleur parfaite de la Sylverêve", "name_de_DE": "Perfekte Traumhainblüte", "name_zh_CN": "完美的梦境林地花蕾", "name_es_ES": "Flor de la Arboleda de los Sueños perfecta", "name_ru_RU": "Идеальный побег Рощи Снов", "name_it_IT": "Bocciolo Perfetto del Bosco dei Sogni", "name_pt_PT": "Flor do Bosque Onírico Perfeita", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140533, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Huntmaster's Injector", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91747, "buy_price": 458738, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0360000133514404, "flags_1": 589824, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Huntmaster's Injector", "name_ko_KR": "전문사냥꾼의 주입 장치", "name_fr_FR": "Injecteur de maître chasseur", "name_de_DE": "Injektor des Jagdmeisters", "name_zh_CN": "狩猎大师的注射器", "name_es_ES": "Inyector del Maestro de caza", "name_ru_RU": "Инжектор Охотника", "name_it_IT": "Iniettore del Maestro Cacciatore", "name_pt_PT": "Injetor do Mestre da Caça", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 140789, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Animated Exoskeleton", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281507, "buy_price": 1407538, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9990000128746033, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Animated Exoskeleton", "name_ko_KR": "살아 움직이는 외골격", "name_fr_FR": "Exosquelette animé", "name_de_DE": "Animiertes Exoskelett", "name_zh_CN": "活性骨壳", "name_es_ES": "Exoesqueleto animado", "name_ru_RU": "Оживленный экзоскелет", "name_it_IT": "Esoscheletro Animato", "name_pt_PT": "Exoesqueleto Animado", "on_use": true, "id_encounter": 1706, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140790, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Claw of the Crystalline Scorpid", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282550, "buy_price": 1412751, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0026999711990356, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Claw of the Crystalline Scorpid", "name_ko_KR": "수정 전갈의 집게", "name_fr_FR": "Pince du scorpide cristallin", "name_de_DE": "Klaue des kristallinen Skorpiden", "name_zh_CN": "晶化幼蝎之爪", "name_es_ES": "Pinza del escórpido cristalino", "name_ru_RU": "Коготь кристаллического скорпида", "name_it_IT": "Pungiglione di Scorpide Cristallino", "name_pt_PT": "Garra do Escorpídeo Cristalino", "on_use": false, "id_encounter": 1706, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140791, "race_mask": 18446744073709551615, "desc": "Sand trickles from a cracked glass orb in the base of the hilt.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Dagger Haft", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283592, "buy_price": 1417964, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0063999891281128, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Royal Dagger Haft", "name_ko_KR": "왕실 단검 자루", "name_fr_FR": "Manche de dague royale", "name_de_DE": "Königliches Dolchheft", "name_zh_CN": "皇家匕首刀柄", "name_es_ES": "Empuñadura de daga real", "name_ru_RU": "Рукоять королевского кинжала", "name_it_IT": "Impugnatura di Pugnale Reale", "name_pt_PT": "Empunhadura de Adaga Real", "on_use": false, "id_encounter": 1725, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140792, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Erratic Metronome", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1869, "buy_price": 9348, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.01010000705719, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Erratic Metronome", "name_ko_KR": "고장난 메트로놈", "name_fr_FR": "Métronome erratique", "name_de_DE": "Unstetes Metronom", "name_zh_CN": "变速节拍器", "name_es_ES": "Metrónomo errático", "name_ru_RU": "Расстроенный метроном", "name_it_IT": "Metronomo Irregolare", "name_pt_PT": "Metrônomo Caótico", "on_use": false, "id_encounter": 1725, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140793, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Perfectly Preserved Cake", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285649, "buy_price": 1428249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013700008392334, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Perfectly Preserved Cake", "name_ko_KR": "완벽하게 보존된 케이크", "name_fr_FR": "Gâteau parfaitement conservé", "name_de_DE": "Perfekt erhaltener Kuchen", "name_zh_CN": "保存完好的糕点", "name_es_ES": "Pastel perfectamente preservado", "name_ru_RU": "Идеально сохранившийся торт", "name_it_IT": "Torta Perfettamente Conservata", "name_pt_PT": "Bolo Perfeitamente Preservado", "on_use": true, "id_encounter": 1731, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140794, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Arcanogolem Digit", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286692, "buy_price": 1433462, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0174000263214111, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Arcanogolem Digit", "name_ko_KR": "비전골렘 손가락", "name_fr_FR": "Doigt d'arcanogolem", "name_de_DE": "Finger des Arkanogolems", "name_zh_CN": "魔像之指", "name_es_ES": "Dedo de Arcanogólem", "name_ru_RU": "Палец чародейского голема", "name_it_IT": "Dito di Golem Arcano", "name_pt_PT": "Dedo de Arcanogolem", "on_use": false, "id_encounter": 1731, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140795, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aluriel's Mirror", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287735, "buy_price": 1438675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211000442504883, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Aluriel's Mirror", "name_ko_KR": "알루리엘의 거울", "name_fr_FR": "Miroir d'Aluriel", "name_de_DE": "Aluriels Spiegel", "name_zh_CN": "奥鲁瑞尔的镜子", "name_es_ES": "Espejo de Aluriel", "name_ru_RU": "Зеркало Алуриэль", "name_it_IT": "Specchio di Aluriel", "name_pt_PT": "Espelho de Aluriel", "on_use": false, "id_encounter": 1751, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140796, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Entwined Elemental Foci", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288777, "buy_price": 1443888, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Entwined Elemental Foci", "name_ko_KR": "휘감긴 정령 매개체", "name_fr_FR": "Focalisateurs élémentaires entremêlés", "name_de_DE": "Verschlungene Elementarfokusse", "name_zh_CN": "纠缠元素焦镜", "name_es_ES": "Focos elementales entrelazados", "name_ru_RU": "Переплетенные средоточия стихий", "name_it_IT": "Focus Elementali Intrecciati", "name_pt_PT": "Foco Elemental Entrelaçado", "on_use": false, "id_encounter": 1751, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140797, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fang of Tichondrius", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269052, "buy_price": 1345262, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954800009727478, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fang of Tichondrius", "name_ko_KR": "티콘드리우스의 송곳니", "name_fr_FR": "Croc de Tichondrius", "name_de_DE": "Eckzahn von Tichondrius", "name_zh_CN": "提克迪奥斯之牙", "name_es_ES": "Colmillo de Tichondrius", "name_ru_RU": "Клык Тихондрия", "name_it_IT": "Zanna di Tichondrius", "name_pt_PT": "Presa de Taecondrius", "on_use": true, "id_encounter": 1762, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140798, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of Rot", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1774, "buy_price": 8870, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585000276565552, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Icon of Rot", "name_ko_KR": "부패의 상징", "name_fr_FR": "Icône de pourriture", "name_de_DE": "Ikone des Verrottens", "name_zh_CN": "腐烂圣像", "name_es_ES": "Icono de podredumbre", "name_ru_RU": "Знак гниения", "name_it_IT": "Icona di Putrefazione", "name_pt_PT": "Ícone da Putrefação", "on_use": false, "id_encounter": 1762, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140799, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Might of Krosus", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271137, "buy_price": 1355688, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Might of Krosus", "name_ko_KR": "크로서스의 힘", "name_fr_FR": "Puissance de Krosus", "name_de_DE": "Macht von Krosus", "name_zh_CN": "克洛苏斯之力", "name_es_ES": "Poderío de Krosus", "name_ru_RU": "Мощь Кроса", "name_it_IT": "Vigore di Krosus", "name_pt_PT": "Poder de Krosus", "on_use": true, "id_encounter": 1713, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140800, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pharamere's Forbidden Grimoire", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1787, "buy_price": 8939, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9659000039100647, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Pharamere's Forbidden Grimoire", "name_ko_KR": "파라미어의 금지된 흑마법서", "name_fr_FR": "Grimoire interdit de Pharamere", "name_de_DE": "Pharameres verbotenes Grimoire", "name_zh_CN": "法拉米尔的禁忌魔典", "name_es_ES": "Grimorio prohibido de Pharamere", "name_ru_RU": "Запретный гримуар Фарамеры", "name_it_IT": "Grimorio Proibito di Faramere", "name_pt_PT": "Grimório Proibido de Faraméria", "on_use": true, "id_encounter": 1713, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140801, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fury of the Burning Sky", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1794, "buy_price": 8972, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fury of the Burning Sky", "name_ko_KR": "불타는 하늘의 격노", "name_fr_FR": "Fureur du ciel brûlant", "name_de_DE": "Zorn des brennenden Himmels", "name_zh_CN": "炽燃苍穹之怒", "name_es_ES": "Furia del cielo en llamas", "name_ru_RU": "Ярость пылающего неба", "name_it_IT": "Furia del Cielo Ardente", "name_pt_PT": "Fúria do Céu Ardente", "on_use": false, "id_encounter": 1761, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140802, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nightblooming Frond", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274237, "buy_price": 1371187, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Nightblooming Frond", "name_ko_KR": "밤꽃 잎사귀", "name_fr_FR": "Fronde d'éclosion nocturne", "name_de_DE": "Nachtblühender Wedel", "name_zh_CN": "暗夜之花复叶", "name_es_ES": "Fronda de la noche floreciente", "name_ru_RU": "Побег ночноцвета", "name_it_IT": "Fronda Notturna", "name_pt_PT": "Fronde do Florescer Noturno", "on_use": false, "id_encounter": 1761, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140803, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Etraeus' Celestial Map", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275280, "buy_price": 1376400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Etraeus' Celestial Map", "name_ko_KR": "에트레우스의 천상 지도", "name_fr_FR": "Carte céleste d'Etraeus", "name_de_DE": "Etraeus' Himmelskarte", "name_zh_CN": "艾塔乌斯的星图", "name_es_ES": "Mapa celestial de Etraeus", "name_ru_RU": "Звездная карта Этрея", "name_it_IT": "Mappa Celestiale di Etraeus", "name_pt_PT": "Mapa Celestial de Etraeus", "on_use": false, "id_encounter": 1732, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140804, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Star Gate", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1815, "buy_price": 9075, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9805999994277954, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Star Gate", "name_ko_KR": "별의 관문", "name_fr_FR": "Porte astrale", "name_de_DE": "Sternentor", "name_zh_CN": "星辰之门", "name_es_ES": "Puerta estelar", "name_ru_RU": "Звездные врата", "name_it_IT": "Varco Stellare", "name_pt_PT": "Portal Estelar", "on_use": false, "id_encounter": 1732, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140805, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ephemeral Paradox", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277337, "buy_price": 1386685, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ephemeral Paradox", "name_ko_KR": "덧없는 역설", "name_fr_FR": "Paradoxe éphémère", "name_de_DE": "Flüchtiges Paradoxon", "name_zh_CN": "刹那之悖论", "name_es_ES": "Paradoja efímera", "name_ru_RU": "Эфемерный парадокс", "name_it_IT": "Paradosso Effimero", "name_pt_PT": "Paradoxo Efêmero", "on_use": false, "id_encounter": 1743, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140806, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Convergence of Fates", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8333, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 278379, "buy_price": 1391898, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Convergence of Fates", "name_ko_KR": "운명의 수렴", "name_fr_FR": "Convergence des destins", "name_de_DE": "Konvergenz der Schicksale", "name_zh_CN": "凝结的命运", "name_es_ES": "Convergencia de destinos", "name_ru_RU": "Соприкосновение судеб", "name_it_IT": "Convergenza di Destini", "name_pt_PT": "Convergência de Destinos", "on_use": false, "id_encounter": 1743, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140807, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infernal Contract", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279422, "buy_price": 1397111, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991599977016449, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Infernal Contract", "name_ko_KR": "지옥의 계약", "name_fr_FR": "Contrat infernal", "name_de_DE": "Höllischer Vertrag", "name_zh_CN": "地狱火契约", "name_es_ES": "Contrato infernal", "name_ru_RU": "Инфернальный договор", "name_it_IT": "Costrutto Infernale", "name_pt_PT": "Contrato Infernal", "on_use": true, "id_encounter": 1737, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140808, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draught of Souls", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280436, "buy_price": 1402184, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.995199978351593, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Draught of Souls", "name_ko_KR": "영혼의 비약", "name_fr_FR": "Breuvage des âmes", "name_de_DE": "Destillat der Seelen", "name_zh_CN": "灵魂之引", "name_es_ES": "Jarabe de almas", "name_ru_RU": "Настой душ", "name_it_IT": "Fiasca d'Anime", "name_pt_PT": "Tragada das Almas", "on_use": true, "id_encounter": 1737, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 140809, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whispers in the Dark", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1848, "buy_price": 9244, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Whispers in the Dark", "name_ko_KR": "어둠 속의 속삭임", "name_fr_FR": "Murmures dans les ténèbres", "name_de_DE": "Flüstern im Dunkel", "name_zh_CN": "黑暗低语", "name_es_ES": "Susurros en la oscuridad", "name_ru_RU": "Шепот во тьме", "name_it_IT": "Sussurri nell'Oscurità", "name_pt_PT": "Sussurros no Escuro", "on_use": false, "id_encounter": 1737, "id_journal_instance": 786, "id_map": 1530, "instance_type": 2}, {"id": 141482, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Arcanocrystal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5555, "stat_alloc_2": 5555, "stat_alloc_3": 5555, "stat_alloc_4": 5555, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276294, "buy_price": 1381472, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 528384, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Unstable Arcanocrystal", "name_ko_KR": "불안정한 비전수정", "name_fr_FR": "Arcanocristal instable", "name_de_DE": "Instabiler Arkanokristall", "name_zh_CN": "不稳定的奥术水晶", "name_es_ES": "Arcanocristal inestable", "name_ru_RU": "Нестабильный чародейский кристалл", "name_it_IT": "Arcanocristallo Instabile", "name_pt_PT": "Cristal Arcano Instável", "on_use": false, "id_encounter": 1796, "id_journal_instance": 822, "id_map": 1520, "instance_type": 2}, {"id": 141535, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ettin Fingernail", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 2222, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 472131, "buy_price": 2360659, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9544000029563904, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ettin Fingernail", "name_ko_KR": "거인 손톱", "name_fr_FR": "Ongle d'ettin", "name_de_DE": "Ettinfingernagel", "name_zh_CN": "双头怪的指甲", "name_es_ES": "Uña de ettin", "name_ru_RU": "Ноготь эттина", "name_it_IT": "Unghia di Ettin", "name_pt_PT": "Unha de Gorjala", "on_use": false, "id_encounter": 1789, "id_journal_instance": 822, "id_map": 1520, "instance_type": 2}, {"id": 141536, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Padawsen's Unlucky Charm", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 2222, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 473962, "buy_price": 2369811, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581000208854675, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Padawsen's Unlucky Charm", "name_ko_KR": "파다우센의 불운 부적", "name_fr_FR": "Porte-malheur de Padawsen", "name_de_DE": "Padawsens Unglücksbringer", "name_zh_CN": "帕达沃森的不幸符", "name_es_ES": "Talismán desafortunado de Padawsen", "name_ru_RU": "Несчастливый амулет Падосена", "name_it_IT": "Portasfortuna di Padawsen", "name_pt_PT": "Patuá da Má Sorte de Padawsen", "on_use": false, "id_encounter": 1770, "id_journal_instance": 822, "id_map": 1520, "instance_type": 2}, {"id": 141537, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Thrice-Accursed Compass", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 2222, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 488901, "buy_price": 2444509, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Thrice-Accursed Compass", "name_ko_KR": "세 번 저주받은 나침반", "name_fr_FR": "Boussole trois fois maudite", "name_de_DE": "Dreimal verfluchter Kompass", "name_zh_CN": "三重诅咒罗盘", "name_es_ES": "Brújula tres veces maldita", "name_ru_RU": "Треклятый компас", "name_it_IT": "Bussola Tre Volte Maledetta", "name_pt_PT": "Bússola Três Vezes Amaldiçoada", "on_use": false, "id_encounter": 1756, "id_journal_instance": 822, "id_map": 1520, "instance_type": 2}, {"id": 141584, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eyasu's Mulligan", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285649, "buy_price": 1428249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013700008392334, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Eyasu's Mulligan", "name_ko_KR": "이야스의 손패", "name_fr_FR": "Deuxième chance d'Eyasu", "name_de_DE": "Eyasus wilde Mischung", "name_zh_CN": "艾亚苏的神奇卡牌", "name_es_ES": "Segunda oportunidad de Eyasu", "name_ru_RU": "Мешанина Эйасу", "name_it_IT": "Colpo Aggiuntivo di Eyasu", "name_pt_PT": "Segunda Chance de Eyasu", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 141585, "race_mask": 18446744073709551615, "desc": "Powerful enough to cool down even the mightiest beings who are caught in its breeze.", "pad2": "", "pad1": "", "pad0": "", "name": "Six-Feather Fan", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294159, "buy_price": 1470799, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0439000129699707, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Six-Feather Fan", "name_ko_KR": "여섯 깃털의 부채", "name_fr_FR": "Éventail à six plumes", "name_de_DE": "Sechsfedriger Fächer", "name_zh_CN": "六禽羽扇", "name_es_ES": "Abanico de seis plumas", "name_ru_RU": "Шестиперый веер", "name_it_IT": "Ventaglio a Sei Piume", "name_pt_PT": "Leque de Seis Penas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 141586, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Marfisi's Giant Censer", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295202, "buy_price": 1476012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0476000308990479, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Marfisi's Giant Censer", "name_ko_KR": "마르피시의 거대 향로", "name_fr_FR": "Encensoir géant de Marfisi", "name_de_DE": "Marfisis riesiges Räuchergefäß", "name_zh_CN": "玛菲斯的巨型香炉", "name_es_ES": "Incensario gigante de Marfisi", "name_ru_RU": "Огромное кадило Марфиси", "name_it_IT": "Incensiere Gigante di Marfisi", "name_pt_PT": "Incensário Gigante de Marfisi", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 141618, "race_mask": 18446744073709551615, "desc": "Death brings new life.", "pad2": "", "pad1": "", "pad0": "", "name": "Life-Giving Berries", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75120, "buy_price": 375603, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017899990081787, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Life-Giving Berries", "name_ko_KR": "생명을 주는 열매", "name_fr_FR": "Baies donneuses de vie", "name_de_DE": "Lebensspendende Beeren", "name_zh_CN": "赐生浆果", "name_es_ES": "Bayas de energía vital", "name_ru_RU": "Животворные ягоды", "name_it_IT": "Bacche del Dono della Vita", "name_pt_PT": "Frutinhas da Vida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 141619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mana-Infused Berries", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 75393, "buy_price": 376968, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0216000080108643, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mana-Infused Berries", "name_ko_KR": "마나 깃든 열매", "name_fr_FR": "Baies imprégnées de mana", "name_de_DE": "Manaerfüllte Beeren", "name_zh_CN": "灌魔浆果", "name_es_ES": "Bayas imbuidas de maná", "name_ru_RU": "Насыщенные маной ягоды", "name_it_IT": "Bacche Infuse di Mana", "name_pt_PT": "Frutinhas Imbuídas de Mana", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142157, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Aran's Relaxing Ruby", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1794, "buy_price": 8972, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Aran's Relaxing Ruby", "name_ko_KR": "아란의 마음이 편안해지는 루비", "name_fr_FR": "Rubis apaisant d'Aran", "name_de_DE": "Arans Entspannungsrubin", "name_zh_CN": "埃兰的舒缓红玉", "name_es_ES": "Rubí relajante de Aran", "name_ru_RU": "Успокаивающий рубин Арана", "name_it_IT": "Rubino Rilassante di Aran", "name_pt_PT": "Rubi Relaxante de Aran", "on_use": false, "id_encounter": 1817, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142158, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Faith's Crucible", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88184, "buy_price": 440923, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Faith's Crucible", "name_ko_KR": "신념의 도가니", "name_fr_FR": "Creuset de la foi", "name_de_DE": "Prüfung des Glaubens", "name_zh_CN": "信仰的试炼", "name_es_ES": "Crisol de fe", "name_ru_RU": "Горнило веры", "name_it_IT": "Crogiolo della Fede", "name_pt_PT": "Crisol da Fé", "on_use": true, "id_encounter": 1825, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142159, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodstained Handkerchief", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88520, "buy_price": 442600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Bloodstained Handkerchief", "name_ko_KR": "피로 물든 손수건", "name_fr_FR": "Mouchoir maculé de sang", "name_de_DE": "Blutbeflecktes Taschentuch", "name_zh_CN": "染血手帕", "name_es_ES": "Pañuelo manchado de sangre", "name_ru_RU": "Окровавленный носовой платок", "name_it_IT": "Fazzoletto Macchiato di Sangue", "name_pt_PT": "Lenço Manchado de Sangue", "on_use": true, "id_encounter": 1837, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142160, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Mrrgria's Favor", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1814, "buy_price": 9074, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Mrrgria's Favor", "name_ko_KR": "아옳리아의 호의", "name_fr_FR": "Faveur de Mrrgria", "name_de_DE": "Mrrgrias Gunst", "name_zh_CN": "玛吉亚的青睐", "name_es_ES": "Favor de Mrrgria", "name_ru_RU": "Благосклонность Мрргрии", "name_it_IT": "Favore di Mrrgria", "name_pt_PT": "Favor de Mrrgria", "on_use": true, "id_encounter": 1826, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142161, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Inescapable Dread", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89181, "buy_price": 445907, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9842000007629395, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Inescapable Dread", "name_ko_KR": "떨칠 수 없는 공포", "name_fr_FR": "Irrésistible terreur", "name_de_DE": "Unentrinnbarer Schrecken", "name_zh_CN": "缠身恐惧", "name_es_ES": "Pavor inexorable", "name_ru_RU": "Неотвязный страх", "name_it_IT": "Terrore Inevitabile", "name_pt_PT": "Pavor Inescapável", "on_use": false, "id_encounter": 1835, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142162, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Fluctuating Energy", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89516, "buy_price": 447583, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879000186920166, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Fluctuating Energy", "name_ko_KR": "요동치는 마력", "name_fr_FR": "Énergie fluctuante", "name_de_DE": "Schwingende Energie", "name_zh_CN": "波动能量", "name_es_ES": "Energía oscilante", "name_ru_RU": "Колеблющаяся энергия", "name_it_IT": "Energia Fluttuante", "name_pt_PT": "Energia Flutuante", "on_use": false, "id_encounter": 1818, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142164, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Toe Knee's Promise", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92579, "buy_price": 462897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Toe Knee's Promise", "name_ko_KR": "토우니의 약속", "name_fr_FR": "Promesse de Tony Truand", "name_de_DE": "Jettonys Versprechen", "name_zh_CN": "托尼的承诺", "name_es_ES": "Promesa de Tony", "name_ru_RU": "Обещание Тонни", "name_it_IT": "Promessa di Tonny", "name_pt_PT": "Promessa do Tonhão", "on_use": true, "id_encounter": 1826, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142165, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Deteriorated Construct Core", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1898, "buy_price": 9490, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Deteriorated Construct Core", "name_ko_KR": "상태가 나쁜 피조물 핵", "name_fr_FR": "Noyau d'assemblage ébréché", "name_de_DE": "Zersetzter Konstruktkern", "name_zh_CN": "变质的构造体核心", "name_es_ES": "Núcleo de ensamblaje deteriorado", "name_ru_RU": "Разряженное ядро голема", "name_it_IT": "Nucleo di Costrutto Deteriorato", "name_pt_PT": "Núcleo Deteriorado de Constructo", "on_use": false, "id_encounter": 1836, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ethereal Urn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93250, "buy_price": 466250, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ethereal Urn", "name_ko_KR": "실체 없는 단지", "name_fr_FR": "Urne éthérée", "name_de_DE": "Ätherische Urne", "name_zh_CN": "虚灵之瓶", "name_es_ES": "Urna etérea", "name_ru_RU": "Астральная урна", "name_it_IT": "Urna Eterea", "name_pt_PT": "Urna Etérea", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142167, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Command", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93585, "buy_price": 467926, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0327999591827393, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Command", "name_ko_KR": "지휘의 눈", "name_fr_FR": "Oeil de commandement", "name_de_DE": "Auge des Befehls", "name_zh_CN": "命令之眼", "name_es_ES": "Ojo de orden", "name_ru_RU": "Око властности", "name_it_IT": "Occhio del Comando", "name_pt_PT": "Olho do Comando", "on_use": false, "id_encounter": 1838, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142168, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Majordomo's Dinner Bell", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93911, "buy_price": 469557, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0363999605178833, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Majordomo's Dinner Bell", "name_ko_KR": "청지기의 저녁 식사 종", "name_fr_FR": "Cloche de dîner du chambellan", "name_de_DE": "Essensglöckchen des Majordomus", "name_zh_CN": "管理者的就餐铃", "name_es_ES": "Campanilla para la cena de mayordomo", "name_ru_RU": "Обеденный колокольчик мажордома", "name_it_IT": "Campanella della Cena del Maggiordomo", "name_pt_PT": "Sineta da Janta do Senescal", "on_use": true, "id_encounter": 1827, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142169, "race_mask": 18446744073709551615, "desc": "Marked with a raven silhouette.", "pad2": "", "pad1": "", "pad0": "", "name": "Raven Eidolon", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 8499, "stat_alloc_2": 5666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 94246, "buy_price": 471233, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0400999784469604, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 4, "name_en_US": "Raven Eidolon", "name_ko_KR": "까마귀 허깨비", "name_fr_FR": "Eidolon de corbeau", "name_de_DE": "Rabenphantom", "name_zh_CN": "渡鸦之灵", "name_es_ES": "Cuervo Eidolon", "name_ru_RU": "Фигурка ворона", "name_it_IT": "Eidolon Corvo", "name_pt_PT": "Espectro Corvídeo", "on_use": true, "id_encounter": 1817, "id_journal_instance": 860, "id_map": 1651, "instance_type": 1}, {"id": 142368, "race_mask": 18446744073709551615, "desc": "A reminder of past deeds.", "pad2": "", "pad1": "", "pad0": "", "name": "Cracked Falcosaur Beak", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 2000000, "buy_price": 10000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879999756813049, "flags_1": 67670016, "flags_2": 90112, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 2018, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cracked Falcosaur Beak", "name_ko_KR": "금이 간 팔코사우루스 부리", "name_fr_FR": "Bec de falcosaure fendu", "name_de_DE": "Zersplitterter Falkosaurierschnabel", "name_zh_CN": "开裂的隼龙喙", "name_es_ES": "Pico de falcosaurio rajado", "name_ru_RU": "Треснувший клюв грифозавра", "name_it_IT": "Becco di Falcosauro Spezzato", "name_pt_PT": "Bico de Falcossauro Rachado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142506, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Guarm", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507945, "buy_price": 2539729, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0326999425888062, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Guarm", "name_ko_KR": "구아름의 눈", "name_fr_FR": "Oeil de Guarm", "name_de_DE": "Guarms Auge", "name_zh_CN": "高姆之眼", "name_es_ES": "Ojo de Guarm", "name_ru_RU": "Глаз Гарма", "name_it_IT": "Occhio di Guarm", "name_pt_PT": "Olho de Guarm", "on_use": false, "id_encounter": 1830, "id_journal_instance": 861, "id_map": 1648, "instance_type": 2}, {"id": 142507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brinewater Slime in a Bottle", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 509765, "buy_price": 2548828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0363999605178833, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Brinewater Slime in a Bottle", "name_ko_KR": "병에 든 소금물 점액", "name_fr_FR": "Limon d'eau salée en bouteille", "name_de_DE": "Flasche mit Salzlakenschleim", "name_zh_CN": "瓶装盐水软泥", "name_es_ES": "Babosa de agua salobre en botella", "name_ru_RU": "Соленая слизь в бутылке", "name_it_IT": "Melma Brinosa in Bottiglia", "name_pt_PT": "Visgo de Água Suja na Garrafa", "on_use": false, "id_encounter": 1829, "id_journal_instance": 861, "id_map": 1648, "instance_type": 2}, {"id": 142508, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chains of the Valorous", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 511585, "buy_price": 2557928, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0400999784469604, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Chains of the Valorous", "name_ko_KR": "용맹스러운 자의 사슬", "name_fr_FR": "Entraves des Valeureux", "name_de_DE": "Ketten der Tapferen", "name_zh_CN": "勇武项链", "name_es_ES": "Cadenas del valeroso", "name_ru_RU": "Цепи доблести", "name_it_IT": "Catene del Valoroso", "name_pt_PT": "Correntes dos Valorosos", "on_use": false, "id_encounter": 1819, "id_journal_instance": 861, "id_map": 1648, "instance_type": 2}, {"id": 142660, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 291990, "buy_price": 1459951, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362000465393066, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142773, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador intrépido", "name_ru_RU": "Жетон завоевания бесстрашного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temerario", "name_pt_PT": "Distintivo da Conquista do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142661, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 502618, "buy_price": 2513091, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0398000478744507, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142774, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador intrépido", "name_ru_RU": "Акколада завоевания бесстрашного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Temerario", "name_pt_PT": "Galardão da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142662, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273307, "buy_price": 1366537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142775, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador intrépido", "name_ru_RU": "Знак завоевания бесстрашного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temerario", "name_pt_PT": "Insígnia da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142663, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274350, "buy_price": 1371750, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142776, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador intrépido", "name_ru_RU": "Эмблема жестокости бесстрашного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temerario", "name_pt_PT": "Emblema da Crueldade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142664, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275392, "buy_price": 1376963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772999882698059, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142777, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador intrépido", "name_ru_RU": "Эмблема упорства бесстрашного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temerario", "name_pt_PT": "Emblema da Tenacidade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142665, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276407, "buy_price": 1382036, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142778, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador intrépido", "name_ru_RU": "Эмблема медитации бесстрашного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temerario", "name_pt_PT": "Emblema da Meditação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142666, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277449, "buy_price": 1387249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142779, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador intrépido", "name_ru_RU": "Жетон господства бесстрашного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temerario", "name_pt_PT": "Distintivo da Dominância do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142667, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 477724, "buy_price": 2388621, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142780, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador intrépido", "name_ru_RU": "Акколада господства бесстрашного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Temerario", "name_pt_PT": "Galardão da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142668, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1836, "buy_price": 9180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142781, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador intrépido", "name_ru_RU": "Знак господства бесстрашного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temerario", "name_pt_PT": "Insígnia da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142669, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280549, "buy_price": 1402747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142782, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador intrépido", "name_ru_RU": "Жетон победы бесстрашного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temerario", "name_pt_PT": "Distintivo da Vitória do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142670, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483041, "buy_price": 2415207, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142783, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador intrépido", "name_ru_RU": "Акколада победы бесстрашного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Temerario", "name_pt_PT": "Galardão da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142671, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282634, "buy_price": 1413173, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142784, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador intrépido", "name_ru_RU": "Знак победы бесстрашного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temerario", "name_pt_PT": "Insígnia da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142672, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283649, "buy_price": 1418246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142785, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador intrépido", "name_ru_RU": "Жетон адаптации бесстрашного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Temerario", "name_pt_PT": "Distintivo da Adaptação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142773, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 291990, "buy_price": 1459951, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362000465393066, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142660, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador intrépido", "name_ru_RU": "Жетон завоевания бесстрашного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temerario", "name_pt_PT": "Distintivo da Conquista do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142774, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 467041, "buy_price": 2335207, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142661, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador intrépido", "name_ru_RU": "Акколада завоевания бесстрашного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Temerario", "name_pt_PT": "Galardão da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142775, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273307, "buy_price": 1366537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142662, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador intrépido", "name_ru_RU": "Знак завоевания бесстрашного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temerario", "name_pt_PT": "Insígnia da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142776, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274350, "buy_price": 1371750, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142663, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador intrépido", "name_ru_RU": "Эмблема жестокости бесстрашного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temerario", "name_pt_PT": "Emblema da Crueldade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142777, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275392, "buy_price": 1376963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772999882698059, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142664, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador intrépido", "name_ru_RU": "Эмблема упорства бесстрашного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temerario", "name_pt_PT": "Emblema da Tenacidade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142778, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276407, "buy_price": 1382036, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142665, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador intrépido", "name_ru_RU": "Эмблема медитации бесстрашного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temerario", "name_pt_PT": "Emblema da Meditação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142779, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277449, "buy_price": 1387249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142666, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador intrépido", "name_ru_RU": "Жетон господства бесстрашного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temerario", "name_pt_PT": "Distintivo da Dominância do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142780, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 477724, "buy_price": 2388621, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142667, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador intrépido", "name_ru_RU": "Акколада господства бесстрашного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Temerario", "name_pt_PT": "Galardão da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142781, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1836, "buy_price": 9180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142668, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador intrépido", "name_ru_RU": "Знак господства бесстрашного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temerario", "name_pt_PT": "Insígnia da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142782, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280549, "buy_price": 1402747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142669, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador intrépido", "name_ru_RU": "Жетон победы бесстрашного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temerario", "name_pt_PT": "Distintivo da Vitória do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142783, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483041, "buy_price": 2415207, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142670, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador intrépido", "name_ru_RU": "Акколада победы бесстрашного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Temerario", "name_pt_PT": "Galardão da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142784, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282634, "buy_price": 1413173, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142671, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador intrépido", "name_ru_RU": "Знак победы бесстрашного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temerario", "name_pt_PT": "Insígnia da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142785, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283649, "buy_price": 1418246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142672, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador intrépido", "name_ru_RU": "Жетон адаптации бесстрашного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Temerario", "name_pt_PT": "Distintivo da Adaptação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142886, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218992, "buy_price": 1094963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362000465393066, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142999, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente impávido", "name_ru_RU": "Жетон завоевания бесстрашного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Temerario", "name_pt_PT": "Distintivo da Conquista do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142887, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 347002, "buy_price": 1735014, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143000, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente impávido", "name_ru_RU": "Акколада завоевания бесстрашного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Temerario", "name_pt_PT": "Galardão da Conquista do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142888, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204980, "buy_price": 1024903, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143001, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente impávido", "name_ru_RU": "Знак завоевания бесстрашного бойца", "name_it_IT": "Fregio della Conquista del Combattente Temerario", "name_pt_PT": "Insígnia da Conquista do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142889, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 205762, "buy_price": 1028813, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143002, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente impávido", "name_ru_RU": "Эмблема жестокости бесстрашного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Temerario", "name_pt_PT": "Emblema da Crueldade do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142890, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 206544, "buy_price": 1032722, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772999882698059, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143003, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente impávido", "name_ru_RU": "Эмблема упорства бесстрашного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Temerario", "name_pt_PT": "Emblema da Tenacidade do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142891, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207305, "buy_price": 1036527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143004, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente impávido", "name_ru_RU": "Эмблема медитации бесстрашного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Temerario", "name_pt_PT": "Emblema da Meditação do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142892, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208087, "buy_price": 1040436, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143005, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente impávido", "name_ru_RU": "Жетон господства бесстрашного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Temerario", "name_pt_PT": "Distintivo da Dominância do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142893, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 354939, "buy_price": 1774699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143006, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente impávido", "name_ru_RU": "Акколада господства бесстрашного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Temerario", "name_pt_PT": "Galardão da Dominância do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142894, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1377, "buy_price": 6885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143007, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente impávido", "name_ru_RU": "Знак господства бесстрашного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Temerario", "name_pt_PT": "Insígnia da Dominância do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142895, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 210412, "buy_price": 1052060, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143008, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente impávido", "name_ru_RU": "Жетон победы бесстрашного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Temerario", "name_pt_PT": "Distintivo da Vitória do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142896, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 358890, "buy_price": 1794452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143009, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente impávido", "name_ru_RU": "Акколада победы бесстрашного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Temerario", "name_pt_PT": "Galardão da Vitória do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142897, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211976, "buy_price": 1059880, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143010, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente impávido", "name_ru_RU": "Знак победы бесстрашного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Temerario", "name_pt_PT": "Insígnia da Vitória do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142898, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212736, "buy_price": 1063684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143011, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente impávido", "name_ru_RU": "Жетон адаптации бесстрашного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Temerario", "name_pt_PT": "Distintivo da Adaptação do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 142999, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203437, "buy_price": 1017189, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142886, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente impávido", "name_ru_RU": "Жетон завоевания бесстрашного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Temerario", "name_pt_PT": "Distintivo da Conquista do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143000, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 347002, "buy_price": 1735014, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142887, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente impávido", "name_ru_RU": "Акколада завоевания бесстрашного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Temerario", "name_pt_PT": "Galardão da Conquista do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143001, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204980, "buy_price": 1024903, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142888, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente impávido", "name_ru_RU": "Знак завоевания бесстрашного бойца", "name_it_IT": "Fregio della Conquista del Combattente Temerario", "name_pt_PT": "Insígnia da Conquista do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143002, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 205762, "buy_price": 1028813, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142889, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 전투원의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du combattant intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的残酷纹章", "name_es_ES": "Emblema de crueldad de Combatiente impávido", "name_ru_RU": "Эмблема жестокости бесстрашного бойца", "name_it_IT": "Emblema dell'Atrocità del Combattente Temerario", "name_pt_PT": "Emblema da Crueldade do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143003, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 206523, "buy_price": 1032617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772000312805176, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142890, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 전투원의 불굴 문장", "name_fr_FR": "Emblème de ténacité du combattant intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的顽强纹章", "name_es_ES": "Emblema de tenacidad de Combatiente impávido", "name_ru_RU": "Эмблема упорства бесстрашного бойца", "name_it_IT": "Emblema della Tenacia del Combattente Temerario", "name_pt_PT": "Emblema da Tenacidade do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143004, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 207305, "buy_price": 1036527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142891, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 전투원의 명상 문장", "name_fr_FR": "Emblème de méditation du combattant intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的冥想纹章", "name_es_ES": "Emblema de meditación de Combatiente impávido", "name_ru_RU": "Эмблема медитации бесстрашного бойца", "name_it_IT": "Emblema della Meditazione del Combattente Temerario", "name_pt_PT": "Emblema da Meditação do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143005, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208087, "buy_price": 1040436, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142892, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente impávido", "name_ru_RU": "Жетон господства бесстрашного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Temerario", "name_pt_PT": "Distintivo da Dominância do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143006, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 354939, "buy_price": 1774699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142893, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente impávido", "name_ru_RU": "Акколада господства бесстрашного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Temerario", "name_pt_PT": "Galardão da Dominância do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143007, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1377, "buy_price": 6885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142894, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente impávido", "name_ru_RU": "Знак господства бесстрашного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Temerario", "name_pt_PT": "Insígnia da Dominância do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143008, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 210412, "buy_price": 1052060, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142895, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente impávido", "name_ru_RU": "Жетон победы бесстрашного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Temerario", "name_pt_PT": "Distintivo da Vitória do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143009, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 358890, "buy_price": 1794452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142896, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Accolade of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente impávido", "name_ru_RU": "Акколада победы бесстрашного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Temerario", "name_pt_PT": "Galardão da Vitória do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143010, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211976, "buy_price": 1059880, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142897, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Insignia of Victory", "name_ko_KR": "두려움을 모르는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente impávido", "name_ru_RU": "Знак победы бесстрашного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Temerario", "name_pt_PT": "Insígnia da Vitória do Combatente Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143011, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Combatant's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212736, "buy_price": 1063684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 142898, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13287, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fearless Combatant's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 전투원의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du combattant intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Kämpfers", "name_zh_CN": "无畏争斗者的同化徽章", "name_es_ES": "Distintivo de adaptación de Combatiente impávido", "name_ru_RU": "Жетон адаптации бесстрашного бойца", "name_it_IT": "Distintivo dell'Adattamento del Combattente Temerario", "name_pt_PT": "Distintivo da Adaptação do Combatente Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143112, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271250, "buy_price": 1356252, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143225, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador intrépido", "name_ru_RU": "Жетон завоевания бесстрашного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temerario", "name_pt_PT": "Distintivo da Conquista do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143113, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483433, "buy_price": 2417165, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143226, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador intrépido", "name_ru_RU": "Акколада завоевания бесстрашного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Temerario", "name_pt_PT": "Galardão da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143114, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273307, "buy_price": 1366537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143227, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador intrépido", "name_ru_RU": "Знак завоевания бесстрашного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temerario", "name_pt_PT": "Insígnia da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143115, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274350, "buy_price": 1371750, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143228, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador intrépido", "name_ru_RU": "Эмблема жестокости бесстрашного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temerario", "name_pt_PT": "Emblema da Crueldade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143116, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275364, "buy_price": 1376823, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772000312805176, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143229, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador intrépido", "name_ru_RU": "Эмблема упорства бесстрашного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temerario", "name_pt_PT": "Emblema da Tenacidade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143117, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276407, "buy_price": 1382036, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143230, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador intrépido", "name_ru_RU": "Эмблема медитации бесстрашного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temerario", "name_pt_PT": "Emblema da Meditação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143118, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277449, "buy_price": 1387249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143231, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador intrépido", "name_ru_RU": "Жетон господства бесстрашного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temerario", "name_pt_PT": "Distintivo da Dominância do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143119, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 494490, "buy_price": 2472454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143232, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador intrépido", "name_ru_RU": "Акколада господства бесстрашного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Temerario", "name_pt_PT": "Galardão da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143120, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1836, "buy_price": 9180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143233, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador intrépido", "name_ru_RU": "Знак господства бесстрашного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temerario", "name_pt_PT": "Insígnia da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143121, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280549, "buy_price": 1402747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143234, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador intrépido", "name_ru_RU": "Жетон победы бесстрашного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temerario", "name_pt_PT": "Distintivo da Vitória do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143122, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499994, "buy_price": 2499972, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143235, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador intrépido", "name_ru_RU": "Акколада победы бесстрашного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Temerario", "name_pt_PT": "Galardão da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143123, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282634, "buy_price": 1413173, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143236, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador intrépido", "name_ru_RU": "Знак победы бесстрашного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temerario", "name_pt_PT": "Insígnia da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143124, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283649, "buy_price": 1418246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143237, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador intrépido", "name_ru_RU": "Жетон адаптации бесстрашного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Temerario", "name_pt_PT": "Distintivo da Adaptação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143225, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271250, "buy_price": 1356252, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9625999927520752, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143112, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador intrépido", "name_ru_RU": "Жетон завоевания бесстрашного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Temerario", "name_pt_PT": "Distintivo da Conquista do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143226, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483433, "buy_price": 2417165, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143113, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador intrépido", "name_ru_RU": "Акколада завоевания бесстрашного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Temerario", "name_pt_PT": "Galardão da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143227, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273307, "buy_price": 1366537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143114, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Conquest", "name_ko_KR": "두려움을 모르는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur intrépide", "name_de_DE": "Eroberungsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador intrépido", "name_ru_RU": "Знак завоевания бесстрашного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Temerario", "name_pt_PT": "Insígnia da Conquista do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143228, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Cruelty", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274350, "buy_price": 1371750, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736000299453735, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143115, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Cruelty", "name_ko_KR": "두려움을 모르는 검투사의 잔혹 문장", "name_fr_FR": "Emblème de cruauté du gladiateur intrépide", "name_de_DE": "Grausamkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的残酷纹章", "name_es_ES": "Emblema de crueldad de Gladiador intrépido", "name_ru_RU": "Эмблема жестокости бесстрашного гладиатора", "name_it_IT": "Emblema dell'Atrocità del Gladiatore Temerario", "name_pt_PT": "Emblema da Crueldade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143229, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Tenacity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7889, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275364, "buy_price": 1376823, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9772000312805176, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143116, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Tenacity", "name_ko_KR": "두려움을 모르는 검투사의 불굴 문장", "name_fr_FR": "Emblème de ténacité du gladiateur intrépide", "name_de_DE": "Hartnäckigkeitsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的顽强纹章", "name_es_ES": "Emblema de tenacidad de Gladiador intrépido", "name_ru_RU": "Эмблема упорства бесстрашного гладиатора", "name_it_IT": "Emblema della Tenacia del Gladiatore Temerario", "name_pt_PT": "Emblema da Tenacidade do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143230, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Emblem of Meditation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276407, "buy_price": 1382036, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98089998960495, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143117, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Emblem of Meditation", "name_ko_KR": "두려움을 모르는 검투사의 명상 문장", "name_fr_FR": "Emblème de méditation du gladiateur intrépide", "name_de_DE": "Meditationsemblem des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的冥想纹章", "name_es_ES": "Emblema de meditación de Gladiador intrépido", "name_ru_RU": "Эмблема медитации бесстрашного гладиатора", "name_it_IT": "Emblema della Meditazione del Gladiatore Temerario", "name_pt_PT": "Emblema da Meditação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143231, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277449, "buy_price": 1387249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143118, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador intrépido", "name_ru_RU": "Жетон господства бесстрашного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Temerario", "name_pt_PT": "Distintivo da Dominância do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143232, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 494490, "buy_price": 2472454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143119, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador intrépido", "name_ru_RU": "Акколада господства бесстрашного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Temerario", "name_pt_PT": "Galardão da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143233, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1836, "buy_price": 9180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143120, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Dominance", "name_ko_KR": "두려움을 모르는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur intrépide", "name_de_DE": "Vorherrschaftsinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador intrépido", "name_ru_RU": "Знак господства бесстрашного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Temerario", "name_pt_PT": "Insígnia da Dominância do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143234, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280549, "buy_price": 1402747, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143121, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur intrépide", "name_de_DE": "Siegesabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador intrépido", "name_ru_RU": "Жетон победы бесстрашного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Temerario", "name_pt_PT": "Distintivo da Vitória do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143235, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499994, "buy_price": 2499972, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9993000030517578, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143122, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Accolade of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur intrépide", "name_de_DE": "Siegesauszeichnung des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador intrépido", "name_ru_RU": "Акколада победы бесстрашного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Temerario", "name_pt_PT": "Galardão da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143236, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282634, "buy_price": 1413173, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143123, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Insignia of Victory", "name_ko_KR": "두려움을 모르는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur intrépide", "name_de_DE": "Siegesinsigne des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador intrépido", "name_ru_RU": "Знак победы бесстрашного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Temerario", "name_pt_PT": "Insígnia da Vitória do Gladiador Destemido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 143237, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearless Gladiator's Badge of Adaptation", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283649, "buy_price": 1418246, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 528384, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 143124, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13288, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fearless Gladiator's Badge of Adaptation", "name_ko_KR": "두려움을 모르는 검투사의 적응 휘장", "name_fr_FR": "Ecusson d'adaptation du gladiateur intrépide", "name_de_DE": "Anpassungsabzeichen des furchtlosen Gladiators", "name_zh_CN": "无畏角斗士的同化徽章", "name_es_ES": "Distintivo de adaptación de Gladiador intrépido", "name_ru_RU": "Жетон адаптации бесстрашного гладиатора", "name_it_IT": "Distintivo dell'Adattamento del Gladiatore Temerario", "name_pt_PT": "Distintivo da Adaptação do Gladiador Destemido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144070, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shado-Pan Dragon Gun", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175646, "buy_price": 2958300, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0401999950408936, "flags_1": 561216, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Shado-Pan Dragon Gun", "name_ko_KR": "음영파 용화포", "name_fr_FR": "Fusil-dragon pandashan", "name_de_DE": "Drachengewehr der Shado-Pan", "name_zh_CN": "影踪派龙枪", "name_es_ES": "Pistola de dragón del Shadopan", "name_ru_RU": "Драконье ружье Шадо-Пан", "name_it_IT": "Archibugio del Drago degli Shandaren", "name_pt_PT": "Arma-dragão Shado-Pan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Windswept Pages", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.977400004863739, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Windswept Pages", "name_ko_KR": "바람을 맞은 책장", "name_fr_FR": "Pages emportées par le vent", "name_de_DE": "Windgepeitschte Seiten", "name_zh_CN": "风中的书页", "name_es_ES": "Páginas arrastradas por el viento", "name_ru_RU": "Унесенные ветром страницы", "name_it_IT": "Pagine Scombinate dal Vento", "name_pt_PT": "Páginas Levadas pelo Vento", "on_use": false, "id_encounter": 664, "id_journal_instance": 313, "id_map": 960, "instance_type": 1}, {"id": 144119, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empty Fruit Barrel", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994000196456909, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Empty Fruit Barrel", "name_ko_KR": "빈 과일 통", "name_fr_FR": "Baril de fruits vide", "name_de_DE": "Leeres Fruchtfass", "name_zh_CN": "空的水果桶", "name_es_ES": "Barril de fruta vacío", "name_ru_RU": "Пустой бочонок из-под фруктов", "name_it_IT": "Barile di Frutta Vuoto", "name_pt_PT": "Barril de Frutas Vazio", "on_use": false, "id_encounter": 668, "id_journal_instance": 302, "id_map": 961, "instance_type": 1}, {"id": 144122, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carbonic Carbuncle", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104000568389893, "flags_1": 524288, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Carbonic Carbuncle", "name_ko_KR": "탄소 몽돌", "name_fr_FR": "Escarboucle carbonique", "name_de_DE": "Kohlenstoffhaltiger Karfunkel", "name_zh_CN": "钙化红玉", "name_es_ES": "Carbunco carbónico", "name_ru_RU": "Углеродный карбункул", "name_it_IT": "Granato Carbonico", "name_pt_PT": "Carbúnculo Carbônico", "on_use": false, "id_encounter": 670, "id_journal_instance": 302, "id_map": 961, "instance_type": 1}, {"id": 144128, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Fire", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 33, "inv_type": 12, "quality": 3, "name_en_US": "Heart of Fire", "name_ko_KR": "불의 심장", "name_fr_FR": "Cœur de feu", "name_de_DE": "Flammendes Herz", "name_zh_CN": "炽热之心", "name_es_ES": "Corazón de fuego", "name_ru_RU": "Сердце огня", "name_it_IT": "Cuore di Fuoco", "name_pt_PT": "Coração de Fogo", "on_use": true, "id_encounter": 657, "id_journal_instance": 312, "id_map": 959, "instance_type": 1}, {"id": 144136, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vision of the Predator", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 21256, "buy_price": 106282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 34, "inv_type": 12, "quality": 3, "name_en_US": "Vision of the Predator", "name_ko_KR": "약탈자의 환영", "name_fr_FR": "Vision du prédateur", "name_de_DE": "Sicht des Raubtiers", "name_zh_CN": "掠食者幻象", "name_es_ES": "Visión del depredador", "name_ru_RU": "Взгляд хищника", "name_it_IT": "Visione del Predatore", "name_pt_PT": "Visão do Predador", "on_use": false, "id_encounter": 675, "id_journal_instance": 303, "id_map": 962, "instance_type": 1}, {"id": 144146, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Protector Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10000, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 524288, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Iron Protector Talisman", "name_ko_KR": "무쇠의 수호자 부적", "name_fr_FR": "Talisman de protecteur en fer", "name_de_DE": "Eiserner Schutztalisman", "name_zh_CN": "钢铁保护者护符", "name_es_ES": "Dije protector de hierro", "name_ru_RU": "Талисман железного защитника", "name_it_IT": "Talismano del Protettore di Ferro", "name_pt_PT": "Talismã do Protetor de Ferro", "on_use": false, "id_encounter": 690, "id_journal_instance": 321, "id_map": 994, "instance_type": 1}, {"id": 144156, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashfrozen Resin Globule", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.988099992275238, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Flashfrozen Resin Globule", "name_ko_KR": "급속 냉동된 나뭇진 방울", "name_fr_FR": "Globule de résine surgelée", "name_de_DE": "Schockgefrorenes Harzkügelchen", "name_zh_CN": "闪冻松脂球", "name_es_ES": "Glóbulo de resina congelado rápidamente", "name_ru_RU": "Замороженная капля смолы", "name_it_IT": "Globulo di Linfa Congelato", "name_pt_PT": "Glóbulo de Resina Supercongelado", "on_use": true, "id_encounter": 693, "id_journal_instance": 324, "id_map": 1011, "instance_type": 1}, {"id": 144157, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Ichorous Blood", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Ichorous Blood", "name_ko_KR": "끈끈한 피가 든 병", "name_fr_FR": "Fiole de sang ichoreux", "name_de_DE": "Phiole mit eitrigem Blut", "name_zh_CN": "腐败血瓶", "name_es_ES": "Vial de sangre icorosa", "name_ru_RU": "Сосуд с кровью и гноем", "name_it_IT": "Fiala di Sangue di Icore", "name_pt_PT": "Frasco de Sangue Icoroso", "on_use": true, "id_encounter": 692, "id_journal_instance": 324, "id_map": 1011, "instance_type": 1}, {"id": 144158, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flashing Steel Talisman", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219999551773071, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Flashing Steel Talisman", "name_ko_KR": "번쩍이는 강철 부적", "name_fr_FR": "Talisman d'acier miroitant", "name_de_DE": "Blitzender Stahltalisman", "name_zh_CN": "炫目精钢护符", "name_es_ES": "Dije de acero ostentoso", "name_ru_RU": "Талисман стальной вспышки", "name_it_IT": "Talismano d'Acciaio Lampeggiante", "name_pt_PT": "Talismã do Clarão de Aço", "on_use": true, "id_encounter": 674, "id_journal_instance": 316, "id_map": 1004, "instance_type": 1}, {"id": 144159, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Price of Progress", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255999565124512, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Price of Progress", "name_ko_KR": "연구의 대가", "name_fr_FR": "Prix du progrès", "name_de_DE": "Preis des Fortschritts", "name_zh_CN": "进修的代价", "name_es_ES": "Precio del progreso", "name_ru_RU": "Цена продвижения", "name_it_IT": "Prezzo del Progresso", "name_pt_PT": "Preço do Progresso", "on_use": false, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 144160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Searing Words", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0292999744415283, "flags_1": 524288, "flags_2": 24592, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Searing Words", "name_ko_KR": "혹독한 주문", "name_fr_FR": "Mots incendiaires", "name_de_DE": "Sengende Worte", "name_zh_CN": "灼热之语", "name_es_ES": "Palabras abrasadoras", "name_ru_RU": "Обжигающие слова", "name_it_IT": "Parole di Fuoco", "name_pt_PT": "Palavras Calcinantes", "on_use": false, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 144161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lessons of the Darkmaster", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180593, "buy_price": 722374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0329999923706055, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 39, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 3, "name_en_US": "Lessons of the Darkmaster", "name_ko_KR": "암흑스승의 가르침", "name_fr_FR": "Leçons du Sombre Maître", "name_de_DE": "Lektionen des Dunkelmeisters", "name_zh_CN": "黑暗院长遗训", "name_es_ES": "Lecciones del maestro oscuro", "name_ru_RU": "Уроки темного магистра", "name_it_IT": "Lezioni del Maestro Oscuro", "name_pt_PT": "Lições do Mestre da Escuridão", "on_use": true, "id_encounter": 684, "id_journal_instance": 246, "id_map": 1007, "instance_type": 1}, {"id": 144249, "race_mask": 18446744073709551615, "desc": "Archimonde the Defiler, overlord of the legion army and wielder of limitless magics, has destroyed countless worlds across the infinity of the universes.", "pad2": "", "pad1": "", "pad0": "", "name": "Archimonde's Hatred Reborn", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 357, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 3333, "stat_alloc_3": 3333, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 417738, "buy_price": 2088693, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883000254631042, "flags_1": 561408, "flags_2": 12352, "flags_3": 276824064, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 5, "name_en_US": "Archimonde's Hatred Reborn", "name_ko_KR": "다시 태어난 아키몬드의 증오", "name_fr_FR": "Haine renouvelée d'Archimonde", "name_de_DE": "Archimondes wiedergeborener Hass", "name_zh_CN": "阿克蒙德的重生之恨", "name_es_ES": "Odio renacido de Archimonde", "name_ru_RU": "Перерожденная ненависть Архимонда", "name_it_IT": "Odio Rinato di Archimonde", "name_pt_PT": "Renascimento do Ódio de Arquimonde", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144258, "race_mask": 18446744073709551615, "desc": "Velen the Ageless One, known by his people as the Prophet, blessed with the gift of Sight, and aided by the Light, has led the draenei for over 25,000 years.", "pad2": "", "pad1": "", "pad0": "", "name": "Velen's Future Sight", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 357, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 2222, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 49, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442888, "buy_price": 2214442, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0477999448776245, "flags_1": 561408, "flags_2": 12352, "flags_3": 276824064, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 5, "name_en_US": "Velen's Future Sight", "name_ko_KR": "벨렌의 미래를 보는 눈", "name_fr_FR": "Vision future de Velen", "name_de_DE": "Velens Blick in die Zukunft", "name_zh_CN": "维伦的未来预言", "name_es_ES": "Visión futura de Velen", "name_ru_RU": "Предвидение Велена", "name_it_IT": "Visione di Velen", "name_pt_PT": "Visão do Futuro de Velen", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144259, "race_mask": 18446744073709551615, "desc": "Kil'jaeden the Deceiver, supreme commander of the Burning Legion, has a simple agenda: consume all life and magic, assimilate every race into the Legion's ranks, slay any who dare resist, and destroy all of creation.", "pad2": "", "pad1": "", "pad0": "", "name": "Kil'jaeden's Burning Wish", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 357, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 2222, "stat_alloc_3": 2222, "stat_alloc_4": 2222, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 49, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 402141, "buy_price": 2010708, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 561472, "flags_2": 12352, "flags_3": 276824064, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 5, "name_en_US": "Kil'jaeden's Burning Wish", "name_ko_KR": "킬제덴의 불타는 소원", "name_fr_FR": "Souhait ardent de Kil'jaeden", "name_de_DE": "Kil'jaedens brennender Wunsch", "name_zh_CN": "基尔加丹的炽燃决心", "name_es_ES": "Voluntad ardiente de Kil'jaeden", "name_ru_RU": "Пылкое желание Кил'джедена", "name_it_IT": "Desiderio Ardente di Kil'jaeden", "name_pt_PT": "Anseio Ardente de Kil'jaeden", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144477, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Splinters of Agronox", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67660, "buy_price": 338304, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9955999851226807, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Splinters of Agronox", "name_ko_KR": "아그로녹스의 부목", "name_fr_FR": "Echardes d'Agronox", "name_de_DE": "Splitter von Agronax", "name_zh_CN": "阿格洛诺克斯的碎木", "name_es_ES": "Astillas de Agronox", "name_ru_RU": "Щепки Агронокса", "name_it_IT": "Schegge di Agronox", "name_pt_PT": "Farpas de Agronox", "on_use": false, "id_encounter": 1905, "id_journal_instance": 900, "id_map": 1677, "instance_type": 1}, {"id": 144480, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadstone of Endless Shadows", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70209, "buy_price": 351046, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0331000089645386, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Dreadstone of Endless Shadows", "name_ko_KR": "끝없는 그림자의 공포석", "name_fr_FR": "Pierre d'effroi des ombres éternelles", "name_de_DE": "Schreckensstein der endlosen Schatten", "name_zh_CN": "无尽暗影恐惧石", "name_es_ES": "Piedra de terror de sombras infinitas", "name_ru_RU": "Страхолит бесконечных теней", "name_it_IT": "Pietracupa delle Ombre Imperiture", "name_pt_PT": "Medolita da Sombra Infinita", "on_use": false, "id_encounter": 1878, "id_journal_instance": 900, "id_map": 1677, "instance_type": 1}, {"id": 144482, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fel-Oiled Infernal Machine", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 70712, "buy_price": 353561, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405000448226929, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Fel-Oiled Infernal Machine", "name_ko_KR": "지옥 기름을 친 불지옥 기계", "name_fr_FR": "Machine infernale gangrelubrifiée", "name_de_DE": "Teufelsgeölte Höllenmaschine", "name_zh_CN": "魔油地狱火机械", "name_es_ES": "Máquina infernal engrasada con vileza", "name_ru_RU": "Смазанная Скверной адская машина", "name_it_IT": "Macchina Infernale Viloliata", "name_pt_PT": "Máquina Infernal Vilubrificada", "on_use": true, "id_encounter": 1906, "id_journal_instance": 900, "id_map": 1677, "instance_type": 1}, {"id": 144730, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295230, "buy_price": 1476153, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.047700047492981, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144731, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador cruel", "name_ru_RU": "Жетон завоевания лютого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Maligno", "name_pt_PT": "Distintivo da Conquista do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144731, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 268066, "buy_price": 1340331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513000249862671, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144730, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador cruel", "name_ru_RU": "Жетон завоевания лютого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Maligno", "name_pt_PT": "Distintivo da Conquista do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144732, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 461579, "buy_price": 2307897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549000263214111, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144733, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador cruel", "name_ru_RU": "Акколада завоевания лютого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Maligno", "name_pt_PT": "Galardão da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144733, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 463367, "buy_price": 2316839, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9585999846458435, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144732, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador cruel", "name_ru_RU": "Акколада завоевания лютого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Maligno", "name_pt_PT": "Galardão da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144734, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271165, "buy_price": 1355829, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9623000025749207, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144735, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador cruel", "name_ru_RU": "Знак завоевания лютого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Maligno", "name_pt_PT": "Insígnia da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144735, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279675, "buy_price": 1398379, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144734, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador cruel", "name_ru_RU": "Знак завоевания лютого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Maligno", "name_pt_PT": "Insígnia da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144736, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280690, "buy_price": 1403452, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9961000084877014, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144737, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador cruel", "name_ru_RU": "Жетон господства лютого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Maligno", "name_pt_PT": "Distintivo da Dominância do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144737, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281733, "buy_price": 1408665, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998000264167786, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144736, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador cruel", "name_ru_RU": "Жетон господства лютого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Maligno", "name_pt_PT": "Distintivo da Dominância do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144738, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 485071, "buy_price": 2425358, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003499984741211, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144739, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador cruel", "name_ru_RU": "Акколада господства лютого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Maligno", "name_pt_PT": "Galardão da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144739, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 486811, "buy_price": 2434059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007099986076355, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144738, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador cruel", "name_ru_RU": "Акколада господства лютого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Maligno", "name_pt_PT": "Galardão da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144740, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1870, "buy_price": 9354, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0108000040054321, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144741, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador cruel", "name_ru_RU": "Знак господства лютого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Maligno", "name_pt_PT": "Insígnia da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144741, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1877, "buy_price": 9389, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0145000219345093, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144740, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador cruel", "name_ru_RU": "Знак господства лютого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Maligno", "name_pt_PT": "Insígnia da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144742, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286917, "buy_price": 1434589, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0182000398635864, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144743, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Victory", "name_ko_KR": "잔혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador cruel", "name_ru_RU": "Жетон победы лютого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Maligno", "name_pt_PT": "Distintivo da Vitória do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144743, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287932, "buy_price": 1439662, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0218000411987305, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144742, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Victory", "name_ko_KR": "잔혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador cruel", "name_ru_RU": "Жетон победы лютого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Maligno", "name_pt_PT": "Distintivo da Vitória do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144744, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 495706, "buy_price": 2478530, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255000591278076, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144745, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Victory", "name_ko_KR": "잔혹한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador cruel", "name_ru_RU": "Акколада победы лютого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Maligno", "name_pt_PT": "Galardão da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144745, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 497494, "buy_price": 2487472, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0291999578475952, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144744, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Victory", "name_ko_KR": "잔혹한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador cruel", "name_ru_RU": "Акколада победы лютого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Maligno", "name_pt_PT": "Galardão da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144746, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 291060, "buy_price": 1455301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0328999757766724, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144747, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Victory", "name_ko_KR": "잔혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador cruel", "name_ru_RU": "Знак победы лютого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Maligno", "name_pt_PT": "Insígnia da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144747, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292074, "buy_price": 1460373, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0364999771118164, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144746, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Victory", "name_ko_KR": "잔혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador cruel", "name_ru_RU": "Знак победы лютого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Maligno", "name_pt_PT": "Insígnia da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144976, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274462, "buy_price": 1372314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739999771118164, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144977, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador cruel", "name_ru_RU": "Жетон завоевания лютого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Maligno", "name_pt_PT": "Distintivo da Conquista do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144977, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275477, "buy_price": 1377386, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144976, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador cruel", "name_ru_RU": "Жетон завоевания лютого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Maligno", "name_pt_PT": "Distintivo da Conquista do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144978, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 490988, "buy_price": 2454941, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9812999963760376, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144979, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador cruel", "name_ru_RU": "Акколада завоевания лютого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Maligno", "name_pt_PT": "Galardão da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144979, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 492839, "buy_price": 2464198, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850000143051147, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144978, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador cruel", "name_ru_RU": "Акколада завоевания лютого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Maligno", "name_pt_PT": "Galardão da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144980, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 278577, "buy_price": 1392885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9886000156402588, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144981, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador cruel", "name_ru_RU": "Знак завоевания лютого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Maligno", "name_pt_PT": "Insígnia da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144981, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279619, "buy_price": 1398098, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144980, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Conquest", "name_ko_KR": "잔혹한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador cruel", "name_ru_RU": "Знак завоевания лютого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Maligno", "name_pt_PT": "Insígnia da Conquista do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144982, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280662, "buy_price": 1403311, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144983, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador cruel", "name_ru_RU": "Жетон господства лютого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Maligno", "name_pt_PT": "Distintivo da Dominância do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144983, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 281704, "buy_price": 1408524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9997000098228455, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144982, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador cruel", "name_ru_RU": "Жетон господства лютого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Maligno", "name_pt_PT": "Distintivo da Dominância do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144984, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 501995, "buy_price": 2509979, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0032999515533447, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144985, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador cruel", "name_ru_RU": "Акколада господства лютого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Maligno", "name_pt_PT": "Galardão da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144985, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 503847, "buy_price": 2519236, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0069999694824219, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144984, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador cruel", "name_ru_RU": "Акколада господства лютого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Maligno", "name_pt_PT": "Galardão da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144986, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1870, "buy_price": 9354, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010699987411499, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144987, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador cruel", "name_ru_RU": "Знак господства лютого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Maligno", "name_pt_PT": "Insígnia da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144987, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1877, "buy_price": 9388, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0144000053405762, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144986, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Dominance", "name_ko_KR": "잔혹한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador cruel", "name_ru_RU": "Знак господства лютого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Maligno", "name_pt_PT": "Insígnia da Dominância do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144988, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 286861, "buy_price": 1434308, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144989, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Victory", "name_ko_KR": "잔혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador cruel", "name_ru_RU": "Жетон победы лютого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Maligno", "name_pt_PT": "Distintivo da Vitória do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144989, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 287904, "buy_price": 1439521, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0217000246047974, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144988, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Badge of Victory", "name_ko_KR": "잔혹한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador cruel", "name_ru_RU": "Жетон победы лютого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Maligno", "name_pt_PT": "Distintivo da Vitória do Gladiador Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144990, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 513053, "buy_price": 2565268, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0254000425338745, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144991, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Victory", "name_ko_KR": "잔혹한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador cruel", "name_ru_RU": "Акколада победы лютого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Maligno", "name_pt_PT": "Galardão da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144991, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 514904, "buy_price": 2574524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144990, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Accolade of Victory", "name_ko_KR": "잔혹한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador cruel", "name_ru_RU": "Акколада победы лютого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Maligno", "name_pt_PT": "Galardão da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144992, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270264, "buy_price": 1351321, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9591000080108643, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144993, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Victory", "name_ko_KR": "잔혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador cruel", "name_ru_RU": "Знак победы лютого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Maligno", "name_pt_PT": "Insígnia da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 144993, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271306, "buy_price": 1356534, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9628000259399414, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 144992, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13296, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cruel Gladiator's Insignia of Victory", "name_ko_KR": "잔혹한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Gladiators", "name_zh_CN": "残虐角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador cruel", "name_ru_RU": "Знак победы лютого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Maligno", "name_pt_PT": "Insígnia da Vitória do Gladiador Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145222, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 205804, "buy_price": 1029024, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.973800003528595, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145223, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente cruel", "name_ru_RU": "Жетон завоевания лютого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Maligno", "name_pt_PT": "Distintivo da Conquista do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145223, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 206586, "buy_price": 1032934, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775000214576721, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145222, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant cruel", "name_de_DE": "Eroberungsabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente cruel", "name_ru_RU": "Жетон завоевания лютого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Maligno", "name_pt_PT": "Distintivo da Conquista do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145224, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 352389, "buy_price": 1761949, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145225, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente cruel", "name_ru_RU": "Акколада завоевания лютого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Maligno", "name_pt_PT": "Galardão da Conquista do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145225, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 353682, "buy_price": 1768414, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847999811172485, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145224, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant cruel", "name_de_DE": "Eroberungsauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente cruel", "name_ru_RU": "Акколада завоевания лютого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Maligno", "name_pt_PT": "Galardão da Conquista do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145226, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208911, "buy_price": 1044558, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9884999990463257, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145227, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente cruel", "name_ru_RU": "Знак завоевания лютого бойца", "name_it_IT": "Fregio della Conquista del Combattente Maligno", "name_pt_PT": "Insígnia da Conquista do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145227, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 209693, "buy_price": 1048467, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922000169754028, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145226, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Conquest", "name_ko_KR": "잔혹한 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant cruel", "name_de_DE": "Eroberungsinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente cruel", "name_ru_RU": "Знак завоевания лютого бойца", "name_it_IT": "Fregio della Conquista del Combattente Maligno", "name_pt_PT": "Insígnia da Conquista do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145228, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 210475, "buy_price": 1052377, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9958999752998352, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145229, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente cruel", "name_ru_RU": "Жетон господства лютого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Maligno", "name_pt_PT": "Distintivo da Dominância do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145229, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211236, "buy_price": 1056181, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9994999766349792, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145228, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant cruel", "name_de_DE": "Vorherrschaftsabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente cruel", "name_ru_RU": "Жетон господства лютого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Maligno", "name_pt_PT": "Distintivo da Dominância do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145230, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 360291, "buy_price": 1801455, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0032000541687012, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145231, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente cruel\r\n", "name_ru_RU": "Акколада господства лютого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Maligno", "name_pt_PT": "Galardão da Dominância do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145231, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 361619, "buy_price": 1808099, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068999528884888, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145230, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant cruel", "name_de_DE": "Vorherrschaftsauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente cruel\r\n", "name_ru_RU": "Акколада господства лютого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Maligno", "name_pt_PT": "Galardão da Dominância do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145232, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1402, "buy_price": 7014, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010599970817566, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145233, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente cruel", "name_ru_RU": "Знак господства лютого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Maligno", "name_pt_PT": "Insígnia da Dominância do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145233, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1407, "buy_price": 7039, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.01419997215271, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145232, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Dominance", "name_ko_KR": "잔혹한 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant cruel", "name_de_DE": "Vorherrschaftsinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente cruel", "name_ru_RU": "Знак господства лютого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Maligno", "name_pt_PT": "Insígnia da Dominância do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145234, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 220725, "buy_price": 1103628, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0443999767303467, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145235, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Victory", "name_ko_KR": "잔혹한 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente cruel", "name_ru_RU": "Жетон победы лютого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Maligno", "name_pt_PT": "Distintivo da Vitória do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145235, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 221507, "buy_price": 1107538, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0480999946594238, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145234, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Badge of Victory", "name_ko_KR": "잔혹한 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant cruel", "name_de_DE": "Siegesabzeichen des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente cruel", "name_ru_RU": "Жетон победы лютого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Maligno", "name_pt_PT": "Distintivo da Vitória do Combatente Execrável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145236, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 341759, "buy_price": 1708797, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9516000151634216, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145237, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Victory", "name_ko_KR": "잔혹한 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente cruel", "name_ru_RU": "Акколада победы лютого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Maligno", "name_pt_PT": "Galardão da Vitória do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145237, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 343088, "buy_price": 1715441, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.955299973487854, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145236, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Accolade of Victory", "name_ko_KR": "잔혹한 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant cruel", "name_de_DE": "Siegesauszeichnung des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente cruel", "name_ru_RU": "Акколада победы лютого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Maligno", "name_pt_PT": "Galardão da Vitória do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145238, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 202677, "buy_price": 1013385, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145239, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Victory", "name_ko_KR": "잔혹한 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente cruel", "name_ru_RU": "Знак победы лютого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Maligno", "name_pt_PT": "Insígnia da Vitória do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145239, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cruel Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203458, "buy_price": 1017294, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9627000093460083, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145238, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13295, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Cruel Combatant's Insignia of Victory", "name_ko_KR": "잔혹한 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant cruel", "name_de_DE": "Siegesinsigne des unbarmherzigen Kämpfers", "name_zh_CN": "残虐争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente cruel", "name_ru_RU": "Знак победы лютого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Maligno", "name_pt_PT": "Insígnia da Vitória do Combatente Execrável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145572, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293258, "buy_price": 1466291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0406999588012695, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145573, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Conquest", "name_ko_KR": "사나운 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador feroz", "name_ru_RU": "Жетон завоевания озлобленного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Feroce", "name_pt_PT": "Distintivo da Conquista do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145573, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294300, "buy_price": 1471504, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0443999767303467, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145572, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Conquest", "name_ko_KR": "사나운 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador feroz", "name_ru_RU": "Жетон завоевания озлобленного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Feroce", "name_pt_PT": "Distintivo da Conquista do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145574, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 506630, "buy_price": 2533151, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0480999946594238, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145575, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Conquest", "name_ko_KR": "사나운 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador feroz", "name_ru_RU": "Акколада завоевания озлобленного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Feroce", "name_pt_PT": "Galardão da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145575, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 459984, "buy_price": 2299921, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9516000151634216, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145574, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Conquest", "name_ko_KR": "사나운 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador feroz", "name_ru_RU": "Акколада завоевания озлобленного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Feroce", "name_pt_PT": "Galardão da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145576, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269193, "buy_price": 1345967, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.955299973487854, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145577, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Conquest", "name_ko_KR": "사나운 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador feroz", "name_ru_RU": "Знак завоевания озлобленного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Feroce", "name_pt_PT": "Insígnia da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145577, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270236, "buy_price": 1351180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145576, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Conquest", "name_ko_KR": "사나운 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador feroz", "name_ru_RU": "Знак завоевания озлобленного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Feroce", "name_pt_PT": "Insígnia da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145578, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271278, "buy_price": 1356393, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9627000093460083, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145579, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Dominance", "name_ko_KR": "사나운 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador feroz", "name_ru_RU": "Жетон господства озлобленного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Feroce", "name_pt_PT": "Distintivo da Dominância do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145579, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 272293, "buy_price": 1361465, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9663000106811523, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145578, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Dominance", "name_ko_KR": "사나운 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador feroz", "name_ru_RU": "Жетон господства озлобленного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Feroce", "name_pt_PT": "Distintivo da Dominância do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145580, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 468878, "buy_price": 2344392, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700000286102295, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145581, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Dominance", "name_ko_KR": "사나운 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador feroz", "name_ru_RU": "Акколада господства озлобленного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Feroce", "name_pt_PT": "Galardão da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145581, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 470666, "buy_price": 2353334, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9736999869346619, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145580, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Dominance", "name_ko_KR": "사나운 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador feroz", "name_ru_RU": "Акколада господства озлобленного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Feroce", "name_pt_PT": "Galardão da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145582, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1809, "buy_price": 9045, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.977400004863739, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145583, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Dominance", "name_ko_KR": "사나운 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador feroz", "name_ru_RU": "Знак господства озлобленного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Feroce", "name_pt_PT": "Insígnia da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145583, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1815, "buy_price": 9079, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9810000061988831, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145582, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Dominance", "name_ko_KR": "사나운 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador feroz", "name_ru_RU": "Знак господства озлобленного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Feroce", "name_pt_PT": "Insígnia da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145584, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277478, "buy_price": 1387390, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847000241279602, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145585, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Victory", "name_ko_KR": "사나운 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur féroce", "name_de_DE": "Siegesabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador feroz", "name_ru_RU": "Жетон победы озлобленного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Feroce", "name_pt_PT": "Distintivo da Vitória do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145585, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 278520, "buy_price": 1392603, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883999824523926, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145584, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Victory", "name_ko_KR": "사나운 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur féroce", "name_de_DE": "Siegesabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador feroz", "name_ru_RU": "Жетон победы озлобленного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Feroce", "name_pt_PT": "Distintivo da Vitória do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145586, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 479561, "buy_price": 2397805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9921000003814697, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145587, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Victory", "name_ko_KR": "사나운 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador feroz", "name_ru_RU": "Акколада победы озлобленного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Feroce", "name_pt_PT": "Galardão da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145587, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 494110, "buy_price": 2470554, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145586, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Victory", "name_ko_KR": "사나운 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador feroz", "name_ru_RU": "Акколада победы озлобленного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Feroce", "name_pt_PT": "Galardão da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145588, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289087, "buy_price": 1445438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0259000062942505, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145589, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Victory", "name_ko_KR": "사나운 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur féroce", "name_de_DE": "Siegesinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador feroz", "name_ru_RU": "Знак победы озлобленного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Feroce", "name_pt_PT": "Insígnia da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145589, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290130, "buy_price": 1450651, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0296000242233276, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145588, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Victory", "name_ko_KR": "사나운 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur féroce", "name_de_DE": "Siegesinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador feroz", "name_ru_RU": "Знак победы озлобленного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Feroce", "name_pt_PT": "Insígnia da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145818, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293230, "buy_price": 1466150, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405999422073364, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145819, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Conquest", "name_ko_KR": "사나운 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador feroz", "name_ru_RU": "Жетон завоевания озлобленного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Feroce", "name_pt_PT": "Distintivo da Conquista do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145819, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294272, "buy_price": 1471363, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0442999601364136, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145818, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Conquest", "name_ko_KR": "사나운 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador feroz", "name_ru_RU": "Жетон завоевания озлобленного гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Feroce", "name_pt_PT": "Distintivo da Conquista do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145820, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524311, "buy_price": 2621556, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0478999614715576, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145821, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Conquest", "name_ko_KR": "사나운 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador feroz", "name_ru_RU": "Акколада завоевания озлобленного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Feroce", "name_pt_PT": "Galardão da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145821, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 476078, "buy_price": 2380390, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9514999985694885, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145820, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Conquest", "name_ko_KR": "사나운 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador feroz", "name_ru_RU": "Акколада завоевания озлобленного гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Feroce", "name_pt_PT": "Galardão da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145822, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269165, "buy_price": 1345826, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9552000164985657, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145823, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Conquest", "name_ko_KR": "사나운 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador feroz", "name_ru_RU": "Знак завоевания озлобленного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Feroce", "name_pt_PT": "Insígnia da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145823, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270207, "buy_price": 1351039, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145822, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Conquest", "name_ko_KR": "사나운 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador feroz", "name_ru_RU": "Знак завоевания озлобленного гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Feroce", "name_pt_PT": "Insígnia da Conquista do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145824, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271222, "buy_price": 1356111, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624999761581421, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145825, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Dominance", "name_ko_KR": "사나운 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador feroz", "name_ru_RU": "Жетон господства озлобленного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Feroce", "name_pt_PT": "Distintivo da Dominância do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145825, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 272264, "buy_price": 1361324, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145824, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Dominance", "name_ko_KR": "사나운 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador feroz", "name_ru_RU": "Жетон господства озлобленного гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Feroce", "name_pt_PT": "Distintivo da Dominância do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145826, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 485284, "buy_price": 2426422, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145827, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Dominance", "name_ko_KR": "사나운 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador feroz", "name_ru_RU": "Акколада господства озлобленного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Feroce", "name_pt_PT": "Galardão da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145827, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 487085, "buy_price": 2435428, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9735000133514404, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145826, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Dominance", "name_ko_KR": "사나운 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador feroz", "name_ru_RU": "Акколада господства озлобленного гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Feroce", "name_pt_PT": "Galardão da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145828, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1857, "buy_price": 9289, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0037000179290771, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145829, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Dominance", "name_ko_KR": "사나운 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador feroz", "name_ru_RU": "Знак господства озлобленного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Feroce", "name_pt_PT": "Insígnia da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145829, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1864, "buy_price": 9323, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0074000358581543, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145828, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Dominance", "name_ko_KR": "사나운 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador feroz", "name_ru_RU": "Знак господства озлобленного гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Feroce", "name_pt_PT": "Insígnia da Dominância do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145830, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284917, "buy_price": 1424586, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0111000537872314, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145831, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Victory", "name_ko_KR": "사나운 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur féroce", "name_de_DE": "Siegesabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador feroz", "name_ru_RU": "Жетон победы озлобленного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Feroce", "name_pt_PT": "Distintivo da Vitória do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145831, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 285931, "buy_price": 1429658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0147000551223755, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145830, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Badge of Victory", "name_ko_KR": "사나운 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur féroce", "name_de_DE": "Siegesabzeichen des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador feroz", "name_ru_RU": "Жетон победы озлобленного гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Feroce", "name_pt_PT": "Distintivo da Vitória do Gladiador Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145832, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 509551, "buy_price": 2547755, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.018399953842163, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145833, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Victory", "name_ko_KR": "사나운 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador feroz", "name_ru_RU": "Акколада победы озлобленного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Feroce", "name_pt_PT": "Galardão da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145833, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 511402, "buy_price": 2557012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145832, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Accolade of Victory", "name_ko_KR": "사나운 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador feroz", "name_ru_RU": "Акколада победы озлобленного гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Feroce", "name_pt_PT": "Galardão da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145834, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289059, "buy_price": 1445297, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0257999897003174, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145835, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Victory", "name_ko_KR": "사나운 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur féroce", "name_de_DE": "Siegesinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador feroz", "name_ru_RU": "Знак победы озлобленного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Feroce", "name_pt_PT": "Insígnia da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 145835, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 290074, "buy_price": 1450370, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0293999910354614, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 145834, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13298, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ferocious Gladiator's Insignia of Victory", "name_ko_KR": "사나운 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur féroce", "name_de_DE": "Siegesinsigne des grimmigen Gladiators", "name_zh_CN": "凶猛角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador feroz", "name_ru_RU": "Знак победы озлобленного гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Feroce", "name_pt_PT": "Insígnia da Vitória do Gladiador Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146064, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 219901, "buy_price": 1099507, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405000448226929, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146065, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Conquest", "name_ko_KR": "사나운 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente feroz", "name_ru_RU": "Жетон завоевания озлобленного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Feroce", "name_pt_PT": "Distintivo da Conquista do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146065, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 220662, "buy_price": 1103311, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044100046157837, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146064, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Conquest", "name_ko_KR": "사나운 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant féroce", "name_de_DE": "Eroberungsabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente feroz", "name_ru_RU": "Жетон завоевания озлобленного бойца", "name_it_IT": "Distintivo della Conquista del Combattente Feroce", "name_pt_PT": "Distintivo da Conquista do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146066, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 376308, "buy_price": 1881544, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0477999448776245, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146067, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Conquest", "name_ko_KR": "사나운 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente feroz", "name_ru_RU": "Акколада завоевания озлобленного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Feroce", "name_pt_PT": "Galardão da Conquista do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146067, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 341687, "buy_price": 1708437, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146066, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Conquest", "name_ko_KR": "사나운 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant féroce", "name_de_DE": "Eroberungsauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente feroz", "name_ru_RU": "Акколада завоевания озлобленного бойца", "name_it_IT": "Decorazione della Conquista del Combattente Feroce", "name_pt_PT": "Galardão da Conquista do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146068, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 201831, "buy_price": 1009158, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9549999833106995, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146069, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Conquest", "name_ko_KR": "사나운 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente feroz", "name_ru_RU": "Знак завоевания озлобленного бойца", "name_it_IT": "Fregio della Conquista del Combattente Feroce", "name_pt_PT": "Insígnia da Conquista do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146069, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208214, "buy_price": 1041070, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146068, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Conquest", "name_ko_KR": "사나운 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant féroce", "name_de_DE": "Eroberungsinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente feroz", "name_ru_RU": "Знак завоевания озлобленного бойца", "name_it_IT": "Fregio della Conquista del Combattente Feroce", "name_pt_PT": "Insígnia da Conquista do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146070, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208996, "buy_price": 1044980, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9889000058174133, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146071, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Dominance", "name_ko_KR": "사나운 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente feroz", "name_ru_RU": "Жетон господства озлобленного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Feroce", "name_pt_PT": "Distintivo da Dominância do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146071, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 209778, "buy_price": 1048890, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926000237464905, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146070, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Dominance", "name_ko_KR": "사나운 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant féroce", "name_de_DE": "Vorherrschaftsabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente feroz", "name_ru_RU": "Жетон господства озлобленного бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Feroce", "name_pt_PT": "Distintivo da Dominância do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146072, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 357777, "buy_price": 1788885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962000250816345, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146073, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Dominance", "name_ko_KR": "사나운 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente feroz", "name_ru_RU": "Акколада господства озлобленного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Feroce", "name_pt_PT": "Galardão da Dominância do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146073, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 359105, "buy_price": 1795529, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998999834060669, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146072, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Dominance", "name_ko_KR": "사나운 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant féroce", "name_de_DE": "Vorherrschaftsauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente feroz", "name_ru_RU": "Акколада господства озлобленного бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Feroce", "name_pt_PT": "Galardão da Dominância do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146074, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1393, "buy_price": 6966, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146075, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Dominance", "name_ko_KR": "사나운 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente feroz", "name_ru_RU": "Знак господства озлобленного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Feroce", "name_pt_PT": "Insígnia da Dominância do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146075, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1398, "buy_price": 6991, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0073000192642212, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146074, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Dominance", "name_ko_KR": "사나운 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant féroce", "name_de_DE": "Vorherrschaftsinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente feroz", "name_ru_RU": "Знак господства озлобленного бойца", "name_it_IT": "Fregio della Dominazione del Combattente Feroce", "name_pt_PT": "Insígnia da Dominância do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146076, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 213645, "buy_price": 1068228, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0109000205993652, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146077, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Victory", "name_ko_KR": "사나운 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant féroce", "name_de_DE": "Siegesabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente feroz", "name_ru_RU": "Жетон победы озлобленного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Feroce", "name_pt_PT": "Distintivo da Vitória do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146077, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214427, "buy_price": 1072138, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0146000385284424, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146076, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Badge of Victory", "name_ko_KR": "사나운 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant féroce", "name_de_DE": "Siegesabzeichen des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente feroz", "name_ru_RU": "Жетон победы озлобленного бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Feroce", "name_pt_PT": "Distintivo da Vitória do Combatente Feroz", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146078, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 365714, "buy_price": 1828570, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146079, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Victory", "name_ko_KR": "사나운 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente feroz", "name_ru_RU": "Акколада победы озлобленного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Feroce", "name_pt_PT": "Galardão da Vitória do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146079, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367042, "buy_price": 1835214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219999551773071, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146078, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Accolade of Victory", "name_ko_KR": "사나운 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant féroce", "name_de_DE": "Siegesauszeichnung des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente feroz", "name_ru_RU": "Акколада победы озлобленного бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Feroce", "name_pt_PT": "Galardão da Vitória do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146080, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 216752, "buy_price": 1083762, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255999565124512, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146081, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Victory", "name_ko_KR": "사나운 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant féroce", "name_de_DE": "Siegesinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente feroz", "name_ru_RU": "Знак победы озлобленного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Feroce", "name_pt_PT": "Insígnia da Vitória do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 146081, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ferocious Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217534, "buy_price": 1087671, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0292999744415283, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 146080, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13297, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Ferocious Combatant's Insignia of Victory", "name_ko_KR": "사나운 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant féroce", "name_de_DE": "Siegesinsigne des grimmigen Kämpfers", "name_zh_CN": "凶猛争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente feroz", "name_ru_RU": "Знак победы озлобленного бойца", "name_it_IT": "Fregio della Vittoria del Combattente Feroce", "name_pt_PT": "Insígnia da Vitória do Combatente Feroz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 147002, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of the Rising Tide", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294357, "buy_price": 1471786, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Charm of the Rising Tide", "name_ko_KR": "일어나는 물결의 부적", "name_fr_FR": "Charme de la marée montante", "name_de_DE": "Talisman der steigenden Flut", "name_zh_CN": "涨潮符咒", "name_es_ES": "Talismán de marea creciente", "name_ru_RU": "Талисман поднимающегося прилива", "name_it_IT": "Talismano delle Marea Crescente", "name_pt_PT": "Patuá da Maré Alta", "on_use": true, "id_encounter": 1856, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147003, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Barbaric Mindslaver", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295399, "buy_price": 1476999, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Barbaric Mindslaver", "name_ko_KR": "야만적인 정신지배자", "name_fr_FR": "Charme-esprit barbare", "name_de_DE": "Barbarischer Gedankenknechter", "name_zh_CN": "野蛮驭灵器", "name_es_ES": "Doblegamentes barbárico", "name_ru_RU": "Варварский поработитель разума", "name_it_IT": "Schiavista Barbarico", "name_pt_PT": "Mentecaptor Bárbaro", "on_use": false, "id_encounter": 1867, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147004, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sea Star of the Depthmother", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 268235, "buy_price": 1341176, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9519000053405762, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Sea Star of the Depthmother", "name_ko_KR": "심연의 여왕의 불가사리", "name_fr_FR": "Astérie de la Mère des profondeurs", "name_de_DE": "Meeresstern der Tiefenmutter", "name_zh_CN": "深海主母的海星", "name_es_ES": "Estrella de mar de La Madre de las Profundidades", "name_ru_RU": "Морская звезда Матери Глубин", "name_it_IT": "Stella Marina della Madre delle Profondità", "name_pt_PT": "Estrela Marinha da Mãe do Abismo", "on_use": false, "id_encounter": 1861, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147005, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chalice of Moonlight", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269277, "buy_price": 1346389, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9556000232696533, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Chalice of Moonlight", "name_ko_KR": "달빛의 성배", "name_fr_FR": "Calice du clair de lune", "name_de_DE": "Kelch des Mondlichts", "name_zh_CN": "月光圣杯", "name_es_ES": "Cáliz de luz de luna", "name_ru_RU": "Чаша лунного света", "name_it_IT": "Calice del Chiaro di Luna", "name_pt_PT": "Cálice do Luar", "on_use": false, "id_encounter": 1903, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147006, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Archive of Faith", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270292, "buy_price": 1351462, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592000246047974, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Archive of Faith", "name_ko_KR": "신념의 기록", "name_fr_FR": "Archive de foi", "name_de_DE": "Archiv des Glaubens", "name_zh_CN": "信仰档案", "name_es_ES": "Archivo de fe", "name_ru_RU": "Архив веры", "name_it_IT": "Archivio della Fede", "name_pt_PT": "Arquivo da Fé", "on_use": true, "id_encounter": 1873, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147007, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Deceiver's Grand Design", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271335, "buy_price": 1356675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9628999829292297, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "The Deceiver's Grand Design", "name_ko_KR": "기만자의 대계", "name_fr_FR": "Grand dessein du Trompeur", "name_de_DE": "Des Betrügers großer Plan", "name_zh_CN": "欺诈者的伟大蓝图", "name_es_ES": "Gran plan del Impostor", "name_ru_RU": "Великое творение Искусителя", "name_it_IT": "Grande Piano dell'Ingannatore", "name_pt_PT": "Grã Marca do Enganador", "on_use": true, "id_encounter": 1898, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147009, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infernal Cinders", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273420, "buy_price": 1367101, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.970300018787384, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Infernal Cinders", "name_ko_KR": "지옥불 잿불", "name_fr_FR": "Cendres infernales", "name_de_DE": "Höllenasche", "name_zh_CN": "地狱火余烬", "name_es_ES": "Cenizas infernales", "name_ru_RU": "Инфернальные угли", "name_it_IT": "Braci Infernali", "name_pt_PT": "Cinzas Infernais", "on_use": false, "id_encounter": 1862, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147010, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cradle of Anguish", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274434, "buy_price": 1372173, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739000201225281, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Cradle of Anguish", "name_ko_KR": "고통의 요람", "name_fr_FR": "Berceau d'angoisse", "name_de_DE": "Wiege des Kummers", "name_zh_CN": "痛苦摇篮", "name_es_ES": "Cuna de angustia", "name_ru_RU": "Колыбель страданий", "name_it_IT": "Culla dell'Angoscia", "name_pt_PT": "Germe da Angústia", "on_use": false, "id_encounter": 1867, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147011, "race_mask": 18446744073709551615, "desc": "Once more, with eeling.", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Ceaseless Toxins", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275477, "buy_price": 1377386, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Ceaseless Toxins", "name_ko_KR": "멎지 않는 독이 든 병", "name_fr_FR": "Fiole de toxines persistantes", "name_de_DE": "Phiole des unablässigen Toxins", "name_zh_CN": "无尽毒药之瓶", "name_es_ES": "Vial de toxinas incesantes", "name_ru_RU": "Фиал бесконечной отравы", "name_it_IT": "Fiala di Tossine Incessanti", "name_pt_PT": "Ampola de Toxinas Incessantes", "on_use": true, "id_encounter": 1861, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147012, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Umbral Moonglaives", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276519, "buy_price": 1382599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9812999963760376, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Umbral Moonglaives", "name_ko_KR": "암영의 반월도", "name_fr_FR": "Glaives lunaires ombreux", "name_de_DE": "Umbralmondgleven", "name_zh_CN": "阴影月刃", "name_es_ES": "Gujas lunares umbrías", "name_ru_RU": "Лунные глефы затмения", "name_it_IT": "Lame Lunari Ombrose", "name_pt_PT": "Glaives Lunares do Umbral", "on_use": true, "id_encounter": 1903, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147015, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Engine of Eradication", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279619, "buy_price": 1398098, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Engine of Eradication", "name_ko_KR": "박멸의 기계", "name_fr_FR": "Vecteur d'éradication", "name_de_DE": "Auslöschungsmaschine", "name_zh_CN": "灭绝引擎", "name_es_ES": "Dispositivo de erradicación", "name_ru_RU": "Двигатель искоренения", "name_it_IT": "Congegno dell'Estirpazione", "name_pt_PT": "Engenho da Erradicação", "on_use": false, "id_encounter": 1897, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terror From Below", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1843, "buy_price": 9217, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Terror From Below", "name_ko_KR": "아래에서 덮치는 공포", "name_fr_FR": "Terreur des profondeurs", "name_de_DE": "Schrecken aus der Tiefe", "name_zh_CN": "地底恐惧", "name_es_ES": "Terror de las profundidades", "name_ru_RU": "Ужас из глубин", "name_it_IT": "Terrore dagli Abissi", "name_pt_PT": "O Horror que Vem de Baixo", "on_use": false, "id_encounter": 1861, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147017, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tarnished Sentinel Medallion", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1850, "buy_price": 9251, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9995999932289124, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Tarnished Sentinel Medallion", "name_ko_KR": "빛바랜 파수꾼 메달", "name_fr_FR": "Médaillon de sentinelle terni", "name_de_DE": "Angelaufenes Schildwachenmedaillon", "name_zh_CN": "生锈的哨兵奖章", "name_es_ES": "Medallón de centinela deslustrado", "name_ru_RU": "Потускневший медальон часового", "name_it_IT": "Medaglione Annerito della Sentinella", "name_pt_PT": "Medalhão da Sentinela Maculada", "on_use": true, "id_encounter": 1903, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spectral Thurible", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1906, "buy_price": 9530, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298000574111938, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Spectral Thurible", "name_ko_KR": "유령의 훈로", "name_fr_FR": "Encensoir spectral", "name_de_DE": "Spektrales Weihrauchfass", "name_zh_CN": "幽魂香炉", "name_es_ES": "Turíbulo espectral", "name_ru_RU": "Призрачное кадило", "name_it_IT": "Turibolo Spettrale", "name_pt_PT": "Turíbulo Espectral", "on_use": false, "id_encounter": 1896, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147019, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Unraveling Sanity", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1913, "buy_price": 9565, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Tome of Unraveling Sanity", "name_ko_KR": "해체되는 이성의 고서", "name_fr_FR": "Tome de la raison déclinante", "name_de_DE": "Foliant des zerrinnenden Verstands", "name_zh_CN": "醒神宝典", "name_es_ES": "Tomo de cordura desenredada", "name_ru_RU": "Фолиант слабеющего рассудка", "name_it_IT": "Tomo della Sanità Svanente", "name_pt_PT": "Tomo da Sanidade Deslindante", "on_use": true, "id_encounter": 1898, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147022, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Feverish Carapace", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294329, "buy_price": 1471645, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0444999933242798, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Feverish Carapace", "name_ko_KR": "열병의 등껍질", "name_fr_FR": "Carapace fiévreuse", "name_de_DE": "Fiebriger Rückenpanzer", "name_zh_CN": "狂热甲壳", "name_es_ES": "Caparazón febril", "name_ru_RU": "Лихорадочный панцирь", "name_it_IT": "Carapace Febbrile", "name_pt_PT": "Carapaça Febril", "on_use": false, "id_encounter": 1862, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leviathan's Hunger", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295371, "buy_price": 1476858, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048200011253357, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Leviathan's Hunger", "name_ko_KR": "거대괴수의 굶주림", "name_fr_FR": "Faim du Léviathan", "name_de_DE": "Hunger des Leviathans", "name_zh_CN": "巨兽之饥", "name_es_ES": "Hambre de leviatán", "name_ru_RU": "Голод левиафана", "name_it_IT": "Fame del Leviatano", "name_pt_PT": "Fome do Leviatã", "on_use": true, "id_encounter": 1861, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147024, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reliquary of the Damned", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 268207, "buy_price": 1341035, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9517999887466431, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Reliquary of the Damned", "name_ko_KR": "저주받은 자의 성물함", "name_fr_FR": "Reliquaire des damnés", "name_de_DE": "Reliquiar der Verdammten", "name_zh_CN": "诅咒者的骨匣", "name_es_ES": "Relicario de los malditos", "name_ru_RU": "Реликварий проклятых", "name_it_IT": "Reliquiario del Dannato", "name_pt_PT": "Relicário dos Malditos", "on_use": true, "id_encounter": 1896, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147025, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recompiled Guardian Module", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269221, "buy_price": 1346108, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Recompiled Guardian Module", "name_ko_KR": "다시 컴파일한 수호자 모듈", "name_fr_FR": "Module gardien recompilé", "name_de_DE": "Rekonfiguriertes Wächtermodul", "name_zh_CN": "重新编译的守护者模块", "name_es_ES": "Módulo de guardián recopilado", "name_ru_RU": "Перекомпилированный модуль стража", "name_it_IT": "Modulo del Guardiano Ricompilato", "name_pt_PT": "Módulo do Guardião Recompilado", "on_use": false, "id_encounter": 1897, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shifting Cosmic Sliver", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 270264, "buy_price": 1351321, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9591000080108643, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Shifting Cosmic Sliver", "name_ko_KR": "아른거리는 우주 파편", "name_fr_FR": "Esquille cosmique changeante", "name_de_DE": "Unbeständiger kosmischer Splitter", "name_zh_CN": "变幻宇宙裂片", "name_es_ES": "Esquirla cósmica cambiante", "name_ru_RU": "Переливчатый космический осколок", "name_it_IT": "Scaglia Cosmica di Fase", "name_pt_PT": "Lasca Cósmica Cambiante", "on_use": true, "id_encounter": 1898, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 147275, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beguiler's Talisman", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67705, "buy_price": 338526, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 0.9965000152587891, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Beguiler's Talisman", "name_ko_KR": "현혹의 부적", "name_fr_FR": "Talisman de l'endormeur", "name_de_DE": "Talisman des Blenders", "name_zh_CN": "欺诈者的护符", "name_es_ES": "Talismán de cautivador", "name_ru_RU": "Талисман обманщика", "name_it_IT": "Talismano dell'Impostore", "name_pt_PT": "Talismã do Encantador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 147276, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spellbinder's Seal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67956, "buy_price": 339783, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.0002000331878662, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Spellbinder's Seal", "name_ko_KR": "역술사의 인장", "name_fr_FR": "Sceau du lieur de sort", "name_de_DE": "Siegel des Zauberbinders", "name_zh_CN": "缚法者之印", "name_es_ES": "Sello de vinculahechizos", "name_ru_RU": "Печать чароплета", "name_it_IT": "Sigillo del Vincolamagie", "name_pt_PT": "Selo do Mesmerizador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 147278, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stalwart Crest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68452, "buy_price": 342263, "vendor_stack": 1, "unk_2": 0.30000001192092896, "unk_1": 1.0075000524520874, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Stalwart Crest", "name_ko_KR": "옹골진 문장", "name_fr_FR": "Ecu infrangible", "name_de_DE": "Wappen der Tapferen", "name_zh_CN": "坚定纹章", "name_es_ES": "Blasón de adepto", "name_ru_RU": "Стойкий герб", "name_it_IT": "Amuleto Animoso", "name_pt_PT": "Brasão Impávido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148105, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279704, "buy_price": 1398520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926000237464905, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148106, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador fiero", "name_ru_RU": "Жетон завоевания неудержимого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Violento", "name_pt_PT": "Distintivo da Conquista do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148106, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280718, "buy_price": 1403593, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962000250816345, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148105, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador fiero", "name_ru_RU": "Жетон завоевания неудержимого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Violento", "name_pt_PT": "Distintivo da Conquista do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148107, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 743435, "buy_price": 3717177, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998999834060669, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148108, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador fiero", "name_ru_RU": "Акколада завоевания неудержимого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Violento", "name_pt_PT": "Galardão da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148108, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 746186, "buy_price": 3730932, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148107, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador fiero", "name_ru_RU": "Акколада завоевания неудержимого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Violento", "name_pt_PT": "Galardão da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148109, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283818, "buy_price": 1419091, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007200002670288, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148110, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador fiero", "name_ru_RU": "Знак завоевания неудержимого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Violento", "name_pt_PT": "Insígnia da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148110, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284860, "buy_price": 1424304, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0109000205993652, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148109, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador fiero", "name_ru_RU": "Знак завоевания неудержимого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Violento", "name_pt_PT": "Insígnia da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148111, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293370, "buy_price": 1466854, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041100025177002, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148112, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador fiero", "name_ru_RU": "Жетон господства неудержимого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Violento", "name_pt_PT": "Distintivo da Dominância do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148112, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294413, "buy_price": 1472067, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044800043106079, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148111, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador fiero", "name_ru_RU": "Жетон господства неудержимого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Violento", "name_pt_PT": "Distintivo da Dominância do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148113, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 779495, "buy_price": 3897478, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0484000444412231, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148114, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador fiero", "name_ru_RU": "Акколада господства неудержимого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Violento", "name_pt_PT": "Galardão da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148114, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 707821, "buy_price": 3539106, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520000219345093, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148113, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador fiero", "name_ru_RU": "Акколада господства неудержимого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Violento", "name_pt_PT": "Galardão da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148115, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1769, "buy_price": 8845, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9556999802589417, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148116, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador fiero", "name_ru_RU": "Знак господства неудержимого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Violento", "name_pt_PT": "Insígnia da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148116, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1775, "buy_price": 8879, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9593999981880188, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148115, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador fiero", "name_ru_RU": "Знак господства неудержимого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Violento", "name_pt_PT": "Insígnia da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148117, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271363, "buy_price": 1356816, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9629999995231628, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148118, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Victory", "name_ko_KR": "맹렬한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador fiero", "name_ru_RU": "Жетон победы неудержимого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Violento", "name_pt_PT": "Distintivo da Vitória do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148118, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 272405, "buy_price": 1362029, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.96670001745224, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148117, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Victory", "name_ko_KR": "맹렬한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador fiero", "name_ru_RU": "Жетон победы неудержимого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Violento", "name_pt_PT": "Distintivo da Vitória do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148119, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 721501, "buy_price": 3607509, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9703999757766724, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148120, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Victory", "name_ko_KR": "맹렬한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador fiero", "name_ru_RU": "Акколада победы неудержимого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Violento", "name_pt_PT": "Galardão da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148120, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 724252, "buy_price": 3621264, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9740999937057495, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148119, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Victory", "name_ko_KR": "맹렬한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador fiero", "name_ru_RU": "Акколада победы неудержимого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Violento", "name_pt_PT": "Galardão da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148121, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275505, "buy_price": 1377527, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9776999950408936, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148122, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Victory", "name_ko_KR": "맹렬한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador fiero", "name_ru_RU": "Знак победы неудержимого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Violento", "name_pt_PT": "Insígnia da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148122, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276548, "buy_price": 1382740, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9814000129699707, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148121, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Victory", "name_ko_KR": "맹렬한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador fiero", "name_ru_RU": "Знак победы неудержимого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Violento", "name_pt_PT": "Insígnia da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148351, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279647, "buy_price": 1398239, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9923999905586243, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148352, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador fiero", "name_ru_RU": "Жетон завоевания неудержимого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Violento", "name_pt_PT": "Distintivo da Conquista do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148352, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288157, "buy_price": 1440789, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226000547409058, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148351, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador fiero", "name_ru_RU": "Жетон завоевания неудержимого гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Violento", "name_pt_PT": "Distintivo da Conquista do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148353, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 763064, "buy_price": 3815320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262999534606934, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148354, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador fiero", "name_ru_RU": "Акколада завоевания неудержимого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Violento", "name_pt_PT": "Galardão da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148354, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 765740, "buy_price": 3828703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148353, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador fiero", "name_ru_RU": "Акколада завоевания неудержимого гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Violento", "name_pt_PT": "Galardão da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148355, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 291257, "buy_price": 1456287, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148356, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador fiero", "name_ru_RU": "Знак завоевания неудержимого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Violento", "name_pt_PT": "Insígnia da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148356, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292300, "buy_price": 1461500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0372999906539917, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148355, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Conquest", "name_ko_KR": "맹렬한 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador fiero", "name_ru_RU": "Знак завоевания неудержимого гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Violento", "name_pt_PT": "Insígnia da Conquista do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148357, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293342, "buy_price": 1466713, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0410000085830688, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148358, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador fiero", "name_ru_RU": "Жетон господства неудержимого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Violento", "name_pt_PT": "Distintivo da Dominância do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148358, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294357, "buy_price": 1471786, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148357, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador fiero", "name_ru_RU": "Жетон господства неудержимого гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Violento", "name_pt_PT": "Distintivo da Dominância do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148359, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 779421, "buy_price": 3897106, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148360, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador fiero", "name_ru_RU": "Акколада господства неудержимого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Violento", "name_pt_PT": "Galardão da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148360, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 707747, "buy_price": 3538735, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9519000053405762, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148359, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador fiero", "name_ru_RU": "Акколада господства неудержимого гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Violento", "name_pt_PT": "Galardão da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148361, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1768, "buy_price": 8844, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9556000232696533, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148362, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador fiero", "name_ru_RU": "Знак господства неудержимого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Violento", "name_pt_PT": "Insígnia da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148362, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1775, "buy_price": 8877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592000246047974, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148361, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Dominance", "name_ko_KR": "맹렬한 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador fiero", "name_ru_RU": "Знак господства неудержимого гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Violento", "name_pt_PT": "Insígnia da Dominância do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148363, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 271335, "buy_price": 1356675, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9628999829292297, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148364, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Victory", "name_ko_KR": "맹렬한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador fiero", "name_ru_RU": "Жетон победы неудержимого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Violento", "name_pt_PT": "Distintivo da Vitória do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148364, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 272377, "buy_price": 1361888, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9666000008583069, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148363, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Badge of Victory", "name_ko_KR": "맹렬한 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador fiero", "name_ru_RU": "Жетон победы неудержимого гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Violento", "name_pt_PT": "Distintivo da Vitória do Gladiador Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148365, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 721353, "buy_price": 3606766, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9702000021934509, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148366, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Victory", "name_ko_KR": "맹렬한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador fiero", "name_ru_RU": "Акколада победы неудержимого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Violento", "name_pt_PT": "Galardão da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148366, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 724104, "buy_price": 3620521, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739000201225281, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148365, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Accolade of Victory", "name_ko_KR": "맹렬한 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador fiero", "name_ru_RU": "Акколада победы неудержимого гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Violento", "name_pt_PT": "Galardão da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148367, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275477, "buy_price": 1377386, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148368, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Victory", "name_ko_KR": "맹렬한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador fiero", "name_ru_RU": "Знак победы неудержимого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Violento", "name_pt_PT": "Insígnia da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148368, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283987, "buy_price": 1419936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0077999830245972, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148367, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13300, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Fierce Gladiator's Insignia of Victory", "name_ko_KR": "맹렬한 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Gladiators", "name_zh_CN": "暴烈角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador fiero", "name_ru_RU": "Знак победы неудержимого гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Violento", "name_pt_PT": "Insígnia da Vitória do Gladiador Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148598, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288129, "buy_price": 1440648, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0225000381469727, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148599, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Conquest", "name_ko_KR": "군림하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador dominante", "name_ru_RU": "Жетон завоевания господствующего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Dominante", "name_pt_PT": "Distintivo da Conquista do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148599, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289144, "buy_price": 1445720, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0261000394821167, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148598, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Conquest", "name_ko_KR": "군림하는 검투사의 정복 휘장", "name_fr_FR": "Écusson de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador dominante", "name_ru_RU": "Жетон завоевания господствующего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Dominante", "name_pt_PT": "Distintivo da Conquista do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148600, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 497784, "buy_price": 2488922, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298000574111938, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148601, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Conquest", "name_ko_KR": "군림하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador dominante", "name_ru_RU": "Акколада завоевания господствующего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Dominante", "name_pt_PT": "Galardão da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148601, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499573, "buy_price": 2497865, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148600, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Conquest", "name_ko_KR": "군림하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador dominante", "name_ru_RU": "Акколада завоевания господствующего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Dominante", "name_pt_PT": "Galardão da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148602, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292271, "buy_price": 1461359, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0371999740600586, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148603, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Conquest", "name_ko_KR": "군림하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador dominante", "name_ru_RU": "Знак завоевания господствующего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Dominante", "name_pt_PT": "Insígnia da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148603, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293286, "buy_price": 1466432, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0407999753952026, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148602, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Conquest", "name_ko_KR": "군림하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador dominante", "name_ru_RU": "Знак завоевания господствующего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Dominante", "name_pt_PT": "Insígnia da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148604, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294329, "buy_price": 1471645, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0444999933242798, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148605, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Dominance", "name_ko_KR": "군림하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador dominante", "name_ru_RU": "Жетон господства господствующего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Dominante", "name_pt_PT": "Distintivo da Dominância do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148605, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295371, "buy_price": 1476858, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048200011253357, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148604, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Dominance", "name_ko_KR": "군림하는 검투사의 지배 휘장", "name_fr_FR": "Écusson de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador dominante", "name_ru_RU": "Жетон господства господствующего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Dominante", "name_pt_PT": "Distintivo da Dominância do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148606, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 460032, "buy_price": 2300162, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95169997215271, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148607, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Dominance", "name_ko_KR": "군림하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador dominante", "name_ru_RU": "Акколада господства господствующего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Dominante", "name_pt_PT": "Galardão da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148607, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 461821, "buy_price": 2309105, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148606, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Dominance", "name_ko_KR": "군림하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador dominante", "name_ru_RU": "Акколада господства господствующего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Dominante", "name_pt_PT": "Galardão da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148608, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1775, "buy_price": 8876, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9591000080108643, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148609, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Dominance", "name_ko_KR": "군림하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador dominante", "name_ru_RU": "Знак господства господствующего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Dominante", "name_pt_PT": "Insígnia da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148609, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1831, "buy_price": 9155, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989300012588501, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148608, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Dominance", "name_ko_KR": "군림하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador dominante", "name_ru_RU": "Знак господства господствующего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Dominante", "name_pt_PT": "Insígnia da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148610, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279788, "buy_price": 1398943, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.992900013923645, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148611, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Victory", "name_ko_KR": "군림하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador dominante", "name_ru_RU": "Жетон победы господствующего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Dominante", "name_pt_PT": "Distintivo da Vitória do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148611, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280831, "buy_price": 1404156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148610, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Victory", "name_ko_KR": "군림하는 검투사의 승리 휘장", "name_fr_FR": "Écusson de victoire du gladiateur autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador dominante", "name_ru_RU": "Жетон победы господствующего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Dominante", "name_pt_PT": "Distintivo da Vitória do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148612, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483524, "buy_price": 2417624, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003000497817993, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148613, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Victory", "name_ko_KR": "군림하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador dominante", "name_ru_RU": "Акколада победы господствующего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Dominante", "name_pt_PT": "Galardão da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148613, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 485313, "buy_price": 2426566, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148612, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Victory", "name_ko_KR": "군림하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador dominante", "name_ru_RU": "Акколада победы господствующего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Dominante", "name_pt_PT": "Galardão da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148614, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283930, "buy_price": 1419654, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.007599949836731, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148615, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Victory", "name_ko_KR": "군림하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur autoritaire", "name_de_DE": "Siegesinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador dominante", "name_ru_RU": "Знак победы господствующего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Dominante", "name_pt_PT": "Insígnia da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148615, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284973, "buy_price": 1424868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.011299967765808, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148614, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Victory", "name_ko_KR": "군림하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur autoritaire", "name_de_DE": "Siegesinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador dominante", "name_ru_RU": "Знак победы господствующего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Dominante", "name_pt_PT": "Insígnia da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148844, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 288073, "buy_price": 1440366, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0223000049591064, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148845, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Conquest", "name_ko_KR": "군림하는 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador dominante", "name_ru_RU": "Жетон завоевания господствующего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Dominante", "name_pt_PT": "Distintivo da Conquista do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148845, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289115, "buy_price": 1445579, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0260000228881836, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148844, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Conquest", "name_ko_KR": "군림하는 검투사의 정복 휘장", "name_fr_FR": "Écusson de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador dominante", "name_ru_RU": "Жетон завоевания господствующего гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Dominante", "name_pt_PT": "Distintivo da Conquista do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148846, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 515205, "buy_price": 2576025, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0297000408172607, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148847, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Conquest", "name_ko_KR": "군림하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador dominante", "name_ru_RU": "Акколада завоевания господствующего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Dominante", "name_pt_PT": "Galardão da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148847, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 517006, "buy_price": 2585031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0333000421524048, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148846, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Conquest", "name_ko_KR": "군림하는 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador dominante", "name_ru_RU": "Акколада завоевания господствующего гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Dominante", "name_pt_PT": "Galardão da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148848, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 292215, "buy_price": 1461078, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0369999408721924, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148849, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Conquest", "name_ko_KR": "군림하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador dominante", "name_ru_RU": "Знак завоевания господствующего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Dominante", "name_pt_PT": "Insígnia da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148849, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 293258, "buy_price": 1466291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0406999588012695, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148848, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Conquest", "name_ko_KR": "군림하는 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador dominante", "name_ru_RU": "Знак завоевания господствующего гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Dominante", "name_pt_PT": "Insígnia da Conquista do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148850, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273561, "buy_price": 1367805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.97079998254776, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148851, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Dominance", "name_ko_KR": "군림하는 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador dominante", "name_ru_RU": "Жетон господства господствующего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Dominante", "name_pt_PT": "Distintivo da Dominância do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148851, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274575, "buy_price": 1372877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.974399983882904, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148850, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Dominance", "name_ko_KR": "군림하는 검투사의 지배 휘장", "name_fr_FR": "Écusson de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador dominante", "name_ru_RU": "Жетон господства господствующего гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Dominante", "name_pt_PT": "Distintivo da Dominância do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148852, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 489387, "buy_price": 2446936, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9781000018119812, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148853, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Dominance", "name_ko_KR": "군림하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador dominante", "name_ru_RU": "Акколада господства господствующего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Dominante", "name_pt_PT": "Galardão da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148853, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 491238, "buy_price": 2456192, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818000197410583, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148852, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Dominance", "name_ko_KR": "군림하는 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador dominante", "name_ru_RU": "Акколада господства господствующего гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Dominante", "name_pt_PT": "Galardão da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148854, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1824, "buy_price": 9120, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9854999780654907, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148855, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Dominance", "name_ko_KR": "군림하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador dominante", "name_ru_RU": "Знак господства господствующего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Dominante", "name_pt_PT": "Insígnia da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148855, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1830, "buy_price": 9154, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9890999794006348, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148854, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Dominance", "name_ko_KR": "군림하는 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador dominante", "name_ru_RU": "Знак господства господствующего гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Dominante", "name_pt_PT": "Insígnia da Dominância do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148856, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279760, "buy_price": 1398802, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9927999973297119, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148857, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Victory", "name_ko_KR": "군림하는 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador dominante", "name_ru_RU": "Жетон победы господствующего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Dominante", "name_pt_PT": "Distintivo da Vitória do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148857, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280803, "buy_price": 1404015, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965000152587891, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148856, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Badge of Victory", "name_ko_KR": "군림하는 검투사의 승리 휘장", "name_fr_FR": "Écusson de victoire du gladiateur autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador dominante", "name_ru_RU": "Жетон победы господствующего гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Dominante", "name_pt_PT": "Distintivo da Vitória do Gladiador Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148858, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 500444, "buy_price": 2502224, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0002000331878662, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148859, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Victory", "name_ko_KR": "군림하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador dominante", "name_ru_RU": "Акколада победы господствующего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Dominante", "name_pt_PT": "Galardão da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148859, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 502246, "buy_price": 2511230, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0038000345230103, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148858, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Accolade of Victory", "name_ko_KR": "군림하는 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador dominante", "name_ru_RU": "Акколада победы господствующего гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Dominante", "name_pt_PT": "Galardão da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148860, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 283902, "buy_price": 1419514, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0075000524520874, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148861, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Victory", "name_ko_KR": "군림하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur autoritaire", "name_de_DE": "Siegesinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador dominante", "name_ru_RU": "Знак победы господствующего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Dominante", "name_pt_PT": "Insígnia da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 148861, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284945, "buy_price": 1424727, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.011199951171875, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 148860, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13313, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Dominant Gladiator's Insignia of Victory", "name_ko_KR": "군림하는 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur autoritaire", "name_de_DE": "Siegesinsigne des dominanten Gladiators", "name_zh_CN": "专横角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador dominante", "name_ru_RU": "Знак победы господствующего гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Dominante", "name_pt_PT": "Insígnia da Vitória do Gladiador Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149090, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92624, "buy_price": 463124, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149091, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Conquest", "name_ko_KR": "악마적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador demoníaco", "name_ru_RU": "Жетон завоевания демонического гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Conquista do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149091, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86290, "buy_price": 431454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9523000121116638, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149090, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Conquest", "name_ko_KR": "악마적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador demoníaco", "name_ru_RU": "Жетон завоевания демонического гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Conquista do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149092, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86617, "buy_price": 433085, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559000134468079, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149093, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Conquest", "name_ko_KR": "악마적인 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador demoníaco", "name_ru_RU": "Акколада завоевания демонического гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149093, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86952, "buy_price": 434762, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595999717712402, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149092, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Conquest", "name_ko_KR": "악마적인 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador demoníaco", "name_ru_RU": "Акколада завоевания демонического гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149094, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87287, "buy_price": 436438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149095, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Conquest", "name_ko_KR": "악마적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador demoníaco", "name_ru_RU": "Знак завоевания демонического гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149095, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87622, "buy_price": 438114, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9670000076293945, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149094, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Conquest", "name_ko_KR": "악마적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador demoníaco", "name_ru_RU": "Знак завоевания демонического гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149096, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87949, "buy_price": 439745, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9706000089645386, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149097, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Dominance", "name_ko_KR": "악마적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador demoníaco", "name_ru_RU": "Жетон господства демонического гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Dominância do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149097, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88284, "buy_price": 441422, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9743000268936157, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149096, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Dominance", "name_ko_KR": "악마적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador demoníaco", "name_ru_RU": "Жетон господства демонического гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Dominância do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149098, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88619, "buy_price": 443098, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9779999852180481, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149099, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Dominance", "name_ko_KR": "악마적인 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador demoníaco", "name_ru_RU": "Акколада господства демонического гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149099, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88954, "buy_price": 444774, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9817000031471252, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149098, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Dominance", "name_ko_KR": "악마적인 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador demoníaco", "name_ru_RU": "Акколада господства демонического гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149100, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1823, "buy_price": 9118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9853000044822693, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149101, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Dominance", "name_ko_KR": "악마적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador demoníaco", "name_ru_RU": "Знак господства демонического гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149101, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1830, "buy_price": 9153, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9890000224113464, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149100, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Dominance", "name_ko_KR": "악마적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador demoníaco", "name_ru_RU": "Знак господства демонического гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149102, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 89951, "buy_price": 449758, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926999807357788, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149103, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Victory", "name_ko_KR": "악마적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador demoníaco", "name_ru_RU": "Жетон победы демонического гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Vitória do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149103, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90277, "buy_price": 451389, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962999820709229, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149102, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Victory", "name_ko_KR": "악마적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador demoníaco", "name_ru_RU": "Жетон победы демонического гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Vitória do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149104, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90613, "buy_price": 453066, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149105, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Victory", "name_ko_KR": "악마적인 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador demoníaco", "name_ru_RU": "Акколада победы демонического гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149105, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 90948, "buy_price": 454742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0037000179290771, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149104, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Victory", "name_ko_KR": "악마적인 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador demoníaco", "name_ru_RU": "Акколада победы демонического гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149106, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 91283, "buy_price": 456418, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0074000358581543, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149107, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Victory", "name_ko_KR": "악마적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador demoníaco", "name_ru_RU": "Знак победы демонического гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149107, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 94011, "buy_price": 470056, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037500023841858, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149106, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Victory", "name_ko_KR": "악마적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador demoníaco", "name_ru_RU": "Знак победы демонического гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149336, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 95017, "buy_price": 475085, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0485999584197998, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149337, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Conquest", "name_ko_KR": "악마적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador demoníaco", "name_ru_RU": "Жетон завоевания демонического гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Conquista do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149337, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86272, "buy_price": 431364, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520999789237976, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149336, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Conquest", "name_ko_KR": "악마적인 검투사의 정복 휘장", "name_fr_FR": "Ecusson de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽章", "name_es_ES": "Distintivo de conquista de Gladiador demoníaco", "name_ru_RU": "Жетон завоевания демонического гладиатора", "name_it_IT": "Distintivo della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Conquista do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149338, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86608, "buy_price": 433040, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149339, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Conquest", "name_ko_KR": "악마적인 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador demoníaco", "name_ru_RU": "Акколада завоевания демонического гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149339, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 86943, "buy_price": 434716, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595000147819519, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149338, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Conquest", "name_ko_KR": "악마적인 검투사의 정복 상징", "name_fr_FR": "Décoration de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服奖章", "name_es_ES": "Galardón de conquista de Gladiador demoníaco", "name_ru_RU": "Акколада завоевания демонического гладиатора", "name_it_IT": "Decorazione della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149340, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87278, "buy_price": 436393, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9631999731063843, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149341, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Conquest", "name_ko_KR": "악마적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador demoníaco", "name_ru_RU": "Знак завоевания демонического гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149341, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87604, "buy_price": 438024, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9667999744415283, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149340, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Conquest", "name_ko_KR": "악마적인 검투사의 정복 계급장", "name_fr_FR": "Insigne de conquête du gladiateur démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的征服徽记", "name_es_ES": "Insignia de conquista de Gladiador demoníaco", "name_ru_RU": "Знак завоевания демонического гладиатора", "name_it_IT": "Fregio della Conquista del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Conquista do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149342, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 87940, "buy_price": 439700, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149343, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Dominance", "name_ko_KR": "악마적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador demoníaco", "name_ru_RU": "Жетон господства демонического гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Dominância do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149343, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88275, "buy_price": 441376, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9742000102996826, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149342, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Dominance", "name_ko_KR": "악마적인 검투사의 지배 휘장", "name_fr_FR": "Ecusson de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽章", "name_es_ES": "Distintivo de dominancia de Gladiador demoníaco", "name_ru_RU": "Жетон господства демонического гладиатора", "name_it_IT": "Distintivo della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Dominância do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149344, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88601, "buy_price": 443007, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9778000116348267, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149345, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Dominance", "name_ko_KR": "악마적인 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador demoníaco", "name_ru_RU": "Акколада господства демонического гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149345, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88936, "buy_price": 444684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9815000295639038, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149344, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Dominance", "name_ko_KR": "악마적인 검투사의 지배 상징", "name_fr_FR": "Décoration de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御奖章", "name_es_ES": "Galardón de dominancia de Gladiador demoníaco", "name_ru_RU": "Акколада господства демонического гладиатора", "name_it_IT": "Decorazione della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149346, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1823, "buy_price": 9118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149347, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Dominance", "name_ko_KR": "악마적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador demoníaco", "name_ru_RU": "Знак господства демонического гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149347, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1830, "buy_price": 9152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9889000058174133, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149346, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Dominance", "name_ko_KR": "악마적인 검투사의 지배 계급장", "name_fr_FR": "Insigne de domination du gladiateur démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的统御徽记", "name_es_ES": "Insignia de dominancia de Gladiador demoníaco", "name_ru_RU": "Знак господства демонического гладиатора", "name_it_IT": "Fregio della Dominazione del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Dominância do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149348, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92334, "buy_price": 461674, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190000534057617, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149349, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Victory", "name_ko_KR": "악마적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador demoníaco", "name_ru_RU": "Жетон победы демонического гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Vitória do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149349, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 92670, "buy_price": 463350, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149348, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Badge of Victory", "name_ko_KR": "악마적인 검투사의 승리 휘장", "name_fr_FR": "Ecusson de victoire du gladiateur démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽章", "name_es_ES": "Distintivo de victoria de Gladiador demoníaco", "name_ru_RU": "Жетон победы демонического гладиатора", "name_it_IT": "Distintivo della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Distintivo da Vitória do Gladiador Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149350, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93005, "buy_price": 465026, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149351, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Victory", "name_ko_KR": "악마적인 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador demoníaco", "name_ru_RU": "Акколада победы демонического гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149351, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93340, "buy_price": 466703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0300999879837036, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149350, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Accolade of Victory", "name_ko_KR": "악마적인 검투사의 승리 상징", "name_fr_FR": "Décoration de victoire du gladiateur démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利奖章", "name_es_ES": "Galardón de victoria de Gladiador demoníaco", "name_ru_RU": "Акколада победы демонического гладиатора", "name_it_IT": "Decorazione della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Galardão da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149352, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 93666, "buy_price": 468334, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0336999893188477, "flags_1": 524288, "flags_2": 8194, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149353, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Victory", "name_ko_KR": "악마적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador demoníaco", "name_ru_RU": "Знак победы демонического гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149353, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Gladiator's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 94002, "buy_price": 470010, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0374000072479248, "flags_1": 524288, "flags_2": 8193, "flags_3": 8454144, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149352, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13314, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Demonic Gladiator's Insignia of Victory", "name_ko_KR": "악마적인 검투사의 승리 계급장", "name_fr_FR": "Insigne de victoire du gladiateur démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Gladiators", "name_zh_CN": "恶魔角斗士的胜利徽记", "name_es_ES": "Insignia de victoria de Gladiador demoníaco", "name_ru_RU": "Знак победы демонического гладиатора", "name_it_IT": "Fregio della Vittoria del Gladiatore Demoniaco", "name_pt_PT": "Insígnia da Vitória do Gladiador Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149702, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211447, "buy_price": 1057238, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000499963760376, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149703, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente fiero", "name_ru_RU": "Жетон завоевания неудержимого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Violento", "name_pt_PT": "Distintivo da Conquista do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149703, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212229, "buy_price": 1061148, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0041999816894531, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149702, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente fiero", "name_ru_RU": "Жетон завоевания неудержимого бойца", "name_it_IT": "Distintivo della Conquista del Combattente Violento", "name_pt_PT": "Distintivo da Conquista do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149704, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 361979, "buy_price": 1809895, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0078999996185303, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149705, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente fiero", "name_ru_RU": "Акколада завоевания неудержимого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Violento", "name_pt_PT": "Galardão da Conquista do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149705, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 363307, "buy_price": 1816539, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0116000175476074, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149704, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente fiero", "name_ru_RU": "Акколада завоевания неудержимого бойца", "name_it_IT": "Decorazione della Conquista del Combattente Violento", "name_pt_PT": "Galardão da Conquista do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149706, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214554, "buy_price": 1072772, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0152000188827515, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149707, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente fiero", "name_ru_RU": "Знак завоевания неудержимого бойца", "name_it_IT": "Fregio della Conquista del Combattente Violento", "name_pt_PT": "Insígnia da Conquista do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149707, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 215336, "buy_price": 1076682, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149706, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Conquest", "name_ko_KR": "맹렬한 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant opiniâtre", "name_de_DE": "Eroberungsinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente fiero", "name_ru_RU": "Знак завоевания неудержимого бойца", "name_it_IT": "Fregio della Conquista del Combattente Violento", "name_pt_PT": "Insígnia da Conquista do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149708, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 216118, "buy_price": 1080592, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226000547409058, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149709, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente fiero", "name_ru_RU": "Жетон господства неудержимого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Violento", "name_pt_PT": "Distintivo da Dominância do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149709, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 216900, "buy_price": 1084501, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0262999534606934, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149708, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente fiero", "name_ru_RU": "Жетон господства неудержимого бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Violento", "name_pt_PT": "Distintivo da Dominância do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149710, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 369880, "buy_price": 1849400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149711, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente fiero", "name_ru_RU": "Акколада господства неудержимого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Violento", "name_pt_PT": "Galardão da Dominância do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149711, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 371209, "buy_price": 1856045, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0335999727249146, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149710, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente fiero", "name_ru_RU": "Акколада господства неудержимого бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Violento", "name_pt_PT": "Galardão da Dominância do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149712, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1440, "buy_price": 7200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0372999906539917, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149713, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente fiero", "name_ru_RU": "Знак господства неудержимого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Violento", "name_pt_PT": "Insígnia da Dominância do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149713, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1445, "buy_price": 7225, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0408999919891357, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149712, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Dominance", "name_ko_KR": "맹렬한 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant opiniâtre", "name_de_DE": "Vorherrschaftsinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente fiero", "name_ru_RU": "Знак господства неудержимого бойца", "name_it_IT": "Fregio della Dominazione del Combattente Violento", "name_pt_PT": "Insígnia da Dominância do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149714, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 220767, "buy_price": 1103839, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044600009918213, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149715, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Victory", "name_ko_KR": "맹렬한 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente fiero", "name_ru_RU": "Жетон победы неудержимого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Violento", "name_pt_PT": "Distintivo da Vitória do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149715, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 221549, "buy_price": 1107749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.04830002784729, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149714, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Badge of Victory", "name_ko_KR": "맹렬한 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant opiniâtre", "name_de_DE": "Siegesabzeichen des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente fiero", "name_ru_RU": "Жетон победы неудержимого бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Violento", "name_pt_PT": "Distintivo da Vitória do Combatente Bravio", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149716, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 341867, "buy_price": 1709335, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9519000053405762, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149717, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Victory", "name_ko_KR": "맹렬한 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente fiero", "name_ru_RU": "Акколада победы неудержимого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Violento", "name_pt_PT": "Galardão da Vitória do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149717, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 343160, "buy_price": 1715800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9555000066757202, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149716, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Accolade of Victory", "name_ko_KR": "맹렬한 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant opiniâtre", "name_de_DE": "Siegesauszeichnung des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente fiero", "name_ru_RU": "Акколада победы неудержимого бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Violento", "name_pt_PT": "Galardão da Vitória do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149718, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208319, "buy_price": 1041599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9857000112533569, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149719, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Victory", "name_ko_KR": "맹렬한 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente fiero", "name_ru_RU": "Знак победы неудержимого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Violento", "name_pt_PT": "Insígnia da Vitória do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149719, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fierce Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 209101, "buy_price": 1045509, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9894000291824341, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149718, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13299, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fierce Combatant's Insignia of Victory", "name_ko_KR": "맹렬한 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant opiniâtre", "name_de_DE": "Siegesinsigne des stürmischen Kämpfers", "name_zh_CN": "暴烈争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente fiero", "name_ru_RU": "Знак победы неудержимого бойца", "name_it_IT": "Fregio della Vittoria del Combattente Violento", "name_pt_PT": "Insígnia da Vitória do Combatente Bravio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149952, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 214533, "buy_price": 1072666, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149953, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Conquest", "name_ko_KR": "군림하는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente dominante", "name_ru_RU": "Жетон завоевания господствующего бойца", "name_it_IT": "Distintivo della Conquista del Combattente Dominante", "name_pt_PT": "Distintivo da Conquista do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149953, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 215315, "buy_price": 1076576, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149952, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Conquest", "name_ko_KR": "군림하는 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant autoritaire", "name_de_DE": "Eroberungsabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente dominante", "name_ru_RU": "Жетон завоевания господствующего бойца", "name_it_IT": "Distintivo della Conquista del Combattente Dominante", "name_pt_PT": "Distintivo da Conquista do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149954, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 367186, "buy_price": 1835933, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0224000215530396, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149955, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Conquest", "name_ko_KR": "군림하는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente dominante", "name_ru_RU": "Акколада завоевания господствующего бойца", "name_it_IT": "Decorazione della Conquista del Combattente Dominante", "name_pt_PT": "Galardão da Conquista do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149955, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 368515, "buy_price": 1842577, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0261000394821167, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149954, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Conquest", "name_ko_KR": "군림하는 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant autoritaire", "name_de_DE": "Eroberungsauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente dominante", "name_ru_RU": "Акколада завоевания господствующего бойца", "name_it_IT": "Decorazione della Conquista del Combattente Dominante", "name_pt_PT": "Galardão da Conquista do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149956, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217640, "buy_price": 1088200, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298000574111938, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149957, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Conquest", "name_ko_KR": "군림하는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente dominante", "name_ru_RU": "Знак завоевания господствующего бойца", "name_it_IT": "Fregio della Conquista del Combattente Dominante", "name_pt_PT": "Insígnia da Conquista do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149957, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218422, "buy_price": 1092110, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149956, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Conquest", "name_ko_KR": "군림하는 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant autoritaire", "name_de_DE": "Eroberungsinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente dominante", "name_ru_RU": "Знак завоевания господствующего бойца", "name_it_IT": "Fregio della Conquista del Combattente Dominante", "name_pt_PT": "Insígnia da Conquista do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149958, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 219182, "buy_price": 1095914, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0370999574661255, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149959, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Dominance", "name_ko_KR": "군림하는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente dominante", "name_ru_RU": "Жетон господства господствующего бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Dominante", "name_pt_PT": "Distintivo da Dominância do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149959, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204410, "buy_price": 1022050, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149958, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Dominance", "name_ko_KR": "군림하는 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente dominante", "name_ru_RU": "Жетон господства господствующего бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Dominante", "name_pt_PT": "Distintivo da Dominância do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149960, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 348690, "buy_price": 1743454, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149961, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Dominance", "name_ko_KR": "군림하는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente dominante", "name_ru_RU": "Акколада господства господствующего бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Dominante", "name_pt_PT": "Galardão da Dominância do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149961, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 350019, "buy_price": 1750098, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746000170707703, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149960, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Dominance", "name_ko_KR": "군림하는 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente dominante", "name_ru_RU": "Акколада господства господствующего бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Dominante", "name_pt_PT": "Galardão da Dominância do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149962, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1357, "buy_price": 6789, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782000184059143, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149963, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Dominance", "name_ko_KR": "군림하는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente dominante", "name_ru_RU": "Знак господства господствующего бойца", "name_it_IT": "Fregio della Dominazione del Combattente Dominante", "name_pt_PT": "Insígnia da Dominância do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149963, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1363, "buy_price": 6815, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818999767303467, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149962, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Dominance", "name_ko_KR": "군림하는 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant autoritaire", "name_de_DE": "Vorherrschaftsinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente dominante", "name_ru_RU": "Знак господства господствующего бойца", "name_it_IT": "Fregio della Dominazione del Combattente Dominante", "name_pt_PT": "Insígnia da Dominância do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149964, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 208298, "buy_price": 1041493, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149965, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Victory", "name_ko_KR": "군림하는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente dominante", "name_ru_RU": "Жетон победы господствующего бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Dominante", "name_pt_PT": "Distintivo da Vitória do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149965, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 209080, "buy_price": 1045403, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989300012588501, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149964, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Badge of Victory", "name_ko_KR": "군림하는 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant autoritaire", "name_de_DE": "Siegesabzeichen des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente dominante", "name_ru_RU": "Жетон победы господствующего бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Dominante", "name_pt_PT": "Distintivo da Vitória do Combatente Dominador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149966, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 356591, "buy_price": 1782959, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.992900013923645, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149967, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Victory", "name_ko_KR": "군림하는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente dominante", "name_ru_RU": "Акколада победы господствующего бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Dominante", "name_pt_PT": "Galardão da Vitória do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149967, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 357920, "buy_price": 1789603, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149966, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Accolade of Victory", "name_ko_KR": "군림하는 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant autoritaire", "name_de_DE": "Siegesauszeichnung des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente dominante", "name_ru_RU": "Акколада победы господствующего бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Dominante", "name_pt_PT": "Galardão da Vitória do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149968, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 211405, "buy_price": 1057027, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0003000497817993, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149969, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Victory", "name_ko_KR": "군림하는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant autoritaire", "name_de_DE": "Siegesinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente dominante", "name_ru_RU": "Знак победы господствующего бойца", "name_it_IT": "Fregio della Vittoria del Combattente Dominante", "name_pt_PT": "Insígnia da Vitória do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 149969, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dominant Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 212166, "buy_price": 1060831, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0039000511169434, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 149968, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13311, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dominant Combatant's Insignia of Victory", "name_ko_KR": "군림하는 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant autoritaire", "name_de_DE": "Siegesinsigne des dominanten Kämpfers", "name_zh_CN": "专横争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente dominante", "name_ru_RU": "Знак победы господствующего бойца", "name_it_IT": "Fregio della Vittoria del Combattente Dominante", "name_pt_PT": "Insígnia da Vitória do Combatente Dominador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150198, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68979, "buy_price": 344896, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0149999856948853, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150199, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Conquest", "name_ko_KR": "악마적인 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente demoníaco", "name_ru_RU": "Жетон завоевания демонического бойца", "name_it_IT": "Distintivo della Conquista del Combattente Demoniaco", "name_pt_PT": "Distintivo da Conquista do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150199, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 69223, "buy_price": 346119, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0185999870300293, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150198, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Conquest", "name_ko_KR": "악마적인 전투원의 정복 휘장", "name_fr_FR": "Ecusson de conquête du combattant démoniaque", "name_de_DE": "Eroberungsabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服徽章", "name_es_ES": "Distintivo de conquista de Combatiente demoníaco", "name_ru_RU": "Жетон завоевания демонического бойца", "name_it_IT": "Distintivo della Conquista del Combattente Demoniaco", "name_pt_PT": "Distintivo da Conquista do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150200, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 71276, "buy_price": 356381, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048799991607666, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150201, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Conquest", "name_ko_KR": "악마적인 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente demoníaco", "name_ru_RU": "Акколада завоевания демонического бойца", "name_it_IT": "Decorazione della Conquista del Combattente Demoniaco", "name_pt_PT": "Galardão da Conquista do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150201, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64725, "buy_price": 323625, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524000287055969, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150200, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Conquest", "name_ko_KR": "악마적인 전투원의 정복 상징", "name_fr_FR": "Décoration de conquête du combattant démoniaque", "name_de_DE": "Eroberungsauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服奖章", "name_es_ES": "Galardón de conquista de Combatiente demoníaco", "name_ru_RU": "Акколада завоевания демонического бойца", "name_it_IT": "Decorazione della Conquista del Combattente Demoniaco", "name_pt_PT": "Galardão da Conquista do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150202, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64976, "buy_price": 324882, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9560999870300293, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150203, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Conquest", "name_ko_KR": "악마적인 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente demoníaco", "name_ru_RU": "Знак завоевания демонического бойца", "name_it_IT": "Fregio della Conquista del Combattente Demoniaco", "name_pt_PT": "Insígnia da Conquista do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150203, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Conquest", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65221, "buy_price": 326105, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9596999883651733, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150202, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Conquest", "name_ko_KR": "악마적인 전투원의 정복 계급장", "name_fr_FR": "Insigne de conquête du combattant démoniaque", "name_de_DE": "Eroberungsinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的征服徽记", "name_es_ES": "Insignia de conquista de Combatiente demoníaco", "name_ru_RU": "Знак завоевания демонического бойца", "name_it_IT": "Fregio della Conquista del Combattente Demoniaco", "name_pt_PT": "Insígnia da Conquista do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150204, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65472, "buy_price": 327362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9634000062942505, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150205, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Dominance", "name_ko_KR": "악마적인 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente demoníaco", "name_ru_RU": "Жетон господства демонического бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Demoniaco", "name_pt_PT": "Distintivo da Dominância do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150205, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65724, "buy_price": 328620, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9671000242233276, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150204, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Dominance", "name_ko_KR": "악마적인 전투원의 지배 휘장", "name_fr_FR": "Ecusson de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御徽章", "name_es_ES": "Distintivo de dominancia de Combatiente demoníaco", "name_ru_RU": "Жетон господства демонического бойца", "name_it_IT": "Distintivo della Dominazione del Combattente Demoniaco", "name_pt_PT": "Distintivo da Dominância do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150206, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 65975, "buy_price": 329877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.97079998254776, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150207, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Dominance", "name_ko_KR": "악마적인 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente demoníaco", "name_ru_RU": "Акколада господства демонического бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Demoniaco", "name_pt_PT": "Galardão da Dominância do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150207, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66220, "buy_price": 331100, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.974399983882904, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150206, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Dominance", "name_ko_KR": "악마적인 전투원의 지배 상징", "name_fr_FR": "Décoration de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御奖章", "name_es_ES": "Galardón de dominancia de Combatiente demoníaco", "name_ru_RU": "Акколада господства демонического бойца", "name_it_IT": "Decorazione della Dominazione del Combattente Demoniaco", "name_pt_PT": "Galardão da Dominância do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150208, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1357, "buy_price": 6789, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9781000018119812, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150209, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Dominance", "name_ko_KR": "악마적인 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente demoníaco", "name_ru_RU": "Знак господства демонического бойца", "name_it_IT": "Fregio della Dominazione del Combattente Demoniaco", "name_pt_PT": "Insígnia da Dominância do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150209, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Dominance", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1362, "buy_price": 6814, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818000197410583, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150208, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Dominance", "name_ko_KR": "악마적인 전투원의 지배 계급장", "name_fr_FR": "Insigne de domination du combattant démoniaque", "name_de_DE": "Vorherrschaftsinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的统御徽记", "name_es_ES": "Insignia de dominancia de Combatiente demoníaco", "name_ru_RU": "Знак господства демонического бойца", "name_it_IT": "Fregio della Dominazione del Combattente Demoniaco", "name_pt_PT": "Insígnia da Dominância do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150210, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66967, "buy_price": 334838, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9854000210762024, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150211, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Victory", "name_ko_KR": "악마적인 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente demoníaco", "name_ru_RU": "Жетон победы демонического бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Demoniaco", "name_pt_PT": "Distintivo da Vitória do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150211, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Badge of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67219, "buy_price": 336095, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9890999794006348, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150210, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Badge of Victory", "name_ko_KR": "악마적인 전투원의 승리 휘장", "name_fr_FR": "Ecusson de victoire du combattant démoniaque", "name_de_DE": "Siegesabzeichen des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利徽章", "name_es_ES": "Distintivo de victoria de Combatiente demoníaco", "name_ru_RU": "Жетон победы демонического бойца", "name_it_IT": "Distintivo della Vittoria del Combattente Demoniaco", "name_pt_PT": "Distintivo da Vitória do Combatente Demoníaco", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150212, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67470, "buy_price": 337352, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9927999973297119, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150213, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Victory", "name_ko_KR": "악마적인 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente demoníaco", "name_ru_RU": "Акколада победы демонического бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Demoniaco", "name_pt_PT": "Galardão da Vitória do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150213, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Accolade of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67722, "buy_price": 338610, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965000152587891, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150212, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Accolade of Victory", "name_ko_KR": "악마적인 전투원의 승리 상징", "name_fr_FR": "Décoration de victoire du combattant démoniaque", "name_de_DE": "Siegesauszeichnung des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利奖章", "name_es_ES": "Galardón de victoria de Combatiente demoníaco", "name_ru_RU": "Акколада победы демонического бойца", "name_it_IT": "Decorazione della Vittoria del Combattente Demoniaco", "name_pt_PT": "Galardão da Vitória do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150214, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 67966, "buy_price": 339833, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000100016593933, "flags_1": 524288, "flags_2": 8194, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150215, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Victory", "name_ko_KR": "악마적인 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente demoníaco", "name_ru_RU": "Знак победы демонического бойца", "name_it_IT": "Fregio della Vittoria del Combattente Demoniaco", "name_pt_PT": "Insígnia da Vitória do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150215, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demonic Combatant's Insignia of Victory", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68218, "buy_price": 341090, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0038000345230103, "flags_1": 524288, "flags_2": 8193, "flags_3": 65536, "flags_4": 0, "flags_5": 0, "faction_conv_id": 150214, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 13312, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Demonic Combatant's Insignia of Victory", "name_ko_KR": "악마적인 전투원의 승리 계급장", "name_fr_FR": "Insigne de victoire du combattant démoniaque", "name_de_DE": "Siegesinsigne des dämonischen Kämpfers", "name_zh_CN": "恶魔争斗者的胜利徽记", "name_es_ES": "Insignia de victoria de Combatiente demoníaco", "name_ru_RU": "Знак победы демонического бойца", "name_it_IT": "Fregio della Vittoria del Combattente Demoniaco", "name_pt_PT": "Insígnia da Vitória do Combatente Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150388, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hibernation Crystal", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 266, "buy_price": 1334, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 524288, "flags_2": 8256, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 29, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Hibernation Crystal", "name_ko_KR": "휴면의 수정", "name_fr_FR": "Cristal d'hibernation", "name_de_DE": "Hibernationskristall", "name_zh_CN": "休眠水晶", "name_es_ES": "Cristal de hibernación", "name_ru_RU": "Кристалл спячки", "name_it_IT": "Cristallo dell'Ibernazione", "name_pt_PT": "Cristal de Hibernação", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150522, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Skull of Gul'dan", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 364, "buy_price": 1822, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599000215530396, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "The Skull of Gul'dan", "name_ko_KR": "굴단의 해골", "name_fr_FR": "Le crâne de Gul'dan", "name_de_DE": "Der Schädel des Gul'dan", "name_zh_CN": "古尔丹之颅", "name_es_ES": "La calavera de Gul'dan", "name_ru_RU": "Череп Гул'дана", "name_it_IT": "Teschio di Gul'dan", "name_pt_PT": "O Crânio de Gul'dan", "on_use": true, "id_encounter": 1590, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 150523, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Memento of Tyrande", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 365, "buy_price": 1829, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 33, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Memento of Tyrande", "name_ko_KR": "추억이 담긴 티란데의 기념품", "name_fr_FR": "Souvenir de Tyrande", "name_de_DE": "Tyrandes Andenken", "name_zh_CN": "泰兰德的记忆", "name_es_ES": "Recuerdo de Tyrande", "name_ru_RU": "Память о Тиранде", "name_it_IT": "Memento di Tyrande", "name_pt_PT": "Recordação de Tyrande", "on_use": false, "id_encounter": 1590, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 150526, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowmoon Insignia", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 336, "buy_price": 1681, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746000170707703, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Shadowmoon Insignia", "name_ko_KR": "어둠달 휘장", "name_fr_FR": "Insigne d'Ombrelune", "name_de_DE": "Insigne des Schattenmondklans", "name_zh_CN": "影月徽记", "name_es_ES": "Insignia de Sombraluna", "name_ru_RU": "Знак клана Призрачной Луны", "name_it_IT": "Fregio di Torvaluna", "name_pt_PT": "Insígnia da Lua Negra", "on_use": true, "id_encounter": 1586, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 150527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Madness of the Betrayer", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 337, "buy_price": 1687, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782000184059143, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 4, "name_en_US": "Madness of the Betrayer", "name_ko_KR": "배신자의 광기", "name_fr_FR": "Folie du traître", "name_de_DE": "Wahnsinn des Verräters", "name_zh_CN": "背叛者的疯狂", "name_es_ES": "Locura de El Traidor", "name_ru_RU": "Безумие Предателя", "name_it_IT": "Follia del Traditore", "name_pt_PT": "Insânia do Traidor", "on_use": false, "id_encounter": 1589, "id_journal_instance": 751, "id_map": 564, "instance_type": 2}, {"id": 150709, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lacquered Carving", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 5, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0374000072479248, "flags_1": 32768, "flags_2": 4218880, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Lacquered Carving", "name_ko_KR": "옻칠한 조각", "name_fr_FR": "Sculpture laquée", "name_de_DE": "Lackierte Schnitzarbeit", "name_zh_CN": "喷漆雕像", "name_es_ES": "Talla lacada", "name_ru_RU": "Лакированная резная фигурка", "name_it_IT": "Pittogramma Laccato", "name_pt_PT": "Entalhe Envernizado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 150710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burnished Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 5, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041100025177002, "flags_1": 32768, "flags_2": 4218880, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Burnished Charm", "name_ko_KR": "빛나는 부적", "name_fr_FR": "Charme bruni", "name_de_DE": "Brünierter Glücksbringer", "name_zh_CN": "抛光护符", "name_es_ES": "Talismán bruñido", "name_ru_RU": "Отполированный амулет", "name_it_IT": "Talismano Brunito", "name_pt_PT": "Patuá Lustrado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 151190, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Specter of Betrayal", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 280859, "buy_price": 1404297, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9966999888420105, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Specter of Betrayal", "name_ko_KR": "배신의 유령", "name_fr_FR": "Spectre de trahison", "name_de_DE": "Gespenst des Verrats", "name_zh_CN": "背叛幽灵", "name_es_ES": "Espectro de traición", "name_ru_RU": "Призрак предательства", "name_it_IT": "Spettro del Tradimento", "name_pt_PT": "Espectro da Traição", "on_use": true, "id_encounter": 1898, "id_journal_instance": 875, "id_map": 1676, "instance_type": 2}, {"id": 151307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void Stalker's Contract", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68734, "buy_price": 343673, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Void Stalker's Contract", "name_ko_KR": "공허 추적자의 계약", "name_fr_FR": "Contrat de traqueur du Vide", "name_de_DE": "Vertrag des Leerenpirschers", "name_zh_CN": "虚空追猎者的契约", "name_es_ES": "Contrato de acechador del Vacío", "name_ru_RU": "Контракт ловчего Бездны", "name_it_IT": "Contratto dell'Inseguitore del Vuoto", "name_pt_PT": "Contrato de Espreitador do Caos", "on_use": true, "id_encounter": 1980, "id_journal_instance": 945, "id_map": 1753, "instance_type": 1}, {"id": 151310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reality Breacher", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1456, "buy_price": 7280, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Reality Breacher", "name_ko_KR": "현실 파괴 장치", "name_fr_FR": "Disrupteur de réalités", "name_de_DE": "Realitätsbrecher", "name_zh_CN": "现实突破者", "name_es_ES": "Alterador de la realidad", "name_ru_RU": "Разрушитель реальности", "name_it_IT": "Breccia nella Realtà", "name_pt_PT": "Abre-dimensões", "on_use": false, "id_encounter": 1981, "id_journal_instance": 945, "id_map": 1753, "instance_type": 1}, {"id": 151312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ampoule of Pure Void", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 64983, "buy_price": 324916, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9562000036239624, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Ampoule of Pure Void", "name_ko_KR": "순수한 공허의 유리병", "name_fr_FR": "Ampoule de Vide pur", "name_de_DE": "Ampulle der reinen Leere", "name_zh_CN": "纯净虚空之瓶", "name_es_ES": "Ampolleta de Vacío puro", "name_ru_RU": "Флакон чистейшей Бездны", "name_it_IT": "Ampolla di Puro Vuoto", "name_pt_PT": "Ampola de Puro Caos", "on_use": true, "id_encounter": 1979, "id_journal_instance": 945, "id_map": 1753, "instance_type": 1}, {"id": 151340, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Echo of L'ura", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 66967, "buy_price": 334838, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9854000210762024, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Echo of L'ura", "name_ko_KR": "르우라의 메아리", "name_fr_FR": "Echo de L'ura", "name_de_DE": "Echo von L'ura", "name_zh_CN": "鲁拉的回响", "name_es_ES": "Eco de L'ura", "name_ru_RU": "Тень Л'уры", "name_it_IT": "Eco di L'ura", "name_pt_PT": "Eco de L'ura", "on_use": true, "id_encounter": 1982, "id_journal_instance": 945, "id_map": 1753, "instance_type": 1}, {"id": 151351, "race_mask": 18446744073709551615, "desc": "Maybe don't shake it.", "pad2": "", "pad1": "", "pad0": "", "name": "Glowing Gift", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30000, "buy_price": 120000, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9521999955177307, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Glowing Gift", "name_ko_KR": "번뜩이는 선물", "name_fr_FR": "Cadeau luminescent", "name_de_DE": "Leuchtendes Geschenk", "name_zh_CN": "发光的礼物", "name_es_ES": "Regalo resplandeciente", "name_ru_RU": "Сверкающий подарок", "name_it_IT": "Regalo Luminoso", "name_pt_PT": "Presente Chamejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 151607, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Astral Alchemist Stone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 45999, "buy_price": 229998, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0153000354766846, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2479, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Astral Alchemist Stone", "name_ko_KR": "천공의 연금술사 돌", "name_fr_FR": "Pierre d'alchimiste astrale", "name_de_DE": "Astraler Alchemistenstein", "name_zh_CN": "星界炼金石", "name_es_ES": "Piedra de alquimista astral", "name_ru_RU": "Звездный алхимический камень", "name_it_IT": "Pietra Alchemica Astrale", "name_pt_PT": "Pedra do Alquimista Astral", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 151955, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Acrid Catalyst Injector", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1804, "buy_price": 9021, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9747999906539917, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Acrid Catalyst Injector", "name_ko_KR": "독한 촉매의 주입기", "name_fr_FR": "Injecteur de catalyseur âcre", "name_de_DE": "Ätzende Katalysatoreinspritzdüse", "name_zh_CN": "苛性催化剂注射器", "name_es_ES": "Inyector de catalizador acre", "name_ru_RU": "Инжектор едкого катализатора", "name_it_IT": "Iniettore di Catalizzatore Acre", "name_pt_PT": "Injetor de Catalisador Acre", "on_use": false, "id_encounter": 2004, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151956, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Garothi Feedback Conduit", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275730, "buy_price": 1378654, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9785000085830688, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Garothi Feedback Conduit", "name_ko_KR": "가로시 역순환 도관", "name_fr_FR": "Conduit de boucle garothi", "name_de_DE": "Rückkopplungsleitung der Garothi", "name_zh_CN": "加洛西反馈电路", "name_es_ES": "Conducto de realimentación garothi", "name_ru_RU": "Проводник резонанса Кин'гарота", "name_it_IT": "Condotto di Retroazione dei Garothi", "name_pt_PT": "Conduíte de Ciclo Elétrico Garothi", "on_use": false, "id_encounter": 1992, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151957, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ishkar's Felshield Emitter", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276745, "buy_price": 1383726, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9821000099182129, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Ishkar's Felshield Emitter", "name_ko_KR": "이쉬카르의 지옥보호막 생성기", "name_fr_FR": "Emetteur de gangrebouclier d'Ishkar", "name_de_DE": "Ishkars Teufelsschildemitter", "name_zh_CN": "伊什卡的邪能护盾发生器", "name_es_ES": "Emisor de Escudo vil de Ishkar", "name_ru_RU": "Генератор щита Скверны Ишкара", "name_it_IT": "Emettitore del Vilscudo di Ishkar", "name_pt_PT": "Emissor de Escudo Vil de Ishkar", "on_use": true, "id_encounter": 1997, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151958, "race_mask": 18446744073709551615, "desc": "A prison world for rebellious demons, the radiance of Tarratus' sun is breathtaking to behold.", "pad2": "", "pad1": "", "pad0": "", "name": "Tarratus Keystone", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277788, "buy_price": 1388940, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.98580002784729, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Tarratus Keystone", "name_ko_KR": "타라투스 쐐기돌", "name_fr_FR": "Clé de Tarratus", "name_de_DE": "Schlüsselstein von Tarratus", "name_zh_CN": "塔拉图斯钥石", "name_es_ES": "Piedra angular de Tarratus", "name_ru_RU": "Краеугольный камень Таррата", "name_it_IT": "Chiave di Tarratus", "name_pt_PT": "Pedra-chave de Tarratus", "on_use": true, "id_encounter": 1985, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carafe of Searing Light", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279873, "buy_price": 1399366, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9932000041007996, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Carafe of Searing Light", "name_ko_KR": "이글거리는 빛의 유리병", "name_fr_FR": "Carafe de lumière incendiaire", "name_de_DE": "Karaffe des sengenden Lichts", "name_zh_CN": "灼光之瓶", "name_es_ES": "Garrafa de Luz abrasadora", "name_ru_RU": "Графин опаляющего света", "name_it_IT": "Caraffa della Luce Rovente", "name_pt_PT": "Jarra de Água da Luz Calcinante", "on_use": true, "id_encounter": 1983, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151961, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Legionsteel Flywheel", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532565, "buy_price": 2662825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9968000054359436, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Legionsteel Flywheel", "name_ko_KR": "군단강철 정속바퀴", "name_fr_FR": "Volant en acier de la Légion", "name_de_DE": "Legionsstählernes Schwungrad", "name_zh_CN": "军团钢铁飞轮", "name_es_ES": "Volante de acero de la Legión", "name_ru_RU": "Маховик из стали Легиона", "name_it_IT": "Volano di Legionacciaio", "name_pt_PT": "Volante de Aço da Legião", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 151962, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prototype Personnel Decimator", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1851, "buy_price": 9259, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000499963760376, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Prototype Personnel Decimator", "name_ko_KR": "시험생산형 인간 척살기", "name_fr_FR": "Prototype de décimateur de personnel", "name_de_DE": "Prototyp eines Personaldezimierers", "name_zh_CN": "实验型部队屠戮者", "name_es_ES": "Prototipo de exterminador personal", "name_ru_RU": "Прототип полевого дециматора", "name_it_IT": "Prototipo del Decimatore Personale", "name_pt_PT": "Protótipo de Dizimador Pessoal", "on_use": false, "id_encounter": 1992, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151963, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forgefiend's Fabricator", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 282972, "buy_price": 1414864, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0041999816894531, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Forgefiend's Fabricator", "name_ko_KR": "괴철로마귀의 구성기", "name_fr_FR": "Fabricateur de forgefiel", "name_de_DE": "Fabrikator des Schmiedeschreckens", "name_zh_CN": "铸魔装配器", "name_es_ES": "Fabricador de forjadicto", "name_ru_RU": "Конструктор стража Кузни", "name_it_IT": "Fabbricante del Demonio della Forgia", "name_pt_PT": "Engendrador do Demônio da Forja", "on_use": true, "id_encounter": 2004, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151964, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seeping Scourgewing", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 284015, "buy_price": 1420077, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0078999996185303, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Seeping Scourgewing", "name_ko_KR": "스며드는 스컬지날개", "name_fr_FR": "Aile du fléau suintante", "name_de_DE": "Triefende Geißelschwinge", "name_zh_CN": "渗漏的天灾之翼", "name_es_ES": "Plaga alada impregnante", "name_ru_RU": "Сочащийся хлестокрыл", "name_it_IT": "Ala del Flagello Colante", "name_pt_PT": "Flagelasa Infiltrante", "on_use": false, "id_encounter": 1983, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151968, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadow-Singed Fang", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295625, "buy_price": 1478126, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0491000413894653, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Shadow-Singed Fang", "name_ko_KR": "그림자에 물든 송곳니", "name_fr_FR": "Croc roussi par l'ombre", "name_de_DE": "Schattenversengter Reißzahn", "name_zh_CN": "影灼之牙", "name_es_ES": "Colmillo chamuscado por las Sombras", "name_ru_RU": "Опаленный тенями клык", "name_it_IT": "Artiglio Bruciato dall'Ombra", "name_pt_PT": "Presa Chamuscada de Sombras", "on_use": false, "id_encounter": 1987, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Terminus Signaling Beacon", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1763, "buy_price": 8816, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9526000022888184, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Terminus Signaling Beacon", "name_ko_KR": "종착지 신호기", "name_fr_FR": "Balise de terminus", "name_de_DE": "Signalfeuer des Terminus", "name_zh_CN": "终端信号道标", "name_es_ES": "Terminal de baliza de señalización", "name_ru_RU": "Маячок конца пути", "name_it_IT": "Dislocatore di Segnalazione di Terminus", "name_pt_PT": "Sinalizador do Términus", "on_use": true, "id_encounter": 1997, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151970, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vitality Resonator", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1770, "buy_price": 8850, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563000202178955, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vitality Resonator", "name_ko_KR": "활력의 공명체", "name_fr_FR": "Résonateur de vitalité", "name_de_DE": "Vitalitätsresonator", "name_zh_CN": "生命共鸣器", "name_es_ES": "Resonador de vitalidad", "name_ru_RU": "Резонатор жизненных сил", "name_it_IT": "Risonatore della Vitalità", "name_pt_PT": "Ressonador de Vitalidade", "on_use": true, "id_encounter": 2025, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151971, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sheath of Asara", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1776, "buy_price": 8884, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599999785423279, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Sheath of Asara", "name_ko_KR": "아사라의 칼집", "name_fr_FR": "Fourreau d'Asara", "name_de_DE": "Hülle von Asara", "name_zh_CN": "奥萨拉的剑鞘", "name_es_ES": "Vaina de Asara", "name_ru_RU": "Ножны Асары", "name_it_IT": "Guaina di Asara", "name_pt_PT": "Bainha de Asara", "on_use": false, "id_encounter": 1986, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151974, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Shatug", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 361, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 273617, "buy_price": 1368087, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9710000157356262, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Shatug", "name_ko_KR": "샤투그 눈", "name_fr_FR": "Œil de Shatug", "name_de_DE": "Auge von Shatug", "name_zh_CN": "沙图格之眼", "name_es_ES": "Ojo de Shatug", "name_ru_RU": "Око Шатуга", "name_it_IT": "Occhio di Shatug", "name_pt_PT": "Olho de Shatug", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 151975, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Apocalypse Drive", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 274660, "buy_price": 1373300, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746999740600586, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Apocalypse Drive", "name_ko_KR": "대재앙 가동 장치", "name_fr_FR": "Résolution apocalyptique", "name_de_DE": "Apokalypseeinheit", "name_zh_CN": "天启引擎", "name_es_ES": "Impulso apocalíptico", "name_ru_RU": "Реактор апокалипсиса", "name_it_IT": "Programma Apocalisse", "name_pt_PT": "Módulo do Apocalipse", "on_use": true, "id_encounter": 2004, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151976, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Riftworld Codex", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 275674, "buy_price": 1378372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782999753952026, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Riftworld Codex", "name_ko_KR": "균열세계 전서", "name_fr_FR": "Codex du monde des failles", "name_de_DE": "Kodex der Risswelt", "name_zh_CN": "裂隙世界法典", "name_es_ES": "Códice de mundo de fallas", "name_ru_RU": "Кодекс портала", "name_it_IT": "Codice del Mondo del Varco", "name_pt_PT": "Códice de Fissúria", "on_use": false, "id_encounter": 1985, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151977, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Diima's Glacial Aegis", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 276717, "buy_price": 1383586, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9819999933242798, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Diima's Glacial Aegis", "name_ko_KR": "디마의 빙하 아이기스", "name_fr_FR": "Egide glaciaire de Diima", "name_de_DE": "Diimas Frostaegis", "name_zh_CN": "蒂玛的冰河护盾", "name_es_ES": "Égida glacial de Diima", "name_ru_RU": "Ледяная эгида Диимы", "name_it_IT": "Egida Glaciale di Diima", "name_pt_PT": "Égide Glacial de Deema", "on_use": true, "id_encounter": 1986, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 151978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Titanguard", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 277759, "buy_price": 1388799, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9857000112533569, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Smoldering Titanguard", "name_ko_KR": "이글거리는 티탄의 수호", "name_fr_FR": "Garde des Titans fumant", "name_de_DE": "Schwelender Titanenschutz", "name_zh_CN": "阴燃之泰坦结界", "name_es_ES": "Protección de titanes humeante", "name_ru_RU": "Пылающий титановый страж", "name_it_IT": "Guardia Titanica Ardente", "name_pt_PT": "Espada Titã em Brasa", "on_use": true, "id_encounter": 1984, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 152093, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gorshalach's Legacy", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 279816, "buy_price": 1399084, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9929999709129333, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 6, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Gorshalach's Legacy", "name_ko_KR": "고르샤라크의 유산", "name_fr_FR": "Héritage de Gorshalach", "name_de_DE": "Gorshalachs Vermächtnis", "name_zh_CN": "高沙拉克的遗产", "name_es_ES": "Legado de Gorshalach", "name_ru_RU": "Наследие Горшалака", "name_it_IT": "Eredità di Gorshalach", "name_pt_PT": "Legado de Gorshalak", "on_use": false, "id_encounter": 1984, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 152289, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Highfather's Machination", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269503, "buy_price": 1347516, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Highfather's Machination", "name_ko_KR": "대부의 책략", "name_fr_FR": "Machination du Patriarche", "name_de_DE": "Werk des Hochvaters", "name_zh_CN": "众神之父的规划", "name_es_ES": "Maquinación del Gran Padre", "name_ru_RU": "Интрига Великого Отца", "name_it_IT": "Macchinazione del Sommo Padre", "name_pt_PT": "Maquinação do Grande Pai", "on_use": false, "id_encounter": 1986, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 152632, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Surging Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 218326, "buy_price": 1091631, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9710999727249146, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2478, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Surging Alchemist Stone", "name_ko_KR": "솟구치는 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste déferlante", "name_de_DE": "Wallender Alchemistenstein", "name_zh_CN": "潮涌炼金石", "name_es_ES": "Piedra de alquimista impetuosa", "name_ru_RU": "Пульсирующий алхимический камень", "name_it_IT": "Pietra Alchemica Eruttante", "name_pt_PT": "Pedra do Alquimista Jorrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Endless Tincture of Renewed Combat", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 115146, "buy_price": 575734, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9785000085830688, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 52, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Endless Tincture of Renewed Combat", "name_ko_KR": "새로운 전투의 무한한 용액", "name_fr_FR": "Teinture infinie du combat renouvelé", "name_de_DE": "Endlose Tinktur des erneuerten Kampfgeists", "name_zh_CN": "崛起再战无穷酊剂", "name_es_ES": "Tintura de combate renovado interminable", "name_ru_RU": "Бесконечная настойка непрекращающегося боя", "name_it_IT": "Tintura Infinita del Combattimento Rinnovato", "name_pt_PT": "Tintura do Combate Renovado Infinita", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152636, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Endless Tincture of Fractional Power", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 221631, "buy_price": 1108155, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.98580002784729, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Endless Tincture of Fractional Power", "name_ko_KR": "부분적인 힘의 무한한 용액", "name_fr_FR": "Teinture infinie de puissance fractionnée", "name_de_DE": "Endlose Tinktur der bruchstückhaften Macht", "name_zh_CN": "分馏之力无穷酊剂", "name_es_ES": "Tintura de poder ínfimo interminable", "name_ru_RU": "Бесконечная настойка поделенной мощи", "name_it_IT": "Tintura Infinita del Potere Infinitesimale", "name_pt_PT": "Tintura de Poder Fracionado Infinita", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152637, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Siren's Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 116441, "buy_price": 582206, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9894999861717224, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 1, "req_skill": 2478, "ilevel": 52, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Siren's Alchemist Stone", "name_ko_KR": "세이렌의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste de sirène", "name_de_DE": "Alchemistenstein der Sirene", "name_zh_CN": "海妖的炼金石", "name_es_ES": "Piedra de alquimista de sirena", "name_ru_RU": "Алхимический камень сирены", "name_it_IT": "Pietra Alchemica della Sirena", "name_pt_PT": "Pedra do Alquimista da Sirena", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Shatug", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 361, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294582, "buy_price": 1472913, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0454000234603882, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Shatug", "name_ko_KR": "샤투그 눈", "name_fr_FR": "Oeil de Shatug", "name_de_DE": "Auge von Shatug", "name_zh_CN": "沙图格之眼", "name_es_ES": "Ojo de Shatug", "name_ru_RU": "Око Шатуга", "name_it_IT": "Occhio di Shatug", "name_pt_PT": "Olho de Shatug", "on_use": true, "id_encounter": 1987, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 152781, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unblemished Sigil of Argus", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 362877, "buy_price": 1814388, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9562000036239624, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Unblemished Sigil of Argus", "name_ko_KR": "흠집 없는 아르거스 인장", "name_fr_FR": "Cachet d'Argus impeccable", "name_de_DE": "Unbeflecktes Argussiegel", "name_zh_CN": "无瑕的阿古斯印记", "name_es_ES": "Sigilo de Argus inmaculado", "name_ru_RU": "Незапятнанная печать Аргуса", "name_it_IT": "Sigillo di Argus Intatto", "name_pt_PT": "Signo de Argus Primoroso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152782, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Venerable Triad Statuette", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 364243, "buy_price": 1821219, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9598000049591064, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Venerable Triad Statuette", "name_ko_KR": "신성한 삼두 조각상", "name_fr_FR": "Statuette vénérable de la triade", "name_de_DE": "Verehrte Statue der Triade", "name_zh_CN": "庄严的三人执政团雕像", "name_es_ES": "Estatuilla de tríada venerable", "name_ru_RU": "Статуэтка почитаемой троицы", "name_it_IT": "Statuetta di Triade Venerabile", "name_pt_PT": "Estatueta da Tríade Venerável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 152783, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eredath Focusing Amethyst", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 365648, "buy_price": 1828240, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Eredath Focusing Amethyst", "name_ko_KR": "에레다스 집중의 자수정", "name_fr_FR": "Améthyste de focalisation d’Érédath", "name_de_DE": "Fokussieramethyst von Eredath", "name_zh_CN": "艾瑞达斯聚焦紫晶", "name_es_ES": "Amatista de enfoque de Eredath", "name_ru_RU": "Фокусирующий аметист Эредата", "name_it_IT": "Ametista della Concentrazione di Eredath", "name_pt_PT": "Ametista Focalizadora de Eredath", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153172, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Doomed Exarch's Memento", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 389556, "buy_price": 1947783, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0264999866485596, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Doomed Exarch's Memento", "name_ko_KR": "파멸한 총독의 기념물", "name_fr_FR": "Souvenir de l'exarque condamné", "name_de_DE": "Andenken des verdammten Exarchen", "name_zh_CN": "末日主教的纪念品", "name_es_ES": "Recuerdo de exarca condenado", "name_ru_RU": "Реликвия обреченного экзарха", "name_it_IT": "Ricordo dell'Esarca Condannato", "name_pt_PT": "Memento do Exarca Condenado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153408, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 455298, "buy_price": 2276493, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9896000027656555, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154979, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153409, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 457001, "buy_price": 2285005, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9933000206947327, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154980, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153410, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 458703, "buy_price": 2293516, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.996999979019165, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154981, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153411, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 460359, "buy_price": 2301798, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154982, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153412, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oceanographer's Weather Log", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 462061, "buy_price": 2310309, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0042999982833862, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154983, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oceanographer's Weather Log", "name_ko_KR": "바다 낚시꾼의 날씨 일지", "name_fr_FR": "Journal météorologique d’océanographe", "name_de_DE": "Wetteraufzeichnungen des Meeresforschers", "name_zh_CN": "海洋学家的气候日志", "name_es_ES": "Informe meteorológico de oceanógrafo", "name_ru_RU": "Журнал погоды океанографа", "name_it_IT": "Diario Meteorologico dell'Oceanografo", "name_pt_PT": "Registro Climático do Oceanógrafo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Privateer's Spyglass", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 463764, "buy_price": 2318821, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0080000162124634, "flags_1": 524288, "flags_2": 4202498, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 154984, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Privateer's Spyglass", "name_ko_KR": "선원의 망원경", "name_fr_FR": "Longue-vue de corsaire", "name_de_DE": "Freibeuterfernrohr", "name_zh_CN": "水手的望远镜", "name_es_ES": "Catalejo de corsario", "name_ru_RU": "Пиратская подзорная труба", "name_it_IT": "Cannocchiale del Corsaro", "name_pt_PT": "Luneta do Corsário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153544, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of F'harg", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 361, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 5106, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 50, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 289397, "buy_price": 1446988, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0269999504089355, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Eye of F'harg", "name_ko_KR": "프하르그 눈", "name_fr_FR": "Oeil de F'harg", "name_de_DE": "Auge von F'harg", "name_zh_CN": "法尔格之眼", "name_es_ES": "Ojo de F'harg", "name_ru_RU": "Око Ф'арга", "name_it_IT": "Occhio di F'harg", "name_pt_PT": "Olho de F'harg", "on_use": true, "id_encounter": 1987, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 153731, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0044000148773193, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153732, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0081000328063965, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153740, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9638999700546265, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153743, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9749000072479248, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Defensor de Pedra da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153750, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.000599980354309, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153753, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0382000207901, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153764, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9785000085830688, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153767, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9894999861717224, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9599999785423279, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153782, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9710000157356262, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153795, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.045199990272522, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153798, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9562000036239624, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153801, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9937000274658203, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153804, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.004699945449829, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153816, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9751999974250793, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153819, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9861999750137329, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153834, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9677000045776367, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Defensor de Pedra do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153836, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9750000238418579, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.049299955368042, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153854, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9675999879837036, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153860, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9896000027656555, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153864, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0042999982833862, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153882, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.023300051689148, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d'âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153885, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0342999696731567, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d'âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153898, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0084999799728394, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d'âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153899, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0121999979019165, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d'âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153907, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.041599988937378, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153910, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9524999856948853, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d'âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Defensor de Pedra Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153915, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9973000288009644, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153918, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0083999633789062, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153926, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0377999544143677, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153930, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9789000153541565, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153947, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9677000045776367, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153950, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9786999821662903, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153964, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9564999938011169, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153967, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9675999879837036, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153969, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9749000072479248, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153972, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9858999848365784, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153994, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.019700050354004, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 153997, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0306999683380127, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154010, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0047999620437622, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154013, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0157999992370605, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154044, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9825000166893005, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154047, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9934999942779541, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Defensor de Pedra do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9526000022888184, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9563000202178955, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154172, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aman'Thul's Vision", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 5556, "stat_alloc_2": 5556, "stat_alloc_3": 5556, "stat_alloc_4": 5556, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": 49, "stat_type_3": 32, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407467, "buy_price": 2037337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9639999866485596, "flags_1": 1073774848, "flags_2": 12352, "flags_3": 268435456, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 5, "name_en_US": "Aman'Thul's Vision", "name_ko_KR": "아만툴의 환영", "name_fr_FR": "Vision d’Aman’Thul", "name_de_DE": "Aman'thuls Vision", "name_zh_CN": "阿曼苏尔的预见", "name_es_ES": "Visión de Aman'thul", "name_ru_RU": "Видения Аман'тула", "name_it_IT": "Visione di Aman'thul", "name_pt_PT": "Visão de Aman'Thul", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154173, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aggramar's Conviction", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 315227, "buy_price": 1576136, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9677000045776367, "flags_1": 32768, "flags_2": 12352, "flags_3": 2147483648, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 51, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Aggramar's Conviction", "name_ko_KR": "아그라마르의 자각", "name_fr_FR": "Conviction d’Aggramar", "name_de_DE": "Aggramars Überzeugung", "name_zh_CN": "阿格拉玛的信念", "name_es_ES": "Convicción de Aggramar", "name_ru_RU": "Решимость Агграмара", "name_it_IT": "Convinzione di Aggramar", "name_pt_PT": "Convicção de Aggramar", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154174, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golganneth's Vitality", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 316432, "buy_price": 1582162, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9714000225067139, "flags_1": 32768, "flags_2": 12352, "flags_3": 2147483648, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 51, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Golganneth's Vitality", "name_ko_KR": "골가네스의 활력", "name_fr_FR": "Vitalité de Golganneth", "name_de_DE": "Golganneths Lebenskraft", "name_zh_CN": "高戈奈斯的活力", "name_es_ES": "Vitalidad de Golganneth", "name_ru_RU": "Живость Голганнета", "name_it_IT": "Vitalità di Golganneth", "name_pt_PT": "Vitalidade de Golganneth", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154175, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eonar's Compassion", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 317605, "buy_price": 1588026, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750000238418579, "flags_1": 32768, "flags_2": 12352, "flags_3": 2147483648, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 51, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Eonar's Compassion", "name_ko_KR": "이오나의 연민", "name_fr_FR": "Compassion d’Eonar", "name_de_DE": "Eonars Mitgefühl", "name_zh_CN": "艾欧娜尔的怜悯", "name_es_ES": "Compasión de Eonar", "name_ru_RU": "Сострадание Эонар", "name_it_IT": "Compassione di Eonar", "name_pt_PT": "Compaixão de Eonar", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154176, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Khaz'goroth's Courage", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 318810, "buy_price": 1594052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9786999821662903, "flags_1": 32768, "flags_2": 12352, "flags_3": 2147483648, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 51, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Khaz'goroth's Courage", "name_ko_KR": "카즈고로스의 용기", "name_fr_FR": "Courage de Khaz’goroth", "name_de_DE": "Khaz'goroths Kühnheit", "name_zh_CN": "卡兹格罗斯的勇气", "name_es_ES": "Coraje de Khaz'goroth", "name_ru_RU": "Отвага Каз'горота", "name_it_IT": "Coraggio di Khaz'goroth", "name_pt_PT": "Coragem de Khaz'goroth", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154177, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Norgannon's Prowess", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 362, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1927, "buy_price": 9637, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9824000000953674, "flags_1": 32768, "flags_2": 12352, "flags_3": 2147483648, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 51, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Norgannon's Prowess", "name_ko_KR": "노르간논의 기량", "name_fr_FR": "Prouesse de Norgannon", "name_de_DE": "Norgannons Heldenmut", "name_zh_CN": "诺甘农的威能", "name_es_ES": "Destreza de Norgannon", "name_ru_RU": "Удаль Норганнона", "name_it_IT": "Abilità di Norgannon", "name_pt_PT": "Perícia de Norgannon", "on_use": false, "id_encounter": 2031, "id_journal_instance": 946, "id_map": 1712, "instance_type": 2}, {"id": 154743, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9861000180244446, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy", "name_ko_KR": "악마 상징물", "name_fr_FR": "Trophée de démon", "name_de_DE": "Dämonentrophäe", "name_zh_CN": "恶魔战利品", "name_es_ES": "Trofeo demoníaco", "name_ru_RU": "Демонический трофей", "name_it_IT": "Trofeo Demoniaco", "name_pt_PT": "Troféu do Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154744, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Demonic Fire", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9897000193595886, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Demonic Fire", "name_ko_KR": "악마의 불 부적", "name_fr_FR": "Charme de feu démoniaque", "name_de_DE": "Glücksbringer des Dämonenfeuers", "name_zh_CN": "魔火护符", "name_es_ES": "Talismán de fuego demoníaco", "name_ru_RU": "Талисман демонического огня", "name_it_IT": "Talismano del Fuoco Demoniaco", "name_pt_PT": "Patuá do Fogo Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154979, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 482765, "buy_price": 2413828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.049299955368042, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153408, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154980, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 438413, "buy_price": 2192068, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9528999924659729, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153409, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154981, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 440069, "buy_price": 2200349, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9564999938011169, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153410, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154982, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 441772, "buy_price": 2208861, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9602000117301941, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153411, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154983, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bijou of the Golden City", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 443474, "buy_price": 2217372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638999700546265, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153412, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Bijou of the Golden City", "name_ko_KR": "황금 도시의 장신구", "name_fr_FR": "Bijou de la cité d’or", "name_de_DE": "Schmuckstück der Goldenen Stadt", "name_zh_CN": "黄金城宝石", "name_es_ES": "Joya de la ciudad dorada", "name_ru_RU": "Украшение Золотого города", "name_it_IT": "Bijou della Città Dorata", "name_pt_PT": "Bijuteria da Cidade Dourada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 154984, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enchanted Devilsaur Claw", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 445176, "buy_price": 2225884, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 524288, "flags_2": 4202497, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 153413, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Enchanted Devilsaur Claw", "name_ko_KR": "마법 깃든 데빌사우루스 발톱", "name_fr_FR": "Griffe de diablosaure enchantée", "name_de_DE": "Verzauberte Teufelssaurierklaue", "name_zh_CN": "附魔的魔暴龙之爪", "name_es_ES": "Garra de demosaurio encantada", "name_ru_RU": "Зачарованный коготь дьявозавра", "name_it_IT": "Artiglio di Gigantosauro Incantato", "name_pt_PT": "Garra de Demossauro Encantada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155564, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mercy's Psalter", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 184783, "buy_price": 923917, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0492000579833984, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161223, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mercy's Psalter", "name_ko_KR": "메르시의 성시집", "name_fr_FR": "Psautier de Clémence", "name_de_DE": "Huldas Psalter", "name_zh_CN": "仁慈诗篇", "name_es_ES": "Salterio de Mercy", "name_ru_RU": "Псалтырь Ангелы", "name_it_IT": "Libro dei Salmi di Mercy", "name_pt_PT": "Saltério de Clemência", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155565, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trunksy", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 167787, "buy_price": 838939, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9527000188827515, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Trunksy", "name_ko_KR": "코순이", "name_fr_FR": "Latrompe", "name_de_DE": "Rüsselchen", "name_zh_CN": "鼻鼻", "name_es_ES": "Trompita", "name_ru_RU": "Хоботуша", "name_it_IT": "Nasone", "name_pt_PT": "Trombinha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155567, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mr. Munchykins", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 169091, "buy_price": 845456, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.960099995136261, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mr. Munchykins", "name_ko_KR": "냠냠 씨", "name_fr_FR": "M. Mangetout", "name_de_DE": "Herr Leckermaul", "name_zh_CN": "芒基金先生", "name_es_ES": "Sr. Tragoncete", "name_ru_RU": "Мистер Манчи", "name_it_IT": "Signor Dino", "name_pt_PT": "Sr. Fofucho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155568, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Galewind Chimes", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 444813, "buy_price": 2224068, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9901999831199646, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Galewind Chimes", "name_ko_KR": "돌풍바람 풍경", "name_fr_FR": "Carillon du grand vent", "name_de_DE": "Böenwindspiel", "name_zh_CN": "狂风风铃", "name_es_ES": "Campanillas de vendaval", "name_ru_RU": "Песнь урагана", "name_it_IT": "Campane del Vento Burrascoso", "name_pt_PT": "Sininhos da Ventania", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155569, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mayor Striggs", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175044, "buy_price": 875220, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9939000010490417, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Mayor Striggs", "name_ko_KR": "실밥 시장님", "name_fr_FR": "Maire Striggs", "name_de_DE": "Bürgermeister Stricks", "name_zh_CN": "斯崔格镇长", "name_es_ES": "Alcalde Striggs", "name_ru_RU": "Мэр Стриггс", "name_it_IT": "Sindaco Striggs", "name_pt_PT": "Prefeito Espiga", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 155881, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harlan's Loaded Dice", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 468487, "buy_price": 2342437, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0419000387191772, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Harlan's Loaded Dice", "name_ko_KR": "할란의 납 주사위", "name_fr_FR": "Dé pipé d’Harlan", "name_de_DE": "Harlans gezinkter Würfel", "name_zh_CN": "哈兰的注铅骰子", "name_es_ES": "Dados trucados de Harlan", "name_ru_RU": "Шулерские кости Харлана", "name_it_IT": "Dadi Truccati di Harlan", "name_pt_PT": "Dados Viciados de Arlão", "on_use": false, "id_encounter": 2095, "id_journal_instance": 1001, "id_map": 1754, "instance_type": 1}, {"id": 155947, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Living Flame", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 455, "buy_price": 2275, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9900000095367432, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Living Flame", "name_ko_KR": "살아있는 불꽃", "name_fr_FR": "Flamme vivante", "name_de_DE": "Lebende Flamme", "name_zh_CN": "活化烈焰", "name_es_ES": "Llama viva", "name_ru_RU": "Живой жар", "name_it_IT": "Fiamma Vivente", "name_pt_PT": "Chama Viva", "on_use": true, "id_encounter": 1639, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 155952, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Iron", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32297, "buy_price": 161485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0083999633789062, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Iron", "name_ko_KR": "무쇠의 심장", "name_fr_FR": "Cœur de fer", "name_de_DE": "Eisernes Herz", "name_zh_CN": "钢铁之心", "name_es_ES": "Corazón de hierro", "name_ru_RU": "Железное сердце", "name_it_IT": "Cuore di Ferro", "name_pt_PT": "Coração de Ferro", "on_use": true, "id_encounter": 1638, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156000, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wrathstone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30871, "buy_price": 154358, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638999700546265, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Wrathstone", "name_ko_KR": "분노의 돌", "name_fr_FR": "Pierre du courroux", "name_de_DE": "Zornstein", "name_zh_CN": "天谴之石", "name_es_ES": "Piedra de cólera", "name_ru_RU": "Камень гнева", "name_it_IT": "Pietra dell'Ira", "name_pt_PT": "Pedra da Ira", "on_use": true, "id_encounter": 1642, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pyrite Infuser", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33603, "buy_price": 168018, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0492000579833984, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Pyrite Infuser", "name_ko_KR": "황철석 주입기", "name_fr_FR": "Infuseur en pyrite", "name_de_DE": "Pyriteinspritzung", "name_zh_CN": "燃铁灌注器", "name_es_ES": "Inyector de pirita", "name_ru_RU": "Нагнетатель колчедана", "name_it_IT": "Infusore di Pirite", "name_pt_PT": "Infusor de Pirita", "on_use": false, "id_encounter": 1637, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156021, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Energy Siphon", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31832, "buy_price": 159163, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9939000010490417, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Energy Siphon", "name_ko_KR": "원기 흡수기", "name_fr_FR": "Siphon d’énergie", "name_de_DE": "Energiesiphon", "name_zh_CN": "能量虹吸", "name_es_ES": "Succión de energía", "name_ru_RU": "Вытягивание энергии", "name_it_IT": "Risucchio Energetico", "name_pt_PT": "Sifão de Energia", "on_use": true, "id_encounter": 1637, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156036, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of the Broodmother", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 448, "buy_price": 2241, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9753999710083008, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Eye of the Broodmother", "name_ko_KR": "여왕의 눈", "name_fr_FR": "Oeil de la mère des couvées", "name_de_DE": "Auge der Brutmutter", "name_zh_CN": "龙母之眼", "name_es_ES": "Ojo de la madre de linaje", "name_ru_RU": "Глаз матери стаи", "name_it_IT": "Occhio della Madre della Stirpe", "name_pt_PT": "Olho da Grande Mãe", "on_use": false, "id_encounter": 1639, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156041, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Furnace Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31829, "buy_price": 159147, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937999844551086, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Furnace Stone", "name_ko_KR": "용광로 돌", "name_fr_FR": "Pierre de la fournaise", "name_de_DE": "Stein des Eisenwerks", "name_zh_CN": "熔炉之石", "name_es_ES": "Piedra de caldera", "name_ru_RU": "Печной камень", "name_it_IT": "Pietra della Fornace", "name_pt_PT": "Pedra da Fornalha", "on_use": true, "id_encounter": 1638, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156187, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scale of Fates", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30996, "buy_price": 154983, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9678000211715698, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Scale of Fates", "name_ko_KR": "숙명의 비늘", "name_fr_FR": "Écaille des destinées", "name_de_DE": "Waagschale der Schicksale", "name_zh_CN": "命运之鳞", "name_es_ES": "Escama de fortunas", "name_ru_RU": "Чешуйка судеб", "name_it_IT": "Scaglia dei Destini", "name_pt_PT": "Balança do Destino", "on_use": true, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156207, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pandora's Plea", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 444, "buy_price": 2223, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9677000045776367, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Pandora's Plea", "name_ko_KR": "판도라의 탄원", "name_fr_FR": "Supplique de Pandore", "name_de_DE": "Pandoras Bitte", "name_zh_CN": "潘多拉的恳求", "name_es_ES": "Petición de Pandora", "name_ru_RU": "Мольба Пандоры", "name_it_IT": "Canto di Pandora", "name_pt_PT": "Apelo de Pandora", "on_use": false, "id_encounter": 1647, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156221, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The General's Heart", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33488, "buy_price": 167442, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455999374389648, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "The General's Heart", "name_ko_KR": "장군의 심장", "name_fr_FR": "Le cœur du général", "name_de_DE": "Das Herz des Generals", "name_zh_CN": "将军之心", "name_es_ES": "El corazón del General", "name_ru_RU": "Сердце генерала", "name_it_IT": "Cuore del Generale", "name_pt_PT": "O Coração do General", "on_use": false, "id_encounter": 1648, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156230, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flare of the Heavens", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 461, "buy_price": 2309, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0051000118255615, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Flare of the Heavens", "name_ko_KR": "천상의 빛줄기", "name_fr_FR": "Embrasement des cieux", "name_de_DE": "Leuchtfeuer der Himmel", "name_zh_CN": "天堂之焰", "name_es_ES": "Bengala de los cielos", "name_ru_RU": "Небесная вспышка", "name_it_IT": "Fiamma del Paradiso", "name_pt_PT": "Labareda dos Céus", "on_use": false, "id_encounter": 1648, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156234, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood of the Old God", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32662, "buy_price": 163310, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0197999477386475, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Blood of the Old God", "name_ko_KR": "고대 신의 피", "name_fr_FR": "Sang du Dieu très ancien", "name_de_DE": "Blut des Alten Gottes", "name_zh_CN": "古神之血", "name_es_ES": "Sangre del dios antiguo", "name_ru_RU": "Кровь Древнего бога", "name_it_IT": "Sangue del Dio Antico", "name_pt_PT": "Sangue do Deus Antigo", "on_use": false, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156245, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Show of Faith", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 31598, "buy_price": 157994, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9865999817848206, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Show of Faith", "name_ko_KR": "신념의 표시", "name_fr_FR": "Démonstration de foi", "name_de_DE": "Demonstration des Glaubens", "name_zh_CN": "信仰的证明", "name_es_ES": "Prueba de fe", "name_ru_RU": "Доказательство веры", "name_it_IT": "Icona della Fede", "name_pt_PT": "Prova da Fé", "on_use": false, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156277, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spark of Hope", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30647, "buy_price": 153237, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9569000005722046, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Spark of Hope", "name_ko_KR": "희망의 불꽃", "name_fr_FR": "Étincelle d’espoir", "name_de_DE": "Funken der Hoffnung", "name_zh_CN": "希望的火花", "name_es_ES": "Chispa de esperanza", "name_ru_RU": "Искра надежды", "name_it_IT": "Barlume di Speranza", "name_pt_PT": "Centelha de Esperança", "on_use": false, "id_encounter": 1642, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156288, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elemental Focus Stone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 458, "buy_price": 2291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973000288009644, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Elemental Focus Stone", "name_ko_KR": "정기 집중의 돌", "name_fr_FR": "Pierre de focalisation élémentaire", "name_de_DE": "Elementarer Fokusstein", "name_zh_CN": "元素聚焦之石", "name_es_ES": "Piedra de enfoque elemental", "name_ru_RU": "Камень средоточия стихий", "name_it_IT": "Pietra del Focus Elementale", "name_pt_PT": "Pedra da Concentração Elemental", "on_use": false, "id_encounter": 1643, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sif's Remembrance", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32787, "buy_price": 163935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0236999988555908, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Sif's Remembrance", "name_ko_KR": "시프의 추억", "name_fr_FR": "Souvenir de Sif", "name_de_DE": "Sifs Erinnerung", "name_zh_CN": "西芙的记忆", "name_es_ES": "Recuerdo de Sif", "name_ru_RU": "Воспоминание Сиф", "name_it_IT": "Ricordo di Sif", "name_pt_PT": "Lembrança de Sif", "on_use": false, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mjolnir Runestone", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 33020, "buy_price": 165104, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031000018119812, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Mjolnir Runestone", "name_ko_KR": "묠니르 마법석", "name_fr_FR": "Pierre runique de Mjolnir", "name_de_DE": "Runenstein von Mjolnir", "name_zh_CN": "雷神符石", "name_es_ES": "Piedra rúnica de Mjolnir", "name_ru_RU": "Рунический камень Мьольнира", "name_it_IT": "Pietra Runica di Mjolnir", "name_pt_PT": "Pedra Rúnica de Mjolnir", "on_use": false, "id_encounter": 1645, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156345, "race_mask": 18446744073709551615, "desc": "Covered in blood that doesn't seem to wash away.", "pad2": "", "pad1": "", "pad0": "", "name": "Royal Seal of King Llane", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32425, "buy_price": 162125, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0124000310897827, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Royal Seal of King Llane", "name_ko_KR": "국왕 레인의 옥새", "name_fr_FR": "Sceau royal du roi Llane", "name_de_DE": "König Llanes hoheitliches Siegel", "name_zh_CN": "莱恩国王的皇家徽记", "name_es_ES": "Sello real del rey Llane", "name_ru_RU": "Печать короля Ллейна", "name_it_IT": "Sigillo Reale di Re Llane", "name_pt_PT": "Selo Real do Rei Llane", "on_use": true, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 156458, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vanquished Clutches of Yogg-Saron", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 465, "buy_price": 2326, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0124000310897827, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Vanquished Clutches of Yogg-Saron", "name_ko_KR": "요그사론의 패배한 손", "name_fr_FR": "Étreintes de Yogg-Saron vaincu", "name_de_DE": "Bezwungene Klauen von Yogg-Saron", "name_zh_CN": "被征服的尤格-萨隆之爪", "name_es_ES": "Garras derrotadas de Yogg-Saron", "name_ru_RU": "Ослабшая хватка Йогг-Сарона", "name_it_IT": "Chele Dominate di Yogg-Saron", "name_pt_PT": "Garras Subjugadas de Yogg-Saron", "on_use": true, "id_encounter": 1649, "id_journal_instance": 759, "id_map": 603, "instance_type": 2}, {"id": 157746, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Graven Keepsake", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 5, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9569000005722046, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 16, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 2, "name_en_US": "Graven Keepsake", "name_ko_KR": "새김무늬 기념물", "name_fr_FR": "Souvenir sculpté", "name_de_DE": "Geschnitztes Andenken", "name_zh_CN": "雕饰纪念品", "name_es_ES": "Recuerdo grabado", "name_ru_RU": "Сувенир с гравировкой", "name_it_IT": "Pegno Inciso", "name_pt_PT": "Lembrança Gravada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 157747, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Illuminated Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 5, "buy_price": 5, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9606000185012817, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 16, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 2, "name_en_US": "Illuminated Charm", "name_ko_KR": "찬란한 부적", "name_fr_FR": "Charme illuminé", "name_de_DE": "Illuminierter Glücksbringer", "name_zh_CN": "光辉护符", "name_es_ES": "Talismán iluminado", "name_ru_RU": "Светящийся оберег", "name_it_IT": "Talismano Illuminato", "name_pt_PT": "Patuá Iluminado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 157763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Engine of Eradication", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 294723, "buy_price": 1473617, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0458999872207642, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Engine of Eradication", "name_ko_KR": "박멸의 기계", "name_fr_FR": "Vecteur d’éradication", "name_de_DE": "Auslöschungsmaschine", "name_zh_CN": "灭绝引擎", "name_es_ES": "Dispositivo de erradicación", "name_ru_RU": "Двигатель искоренения", "name_it_IT": "Congegno dell'Estirpazione", "name_pt_PT": "Engenho da Erradicação", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 157764, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Claw of the Crystalline Scorpid", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 295737, "buy_price": 1478689, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0494999885559082, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Claw of the Crystalline Scorpid", "name_ko_KR": "수정 전갈의 집게", "name_fr_FR": "Pince du scorpide cristallin", "name_de_DE": "Klaue des kristallinen Skorpiden", "name_zh_CN": "晶化幼蝎之爪", "name_es_ES": "Pinza del escórpido cristalino", "name_ru_RU": "Коготь кристаллического скорпида", "name_it_IT": "Pungiglione di Scorpide Cristallino", "name_pt_PT": "Garra do Escorpídeo Cristalino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 157765, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draught of Souls", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 268573, "buy_price": 1342867, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9531000256538391, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Draught of Souls", "name_ko_KR": "영혼의 비약", "name_fr_FR": "Breuvage des âmes", "name_de_DE": "Destillat der Seelen", "name_zh_CN": "灵魂之引", "name_es_ES": "Jarabe de almas", "name_ru_RU": "Настой душ", "name_it_IT": "Fiasca d'Anime", "name_pt_PT": "Tragada das Almas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 157766, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Nightmare Fog", "id_expansion": 6, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 269616, "buy_price": 1348080, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9567999839782715, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 4, "name_en_US": "Vial of Nightmare Fog", "name_ko_KR": "악몽 안개 약병", "name_fr_FR": "Fiole de brouillard cauchemardesque", "name_de_DE": "Phiole mit Alptraumnebel", "name_zh_CN": "一瓶梦魇之雾", "name_es_ES": "Vial de niebla de la Pesadilla", "name_ru_RU": "Фиал кошмарного тумана", "name_it_IT": "Fiala di Nebbia dell'Incubo", "name_pt_PT": "Frasco de Nevoeiro do Pesadelo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158153, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gilded Loa Figurine", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 454786, "buy_price": 2273932, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0124000310897827, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Gilded Loa Figurine", "name_ko_KR": "화려한 로아 조각상", "name_fr_FR": "Figurine de Loa dorée", "name_de_DE": "Vergoldete Loafigur", "name_zh_CN": "鎏金洛阿神灵造像", "name_es_ES": "Figurilla de loa dorada", "name_ru_RU": "Золоченая статуэтка лоа", "name_it_IT": "Statuetta del Loa Dorata", "name_pt_PT": "Estatueta Dourada de Loa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158154, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emblem of Zandalar", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 456448, "buy_price": 2282242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0161000490188599, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Emblem of Zandalar", "name_ko_KR": "잔달라의 문장", "name_fr_FR": "Emblème de Zandalar", "name_de_DE": "Emblem von Zandalar", "name_zh_CN": "赞达拉纹章", "name_es_ES": "Emblema de Zandalar", "name_ru_RU": "Зандаларская эмблема", "name_it_IT": "Emblema di Zandalar", "name_pt_PT": "Emblema de Zandalar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158155, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dinobone Charm", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 458065, "buy_price": 2290328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.019700050354004, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Dinobone Charm", "name_ko_KR": "공룡뼈 부적", "name_fr_FR": "Charme en os de dinosaure", "name_de_DE": "Dinoknochentalisman", "name_zh_CN": "恐龙骨护符", "name_es_ES": "Talismán de hueso de dinosaurio", "name_ru_RU": "Амулет из кости ящера", "name_it_IT": "Talismano d'Ossa di Dinosauro", "name_pt_PT": "Patuá de Osso de Dino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158162, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pearl Diver's Compass", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 436593, "buy_price": 2182965, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9718999862670898, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Pearl Diver's Compass", "name_ko_KR": "진주 잠수부의 나침반", "name_fr_FR": "Boussole de pêcheur de perle", "name_de_DE": "Perlentaucherkompass", "name_zh_CN": "采珠人的罗盘", "name_es_ES": "Brújula de buscador de perlas", "name_ru_RU": "Компас ныряльщика за жемчугом", "name_it_IT": "Bussola del Cercatore di Perle", "name_pt_PT": "Bússola do Mergulhador Peroleiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158163, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "First Mate's Spyglass", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 438210, "buy_price": 2191051, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9754999876022339, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "First Mate's Spyglass", "name_ko_KR": "일등항해사의 망원경", "name_fr_FR": "Longue-vue de second", "name_de_DE": "Fernrohr des Ersten Maats", "name_zh_CN": "大副的望远镜", "name_es_ES": "Catalejo de contramaestre", "name_ru_RU": "Подзорная труба первого помощника", "name_it_IT": "Cannocchiale del Primo Ufficiale", "name_pt_PT": "Luneta do Imediato", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158164, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Plunderbeard's Flask", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 439872, "buy_price": 2199362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.979200005531311, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Plunderbeard's Flask", "name_ko_KR": "플런더비어드의 영약", "name_fr_FR": "Flacon de Barbapille", "name_de_DE": "Ramschbarts Buddel", "name_zh_CN": "普兰比尔德的合剂", "name_es_ES": "Frasco de Barbarrapiña", "name_ru_RU": "Фляга Жадноборода", "name_it_IT": "Fiasca di Fregabarba", "name_pt_PT": "Frasco de Barbapilha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158215, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whirlwing's Plumage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 469835, "buy_price": 2349175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0458999872207642, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Whirlwing's Plumage", "name_ko_KR": "휘리릭날개의 깃털", "name_fr_FR": "Plumage d’Aile-du-Vent", "name_de_DE": "Wirbelschwinges Gefieder", "name_zh_CN": "旋风之翼飞羽", "name_es_ES": "Plumaje de Alatornado", "name_ru_RU": "Перо Вихрекрыла", "name_it_IT": "Piumaggio del Turbine", "name_pt_PT": "Plumagem de Espiralasa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158216, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Living Oil Canister", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 471452, "buy_price": 2357261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0494999885559082, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Living Oil Canister", "name_ko_KR": "살아있는 기름통", "name_fr_FR": "Ampoule d’huile bouillonnante", "name_de_DE": "Lebender Ölkanister", "name_zh_CN": "活油罐", "name_es_ES": "Bote de petróleo viviente", "name_ru_RU": "Канистра с бурлящей нефтью", "name_it_IT": "Contenitore d'Olio Vivente", "name_pt_PT": "Cilindro de Óleo Vivo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158218, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dadalea's Wing", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 429809, "buy_price": 2149049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9567999839782715, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Dadalea's Wing", "name_ko_KR": "다달리아의 날개", "name_fr_FR": "Aile de Dadalea", "name_de_DE": "Dadaleas Flügel", "name_zh_CN": "代达勒娅之翼", "name_es_ES": "Ala de Dadalea", "name_ru_RU": "Крыло Дадалии", "name_it_IT": "Ala di Dadalea", "name_pt_PT": "Asa de Dandara", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158219, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petula's Locket", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 169144, "buy_price": 845720, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9603999853134155, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159763, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Petula's Locket", "name_ko_KR": "페툴라의 정표", "name_fr_FR": "Médaillon de Petula", "name_de_DE": "Petulas Medaillon", "name_zh_CN": "佩图拉的坠饰", "name_es_ES": "Guardapelo de Petula", "name_ru_RU": "Медальон Петулы", "name_it_IT": "Medaglione di Petula", "name_pt_PT": "Medalhão de Pétala", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158220, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cooper's Horseshoe", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 174462, "buy_price": 872314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9905999898910522, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159764, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cooper's Horseshoe", "name_ko_KR": "쿠퍼의 편자", "name_fr_FR": "Fer à cheval de Cooper", "name_de_DE": "Böttchers Hufeisen", "name_zh_CN": "库珀的马掌", "name_es_ES": "Herradura de Cooper", "name_ru_RU": "Подкова бондаря", "name_it_IT": "Zoccolo di Cooper", "name_pt_PT": "Ferradura de Cooper", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158224, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Storms", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 451596, "buy_price": 2257984, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053000450134277, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Storms", "name_ko_KR": "폭풍의 약병", "name_fr_FR": "Fiole des tempêtes", "name_de_DE": "Phiole der Stürme", "name_zh_CN": "暴风之瓶", "name_es_ES": "Vial de tormentas", "name_ru_RU": "Фиал бури", "name_it_IT": "Fiala delle Tempeste", "name_pt_PT": "Frasco das Tempestades", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158225, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Over-Engineered Flash Bulb", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 177703, "buy_price": 888517, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0089999437332153, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159765, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Over-Engineered Flash Bulb", "name_ko_KR": "과도한 기술의 섬광구", "name_fr_FR": "Ampoule sur-bricolée", "name_de_DE": "Übertrieben komplizierte Blitzleuchte", "name_zh_CN": "过度调试的闪光灯", "name_es_ES": "Bombilla de destello muy sofisticada", "name_ru_RU": "Технически переусложненная вспышечная лампа", "name_it_IT": "Lampadina Ultraingegneristica", "name_pt_PT": "Lâmpada de Flash Supercomplexa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "My'das Talisman", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2375, "buy_price": 11877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0127999782562256, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "My'das Talisman", "name_ko_KR": "마이다스의 부적", "name_fr_FR": "Talisman de My’das", "name_de_DE": "My'dastalisman", "name_zh_CN": "点金护符", "name_es_ES": "Talismán de My'das", "name_ru_RU": "Талисман Ми'даса", "name_it_IT": "Talismano di My'das", "name_pt_PT": "Talismã de My'das", "on_use": true, "id_encounter": 2082, "id_journal_instance": 968, "id_map": 1763, "instance_type": 1}, {"id": 158320, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Revitalizing Voodoo Totem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2384, "buy_price": 11920, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0164999961853027, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Revitalizing Voodoo Totem", "name_ko_KR": "활력의 부두 토템", "name_fr_FR": "Totem vaudou revitalisant", "name_de_DE": "Lebenspendendes Voodoototem", "name_zh_CN": "活力巫毒图腾", "name_es_ES": "Tótem vudú revitalizante", "name_ru_RU": "Исцеляющий тотем вуду", "name_it_IT": "Totem del Vudù Rivitalizzante", "name_pt_PT": "Totem Vodu Revitalizante", "on_use": true, "id_encounter": 2036, "id_journal_instance": 968, "id_map": 1763, "instance_type": 1}, {"id": 158367, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Merektha's Fang", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 435393, "buy_price": 2176967, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9682999849319458, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Merektha's Fang", "name_ko_KR": "메레크타의 송곳니", "name_fr_FR": "Croc de Merekpha", "name_de_DE": "Merekthas Fangzahn", "name_zh_CN": "米利克萨之牙", "name_es_ES": "Colmillo de Merektha", "name_ru_RU": "Клык Меректы", "name_it_IT": "Zanna di Merektha", "name_pt_PT": "Presa de Merektha", "on_use": true, "id_encounter": 2143, "id_journal_instance": 1030, "id_map": 1877, "instance_type": 1}, {"id": 158368, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fangs of Intertwined Essence", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 437057, "buy_price": 2185285, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Fangs of Intertwined Essence", "name_ko_KR": "엮인 정수의 송곳니", "name_fr_FR": "Crochets d’essence entrelacée", "name_de_DE": "Fangzähne der verknüpften Essenz", "name_zh_CN": "缠结精华之牙", "name_es_ES": "Colmillos de esencia entrelazada", "name_ru_RU": "Клыки переплетенной сущности", "name_it_IT": "Zanne dell'Essenza Intrecciata", "name_pt_PT": "Presas de Essência Interligada", "on_use": true, "id_encounter": 2145, "id_journal_instance": 1030, "id_map": 1877, "instance_type": 1}, {"id": 158374, "race_mask": 18446744073709551615, "desc": "Phenomenal lightning power, itty bitty containment space.", "pad2": "", "pad1": "", "pad0": "", "name": "Tiny Electromental in a Jar", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446949, "buy_price": 2234746, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940000176429749, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Tiny Electromental in a Jar", "name_ko_KR": "단지 안의 전자정령", "name_fr_FR": "Petit électromentaire en bouteille", "name_de_DE": "Winziger Elektromentar im Glas", "name_zh_CN": "瓶中的电荷元素", "name_es_ES": "Electromental diminuto en un tarro", "name_ru_RU": "Крохотный электроменталь в банке", "name_it_IT": "Piccolo Elettromentale Sottovuoto", "name_pt_PT": "Eletromental Pequeno no Pote", "on_use": false, "id_encounter": 2144, "id_journal_instance": 1030, "id_map": 1877, "instance_type": 1}, {"id": 158511, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 378568, "buy_price": 1892841, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035099983215332, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158512, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 379921, "buy_price": 1899607, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0388000011444092, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158513, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 381238, "buy_price": 1906190, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0424000024795532, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382591, "buy_price": 1912956, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0461000204086304, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158515, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oceanographer's Weather Log", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 383944, "buy_price": 1919722, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0498000383377075, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Oceanographer's Weather Log", "name_ko_KR": "바다 낚시꾼의 날씨 일지", "name_fr_FR": "Journal météorologique d’océanographe", "name_de_DE": "Wetteraufzeichnungen des Meeresforschers", "name_zh_CN": "海洋学家的气候日志", "name_es_ES": "Informe meteorológico de oceanógrafo", "name_ru_RU": "Журнал погоды океанографа", "name_it_IT": "Diario Meteorologico dell'Oceanografo", "name_pt_PT": "Registro Climático do Oceanógrafo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Privateer's Spyglass", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 348688, "buy_price": 1743440, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9534000158309937, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Privateer's Spyglass", "name_ko_KR": "선원의 망원경", "name_fr_FR": "Longue-vue de corsaire", "name_de_DE": "Freibeuterfernrohr", "name_zh_CN": "水手的望远镜", "name_es_ES": "Catalejo de corsario", "name_ru_RU": "Пиратская подзорная труба", "name_it_IT": "Cannocchiale del Corsaro", "name_pt_PT": "Luneta do Corsário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158555, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Doom Shroom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 471452, "buy_price": 2357261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0494999885559082, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Doom Shroom", "name_ko_KR": "파멸의 버섯", "name_fr_FR": "Champignon funeste", "name_de_DE": "Verdammnispilz", "name_zh_CN": "毁灭蘑菇", "name_es_ES": "Seta de calamidad", "name_ru_RU": "Роковой гриб", "name_it_IT": "Fungo della Rovina", "name_pt_PT": "Cogumelo da Ruína", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158556, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Siren's Tongue", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 428147, "buy_price": 2140739, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9531000256538391, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Siren's Tongue", "name_ko_KR": "세이렌의 혀", "name_fr_FR": "Langue de sirène", "name_de_DE": "Sirenenzunge", "name_zh_CN": "海妖之舌", "name_es_ES": "Lengua de sirena", "name_ru_RU": "Язык сирены", "name_it_IT": "Lingua della Sirena", "name_pt_PT": "Língua da Sirena", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158557, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heartsbane Charm", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 168510, "buy_price": 842550, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9567999839782715, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159078, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Heartsbane Charm", "name_ko_KR": "심장파멸 부적", "name_fr_FR": "Charme malecarde", "name_de_DE": "Herzbannamulett", "name_zh_CN": "毒心护符", "name_es_ES": "Talismán Aterracorazón", "name_ru_RU": "Оберег ковена Мертвых Сердец", "name_it_IT": "Talismano delle Frangicuore", "name_pt_PT": "Patuá Sangra-coração", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158558, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Luminous Honey Jar", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 173811, "buy_price": 869056, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868999719619751, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159978, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Luminous Honey Jar", "name_ko_KR": "영롱한 꿀단지", "name_fr_FR": "Pot de miel lumineux", "name_de_DE": "Leuchtender Honigtopf", "name_zh_CN": "夜光蜂蜜罐", "name_es_ES": "Tarro de miel luminoso", "name_ru_RU": "Светящаяся баночка меда", "name_it_IT": "Vaso di Miele Luminoso", "name_pt_PT": "Pote de Mel Luminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158570, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 377068, "buy_price": 1885344, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031000018119812, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158571, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 378422, "buy_price": 1892110, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0347000360488892, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 379775, "buy_price": 1898876, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384000539779663, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158573, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 381091, "buy_price": 1905459, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0420000553131104, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158574, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bijou of the Golden City", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 355527, "buy_price": 1777636, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972100019454956, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Bijou of the Golden City", "name_ko_KR": "황금 도시의 장신구", "name_fr_FR": "Bijou de la cité d’or", "name_de_DE": "Schmuckstück der Goldenen Stadt", "name_zh_CN": "黄金城宝石", "name_es_ES": "Joya de la ciudad dorada", "name_ru_RU": "Украшение Золотого города", "name_it_IT": "Bijou della Città Dorata", "name_pt_PT": "Bijuteria da Cidade Dourada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158575, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enchanted Devilsaur Claw", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 356880, "buy_price": 1784402, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9757999777793884, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 36, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Enchanted Devilsaur Claw", "name_ko_KR": "마법 깃든 데빌사우루스 발톱", "name_fr_FR": "Griffe de diablosaure enchantée", "name_de_DE": "Verzauberte Teufelssaurierklaue", "name_zh_CN": "附魔的魔暴龙之爪", "name_es_ES": "Garra de demosaurio encantada", "name_ru_RU": "Зачарованный коготь дьявозавра", "name_it_IT": "Artiglio di Gigantosauro Incantato", "name_pt_PT": "Garra de Demossauro Encantada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158679, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Maokka's Carving", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 178989, "buy_price": 894945, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0162999629974365, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161182, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Maokka's Carving", "name_ko_KR": "마오카의 새김석", "name_fr_FR": "Gravure de Maokka", "name_de_DE": "Maokkas Schnitzarbeit", "name_zh_CN": "毛卡的雕刻", "name_es_ES": "Talla de Maokka", "name_ru_RU": "Безделушка Маокки", "name_it_IT": "Intaglio di Maokka", "name_pt_PT": "Entalhe de Maokka", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158680, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rikal's Ritual Beads", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 179640, "buy_price": 898203, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0199999809265137, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159976, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rikal's Ritual Beads", "name_ko_KR": "리칼의 의식용 구슬", "name_fr_FR": "Chapelet rituel de Rikal", "name_de_DE": "Rikals Ritualperlen", "name_zh_CN": "里卡尔的仪式念珠", "name_es_ES": "Cuentas rituales de Rikal", "name_ru_RU": "Ритуальные четки Рикала", "name_it_IT": "Perle Rituali di Rikal", "name_pt_PT": "Contas de Oração de Rikal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158681, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightning Tether", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180292, "buy_price": 901461, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0236999988555908, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159979, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lightning Tether", "name_ko_KR": "번개 올가미", "name_fr_FR": "Longe éclair", "name_de_DE": "Blitzkette", "name_zh_CN": "闪电之链", "name_es_ES": "Collar de relámpagos", "name_ru_RU": "Привязь молнии", "name_it_IT": "Fune di Fulmini", "name_pt_PT": "Corrente Elétrica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 158712, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rezan's Gleaming Eye", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2322, "buy_price": 11614, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904000163078308, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rezan's Gleaming Eye", "name_ko_KR": "레잔의 번뜩이는 눈", "name_fr_FR": "Œil luisant de Rezan", "name_de_DE": "Rezans glänzendes Auge", "name_zh_CN": "莱赞的微光之眼", "name_es_ES": "Ojo reluciente de Rezan", "name_ru_RU": "Сияющий глаз Резана", "name_it_IT": "Occhio Luminoso di Rezan", "name_pt_PT": "Olho Brilhante de Rezan", "on_use": false, "id_encounter": 2083, "id_journal_instance": 968, "id_map": 1763, "instance_type": 1}, {"id": 159074, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jarkadiax's Other Eye", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180996, "buy_price": 904984, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276999473571777, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 155569, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Jarkadiax's Other Eye", "name_ko_KR": "자르카디악스의 다른 눈", "name_fr_FR": "Deuxième œil de Jarkadiax", "name_de_DE": "Jarkadiax' anderes Auge", "name_zh_CN": "加卡迪克斯的另一只眼珠", "name_es_ES": "Otro ojo de Jarkadiax", "name_ru_RU": "Второй глаз Джаркадиакса", "name_it_IT": "Altro Occhio di Jarkadiax", "name_pt_PT": "Outro Olho de Jarkadiax", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159075, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodhex Talisman", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 181648, "buy_price": 908242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 155565, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Bloodhex Talisman", "name_ko_KR": "혈저주 부적", "name_fr_FR": "Talisman de maléfice", "name_de_DE": "Talisman der Blutverhexung", "name_zh_CN": "鲜血妖术护符", "name_es_ES": "Talismán de maldición de sangre", "name_ru_RU": "Талисман кровавой порчи", "name_it_IT": "Talismano della Maledizione del Sangue", "name_pt_PT": "Talismã da Bagata Sanguínea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159077, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticker's Spare Catalyst", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 182951, "buy_price": 914758, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0388000011444092, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 155567, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Ticker's Spare Catalyst", "name_ko_KR": "티커의 예비 촉매", "name_fr_FR": "Catalyseur de rechange de Tocant", "name_de_DE": "Tickers Ersatzkatalysator", "name_zh_CN": "钟摆的备用催化剂", "name_es_ES": "Catalizador de repuesto de Tictac", "name_ru_RU": "Запасной катализатор Тиккера", "name_it_IT": "Catalizzatore di Scorta di Schiaffo", "name_pt_PT": "Catalisador Sobressalente de Tique", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159078, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Potency Manipulator", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 183585, "buy_price": 917929, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0424000024795532, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158557, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Potency Manipulator", "name_ko_KR": "위력 조작기", "name_fr_FR": "Manipulateur de toute-puissance", "name_de_DE": "Potenzmanipulator", "name_zh_CN": "效能操纵器", "name_es_ES": "Manipulador de potencia", "name_ru_RU": "Регулятор мощности", "name_it_IT": "Manipolatore della Potenza", "name_pt_PT": "Manipulador de Potência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159125, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Fathoms", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9943000078201294, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Fathoms", "name_ko_KR": "다크문 카드 한 벌: 나락", "name_fr_FR": "Suite de Sombrelune : Fonds", "name_de_DE": "Dunkelmondkartenset: Tiefen", "name_zh_CN": "暗月套牌:深渊", "name_es_ES": "Colección de la Luna Negra: Profundidades", "name_ru_RU": "Колода карт Новолуния \"Глубины\"", "name_it_IT": "Mazzo degli Abissi di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Profundezas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159126, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Squalls", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9980000257492065, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Squalls", "name_ko_KR": "다크문 카드 한 벌: 돌풍", "name_fr_FR": "Suite de Sombrelune : Bourrasques", "name_de_DE": "Dunkelmondkartenset: Sturmböen", "name_zh_CN": "暗月套牌:狂风", "name_es_ES": "Colección de la Luna Negra: Borrascas", "name_ru_RU": "Колода карт Новолуния \"Шквал\"", "name_it_IT": "Mazzo delle Burrasche di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Rajadas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159127, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Tides", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0016000270843506, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Tides", "name_ko_KR": "다크문 카드 한 벌: 파도", "name_fr_FR": "Suite de Sombrelune : Marées", "name_de_DE": "Dunkelmondkartenset: Gezeiten", "name_zh_CN": "暗月套牌:浪涛", "name_es_ES": "Colección de la Luna Negra: Mareas", "name_ru_RU": "Колода карт Новолуния \"Приливы\"", "name_it_IT": "Mazzo delle Maree di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Marés", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159128, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Blockades", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0053000450134277, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Blockades", "name_ko_KR": "다크문 카드 한 벌: 봉쇄", "name_fr_FR": "Suite de Sombrelune : Blocus", "name_de_DE": "Dunkelmondkartenset: Blockaden", "name_zh_CN": "暗月套牌:封锁", "name_es_ES": "Colección de la Luna Negra: Bloqueos", "name_ru_RU": "Колода карт Новолуния \"Блокада\"", "name_it_IT": "Mazzo delle Barricate di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Bloqueios", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159610, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vessel of Skittering Shadows", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2271, "buy_price": 11355, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9682999849319458, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Vessel of Skittering Shadows", "name_ko_KR": "기어다니는 암흑의 유리병", "name_fr_FR": "Réceptacle d’ombres fourmillantes", "name_de_DE": "Gefäß der krabbelnden Schatten", "name_zh_CN": "飞掠之影容器", "name_es_ES": "Vasija de sombras reptadoras", "name_ru_RU": "Сосуд ползучих теней", "name_it_IT": "Vaso d'Ombre Striscianti", "name_pt_PT": "Receptáculo das Sombras Pateantes", "on_use": false, "id_encounter": 2030, "id_journal_instance": 968, "id_map": 1763, "instance_type": 1}, {"id": 159611, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Razdunk's Big Red Button", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 437057, "buy_price": 2185285, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972000002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Razdunk's Big Red Button", "name_ko_KR": "라즈덩크의 큰 적색 단추", "name_fr_FR": "Gros bouton rouge de Razzbam", "name_de_DE": "Ratztunks großer roter Knopf", "name_zh_CN": "拉兹敦克的大红按钮", "name_es_ES": "Gran botón rojo de Razdunk", "name_ru_RU": "Большая красная кнопка Разданка", "name_it_IT": "Grosso Pulsante Rosso di Trucirazzi", "name_pt_PT": "Grande Botão Vermelho de Frustrus", "on_use": true, "id_encounter": 2116, "id_journal_instance": 1012, "id_map": 1594, "instance_type": 1}, {"id": 159612, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Azerokk's Resonating Heart", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 438675, "buy_price": 2193379, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.975600004196167, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Azerokk's Resonating Heart", "name_ko_KR": "아제로크의 공명하는 심장", "name_fr_FR": "Cœur résonnant d’Azerokk", "name_de_DE": "Azerokks resonierendes Herz", "name_zh_CN": "艾泽洛克的共鸣之心", "name_es_ES": "Corazón resonador de Azerokk", "name_ru_RU": "Резонирующее сердце Азерокка", "name_it_IT": "Cuore Risonante di Azerokk", "name_pt_PT": "Coração Ressoante de Azerokk", "on_use": false, "id_encounter": 2114, "id_journal_instance": 1012, "id_map": 1594, "instance_type": 1}, {"id": 159614, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Galecaller's Boon", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 442003, "buy_price": 2210016, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9829999804496765, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Galecaller's Boon", "name_ko_KR": "강풍술사의 은혜", "name_fr_FR": "Faveur de mande-trombe", "name_de_DE": "Segen der Sturmbeschwörerin", "name_zh_CN": "唤风者之赐", "name_es_ES": "Favor de clamavendavales", "name_ru_RU": "Дар призывательницы штормов", "name_it_IT": "Dono dell'Invocabrezza", "name_pt_PT": "Bênção do Chamatormenta", "on_use": true, "id_encounter": 2154, "id_journal_instance": 1036, "id_map": 1864, "instance_type": 1}, {"id": 159615, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ignition Mage's Fuse", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2314, "buy_price": 11571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9866999983787537, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ignition Mage's Fuse", "name_ko_KR": "점화 마법사의 도화선", "name_fr_FR": "Mèche de la mageflamme", "name_de_DE": "Zünder der Brandmagierin", "name_zh_CN": "炎法师的引线", "name_es_ES": "Mecha del mago de ignición", "name_ru_RU": "Запал мага-поджигателя", "name_it_IT": "Miccia della Maga dell'Ignizione", "name_pt_PT": "Estopim do Mago de Ignição", "on_use": true, "id_encounter": 2099, "id_journal_instance": 1002, "id_map": 1771, "instance_type": 1}, {"id": 159616, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gore-Crusted Butcher's Block", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2322, "buy_price": 11613, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9902999997138977, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Gore-Crusted Butcher's Block", "name_ko_KR": "선혈껍질 도살자의 돌판", "name_fr_FR": "Billot de boucher incrusté de sang", "name_de_DE": "Blutverkrusteter Schlachtblock", "name_zh_CN": "血渍屠夫隔板", "name_es_ES": "Bloque de carnicero con costra de sangre", "name_ru_RU": "Залитый кровью блок мясника", "name_it_IT": "Ceppo del Macellaio Sporco di Sangue", "name_pt_PT": "Bloco Ensanguentado do Açougueiro", "on_use": false, "id_encounter": 2127, "id_journal_instance": 1021, "id_map": 1862, "instance_type": 1}, {"id": 159617, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lustrous Golden Plumage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446949, "buy_price": 2234746, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940000176429749, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Lustrous Golden Plumage", "name_ko_KR": "반짝이는 금빛 깃털", "name_fr_FR": "Plumage doré satiné", "name_de_DE": "Glänzend goldenes Gefieder", "name_zh_CN": "金辉飞羽", "name_es_ES": "Plumaje dorado lustroso", "name_ru_RU": "Блестящий золотой плюмаж", "name_it_IT": "Piumaggio Dorato Lucido", "name_pt_PT": "Plumagem Dourada Lustrosa", "on_use": true, "id_encounter": 2165, "id_journal_instance": 1041, "id_map": 1762, "instance_type": 1}, {"id": 159618, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mchimba's Ritual Bandages", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 448613, "buy_price": 2243065, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9976999759674072, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Mchimba's Ritual Bandages", "name_ko_KR": "음침바의 의식 붕대", "name_fr_FR": "Bandages rituels de Mchimba", "name_de_DE": "Mchimbas Ritualbandagen", "name_zh_CN": "姆沁巴的仪式绷带", "name_es_ES": "Vendajes rituales de Mchimba", "name_ru_RU": "Ритуальные бинты Мчимбы", "name_it_IT": "Bende Rituali di Mchimba", "name_pt_PT": "Bandagens Rituais de Muquimba", "on_use": true, "id_encounter": 2171, "id_journal_instance": 1041, "id_map": 1762, "instance_type": 1}, {"id": 159619, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Briny Barnacle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 462192, "buy_price": 2310961, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027899980545044, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Briny Barnacle", "name_ko_KR": "바닷물 따개비", "name_fr_FR": "Bigorneau saumâtre", "name_de_DE": "Salzige Seepocke", "name_zh_CN": "咸水藤壶", "name_es_ES": "Crustáceo salobre", "name_ru_RU": "Просоленная ракушка", "name_it_IT": "Cirripede Salmastro", "name_pt_PT": "Craca Salmoura", "on_use": false, "id_encounter": 2153, "id_journal_instance": 1036, "id_map": 1864, "instance_type": 1}, {"id": 159620, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Conch of Dark Whispers", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2419, "buy_price": 12096, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031499981880188, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Conch of Dark Whispers", "name_ko_KR": "어두운 속삭임의 소라", "name_fr_FR": "Conque des sombres murmures", "name_de_DE": "Muschel des dunklen Flüsterns", "name_zh_CN": "黑暗低语海螺", "name_es_ES": "Caracola de susurros oscuros", "name_ru_RU": "Раковина темного шепота", "name_it_IT": "Conchiglia dei Sussurri Oscuri", "name_pt_PT": "Concha dos Sussurros Sombrios", "on_use": false, "id_encounter": 2156, "id_journal_instance": 1036, "id_map": 1864, "instance_type": 1}, {"id": 159622, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hadal's Nautilus", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2436, "buy_price": 12183, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0389000177383423, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Hadal's Nautilus", "name_ko_KR": "하달의 앵무조개", "name_fr_FR": "Nautile de Hadal", "name_de_DE": "Hadals Nautilus", "name_zh_CN": "哈达尔的鹦鹉螺", "name_es_ES": "Nautilus de Hadal", "name_ru_RU": "Наутилус Хадала", "name_it_IT": "Nautilus di Hadal", "name_pt_PT": "Náutilo de Hadal", "on_use": false, "id_encounter": 2134, "id_journal_instance": 1023, "id_map": 1822, "instance_type": 1}, {"id": 159623, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dead-Eye Spyglass", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 468802, "buy_price": 2344011, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0426000356674194, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Dead-Eye Spyglass", "name_ko_KR": "명사수의 망원경", "name_fr_FR": "Longue-vue d’œil-mort", "name_de_DE": "Fernrohr des Scharfschützen", "name_zh_CN": "亡眼望远镜", "name_es_ES": "Catalejo certero", "name_ru_RU": "Подзорная труба зоркого глаза", "name_it_IT": "Cannocchiale Occhio di Falco", "name_pt_PT": "Luneta do Caolho", "on_use": false, "id_encounter": 2173, "id_journal_instance": 1023, "id_map": 1822, "instance_type": 1}, {"id": 159624, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rotcrusted Voodoo Doll", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2453, "buy_price": 12268, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0462000370025635, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Rotcrusted Voodoo Doll", "name_ko_KR": "부패범벅 부두 인형", "name_fr_FR": "Poupée vaudou couverte de moisissures", "name_de_DE": "Vermoderte Voodoopuppe", "name_zh_CN": "朽烂外壳巫毒人偶", "name_es_ES": "Muñeco de vudú de corteza podrida", "name_ru_RU": "Подгнившая кукла вуду", "name_it_IT": "Bambola Vudù Incrostata di Marcio", "name_pt_PT": "Boneca Vodu Apodrecida", "on_use": true, "id_encounter": 2157, "id_journal_instance": 1022, "id_map": 1841, "instance_type": 1}, {"id": 159625, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Animated Blood", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 472084, "buy_price": 2360423, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0499000549316406, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Animated Blood", "name_ko_KR": "살아 움직이는 피가 든 약병", "name_fr_FR": "Fiole de sang animé", "name_de_DE": "Phiole mit beseeltem Blut", "name_zh_CN": "活性血瓶", "name_es_ES": "Vial de sangre animada", "name_ru_RU": "Пузырек с оживленной кровью", "name_it_IT": "Fiala di Sangue Animato", "name_pt_PT": "Ampola da Animação Sanguínea", "on_use": true, "id_encounter": 2158, "id_journal_instance": 1022, "id_map": 1841, "instance_type": 1}, {"id": 159626, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lingering Sporepods", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 428738, "buy_price": 2143693, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535000324249268, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Lingering Sporepods", "name_ko_KR": "머무는 포자씨앗", "name_fr_FR": "Bogues de spores persistantes", "name_de_DE": "Nachhaltige Sporenkapseln", "name_zh_CN": "萦索孢子囊", "name_es_ES": "Vainas de esporas persistentes", "name_ru_RU": "Коробочка с дремлющими спорами", "name_it_IT": "Baccelli Persistenti", "name_pt_PT": "Guarda-esporo Duradouro", "on_use": false, "id_encounter": 2130, "id_journal_instance": 1022, "id_map": 1841, "instance_type": 1}, {"id": 159627, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jes' Howler", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430402, "buy_price": 2152011, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9571999907493591, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Jes' Howler", "name_ko_KR": "제스의 울부짖음", "name_fr_FR": "Hurleur de Jes", "name_de_DE": "Jes' Knurrer", "name_zh_CN": "杰斯的咆哮", "name_es_ES": "Aullido de Jes", "name_ru_RU": "Завывашка Джеса", "name_it_IT": "Belva di Jes", "name_pt_PT": "Uivador do Lou", "on_use": true, "id_encounter": 2098, "id_journal_instance": 1002, "id_map": 1771, "instance_type": 1}, {"id": 159628, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kul Tiran Cannonball Runner", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 432021, "buy_price": 2160105, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9607999920845032, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kul Tiran Cannonball Runner", "name_ko_KR": "쿨 티란 포탄 주자", "name_fr_FR": "Canon mobile kultirassien", "name_de_DE": "Kanonenkugelwerfer von Kul Tiras", "name_zh_CN": "库尔提拉斯便携火炮", "name_es_ES": "Lanzacañonazos de Kul Tiras", "name_ru_RU": "Кул-тирасская мобильная пушка", "name_it_IT": "Binario del Cannone di Kul Tiras", "name_pt_PT": "Fura-bloqueio Kultireno", "on_use": false, "id_encounter": 2096, "id_journal_instance": 1002, "id_map": 1771, "instance_type": 1}, {"id": 159630, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Balefire Branch", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2270, "buy_price": 11354, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9682000279426575, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Balefire Branch", "name_ko_KR": "재앙불꽃 가지", "name_fr_FR": "Branche de bûcher", "name_de_DE": "Unheilfeuerzweig", "name_zh_CN": "怨火柳枝", "name_es_ES": "Rama de Fuegotorvo", "name_ru_RU": "Ветвь гибельного огня", "name_it_IT": "Ramo della Maestra della Pira", "name_pt_PT": "Galho de Fogaréu", "on_use": true, "id_encounter": 2126, "id_journal_instance": 1021, "id_map": 1862, "instance_type": 1}, {"id": 159631, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lady Waycrest's Music Box", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2279, "buy_price": 11396, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9718000292778015, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1439, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Lady Waycrest's Music Box", "name_ko_KR": "부인 웨이크레스트의 음악 상자", "name_fr_FR": "Boîte à musique de dame Malvoie", "name_de_DE": "Lady Kronsteigs Spieluhr", "name_zh_CN": "维克雷斯夫人的音乐盒", "name_es_ES": "Caja de música de lady Crestavía", "name_ru_RU": "Музыкальная шкатулка леди Уэйкрест", "name_it_IT": "Carillon di Dama Crestabianca", "name_pt_PT": "Caixa de Música de Lady Capelo", "on_use": false, "id_encounter": 2128, "id_journal_instance": 1021, "id_map": 1862, "instance_type": 1}, {"id": 159763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of Vol'jamba", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175149, "buy_price": 875748, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944999814033508, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158219, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Idol of Vol'jamba", "name_ko_KR": "볼잠바의 우상", "name_fr_FR": "Idole de Vol’jamba", "name_de_DE": "Vol'jambas Götze", "name_zh_CN": "沃加巴雕像", "name_es_ES": "Ídolo de Vol'jamba", "name_ru_RU": "Идол Вол'джамбы", "name_it_IT": "Idolo di Vol'jamba", "name_pt_PT": "Ídolo de Vol'jamba", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159764, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enraged Diemetradon Fin", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 175801, "buy_price": 879006, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.998199999332428, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158220, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Enraged Diemetradon Fin", "name_ko_KR": "격노한 디메트로돈 지느러미", "name_fr_FR": "Aileron de dimeurtrodon enragé", "name_de_DE": "Segel des wütenden Dimetrodons", "name_zh_CN": "暴怒双帆龙背鳍", "name_es_ES": "Aleta de diemetradón iracundo", "name_ru_RU": "Гребень бешеного деметродона", "name_it_IT": "Pinna di Diemetradonte Infuriato", "name_pt_PT": "Barbatana de Dimetrodonte Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159765, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empowered Shark's Tooth", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 176452, "buy_price": 882264, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0018999576568604, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158225, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Empowered Shark's Tooth", "name_ko_KR": "강화된 상어 이빨", "name_fr_FR": "Dent de requin surpuissante", "name_de_DE": "Machterfüllter Haifischzahn", "name_zh_CN": "强化的鲨鱼利齿", "name_es_ES": "Diente de tiburón potenciado", "name_ru_RU": "Усиленный зуб акулы", "name_it_IT": "Dente di Squalo Potenziato", "name_pt_PT": "Dente de Tubarão Fortalecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159976, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Liberated Idol of Binding", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 179711, "buy_price": 898556, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020400047302246, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158680, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Liberated Idol of Binding", "name_ko_KR": "풀려난 속박의 우상", "name_fr_FR": "Idole de lien libérée", "name_de_DE": "Entwendeter Götze der Bindung", "name_zh_CN": "解放的束缚雕像", "name_es_ES": "Ídolo de vinculación liberado", "name_ru_RU": "Реквизированный идол привязывания", "name_it_IT": "Idolo del Vincolo Liberato", "name_pt_PT": "Ídolo da Vinculação Libertado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159977, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vindictive Golem Core", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180362, "buy_price": 901814, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161289, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Vindictive Golem Core", "name_ko_KR": "앙갚음하는 골렘 핵", "name_fr_FR": "Noyau de golem vindicatif", "name_de_DE": "Kraftkern des rachgierigen Golems", "name_zh_CN": "守备魔像核心", "name_es_ES": "Núcleo de gólem vindicativo", "name_ru_RU": "Ядро голема-карателя", "name_it_IT": "Nucleo del Golem Vendicativo", "name_pt_PT": "Núcleo de Golem Vingativo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159978, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Junji's Egg Timer", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 180996, "buy_price": 904984, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276999473571777, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158558, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Junji's Egg Timer", "name_ko_KR": "준지의 계란 초시계", "name_fr_FR": "Minuteur de Junji", "name_de_DE": "Junjis Eieruhr", "name_zh_CN": "祖恩基的煮蛋计时器", "name_es_ES": "Temporizador huevo de Junji", "name_ru_RU": "Яичный таймер Джунджи", "name_it_IT": "Cronometro a Uovo di Junji", "name_pt_PT": "Temporizador de Ovo de Junji", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 159979, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rorgog's Antenna", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 181648, "buy_price": 908242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158681, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rorgog's Antenna", "name_ko_KR": "로르고그의 뾰족더듬이", "name_fr_FR": "Antenne de Rorgog", "name_de_DE": "Rorgogs Antenne", "name_zh_CN": "洛果戈的触须", "name_es_ES": "Antena de Rorgog", "name_ru_RU": "Усик Роргога", "name_it_IT": "Antenna di Rorgog", "name_pt_PT": "Antena de Rorgog", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 160262, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "\"Relic of the Makers\"", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 184307, "buy_price": 921539, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0464999675750732, "flags_1": 0, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161222, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "\"Relic of the Makers\"", "name_ko_KR": "\"창조주의 유물\"", "name_fr_FR": "« Relique des Faiseurs »", "name_de_DE": "\"Relikt der Schöpfer\"", "name_zh_CN": "“造物者的遗物”", "name_es_ES": "\"Reliquia de los Creadores\"", "name_ru_RU": "\"Реликвия Творцов\"", "name_it_IT": "\"Reliquia dei Creatori\"", "name_pt_PT": "\"Relíquia dos Criadores\"", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 160263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Snowpelt Mangler", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 426800, "buy_price": 2134001, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9501000046730042, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Snowpelt Mangler", "name_ko_KR": "눈가죽 훼손자", "name_fr_FR": "Griffes de neigepoil", "name_de_DE": "Schneepelzzerfleischer", "name_zh_CN": "雪毛嗥狼", "name_es_ES": "Mutilador Nievepelaje", "name_ru_RU": "Снегошкурый уничтожитель", "name_it_IT": "Dilaniatore dei Pellenevosa", "name_pt_PT": "Mutilador Courofrio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 160648, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenetic Corpuscle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 633488, "buy_price": 3167442, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9983000159263611, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Frenetic Corpuscle", "name_ko_KR": "부산스러운 혈구", "name_fr_FR": "Corpuscule frénétique", "name_de_DE": "Frenetisches Korpuskel", "name_zh_CN": "狂热血珠", "name_es_ES": "Corpúsculo frenético", "name_ru_RU": "Нестабильная частица", "name_it_IT": "Corpuscolo Frenetico", "name_pt_PT": "Corpúsculo Frenético", "on_use": false, "id_encounter": 2146, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160649, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inoculating Extract", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 635836, "buy_price": 3179181, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Inoculating Extract", "name_ko_KR": "예방의 추출물", "name_fr_FR": "Extrait d’inoculation", "name_de_DE": "Immunisierendes Extrakt", "name_zh_CN": "疫苗提取物", "name_es_ES": "Extracto inoculador", "name_ru_RU": "Укрепляющий экстракт", "name_it_IT": "Estratto Inoculante", "name_pt_PT": "Extrato de Inoculação", "on_use": true, "id_encounter": 2166, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160650, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Disc of Systematic Regression", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 638184, "buy_price": 3190921, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0056999921798706, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Disc of Systematic Regression", "name_ko_KR": "구조적 역행의 원반", "name_fr_FR": "Disque de régression systématique", "name_de_DE": "Scheibe der systematischen Regression", "name_zh_CN": "系统复原圆盘", "name_es_ES": "Disco de regresión sistemática", "name_ru_RU": "Диск систематической регрессии", "name_it_IT": "Disco della Regressione Sistematica", "name_pt_PT": "Disco da Regressão Sistemática", "on_use": false, "id_encounter": 2169, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160651, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vigilant's Bloodshaper", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3346, "buy_price": 16730, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0094000101089478, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Vigilant's Bloodshaper", "name_ko_KR": "감시자의 피구체기", "name_fr_FR": "Sculpte-sang du vigilant", "name_de_DE": "Blutformer der Wachsamen", "name_zh_CN": "戒卫的塑血者", "name_es_ES": "Modelasangre del vigilante", "name_ru_RU": "Кроводел стража", "name_it_IT": "Plasmasangue del Vigilante", "name_pt_PT": "Moldassangue do Vigilante", "on_use": false, "id_encounter": 2168, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160652, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Construct Overcharger", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 642816, "buy_price": 3214083, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0130000114440918, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Construct Overcharger", "name_ko_KR": "피조물 과부하기", "name_fr_FR": "Surchargeur d’assemblage", "name_de_DE": "Konstruktüberlader", "name_zh_CN": "构造体过载器", "name_es_ES": "Sobrecargador de ensamblaje", "name_ru_RU": "Нагнетатель голема", "name_it_IT": "Sovraccaricatore del Costrutto", "name_pt_PT": "Sobrecarregador do Constructo", "on_use": false, "id_encounter": 2168, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160653, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Xalzaix's Veiled Eye", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 645164, "buy_price": 3225822, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Xalzaix's Veiled Eye", "name_ko_KR": "잘자익스의 가리어진 눈", "name_fr_FR": "Œil voilé de Xalzaix", "name_de_DE": "Xalzaix' verschleiertes Auge", "name_zh_CN": "夏尔扎克斯的迷蒙之眼", "name_es_ES": "Ojo velado de Xalzaix", "name_ru_RU": "Затуманенный глаз Залзеикса", "name_it_IT": "Occhio Velato di Xalzaix", "name_pt_PT": "Olho Velado de Xalzaix", "on_use": false, "id_encounter": 2194, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vanquished Tendril of G'huun", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3382, "buy_price": 16913, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020400047302246, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Vanquished Tendril of G'huun", "name_ko_KR": "정복당한 그훈의 촉수", "name_fr_FR": "Tentacule de G’huun vaincu", "name_de_DE": "G'huuns bezwungenes Tentakel", "name_zh_CN": "被征服的戈霍恩的触须", "name_es_ES": "Zarcillo derrotado de G'huun", "name_ru_RU": "Поверженное щупальце Г'ууна", "name_it_IT": "Tentacolo Sconfitto di G'huun", "name_pt_PT": "Tentáculo de G'huun Derrotado", "on_use": false, "id_encounter": 2147, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160655, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Syringe of Bloodborne Infirmity", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 649796, "buy_price": 3248984, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240000486373901, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Syringe of Bloodborne Infirmity", "name_ko_KR": "유전적 병약의 주사기", "name_fr_FR": "Seringue d’infirmité consanguine", "name_de_DE": "Spritze der blutübertragenen Schwäche", "name_zh_CN": "血源疫病注射器", "name_es_ES": "Jeringa de dolencia de sangre", "name_ru_RU": "Распылитель зараженной крови", "name_it_IT": "Siringa dell'Infermità del Sangue", "name_pt_PT": "Seringa da Enfermidade Sanguínea", "on_use": false, "id_encounter": 2166, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160656, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Twitching Tentacle of Xalzaix", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3406, "buy_price": 17034, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276999473571777, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Twitching Tentacle of Xalzaix", "name_ko_KR": "잘자익스의 꿈틀거리는 촉수", "name_fr_FR": "Tentacule de Xalzaix frémissant", "name_de_DE": "Zuckendes Tentakel von Xalzaix", "name_zh_CN": "夏尔扎克斯的痉挛触须", "name_es_ES": "Tentáculo retorcido de Xalzaix", "name_ru_RU": "Извивающееся щупальце Залзеикса", "name_it_IT": "Tentacolo Contorcente di Xalzaix", "name_pt_PT": "Tentáculo Agitado de Xalzaix", "on_use": false, "id_encounter": 2194, "id_journal_instance": 1031, "id_map": 1861, "instance_type": 2}, {"id": 160753, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sanguinating Totem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 234378, "buy_price": 1171893, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0425000190734863, "flags_1": 134774784, "flags_2": 139264, "flags_3": 128, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Sanguinating Totem", "name_ko_KR": "다혈 토템", "name_fr_FR": "Totem sanguin", "name_de_DE": "Schröpfendes Totem", "name_zh_CN": "血色图腾", "name_es_ES": "Tótem sanguino", "name_ru_RU": "Тотем вытягивания крови", "name_it_IT": "Totem Sanguinante", "name_pt_PT": "Totem Sanguinante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 160833, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fetish of the Tormented Mind", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 217719, "buy_price": 1088595, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9684000015258789, "flags_1": 134774784, "flags_2": 139264, "flags_3": 128, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 59, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Fetish of the Tormented Mind", "name_ko_KR": "괴로운 마음의 우상", "name_fr_FR": "Fétiche de l’esprit tourmenté", "name_de_DE": "Fetisch des gequälten Geistes", "name_zh_CN": "折磨心魂雕像", "name_es_ES": "Fetiche de mente atormentada", "name_ru_RU": "Идол измученного разума", "name_it_IT": "Feticcio della Mente Tormentata", "name_pt_PT": "Fetiche da Mente Atormentada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161113, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Incessantly Ticking Clock", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 436862, "buy_price": 2184313, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9725000262260437, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Incessantly Ticking Clock", "name_ko_KR": "쉴 틈 없이 똑딱거리는 시계", "name_fr_FR": "Tic-tac incessant", "name_de_DE": "Unaufhörlich tickende Uhr", "name_zh_CN": "永不间断的时钟", "name_es_ES": "Reloj de tictac incesante", "name_ru_RU": "Беспрерывно тикающие часы", "name_it_IT": "Orologio del Ticchettio Incessante", "name_pt_PT": "Relógio de Tique-taque Incessante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161115, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cursed Captain's Charm", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 440141, "buy_price": 2200709, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797999858856201, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Cursed Captain's Charm", "name_ko_KR": "저주받은 대장의 부적", "name_fr_FR": "Charme du capitaine maudit", "name_de_DE": "Talisman des verfluchten Kapitäns", "name_zh_CN": "咒缚船长的护符", "name_es_ES": "Talismán del capitán maldito", "name_ru_RU": "Оберег проклятого капитана", "name_it_IT": "Talismano del Capitano Maledetto", "name_pt_PT": "Patuá do Capitão Amaldiçoado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Berserker's Juju", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 443466, "buy_price": 2217330, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872000217437744, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Berserker's Juju", "name_ko_KR": "광전사의 부적", "name_fr_FR": "Juju du berserker", "name_de_DE": "Juju des Berserkers", "name_zh_CN": "狂战士的魂能战符", "name_es_ES": "Juju de rabioso", "name_ru_RU": "Джуджу берсерка", "name_it_IT": "Juju del Berserker", "name_pt_PT": "Urucubaca do Berserker", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161119, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ravasaur Skull Bijou", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446745, "buy_price": 2233727, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944999814033508, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Ravasaur Skull Bijou", "name_ko_KR": "라바사우루스 해골 비쥬", "name_fr_FR": "Bijou en crâne de ravasaure", "name_de_DE": "Ravasaurusschädelschmuckstück", "name_zh_CN": "暴掠龙颅骨宝石", "name_es_ES": "Joya de calavera de ravasaurio", "name_ru_RU": "Украшение из черепа равазавра", "name_it_IT": "Bijou con Teschio di Devasauro", "name_pt_PT": "Bijuteria de Caveira de Ravassauro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161125, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kaja-fied Banana", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 456673, "buy_price": 2283365, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0166000127792358, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Kaja-fied Banana", "name_ko_KR": "카자화된 바나나", "name_fr_FR": "Banane kajafiée", "name_de_DE": "Kajafizierte Banane", "name_zh_CN": "灌注卡亚精华的香蕉", "name_es_ES": "Plátano kajificado", "name_ru_RU": "Каджабанан", "name_it_IT": "Banana Kajata", "name_pt_PT": "Banana Jakificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161182, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cracked Crawg Shackles", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 181701, "buy_price": 908506, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 0, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 158679, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Cracked Crawg Shackles", "name_ko_KR": "부서진 크로그 족쇄", "name_fr_FR": "Menottes de crogg fendues", "name_de_DE": "Gesprengte Kroggfesseln", "name_zh_CN": "开裂的抱齿兽镣铐", "name_es_ES": "Grilletes de tragadón agrietados", "name_ru_RU": "Разбитые оковы крога", "name_it_IT": "Catene del Crog Spezzate", "name_pt_PT": "Grilhões de Crorg Rachados", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Latency Manipulator", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 181648, "buy_price": 908242, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 0, "flags_2": 8193, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 160262, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Latency Manipulator", "name_ko_KR": "잠재력 조작기", "name_fr_FR": "Manipulateur de latence", "name_de_DE": "Latenzmanipulator", "name_zh_CN": "潜伏操纵器", "name_es_ES": "Manipulador de latencia", "name_ru_RU": "Регулятор задержки", "name_it_IT": "Manipolatore della Latenza", "name_pt_PT": "Manipulador de Latência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161223, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Agency Manipulator", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 182300, "buy_price": 911500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035099983215332, "flags_1": 0, "flags_2": 8193, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 155564, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Agency Manipulator", "name_ko_KR": "소속 조작기", "name_fr_FR": "Manipulateur de capacité d’action", "name_de_DE": "Wirkungsmanipulator", "name_zh_CN": "代理操纵器", "name_es_ES": "Manipulador de voluntad", "name_ru_RU": "Регулятор воздействия", "name_it_IT": "Manipolatore dell'Organizzazione", "name_pt_PT": "Manipulador de Agência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161289, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rikal's Shark Teeth", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 173141, "buy_price": 865709, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9830999970436096, "flags_1": 0, "flags_2": 8194, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 159977, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Rikal's Shark Teeth", "name_ko_KR": "리칼의 상어 이빨", "name_fr_FR": "Dent de requin de Rikal", "name_de_DE": "Rikals Haifischzähne", "name_zh_CN": "里卡尔的鲨鱼利齿", "name_es_ES": "Dientes de tiburón de Rikal", "name_ru_RU": "Акульи зубы Рикала", "name_it_IT": "Denti Affilati di Rikal", "name_pt_PT": "Dente de Tubarão de Rikal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161374, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruthlessness Protocol Augment", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3162, "buy_price": 15810, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9538999795913696, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ruthlessness Protocol Augment", "name_ko_KR": "무정함의 작동규약 증폭기", "name_fr_FR": "Implant de protocole de cruauté", "name_de_DE": "Ergänzung für Skrupellosigkeitsprotokoll", "name_zh_CN": "无情协议强化器", "name_es_ES": "Aumento de protocolo de crueldad", "name_ru_RU": "Протокол усиления безжалостности", "name_it_IT": "Potenziamento Protocollo della Spietatezza", "name_pt_PT": "Incremento de Protocolo de Malevolência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161375, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Clockwork Re-Sharpener", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 607598, "buy_price": 3037990, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574999809265137, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Clockwork Re-Sharpener", "name_ko_KR": "태엽돌이 거듭깎이", "name_fr_FR": "Aiguisoir mécanique", "name_de_DE": "Aufziehnachschärfer", "name_zh_CN": "发条往复切削器", "name_es_ES": "Reafilador de relojería", "name_ru_RU": "Механическое точило", "name_it_IT": "Rimolatore Meccanico", "name_pt_PT": "Reafiador de Corda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prism of Dark Intensity", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 609946, "buy_price": 3049730, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9611999988555908, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Prism of Dark Intensity", "name_ko_KR": "집중된 암흑의 프리즘", "name_fr_FR": "Prisme d’intensité ténébreuse", "name_de_DE": "Prisma der dunklen Intensität", "name_zh_CN": "黑暗炽烈棱镜", "name_es_ES": "Prisma de intensidad oscura", "name_ru_RU": "Призма темной напряженности", "name_it_IT": "Prisma dell'Intensità Oscura", "name_pt_PT": "Prisma da Intensidade Sombria", "on_use": false, "id_encounter": 2198, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161377, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Azurethos' Singed Plumage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3198, "buy_price": 15993, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.964900016784668, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Azurethos' Singed Plumage", "name_ko_KR": "아주레토스의 그을린 깃털", "name_fr_FR": "Plumage roussi d’Azuréthos", "name_de_DE": "Azurethos' versengtes Gefieder", "name_zh_CN": "蔚索斯的焦灼飞羽", "name_es_ES": "Plumaje chamuscado de Azurethos", "name_ru_RU": "Опаленное перо Лазуретоса", "name_it_IT": "Piumaggio Bruciato di Azurethos", "name_pt_PT": "Plumagem Chamuscada de Lazureto", "on_use": true, "id_encounter": 2199, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161378, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Plume of the Seaborne Avian", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 614578, "buy_price": 3072891, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968500018119812, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Plume of the Seaborne Avian", "name_ko_KR": "바다새의 깃", "name_fr_FR": "Plume d’oiseau aquatique", "name_de_DE": "Daune des Meeresfliegers", "name_zh_CN": "海栖飞鸟之羽", "name_es_ES": "Pluma aviar marina", "name_ru_RU": "Перо морской птицы", "name_it_IT": "Piuma del Rapace Marino", "name_pt_PT": "Pluma da Ave Marítima", "on_use": false, "id_encounter": 2199, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161379, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Galecaller's Beak", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 616926, "buy_price": 3084631, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9721999764442444, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Galecaller's Beak", "name_ko_KR": "폭풍의 부리", "name_fr_FR": "Bec de mande-trombe", "name_de_DE": "Schnabel des Sturmbeschwörers", "name_zh_CN": "唤风者之喙", "name_es_ES": "Pico del clamavendavales", "name_ru_RU": "Клюв призывателя штормов", "name_it_IT": "Becco dell'Invocabrezza", "name_pt_PT": "Bico do Chamatormenta", "on_use": true, "id_encounter": 2199, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161380, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Drust-Runed Icicle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3235, "buy_price": 16175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9758999943733215, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Drust-Runed Icicle", "name_ko_KR": "드러스트 룬 고드름", "name_fr_FR": "Glaçon orné de runes drust", "name_de_DE": "Drustruneneiszapfen", "name_zh_CN": "德鲁斯特符文冰锥", "name_es_ES": "Carámbano con runas Drust", "name_ru_RU": "Покрытый рунами друстов кристалл льда", "name_it_IT": "Frammento di Ghiaccio con Rune dei Drust", "name_pt_PT": "Sincelo com Runas Drustas", "on_use": false, "id_encounter": 2197, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161381, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Permafrost-Encrusted Heart", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 621622, "buy_price": 3108110, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9796000123023987, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Permafrost-Encrusted Heart", "name_ko_KR": "영구적인 서리가 박힌 심장", "name_fr_FR": "Cœur incrusté de pergélisol", "name_de_DE": "Permafrostvereistes Herz", "name_zh_CN": "永冻护壳之心", "name_es_ES": "Corazón con escarcha permanente incrustada", "name_ru_RU": "Замерзшее окаменелое сердце", "name_it_IT": "Cuore Incrostato di Permagelo", "name_pt_PT": "Coração Incrustado de Permafrio", "on_use": false, "id_encounter": 2197, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161382, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wind-Up Utility Pylon", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 623906, "buy_price": 3119532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9832000136375427, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Wind-Up Utility Pylon", "name_ko_KR": "태엽식 다용도 변환기", "name_fr_FR": "Pylône électrique mécanique", "name_de_DE": "Hilfspylon zum Aufziehen", "name_zh_CN": "实用发条晶塔", "name_es_ES": "Pilón eléctrico de cuerda", "name_ru_RU": "Заводной многофункциональный пилон", "name_it_IT": "Pilone d'Utilità a Carica Manuale", "name_pt_PT": "Pilar Utilitário de Corda", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161411, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "T'zane's Barkspines", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3456, "buy_price": 17282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0427000522613525, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "T'zane's Barkspines", "name_ko_KR": "티제인의 나무등뼈", "name_fr_FR": "Aiguillons d’écorce de T’zane", "name_de_DE": "T'zanes Borkenstacheln", "name_zh_CN": "提赞的树脊", "name_es_ES": "Vaina espinosa de T'zane", "name_ru_RU": "Шипы с коры Т'зейна", "name_it_IT": "Schegge di Corteccia di T'zane", "name_pt_PT": "Cascacúleos de T'zane", "on_use": true, "id_encounter": 2139, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161412, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritbound Voodoo Burl", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 663947, "buy_price": 3319738, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463000535964966, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Spiritbound Voodoo Burl", "name_ko_KR": "영혼결속 부두 옹이", "name_fr_FR": "Nœud vaudou lié par les esprits", "name_de_DE": "Geistgebundener Voodooknoten", "name_zh_CN": "缚魂巫毒瘤节", "name_es_ES": "Lobanillo vudú de vínculo espiritual", "name_ru_RU": "Узловатый тотем вуду", "name_it_IT": "Nodo Vudù Vincolato agli Spiriti", "name_pt_PT": "Cerne Vodu do Espírito Vinculado", "on_use": false, "id_encounter": 2139, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Knot of Ancient Fury", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 666295, "buy_price": 3331477, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0499999523162842, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 166795, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Knot of Ancient Fury", "name_ko_KR": "고대의 분노 매듭", "name_fr_FR": "Nœud de la fureur des anciens", "name_de_DE": "Knoten der urzeitlichen Wut", "name_zh_CN": "远古愤怒之结", "name_es_ES": "Nudo de furia antigua", "name_ru_RU": "Сучок древней ярости", "name_it_IT": "Nodo della Furia Antica", "name_pt_PT": "Nó da Fúria Antiga", "on_use": true, "id_encounter": 2345, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Self-Accelerating Drive Shaft", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3161, "buy_price": 15805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Self-Accelerating Drive Shaft", "name_ko_KR": "자가 가속화 구동축", "name_fr_FR": "Arbre de transmission à accélération automatique", "name_de_DE": "Selbstbeschleunigende Antriebswelle", "name_zh_CN": "自加速驱动轴", "name_es_ES": "Eje de motor de autoaceleración", "name_ru_RU": "Саморазгоняющийся приводной вал", "name_it_IT": "Leva di Guida Autoaccelerante", "name_pt_PT": "Eixo de Transmissão Autoacelerado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161415, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forest Lord's Razorleaf", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 607471, "buy_price": 3037356, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 166794, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Forest Lord's Razorleaf", "name_ko_KR": "숲군주의 칼날잎새", "name_fr_FR": "Tranchefeuille du seigneur de la forêt", "name_de_DE": "Klingenblatt des Waldlords", "name_zh_CN": "森林之王的刀叶", "name_es_ES": "Hojafilo del Señor del Bosque", "name_ru_RU": "Бритволист лесного властелина", "name_it_IT": "Fogliafina del Signore della Foresta", "name_pt_PT": "Folhâmina do Senhor da Floresta", "on_use": false, "id_encounter": 2345, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161416, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Galvanic Turbo-Charger", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 609755, "buy_price": 3048778, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9609000086784363, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Galvanic Turbo-Charger", "name_ko_KR": "전류 발생식 과충전기", "name_fr_FR": "Turbocompresseur galvanique", "name_de_DE": "Galvanisierter Turbolader", "name_zh_CN": "流电涡轮充能器", "name_es_ES": "Turbocargador galvánico", "name_ru_RU": "Гальванический турбозарядник", "name_it_IT": "Turbocaricatore Galvanico", "name_pt_PT": "Turbocarregador Galvânico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161417, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Knot of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3197, "buy_price": 15988, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9646000266075134, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 166793, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Knot of Wisdom", "name_ko_KR": "고대의 지혜 매듭", "name_fr_FR": "Ancien nœud de sagesse", "name_de_DE": "Uralter Knorren der Weisheit", "name_zh_CN": "远古智慧之结", "name_es_ES": "Antiguo nudo de sabiduría", "name_ru_RU": "Сучок древней мудрости", "name_it_IT": "Antico Nodo della Saggezza", "name_pt_PT": "Nó Antigo da Sabedoria", "on_use": true, "id_encounter": 2345, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161418, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deployable Vibro Enhancer", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 614451, "buy_price": 3072257, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9682999849319458, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Deployable Vibro Enhancer", "name_ko_KR": "휴대용 진동 강화기", "name_fr_FR": "Vibro-améliorateur dépliable", "name_de_DE": "Einsetzbarer Vibroverstärker", "name_zh_CN": "折叠式振动强化器", "name_es_ES": "Vibropotenciador desplegable", "name_ru_RU": "Персональный виброусилитель", "name_it_IT": "Potenziatore Vibrante Portatile", "name_pt_PT": "Aprimorador Vibratório Portátil", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161419, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kraulok's Claw", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 633615, "buy_price": 3168076, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9984999895095825, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Kraulok's Claw", "name_ko_KR": "크롤로크의 발톱", "name_fr_FR": "Griffe de Kraulok", "name_de_DE": "Krauloks Klaue", "name_zh_CN": "克劳洛克的利爪", "name_es_ES": "Garra de Kraulok", "name_ru_RU": "Коготь Краулока", "name_it_IT": "Artiglio di Kraulok", "name_pt_PT": "Garra de Kraulok", "on_use": false, "id_encounter": 2210, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161461, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Doom's Hatred", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3333, "buy_price": 16666, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0054999589920044, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161472, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Doom's Hatred", "name_ko_KR": "파멸의 증오", "name_fr_FR": "Haine du Héraut", "name_de_DE": "Hass der Verdammnis", "name_zh_CN": "末日仇恨", "name_es_ES": "Odio de fatalidad", "name_ru_RU": "Гибельная ненависть", "name_it_IT": "Risentimento della Condanna", "name_pt_PT": "Ódio da Ruína", "on_use": false, "id_encounter": 2212, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Doom's Wake", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 640405, "buy_price": 3202026, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0091999769210815, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161473, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Doom's Wake", "name_ko_KR": "깨어난 파멸", "name_fr_FR": "Sillage du malheur", "name_de_DE": "Sog der Verdammnis", "name_zh_CN": "末日余波", "name_es_ES": "Estela de fatalidad", "name_ru_RU": "Гибельное эхо", "name_it_IT": "Risveglio della Condanna", "name_pt_PT": "Rastro da Ruína", "on_use": true, "id_encounter": 2212, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161463, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Doom's Fury", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 642753, "buy_price": 3213765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0128999948501587, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161474, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Doom's Fury", "name_ko_KR": "파멸의 분노", "name_fr_FR": "Fureur du Héraut", "name_de_DE": "Zorn der Verdammnis", "name_zh_CN": "末日狂怒", "name_es_ES": "Furia de fatalidad", "name_ru_RU": "Гибельная ярость", "name_it_IT": "Furia della Condanna", "name_pt_PT": "Fúria da Ruína", "on_use": true, "id_encounter": 2212, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161472, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lion's Grace", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3223, "buy_price": 16117, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161461, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Lion's Grace", "name_ko_KR": "사자의 은총", "name_fr_FR": "Grâce du Lion", "name_de_DE": "Anmut des Löwen", "name_zh_CN": "雄狮圣恩", "name_es_ES": "Gracia del León", "name_ru_RU": "Грация льва", "name_it_IT": "Grazia del Leone", "name_pt_PT": "Graça do Leão", "on_use": false, "id_encounter": 2213, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161473, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lion's Guile", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 619337, "buy_price": 3096688, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9760000109672546, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161462, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Lion's Guile", "name_ko_KR": "사자의 간계", "name_fr_FR": "Ruse du Lion", "name_de_DE": "List des Löwen", "name_zh_CN": "雄狮谋略", "name_es_ES": "Astucia del León", "name_ru_RU": "Коварство льва", "name_it_IT": "Astuzia del Leone", "name_pt_PT": "Perspicácia do Leão", "on_use": true, "id_encounter": 2213, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161474, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lion's Strength", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 621685, "buy_price": 3108427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797000288963318, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 161463, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Lion's Strength", "name_ko_KR": "사자의 힘", "name_fr_FR": "Force du Lion", "name_de_DE": "Löwenstärke", "name_zh_CN": "雄狮之力", "name_es_ES": "Fuerza del León", "name_ru_RU": "Сила льва", "name_it_IT": "Forza del Leone", "name_pt_PT": "Força do Leão", "on_use": true, "id_encounter": 2213, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 161674, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Gladiator's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 617761, "buy_price": 3088809, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Dread Gladiator's Medallion", "name_ko_KR": "공포를 부르는 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur menaçant", "name_de_DE": "Medaillon des gefürchteten Gladiators", "name_zh_CN": "悚然角斗士的勋章", "name_es_ES": "Medallón de Gladiador aterrador", "name_ru_RU": "Медальон ужасающего гладиатора", "name_it_IT": "Medaglione del Gladiatore Terrificante", "name_pt_PT": "Medalhão do Gladiador Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161675, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Gladiator's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 619978, "buy_price": 3099890, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035099983215332, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Dread Gladiator's Emblem", "name_ko_KR": "공포를 부르는 검투사의 문장", "name_fr_FR": "Emblème du gladiateur menaçant", "name_de_DE": "Emblem des gefürchteten Gladiators", "name_zh_CN": "悚然角斗士的纹章", "name_es_ES": "Emblema de Gladiador aterrador", "name_ru_RU": "Эмблема ужасающего гладиатора", "name_it_IT": "Emblema del Gladiatore Terrificante", "name_pt_PT": "Emblema do Gladiador Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161676, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Gladiator's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 578051, "buy_price": 2890256, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9650999903678894, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Dread Gladiator's Insignia", "name_ko_KR": "공포를 부르는 검투사의 계급장", "name_fr_FR": "Insigne du gladiateur menaçant", "name_de_DE": "Insigne des gefürchteten Gladiators", "name_zh_CN": "悚然角斗士的徽记", "name_es_ES": "Insignia de Gladiador aterrador", "name_ru_RU": "Знак ужасающего гладиатора", "name_it_IT": "Fregio del Gladiatore Terrificante", "name_pt_PT": "Insígnia do Gladiador Medonho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 161902, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Gladiator's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 578051, "buy_price": 2890256, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9650999903678894, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Dread Gladiator's Badge", "name_ko_KR": "공포를 부르는 검투사의 표장", "name_fr_FR": "Écusson du gladiateur menaçant", "name_de_DE": "Abzeichen des gefürchteten Gladiators", "name_zh_CN": "悚然角斗士的徽章", "name_es_ES": "Distintivo de Gladiador aterrador", "name_ru_RU": "Жетон ужасающего гладиатора", "name_it_IT": "Distintivo del Gladiatore Terrificante", "name_pt_PT": "Distintivo do Gladiador Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 162897, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Aspirant's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430304, "buy_price": 2151520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dread Aspirant's Medallion", "name_ko_KR": "공포를 부르는 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant menaçant", "name_de_DE": "Medaillon des gefürchteten Aspiranten", "name_zh_CN": "悚然候选者的勋章", "name_es_ES": "Medallón de aspirante aterrador", "name_ru_RU": "Медальон ужасающего претендента", "name_it_IT": "Medaglione del Pretendente Terrificante", "name_pt_PT": "Medalhão do Aspirante Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 162898, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Aspirant's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 431966, "buy_price": 2159831, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dread Aspirant's Emblem", "name_ko_KR": "공포를 부르는 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant menaçant", "name_de_DE": "Emblem des gefürchteten Aspiranten", "name_zh_CN": "悚然候选者的纹章", "name_es_ES": "Emblema de aspirante aterrador", "name_ru_RU": "Эмблема ужасающего претендента", "name_it_IT": "Emblema del Pretendente Terrificante", "name_pt_PT": "Emblema do Aspirante Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 162899, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Aspirant's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 433628, "buy_price": 2168141, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dread Aspirant's Insignia", "name_ko_KR": "공포를 부르는 지원자의 계급장", "name_fr_FR": "Insigne de l’aspirant menaçant", "name_de_DE": "Insigne des gefürchteten Aspiranten", "name_zh_CN": "悚然候选者的徽记", "name_es_ES": "Insignia de aspirante aterrador", "name_ru_RU": "Знак ужасающего претендента", "name_it_IT": "Fregio del Pretendente Terrificante", "name_pt_PT": "Insígnia do Aspirante Medonho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 162966, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dread Aspirant's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 456897, "buy_price": 2284488, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0170999765396118, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 45, "inv_type": 12, "quality": 3, "name_en_US": "Dread Aspirant's Badge", "name_ko_KR": "공포를 부르는 지원자의 표장", "name_fr_FR": "Écusson de l’aspirant menaçant", "name_de_DE": "Abzeichen des gefürchteten Aspiranten", "name_zh_CN": "悚然候选者的徽章", "name_es_ES": "Distintivo de aspirante aterrador", "name_ru_RU": "Жетон ужасающего претендента", "name_it_IT": "Distintivo del Pretendente Terrificante", "name_pt_PT": "Distintivo do Aspirante Medonho", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 163703, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crawg Gnawed Femur", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 466960, "buy_price": 2334800, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0394999980926514, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Crawg Gnawed Femur", "name_ko_KR": "크로그가 갉아먹은 다리뼈", "name_fr_FR": "Fémur rongé par les croggs", "name_de_DE": "Kroggzerkauter Oberschenkelknochen", "name_zh_CN": "被抱齿兽咬过的大腿骨", "name_es_ES": "Fémur mordisqueado por tragadón", "name_ru_RU": "Пожеванная бедренная кость крога", "name_it_IT": "Femore di Crog Morsicato", "name_pt_PT": "Fêmur Mordiscado por Crorg", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 163935, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Landoi's Scrutiny", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 610072, "buy_price": 3050364, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961400032043457, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Landoi's Scrutiny", "name_ko_KR": "란도이의 철저", "name_fr_FR": "Regard scrutateur de Landoi", "name_de_DE": "Landois Prüfung", "name_zh_CN": "兰多伊的审视", "name_es_ES": "Escrutinio de Landoi", "name_ru_RU": "Дотошность Ландоя", "name_it_IT": "Sguardo Indagatore di Landoi", "name_pt_PT": "Escrutínio de Landoi", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 163936, "race_mask": 18446744073709551615, "desc": "Everything you need to know to run a smooth operation.", "pad2": "", "pad1": "", "pad0": "", "name": "'Bygone Bee' Almanac", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612420, "buy_price": 3062104, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9650999903678894, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "'Bygone Bee' Almanac", "name_ko_KR": "'한물간 철자법' 연감", "name_fr_FR": "Almanach du « mielénaire »", "name_de_DE": "Almanach 'Geschehen ist geschehen'", "name_zh_CN": "“逝去之蜂”年鉴", "name_es_ES": "Anuario de 'Abeja de antaño'", "name_ru_RU": "Альманах \"Пчелы прошлого\"", "name_it_IT": "Almanacco \"Addio Api\"", "name_pt_PT": "Almanaque \"Abelhas de Outrora\"", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 163937, "race_mask": 18446744073709551615, "desc": "This titan repository is said to contain a myriad of secrets - if one can properly query the device.", "pad2": "", "pad1": "", "pad0": "", "name": "Leyshock's Grand Compilation", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 614768, "buy_price": 3073843, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9688000082969666, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Leyshock's Grand Compilation", "name_ko_KR": "리쇼크의 위대한 장치", "name_fr_FR": "Compilation ambitieuse du choc tellurique", "name_de_DE": "Leyschocks großes Repositorium", "name_zh_CN": "雷萧克的鸿篇汇编", "name_es_ES": "Gran recopilación del traumatizador Ley", "name_ru_RU": "Всеобъемлющая компиляция", "name_it_IT": "Gran Collezione della Folgore di Faglia", "name_pt_PT": "Grande Compilação do Choque Meridiânico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 164754, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017199993133545, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy", "name_ko_KR": "악마 상징물", "name_fr_FR": "Trophée de démon", "name_de_DE": "Dämonentrophäe", "name_zh_CN": "恶魔战利品", "name_es_ES": "Trofeo demoníaco", "name_ru_RU": "Демонический трофей", "name_it_IT": "Trofeo Demoniaco", "name_pt_PT": "Troféu do Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 164755, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Demonic Fire", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020900011062622, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Demonic Fire", "name_ko_KR": "악마의 불 부적", "name_fr_FR": "Charme de feu démoniaque", "name_de_DE": "Glücksbringer des Dämonenfeuers", "name_zh_CN": "魔火护符", "name_es_ES": "Talismán de fuego demoníaco", "name_ru_RU": "Талисман демонического огня", "name_it_IT": "Talismano del Fuoco Demoniaco", "name_pt_PT": "Patuá do Fogo Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165055, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 650304, "buy_price": 3251522, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 160, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Medallion", "name_ko_KR": "사악한 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur sinistre", "name_de_DE": "Medaillon des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的勋章", "name_es_ES": "Medallón de Gladiador siniestro", "name_ru_RU": "Медальон зловещего гладиатора", "name_it_IT": "Medaglione del Gladiatore Sinistro", "name_pt_PT": "Medalhão do Gladiador Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165056, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 652652, "buy_price": 3263261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.028499960899353, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 160, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Emblem", "name_ko_KR": "사악한 검투사의 문장", "name_fr_FR": "Emblème du gladiateur sinistre", "name_de_DE": "Emblem des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的纹章", "name_es_ES": "Emblema de Gladiador siniestro", "name_ru_RU": "Эмблема зловещего гладиатора", "name_it_IT": "Emblema del Gladiatore Sinistro", "name_pt_PT": "Emblema do Gladiador Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165057, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 654936, "buy_price": 3274684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.032099962234497, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 160, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Insignia", "name_ko_KR": "사악한 검투사의 계급장", "name_fr_FR": "Insigne du gladiateur sinistre", "name_de_DE": "Insigne des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的徽记", "name_es_ES": "Insignia de Gladiador siniestro", "name_ru_RU": "Знак зловещего гладиатора", "name_it_IT": "Fregio del Gladiatore Sinistro", "name_pt_PT": "Insígnia do Gladiador Sinistro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165058, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 657284, "buy_price": 3286423, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0357999801635742, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 160, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Badge", "name_ko_KR": "사악한 검투사의 표장", "name_fr_FR": "Écusson du gladiateur sinistre", "name_de_DE": "Abzeichen des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的徽章", "name_es_ES": "Distintivo de Gladiador siniestro", "name_ru_RU": "Жетон зловещего гладиатора", "name_it_IT": "Distintivo del Gladiatore Sinistro", "name_pt_PT": "Distintivo do Gladiador Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165220, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Aspirant's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 473545, "buy_price": 2367729, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9950000047683716, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Sinister Aspirant's Medallion", "name_ko_KR": "사악한 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant sinistre", "name_de_DE": "Medaillon des düsteren Aspiranten", "name_zh_CN": "惊恶候选者的勋章", "name_es_ES": "Medallón de aspirante siniestro", "name_ru_RU": "Медальон зловещего претендента", "name_it_IT": "Medaglione del Pretendente Sinistro", "name_pt_PT": "Medalhão do Aspirante Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165221, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Aspirant's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 475306, "buy_price": 2376533, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987000226974487, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Sinister Aspirant's Emblem", "name_ko_KR": "사악한 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant sinistre", "name_de_DE": "Emblem des düsteren Aspiranten", "name_zh_CN": "惊恶候选者的纹章", "name_es_ES": "Emblema de aspirante siniestro", "name_ru_RU": "Эмблема зловещего претендента", "name_it_IT": "Emblema del Pretendente Sinistro", "name_pt_PT": "Emblema do Aspirante Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Aspirant's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 477067, "buy_price": 2385338, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0024000406265259, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Sinister Aspirant's Insignia", "name_ko_KR": "사악한 지원자의 계급장", "name_fr_FR": "Insigne de l’aspirant sinistre", "name_de_DE": "Insigne des düsteren Aspiranten", "name_zh_CN": "惊恶候选者的徽记", "name_es_ES": "Insignia de aspirante siniestro", "name_ru_RU": "Знак зловещего претендента", "name_it_IT": "Fregio del Pretendente Sinistro", "name_pt_PT": "Insígnia do Aspirante Sinistro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165223, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Aspirant's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 478780, "buy_price": 2393904, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.00600004196167, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Sinister Aspirant's Badge", "name_ko_KR": "사악한 지원자의 표장", "name_fr_FR": "Écusson de l’aspirant sinistre", "name_de_DE": "Abzeichen des düsteren Aspiranten", "name_zh_CN": "惊恶候选者的徽章", "name_es_ES": "Distintivo de aspirante siniestro", "name_ru_RU": "Жетон зловещего претендента", "name_it_IT": "Distintivo del Pretendente Sinistro", "name_pt_PT": "Distintivo do Aspirante Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165568, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Invocation of Yu'lon", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 605694, "buy_price": 3028472, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545000195503235, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Invocation of Yu'lon", "name_ko_KR": "위론의 기원", "name_fr_FR": "Invocation de Yu’lon", "name_de_DE": "Anrufung von Yu'lon", "name_zh_CN": "玉珑之祈", "name_es_ES": "Invocación de Yu'lon", "name_ru_RU": "Молитва к Юй-лун", "name_it_IT": "Invocazione: Yu'lon", "name_pt_PT": "Invocação de Yu'lon", "on_use": true, "id_encounter": 2323, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165569, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ward of Envelopment", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 607978, "buy_price": 3039894, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581000208854675, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ward of Envelopment", "name_ko_KR": "봉합의 수호물", "name_fr_FR": "Égide d’enveloppement", "name_de_DE": "Zauberschutz der Umhüllung", "name_zh_CN": "密闭结界", "name_es_ES": "Resguardo envolvente", "name_ru_RU": "Ограждающий оберег", "name_it_IT": "Protezione dell'Avvolgimento", "name_pt_PT": "Proteção de Envolvimento", "on_use": true, "id_encounter": 2333, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165570, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Everchill Anchor", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 610326, "buy_price": 3051633, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9617999792098999, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Everchill Anchor", "name_ko_KR": "영원한기 닻", "name_fr_FR": "Ancre de froidure éternelle", "name_de_DE": "Anker der ewigen Kälte", "name_zh_CN": "永冻之锚", "name_es_ES": "Ancla de escalofrío eterno", "name_ru_RU": "Якорь обжигающего холода", "name_it_IT": "Ancora del Brivido Eterno", "name_pt_PT": "Âncora do Frio Perene", "on_use": false, "id_encounter": 2343, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165571, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Incandescent Sliver", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612674, "buy_price": 3063373, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Incandescent Sliver", "name_ko_KR": "빛나는 조각", "name_fr_FR": "Esquille incandescente", "name_de_DE": "Strahlender Span", "name_zh_CN": "耀辉裂片", "name_es_ES": "Esquirla incandescente", "name_ru_RU": "Сияющий осколок", "name_it_IT": "Scheggia Incandescente", "name_pt_PT": "Lasca Incandescente", "on_use": false, "id_encounter": 2342, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165572, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Variable Intensity Gigavolt Oscillating Reactor", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 615022, "buy_price": 3075112, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692000150680542, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Variable Intensity Gigavolt Oscillating Reactor", "name_ko_KR": "원자 기폭형 촉매 진화기", "name_fr_FR": "Appendice Gigavoltaïque à Intensité Longitudinale", "name_de_DE": "Piepsender oszillierender Wirbelenergiereaktor", "name_zh_CN": "变频千兆振荡反应堆", "name_es_ES": "Reactor oscilante de gigavoltios de intensidad variable", "name_ru_RU": "Гигавольтный осциллирующий реактор аннигиляции", "name_it_IT": "Validatore Instabile a Gigavolt Oscillante del Reattore Esterno", "name_pt_PT": "Reator Gigavolt Oscilante de Intensidade Variável", "on_use": true, "id_encounter": 2334, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165573, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Diamond-Laced Refracting Prism", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 617307, "buy_price": 3086535, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9728000164031982, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Diamond-Laced Refracting Prism", "name_ko_KR": "다이아몬드 장식 굴절 분광기", "name_fr_FR": "Prisme réfringent incrusté de diamants", "name_de_DE": "Diamantbeschichtetes Refraktionsprisma", "name_zh_CN": "镶钻折射棱镜", "name_es_ES": "Prisma refractante diamantino", "name_ru_RU": "Рефракторная алмазная призма", "name_it_IT": "Prisma Rifrangente Ricoperto di Diamanti", "name_pt_PT": "Prisma Refrator com Diamante", "on_use": false, "id_encounter": 2342, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165574, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grong's Primal Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 619654, "buy_price": 3098274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764999747276306, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Grong's Primal Rage", "name_ko_KR": "그롱의 원초적 분노", "name_fr_FR": "Rage primordiale de Grong", "name_de_DE": "Grongs Urfuror", "name_zh_CN": "格洛恩的原始暴怒", "name_es_ES": "Rabia primigenia de Grong", "name_ru_RU": "Звериная ярость Гронга", "name_it_IT": "Rabbia Primordiale di Grong", "name_pt_PT": "Raiva Primeva de Grong", "on_use": true, "id_encounter": 2325, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tidestorm Codex", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3261, "buy_price": 16308, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9839000105857849, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Tidestorm Codex", "name_ko_KR": "파도폭풍 전서", "name_fr_FR": "Codex vaguerage", "name_de_DE": "Kodex des Gezeitensturms", "name_zh_CN": "潮风法典", "name_es_ES": "Códice de tormenta de las mareas", "name_ru_RU": "Гримуар морских штормов", "name_it_IT": "Codice della Tempesta Mareale", "name_pt_PT": "Códice da Borrasca", "on_use": true, "id_encounter": 2343, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165577, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bwonsamdi's Bargain", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 626635, "buy_price": 3133175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.987500011920929, "flags_1": 67633152, "flags_2": 73728, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Bwonsamdi's Bargain", "name_ko_KR": "브원삼디의 거래", "name_fr_FR": "Marché de Bwonsamdi", "name_de_DE": "Bwonsamdis Handel", "name_zh_CN": "邦桑迪的交易", "name_es_ES": "Trato de Bwonsamdi", "name_ru_RU": "Сделка с Бвонсамди", "name_it_IT": "Accordo di Bwonsamdi", "name_pt_PT": "Barganha de Bwonsamdi", "on_use": false, "id_encounter": 2335, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165578, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Entwined Fate", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 628983, "buy_price": 3144915, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9911999702453613, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Entwined Fate", "name_ko_KR": "뒤얽힌 운명의 거울", "name_fr_FR": "Miroir de destin lié", "name_de_DE": "Spiegel des geteilten Schicksals", "name_zh_CN": "纠缠命运之镜", "name_es_ES": "Espejo de destino entrelazado", "name_ru_RU": "Зеркало сплетенных судеб", "name_it_IT": "Specchio del Destino Intrecciato", "name_pt_PT": "Espelho do Destino Entrelaçado", "on_use": true, "id_encounter": 2335, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kimbul's Razor Claw", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 631330, "buy_price": 3156654, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9948999881744385, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Kimbul's Razor Claw", "name_ko_KR": "킴불의 서슬 발톱", "name_fr_FR": "Griffe rasoir de Kimbul", "name_de_DE": "Kimbuls messerscharfe Kralle", "name_zh_CN": "吉布尔的利爪", "name_es_ES": "Zarpa cortante de Kimbul", "name_ru_RU": "Острый коготь Кимбула", "name_it_IT": "Artiglio Affilato di Kimbul", "name_pt_PT": "Garra Pontiaguda de Kimbul", "on_use": false, "id_encounter": 2330, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165580, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ramping Amplitude Gigavolt Engine", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 633678, "buy_price": 3168394, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9986000061035156, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ramping Amplitude Gigavolt Engine", "name_ko_KR": "정격 말소식 격리 분석기", "name_fr_FR": "Réacteur Amplifié à Gigavoltaïsation Extrême", "name_de_DE": "Rasant ausschlagende gigavoltgeladene Erfindung", "name_zh_CN": "增幅千兆怒火引擎", "name_es_ES": "Fabricador ultraespecial de reacciones e interacciones arcovoltaicas", "name_ru_RU": "Гигавольтный радиатор огромной мощности", "name_it_IT": "Rabbioso Amplificatore Bipolare Bisonoro Instabile Automatico", "name_pt_PT": "Motor Gigavolt de Amplitude Crescente", "on_use": true, "id_encounter": 2334, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165581, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crest of Pa'ku", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 635963, "buy_price": 3179816, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0022000074386597, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 166418, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Crest of Pa'ku", "name_ko_KR": "파쿠의 문장", "name_fr_FR": "Écu de Pa’ku", "name_de_DE": "Pa'kus Wappen", "name_zh_CN": "帕库冠羽", "name_es_ES": "Blasón de Pa'ku", "name_ru_RU": "Гребень Па'ку", "name_it_IT": "Pennacchio di Pa'ku", "name_pt_PT": "Brasão de Pa'kul", "on_use": true, "id_encounter": 2330, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 165660, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chargestone of the Thunder King's Court", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 460221, "buy_price": 2301109, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0245000123977661, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Chargestone of the Thunder King's Court", "name_ko_KR": "천둥왕 궁정의 충전석", "name_fr_FR": "Pierre chargée de la cour du roi-tonnerre", "name_de_DE": "Aufladungsstein vom Hof des Donnerkönigs", "name_zh_CN": "雷电王廷的充能石", "name_es_ES": "Piedra de carga de la Corte del Rey del Trueno", "name_ru_RU": "Камень из двора Властелина Грома", "name_it_IT": "Pietrelettrica della Corte del Re del Tuono", "name_pt_PT": "Pedra de Carga da Corte do Rei Trovão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Tuskarr Sea Charm", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 461884, "buy_price": 2309420, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0282000303268433, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ancient Tuskarr Sea Charm", "name_ko_KR": "고대의 투스카르 바다 부적", "name_fr_FR": "Charme des mers rohart ancien", "name_de_DE": "Uralter Meerestalisman der Tuskarr", "name_zh_CN": "古代海象人的海波护符", "name_es_ES": "Colgante marino colmillarr antiguo", "name_ru_RU": "Древний клыкаррский оберег", "name_it_IT": "Antico Talismano Marino dei Tuskarr", "name_pt_PT": "Patuá Marítimo Morsano Antigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165662, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kezan Stamped Bijou", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430483, "buy_price": 2152419, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958299994468689, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Kezan Stamped Bijou", "name_ko_KR": "케잔 징표가 찍힌 장신구", "name_fr_FR": "Bijou estampillé de Kezan", "name_de_DE": "Kezangeprägtes Kleinod", "name_zh_CN": "科赞铭刻宝石", "name_es_ES": "Presea estampada de Kezan", "name_ru_RU": "Штампованная блестяшка из Кезана", "name_it_IT": "Bijou Stampato di Kezan", "name_pt_PT": "Bijuteria com Alto Relevo de Kezan", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165664, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sea Giant's Tidestone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 433763, "buy_price": 2168815, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Sea Giant's Tidestone", "name_ko_KR": "바다 거인의 해일석", "name_fr_FR": "Pierre des marées du géant des mers", "name_de_DE": "Gezeitenstein des Meeresriesen", "name_zh_CN": "海巨人的潮汐之石", "name_es_ES": "Piedramar de gigante marino", "name_ru_RU": "Приливный камень морского великана", "name_it_IT": "Pietra delle Maree del Gigante del Mare", "name_pt_PT": "Pedramar do Gigante do Mar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165665, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ritual Feather of Unng Ak", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 435425, "buy_price": 2177125, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692999720573425, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Ritual Feather of Unng Ak", "name_ko_KR": "웅 아크의 의식용 깃털", "name_fr_FR": "Plume rituelle d’Unng Ak", "name_de_DE": "Ritualfeder von Unng Ak", "name_zh_CN": "昂克的仪式之羽", "name_es_ES": "Pluma de ritual de Unng Ak", "name_ru_RU": "Ритуальное перо Уннг Ака", "name_it_IT": "Piuma Rituale di Unng Ak", "name_pt_PT": "Pena Ritual de Unng Ak", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165666, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moonstone of Zin-Azshari", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 437087, "buy_price": 2185436, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9729999899864197, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Moonstone of Zin-Azshari", "name_ko_KR": "진아즈샤리의 월장석", "name_fr_FR": "Pierre de lune de Zin-Azshari", "name_de_DE": "Mondstein von Zin-Azshari", "name_zh_CN": "辛艾萨莉的月亮石", "name_es_ES": "Piedra lunar de Zin-Azshari", "name_ru_RU": "Лунный камень Зин-Азшари", "name_it_IT": "Pietraluna di Zin-Azshari", "name_pt_PT": "Pedra-da-lua de Zin-Azshari", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165667, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Razzashi Tooth Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 438704, "buy_price": 2193522, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 58, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Razzashi Tooth Medallion", "name_ko_KR": "래즈자쉬 이빨 메달", "name_fr_FR": "Médaillon de dent razzashi", "name_de_DE": "Razzashizahnmedaillon", "name_zh_CN": "拉扎什利齿奖章", "name_es_ES": "Medallón de dientes Razzashi", "name_ru_RU": "Оберег из клыка Раззаши", "name_it_IT": "Medaglione con Dente di Razzashi", "name_pt_PT": "Medalhão de Dentes de Razzashi", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165806, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Maledict", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 633615, "buy_price": 3168076, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9984999895095825, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Maledict", "name_ko_KR": "사악한 검투사의 저주", "name_fr_FR": "Bijou maudit du gladiateur sinistre", "name_de_DE": "Verhängnis des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的咒徽", "name_es_ES": "Maldición de Gladiador siniestro", "name_ru_RU": "Темный фетиш зловещего гладиатора", "name_it_IT": "Maledizione del Gladiatore Sinistro", "name_pt_PT": "Imprecação do Gladiador Sinistro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165807, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinister Gladiator's Safeguard", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 652779, "buy_price": 3263896, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0286999940872192, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sinister Gladiator's Safeguard", "name_ko_KR": "사악한 검투사의 안전장치", "name_fr_FR": "Sauvegarde du gladiateur sinistre", "name_de_DE": "Schutzwall des düsteren Gladiators", "name_zh_CN": "惊恶角斗士的护徽", "name_es_ES": "Salvaguarda de Gladiador siniestro", "name_ru_RU": "Оберег зловещего гладиатора", "name_it_IT": "Salvaguardia del Gladiatore Sinistro", "name_pt_PT": "Salvaguarda do Gladiador Sinistro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165926, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Tidal Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 305737, "buy_price": 1528689, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9506999850273132, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 130, "req_skill": 2478, "ilevel": 66, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Tidal Alchemist Stone", "name_ko_KR": "파도의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste des marées", "name_de_DE": "Gezeitenalchemistenstein", "name_zh_CN": "汐辉炼金石", "name_es_ES": "Piedra de alquimista de marea", "name_ru_RU": "Приливный алхимический камень", "name_it_IT": "Pietra Alchemica Mareale", "name_pt_PT": "Pedra Marítima do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165927, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Spirited Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 311007, "buy_price": 1555038, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9542999863624573, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2478, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Spirited Alchemist Stone", "name_ko_KR": "활력 깃든 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste robuste", "name_de_DE": "Lebendiger Alchemistenstein", "name_zh_CN": "风发炼金石", "name_es_ES": "Piedra de alquimista animada", "name_ru_RU": "Одушевленный алхимический камень", "name_it_IT": "Pietra Alchemica Spiritica", "name_pt_PT": "Pedra Sagaz do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 165928, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 316341, "buy_price": 1581707, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9580000042915344, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2478, "ilevel": 78, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Alchemist Stone", "name_ko_KR": "영원의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste éternelle", "name_de_DE": "Ewiger Alchemistenstein", "name_zh_CN": "永恒炼金石", "name_es_ES": "Piedra de alquimista eterna", "name_ru_RU": "Вечный алхимический камень", "name_it_IT": "Pietra Alchemica Eterna", "name_pt_PT": "Pedra Eterna do Alquimista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166418, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crest of Pa'ku", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 619908, "buy_price": 3099543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 524288, "flags_2": 8194, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 165581, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Crest of Pa'ku", "name_ko_KR": "파쿠의 문장", "name_fr_FR": "Écu de Pa’ku", "name_de_DE": "Pa'kus Wappen", "name_zh_CN": "帕库冠羽", "name_es_ES": "Blasón de Pa'ku", "name_ru_RU": "Гребень Па'ку", "name_it_IT": "Pennacchio di Pa'ku", "name_pt_PT": "Brasão de Pa'kul", "on_use": false, "id_encounter": 2330, "id_journal_instance": 1176, "id_map": 2070, "instance_type": 2}, {"id": 166753, "race_mask": 12261800583900083122, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Orcish War Horn", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0357999801635742, "flags_1": 134742080, "flags_2": 155649, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166769, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Orcish War Horn", "name_ko_KR": "오크족 전쟁 뿔피리", "name_fr_FR": "Cor de guerre orc", "name_de_DE": "Orcisches Kriegshorn", "name_zh_CN": "兽人战争号角", "name_es_ES": "Cuerno de guerra de los orcos", "name_ru_RU": "Орочий боевой рог", "name_it_IT": "Corno da Guerra Orchesco", "name_pt_PT": "Trompa de Guerra Órquica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166754, "race_mask": 12261800583900083122, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Thalassian Hymns", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0394999980926514, "flags_1": 134742080, "flags_2": 155649, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166768, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Tome of Thalassian Hymns", "name_ko_KR": "탈라시안 성가집", "name_fr_FR": "Tome d’hymnes thalassiens", "name_de_DE": "Foliant thalassischer Hymnen", "name_zh_CN": "萨拉斯圣歌谱", "name_es_ES": "Escrito de himnos thalassianos", "name_ru_RU": "Фолиант кель'таласских гимнов", "name_it_IT": "Tomo degli Inni Thalassiani", "name_pt_PT": "Tomo de Hinos Talassianos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166755, "race_mask": 12261800583900083122, "desc": "A dark powder used to conceal soldiers for infiltrations undertaken at night.", "pad2": "", "pad1": "", "pad0": "", "name": "Deathstalkers' Gloaming Powder", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 134742080, "flags_2": 155649, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166767, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Deathstalkers' Gloaming Powder", "name_ko_KR": "죽음추적자의 해거름 가루", "name_fr_FR": "Poudre crépusculaire des nécrotraqueurs", "name_de_DE": "Dämmerungspulver des Todespirschers", "name_zh_CN": "死亡猎手的薄暮之粉", "name_es_ES": "Polvo del ocaso de mortacechador", "name_ru_RU": "Сумеречная пыльца ловчего смерти", "name_it_IT": "Polvere Crepuscolare dell'Inseguitore della Morte", "name_pt_PT": "Pó Crepuscular do Sicário", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166756, "race_mask": 12261800583900083122, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Loa-Touched Warscroll", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 134742080, "flags_2": 155649, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166766, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Loa-Touched Warscroll", "name_ko_KR": "로아의 힘이 담긴 전쟁 두루마리", "name_fr_FR": "Parchemin de guerre marqué par les Loas", "name_de_DE": "Loaberührte Kriegsrolle", "name_zh_CN": "神灵赐福战争卷轴", "name_es_ES": "Pergamino de guerra tocado por los loa", "name_ru_RU": "Зачарованный лоа боевой свиток", "name_it_IT": "Pergamena di Guerra Toccata dai Loa", "name_pt_PT": "Pergaminho-de-guerra Tocado pelos Loas", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166766, "race_mask": 6130900294268439629, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Tidesages' Warscroll", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0099999904632568, "flags_1": 134742080, "flags_2": 155650, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166756, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Tidesages' Warscroll", "name_ko_KR": "파도현자의 전쟁 두루마리", "name_fr_FR": "Parchemin de guerre des eaugures", "name_de_DE": "Kriegsrolle der Gezeitenweisen", "name_zh_CN": "海潮贤者的战争卷轴", "name_es_ES": "Pergamino de guerra de los Sabiomar", "name_ru_RU": "Боевой свиток жрецов моря", "name_it_IT": "Pergamena di Guerra dei Saggi delle Maree", "name_pt_PT": "Pergaminho de Guerra dos Sábios das Marés", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166767, "race_mask": 6130900294268439629, "desc": "A dark powder used to conceal soldiers for infiltrations undertaken at night.", "pad2": "", "pad1": "", "pad0": "", "name": "Kaldorei Powder of Twilight", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 134742080, "flags_2": 155650, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166755, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Kaldorei Powder of Twilight", "name_ko_KR": "칼도레이 황혼의 가루", "name_fr_FR": "Poudre de crépuscule kaldorei", "name_de_DE": "Kaldoreipulver des Zwielichts", "name_zh_CN": "卡多雷的暮光之粉", "name_es_ES": "Polvo del crepúsculo kaldorei", "name_ru_RU": "Калдорайский сумеречный порошок", "name_it_IT": "Polvere del Crepuscolo dei Kaldorei", "name_pt_PT": "Pó Crepuscular Kaldorei", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166768, "race_mask": 6130900294268439629, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Hymnal of the 7th Legion", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017300009727478, "flags_1": 134742080, "flags_2": 155650, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166754, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Hymnal of the 7th Legion", "name_ko_KR": "7군단의 성가집", "name_fr_FR": "Hymnaire de la 7e Légion", "name_de_DE": "Gesangbuch der 7. Legion", "name_zh_CN": "第七军团赞美诗", "name_es_ES": "Cantoral de la Séptima Legión", "name_ru_RU": "Гимнарий 7-го легиона", "name_it_IT": "Innario della VII Legione", "name_pt_PT": "Hinário da 7ª Legião", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166769, "race_mask": 6130900294268439629, "desc": "A commonly-issued item for new recruits in the war.", "pad2": "", "pad1": "", "pad0": "", "name": "Dwarven War Horn", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0210000276565552, "flags_1": 134742080, "flags_2": 155650, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 166753, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2051, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Dwarven War Horn", "name_ko_KR": "드워프족 전쟁 뿔피리", "name_fr_FR": "Cor de guerre nain", "name_de_DE": "Zwergisches Kriegshorn", "name_zh_CN": "矮人战争号角", "name_es_ES": "Cuerno de guerra de los enanos", "name_ru_RU": "Дворфийский боевой рог", "name_it_IT": "Corno da Guerra Nanico", "name_pt_PT": "Trompa de Guerra Enânica", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166793, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Knot of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3188, "buy_price": 15943, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.961899995803833, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 161417, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ancient Knot of Wisdom", "name_ko_KR": "고대의 지혜 매듭", "name_fr_FR": "Ancien nœud de sagesse", "name_de_DE": "Uralter Knorren der Weisheit", "name_zh_CN": "远古智慧之结", "name_es_ES": "Antiguo nudo de sabiduría", "name_ru_RU": "Сучок древней мудрости", "name_it_IT": "Antico Nodo della Saggezza", "name_pt_PT": "Nó Antigo da Sabedoria", "on_use": true, "id_encounter": 2329, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 166794, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forest Lord's Razorleaf", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612738, "buy_price": 3063690, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 161415, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Forest Lord's Razorleaf", "name_ko_KR": "숲군주의 칼날잎새", "name_fr_FR": "Tranchefeuille du seigneur de la forêt", "name_de_DE": "Klingenblatt des Waldlords", "name_zh_CN": "森林之王的刀叶", "name_es_ES": "Hojafilo del Señor del Bosque", "name_ru_RU": "Бритволист лесного властелина", "name_it_IT": "Fogliafina del Signore della Foresta", "name_pt_PT": "Folhâmina do Senhor da Floresta", "on_use": false, "id_encounter": 2329, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 166795, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Knot of Ancient Fury", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 615085, "buy_price": 3075429, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692999720573425, "flags_1": 524288, "flags_2": 8193, "flags_3": 0, "flags_4": 160, "flags_5": 0, "faction_conv_id": 161413, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Knot of Ancient Fury", "name_ko_KR": "고대의 분노 매듭", "name_fr_FR": "Nœud de la fureur des anciens", "name_de_DE": "Knoten der urzeitlichen Wut", "name_zh_CN": "远古愤怒之结", "name_es_ES": "Nudo de furia antigua", "name_ru_RU": "Сучок древней ярости", "name_it_IT": "Nodo della Furia Antica", "name_pt_PT": "Nó da Fúria Antiga", "on_use": true, "id_encounter": 2329, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 166974, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Sanguinated Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 322804, "buy_price": 1614021, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0174000263214111, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2478, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sanguinated Alchemist Stone", "name_ko_KR": "혈기 왕성한 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste sanguicellaire", "name_de_DE": "Blutiger Alchemistenstein", "name_zh_CN": "血色炼金石", "name_es_ES": "Piedra de alquimista sanguinaria", "name_ru_RU": "Кровяной алхимический камень", "name_it_IT": "Pietra Alchemica Insanguinata", "name_pt_PT": "Pedra do Alquimista Sanguinolenta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166975, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Imbued Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 323978, "buy_price": 1619891, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0211000442504883, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2478, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Imbued Alchemist Stone", "name_ko_KR": "마력 깃든 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste imprégnée", "name_de_DE": "Machtgetränkter Alchemistenstein", "name_zh_CN": "灌魔炼金石", "name_es_ES": "Piedra de alquimista imbuida", "name_ru_RU": "Усиленный алхимический камень", "name_it_IT": "Pietra Alchemica Infusa", "name_pt_PT": "Pedra do Alquimista Imbuída", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 166976, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Emblazoned Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 329567, "buy_price": 1647839, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0247999429702759, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2478, "ilevel": 66, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Emblazoned Alchemist Stone", "name_ko_KR": "문장장식 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste ornée", "name_de_DE": "Verzierter Alchemistenstein", "name_zh_CN": "纹饰炼金石", "name_es_ES": "Piedra de alquimista blasonada", "name_ru_RU": "Украшенный гербом алхимический камень", "name_it_IT": "Pietra Alchemica Incisa", "name_pt_PT": "Pedra do Alquimista Brasonada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167377, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 607978, "buy_price": 3039894, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9581000208854675, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Medallion", "name_ko_KR": "악명 높은 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur notoire", "name_de_DE": "Medaillon des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的勋章", "name_es_ES": "Medallón de Gladiador déspota", "name_ru_RU": "Медальон отъявленного гладиатора", "name_it_IT": "Medaglione del Gladiatore Famigerato", "name_pt_PT": "Medalhão do Gladiador Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167378, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 610326, "buy_price": 3051633, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9617999792098999, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Emblem", "name_ko_KR": "악명 높은 검투사의 문장", "name_fr_FR": "Emblème du gladiateur notoire", "name_de_DE": "Emblem des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的纹章", "name_es_ES": "Emblema de Gladiador déspota", "name_ru_RU": "Эмблема отъявленного гладиатора", "name_it_IT": "Emblema del Gladiatore Famigerato", "name_pt_PT": "Emblema do Gladiador Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167379, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612674, "buy_price": 3063373, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Insignia", "name_ko_KR": "악명 높은 검투사의 계급장", "name_fr_FR": "Insigne du gladiateur notoire", "name_de_DE": "Insigne des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的徽记", "name_es_ES": "Insignia de Gladiador déspota", "name_ru_RU": "Знак отъявленного гладиатора", "name_it_IT": "Fregio del Gladiatore Famigerato", "name_pt_PT": "Insígnia do Gladiador Notório", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167380, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 614959, "buy_price": 3074795, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9690999984741211, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Badge", "name_ko_KR": "악명 높은 검투사의 표장", "name_fr_FR": "Écusson du gladiateur notoire", "name_de_DE": "Abzeichen des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的徽章", "name_es_ES": "Distintivo de Gladiador déspota", "name_ru_RU": "Жетон отъявленного гладиатора", "name_it_IT": "Distintivo del Gladiatore Famigerato", "name_pt_PT": "Distintivo do Gladiador Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167383, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Maledict", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 638818, "buy_price": 3194094, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006700038909912, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Maledict", "name_ko_KR": "악명 높은 검투사의 저주", "name_fr_FR": "Bijou maudit du gladiateur notoire", "name_de_DE": "Verhängnis des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的咒徽", "name_es_ES": "Maldición de Gladiador déspota", "name_ru_RU": "Темный фетиш отъявленного гладиатора", "name_it_IT": "Maledizione del Gladiatore Famigerato", "name_pt_PT": "Imprecação do Gladiador Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167384, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Gladiator's Safeguard", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 641103, "buy_price": 3205516, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0103000402450562, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Gladiator's Safeguard", "name_ko_KR": "악명 높은 검투사의 안전장치", "name_fr_FR": "Sauvegarde du gladiateur notoire", "name_de_DE": "Schutzwall des berüchtigten Gladiators", "name_zh_CN": "罪邪角斗士的护徽", "name_es_ES": "Salvaguarda de Gladiador déspota", "name_ru_RU": "Оберег отъявленного гладиатора", "name_it_IT": "Salvaguardia del Gladiatore Famigerato", "name_pt_PT": "Salvaguarda do Gladiador Notório", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167525, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Aspirant's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 659696, "buy_price": 3298480, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0396000146865845, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Aspirant's Medallion", "name_ko_KR": "악명 높은 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant notoire", "name_de_DE": "Medaillon des berüchtigten Aspiranten", "name_zh_CN": "罪邪候选者的勋章", "name_es_ES": "Medallón de aspirante déspota", "name_ru_RU": "Медальон отъявленного претендента", "name_it_IT": "Medaglione del Pretendente Famigerato", "name_pt_PT": "Medalhão do Aspirante Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167526, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Aspirant's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 615339, "buy_price": 3076699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696999788284302, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Aspirant's Emblem", "name_ko_KR": "악명 높은 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant notoire", "name_de_DE": "Emblem des berüchtigten Aspiranten", "name_zh_CN": "罪邪候选者的纹章", "name_es_ES": "Emblema de aspirante déspota", "name_ru_RU": "Эмблема отъявленного претендента", "name_it_IT": "Emblema del Pretendente Famigerato", "name_pt_PT": "Emblema do Aspirante Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167527, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Aspirant's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 617624, "buy_price": 3088121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732999801635742, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Aspirant's Insignia", "name_ko_KR": "악명 높은 지원자의 계급장", "name_fr_FR": "Insigne de l’aspirant notoire", "name_de_DE": "Insigne des berüchtigten Aspiranten", "name_zh_CN": "罪邪候选者的徽记", "name_es_ES": "Insignia de aspirante déspota", "name_ru_RU": "Знак отъявленного претендента", "name_it_IT": "Fregio del Pretendente Famigerato", "name_pt_PT": "Insígnia do Aspirante Notório", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Notorious Aspirant's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 619972, "buy_price": 3099860, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9769999980926514, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Notorious Aspirant's Badge", "name_ko_KR": "악명 높은 지원자의 표장", "name_fr_FR": "Écusson de l’aspirant notoire", "name_de_DE": "Abzeichen des berüchtigten Aspiranten", "name_zh_CN": "罪邪候选者的徽章", "name_es_ES": "Distintivo de aspirante déspota", "name_ru_RU": "Жетон отъявленного претендента", "name_it_IT": "Distintivo del Pretendente Famigerato", "name_pt_PT": "Distintivo do Aspirante Notório", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167555, "race_mask": 18446744073709551615, "desc": "Several slots are visible on the underside of this device, roughly the right shape for punch cards.", "pad2": "", "pad1": "", "pad0": "", "name": "Pocket-Sized Computation Device", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.0025999546051025, "flags_1": 32768, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 19, "socket_color_2": 20, "socket_color_3": 21, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Pocket-Sized Computation Device", "name_ko_KR": "소형 산출 장치", "name_fr_FR": "Appareil de calcul de poche", "name_de_DE": "Rechengerät im Taschenformat", "name_zh_CN": "口袋计算装置", "name_es_ES": "Dispositivo de cómputo de bolsillo", "name_ru_RU": "Карманное вычислительное устройство", "name_it_IT": "Dispositivo di Calcolo Tascabile", "name_pt_PT": "Dispositivo Computacional de Bolso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 167865, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 615339, "buy_price": 3076699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9696999788284302, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Void Stone", "name_ko_KR": "공허의 돌", "name_fr_FR": "Pierre de Vide", "name_de_DE": "Leerenstein", "name_zh_CN": "虚空石", "name_es_ES": "Piedra del Vacío", "name_ru_RU": "Камень Бездны", "name_it_IT": "Pietra del Vuoto", "name_pt_PT": "Pedra do Caos", "on_use": true, "id_encounter": 2332, "id_journal_instance": 1177, "id_map": 2096, "instance_type": 2}, {"id": 167866, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lurker's Insidious Gift", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 617624, "buy_price": 3088121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732999801635742, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Lurker's Insidious Gift", "name_ko_KR": "잠복자의 은밀한 선물", "name_fr_FR": "Don insidieux de rôdeur", "name_de_DE": "Des Lauerers tückisches Geschenk", "name_zh_CN": "潜伏者的险恶赐福", "name_es_ES": "Obsequio insidioso del merodeador", "name_ru_RU": "Коварный дар сокрытого", "name_it_IT": "Dono Insidioso del Guardingo", "name_pt_PT": "Dádiva Insidiosa do Tocaieiro", "on_use": true, "id_encounter": 2332, "id_journal_instance": 1177, "id_map": 2096, "instance_type": 2}, {"id": 167867, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harbinger's Inscrutable Will", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3238, "buy_price": 16193, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9769999980926514, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Harbinger's Inscrutable Will", "name_ko_KR": "전령의 불가해한 의지", "name_fr_FR": "Volonté insondable de messager", "name_de_DE": "Unergründlicher Wille des Vorboten", "name_zh_CN": "先锋的晦密意志", "name_es_ES": "Voluntad inescrutable del presagista", "name_ru_RU": "Непостижимая воля глашатая", "name_it_IT": "Volontà Imperscrutabile dell'Araldo", "name_pt_PT": "Vontade Inescrutável do Emissário", "on_use": false, "id_encounter": 2332, "id_journal_instance": 1177, "id_map": 2096, "instance_type": 2}, {"id": 167868, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of Indiscriminate Consumption", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 622320, "buy_price": 3111600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807000160217285, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Idol of Indiscriminate Consumption", "name_ko_KR": "무차별적인 잠식의 우상", "name_fr_FR": "Idole de dévoration aveugle", "name_de_DE": "Götze des willkürlichen Verschlingens", "name_zh_CN": "肆意侵吞法器", "name_es_ES": "Ídolo de consumo indiscriminado", "name_ru_RU": "Идол неразборчивого поглощения", "name_it_IT": "Idolo della Consunzione Indiscriminata", "name_pt_PT": "Ídolo da Consumição Indiscriminada", "on_use": true, "id_encounter": 2332, "id_journal_instance": 1177, "id_map": 2096, "instance_type": 2}, {"id": 168320, "race_mask": 18446744073709551615, "desc": "Only the most perfect pearls will do for the guests of Suva!", "pad2": "", "pad1": "", "pad0": "", "name": "Shiniest Roundiest Pearl of Goodness", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2, "buy_price": 12, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807000160217285, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Shiniest Roundiest Pearl of Goodness", "name_ko_KR": "가장 반짝이면서도 둥근 선의 진주", "name_fr_FR": "Perle de bonté rondissime et brillantissime", "name_de_DE": "Glänzendste rundeste allerbeste Perle", "name_zh_CN": "最亮最圆的优质珍珠", "name_es_ES": "Perla de bondad increíblemente brillante y redonda", "name_ru_RU": "Ярчайшая и круглейшая великолепная жемчужина", "name_it_IT": "Perla Rotondissima e Lucentissima della Divinità", "name_pt_PT": "Pérola Brilhante e Redondinha e Bonitona", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 168674, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Abyssal Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 632693, "buy_price": 3163465, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621999859809875, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 165, "req_skill": 2478, "ilevel": 76, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Abyssal Alchemist Stone", "name_ko_KR": "심연의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste abyssale", "name_de_DE": "Abyssischer Alchemistenstein", "name_zh_CN": "深渊炼金石", "name_es_ES": "Piedra de alquimista abisal", "name_ru_RU": "Глубинный алхимический камень", "name_it_IT": "Pietra Alchemica Abissale", "name_pt_PT": "Pedra do Alquimista Abissal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 168675, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Crushing Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 643449, "buy_price": 3217249, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9659000039100647, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 165, "req_skill": 2478, "ilevel": 82, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Crushing Alchemist Stone", "name_ko_KR": "분쇄의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste écrasante", "name_de_DE": "Zermalmender Alchemistenstein", "name_zh_CN": "碾压炼金石", "name_es_ES": "Piedra de alquimista aplastante", "name_ru_RU": "Пучинный алхимический камень", "name_it_IT": "Pietra Alchemica Devastante", "name_pt_PT": "Pedra do Alquimista Esmagadora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 168676, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Ascended Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 654206, "buy_price": 3271030, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9695000052452087, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 165, "req_skill": 2478, "ilevel": 95, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ascended Alchemist Stone", "name_ko_KR": "승천의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste sublimée", "name_de_DE": "Erwachter Alchemistenstein", "name_zh_CN": "升腾炼金石", "name_es_ES": "Piedra de alquimista ascendida", "name_ru_RU": "Алхимический камень вознесения", "name_it_IT": "Pietra Alchemica Ascesa", "name_pt_PT": "Pedra do Alquimista Elevada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 168905, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shiver Venom Relic", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6540, "buy_price": 32700, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9804999828338623, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Shiver Venom Relic", "name_ko_KR": "전율의 맹독 유물", "name_fr_FR": "Relique des convulsions venimeuses", "name_de_DE": "Zittergiftrelikt", "name_zh_CN": "颤栗剧毒圣物", "name_es_ES": "Reliquia de veneno de escalofrío", "name_ru_RU": "Реликвия леденящего яда", "name_it_IT": "Reliquia dei Brividi Velenosi", "name_pt_PT": "Relíquia do Calafrio Peçonhento", "on_use": true, "id_encounter": 2352, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 168965, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Modular Platinum Plating", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 664845, "buy_price": 3324227, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006700038909912, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 78, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Modular Platinum Plating", "name_ko_KR": "규격화된 백금 판", "name_fr_FR": "Placage en platine modulaire", "name_de_DE": "Modulare Platinpanzerung", "name_zh_CN": "模块化的白金外壳", "name_es_ES": "Blindaje de platino modular", "name_ru_RU": "Многослойная платиновая обшивка", "name_it_IT": "Placcatura in Platino Modulare", "name_pt_PT": "Blindagem de Platina Modular", "on_use": true, "id_encounter": 2336, "id_journal_instance": 1178, "id_map": 2097, "instance_type": 1}, {"id": 169301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Highborne Compendium of Swirling Tides", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9955999851226807, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Highborne Compendium of Swirling Tides", "name_ko_KR": "소용돌이치는 파도의 명가 전서", "name_fr_FR": "Compendium bien-né des flots tourbillonnants", "name_de_DE": "Hochgeborenenkompendium der wirbelnden Fluten", "name_zh_CN": "上层精灵的漩潮纲要", "name_es_ES": "Compendio Altonato de Mareas espirales", "name_ru_RU": "Компендиум высокорожденных: \"Бурлящие волны\"", "name_it_IT": "Compendio degli Alti Nobili sulle Maree Turbinanti", "name_pt_PT": "Compêndio Altaneiro das Marés Rodopiantes", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 169302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Highborne Compendium of Mystical Bulwark", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9993000030517578, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Highborne Compendium of Mystical Bulwark", "name_ko_KR": "신비한 보루의 명가 전서", "name_fr_FR": "Compendium bien-né du rempart mystique", "name_de_DE": "Hochgeborenenkompendium des mystischen Bollwerks", "name_zh_CN": "上层精灵的秘壁纲要", "name_es_ES": "Compendio Altonato de Baluarte místico", "name_ru_RU": "Компендиум высокорожденных: \"Таинственный бастион\"", "name_it_IT": "Compendio degli Alti Nobili sul Baluardo Mistico", "name_pt_PT": "Compêndio Altaneiro do Baluarte Místico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 169304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Leviathan's Lure", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6714, "buy_price": 33571, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.006600022315979, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Leviathan's Lure", "name_ko_KR": "거대괴수의 유혹", "name_fr_FR": "Appât de léviathan", "name_de_DE": "Köder des Leviathans", "name_zh_CN": "海兽的诱饵", "name_es_ES": "Cebo de leviatán", "name_ru_RU": "Приманка для левиафана", "name_it_IT": "Esca del Leviatano", "name_pt_PT": "Isca de Leviatã", "on_use": false, "id_encounter": 2347, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aquipotent Nautilus", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6738, "buy_price": 33694, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0103000402450562, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Aquipotent Nautilus", "name_ko_KR": "수력충만 앵무조개", "name_fr_FR": "Nautile aquipotent", "name_de_DE": "Äquipotenter Nautilus", "name_zh_CN": "等效海能鹦鹉螺", "name_es_ES": "Nautilus acuipotente", "name_ru_RU": "Могучий наутилус", "name_it_IT": "Nautilus Acquipotente", "name_pt_PT": "Náutilo Aquipotente", "on_use": true, "id_encounter": 2354, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Za'qul's Portal Key", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6763, "buy_price": 33817, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Za'qul's Portal Key", "name_ko_KR": "자쿨의 차원문 열쇠", "name_fr_FR": "Clé du portail de Za’qul", "name_de_DE": "Za'quls Portalschlüssel", "name_zh_CN": "扎库尔的传送门钥匙", "name_es_ES": "Llave del portal de Za'qul", "name_ru_RU": "Ключ к порталу За'кула", "name_it_IT": "Chiave del Portale di Za'qul", "name_pt_PT": "Chave do Portal de Za'qul", "on_use": false, "id_encounter": 2349, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vision of Demise", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 663339, "buy_price": 3316698, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017699956893921, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Vision of Demise", "name_ko_KR": "파멸의 환영", "name_fr_FR": "Vision de trépas", "name_de_DE": "Vision des Untergangs", "name_zh_CN": "殒命预言", "name_es_ES": "Visión del fin", "name_ru_RU": "Видение смерти", "name_it_IT": "Visione di Disfatta", "name_pt_PT": "Visão do Óbito", "on_use": true, "id_encounter": 2349, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chain of Suffering", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 665686, "buy_price": 3328430, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.021299958229065, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Chain of Suffering", "name_ko_KR": "괴로움의 사슬", "name_fr_FR": "Chaîne de souffrance", "name_de_DE": "Kette des Leidens", "name_zh_CN": "苦楚锁链", "name_es_ES": "Cadena de sufrimiento", "name_ru_RU": "Цепочка страданий", "name_it_IT": "Catena della Sofferenza", "name_pt_PT": "Corrente de Sofrimento", "on_use": true, "id_encounter": 2349, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zoatroid Egg Sac", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 668097, "buy_price": 3340489, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024999976158142, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Zoatroid Egg Sac", "name_ko_KR": "조아트로이드 알주머니", "name_fr_FR": "Cocon d’œufs zoatroïdes", "name_de_DE": "Zoatroideneiersack", "name_zh_CN": "虚悯者卵囊", "name_es_ES": "Saco de huevos zoatroides", "name_ru_RU": "Кладка яиц зоатроида", "name_it_IT": "Sacca di Uova di Zoatroidi", "name_pt_PT": "Bolsa de Ovos de Zoatroide", "on_use": false, "id_encounter": 2351, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bloodthirsty Urchin", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 622536, "buy_price": 3112684, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9550999999046326, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Bloodthirsty Urchin", "name_ko_KR": "피에 굶주린 성게", "name_fr_FR": "Oursin assoiffé de sang", "name_de_DE": "Blutrünstiger Seeigel", "name_zh_CN": "嗜血海胆", "name_es_ES": "Erizo de mar sediento de sangre", "name_ru_RU": "Кровожадный морской еж", "name_it_IT": "Riccio Sanguinario", "name_pt_PT": "Pivete Sedento de Sangue", "on_use": false, "id_encounter": 2354, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashvane's Razor Coral", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 624948, "buy_price": 3124742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9588000178337097, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Ashvane's Razor Coral", "name_ko_KR": "애쉬베인의 칼날 산호", "name_fr_FR": "Corail rasoir de Corsandre", "name_de_DE": "Aschenwinds Klingenkoralle", "name_zh_CN": "艾什凡的锋锐珊瑚", "name_es_ES": "Coral afilado de Gobernalle", "name_ru_RU": "Острый коралл Эшвейн", "name_it_IT": "Corallo Tagliente dei Bracescura", "name_pt_PT": "Coral-navalha de Grimpagris", "on_use": true, "id_encounter": 2354, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Luminous Jellyweed", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 627295, "buy_price": 3136475, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9624000191688538, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Luminous Jellyweed", "name_ko_KR": "영롱한 해파리초", "name_fr_FR": "Algue gélatineuse luisante", "name_de_DE": "Leuchtendes Quallenkraut", "name_zh_CN": "辉光凝藻", "name_es_ES": "Yerbamedusa luminosa", "name_ru_RU": "Флуоресцентная желейная водоросль", "name_it_IT": "Alga Gelatinosa Luminosa", "name_pt_PT": "Algosma Luminosa", "on_use": false, "id_encounter": 2347, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169313, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Phial of the Arcane Tempest", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 629706, "buy_price": 3148533, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9660999774932861, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Phial of the Arcane Tempest", "name_ko_KR": "비전 폭풍우의 유리병", "name_fr_FR": "Flasque de tempête arcanique", "name_de_DE": "Phiole des arkanen Sturms", "name_zh_CN": "魔力风暴之瓶", "name_es_ES": "Ampolla de la tempestad Arcana", "name_ru_RU": "Фиал чародейской бури", "name_it_IT": "Fiala della Tempesta Arcana", "name_pt_PT": "Frasco da Intempérie Arcana", "on_use": false, "id_encounter": 2353, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169314, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Azshara's Font of Power", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 632118, "buy_price": 3160591, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Azshara's Font of Power", "name_ko_KR": "아즈샤라의 마력의 샘", "name_fr_FR": "Source de pouvoir d’Azshara", "name_de_DE": "Azsharas Born der Macht", "name_zh_CN": "艾萨拉的能量之泉", "name_es_ES": "Fuente de poder de Azshara", "name_ru_RU": "Источник энергии Азшары", "name_it_IT": "Fonte del Potere di Azshara", "name_pt_PT": "Fonte de Poder de Azshara", "on_use": true, "id_encounter": 2361, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Edicts of the Faithless", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 634530, "buy_price": 3172650, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9735000133514404, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Edicts of the Faithless", "name_ko_KR": "부정한 자의 칙령", "name_fr_FR": "Édits des Infidèles", "name_de_DE": "Erlasse der Ungläubigen", "name_zh_CN": "无信者之裁", "name_es_ES": "Edictos de los infieles", "name_ru_RU": "Эдикты отступников", "name_it_IT": "Editti dei Senzafede", "name_pt_PT": "Édito dos Ímpios", "on_use": true, "id_encounter": 2359, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deferred Sentence", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 636876, "buy_price": 3184382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9771000146865845, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Deferred Sentence", "name_ko_KR": "선고 유예", "name_fr_FR": "Peine ajournée", "name_de_DE": "Aufgeschobenes Urteil", "name_zh_CN": "缓刑令", "name_es_ES": "Sentencia aplazada", "name_ru_RU": "Отсроченный приговор", "name_it_IT": "Sentenza Rinviata", "name_pt_PT": "Sentença Deferida", "on_use": false, "id_encounter": 2359, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169317, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enthraller's Bindstone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6542, "buy_price": 32710, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Enthraller's Bindstone", "name_ko_KR": "속박꾼의 귀속석", "name_fr_FR": "Pierre de lien de sorceleuse", "name_de_DE": "Bindungsstein des Bezauberers", "name_zh_CN": "奴役者的束缚之石", "name_es_ES": "Piedra vinculante del sometedor", "name_ru_RU": "Связующий камень Поработителя", "name_it_IT": "Pietra Legatoria dello Schiavista", "name_pt_PT": "Pedra de Vínculo do Encantador", "on_use": false, "id_encounter": 2362, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 169318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shockbiter's Fang", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6566, "buy_price": 32834, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Shockbiter's Fang", "name_ko_KR": "전격아귀의 송곳니", "name_fr_FR": "Croc du mordeur électrisant", "name_de_DE": "Schockbeißers Reißzahn", "name_zh_CN": "震咬者的尖牙", "name_es_ES": "Colmillo del mordedor galvánico", "name_ru_RU": "Клык электрозубой", "name_it_IT": "Zanna di Mordifolgore", "name_pt_PT": "Presa de Morde-choque", "on_use": true, "id_encounter": 2363, "id_journal_instance": 1028, "id_map": 1861, "instance_type": 2}, {"id": 169319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dribbling Inkpod", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 644111, "buy_price": 3220557, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9882000088691711, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Dribbling Inkpod", "name_ko_KR": "흘러내리는 잉크함", "name_fr_FR": "Encrier dégoulinant", "name_de_DE": "Tröpfelnde Tintenkapsel", "name_zh_CN": "流液墨囊", "name_es_ES": "Vaina de tinta goteante", "name_ru_RU": "Протекающий чернильный мешочек", "name_it_IT": "Inchiostro Sgocciolante", "name_pt_PT": "Cápsula de Tinta Gotejante", "on_use": false, "id_encounter": 2351, "id_journal_instance": 1179, "id_map": 2164, "instance_type": 2}, {"id": 169321, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Highborne Compendium of Sundering", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 0.9955000281333923, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Highborne Compendium of Sundering", "name_ko_KR": "분리의 명가 전서", "name_fr_FR": "Compendium bien-né de la fracture", "name_de_DE": "Hochgeborenenkompendium der Zerschlagung", "name_zh_CN": "上层精灵的裂击纲要", "name_es_ES": "Compendio Altonato del Cataclismo", "name_ru_RU": "Компендиум высокорожденных: \"Раскол\"", "name_it_IT": "Compendio degli Alti Nobili sulla Separazione", "name_pt_PT": "Compêndio Altaneiro da Cisão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 169328, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Highborne Compendium of Storms", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 420093, "buy_price": 2100467, "vendor_stack": 1, "unk_2": 0.0, "unk_1": 1.047700047492981, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 72, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Highborne Compendium of Storms", "name_ko_KR": "폭풍의 명가 전서", "name_fr_FR": "Compendium bien-né des tempêtes", "name_de_DE": "Hochgeborenenkompendium der Stürme", "name_zh_CN": "上层精灵的风暴纲要", "name_es_ES": "Compendio Altonato de las tormentas", "name_ru_RU": "Компендиум высокорожденных: \"Буря\"", "name_it_IT": "Compendio degli Alti Nobili sulle Tempeste", "name_pt_PT": "Compêndio Altaneiro das Tempestades", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 169344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ingenious Mana Battery", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 682148, "buy_price": 3410742, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0328999757766724, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 78, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Ingenious Mana Battery", "name_ko_KR": "기발한 마나 전지", "name_fr_FR": "Batterie de mana ingénieuse", "name_de_DE": "Geniale Manabatterie", "name_zh_CN": "新颖的法力电池", "name_es_ES": "Batería de maná ingeniosa", "name_ru_RU": "Оригинальное манахранилище", "name_it_IT": "Batteria di Mana Ingegnosa", "name_pt_PT": "Bateria de Mana Engenhosa", "on_use": true, "id_encounter": 2348, "id_journal_instance": 1178, "id_map": 2097, "instance_type": 1}, {"id": 169769, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Remote Guidance Device", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 647740, "buy_price": 3238702, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9807999730110168, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 78, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Remote Guidance Device", "name_ko_KR": "원격 유도 장치", "name_fr_FR": "Appareil de guidage à distance", "name_de_DE": "Fernleitgerät", "name_zh_CN": "远程导航装置", "name_es_ES": "Dispositivo de teledirección", "name_ru_RU": "Устройство для дистанционного управления", "name_it_IT": "Dispositivo di Guida Remota", "name_pt_PT": "Dispositivo de Orientação Remota", "on_use": true, "id_encounter": 2360, "id_journal_instance": 1178, "id_map": 2097, "instance_type": 1}, {"id": 170273, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oxidized Refuse Remover", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3152, "buy_price": 15762, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509999752044678, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Oxidized Refuse Remover", "name_ko_KR": "산화된 쓰레기 투척기", "name_fr_FR": "Destructeur de déchets oxydés", "name_de_DE": "Oxidierter Unratentferner", "name_zh_CN": "氧化废料清除器", "name_es_ES": "Eliminador de desechos oxidado", "name_ru_RU": "Окисленный утилизатор отходов", "name_it_IT": "Rimuovi-Rifiuti Ossidato", "name_pt_PT": "Removedor de Refugo Oxidado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170596, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9922999739646912, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9959999918937683, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170600, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0069999694824219, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170603, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0181000232696533, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Pedra Defensora da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170607, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0326999425888062, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170610, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0437999963760376, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170613, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9811999797821045, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170616, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9922000169754028, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170620, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0068999528884888, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170623, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.017899990081787, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170628, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9627000093460083, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170631, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9736999869346619, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9847000241279602, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170637, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9957000017166138, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0104000568389893, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0214999914169312, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170650, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9699000120162964, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Pedra Defensora do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170652, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9772000312805176, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9846000075340271, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170658, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9993000030517578, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170661, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0368000268936157, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170665, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9513999819755554, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170669, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9660999774932861, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d’âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170672, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9771000146865845, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d’âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170682, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0404000282287598, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d’âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0440000295639038, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d’âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170686, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9549000263214111, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d’âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9660000205039978, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d’âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Pedra Defensora Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170691, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9732999801635742, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170694, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0108000040054321, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170697, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0219000577926636, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170700, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0328999757766724, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170706, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.954800009727478, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170709, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9922999739646912, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-Luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0144000053405762, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170718, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0254000425338745, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170720, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0326999425888062, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170723, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0437999963760376, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170729, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9922000169754028, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170732, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0032000541687012, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170737, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0216000080108643, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170740, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0326000452041626, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170749, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9921000003814697, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170752, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.003100037574768, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Pedra Defensora do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170755, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0140999555587769, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170756, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.017799973487854, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170935, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy", "name_ko_KR": "악마 상징물", "name_fr_FR": "Trophée de démon", "name_de_DE": "Dämonentrophäe", "name_zh_CN": "恶魔战利品", "name_es_ES": "Trofeo demoníaco", "name_ru_RU": "Демонический трофей", "name_it_IT": "Trofeo Demoniaco", "name_pt_PT": "Troféu do Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 170936, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Demonic Fire", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Demonic Fire", "name_ko_KR": "악마의 불 부적", "name_fr_FR": "Charme de feu démoniaque", "name_de_DE": "Glücksbringer des Dämonenfeuers", "name_zh_CN": "魔火护符", "name_es_ES": "Talismán de fuego demoníaco", "name_ru_RU": "Талисман демонического огня", "name_it_IT": "Talismano del Fuoco Demoniaco", "name_pt_PT": "Patuá do Fogo Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171085, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Peerless Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 678882, "buy_price": 3394412, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9810000061988831, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 175, "req_skill": 2478, "ilevel": 125, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Peerless Alchemist Stone", "name_ko_KR": "독보적인 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste sans pareille", "name_de_DE": "Unvergleichlicher Alchemistenstein", "name_zh_CN": "无双炼金石", "name_es_ES": "Piedra de alquimista incomparable", "name_ru_RU": "Бесподобный алхимический камень", "name_it_IT": "Pietra Alchemica Impareggiabile", "name_pt_PT": "Pedra do Alquimista Inigualável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171087, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Awakened Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 675481, "buy_price": 3377407, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883999824523926, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 170, "req_skill": 2478, "ilevel": 110, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Awakened Alchemist Stone", "name_ko_KR": "각성한 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste éveillée", "name_de_DE": "Erweckter Alchemistenstein", "name_zh_CN": "觉醒炼金石", "name_es_ES": "Piedra de alquimista despierta", "name_ru_RU": "Пробужденный алхимический камень", "name_it_IT": "Pietra Alchemica Risvegliata", "name_pt_PT": "Pedra do Alquimista Desperta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171088, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Unbound Alchemist Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 669456, "buy_price": 3347281, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9921000003814697, "flags_1": 32768, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 165, "req_skill": 2478, "ilevel": 95, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Unbound Alchemist Stone", "name_ko_KR": "해방된 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste déliée", "name_de_DE": "Entfesselter Alchemistenstein", "name_zh_CN": "无拘炼金石", "name_es_ES": "Piedra de alquimista desatada", "name_ru_RU": "Высвобожденный алхимический камень", "name_it_IT": "Pietra Alchemica Indomabile", "name_pt_PT": "Pedra do Alquimista Desvinculada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171323, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritual Alchemy Stone", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 253504, "buy_price": 1267521, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9514999985694885, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2750, "ilevel": 165, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Spiritual Alchemy Stone", "name_ko_KR": "영적인 연금술 돌", "name_fr_FR": "Pierre d’alchimiste spirituelle", "name_de_DE": "Spiritueller Alchemiestein", "name_zh_CN": "灵魂炼金石", "name_es_ES": "Piedra de alquimia espiritual", "name_ru_RU": "Духовный алхимический камень", "name_it_IT": "Pietra Alchemica Spirituale", "name_pt_PT": "Pedra de Alquimia Espiritual", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171482, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prism of Inner Calm", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 9999, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 72039, "buy_price": 288156, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9998000264167786, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Prism of Inner Calm", "name_ko_KR": "내적인 고요의 프리즘", "name_fr_FR": "Prisme du calme intérieur", "name_de_DE": "Prisma der inneren Ruhe", "name_zh_CN": "心灵平静棱柱", "name_es_ES": "Prisma de calma interior", "name_ru_RU": "Призма Внутреннего Покоя", "name_it_IT": "Prisma della Calma Interiore", "name_pt_PT": "Prisma da Calma Interior", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Dead", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0216000080108643, "flags_1": 524288, "flags_2": 24577, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 171549, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Dead", "name_ko_KR": "생명이 없는 자의 통치", "name_fr_FR": "Règne de la mort", "name_de_DE": "Herrschaft der Toten", "name_zh_CN": "亡者的统治", "name_es_ES": "Reino de los muertos", "name_ru_RU": "Власть мертвых", "name_it_IT": "Regno della Morte", "name_pt_PT": "Rédeas dos Mortos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171549, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reign of the Unliving", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9514999985694885, "flags_1": 524288, "flags_2": 24578, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 171528, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Reign of the Unliving", "name_ko_KR": "생명이 사라진 자의 통치", "name_fr_FR": "Règne des non-vivants", "name_de_DE": "Herrschaft der Leblosen", "name_zh_CN": "死者的统治", "name_es_ES": "Reino de los sin vida", "name_ru_RU": "Власть неживых", "name_it_IT": "Regno Senza Vita", "name_pt_PT": "Rédeas do Vivo-morto", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171631, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prestor's Talisman of Machination", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 98, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847999811172485, "flags_1": 524288, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Prestor's Talisman of Machination", "name_ko_KR": "계략의 프레스톨 부적", "name_fr_FR": "Talisman de machination de Prestor", "name_de_DE": "Prestors Talisman der Intrige", "name_zh_CN": "普瑞斯托的诡计护符", "name_es_ES": "Dije de maquinación de Prestor", "name_ru_RU": "Талисман интриг Престора", "name_it_IT": "Talismano della Macchinazione di Prestor", "name_pt_PT": "Talismã da Maquinação do Prestor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 171640, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Variable Pulse Lightning Capacitor", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 133, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017899990081787, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Variable Pulse Lightning Capacitor", "name_ko_KR": "가변 파동 번개 축전기", "name_fr_FR": "Condensateur de foudre à pulsation variable", "name_de_DE": "Wechselimpulsblitzkondensator", "name_zh_CN": "变压脉冲电容器", "name_es_ES": "Condensador de relámpagos de pulso variable", "name_ru_RU": "Нестабильный конденсатор молний", "name_it_IT": "Condensatore Variabile a Luce Pulsata", "name_pt_PT": "Capacitor de Relâmpagos de Pulso Variável", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Jaws of Defeat", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 134, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0480999946594238, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Jaws of Defeat", "name_ko_KR": "타도의 턱뼈", "name_fr_FR": "Mâchoires de défaite", "name_de_DE": "Fänge des Schicksals", "name_zh_CN": "绝境逢生", "name_es_ES": "Mandíbulas de la derrota", "name_ru_RU": "Челюсти погибели", "name_it_IT": "Fauci della Sconfitta", "name_pt_PT": "Mandíbulas da Derrota", "on_use": true, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171642, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Hungerer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 135, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.95169997215271, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "The Hungerer", "name_ko_KR": "갈구하는 마음", "name_fr_FR": "L’Affameur", "name_de_DE": "Der Hungerleider", "name_zh_CN": "饥不择食", "name_es_ES": "El Hambriento", "name_ru_RU": "Ненасыть", "name_it_IT": "Monile Famelico", "name_pt_PT": "Fome Incontrolável", "on_use": false, "id_encounter": 197, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171643, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spidersilk Spindle", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 137, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.955299973487854, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Spidersilk Spindle", "name_ko_KR": "거미비단 물레", "name_fr_FR": "Fuseau à soie d’araignée", "name_de_DE": "Spinnenseidenspindel", "name_zh_CN": "蛛丝纺锤", "name_es_ES": "Huso de seda de araña", "name_ru_RU": "Веретено паучьего шелка", "name_it_IT": "Fuso di Seta di Ragno", "name_pt_PT": "Fuso de Seda de Aranha", "on_use": false, "id_encounter": 192, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171644, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Necromantic Focus", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 138, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Necromantic Focus", "name_ko_KR": "강령술 집중 장치", "name_fr_FR": "Focalisation nécromantique", "name_de_DE": "Nekromantischer Fokus", "name_zh_CN": "巫术聚焦器", "name_es_ES": "Foco nigromántico", "name_ru_RU": "Средоточие некромантии", "name_it_IT": "Focalizzatore Negromantico", "name_pt_PT": "Foco Necromântico", "on_use": false, "id_encounter": 196, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eye of Blazing Power", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 139, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 382131, "buy_price": 1528524, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9627000093460083, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Eye of Blazing Power", "name_ko_KR": "타오르는 힘의 눈", "name_fr_FR": "Œil de la puissance flamboyante", "name_de_DE": "Auge der lodernden Kraft", "name_zh_CN": "炽焰能量之眼", "name_es_ES": "Ojo de Poder llameante", "name_ru_RU": "Око пылающей энергии", "name_it_IT": "Occhio del Potere Splendente", "name_pt_PT": "Olho do Poder Fulgurante", "on_use": false, "id_encounter": 194, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171646, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Matrix Restabilizer", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 140, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9664000272750854, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Matrix Restabilizer", "name_ko_KR": "행렬 재안정기", "name_fr_FR": "Restabilisateur de matrice", "name_de_DE": "Matrixrestabilisator", "name_zh_CN": "矩阵回稳器", "name_es_ES": "Estabilizador de matriz", "name_ru_RU": "Рестабилизатор матрицы", "name_it_IT": "Ristabilizzatore della Matrice", "name_pt_PT": "Reestabilizador Matricial", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vessel of Acceleration", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 141, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200706, "buy_price": 802825, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700000286102295, "flags_1": 0, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 4, "name_en_US": "Vessel of Acceleration", "name_ko_KR": "가속의 용기", "name_fr_FR": "Calice d’accélération", "name_de_DE": "Gefäß der Beschleunigung", "name_zh_CN": "爆焰魔瓶", "name_es_ES": "Vasija de aceleración", "name_ru_RU": "Сосуд ускорения", "name_it_IT": "Vaso dell'Accelerazione", "name_pt_PT": "Instrumento da Aceleração", "on_use": false, "id_encounter": 198, "id_journal_instance": 78, "id_map": 720, "instance_type": 2}, {"id": 171852, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fall of Mortality", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 91, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 80507, "buy_price": 322031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9664999842643738, "flags_1": 528384, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 4, "name_en_US": "Fall of Mortality", "name_ko_KR": "필멸의 몰락", "name_fr_FR": "Baisse de la mortalité", "name_de_DE": "Untergang der Sterblichen", "name_zh_CN": "生命之殒", "name_es_ES": "Caída de mortalidad", "name_ru_RU": "Поступь смерти", "name_it_IT": "Caduta della Mortalità", "name_pt_PT": "Queda da Mortalidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172666, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 620226, "buy_price": 3101130, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.977400004863739, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Medallion", "name_ko_KR": "타락한 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur corrompu", "name_de_DE": "Medaillon des verderbten Gladiators", "name_zh_CN": "腐化角斗士的勋章", "name_es_ES": "Medallón de Gladiador corrupto", "name_ru_RU": "Медальон падшего гладиатора", "name_it_IT": "Medaglione del Gladiatore Corrotto", "name_pt_PT": "Medalhão do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172667, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 622510, "buy_price": 3112552, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9810000061988831, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Emblem", "name_ko_KR": "타락한 검투사의 문장", "name_fr_FR": "Emblème du gladiateur corrompu", "name_de_DE": "Emblem des verderbten Gladiators", "name_zh_CN": "腐化角斗士的纹章", "name_es_ES": "Emblema de Gladiador corrupto", "name_ru_RU": "Эмблема падшего гладиатора", "name_it_IT": "Emblema del Gladiatore Corrotto", "name_pt_PT": "Emblema do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172668, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 624858, "buy_price": 3124291, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9847000241279602, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Insignia", "name_ko_KR": "타락한 검투사의 계급장", "name_fr_FR": "Insigne du gladiateur corrompu", "name_de_DE": "Insigne des verderbten Gladiators", "name_zh_CN": "腐化角斗士的徽记", "name_es_ES": "Insignia de Gladiador corrupto", "name_ru_RU": "Знак падшего гладиатора", "name_it_IT": "Fregio del Gladiatore Corrotto", "name_pt_PT": "Insígnia do Gladiador Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172669, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 627206, "buy_price": 3136031, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9883999824523926, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Badge", "name_ko_KR": "타락한 검투사의 표장", "name_fr_FR": "Écusson du gladiateur corrompu", "name_de_DE": "Abzeichen des verderbten Gladiators", "name_zh_CN": "腐化角斗士的徽章", "name_es_ES": "Distintivo de Gladiador corrupto", "name_ru_RU": "Жетон падшего гладиатора", "name_it_IT": "Distintivo del Gladiatore Corrotto", "name_pt_PT": "Distintivo do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172672, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Maledict", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 651002, "buy_price": 3255012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0259000062942505, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Maledict", "name_ko_KR": "타락한 검투사의 저주", "name_fr_FR": "Bijou maudit du gladiateur corrompu", "name_de_DE": "Verhängnis des verderbten Gladiators", "name_zh_CN": "腐化角斗士的咒徽", "name_es_ES": "Maldición de Gladiador corrupto", "name_ru_RU": "Темный фетиш падшего гладиатора", "name_it_IT": "Maledizione del Gladiatore Corrotto", "name_pt_PT": "Imprecação do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172673, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Safeguard", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 653350, "buy_price": 3266752, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0296000242233276, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Safeguard", "name_ko_KR": "타락한 검투사의 안전장치", "name_fr_FR": "Sauvegarde du gladiateur corrompu", "name_de_DE": "Schutzwall des verderbten Gladiators", "name_zh_CN": "腐化角斗士的护徽", "name_es_ES": "Salvaguarda de Gladiador corrupto", "name_ru_RU": "Оберег падшего гладиатора", "name_it_IT": "Salvaguardia del Gladiatore Corrotto", "name_pt_PT": "Salvaguarda do Gladiador Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172846, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Bauble", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 606392, "buy_price": 3031962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9556000232696533, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Aspirant's Bauble", "name_ko_KR": "타락한 지원자의 장신구", "name_fr_FR": "Babiole de l’aspirant corrompu", "name_de_DE": "Kleinod des verderbten Aspiranten", "name_zh_CN": "腐化候选者的饰物", "name_es_ES": "Adorno de aspirante corrupto", "name_ru_RU": "Безделушка падшего претендента", "name_it_IT": "Ninnolo del Pretendente Corrotto", "name_pt_PT": "Berloque do Aspirante Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172847, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Emblem", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 608740, "buy_price": 3043701, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9592999815940857, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Aspirant's Emblem", "name_ko_KR": "타락한 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant corrompu", "name_de_DE": "Emblem des verderbten Aspiranten", "name_zh_CN": "腐化候选者的纹章", "name_es_ES": "Emblema de aspirante corrupto", "name_ru_RU": "Эмблема падшего претендента", "name_it_IT": "Emblema del Pretendente Corrotto", "name_pt_PT": "Emblema do Aspirante Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172848, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Insignia", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 611024, "buy_price": 3055123, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9628999829292297, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Aspirant's Insignia", "name_ko_KR": "타락한 지원자의 계급장", "name_fr_FR": "Insigne de l’aspirant corrompu", "name_de_DE": "Insigne des verderbten Aspiranten", "name_zh_CN": "腐化候选者的徽记", "name_es_ES": "Insignia de aspirante corrupto", "name_ru_RU": "Знак падшего претендента", "name_it_IT": "Fregio del Pretendente Corrotto", "name_pt_PT": "Insígnia do Aspirante Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 172849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Badge", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 613372, "buy_price": 3066863, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9666000008583069, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Aspirant's Badge", "name_ko_KR": "타락한 지원자의 표장", "name_fr_FR": "Écusson de l’aspirant corrompu", "name_de_DE": "Abzeichen des verderbten Aspiranten", "name_zh_CN": "腐化候选者的徽章", "name_es_ES": "Distintivo de aspirante corrupto", "name_ru_RU": "Жетон падшего претендента", "name_it_IT": "Distintivo del Pretendente Corrotto", "name_pt_PT": "Distintivo do Aspirante Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173069, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Putrescence", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 627488, "buy_price": 3137440, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0182000398635864, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Putrescence", "name_ko_KR": "다크문 카드 한 벌: 부패", "name_fr_FR": "Suite de Sombrelune : Putrescence", "name_de_DE": "Dunkelmond-Kartenset: Fäulnis", "name_zh_CN": "暗月套牌:腐化", "name_es_ES": "Colección de la Luna Negra: Putrescencia", "name_ru_RU": "Колода карт Новолуния \"Гниение\"", "name_it_IT": "Mazzo della Putrescenza di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Putrescência", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173078, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Repose", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 602467, "buy_price": 3012337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775999784469604, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Repose", "name_ko_KR": "다크문 카드 한 벌: 안식", "name_fr_FR": "Suite de Sombrelune : Quiétude", "name_de_DE": "Dunkelmond-Kartenset: Rast", "name_zh_CN": "暗月套牌:休憩", "name_es_ES": "Colección de la Luna Negra: Reposo", "name_ru_RU": "Колода карт Новолуния \"Покой\"", "name_it_IT": "Mazzo del Riposo di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Repouso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173087, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Voracity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 622866, "buy_price": 3114330, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010699987411499, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Voracity", "name_ko_KR": "다크문 카드 한 벌: 탐식", "name_fr_FR": "Suite de Sombrelune : Voracité", "name_de_DE": "Dunkelmond-Kartenset: Gier", "name_zh_CN": "暗月套牌:贪婪", "name_es_ES": "Colección de la Luna Negra: Voracidad", "name_ru_RU": "Колода карт Новолуния \"Ненасытность\"", "name_it_IT": "Mazzo della Voracità di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Voracidade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173096, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Indomitable", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 597845, "buy_price": 2989227, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700999855995178, "flags_1": 64, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Indomitable", "name_ko_KR": "다크문 카드 한 벌: 불굴", "name_fr_FR": "Suite de Sombrelune : Invincibilité", "name_de_DE": "Dunkelmond-Kartenset: Unbeugsamkeit", "name_zh_CN": "暗月套牌:不屈", "name_es_ES": "Colección de la Luna Negra: Indómito", "name_ru_RU": "Колода карт Новолуния \"Неукротимость\"", "name_it_IT": "Mazzo dell'Indomabile di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Indomável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173349, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Misfiring Centurion Controller", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 427432, "buy_price": 2137161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Misfiring Centurion Controller", "name_ko_KR": "오작동하는 백인대장 제어기", "name_fr_FR": "Contrôleur de centurion défectueux", "name_de_DE": "Versagende Zenturiosteuerung", "name_zh_CN": "无法启动的百心长控制器", "name_es_ES": "Controlador de centurión averiado", "name_ru_RU": "Сбоящий контролер центурионов", "name_it_IT": "Controllore del Centurione Inceppato", "name_pt_PT": "Controlador de Centurião Engasgado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173666, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lacquered Carving", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 199739, "buy_price": 998699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0149999856948853, "flags_1": 0, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Lacquered Carving", "name_ko_KR": "옻칠한 조각", "name_fr_FR": "Sculpture laquée", "name_de_DE": "Lackierte Schnitzarbeit", "name_zh_CN": "喷漆雕像", "name_es_ES": "Talla lacada", "name_ru_RU": "Лакированная резная фигурка", "name_it_IT": "Pittogramma Laccato", "name_pt_PT": "Entalhe Envernizado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173667, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burnished Charm", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200467, "buy_price": 1002339, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0187000036239624, "flags_1": 0, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 44, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 2, "name_en_US": "Burnished Charm", "name_ko_KR": "빛나는 부적", "name_fr_FR": "Charme bruni", "name_de_DE": "Brünierter Glücksbringer", "name_zh_CN": "抛光护符", "name_es_ES": "Talismán bruñido", "name_ru_RU": "Отполированный амулет", "name_it_IT": "Talismano Brunito", "name_pt_PT": "Patuá Lustrado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 173940, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Warding", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 649302, "buy_price": 3246511, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9704999923706055, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Sigil of Warding", "name_ko_KR": "수호의 인장", "name_fr_FR": "Cachet de sauvegarde", "name_de_DE": "Zeichen des Schutzes", "name_zh_CN": "结界印记", "name_es_ES": "Sigilo de amparo", "name_ru_RU": "Защитная печать", "name_it_IT": "Sigillo della Protezione", "name_pt_PT": "Signo de Proteção", "on_use": true, "id_encounter": 2365, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 173943, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Torment in a Jar", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 656661, "buy_price": 3283309, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9815000295639038, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Torment in a Jar", "name_ko_KR": "단지 안의 고통", "name_fr_FR": "Tourment en bouteille", "name_de_DE": "Qual im Glas", "name_zh_CN": "瓶中之刑", "name_es_ES": "Tormento en un tarro", "name_ru_RU": "Накопленные муки", "name_it_IT": "Tormento in Vitro", "name_pt_PT": "Tormento no Pote", "on_use": false, "id_encounter": 2377, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 173944, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forbidden Obsidian Claw", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14016, "buy_price": 70083, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Forbidden Obsidian Claw", "name_ko_KR": "금단의 흑요석 발톱", "name_fr_FR": "Griffe d’obsidienne interdite", "name_de_DE": "Verbotene Obsidianklaue", "name_zh_CN": "禁断黑曜之爪", "name_es_ES": "Garra de obsidiana prohibida", "name_ru_RU": "Запретный обсидиановый коготь", "name_it_IT": "Artiglio d'Ossidiana Proibito", "name_pt_PT": "Garra de Obsidiana Proibida", "on_use": true, "id_encounter": 2365, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 173946, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Writhing Segment of Drest'agath", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 664088, "buy_price": 3320440, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926000237464905, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Writhing Segment of Drest'agath", "name_ko_KR": "드레스타가스의 꿈틀대는 몸체", "name_fr_FR": "Fragment frétillant de Drest’agath", "name_de_DE": "Zuckendes Segment von Drest'agath", "name_zh_CN": "扭动的德雷阿佳丝碎片", "name_es_ES": "Segmento sinuoso de Drest'agath", "name_ru_RU": "Извивающийся сегмент Дест'агат", "name_it_IT": "Segmento Fremente di Drest'agath", "name_pt_PT": "Segmento of Drest'agath Contorcido", "on_use": true, "id_encounter": 2373, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174044, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Humming Black Dragonscale", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14385, "buy_price": 71925, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0111000537872314, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Humming Black Dragonscale", "name_ko_KR": "고동치는 검은용 비늘", "name_fr_FR": "Écaille de dragon noir vrombissante", "name_de_DE": "Summende schwarze Drachenschuppe", "name_zh_CN": "嗡鸣的黑龙鳞片", "name_es_ES": "Dragontina negra zumbante", "name_ru_RU": "Гудящая чешуйка черного дракона", "name_it_IT": "Scaglia di Drago Nero Vibrante", "name_pt_PT": "Escama Zumbidora de Dragão Negro", "on_use": true, "id_encounter": 2368, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174060, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Psyche Shredder", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14173, "buy_price": 70865, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9962000250816345, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Psyche Shredder", "name_ko_KR": "정신 파쇄기", "name_fr_FR": "Déchiqueteur de psyché", "name_de_DE": "Psychenreißer", "name_zh_CN": "心智切割器", "name_es_ES": "Desgarrador de psiques", "name_ru_RU": "Рассекатель души", "name_it_IT": "Squarciapsiche", "name_pt_PT": "Retalhador de Psiquê", "on_use": false, "id_encounter": 2369, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174103, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Manifesto of Madness", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 23488, "buy_price": 117443, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 95, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Manifesto of Madness", "name_ko_KR": "광기의 선언", "name_fr_FR": "Manifeste de la folie", "name_de_DE": "Manifest des Wahnsinns", "name_zh_CN": "癫狂宣言", "name_es_ES": "Manifiesto de locura", "name_ru_RU": "Манифест безумия", "name_it_IT": "Manifesto della Follia", "name_pt_PT": "Manifesto da Loucura", "on_use": true, "id_encounter": 2375, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174180, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oozing Coagulum", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 683757, "buy_price": 3418789, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219999551773071, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Oozing Coagulum", "name_ko_KR": "수액 응혈", "name_fr_FR": "Coagulum suintant", "name_de_DE": "Schleimiges Koagulum", "name_zh_CN": "渗漏凝块", "name_es_ES": "Coágulo rezumante", "name_ru_RU": "Сочащийся коагулят", "name_it_IT": "Coagulo Melmoso", "name_pt_PT": "Coágulo Gosmento", "on_use": false, "id_encounter": 2374, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174276, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Breach", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 655571, "buy_price": 3277857, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0331000089645386, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Breach", "name_ko_KR": "타락한 검투사의 틈새", "name_fr_FR": "Brèche du gladiateur corrompu", "name_de_DE": "Bresche des verderbten Gladiators", "name_zh_CN": "腐化角斗士的破痕", "name_es_ES": "Brecha de Gladiador corrupto", "name_ru_RU": "Пролом падшего гладиатора", "name_it_IT": "Breccia del Gladiatore Corrotto", "name_pt_PT": "Fenda do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 174277, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lingering Psychic Shell", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 649954, "buy_price": 3249774, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9631999731063843, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 95, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Lingering Psychic Shell", "name_ko_KR": "잔존하는 정신의 껍질", "name_fr_FR": "Carapace psychique rémanente", "name_de_DE": "Anhaltender psychischer Panzer", "name_zh_CN": "残留的心灵护壳", "name_es_ES": "Caparazón psíquico persistente", "name_ru_RU": "Остатки ментального панциря", "name_it_IT": "Guscio Psichico Persistente", "name_pt_PT": "Carapaça Psíquica Duradoura", "on_use": true, "id_encounter": 2375, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174472, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Spite", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 632346, "buy_price": 3161731, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965000152587891, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Corrupted Gladiator's Spite", "name_ko_KR": "타락한 검투사의 원한", "name_fr_FR": "Dépit du gladiateur corrompu", "name_de_DE": "Groll des verderbten Gladiators", "name_zh_CN": "腐化角斗士的怨念", "name_es_ES": "Maldad de Gladiador corrupto", "name_ru_RU": "Злоба падшего гладиатора", "name_it_IT": "Perfidia del Gladiatore Corrotto", "name_pt_PT": "Malevolência do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 174500, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vita-Charged Titanshard", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14594, "buy_price": 72971, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0257999897003174, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1452, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Vita-Charged Titanshard", "name_ko_KR": "생령으로 충만한 티탄의 파편", "name_fr_FR": "Éclat des Titans chargé de vita", "name_de_DE": "Vitageladener Titanensplitter", "name_zh_CN": "生命充能的泰坦裂片", "name_es_ES": "Fragmento titánico cargado de vita", "name_ru_RU": "Заряженный жизненной силой осколок титанов", "name_it_IT": "Scheggia Titanica Caricata di Vita", "name_pt_PT": "Estilhaço Titânico de Vita Carregada", "on_use": false, "id_encounter": 2364, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 174528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void-Twisted Titanshard", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 13962, "buy_price": 69812, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9814000129699707, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 32, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1452, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Void-Twisted Titanshard", "name_ko_KR": "공허로 뒤틀린 티탄의 파편", "name_fr_FR": "Éclat des Titans altéré par le Vide", "name_de_DE": "Leerenentstellter Titanensplitter", "name_zh_CN": "虚空扭曲的泰坦裂片", "name_es_ES": "Fragmento titánico alterado por el Vacío", "name_ru_RU": "Зараженный Бездной осколок титанов", "name_it_IT": "Scheggia Titanica Distorta dal Vuoto", "name_pt_PT": "Estilhaço Titânico Pervertido pelo Caos", "on_use": false, "id_encounter": 2364, "id_journal_instance": 1180, "id_map": 2217, "instance_type": 2}, {"id": 175718, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ascended Defender's Crest", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 421285, "buy_price": 2106427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0075000524520874, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Ascended Defender's Crest", "name_ko_KR": "승천자 수호병의 문장", "name_fr_FR": "Écu du défenseur transcendé", "name_de_DE": "Emblem des aufgestiegenen Verteidigers", "name_zh_CN": "晋升防御者纹章", "name_es_ES": "Cresta de defensor ascendido", "name_ru_RU": "Знак отличия перерожденного защитника", "name_it_IT": "Emblema del Difensore Asceso", "name_pt_PT": "Brasão do Defensor Ascendido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175719, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Agthia's Void-Tinged Speartip", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 422832, "buy_price": 2114163, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.011199951171875, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Agthia's Void-Tinged Speartip", "name_ko_KR": "아그티아의 공허에 물든 창끝", "name_fr_FR": "Fer de lance teinté de Vide d’Agthia", "name_de_DE": "Agthias leerenberührte Speerspitze", "name_zh_CN": "艾格茜娅的虚色矛尖", "name_es_ES": "Punta de lanza teñida de Vacío de Agthia", "name_ru_RU": "Тронутый Бездной наконечник копья Агфии", "name_it_IT": "Punta di Lancia Venata di Vuoto di Agthia", "name_pt_PT": "Ponta de Lança Manchada de Caos de Agthia", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175722, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Caustic Liquid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9089, "buy_price": 45447, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Vial of Caustic Liquid", "name_ko_KR": "부식성 액체가 든 병", "name_fr_FR": "Fiole de liquide caustique", "name_de_DE": "Phiole voll ätzender Flüssigkeit", "name_zh_CN": "腐蚀流液之瓶", "name_es_ES": "Vial de líquido cáustico", "name_ru_RU": "Флакон с едкой жидкостью", "name_it_IT": "Fiala di Liquido Caustico", "name_pt_PT": "Ampola de Líquido Cáustico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175723, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rejuvenating Serum", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 398203, "buy_price": 1991018, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9523000121116638, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Rejuvenating Serum", "name_ko_KR": "원기 회복의 약", "name_fr_FR": "Sérum de récupération", "name_de_DE": "Verjüngungsserum", "name_zh_CN": "康复血清", "name_es_ES": "Suero rejuvenecedor", "name_ru_RU": "Омолаживающая сыворотка", "name_it_IT": "Siero Rinvigorente", "name_pt_PT": "Soro Rejuvenescedor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175725, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Newcomer's Gladiatorial Badge", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 401256, "buy_price": 2006280, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595999717712402, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Newcomer's Gladiatorial Badge", "name_ko_KR": "신참의 검투사 훈장", "name_fr_FR": "Écusson de gladiateur du nouveau venu", "name_de_DE": "Gladiatorenabzeichen des Neulings", "name_zh_CN": "新手的角斗士徽章", "name_es_ES": "Distintivo gladiatorio de recién llegado", "name_ru_RU": "Гладиаторский значок новичка", "name_it_IT": "Distintivo Gladiatorio dell'Esordiente", "name_pt_PT": "Distintivo Gladiatório do Novato", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primalist's Kelpling", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 402803, "buy_price": 2014016, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Primalist's Kelpling", "name_ko_KR": "원시술사의 물풀장식", "name_fr_FR": "Alguelin de primaliste", "name_de_DE": "Tangling des Primalisten", "name_zh_CN": "仪祭师的幼藻", "name_es_ES": "Alguita de primalista", "name_ru_RU": "Водоросток шамана стихий", "name_it_IT": "Alghetta del Primalista", "name_pt_PT": "Alguim do Primevista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175727, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elder's Stormseed", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 404350, "buy_price": 2021752, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9670000076293945, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Elder's Stormseed", "name_ko_KR": "장로의 폭풍씨앗", "name_fr_FR": "Graine-orage d’ancien", "name_de_DE": "Sturmsaat des Ältesten", "name_zh_CN": "长者的风暴之种", "name_es_ES": "Semilla de tormenta de anciano", "name_ru_RU": "Семя бури старейшины", "name_it_IT": "Seme Tempestoso dell'Anziano", "name_pt_PT": "Semente-tempesta do Ancião", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175728, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulsifter Root", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 511951, "buy_price": 2559756, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9706000089645386, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Soulsifter Root", "name_ko_KR": "영혼여과 뿌리", "name_fr_FR": "Racine tamisâme", "name_de_DE": "Seelensieberwurzeln", "name_zh_CN": "捋魂者之根", "name_es_ES": "Raíz ciernealmas", "name_ru_RU": "Корень просеивателя душ", "name_it_IT": "Radice del Setacciatore d'Anime", "name_pt_PT": "Raiz de Peneira-d'alma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175729, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rotbriar Sprout", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 516066, "buy_price": 2580332, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9743000268936157, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Rotbriar Sprout", "name_ko_KR": "썩은덤불 묘목", "name_fr_FR": "Pousse putréronce", "name_de_DE": "Fauldornspross", "name_zh_CN": "腐楠幼芽", "name_es_ES": "Brote pudrezarza", "name_ru_RU": "Росток гнилошипа", "name_it_IT": "Germoglio di Rovomarcio", "name_pt_PT": "Broto de Putrissarça", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175730, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Master Duelist's Chit", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 408950, "buy_price": 2044750, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9779999852180481, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Master Duelist's Chit", "name_ko_KR": "대가 결투사의 전표", "name_fr_FR": "Note de maître duelliste", "name_de_DE": "Marke des Meisterduellanten", "name_zh_CN": "决斗大师的便条", "name_es_ES": "Bono de maestro duelista", "name_ru_RU": "Карточка опытного дуэлянта", "name_it_IT": "Nota del Maestro dei Duellanti", "name_pt_PT": "Bilhete do Duelista Mestre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175731, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stolen Maw Badge", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 410497, "buy_price": 2052486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9817000031471252, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Stolen Maw Badge", "name_ko_KR": "도둑맞은 나락 훈장", "name_fr_FR": "Écusson de l’Antre dérobé", "name_de_DE": "Gestohlenes Schlundabzeichen", "name_zh_CN": "失窃的噬渊徽章", "name_es_ES": "Insignia de Las Fauces robada", "name_ru_RU": "Украденный жетон Утробы", "name_it_IT": "Distintivo della Fauce Rubato", "name_pt_PT": "Insígnia da Gorja Roubada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175732, "race_mask": 18446744073709551615, "desc": "Sometimes a tool in the wrong hands is a weapon.", "pad2": "", "pad1": "", "pad0": "", "name": "Tablet of Despair", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 412002, "buy_price": 2060012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9853000044822693, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Tablet of Despair", "name_ko_KR": "절망의 서판", "name_fr_FR": "Tablette de désespoir", "name_de_DE": "Tafel der Verzweiflung", "name_zh_CN": "绝望石板", "name_es_ES": "Tablilla de desesperación", "name_ru_RU": "Табличка отчаяния", "name_it_IT": "Tavoletta della Disperazione", "name_pt_PT": "Tabuleta do Desespero", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175733, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brimming Ember Shard", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 496259, "buy_price": 2481298, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9890000224113464, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Brimming Ember Shard", "name_ko_KR": "충만한 잿불 조각", "name_fr_FR": "Éclat de braise palpitant", "name_de_DE": "Aufgeladener Glutsplitter", "name_zh_CN": "充盈灰烬碎片", "name_es_ES": "Fragmento de ascua rebosante", "name_ru_RU": "Жарко тлеющий осколок", "name_it_IT": "Scheggia di Brace Vibrante", "name_pt_PT": "Estilhaço de Brasa Radiante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175884, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 534823, "buy_price": 2674115, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0078999996185303, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Badge of Ferocity", "name_ko_KR": "죄 많은 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant impénitent", "name_de_DE": "Wildheitsabzeichen des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante pecaminoso", "name_ru_RU": "Жетон свирепости грешного претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Peccatore", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175921, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 722808, "buy_price": 3614040, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9965999722480774, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Badge of Ferocity", "name_ko_KR": "죄 많은 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur impénitent", "name_de_DE": "Wildheitsabzeichen des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的凶猛徽章", "name_es_ES": "Distintivo de victoria de Gladiador pecaminoso", "name_ru_RU": "Жетон свирепости грешного гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Peccatore", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175941, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritual Alchemy Stone", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 265493, "buy_price": 1327467, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 0.9965000152587891, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2750, "ilevel": 165, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Spiritual Alchemy Stone", "name_ko_KR": "영적인 연금술 돌", "name_fr_FR": "Pierre d’alchimiste spirituelle", "name_de_DE": "Spiritueller Alchemiestein", "name_zh_CN": "灵魂炼金石", "name_es_ES": "Piedra de alquimia espiritual", "name_ru_RU": "Духовный алхимический камень", "name_it_IT": "Pietra Alchemica Spirituale", "name_pt_PT": "Pedra de Alquimia Espiritual", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175942, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritual Alchemy Stone", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 266479, "buy_price": 1332395, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0002000331878662, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2750, "ilevel": 165, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Spiritual Alchemy Stone", "name_ko_KR": "영적인 연금술 돌", "name_fr_FR": "Pierre d’alchimiste spirituelle", "name_de_DE": "Spiritueller Alchemiestein", "name_zh_CN": "灵魂炼金石", "name_es_ES": "Piedra de alquimia espiritual", "name_ru_RU": "Духовный алхимический камень", "name_it_IT": "Pietra Alchemica Spirituale", "name_pt_PT": "Pedra de Alquimia Espiritual", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 175943, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Spiritual Alchemy Stone", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 267438, "buy_price": 1337191, "vendor_stack": 1, "unk_2": 0.5, "unk_1": 1.0038000345230103, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 100, "req_skill": 2750, "ilevel": 165, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Spiritual Alchemy Stone", "name_ko_KR": "영적인 연금술 돌", "name_fr_FR": "Pierre d’alchimiste spirituelle", "name_de_DE": "Spiritueller Alchemiestein", "name_zh_CN": "灵魂炼金石", "name_es_ES": "Piedra de alquimia espiritual", "name_ru_RU": "Духовный алхимический камень", "name_it_IT": "Pietra Alchemica Spirituale", "name_pt_PT": "Pedra de Alquimia Espiritual", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177147, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 479637, "buy_price": 2398188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0077999830245972, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177148, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 481350, "buy_price": 2406754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177149, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 483111, "buy_price": 2415559, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0151000022888184, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 484872, "buy_price": 2424364, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0188000202178955, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177151, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oceanographer's Weather Log", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 486586, "buy_price": 2432930, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0224000215530396, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Oceanographer's Weather Log", "name_ko_KR": "바다 낚시꾼의 날씨 일지", "name_fr_FR": "Journal météorologique d’océanographe", "name_de_DE": "Wetteraufzeichnungen des Meeresforschers", "name_zh_CN": "海洋学家的气候日志", "name_es_ES": "Informe meteorológico de oceanógrafo", "name_ru_RU": "Журнал погоды океанографа", "name_it_IT": "Diario Meteorologico dell'Oceanografo", "name_pt_PT": "Registro Climático do Oceanógrafo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177152, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Privateer's Spyglass", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 488347, "buy_price": 2441735, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0261000394821167, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Privateer's Spyglass", "name_ko_KR": "선원의 망원경", "name_fr_FR": "Longue-vue de corsaire", "name_de_DE": "Freibeuterfernrohr", "name_zh_CN": "水手的望远镜", "name_es_ES": "Catalejo de corsario", "name_ru_RU": "Пиратская подзорная труба", "name_it_IT": "Cannocchiale del Corsaro", "name_pt_PT": "Luneta do Corsário", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177154, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seabeast Tusk", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 456840, "buy_price": 2284204, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599000215530396, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Seabeast Tusk", "name_ko_KR": "바다야수 엄니", "name_fr_FR": "Défense de monstre marin", "name_de_DE": "Seemonsterhauer", "name_zh_CN": "海兽之牙", "name_es_ES": "Colmillo de bestia marina", "name_ru_RU": "Клык морского чудища", "name_it_IT": "Zanna di Bestia Marina", "name_pt_PT": "Presa de Fera Marinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177155, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shimmering Rune", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 458554, "buy_price": 2292770, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 1, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Shimmering Rune", "name_ko_KR": "반짝이는 룬", "name_fr_FR": "Rune chatoyante", "name_de_DE": "Schimmernde Rune", "name_zh_CN": "闪烁的符文", "name_es_ES": "Runa fulgurante", "name_ru_RU": "Мерцающая руна", "name_it_IT": "Runa Scintillante", "name_pt_PT": "Runa Cintilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177156, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Petrified Basilisk Scale", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 460315, "buy_price": 2301575, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Petrified Basilisk Scale", "name_ko_KR": "석화된 바실리스크 비늘", "name_fr_FR": "Écaille de basilic pétrifiée", "name_de_DE": "Versteinerte Basiliskenschuppe", "name_zh_CN": "石化的蜥蜴鳞片", "name_es_ES": "Escama de basilisco petrificada", "name_ru_RU": "Окаменелая чешуйка василиска", "name_it_IT": "Scaglia di Basilisco Pietrificata", "name_pt_PT": "Escama de Basilisco Petrificada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177157, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bijou of the Golden City", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 462075, "buy_price": 2310379, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Bijou of the Golden City", "name_ko_KR": "황금 도시의 장신구", "name_fr_FR": "Bijou de la cité d’or", "name_de_DE": "Schmuckstück der Goldenen Stadt", "name_zh_CN": "黄金城宝石", "name_es_ES": "Joya de la ciudad dorada", "name_ru_RU": "Украшение Золотого города", "name_it_IT": "Bijou della Città Dorata", "name_pt_PT": "Bijuteria da Cidade Dourada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177158, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enchanted Devilsaur Claw", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 100.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 463836, "buy_price": 2319184, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746000170707703, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 3, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Enchanted Devilsaur Claw", "name_ko_KR": "마법 깃든 데빌사우루스 발톱", "name_fr_FR": "Griffe de diablosaure enchantée", "name_de_DE": "Verzauberte Teufelssaurierklaue", "name_zh_CN": "附魔的魔暴龙之爪", "name_es_ES": "Garra de demosaurio encantada", "name_ru_RU": "Зачарованный коготь дьявозавра", "name_it_IT": "Artiglio di Gigantosauro Incantato", "name_pt_PT": "Garra de Demossauro Encantada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lucky Braid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 477829, "buy_price": 2389145, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003999948501587, "flags_1": 524288, "flags_2": 4202496, "flags_3": 0, "flags_4": 4, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 60, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 4, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 40, "inv_type": 12, "quality": 3, "name_en_US": "Lucky Braid", "name_ko_KR": "행운의 노리개", "name_fr_FR": "Tresse porte-bonheur", "name_de_DE": "Glückszopf", "name_zh_CN": "幸运发辫", "name_es_ES": "Trenza de la suerte", "name_ru_RU": "Счастливый локон", "name_it_IT": "Treccia Fortunata", "name_pt_PT": "Trança da Sorte", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177292, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Stone of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9781000018119812, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Stone of Battle", "name_ko_KR": "전투의 마음의 상처 돌", "name_fr_FR": "Pierre de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenkampfstein", "name_zh_CN": "摧心战争之石", "name_es_ES": "Piedra de batalla de lesión cardíaca", "name_ru_RU": "Камень битвы раненого сердца", "name_it_IT": "Pietra della Battaglia del Cuore Ferito", "name_pt_PT": "Pedra de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177293, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Idol of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9818000197410583, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Idol of Battle", "name_ko_KR": "전투의 마음의 상처 우상", "name_fr_FR": "Idole de bataille de la lésion cardiaque", "name_de_DE": "Herzwundenschlachtengötze", "name_zh_CN": "摧心战争雕像", "name_es_ES": "Ídolo de batalla de lesión cardíaca", "name_ru_RU": "Идол битвы раненого сердца", "name_it_IT": "Idolo della Battaglia del Cuore Ferito", "name_pt_PT": "Ídolo de Batalha da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177296, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Idol", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9927999973297119, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Idol", "name_ko_KR": "마음의 상처 수호 우상", "name_fr_FR": "Idole de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigergötze", "name_zh_CN": "摧心防御者雕像", "name_es_ES": "Ídolo defensor de lesión cardíaca", "name_ru_RU": "Идол защитника раненого сердца", "name_it_IT": "Idolo della Difesa del Cuore Ferito", "name_pt_PT": "Ídolo Protetor da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177299, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart-Lesion Defender Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0303000211715698, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 32, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Heart-Lesion Defender Stone", "name_ko_KR": "마음의 상처 수호 돌", "name_fr_FR": "Pierre de défenseur de la lésion cardiaque", "name_de_DE": "Herzwundenverteidigerstein", "name_zh_CN": "摧心防御者之石", "name_es_ES": "Piedra defensora de lesión cardíaca", "name_ru_RU": "Камень защитника раненого сердца", "name_it_IT": "Pietra della Difesa del Cuore Ferito", "name_pt_PT": "Pedra Defensora da Lesão Cardíaca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0413000583648682, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Rage", "name_ko_KR": "분노의 봄비 우상", "name_fr_FR": "Idole de rage de la pluie printanière", "name_de_DE": "Frühlingsregengötze des Zorns", "name_zh_CN": "春雨狂暴雕像", "name_es_ES": "Ídolo de ira de lluvia primaveral", "name_ru_RU": "Идол ярости весеннего дождя", "name_it_IT": "Idolo della Rabbia della Pioggia Primaverile", "name_pt_PT": "Ídolo da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9523000121116638, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Rage", "name_ko_KR": "분노의 봄비 돌", "name_fr_FR": "Pierre de rage de la pluie printanière", "name_de_DE": "Frühlingsregenstein des Zorns", "name_zh_CN": "春雨狂暴之石", "name_es_ES": "Piedra de ira de lluvia primaveral", "name_ru_RU": "Камень ярости весеннего дождя", "name_it_IT": "Pietra della Rabbia della Pioggia Primaverile", "name_pt_PT": "Pedra da Raiva da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9632999897003174, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Destruction", "name_ko_KR": "파괴의 봄비 우상", "name_fr_FR": "Idole de destruction de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Zerstörung", "name_zh_CN": "春雨毁灭雕像", "name_es_ES": "Ídolo de destrucción de lluvia primaveral", "name_ru_RU": "Идол разрушения весеннего дождя", "name_it_IT": "Idolo della Distruzione della Pioggia Primaverile", "name_pt_PT": "Ídolo da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9743000268936157, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Destruction", "name_ko_KR": "파괴의 봄비 돌", "name_fr_FR": "Pierre de destruction de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Zerstörung", "name_zh_CN": "春雨毁灭之石", "name_es_ES": "Piedra de destrucción de lluvia primaveral", "name_ru_RU": "Камень разрушения весеннего дождя", "name_it_IT": "Pietra della Distruzione della Pioggia Primaverile", "name_pt_PT": "Pedra da Destruição da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0154999494552612, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Wisdom", "name_ko_KR": "지혜의 봄비 우상", "name_fr_FR": "Idole de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Weisheit", "name_zh_CN": "春雨智慧雕像", "name_es_ES": "Ídolo de sabiduría de lluvia primaveral", "name_ru_RU": "Идол мудрости весеннего дождя", "name_it_IT": "Idolo della Saggezza della Pioggia Primaverile", "name_pt_PT": "Ídolo da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0264999866485596, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Wisdom", "name_ko_KR": "지혜의 봄비 돌", "name_fr_FR": "Pierre de sagesse de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Weisheit", "name_zh_CN": "春雨智慧之石", "name_es_ES": "Piedra de sabiduría de lluvia primaveral", "name_ru_RU": "Камень мудрости весеннего дождя", "name_it_IT": "Pietra della Saggezza della Pioggia Primaverile", "name_pt_PT": "Pedra da Sabedoria da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177322, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Idol of Durability", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.041200041770935, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Idol of Durability", "name_ko_KR": "내구성의 봄비 우상", "name_fr_FR": "Idole de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregengötze der Haltbarkeit", "name_zh_CN": "春雨坚韧雕像", "name_es_ES": "Ídolo de durabilidad de lluvia primaveral", "name_ru_RU": "Идол прочности весеннего дождя", "name_it_IT": "Idolo dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Ídolo da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177325, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Springrain Stone of Durability", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9520999789237976, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1024, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Springrain Stone of Durability", "name_ko_KR": "내구성의 봄비 돌", "name_fr_FR": "Pierre de durabilité de la pluie printanière", "name_de_DE": "Frühlingsregenstein der Haltbarkeit", "name_zh_CN": "春雨坚韧之石", "name_es_ES": "Piedra de durabilidad de lluvia primaveral", "name_ru_RU": "Камень прочности весеннего дождя", "name_it_IT": "Pietra dell'Integrità della Pioggia Primaverile", "name_pt_PT": "Pedra da Durabilidade da Chuva de Primavera", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177328, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Idol of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.963100016117096, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Idol of Rage", "name_ko_KR": "분노의 흔적추적자 우상", "name_fr_FR": "Idole de rage de cherche-piste", "name_de_DE": "Spurensuchergötze der Wut", "name_zh_CN": "探路者狂暴雕像", "name_es_ES": "Ídolo de ira de batida", "name_ru_RU": "Идол ярости искателя троп", "name_it_IT": "Idolo della Rabbia dello Scopritore", "name_pt_PT": "Ídolo da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177331, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Trailseeker Stone of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0006999969482422, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 4, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Trailseeker Stone of Rage", "name_ko_KR": "분노의 흔적추적자 돌", "name_fr_FR": "Pierre de rage de cherche-piste", "name_de_DE": "Spurensucherstein der Wut", "name_zh_CN": "探路者狂暴之石", "name_es_ES": "Piedra de ira de batida", "name_ru_RU": "Камень ярости искателя троп", "name_it_IT": "Pietra della Rabbia dello Scopritore", "name_pt_PT": "Pedra da Raiva do Buscatrilhas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177335, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Idol of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0154000520706177, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Idol of Destruction", "name_ko_KR": "파괴의 산악현인 우상", "name_fr_FR": "Idole de destruction de sauge des montagnes", "name_de_DE": "Eremitengötze der Zerstörung", "name_zh_CN": "山岳贤者毁灭雕像", "name_es_ES": "Ídolo de destrucción de sabio de la montaña", "name_ru_RU": "Идол разрушения горного мудреца", "name_it_IT": "Idolo della Distruzione dell'Eremita", "name_pt_PT": "Ídolo da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177338, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mountainsage Stone of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0263999700546265, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 128, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mountainsage Stone of Destruction", "name_ko_KR": "파괴의 산악현인 돌", "name_fr_FR": "Pierre de destruction de sauge des montagnes", "name_de_DE": "Eremitenstein der Zerstörung", "name_zh_CN": "山岳贤者毁灭之石", "name_es_ES": "Piedra de destrucción de sabio de la montaña", "name_ru_RU": "Камень разрушения горного мудреца", "name_it_IT": "Pietra della Distruzione dell'Eremita", "name_pt_PT": "Pedra da Destruição do Sábio da Montanha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0484000444412231, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Stone", "name_ko_KR": "안개춤꾼 수호 돌", "name_fr_FR": "Pierre de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigerstein", "name_zh_CN": "烟舞者卫士之石", "name_es_ES": "Piedra defensora de bailarín de la niebla", "name_ru_RU": "Камень защитника танцующего в тумане", "name_it_IT": "Pietra della Difesa della Nebbia Danzante", "name_pt_PT": "Pedra Defensora do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Defender Idol", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9556999802589417, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Defender Idol", "name_ko_KR": "안개춤꾼 수호 우상", "name_fr_FR": "Idole de défenseur de danse-brume", "name_de_DE": "Nebeltänzerverteidigergötze", "name_zh_CN": "烟舞者卫士雕像", "name_es_ES": "Ídolo defensor de bailarín de la niebla", "name_ru_RU": "Идол защитника танцующего в тумане", "name_it_IT": "Idolo della Difesa della Nebbia Danzante", "name_pt_PT": "Ídolo Protetor do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177348, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9894999861717224, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 우상", "name_fr_FR": "Idole de sagesse de danse-brume", "name_de_DE": "Nebeltänzergötze der Weisheit", "name_zh_CN": "烟舞者智慧雕像", "name_es_ES": "Ídolo de sabiduría de bailarín de la niebla", "name_ru_RU": "Идол мудрости танцующего в тумане", "name_it_IT": "Idolo della Saggezza della Nebbia Danzante", "name_pt_PT": "Ídolo da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177352, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0041999816894531, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Wisdom", "name_ko_KR": "지혜의 안개춤꾼 돌", "name_fr_FR": "Pierre de sagesse de danse-brume", "name_de_DE": "Nebeltänzerstein der Weisheit", "name_zh_CN": "烟舞者智慧之石", "name_es_ES": "Piedra de sabiduría de bailarín de la niebla", "name_ru_RU": "Камень мудрости танцующего в тумане", "name_it_IT": "Pietra della Saggezza della Nebbia Danzante", "name_pt_PT": "Pedra da Sabedoria do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177355, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Idol of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0152000188827515, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Idol of Rage", "name_ko_KR": "분노의 안개춤꾼 우상", "name_fr_FR": "Idole de rage de danse-brume", "name_de_DE": "Nebeltänzergötze der Wut", "name_zh_CN": "烟舞者狂暴雕像", "name_es_ES": "Ídolo de ira de bailarín de la niebla", "name_ru_RU": "Идол ярости танцующего в тумане", "name_it_IT": "Idolo della Rabbia della Nebbia Danzante", "name_pt_PT": "Ídolo da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistdancer Stone of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0298999547958374, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 512, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Mistdancer Stone of Rage", "name_ko_KR": "분노의 안개춤꾼 돌", "name_fr_FR": "Pierre de rage de danse-brume", "name_de_DE": "Nebeltänzerstein der Wut", "name_zh_CN": "烟舞者狂暴之石", "name_es_ES": "Piedra de ira de bailarín de la niebla", "name_ru_RU": "Камень ярости танцующего в тумане", "name_it_IT": "Pietra della Rabbia della Nebbia Danzante", "name_pt_PT": "Pedra da Raiva do Dançarino da Névoa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177363, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9710000157356262, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Wisdom", "name_ko_KR": "지혜의 태양영혼 우상", "name_fr_FR": "Idole de sagesse d’âme solaire", "name_de_DE": "Sonnenseelengötze der Weisheit", "name_zh_CN": "阳魂智慧雕像", "name_es_ES": "Ídolo de sabiduría de alma solar", "name_ru_RU": "Идол мудрости солнечной души", "name_it_IT": "Idolo della Saggezza dell'Anima Luminosa", "name_pt_PT": "Ídolo da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177366, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9819999933242798, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Wisdom", "name_ko_KR": "지혜의 태양영혼 돌", "name_fr_FR": "Pierre de sagesse d’âme solaire", "name_de_DE": "Sonnenseelenstein der Weisheit", "name_zh_CN": "阳魂智慧之石", "name_es_ES": "Piedra de sabiduría de alma solar", "name_ru_RU": "Камень мудрости солнечной души", "name_it_IT": "Pietra della Saggezza dell'Anima Luminosa", "name_pt_PT": "Pedra da Sabedoria Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177375, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Stone of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0151000022888184, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Stone of Battle", "name_ko_KR": "전투의 태양영혼 돌", "name_fr_FR": "Pierre de bataille d’âme solaire", "name_de_DE": "Sonnenseelenkampfstein", "name_zh_CN": "阳魂战争之石", "name_es_ES": "Piedra de batalla de alma solar", "name_ru_RU": "Камень битвы солнечной души", "name_it_IT": "Pietra della Battaglia dell'Anima Luminosa", "name_pt_PT": "Pedra de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Idol of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0188000202178955, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Idol of Battle", "name_ko_KR": "전투의 태양영혼 우상", "name_fr_FR": "Idole de bataille d’âme solaire", "name_de_DE": "Sonnenseelenschlachtengötze", "name_zh_CN": "阳魂战争雕像", "name_es_ES": "Ídolo de batalla de alma solar", "name_ru_RU": "Идол битвы солнечной души", "name_it_IT": "Idolo della Battaglia dell'Anima Luminosa", "name_pt_PT": "Ídolo de Batalha Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177379, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Idol", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9562000036239624, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Idol", "name_ko_KR": "태양영혼 수호 우상", "name_fr_FR": "Idole de défenseur d’âme solaire", "name_de_DE": "Sonnenseelenverteidigergötze", "name_zh_CN": "阳魂防御者雕像", "name_es_ES": "Ídolo defensor de alma solar", "name_ru_RU": "Идол защитника солнечной души", "name_it_IT": "Idolo della Difesa dell'Anima Luminosa", "name_pt_PT": "Ídolo Protetor Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177382, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunsoul Defender Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.967199981212616, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Sunsoul Defender Stone", "name_ko_KR": "태양영혼 수호 돌", "name_fr_FR": "Pierre de défenseur d’âme solaire", "name_de_DE": "Sonnenseelenverteidigerstein", "name_zh_CN": "阳魂防御者之石", "name_es_ES": "Piedra defensora de alma solar", "name_ru_RU": "Камень защитника солнечной души", "name_it_IT": "Pietra della Difesa dell'Anima Luminosa", "name_pt_PT": "Pedra Defensora Almassol", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177384, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9746000170707703, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Destruction", "name_ko_KR": "파괴의 어울림 우상", "name_fr_FR": "Idole de destruction communautaire", "name_de_DE": "Beichtgötze der Zerstörung", "name_zh_CN": "共济毁灭雕像", "name_es_ES": "Ídolo de destrucción de fraternidad", "name_ru_RU": "Общинный идол разрушения", "name_it_IT": "Idolo della Distruzione della Comunione", "name_pt_PT": "Ídolo da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177387, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9855999946594238, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Destruction", "name_ko_KR": "파괴의 어울림 돌", "name_fr_FR": "Pierre de destruction communautaire", "name_de_DE": "Beichtstein der Zerstörung", "name_zh_CN": "共济毁灭之石", "name_es_ES": "Piedra de destrucción de fraternidad", "name_ru_RU": "Общинный камень разрушения", "name_it_IT": "Pietra della Distruzione della Comunione", "name_pt_PT": "Pedra da Destruição Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Idol of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9965999722480774, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Idol of Wisdom", "name_ko_KR": "지혜의 어울림 우상", "name_fr_FR": "Idole de sagesse communautaire", "name_de_DE": "Beichtgötze der Weisheit", "name_zh_CN": "共济智慧雕像", "name_es_ES": "Ídolo de sabiduría de fraternidad", "name_ru_RU": "Общинный идол мудрости", "name_it_IT": "Idolo della Saggezza della Comunione", "name_pt_PT": "Ídolo da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177393, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Communal Stone of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.007599949836731, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 16, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Communal Stone of Wisdom", "name_ko_KR": "지혜의 어울림 돌", "name_fr_FR": "Pierre de sagesse communautaire", "name_de_DE": "Beichtstein der Weisheit", "name_zh_CN": "共济智慧之石", "name_es_ES": "Piedra de sabiduría de fraternidad", "name_ru_RU": "Общинный камень мудрости", "name_it_IT": "Pietra della Saggezza della Comunione", "name_pt_PT": "Pedra da Sabedoria Comunal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177398, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Idol of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9524000287055969, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Idol of Rage", "name_ko_KR": "분노의 빛삼킴 우상", "name_fr_FR": "Idole de rage mangelumière", "name_de_DE": "Lichttrinkergötze der Wut", "name_zh_CN": "浅酌者狂暴雕像", "name_es_ES": "Ídolo de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет идол ярости", "name_it_IT": "Idolo della Rabbia del Divoraluce", "name_pt_PT": "Ídolo da Raiva do Sorve-luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177401, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lightdrinker Stone of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9634000062942505, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 8, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Lightdrinker Stone of Rage", "name_ko_KR": "분노의 빛삼킴 돌", "name_fr_FR": "Pierre de rage mangelumière", "name_de_DE": "Lichttrinkerstein der Wut", "name_zh_CN": "浅酌者狂暴之石", "name_es_ES": "Piedra de ira de bebedor de luz", "name_ru_RU": "Поглощающий свет камень ярости", "name_it_IT": "Pietra della Rabbia del Divoraluce", "name_pt_PT": "Pedra da Raiva do Sorve-luz", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177407, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9854999780654907, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Rage", "name_ko_KR": "분노의 물결이야기꾼 우상", "name_fr_FR": "Idole de rage de parle-flot", "name_de_DE": "Wellensprechergötze des Zorns", "name_zh_CN": "溪语者狂暴雕像", "name_es_ES": "Ídolo de ira de hablarríos", "name_ru_RU": "Идол ярости говорящего с родником", "name_it_IT": "Idolo della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177410, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Rage", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9965000152587891, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Rage", "name_ko_KR": "분노의 물결이야기꾼 돌", "name_fr_FR": "Pierre de rage de parle-flot", "name_de_DE": "Wellensprecherstein des Zorns", "name_zh_CN": "溪语者狂暴之石", "name_es_ES": "Piedra de ira de hablarríos", "name_ru_RU": "Камень ярости говорящего с родником", "name_it_IT": "Pietra della Rabbia del Ruscello Sussurrante", "name_pt_PT": "Pedra da Raiva do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177412, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0303000211715698, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 우상", "name_fr_FR": "Idole de destruction de parle-flot", "name_de_DE": "Wellensprechergötze der Zerstörung", "name_zh_CN": "溪语者毁灭雕像", "name_es_ES": "Ídolo de destrucción de hablarríos", "name_ru_RU": "Идол разрушения говорящего с родником", "name_it_IT": "Idolo della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177415, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0413000583648682, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Destruction", "name_ko_KR": "파괴의 물결이야기꾼 돌", "name_fr_FR": "Pierre de destruction de parle-flot", "name_de_DE": "Wellensprecherstein der Zerstörung", "name_zh_CN": "溪语者毁灭之石", "name_es_ES": "Piedra de destrucción de hablarríos", "name_ru_RU": "Камень разрушения говорящего с родником", "name_it_IT": "Pietra della Distruzione del Ruscello Sussurrante", "name_pt_PT": "Pedra da Destruição do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177421, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Idol of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9632999897003174, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Idol of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 우상", "name_fr_FR": "Idole de sagesse de parle-flot", "name_de_DE": "Wellensprechergötze der Weisheit", "name_zh_CN": "溪语者智慧雕像", "name_es_ES": "Ídolo de sabiduría de hablarríos", "name_ru_RU": "Идол мудрости говорящего с родником", "name_it_IT": "Idolo della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Ídolo da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Streamtalker Stone of Wisdom", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9743000268936157, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 64, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Streamtalker Stone of Wisdom", "name_ko_KR": "지혜의 물결이야기꾼 돌", "name_fr_FR": "Pierre de sagesse de parle-flot", "name_de_DE": "Wellensprecherstein der Weisheit", "name_zh_CN": "溪语者智慧之石", "name_es_ES": "Piedra de sabiduría de hablarríos", "name_ru_RU": "Камень мудрости говорящего с родником", "name_it_IT": "Pietra della Saggezza del Ruscello Sussurrante", "name_pt_PT": "Pedra da Sabedoria do Falarroio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177575, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Demon Trophy", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9932000041007996, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Demon Trophy", "name_ko_KR": "악마 상징물", "name_fr_FR": "Trophée de démon", "name_de_DE": "Dämonentrophäe", "name_zh_CN": "恶魔战利品", "name_es_ES": "Trofeo demoníaco", "name_ru_RU": "Демонический трофей", "name_it_IT": "Trofeo Demoniaco", "name_pt_PT": "Troféu do Demônio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177576, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of Demonic Fire", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9969000220298767, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 2048, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Charm of Demonic Fire", "name_ko_KR": "악마의 불 부적", "name_fr_FR": "Charme de feu démoniaque", "name_de_DE": "Glücksbringer des Dämonenfeuers", "name_zh_CN": "魔火护符", "name_es_ES": "Talismán de fuego demoníaco", "name_ru_RU": "Талисман демонического огня", "name_it_IT": "Talismano del Fuoco Demoniaco", "name_pt_PT": "Patuá do Fogo Demoníaco", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177584, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Idol of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0262000560760498, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Idol of Destruction", "name_ko_KR": "파괴의 지옥영혼 우상", "name_fr_FR": "Idole de destruction gangrâme", "name_de_DE": "Teufelsseelengötze der Zerstörung", "name_zh_CN": "邪魂毁灭雕像", "name_es_ES": "Ídolo de destrucción de alma vil", "name_ru_RU": "Идол разрушения оскверненной души", "name_it_IT": "Idolo della Distruzione della Vilanima", "name_pt_PT": "Ídolo da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177587, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Felsoul Stone of Destruction", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0372999906539917, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 256, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Felsoul Stone of Destruction", "name_ko_KR": "파괴의 지옥영혼 돌", "name_fr_FR": "Pierre de destruction gangrâme", "name_de_DE": "Teufelsseelenstein der Zerstörung", "name_zh_CN": "邪魂毁灭之石", "name_es_ES": "Piedra de destrucción de alma vil", "name_ru_RU": "Камень разрушения оскверненной души", "name_it_IT": "Pietra della Distruzione della Vilanima", "name_pt_PT": "Pedra da Destruição Almavil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177596, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Idol", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 0.9966999888420105, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Idol", "name_ko_KR": "맹세의 수호 우상", "name_fr_FR": "Idole de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigergötze", "name_zh_CN": "誓约者的防御者雕像", "name_es_ES": "Ídolo defensor juramentado", "name_ru_RU": "Идол защитника принесенной клятвы", "name_it_IT": "Idolo della Difesa del Giuramento Leale", "name_pt_PT": "Ídolo Protetor do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177599, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Defender Stone", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": 40, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0077999830245972, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Defender Stone", "name_ko_KR": "맹세의 수호 돌", "name_fr_FR": "Pierre de défenseur de jureur", "name_de_DE": "Eidschwörerverteidigerstein", "name_zh_CN": "誓约者的防御者之石", "name_es_ES": "Piedra defensora juramentada", "name_ru_RU": "Камень защитника принесенной клятвы", "name_it_IT": "Pietra della Difesa del Giuramento Leale", "name_pt_PT": "Pedra Defensora do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177602, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Idol of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 32, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0188000202178955, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Idol of Battle", "name_ko_KR": "전투의 맹세 우상", "name_fr_FR": "Idole de bataille de jureur", "name_de_DE": "Eidschwörerschlachtengötze", "name_zh_CN": "誓约者战争雕像", "name_es_ES": "Ídolo de batalla juramentado", "name_ru_RU": "Идол битвы принесенной клятвы", "name_it_IT": "Idolo della Battaglia del Giuramento Leale", "name_pt_PT": "Ídolo de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177603, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oathsworn Stone of Battle", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 49, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 0.10000000149011612, "unk_1": 1.0224000215530396, "flags_1": 32768, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 68, "class_mask": 1, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Oathsworn Stone of Battle", "name_ko_KR": "전투의 맹세 돌", "name_fr_FR": "Pierre de bataille de jureur", "name_de_DE": "Eidschwörerkampfstein", "name_zh_CN": "誓约者战争之石", "name_es_ES": "Piedra de batalla juramentada", "name_ru_RU": "Камень битвы принесенной клятвы", "name_it_IT": "Pietra della Battaglia del Giuramento Leale", "name_pt_PT": "Pedra de Batalha do Jurado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177657, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overflowing Ember Mirror", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 515076, "buy_price": 2575382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0264999866485596, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Overflowing Ember Mirror", "name_ko_KR": "넘치는 잿불의 거울", "name_fr_FR": "Miroir de braise débordant", "name_de_DE": "Überquellender Glutspiegel", "name_zh_CN": "满溢灰烬之镜", "name_es_ES": "Espejo de ascuas desbordante", "name_ru_RU": "Зеркало изобильных углей", "name_it_IT": "Specchio Traboccante di Braci", "name_pt_PT": "Espelho da Brasa Vertente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 177813, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hopebreaker's Badge", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 408163, "buy_price": 2040818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.963699996471405, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 100, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 2, "name_en_US": "Hopebreaker's Badge", "name_ko_KR": "희망파괴자의 훈장", "name_fr_FR": "Écusson de brisespoir", "name_de_DE": "Abzeichen des Hoffnungsbrechers", "name_zh_CN": "灭愿者徽章", "name_es_ES": "Distintivo de rompeesperanzas", "name_ru_RU": "Жетон сокрушителя надежды", "name_it_IT": "Distintivo del Frangifede", "name_pt_PT": "Distintivo do Quebrafé", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178168, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmaul Ritual Stone", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 40, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 3731, "buy_price": 18658, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 524288, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 12, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 3, "name_en_US": "Darkmaul Ritual Stone", "name_ko_KR": "암흑망치 의식용 돌", "name_fr_FR": "Pierre rituelle cognenuit", "name_de_DE": "Finsterbrecherritualstein", "name_zh_CN": "暗槌仪式石", "name_es_ES": "Piedra ritual de Magulladura Oscura", "name_ru_RU": "Ритуальный камень Темного Молота", "name_it_IT": "Pietra Rituale dei Maglioscuro", "name_pt_PT": "Pedra Ritual de Malhonegro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178298, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 550688, "buy_price": 2753444, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377999544143677, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Insignia of Alacrity", "name_ko_KR": "죄 많은 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant impénitent", "name_de_DE": "Inbrunstinsigne des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante pecaminoso", "name_ru_RU": "Знак расторопности грешного претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Peccatore", "name_pt_PT": "Insígnia de Diligência do Aspirante Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178334, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542729, "buy_price": 2713646, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0227999687194824, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Emblem", "name_ko_KR": "죄 많은 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant impénitent", "name_de_DE": "Emblem des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的纹章", "name_es_ES": "Emblema de aspirante pecaminoso", "name_ru_RU": "Эмблема грешного претендента", "name_it_IT": "Emblema del Pretendente Peccatore", "name_pt_PT": "Emblema do Aspirante Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178386, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 720269, "buy_price": 3601348, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9930999875068665, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Insignia of Alacrity", "name_ko_KR": "죄 많은 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur impénitent", "name_de_DE": "Inbrunstinsigne des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador pecaminoso", "name_ru_RU": "Знак расторопности грешного гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Peccatore", "name_pt_PT": "Insígnia de Diligência do Gladiador Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178447, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 741810, "buy_price": 3709051, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0227999687194824, "flags_1": 528384, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Emblem", "name_ko_KR": "죄 많은 검투사의 문장", "name_fr_FR": "Emblème du gladiateur impénitent", "name_de_DE": "Emblem des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的纹章", "name_es_ES": "Emblema de Gladiador pecaminoso", "name_ru_RU": "Эмблема грешного гладиатора", "name_it_IT": "Emblema del Gladiatore Peccatore", "name_pt_PT": "Emblema do Gladiador Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 178708, "race_mask": 18446744073709551615, "desc": "This strange critter has a rather unsettling habit of staring at you while you eat.", "pad2": "", "pad1": "", "pad0": "", "name": "Unbound Changeling", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532859, "buy_price": 2664298, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0041999816894531, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unbound Changeling", "name_ko_KR": "속박 풀린 변신수", "name_fr_FR": "Changelin délié", "name_de_DE": "Unbändiger Wechselbalg", "name_zh_CN": "无羁拟态者", "name_es_ES": "Cambiante desatado", "name_ru_RU": "Освобожденный подменыш", "name_it_IT": "Servan Svincolato", "name_pt_PT": "Metamorfo Liberto", "on_use": false, "id_encounter": 2400, "id_journal_instance": 1184, "id_map": 2290, "instance_type": 1}, {"id": 178715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mistcaller Ocarina", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507442, "buy_price": 2537212, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563000202178955, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Mistcaller Ocarina", "name_ko_KR": "미스트콜러 오카리나", "name_fr_FR": "Ocarina de mandebrume", "name_de_DE": "Okarina der Nebelruferin", "name_zh_CN": "唤雾者的陶笛", "name_es_ES": "Ocarina de Clamaneblina", "name_ru_RU": "Окарина Призывательницы Туманов", "name_it_IT": "Ocarina dell'Evocanebbie", "name_pt_PT": "Ocarina da Chamabruma", "on_use": false, "id_encounter": 2402, "id_journal_instance": 1184, "id_map": 2290, "instance_type": 1}, {"id": 178742, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Flayedwing Toxin", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 521026, "buy_price": 2605132, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9818999767303467, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Bottled Flayedwing Toxin", "name_ko_KR": "병에 든 가죽뜯깃 독소", "name_fr_FR": "Toxine d’aile-écorchée en bouteille", "name_de_DE": "Abgefülltes Fledderflügeltoxin", "name_zh_CN": "瓶装绽翼兽毒素", "name_es_ES": "Toxina de alacortada embotellada", "name_ru_RU": "Токсин костекрыла в бутылке", "name_it_IT": "Tossina di Alalacera Imbottigliata", "name_pt_PT": "Toxina de Esfolasa Engarrafada", "on_use": true, "id_encounter": 2391, "id_journal_instance": 1182, "id_map": 2286, "instance_type": 1}, {"id": 178751, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spare Meat Hook", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 552652, "buy_price": 2763260, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0414999723434448, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Spare Meat Hook", "name_ko_KR": "예비용 고기 갈고리", "name_fr_FR": "Crochet à viande de rechange", "name_de_DE": "Ersatzfleischerhaken", "name_zh_CN": "备用肉钩", "name_es_ES": "Gancho de carnicero de repuesto", "name_ru_RU": "Запасной мясницкий крюк", "name_it_IT": "Gancio per Carne di Riserva", "name_pt_PT": "Gancho de Carne Sobressalente", "on_use": true, "id_encounter": 2392, "id_journal_instance": 1182, "id_map": 2286, "instance_type": 1}, {"id": 178769, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Infinitely Divisible Ooze", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 201677, "buy_price": 1008388, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034000039100647, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Infinitely Divisible Ooze", "name_ko_KR": "무한하게 분열하는 수액", "name_fr_FR": "Limon miscible à l’infini", "name_de_DE": "Endlos teilbarer Schleim", "name_zh_CN": "无尽切分污泥", "name_es_ES": "Moco infinitamente divisible", "name_ru_RU": "Бесконечно разделяющаяся слизь", "name_it_IT": "Melma Infinitamente Divisibile", "name_pt_PT": "Gosma Infinitamente Divisível", "on_use": false, "id_encounter": 2404, "id_journal_instance": 1183, "id_map": 2289, "instance_type": 1}, {"id": 178770, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Slimy Consumptive Organ", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 550635, "buy_price": 2753178, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0376999378204346, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Slimy Consumptive Organ", "name_ko_KR": "끈적끈적한 소모성 장기", "name_fr_FR": "Organe phtisique visqueux", "name_de_DE": "Schleimiges zehrendes Organ", "name_zh_CN": "粘滑的痨病器官", "name_es_ES": "Órgano consuntivo baboso", "name_ru_RU": "Осклизлый переваривающий орган", "name_it_IT": "Organo Tisico Viscido", "name_pt_PT": "Órgão Devorador Gosmento", "on_use": true, "id_encounter": 2419, "id_journal_instance": 1183, "id_map": 2289, "instance_type": 1}, {"id": 178771, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Phial of Putrefaction", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 552546, "buy_price": 2762730, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Phial of Putrefaction", "name_ko_KR": "부패의 약병", "name_fr_FR": "Flasque de putréfaction", "name_de_DE": "Phiole der Fäulnis", "name_zh_CN": "腐质之瓶", "name_es_ES": "Ampolla de putrefacción", "name_ru_RU": "Флакон тлетворной массы", "name_it_IT": "Fiala della Putrefazione", "name_pt_PT": "Frasco de Putrefação", "on_use": false, "id_encounter": 2403, "id_journal_instance": 1183, "id_map": 2289, "instance_type": 1}, {"id": 178772, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Satchel of Misbegotten Minions", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 203823, "buy_price": 1019116, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0449999570846558, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Satchel of Misbegotten Minions", "name_ko_KR": "그릇된 하수인 주머니", "name_fr_FR": "Sacoche de serviteurs défectueux", "name_de_DE": "Säckchen der scheußlichen Diener", "name_zh_CN": "卑贱爪牙挎包", "name_es_ES": "Cartera de esbirros desdichados", "name_ru_RU": "Сумка негодных прислужников", "name_it_IT": "Borsa dei Servitori Sbagliati", "name_pt_PT": "Algibeira dos Lacaios Espúrios", "on_use": false, "id_encounter": 2392, "id_journal_instance": 1182, "id_map": 2286, "instance_type": 1}, {"id": 178783, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Siphoning Phylactery Shard", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536892, "buy_price": 2684462, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118000507354736, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Siphoning Phylactery Shard", "name_ko_KR": "흡수하는 성물함 조각", "name_fr_FR": "Éclat de phylactère drainant", "name_de_DE": "Entziehender Phylakteriumsplitter", "name_zh_CN": "虹吸护命匣碎片", "name_es_ES": "Fragmento de filacteria succionadora", "name_ru_RU": "Вытягивающий осколок филактерии", "name_it_IT": "Scheggia del Filatterio Prosciugante", "name_pt_PT": "Fragmento de Filactério Drenante", "on_use": true, "id_encounter": 2396, "id_journal_instance": 1182, "id_map": 2286, "instance_type": 1}, {"id": 178808, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Viscera of Coalesced Hatred", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 546549, "buy_price": 2732749, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0299999713897705, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Viscera of Coalesced Hatred", "name_ko_KR": "응축된 증오의 내장", "name_fr_FR": "Viscères de haine amalgamée", "name_de_DE": "Eingeweide des verdichteten Hasses", "name_zh_CN": "凝恨脏器", "name_es_ES": "Vísceras de odio fusionado", "name_ru_RU": "Внутренности сгустка ненависти", "name_it_IT": "Viscere d'Odio Condensato", "name_pt_PT": "Vísceras do Ódio Coalescido", "on_use": false, "id_encounter": 2401, "id_journal_instance": 1187, "id_map": 2293, "instance_type": 1}, {"id": 178809, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulletting Ruby", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 509458, "buy_price": 2547294, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.960099995136261, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Soulletting Ruby", "name_ko_KR": "영혼 방출의 루비", "name_fr_FR": "Rubis d’effusion d’âmes", "name_de_DE": "Seelenlassender Rubin", "name_zh_CN": "释魂红玉", "name_es_ES": "Rubí de extracción de almas", "name_ru_RU": "Рубин иссечения душ", "name_it_IT": "Rubino del Liberanime", "name_pt_PT": "Rubi Sangralma", "on_use": true, "id_encounter": 2389, "id_journal_instance": 1187, "id_map": 2293, "instance_type": 1}, {"id": 178810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Spectral Essence", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 511422, "buy_price": 2557110, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638000130653381, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Spectral Essence", "name_ko_KR": "혼령의 정수 약병", "name_fr_FR": "Fiole d’essence spectrale", "name_de_DE": "Phiole der spektralen Essenz", "name_zh_CN": "鬼灵精华之瓶", "name_es_ES": "Vial de esencia espectral", "name_ru_RU": "Флакон с призрачной сущностью", "name_it_IT": "Fiala di Essenza Spettrale", "name_pt_PT": "Ampola de Essência Espectral", "on_use": true, "id_encounter": 2397, "id_journal_instance": 1187, "id_map": 2293, "instance_type": 1}, {"id": 178811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grim Codex", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 513385, "buy_price": 2566927, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Grim Codex", "name_ko_KR": "음울한 전서", "name_fr_FR": "Codex sinistre", "name_de_DE": "Finsterer Kodex", "name_zh_CN": "阴森法典", "name_es_ES": "Códice siniestro", "name_ru_RU": "Мрачный кодекс", "name_it_IT": "Codice Tetro", "name_pt_PT": "Códice Sinistro", "on_use": true, "id_encounter": 2417, "id_journal_instance": 1187, "id_map": 2293, "instance_type": 1}, {"id": 178825, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pulsating Stoneheart", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540659, "buy_price": 2703299, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0189000368118286, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Pulsating Stoneheart", "name_ko_KR": "고동치는 돌심장", "name_fr_FR": "Cœur-de-pierre palpitant", "name_de_DE": "Pulsierendes Steinherz", "name_zh_CN": "跳动的石心", "name_es_ES": "Corazón de piedra palpitante", "name_ru_RU": "Пульсирующее каменное сердце", "name_it_IT": "Cuordipietra Pulsante", "name_pt_PT": "Coração de Pedra Pulsante", "on_use": true, "id_encounter": 2387, "id_journal_instance": 1185, "id_map": 2287, "instance_type": 1}, {"id": 178826, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sunblood Amethyst", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 204622, "buy_price": 1023114, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0491000413894653, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sunblood Amethyst", "name_ko_KR": "태양피 자수정", "name_fr_FR": "Améthyste solsang", "name_de_DE": "Sonnenblutamethyst", "name_zh_CN": "阳血紫晶", "name_es_ES": "Amatista sangresol", "name_ru_RU": "Аметист крови солнца", "name_it_IT": "Ametista di Sanguesolare", "name_pt_PT": "Ametista Sanguessol", "on_use": true, "id_encounter": 2411, "id_journal_instance": 1185, "id_map": 2287, "instance_type": 1}, {"id": 178849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overflowing Anima Cage", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 187224, "buy_price": 936124, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9599000215530396, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Overflowing Anima Cage", "name_ko_KR": "넘쳐흐르는 령 우리", "name_fr_FR": "Cage d’anima débordante", "name_de_DE": "Überfließender Animakäfig", "name_zh_CN": "充盈的心能牢狱", "name_es_ES": "Jaula de ánima desbordante", "name_ru_RU": "Переполненная клетка с анимой", "name_it_IT": "Gabbia dell'Animum Traboccante", "name_pt_PT": "Jaula de Ânima Transbordante", "on_use": true, "id_encounter": 2415, "id_journal_instance": 1189, "id_map": 2284, "instance_type": 1}, {"id": 178850, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lingering Sunmote", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 511263, "buy_price": 2556315, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Lingering Sunmote", "name_ko_KR": "잔존하는 태양티끌", "name_fr_FR": "Granule de soleil rémanent", "name_de_DE": "Verbleibendes Sonnenpartikel", "name_zh_CN": "残留的太阳之尘", "name_es_ES": "Mota de sol persistente", "name_ru_RU": "Стойкая частица солнца", "name_it_IT": "Granulo del Sole Persistente", "name_pt_PT": "Partícula de Sol Duradoura", "on_use": true, "id_encounter": 2421, "id_journal_instance": 1189, "id_map": 2284, "instance_type": 1}, {"id": 178861, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Decanter of Anima-Charged Winds", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 546762, "buy_price": 2733811, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.030400037765503, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Decanter of Anima-Charged Winds", "name_ko_KR": "령으로 충만한 바람 유리병", "name_fr_FR": "Carafe des vents chargés d’anima", "name_de_DE": "Dekanter der animageladenen Winde", "name_zh_CN": "心能充能的缕风瓶", "name_es_ES": "Decantador de vientos cargados de ánima", "name_ru_RU": "Декантер заряженных анимой ветров", "name_it_IT": "Caraffa di Venti Carichi d'Animum", "name_pt_PT": "Decantador dos Ventos Carregados de Ânima", "on_use": false, "id_encounter": 2407, "id_journal_instance": 1189, "id_map": 2284, "instance_type": 1}, {"id": 178862, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bladedancer's Armor Kit", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 548725, "buy_price": 2743627, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.03410005569458, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Bladedancer's Armor Kit", "name_ko_KR": "칼춤꾼의 방어구 강화도구", "name_fr_FR": "Renfort d’armure de danse-lame", "name_de_DE": "Rüstungsset des Klingentänzers", "name_zh_CN": "刃舞者的护甲片", "name_es_ES": "Refuerzo para armadura de danzante de espadas", "name_ru_RU": "Накладки для доспехов танцующего с клинком", "name_it_IT": "Potenziamento d'Armatura del Danzalame", "name_pt_PT": "Kit de Armadura do Dançarino da Lâmina", "on_use": true, "id_encounter": 2407, "id_journal_instance": 1189, "id_map": 2284, "instance_type": 1}, {"id": 179331, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood-Spattered Scale", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542835, "buy_price": 2714177, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0230000019073486, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Blood-Spattered Scale", "name_ko_KR": "피로 칠갑된 비늘", "name_fr_FR": "Écaille maculée de sang", "name_de_DE": "Blutbespritzte Schuppe", "name_zh_CN": "溅血之鳞", "name_es_ES": "Escama salpicada de sangre", "name_ru_RU": "Забрызганная кровью чешуйка", "name_it_IT": "Scaglia Schizzata di Sangue", "name_pt_PT": "Escama Ensaguentada", "on_use": true, "id_encounter": 2408, "id_journal_instance": 1188, "id_map": 2291, "instance_type": 1}, {"id": 179342, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overwhelming Power Crystal", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 525218, "buy_price": 2626092, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989799976348877, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Overwhelming Power Crystal", "name_ko_KR": "압도적인 마력의 수정", "name_fr_FR": "Cristal de puissance accablante", "name_de_DE": "Überwältigender Machtkristall", "name_zh_CN": "压制能量水晶", "name_es_ES": "Cristal de poder sobrecogedor", "name_ru_RU": "Переполненный энергией кристалл", "name_it_IT": "Cristallo Energetico Opprimente", "name_pt_PT": "Cristal de Poder Avassalador", "on_use": true, "id_encounter": 2409, "id_journal_instance": 1188, "id_map": 2291, "instance_type": 1}, {"id": 179350, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inscrutable Quantum Device", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540766, "buy_price": 2703830, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0190999507904053, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Inscrutable Quantum Device", "name_ko_KR": "불가해한 양자 장치", "name_fr_FR": "Appareil quantique insondable", "name_de_DE": "Unergründliches Quantengerät", "name_zh_CN": "不可思议的量子装置", "name_es_ES": "Dispositivo cuántico inescrutable", "name_ru_RU": "Непостижимое квантовое устройство", "name_it_IT": "Dispositivo Quantico Imperscrutabile", "name_pt_PT": "Dispositivo Quântico Inescrutável", "on_use": true, "id_encounter": 2398, "id_journal_instance": 1188, "id_map": 2291, "instance_type": 1}, {"id": 179356, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowgrasp Totem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 513438, "buy_price": 2567192, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Shadowgrasp Totem", "name_ko_KR": "어둠손아귀 토템", "name_fr_FR": "Totem d’emprise de l’ombre", "name_de_DE": "Schattengrifftotem", "name_zh_CN": "影握图腾", "name_es_ES": "Tótem de agarre sombrío", "name_ru_RU": "Тотем хватки смерти", "name_it_IT": "Totem della Stretta d'Ombra", "name_pt_PT": "Totem da Garra de Sombra", "on_use": true, "id_encounter": 2410, "id_journal_instance": 1188, "id_map": 2291, "instance_type": 1}, {"id": 179927, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glowing Endmire Stinger", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6446, "buy_price": 32234, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9896000027656555, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 26, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Glowing Endmire Stinger", "name_ko_KR": "빛나는 끝수렁 독침", "name_fr_FR": "Dard luminescent du marais des Affres", "name_de_DE": "Leuchtender Endmoraststachel", "name_zh_CN": "发光的末日迷沼钉刺", "name_es_ES": "Aguijón del Cenagal del Fin resplandeciente", "name_ru_RU": "Светящееся жало из Гиблотопи", "name_it_IT": "Pungitore di Ultimo Limo Luminoso", "name_pt_PT": "Aguilhoador Brilhante do Charco Derradeiro", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 180116, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overcharged Anima Battery", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 531108, "buy_price": 2655543, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Overcharged Anima Battery", "name_ko_KR": "과충전된 령 전지", "name_fr_FR": "Accumulateur d’anima surchargé", "name_de_DE": "Überladene Animabatterie", "name_zh_CN": "过载的心能电池", "name_es_ES": "Batería de ánima sobrecargada", "name_ru_RU": "Перегруженный аккумулятор анимы", "name_it_IT": "Batteria di Animum Sovraccaricata", "name_pt_PT": "Bateria Anímica Sobrecarregada", "on_use": true, "id_encounter": 2416, "id_journal_instance": 1186, "id_map": 2285, "instance_type": 1}, {"id": 180117, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empyreal Ordnance", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 49, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 195943, "buy_price": 979717, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Empyreal Ordnance", "name_ko_KR": "최고천의 폭발물", "name_fr_FR": "Munition empyréenne", "name_de_DE": "Himmlische Munition", "name_zh_CN": "天域军火", "name_es_ES": "Artillería empírea", "name_ru_RU": "Небесный снаряд", "name_it_IT": "Ordigno Empireo", "name_pt_PT": "Armamento Empíreo", "on_use": true, "id_encounter": 2414, "id_journal_instance": 1186, "id_map": 2285, "instance_type": 1}, {"id": 180118, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Anima Field Emitter", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 535035, "buy_price": 2675176, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0082999467849731, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Anima Field Emitter", "name_ko_KR": "령의 장 발생기", "name_fr_FR": "Émetteur de champ d’anima", "name_de_DE": "Animafeldemitter", "name_zh_CN": "心能力场发生器", "name_es_ES": "Emisor de campo de ánima", "name_ru_RU": "Излучатель поля анимы", "name_it_IT": "Emettitore del Campo dell'Animum", "name_pt_PT": "Emissor de Campo de Ânima", "on_use": false, "id_encounter": 2414, "id_journal_instance": 1186, "id_map": 2285, "instance_type": 1}, {"id": 180119, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Boon of the Archon", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536945, "buy_price": 2684727, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0118999481201172, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Boon of the Archon", "name_ko_KR": "집정관의 은혜", "name_fr_FR": "Faveur de l’Archonte", "name_de_DE": "Gunst der Archon", "name_zh_CN": "执政官的恩赐", "name_es_ES": "Bendición de la Arconte", "name_ru_RU": "Благословение Архонта", "name_it_IT": "Dono dell'Arconte", "name_pt_PT": "Dom da Arconte", "on_use": false, "id_encounter": 2412, "id_journal_instance": 1186, "id_map": 2285, "instance_type": 1}, {"id": 180827, "race_mask": 18446744073709551615, "desc": "A warhorn made of bone. Runes are inscribed along the stone fittings.", "pad2": "", "pad1": "", "pad0": "", "name": "Maldraxxian Warhorn", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 407653, "buy_price": 2038269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9749000072479248, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Maldraxxian Warhorn", "name_ko_KR": "말드락시 전쟁 뿔피리", "name_fr_FR": "Cor de guerre maldraxxi", "name_de_DE": "Maldraxxisches Kriegshorn", "name_zh_CN": "玛卓克萨斯战争号角", "name_es_ES": "Cuerno de guerra maldraxxi", "name_ru_RU": "Малдраксийский боевой рог", "name_it_IT": "Corno da Guerra di Maldraxxus", "name_pt_PT": "Trompa de Guerra Maldraxxi", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181333, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 710043, "buy_price": 3550216, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9789999723434448, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Medallion", "name_ko_KR": "죄 많은 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur impénitent", "name_de_DE": "Medaillon des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的勋章", "name_es_ES": "Medallón de Gladiador pecaminoso", "name_ru_RU": "Медальон грешного гладиатора", "name_it_IT": "Medaglione del Gladiatore Peccatore", "name_pt_PT": "Medalhão do Gladiador Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181334, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence Extractor", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 518333, "buy_price": 2591667, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.982699990272522, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Essence Extractor", "name_ko_KR": "정수 추출기", "name_fr_FR": "Extracteur d’essence", "name_de_DE": "Essenzextraktor", "name_zh_CN": "精华提取器", "name_es_ES": "Extractor de esencia", "name_ru_RU": "Экстрактор сущностей", "name_it_IT": "Estrattore d'Essenza", "name_pt_PT": "Extrator de Essência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181335, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 715337, "buy_price": 3576688, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.986299991607666, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Relentless Brooch", "name_ko_KR": "죄 많은 검투사의 가혹한 브로치", "name_fr_FR": "Broche implacable du gladiateur impénitent", "name_de_DE": "Unerbittliche Brosche des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的无情垂饰", "name_es_ES": "Broche implacable de Gladiador pecaminoso", "name_ru_RU": "Непреклонная брошь грешного гладиатора", "name_it_IT": "Spilla Implacabile del Gladiatore Peccatore", "name_pt_PT": "Broche Incansável do Gladiador Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181357, "race_mask": 18446744073709551615, "desc": "Sometimes a tool in the wrong hands is a weapon.", "pad2": "", "pad1": "", "pad0": "", "name": "Tablet of Despair", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524030, "buy_price": 2620150, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9934999942779541, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Tablet of Despair", "name_ko_KR": "절망의 서판", "name_fr_FR": "Tablette de désespoir", "name_de_DE": "Tafel der Verzweiflung", "name_zh_CN": "绝望石板", "name_es_ES": "Tablilla de desesperación", "name_ru_RU": "Табличка отчаяния", "name_it_IT": "Tavoletta della Disperazione", "name_pt_PT": "Tabuleta do Desespero", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181358, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Master Duelist's Chit", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 525981, "buy_price": 2629908, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Master Duelist's Chit", "name_ko_KR": "대가 결투사의 전표", "name_fr_FR": "Note de maître duelliste", "name_de_DE": "Marke des Meisterduellanten", "name_zh_CN": "决斗大师的便条", "name_es_ES": "Bono de maestro duelista", "name_ru_RU": "Карточка опытного дуэлянта", "name_it_IT": "Nota del Maestro dei Duellanti", "name_pt_PT": "Bilhete do Duelista Mestre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overflowing Ember Mirror", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 527933, "buy_price": 2639666, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Overflowing Ember Mirror", "name_ko_KR": "넘치는 잿불의 거울", "name_fr_FR": "Miroir de braise débordant", "name_de_DE": "Überquellender Glutspiegel", "name_zh_CN": "满溢灰烬之镜", "name_es_ES": "Espejo de ascuas desbordante", "name_ru_RU": "Зеркало изобильных углей", "name_it_IT": "Specchio Traboccante di Braci", "name_pt_PT": "Espelho da Brasa Vertente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181360, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brimming Ember Shard", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 529884, "buy_price": 2649424, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0046000480651855, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Brimming Ember Shard", "name_ko_KR": "충만한 잿불 조각", "name_fr_FR": "Éclat de braise palpitant", "name_de_DE": "Aufgeladener Glutsplitter", "name_zh_CN": "充盈灰烬碎片", "name_es_ES": "Fragmento de ascua rebosante", "name_ru_RU": "Жарко тлеющий осколок", "name_it_IT": "Scheggia di Brace Vibrante", "name_pt_PT": "Estilhaço de Brasa Radiante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181457, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wakener's Frond", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 537691, "buy_price": 2688456, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0194000005722046, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Wakener's Frond", "name_ko_KR": "선각자의 잎사귀", "name_fr_FR": "Fronde d’éveilleur", "name_de_DE": "Wedel des Erweckers", "name_zh_CN": "唤醒者的复叶", "name_es_ES": "Fronda del heraldo", "name_ru_RU": "Побег пробудителя", "name_it_IT": "Fronda del Risvegliatore", "name_pt_PT": "Fronde do Arauto do Despertar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181458, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Queensguard's Vigil", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539642, "buy_price": 2698214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0231000185012817, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Queensguard's Vigil", "name_ko_KR": "여왕 근위병의 경계", "name_fr_FR": "Veille de garde de la reine", "name_de_DE": "Wacht der Königinnenwache", "name_zh_CN": "女王护卫的警戒", "name_es_ES": "Vigilia de la Guardia de la Reina", "name_ru_RU": "Дозор королевской стражи", "name_it_IT": "Vigilanza della Guardia della Regina", "name_pt_PT": "Vigília da Guarda da Rainha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181459, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Withergrove Shardling", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 118351, "buy_price": 591758, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0267000198364258, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Withergrove Shardling", "name_ko_KR": "시들숲 파편", "name_fr_FR": "Éclaté fanebosquet", "name_de_DE": "Dörrhainsteinling", "name_zh_CN": "枯萎林地碎片", "name_es_ES": "Fragmentizo sotomarchito", "name_ru_RU": "Осколок племени Иссохшей рощи", "name_it_IT": "Scheggiola di Avvizzibosco", "name_pt_PT": "Estilha do Bosque Murcho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181501, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flame of Battle", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 506465, "buy_price": 2532328, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9602000117301941, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Flame of Battle", "name_ko_KR": "전투의 업화", "name_fr_FR": "Feu du combat", "name_de_DE": "Flamme der Schlacht", "name_zh_CN": "战斗烈焰", "name_es_ES": "Llama de batalla", "name_ru_RU": "Пламя битвы", "name_it_IT": "Fiamma della Battaglia", "name_pt_PT": "Chama da Batalha", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181502, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rejuvenating Serum", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 508417, "buy_price": 2542086, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638999700546265, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Rejuvenating Serum", "name_ko_KR": "원기 회복의 약", "name_fr_FR": "Sérum de récupération", "name_de_DE": "Verjüngungsserum", "name_zh_CN": "康复血清", "name_es_ES": "Suero rejuvenecedor", "name_ru_RU": "Омолаживающая сыворотка", "name_it_IT": "Siero Rinvigorente", "name_pt_PT": "Soro Rejuvenescedor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181503, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vial of Caustic Liquid", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 111538, "buy_price": 557694, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Vial of Caustic Liquid", "name_ko_KR": "부식성 액체가 든 병", "name_fr_FR": "Fiole de liquide caustique", "name_de_DE": "Phiole voll ätzender Flüssigkeit", "name_zh_CN": "腐蚀流液之瓶", "name_es_ES": "Vial de líquido cáustico", "name_ru_RU": "Флакон с едкой жидкостью", "name_it_IT": "Fiala di Liquido Caustico", "name_pt_PT": "Ampola de Líquido Cáustico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181507, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beating Abomination Core", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 518122, "buy_price": 2590612, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9822999835014343, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Beating Abomination Core", "name_ko_KR": "고동치는 누더기골렘 핵", "name_fr_FR": "Noyau palpitant d’abomination", "name_de_DE": "Schlagendes Herz einer Monstrosität", "name_zh_CN": "跳动的憎恶核心", "name_es_ES": "Núcleo de abominación palpitante", "name_ru_RU": "Бьющееся ядро поганища", "name_it_IT": "Nucleo Pulsante d'Abominio", "name_pt_PT": "Núcleo de Abominação Pulsante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 181816, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Gladiator's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 758491, "buy_price": 3792457, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045799970626831, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sinful Gladiator's Sigil of Adaptation", "name_ko_KR": "죄 많은 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur impénitent", "name_de_DE": "Siegel der Anpassung des sündigen Gladiators", "name_zh_CN": "罪孽角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador pecaminoso", "name_ru_RU": "Печать адаптации грешного гладиатора", "name_it_IT": "Suggello dell'Adattamento del Gladiatore Peccatore", "name_pt_PT": "Signo da Adaptação do Gladiador Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182451, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glimmerdust's Grand Design", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 534181, "buy_price": 2670907, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0084999799728394, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Glimmerdust's Grand Design", "name_ko_KR": "글리머더스트의 원대한 계획", "name_fr_FR": "Grand dessein de Luisimpinpin", "name_de_DE": "Glimmerstaubs großer Plan", "name_zh_CN": "光尘的宏图", "name_es_ES": "Gran plan de Polvodestello", "name_ru_RU": "Великий план Мерцающей Пыли", "name_it_IT": "Piano Maestoso di Pulvilume", "name_pt_PT": "Grã-marca de Relúzia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Everchill Brambles", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536141, "buy_price": 2680706, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0121999979019165, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Everchill Brambles", "name_ko_KR": "영원한기 가시나무", "name_fr_FR": "Ronces de froidure éternelle", "name_de_DE": "Dornenranken der ewigen Kälte", "name_zh_CN": "永冻荆棘", "name_es_ES": "Zarzas de escalofrío eterno", "name_ru_RU": "Шипы обжигающего холода", "name_it_IT": "Rovi del Brivido Eterno", "name_pt_PT": "Espinheiras do Frio Perene", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182453, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Twilight Bloom", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538048, "buy_price": 2690241, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0157999992370605, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Twilight Bloom", "name_ko_KR": "피어나는 황혼", "name_fr_FR": "Floraison crépusculaire", "name_de_DE": "Zwielichtwachstum", "name_zh_CN": "暮光花", "name_es_ES": "Flor crepuscular", "name_ru_RU": "Сумеречный цветок", "name_it_IT": "Bocciolo Crepuscolare", "name_pt_PT": "Florescer Crepuscular", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182454, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Murmurs in the Dark", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540008, "buy_price": 2700040, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0195000171661377, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Murmurs in the Dark", "name_ko_KR": "어둠 속의 넋두리", "name_fr_FR": "Murmures dans les ténèbres", "name_de_DE": "Gemurmel im Dunkel", "name_zh_CN": "黑暗低语", "name_es_ES": "Murmullos en la oscuridad", "name_ru_RU": "Нашептывания во тьме", "name_it_IT": "Mormorii nell'Oscurità", "name_pt_PT": "Murmúrios na Escuridão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182455, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreamer's Mending", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 541967, "buy_price": 2709839, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0232000350952148, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Dreamer's Mending", "name_ko_KR": "꿈꾸는 자의 치유", "name_fr_FR": "Guérison de la Rêveuse", "name_de_DE": "Besserung der Träumerin", "name_zh_CN": "沉睡者之愈", "name_es_ES": "Alivio de la Soñadora", "name_ru_RU": "Исцеление Дремлющей", "name_it_IT": "Guarigione del Sognatore", "name_pt_PT": "Recomposição da Sonhadora", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 182682, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Book-Borrower Identification", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 521917, "buy_price": 2609588, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.026900053024292, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 100, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Book-Borrower Identification", "name_ko_KR": "서적 대출 인식표", "name_fr_FR": "Carte d’emprunt de livres", "name_de_DE": "Ausweis des Buchleihers", "name_zh_CN": "借书证", "name_es_ES": "Identificación de usuario de biblioteca", "name_ru_RU": "Идентификатор похитителя книг", "name_it_IT": "Identificativo del Prestatore di Libri", "name_pt_PT": "Documento de Filiado da Biblioteca", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183150, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heirloom Trinket", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384999513626099, "flags_1": 65536, "flags_2": 6299648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 7, "name_en_US": "Heirloom Trinket", "name_ko_KR": "계승 장신구", "name_fr_FR": "Bijou d’héritage", "name_de_DE": "Erbstück", "name_zh_CN": "传家宝饰品", "name_es_ES": "Abalorio reliquia", "name_ru_RU": "Наследуемый аксессуар", "name_it_IT": "Monile Cimelio", "name_pt_PT": "Berloque de Herança", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183160, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heirloom Trinket", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9751999974250793, "flags_1": 65536, "flags_2": 6299648, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 7, "name_en_US": "Heirloom Trinket", "name_ko_KR": "계승 장신구", "name_fr_FR": "Bijou d’héritage", "name_de_DE": "Erbstück", "name_zh_CN": "传家宝饰品", "name_es_ES": "Abalorio reliquia", "name_ru_RU": "Наследуемый аксессуар", "name_it_IT": "Monile Cimelio", "name_pt_PT": "Berloque de Herança", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183650, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Minuscule Abomination in a Jar", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 50, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 673595, "buy_price": 3367975, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9940000176429749, "flags_1": 0, "flags_2": 8256, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 100, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 4, "name_en_US": "Minuscule Abomination in a Jar", "name_ko_KR": "단지 안에 든 왜소한 누더기골렘", "name_fr_FR": "Minuscule abomination en bouteille", "name_de_DE": "Klitzekleine Monstrosität im Glas", "name_zh_CN": "瓶中的小小憎恶", "name_es_ES": "Abominación minúscula en un tarro", "name_ru_RU": "Крохотное поганище в бутылке", "name_it_IT": "Piccolo Abominio in Vaso", "name_pt_PT": "Abominação Miúda num Pote", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183849, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soulsifter Root", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 435753, "buy_price": 2178767, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.042099952697754, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Soulsifter Root", "name_ko_KR": "영혼여과 뿌리", "name_fr_FR": "Racine tamisâme", "name_de_DE": "Seelensieberwurzeln", "name_zh_CN": "捋魂者之根", "name_es_ES": "Raíz ciernealmas", "name_ru_RU": "Корень просеивателя душ", "name_it_IT": "Radice del Setacciatore d'Anime", "name_pt_PT": "Raiz de Peneira-d'alma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183850, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wakener's Frond", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 437258, "buy_price": 2186294, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045699954032898, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Wakener's Frond", "name_ko_KR": "선각자의 잎사귀", "name_fr_FR": "Fronde d’éveilleur", "name_de_DE": "Wedel des Erweckers", "name_zh_CN": "唤醒者的复叶", "name_es_ES": "Fronda del heraldo", "name_ru_RU": "Побег пробудителя", "name_it_IT": "Fronda del Risvegliatore", "name_pt_PT": "Fronde do Arauto do Despertar", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 183851, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Withergrove Shardling", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 9331, "buy_price": 46656, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.049399971961975, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 2, "name_en_US": "Withergrove Shardling", "name_ko_KR": "시들숲 파편", "name_fr_FR": "Éclaté fanebosquet", "name_de_DE": "Dörrhainsteinling", "name_zh_CN": "枯萎林地碎片", "name_es_ES": "Fragmentizo sotomarchito", "name_ru_RU": "Осколыш племени Иссохшей рощи", "name_it_IT": "Scheggiola di Avvizzibosco", "name_pt_PT": "Estilha do Bosque Murcho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184016, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skulker's Wing", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 739489, "buy_price": 3697447, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0196000337600708, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Skulker's Wing", "name_ko_KR": "잠복꾼의 날개", "name_fr_FR": "Aile de furtif", "name_de_DE": "Schleicherflügel", "name_zh_CN": "隐匿者之翼", "name_es_ES": "Ala de vagador", "name_ru_RU": "Крыло тихоступа", "name_it_IT": "Ala di Furtivo", "name_pt_PT": "Asa de Sorrateiro", "on_use": true, "id_encounter": 2393, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184017, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bargast's Leash", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 761392, "buy_price": 3806963, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0498000383377075, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Bargast's Leash", "name_ko_KR": "바르가스트의 목줄", "name_fr_FR": "Laisse de Bargast", "name_de_DE": "Bargasts Leine", "name_zh_CN": "巴加斯特的狗绳", "name_es_ES": "Correa de Bargast", "name_ru_RU": "Поводок Баргаста", "name_it_IT": "Guinzaglio di Bargast", "name_pt_PT": "Coleira de Bargast", "on_use": true, "id_encounter": 2429, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Splintered Heart of Al'ar", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 691476, "buy_price": 3457381, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9534000158309937, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Splintered Heart of Al'ar", "name_ko_KR": "알라르의 조각난 심장", "name_fr_FR": "Cœur brisé d’Al’ar", "name_de_DE": "Zersplittertes Herz von Al'ar", "name_zh_CN": "奥的裂解之心", "name_es_ES": "Corazón astillado de Al'ar", "name_ru_RU": "Расколотое сердце Ал'ара", "name_it_IT": "Cuore di Al'ar Spezzato", "name_pt_PT": "Coração Partido de Al'ar", "on_use": false, "id_encounter": 2422, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184019, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Igniter", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446254, "buy_price": 2231272, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9570000171661377, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Soul Igniter", "name_ko_KR": "영혼 점화기", "name_fr_FR": "Brûleur d’âme", "name_de_DE": "Seelenzünder", "name_zh_CN": "燃魂者", "name_es_ES": "Detonador de alma", "name_ru_RU": "Поджигатель душ", "name_it_IT": "Brucianima", "name_pt_PT": "Ignição de Alma", "on_use": true, "id_encounter": 2422, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184020, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tuft of Smoldering Plumage", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 696770, "buy_price": 3483853, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9606999754905701, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Tuft of Smoldering Plumage", "name_ko_KR": "이글거리는 깃털 뭉치", "name_fr_FR": "Aigrette fumante", "name_de_DE": "Büschel schwelendes Gefieder", "name_zh_CN": "焖燃飞羽绒簇", "name_es_ES": "Mechón de plumaje humeante", "name_ru_RU": "Пучок огненных перьев", "name_it_IT": "Ciuffo di Piumaggio Infuocato", "name_pt_PT": "Tufo de Plumagem Fumegante", "on_use": true, "id_encounter": 2422, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184021, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Glyph of Assimilation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 449705, "buy_price": 2248525, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9643999934196472, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Glyph of Assimilation", "name_ko_KR": "동화 작용의 문양", "name_fr_FR": "Glyphe d’assimilation", "name_de_DE": "Glyphe der Assimilierung", "name_zh_CN": "同化雕文", "name_es_ES": "Glifo de asimilación", "name_ru_RU": "Символ ассимиляции", "name_it_IT": "Glifo dell'Assimilazione", "name_pt_PT": "Glifo de Assimilação", "on_use": true, "id_encounter": 2418, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184022, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Consumptive Infusion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 702137, "buy_price": 3510688, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9681000113487244, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Consumptive Infusion", "name_ko_KR": "섭취의 주입", "name_fr_FR": "Infusion phtisique", "name_de_DE": "Zehrende Infusion", "name_zh_CN": "噬灭灌注", "name_es_ES": "Infusión consuntiva", "name_ru_RU": "Алчное насыщение", "name_it_IT": "Infusione Tisica", "name_pt_PT": "Infusão Devoradora", "on_use": false, "id_encounter": 2428, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gluttonous Spike", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 704748, "buy_price": 3523743, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9717000126838684, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Gluttonous Spike", "name_ko_KR": "걸신들린 쐐기", "name_fr_FR": "Pointe gloutonne", "name_de_DE": "Gefräßiger Stachel", "name_zh_CN": "暴食尖刺", "name_es_ES": "Pincho glotón", "name_ru_RU": "Всепожирающий шип", "name_it_IT": "Punta Ingorda", "name_pt_PT": "Espeto Glutão", "on_use": false, "id_encounter": 2428, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184024, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Macabre Sheet Music", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 707432, "buy_price": 3537161, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9753999710083008, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Macabre Sheet Music", "name_ko_KR": "죽음의 악보", "name_fr_FR": "Partition de musique macabre", "name_de_DE": "Makabres Notenblatt", "name_zh_CN": "断魂乐谱", "name_es_ES": "Partitura macabra", "name_ru_RU": "Макабрическая партитура", "name_it_IT": "Spartito Macabro", "name_pt_PT": "Partitura Macabra", "on_use": true, "id_encounter": 2426, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184025, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Memory of Past Sins", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 710115, "buy_price": 3550578, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9790999889373779, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Memory of Past Sins", "name_ko_KR": "옛 죄악의 기억", "name_fr_FR": "Souvenir de péchés passés", "name_de_DE": "Erinnerung an vergangene Sünden", "name_zh_CN": "昔日罪孽之忆", "name_es_ES": "Recuerdo de pecados pasados", "name_ru_RU": "Воспоминание о былых грехах", "name_it_IT": "Ricordo dei Peccati Passati", "name_pt_PT": "Memória de Pecados do Passado", "on_use": true, "id_encounter": 2420, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184026, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hateful Chain", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 712799, "buy_price": 3563996, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9828000068664551, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Hateful Chain", "name_ko_KR": "원한에 찬 사슬", "name_fr_FR": "Chaîne haineuse", "name_de_DE": "Hasserfüllte Kette", "name_zh_CN": "愤懑锁链", "name_es_ES": "Cadena de odio", "name_ru_RU": "Цепь ненависти", "name_it_IT": "Catena d'Odio", "name_pt_PT": "Corrente Odiosa", "on_use": false, "id_encounter": 2394, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184027, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stone Legion Heraldry", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718331, "buy_price": 3591655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9864000082015991, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Stone Legion Heraldry", "name_ko_KR": "돌 군단의 문장", "name_fr_FR": "Blason de la Légion de pierre", "name_de_DE": "Wappenbuch der Steinlegion", "name_zh_CN": "顽石军团纹章", "name_es_ES": "Escudo de armas de la Legión Pétrea", "name_ru_RU": "Геральдика Каменного легиона", "name_it_IT": "Araldica della Legione di Pietra", "name_pt_PT": "Heráldica da Legião de Pedra", "on_use": false, "id_encounter": 2425, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184028, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cabalist's Hymnal", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 508880, "buy_price": 2544400, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9901000261306763, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cabalist's Hymnal", "name_ko_KR": "밀사의 성가집", "name_fr_FR": "Hymnaire de cabaliste", "name_de_DE": "Gesangbuch des Kabalisten", "name_zh_CN": "秘法师的赞美诗", "name_es_ES": "Cantoral de cabalista", "name_ru_RU": "Гимнарий кабалиста", "name_it_IT": "Innario del Cabalista", "name_pt_PT": "Hinário do Cabalista", "on_use": false, "id_encounter": 2424, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184029, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Manabound Mirror", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723719, "buy_price": 3618599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937999844551086, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Manabound Mirror", "name_ko_KR": "마나결속 거울", "name_fr_FR": "Miroir lié au mana", "name_de_DE": "Managebundener Spiegel", "name_zh_CN": "法缚威镜", "name_es_ES": "Espejo vinculado al maná", "name_ru_RU": "Зеркало маны", "name_it_IT": "Specchio Vincolato dal Mana", "name_pt_PT": "Espelho Manatado", "on_use": true, "id_encounter": 2424, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184030, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreadfire Vessel", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 512683, "buy_price": 2563417, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9975000023841858, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Dreadfire Vessel", "name_ko_KR": "공포화염 그릇", "name_fr_FR": "Réceptacle brûle-effroi", "name_de_DE": "Schreckensfeuergefäß", "name_zh_CN": "骇火法器", "name_es_ES": "Receptáculo de fuego aterrador", "name_ru_RU": "Сосуд жуткого огня", "name_it_IT": "Ricettacolo del Fuoco del Terrore", "name_pt_PT": "Recipiente de Fogo Mórbido", "on_use": true, "id_encounter": 2424, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184031, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sanguine Vintage", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 729036, "buy_price": 3645180, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.001099944114685, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sanguine Vintage", "name_ko_KR": "핏빛 포도주", "name_fr_FR": "Millésime sanguin", "name_de_DE": "Blutiger Jahrgang", "name_zh_CN": "赤红陈酿", "name_es_ES": "Añada sanguina", "name_ru_RU": "Кровавый винтаж", "name_it_IT": "Monile del Passato Sanguigno", "name_pt_PT": "Safra Sanguínea", "on_use": true, "id_encounter": 2424, "id_journal_instance": 1190, "id_map": 2296, "instance_type": 2}, {"id": 184052, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 547186, "buy_price": 2735933, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0312000513076782, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Medallion", "name_ko_KR": "죄 많은 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant impénitent", "name_de_DE": "Medaillon des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的勋章", "name_es_ES": "Medallón de aspirante pecaminoso", "name_ru_RU": "Медальон грешного претендента", "name_it_IT": "Medaglione del Pretendente Peccatore", "name_pt_PT": "Medalhão do Aspirante Pecaminoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184053, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 549097, "buy_price": 2745485, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0348000526428223, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Relentless Brooch", "name_ko_KR": "죄 많은 지원자의 가혹한 브로치", "name_fr_FR": "Broche implacable de l’aspirant impénitent", "name_de_DE": "Unerbittliche Brosche des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的无情垂饰", "name_es_ES": "Broche implacable de aspirante pecaminoso", "name_ru_RU": "Непреклонная брошь грешного претендента", "name_it_IT": "Spilla Implacabile del Pretendente Peccatore", "name_pt_PT": "Broche Incansável do Aspirante Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184054, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sinful Aspirant's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 551060, "buy_price": 2755301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384999513626099, "flags_1": 4096, "flags_2": 8192, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Sinful Aspirant's Sigil of Adaptation", "name_ko_KR": "죄 많은 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant impénitent", "name_de_DE": "Siegel der Anpassung des sündigen Aspiranten", "name_zh_CN": "罪孽候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante pecaminoso", "name_ru_RU": "Печать адаптации грешного претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Peccatore", "name_pt_PT": "Signo de Adaptação do Aspirante Pecaminoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184055, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 565257, "buy_price": 2826286, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.042199969291687, "flags_1": 4096, "flags_2": 4202496, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 195, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Gladiator's Medallion", "name_ko_KR": "타락한 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur corrompu", "name_de_DE": "Medaillon des verderbten Gladiators", "name_zh_CN": "腐化角斗士的勋章", "name_es_ES": "Medallón de Gladiador corrupto", "name_ru_RU": "Медальон падшего гладиатора", "name_it_IT": "Medaglione del Gladiatore Corrotto", "name_pt_PT": "Medalhão do Gladiador Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184056, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 567264, "buy_price": 2836320, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0458999872207642, "flags_1": 4096, "flags_2": 4202496, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 195, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Gladiator's Relentless Brooch", "name_ko_KR": "타락한 검투사의 가혹한 브로치", "name_fr_FR": "Broche implacable du gladiateur corrompu", "name_de_DE": "Unerbittliche Brosche des verderbten Gladiators", "name_zh_CN": "腐化角斗士的无情垂饰", "name_es_ES": "Broche implacable de Gladiador corrupto", "name_ru_RU": "Непреклонная брешь падшего гладиатора", "name_it_IT": "Spilla Implacabile del Gladiatore Corrotto", "name_pt_PT": "Broche Incansável do Gladiador Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184057, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Gladiator's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 569216, "buy_price": 2846082, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0494999885559082, "flags_1": 4096, "flags_2": 4202496, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 195, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Gladiator's Sigil of Adaptation", "name_ko_KR": "타락한 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur corrompu", "name_de_DE": "Siegel der Anpassung des verderbten Gladiators", "name_zh_CN": "腐化角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador corrupto", "name_ru_RU": "Печать адаптации падшего гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Corrotto", "name_pt_PT": "Signo de Adaptação do Gladiador Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184058, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Medallion", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9531000256538391, "flags_1": 4096, "flags_2": 4218880, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 175, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Aspirant's Medallion", "name_ko_KR": "타락한 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant corrompu", "name_de_DE": "Medaillon des verderbten Aspiranten", "name_zh_CN": "腐化候选者的勋章", "name_es_ES": "Medallón de aspirante corrupto", "name_ru_RU": "Медальон падшего претендента", "name_it_IT": "Medaglione del Pretendente Corrotto", "name_pt_PT": "Medalhão do Aspirante Corrompido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184059, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Relentless Brooch", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9567999839782715, "flags_1": 4096, "flags_2": 4218880, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 175, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Aspirant's Relentless Brooch", "name_ko_KR": "타락한 지원자의 가혹한 브로치", "name_fr_FR": "Broche implacable de l’aspirant corrompu", "name_de_DE": "Unerbittliche Brosche des verderbten Aspiranten", "name_zh_CN": "腐化候选者的无情垂饰", "name_es_ES": "Broche implacable de aspirante corrupto", "name_ru_RU": "Непреклонная брешь падшего претендента", "name_it_IT": "Spilla Implacabile del Pretendente Corrotto", "name_pt_PT": "Broche Incansável do Aspirante Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184060, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Corrupted Aspirant's Sigil of Adaptation", "id_expansion": 7, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9605000019073486, "flags_1": 4096, "flags_2": 4218880, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 175, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 50, "inv_type": 12, "quality": 3, "name_en_US": "Corrupted Aspirant's Sigil of Adaptation", "name_ko_KR": "타락한 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant corrompu", "name_de_DE": "Siegel der Anpassung des verderbten Aspiranten", "name_zh_CN": "腐化候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante corrupto", "name_ru_RU": "Печать адаптации падшего претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Corrotto", "name_pt_PT": "Signo de Adaptação do Aspirante Corrompido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184268, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Emblem", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9678999781608582, "flags_1": 528384, "flags_2": 24576, "flags_3": 67108864, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Emblem", "name_ko_KR": "검투사의 문장", "name_fr_FR": "Emblème de gladiateur", "name_de_DE": "Emblem des Gladiators", "name_zh_CN": "角斗士的纹章", "name_es_ES": "Emblema de Gladiador", "name_ru_RU": "Эмблема гладиатора", "name_it_IT": "Emblema del Gladiatore", "name_pt_PT": "Emblema do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184269, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gladiator's Medallion", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 200751, "buy_price": 1003757, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9715999960899353, "flags_1": 528384, "flags_2": 24576, "flags_3": 67108864, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 9059, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 35, "inv_type": 12, "quality": 0, "name_en_US": "Gladiator's Medallion", "name_ko_KR": "검투사의 메달", "name_fr_FR": "Médaillon de gladiateur", "name_de_DE": "Medaillon des Gladiators", "name_zh_CN": "角斗士的勋章", "name_es_ES": "Medallón de Gladiador", "name_ru_RU": "Медальон гладиатора", "name_it_IT": "Medaglione del Gladiatore", "name_pt_PT": "Medalhão do Gladiador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184279, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Siphoning Blood-Drinker", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 62, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 519241, "buy_price": 2596206, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0348000526428223, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 85, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 48, "inv_type": 12, "quality": 3, "name_en_US": "Siphoning Blood-Drinker", "name_ko_KR": "착취의 흡혈귀", "name_fr_FR": "Buveur de sang siphonneur", "name_de_DE": "Entziehender Bluttrinker", "name_zh_CN": "虹吸饮血者", "name_es_ES": "Bebesangre succionador", "name_ru_RU": "Вытягивающий кровопийца", "name_it_IT": "Succhiasangue Aspirante", "name_pt_PT": "Bebe-sangue Sifonante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184807, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of the First Ones", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 761806, "buy_price": 3809033, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0461000204086304, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 207, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Relic of the First Ones", "name_ko_KR": "태초의 존재의 유물", "name_fr_FR": "Relique des Fondateurs", "name_de_DE": "Relikt der Ersten", "name_zh_CN": "初诞者的圣物", "name_es_ES": "Reliquia de los Primeros", "name_ru_RU": "Реликвия Предвечных", "name_it_IT": "Reliquia dei Primi", "name_pt_PT": "Relíquia dos Primogênitos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184839, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Misfiring Centurion Controller", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536161, "buy_price": 2680807, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0164999961853027, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Misfiring Centurion Controller", "name_ko_KR": "오작동하는 백인대장 제어기", "name_fr_FR": "Contrôleur de centurion défectueux", "name_de_DE": "Versagende Zenturiosteuerung", "name_zh_CN": "无法启动的百心长控制器", "name_es_ES": "Controlador de centurión averiado", "name_ru_RU": "Сбоящий контролер центурионов", "name_it_IT": "Controllore del Centurione Inceppato", "name_pt_PT": "Controlador de Centurião Engasgado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184840, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hymnal of the Path", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538060, "buy_price": 2690302, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0200999975204468, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Hymnal of the Path", "name_ko_KR": "길의 성가집", "name_fr_FR": "Hymnaire de la voie", "name_de_DE": "Gesangbuch des Pfades", "name_zh_CN": "命途赞美诗", "name_es_ES": "Cantoral del camino", "name_ru_RU": "Гимнарий Пути", "name_it_IT": "Innario della Via", "name_pt_PT": "Hinário do Caminho", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184841, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lyre of Sacred Purpose", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540012, "buy_price": 2700060, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023800015449524, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Lyre of Sacred Purpose", "name_ko_KR": "신성한 목적의 수금", "name_fr_FR": "Lyre de dessein sacré", "name_de_DE": "Lyra der Heiligen Aufgaben", "name_zh_CN": "神圣天命竖琴", "name_es_ES": "Lira del propósito sagrado", "name_ru_RU": "Лира священной цели", "name_it_IT": "Lira del Sacro Scopo", "name_pt_PT": "Lira do Propósito Sagrado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184842, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Instructor's Divine Bell", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 541963, "buy_price": 2709818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027500033378601, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Instructor's Divine Bell", "name_ko_KR": "교관의 천상의 종", "name_fr_FR": "Cloche divine d’instructeur", "name_de_DE": "Heilige Glocke des Ausbilders", "name_zh_CN": "导师的圣钟", "name_es_ES": "Campana Divina de instructor", "name_ru_RU": "Божественный колокол инструктора", "name_it_IT": "Campana Divina dell'Istruttore", "name_pt_PT": "Sino Divino do Instrutor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 184873, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Igniter (Test)", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 463601, "buy_price": 2318005, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9941999912261963, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Soul Igniter (Test)", "name_ko_KR": "Soul Igniter (Test)", "name_fr_FR": "Soul Igniter (Test)", "name_de_DE": "Soul Igniter (Test)", "name_zh_CN": "Soul Igniter (Test)", "name_es_ES": "", "name_ru_RU": "Soul Igniter (Test)", "name_it_IT": "Soul Igniter (Test)", "name_pt_PT": "Soul Igniter (Test)", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545276, "buy_price": 2726382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0276000499725342, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Badge of Ferocity", "name_ko_KR": "속박을 벗어던진 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant déchaîné", "name_de_DE": "Wildheitsabzeichen des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante desencadenado", "name_ru_RU": "Жетон свирепости освобожденного претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Liberato", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185197, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 734484, "buy_price": 3672424, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0126999616622925, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Badge of Ferocity", "name_ko_KR": "속박을 벗어던진 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur déchaîné", "name_de_DE": "Wildheitsabzeichen des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador desencadenado", "name_ru_RU": "Жетон свирепости освобожденного гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Liberato", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185238, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539174, "buy_price": 2695871, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0161000490188599, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Insignia of Alacrity", "name_ko_KR": "속박을 벗어던진 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant déchaîné", "name_de_DE": "Inbrunstinsigne des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante desencadenado", "name_ru_RU": "Знак расторопности освобожденного претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Liberato", "name_pt_PT": "Insígnia de Diligência do Aspirante Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185242, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507920, "buy_price": 2539600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9571999907493591, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Emblem", "name_ko_KR": "속박을 벗어던진 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant déchaîné", "name_de_DE": "Emblem des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的纹章", "name_es_ES": "Emblema de aspirante desencadenado", "name_ru_RU": "Эмблема освобожденного претендента", "name_it_IT": "Emblema del Pretendente Liberato", "name_pt_PT": "Emblema do Aspirante Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185278, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 755953, "buy_price": 3779765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0422999858856201, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Insignia of Alacrity", "name_ko_KR": "속박을 벗어던진 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur déchaîné", "name_de_DE": "Inbrunstinsigne des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador desencadenado", "name_ru_RU": "Знак расторопности освобожденного гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Liberato", "name_pt_PT": "Insígnia de Diligência do Gladiador Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185282, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 694014, "buy_price": 3470073, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9569000005722046, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Emblem", "name_ko_KR": "속박을 벗어던진 검투사의 문장", "name_fr_FR": "Emblème du gladiateur déchaîné", "name_de_DE": "Emblem des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的纹章", "name_es_ES": "Emblema de Gladiador desencadenado", "name_ru_RU": "Эмблема освобожденного гладиатора", "name_it_IT": "Emblema del Gladiatore Liberato", "name_pt_PT": "Emblema do Gladiador Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718456, "buy_price": 3592282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9905999898910522, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Medallion", "name_ko_KR": "속박을 벗어던진 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur déchaîné", "name_de_DE": "Medaillon des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的勋章", "name_es_ES": "Medallón de Gladiador desencadenado", "name_ru_RU": "Медальон освобожденного гладиатора", "name_it_IT": "Medaglione del Gladiatore Liberato", "name_pt_PT": "Medalhão do Gladiador Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 721139, "buy_price": 3605699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9943000078201294, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Relentless Brooch", "name_ko_KR": "속박을 벗어던진 검투사의 가혹한 브로치", "name_fr_FR": "Broche implacable du gladiateur déchaîné", "name_de_DE": "Unerbittliche Brosche des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的无情垂饰", "name_es_ES": "Broche implacable de Gladiador desencadenado", "name_ru_RU": "Непреклонная брешь освобожденного гладиатора", "name_it_IT": "Spilla Implacabile del Gladiatore Liberato", "name_pt_PT": "Broche Incansável do Gladiador Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723823, "buy_price": 3619117, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9980000257492065, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Sigil of Adaptation", "name_ko_KR": "속박을 벗어던진 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur déchaîné", "name_de_DE": "Siegel der Anpassung des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador desencadenado", "name_ru_RU": "Печать адаптации освобожденного гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Liberato", "name_pt_PT": "Signo de Adaptação do Gladiador Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 535406, "buy_price": 2677033, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0089999437332153, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Medallion", "name_ko_KR": "속박을 벗어던진 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant déchaîné", "name_de_DE": "Medaillon des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的勋章", "name_es_ES": "Medallón de aspirante desencadenado", "name_ru_RU": "Медальон освобожденного претендента", "name_it_IT": "Medaglione del Pretendente Liberato", "name_pt_PT": "Medalhão do Aspirante Desacorrentado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 537370, "buy_price": 2686850, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0126999616622925, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Relentless Brooch", "name_ko_KR": "속박을 벗어던진 지원자의 가혹한 브로치", "name_fr_FR": "Broche implacable de l’aspirant déchaîné", "name_de_DE": "Unerbittliche Brosche des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的无情垂饰", "name_es_ES": "Broche implacable de aspirante desencadenado", "name_ru_RU": "Непреклонная брошь освобожденного претендента", "name_it_IT": "Spilla Implacabile del Pretendente Liberato", "name_pt_PT": "Broche Incansável do Aspirante Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Aspirant's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539280, "buy_price": 2696401, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0162999629974365, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unchained Aspirant's Sigil of Adaptation", "name_ko_KR": "속박을 벗어던진 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant déchaîné", "name_de_DE": "Siegel der Anpassung des entfesselten Aspiranten", "name_zh_CN": "不羁候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante desencadenado", "name_ru_RU": "Печать адаптации освобожденного претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Liberato", "name_pt_PT": "Signo de Adaptação do Aspirante Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185818, "race_mask": 18446744073709551615, "desc": "Lead with an open hand, not a closed fist.", "pad2": "", "pad1": "", "pad0": "", "name": "So'leah's Secret Technique", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542444, "buy_price": 2712222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "So'leah's Secret Technique", "name_ko_KR": "소레아의 은밀한 기술", "name_fr_FR": "Technique secrète de So’leah", "name_de_DE": "So'leahs Geheimtechnik", "name_zh_CN": "索·莉亚的究极秘术", "name_es_ES": "Técnica secreta de So'leah", "name_ru_RU": "Тайный прием Со'леи", "name_it_IT": "Tecnica Segreta di So'leah", "name_pt_PT": "Técnica Secreta de So'leah", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185836, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Codex of the First Technique", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 9999, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 7, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538471, "buy_price": 2692359, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0166000127792358, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Codex of the First Technique", "name_ko_KR": "첫 번째 절기의 전서", "name_fr_FR": "Codex de la première technique", "name_de_DE": "Kodex der ersten Technik", "name_zh_CN": "第一秘术法典", "name_es_ES": "Códice de la primera técnica", "name_ru_RU": "Кодекс первой техники", "name_it_IT": "Codice della Prima Tecnica", "name_pt_PT": "Códice da Primeira Técnica", "on_use": false, "id_encounter": 2451, "id_journal_instance": 1194, "id_map": 2441, "instance_type": 1}, {"id": 185844, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Sack of Terror", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 554044, "buy_price": 2770222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0460000038146973, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Ticking Sack of Terror", "name_ko_KR": "똑딱거리는 공포의 자루", "name_fr_FR": "Sac à tic-tac terrifiant", "name_de_DE": "Tickender Sack des Schreckens", "name_zh_CN": "滴答作响的恐慌之袋", "name_es_ES": "Saco terrorífico desgranador de segundos", "name_ru_RU": "Тикающий мешок ужаса", "name_it_IT": "Sacca Ticchettante del Terrore", "name_pt_PT": "Sacola de Tique-taque do Terror", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 185845, "race_mask": 18446744073709551615, "desc": "Rain or shine, your healing will be on time.", "pad2": "", "pad1": "", "pad0": "", "name": "First Class Healing Distributor", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 556004, "buy_price": 2780021, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0497000217437744, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "First Class Healing Distributor", "name_ko_KR": "일등급 치유 분배 장치", "name_fr_FR": "Distributeur de soins de première classe", "name_de_DE": "Expressheilungsverteiler", "name_zh_CN": "高级治疗分发器", "name_es_ES": "Distribuidor de sanación de primera clase", "name_ru_RU": "Первоклассный распределитель исцеления", "name_it_IT": "Distributore di Cure di Prima Classe", "name_pt_PT": "Distribuidor de Cura de Primeira Linha", "on_use": false, "id_encounter": 2436, "id_journal_instance": 1194, "id_map": 2441, "instance_type": 1}, {"id": 185846, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Miniscule Mailemental in an Envelope", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 158781, "buy_price": 793907, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9531999826431274, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Miniscule Mailemental in an Envelope", "name_ko_KR": "봉투에 담긴 꼬마 우편의 정령", "name_fr_FR": "Postier-lémentaire miniature dans une enveloppe", "name_de_DE": "Winziger Eilementar in einem Umschlag", "name_zh_CN": "信封里的迷你邮件元素", "name_es_ES": "Elemailtal minúsculo en un sobre", "name_ru_RU": "Миниатюрный почтоменталь в конверте", "name_it_IT": "Minuscolo Elementale della Posta in Busta", "name_pt_PT": "Elemencarta Minúscula em Envelope", "on_use": false, "id_encounter": 2436, "id_journal_instance": 1194, "id_map": 2441, "instance_type": 1}, {"id": 185902, "race_mask": 18446744073709551615, "desc": "Trying the spikes on the outside.", "pad2": "", "pad1": "", "pad0": "", "name": "Iron Maiden's Toolkit", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 524699, "buy_price": 2623497, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9646000266075134, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Iron Maiden's Toolkit", "name_ko_KR": "가시 박힌 철관 도구함", "name_fr_FR": "Outils de la vierge de fer", "name_de_DE": "Werkzeugsatz der Eisernen Jungfrau", "name_zh_CN": "铁处女工具箱", "name_es_ES": "Juego de herramientas de doncella de hierro", "name_ru_RU": "Инструменты \"железной девы\"", "name_it_IT": "Attrezzi della Vergine di Ferro", "name_pt_PT": "Kit de Ferramentas da Donzela de Ferro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186155, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harmonic Crowd Breaker", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 553039, "buy_price": 2765197, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Harmonic Crowd Breaker", "name_ko_KR": "조화의 군중 분쇄기", "name_fr_FR": "Briseur de foule harmonique", "name_de_DE": "Harmonischer Schneisenschläger", "name_zh_CN": "谐律灭群者", "name_es_ES": "Dispersador armónico de multitudes", "name_ru_RU": "Гармоничный разгонятель толп", "name_it_IT": "Spezzatore della Folla Armonica", "name_pt_PT": "Dispersor Harmônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186156, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Insight", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555052, "buy_price": 2775261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020400047302246, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Tome of Insight", "name_ko_KR": "통찰의 고서", "name_fr_FR": "Tome de clairvoyance", "name_de_DE": "Foliant der Einsicht", "name_zh_CN": "洞察之书", "name_es_ES": "Tomo de perspicacia", "name_ru_RU": "Книга озарения", "name_it_IT": "Tomo della Consapevolezza", "name_pt_PT": "Tomo da Percepção", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186421, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forbidden Necromantic Tome", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 674773, "buy_price": 3373869, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0164999961853027, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Forbidden Necromantic Tome", "name_ko_KR": "금단의 강령술 고서", "name_fr_FR": "Tome de nécromancie interdit", "name_de_DE": "Verbotener nekromantischer Foliant", "name_zh_CN": "禁断通灵法典", "name_es_ES": "Escrito nigromántico prohibido", "name_ru_RU": "Запретный некромантический фолиант", "name_it_IT": "Tomo Necromantico Proibito", "name_pt_PT": "Tomo Necromântico Proibido", "on_use": true, "id_encounter": 2440, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186422, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Monstrous Constructions", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 673854, "buy_price": 3369274, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0200999975204468, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Tome of Monstrous Constructions", "name_ko_KR": "괴악한 창조의 고서", "name_fr_FR": "Tome des Assemblages monstrueux", "name_de_DE": "Foliant der monströsen Konstruktionen", "name_zh_CN": "畸谬造物魔典", "name_es_ES": "Escrito sobre construcciones monstruosas", "name_ru_RU": "Фолиант чудовищных созданий", "name_it_IT": "Tomo delle Costruzioni Mostruose", "name_pt_PT": "Tomo de Construções Monstruosas", "on_use": true, "id_encounter": 2435, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186423, "race_mask": 18446744073709551615, "desc": "A price paid long ago in exchange for knowledge and power.", "pad2": "", "pad1": "", "pad0": "", "name": "Titanic Ocular Gland", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 676298, "buy_price": 3381494, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023800015449524, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Titanic Ocular Gland", "name_ko_KR": "거대한 안구 분비선", "name_fr_FR": "Glande oculaire titanesque", "name_de_DE": "Titanische Okulardrüse", "name_zh_CN": "泰坦之眼腺体", "name_es_ES": "Glándula ocular titánica", "name_ru_RU": "Титанический окуляр", "name_it_IT": "Ghiandola Oculare Titanica", "name_pt_PT": "Glândula Ocular Titânica", "on_use": false, "id_encounter": 2442, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shard of Annhylde's Aegis", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 756519, "buy_price": 3782597, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027500033378601, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Shard of Annhylde's Aegis", "name_ko_KR": "안힐드의 아이기스 파편", "name_fr_FR": "Fragment de l’égide d’Annhylde", "name_de_DE": "Splitter von Annhyldes Aegis", "name_zh_CN": "安海尔德之盾的残片", "name_es_ES": "Fragmento de la égida de Annhylde", "name_ru_RU": "Осколок эгиды Аннгильды", "name_it_IT": "Scheggia dell'Egida di Annhylde", "name_pt_PT": "Estilhaço da Égide de Annhylde", "on_use": true, "id_encounter": 2439, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186425, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scrawled Word of Recall", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 759243, "buy_price": 3796218, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0312000513076782, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Scrawled Word of Recall", "name_ko_KR": "휘갈긴 귀환의 진언", "name_fr_FR": "Mot de rappel griffonné", "name_de_DE": "Hingekritzeltes Wort des Rückrufs", "name_zh_CN": "旧忆涂鸦", "name_es_ES": "Palabra de regreso garabateada", "name_ru_RU": "Нацарапанное заклинание возвращения", "name_it_IT": "Parola del Richiamo Scarabocchiata", "name_pt_PT": "Palavra de Revocação Rabiscada", "on_use": true, "id_encounter": 2439, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186427, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whispering Shard of Power", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764618, "buy_price": 3823092, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0384999513626099, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Whispering Shard of Power", "name_ko_KR": "속삭이는 힘의 조각", "name_fr_FR": "Éclat de puissance murmurant", "name_de_DE": "Flüsternder Splitter der Macht", "name_zh_CN": "低语威能碎片", "name_es_ES": "Esquirla de poder susurrante", "name_ru_RU": "Шепчущий осколок силы", "name_it_IT": "Scheggia di Potere Sussurrante", "name_pt_PT": "Fragmento de Poder Sussurrante", "on_use": false, "id_encounter": 2444, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186428, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowed Orb of Torment", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 639835, "buy_price": 3199175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9685999751091003, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Shadowed Orb of Torment", "name_ko_KR": "어둠에 물든 고문의 보주", "name_fr_FR": "Orbe de tourment obscurci", "name_de_DE": "Schattenkugel der Qual", "name_zh_CN": "暗影折磨宝珠", "name_es_ES": "Orbe de tormento ensombrecido", "name_ru_RU": "Затененная сфера истязания", "name_it_IT": "Globo del Tormento Adombrato", "name_pt_PT": "Orbe do Tormento Ensombrecido", "on_use": true, "id_encounter": 2444, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186429, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Decanter of Endless Howling", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 715803, "buy_price": 3579018, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9721999764442444, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Decanter of Endless Howling", "name_ko_KR": "끝없는 울음의 유리병", "name_fr_FR": "Carafe des hurlements infinis", "name_de_DE": "Karaffe des endlosen Heulens", "name_zh_CN": "无尽咆哮之瓶", "name_es_ES": "Decantador de aullido eterno", "name_ru_RU": "Декантер бесконечного воя", "name_it_IT": "Caraffa dell'Ululato Interminabile", "name_pt_PT": "Decantador do Uivo Eterno", "on_use": false, "id_encounter": 2445, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186430, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tormented Rack Fragment", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718527, "buy_price": 3592639, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9758999943733215, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Tormented Rack Fragment", "name_ko_KR": "고통이 깃든 고문대 파편", "name_fr_FR": "Fragment de vif tourment", "name_de_DE": "Streckbankfragment der Pein", "name_zh_CN": "折磨刑具碎片", "name_es_ES": "Fragmento de potro de tortura", "name_ru_RU": "Фрагмент мучительной дыбы", "name_it_IT": "Frammento della Rastrelliera Tormentata", "name_pt_PT": "Fragmento de Cavalete Atormentado", "on_use": false, "id_encounter": 2443, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186431, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ebonsoul Vise", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 647101, "buy_price": 3235507, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9796000123023987, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Ebonsoul Vise", "name_ko_KR": "흑단혼 조임 장치", "name_fr_FR": "Étau âmébène", "name_de_DE": "Schwarzseelenzwinge", "name_zh_CN": "黑魂之钳", "name_es_ES": "Torno de alma de ébano", "name_ru_RU": "Зажим черной души", "name_it_IT": "Morsa dell'Anima Nera", "name_pt_PT": "Torno de Alma-ébano", "on_use": true, "id_encounter": 2443, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186432, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Salvaged Fusion Amplifier", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723976, "buy_price": 3619881, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.983299970626831, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Salvaged Fusion Amplifier", "name_ko_KR": "회수한 융합 증폭기", "name_fr_FR": "Amplificateur de fusion récupéré", "name_de_DE": "Geborgener Fusionsverstärker", "name_zh_CN": "回收的聚变增幅器", "name_es_ES": "Amplificador de fusión recuperado", "name_ru_RU": "Трофейный катализатор синтеза", "name_it_IT": "Amplificatore di Fusione Recuperato", "name_pt_PT": "Amplificador de Fusão Reformado", "on_use": true, "id_encounter": 2446, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186433, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reactive Defense Matrix", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 726626, "buy_price": 3633134, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9868999719619751, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Reactive Defense Matrix", "name_ko_KR": "반응성 방어막", "name_fr_FR": "Matrice de défense réactive", "name_de_DE": "Reaktive Verteidigungsmatrix", "name_zh_CN": "反应防御矩阵", "name_es_ES": "Matriz de defensa reactiva", "name_ru_RU": "Матрица реактивной защиты", "name_it_IT": "Matrice di Difesa Reattiva", "name_pt_PT": "Matriz de Defesa Reativa", "on_use": false, "id_encounter": 2446, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186434, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Weave of Warped Fates", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 729351, "buy_price": 3646755, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9905999898910522, "flags_1": 67637312, "flags_2": 73728, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Weave of Warped Fates", "name_ko_KR": "왜곡된 운명의 짜임", "name_fr_FR": "Tissage des destins altérés", "name_de_DE": "Gespinst aus verzerrten Schicksalen", "name_zh_CN": "扭曲命运织锦", "name_es_ES": "Tejido de destinos distorsionados", "name_ru_RU": "Ткань искаженных судеб", "name_it_IT": "Intreccio di Destini Contorti", "name_pt_PT": "Tecelagem das Sinas Distorcidas", "on_use": false, "id_encounter": 2447, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186435, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carved Ivory Keepsake", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 732075, "buy_price": 3660376, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9943000078201294, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Carved Ivory Keepsake", "name_ko_KR": "조각된 상아 기념품", "name_fr_FR": "Souvenir en ivoire gravé", "name_de_DE": "Geschnitztes Elfenbeinandenken", "name_zh_CN": "乳白雕刻纪念品", "name_es_ES": "Recuerdo de marfil tallado", "name_ru_RU": "Сувенир из резного бивня", "name_it_IT": "Pegno d'Avorio Intagliato", "name_pt_PT": "Lembrancinha de Marfim Entalhado", "on_use": false, "id_encounter": 2447, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186436, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resonant Silver Bell", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 737754, "buy_price": 3688772, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9980000257492065, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Resonant Silver Bell", "name_ko_KR": "공명하는 은빛 종", "name_fr_FR": "Cloche d’argent résonnante", "name_de_DE": "Resonierende Silberglocke", "name_zh_CN": "共鸣银铃", "name_es_ES": "Campana de plata resonante", "name_ru_RU": "Резонирующий серебряный колокольчик", "name_it_IT": "Campana d'Argento Risonante", "name_pt_PT": "Sino de Prata Ressoante", "on_use": false, "id_encounter": 2440, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186437, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of the Frozen Wastes", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 740415, "buy_price": 3702079, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0016000270843506, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Relic of the Frozen Wastes", "name_ko_KR": "얼어붙은 황무지의 유물", "name_fr_FR": "Relique des terres gelées", "name_de_DE": "Relikt der Eisigen Weiten", "name_zh_CN": "冰冻废土圣物", "name_es_ES": "Reliquia de los Baldíos Helados", "name_ru_RU": "Реликвия ледяных пустошей", "name_it_IT": "Reliquia delle Distese Ghiacciate", "name_pt_PT": "Relíquia dos Ermos Gélidos", "on_use": true, "id_encounter": 2440, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186438, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Old Warrior's Soul", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 743150, "buy_price": 3715754, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053000450134277, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Old Warrior's Soul", "name_ko_KR": "늙은 전사의 영혼", "name_fr_FR": "Âme de vieux guerrier", "name_de_DE": "Seele eines alten Kriegers", "name_zh_CN": "老兵之魂", "name_es_ES": "Alma de guerrero veterano", "name_ru_RU": "Душа старого воина", "name_it_IT": "Anima del Vecchio Guerriero", "name_pt_PT": "Alma de Guerreiro Antigo", "on_use": false, "id_encounter": 2441, "id_journal_instance": 1193, "id_map": 2450, "instance_type": 2}, {"id": 186866, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718528, "buy_price": 3592644, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9907000064849854, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Badge of Ferocity", "name_ko_KR": "우주적 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur cosmique", "name_de_DE": "Wildheitsabzeichen des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador Cósmico", "name_ru_RU": "Жетон свирепости космического гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Cosmico", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186867, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 721212, "buy_price": 3606062, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944000244140625, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Insignia of Alacrity", "name_ko_KR": "우주적 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur cosmique", "name_de_DE": "Inbrunstinsigne des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador Cósmico", "name_ru_RU": "Знак расторопности космического гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Cosmico", "name_pt_PT": "Insígnia de Diligência do Gladiador Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186868, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723895, "buy_price": 3619479, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9980999827384949, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Emblem", "name_ko_KR": "우주적 검투사의 문장", "name_fr_FR": "Emblème du gladiateur cosmique", "name_de_DE": "Emblem des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的纹章", "name_es_ES": "Emblema de Gladiador Cósmico", "name_ru_RU": "Эмблема космического гладиатора", "name_it_IT": "Emblema del Gladiatore Cosmico", "name_pt_PT": "Emblema do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186869, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 726579, "buy_price": 3632897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0017999410629272, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Medallion", "name_ko_KR": "우주적 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur cosmique", "name_de_DE": "Medaillon des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的勋章", "name_es_ES": "Medallón de Gladiador Cósmico", "name_ru_RU": "Медальон космического гладиатора", "name_it_IT": "Medaglione del Gladiatore Cosmico", "name_pt_PT": "Medalhão do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186870, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 729190, "buy_price": 3645952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0053999423980713, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Relentless Brooch", "name_ko_KR": "우주적 검투사의 가혹한 브로치", "name_fr_FR": "Broche implacable du gladiateur cosmique", "name_de_DE": "Unerbittliche Brosche des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的无情垂饰", "name_es_ES": "Broche implacable de Gladiador Cósmico", "name_ru_RU": "Брошь непреклонности космического гладиатора", "name_it_IT": "Spilla Implacabile del Gladiatore Cosmico", "name_pt_PT": "Broche Incansável do Gladiador Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186871, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 731873, "buy_price": 3659369, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0090999603271484, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Sigil of Adaptation", "name_ko_KR": "우주적 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur cosmique", "name_de_DE": "Siegel der Anpassung des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador Cósmico", "name_ru_RU": "Печать адаптации космического гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Cosmico", "name_pt_PT": "Signo da Adaptação do Gladiador Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186906, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545276, "buy_price": 2726382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9904999732971191, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Badge of Ferocity", "name_ko_KR": "우주적 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant cosmique", "name_de_DE": "Wildheitsabzeichen des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante Cósmico", "name_ru_RU": "Жетон свирепости космического претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Cosmico", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186942, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539174, "buy_price": 2695871, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Insignia of Alacrity", "name_ko_KR": "우주적 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant cosmique", "name_de_DE": "Inbrunstinsigne des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante Cósmico", "name_ru_RU": "Знак расторопности космического претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Cosmico", "name_pt_PT": "Insígnia de Diligência do Aspirante Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186946, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507920, "buy_price": 2539600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Emblem", "name_ko_KR": "우주적 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant cosmique", "name_de_DE": "Emblem des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的纹章", "name_es_ES": "Emblema de aspirante Cósmico", "name_ru_RU": "Эмблема космического претендента", "name_it_IT": "Emblema del Pretendente Cosmico", "name_pt_PT": "Emblema do Aspirante Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186966, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 535406, "buy_price": 2677033, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0166000127792358, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Medallion", "name_ko_KR": "우주적 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant cosmique", "name_de_DE": "Medaillon des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的勋章", "name_es_ES": "Medallón de aspirante Cósmico", "name_ru_RU": "Медальон космического претендента", "name_it_IT": "Medaglione del Pretendente Cosmico", "name_pt_PT": "Medalhão do Aspirante Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186967, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 537370, "buy_price": 2686850, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.020300030708313, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Relentless Brooch", "name_ko_KR": "우주적 지원자의 가혹한 브로치", "name_fr_FR": "Broche implacable de l’aspirant cosmique", "name_de_DE": "Unerbittliche Brosche des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的无情垂饰", "name_es_ES": "Broche implacable de aspirante Cósmico", "name_ru_RU": "Брошь непреклонности космического претендента", "name_it_IT": "Spilla Implacabile del Pretendente Cosmico", "name_pt_PT": "Broche Incansável do Aspirante Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186968, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Aspirant's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539280, "buy_price": 2696401, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023900032043457, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Cosmic Aspirant's Sigil of Adaptation", "name_ko_KR": "우주적 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant cosmique", "name_de_DE": "Siegel der Anpassung des kosmischen Aspiranten", "name_zh_CN": "宇宙候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante Cósmico", "name_ru_RU": "Печать адаптации космического претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Cosmico", "name_pt_PT": "Signo de Adaptação do Aspirante Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186976, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fine Razorwing Quill", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555052, "buy_price": 2775261, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797000288963318, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Fine Razorwing Quill", "name_ko_KR": "섬세한 칼날날개 깃털", "name_fr_FR": "Belle plume de rasaile", "name_de_DE": "Feiner Klingenschwingenstachel", "name_zh_CN": "刀翼兽的精美飞羽", "name_es_ES": "Pluma fina de alafilada", "name_ru_RU": "Прекрасное перо бритвокрыла", "name_it_IT": "Penna di Alafina Eccellente", "name_pt_PT": "Cálamo de Talhasa de Qualidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 186980, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unchained Gladiator's Shackles", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944000244140625, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 220, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Unchained Gladiator's Shackles", "name_ko_KR": "속박을 벗어던진 검투사의 족쇄", "name_fr_FR": "Entraves du gladiateur déchaîné", "name_de_DE": "Schäkel des entfesselten Gladiators", "name_zh_CN": "不羁角斗士的镣铐", "name_es_ES": "Grilletes de Gladiador desencadenado", "name_ru_RU": "Оковы освобожденного гладиатора", "name_it_IT": "Catene del Gladiatore Liberato", "name_pt_PT": "Grilhões do Gladiador Desacorrentado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 187447, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Soul Cage Fragment", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9758999943733215, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 6, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Soul Cage Fragment", "name_ko_KR": "영혼 우리 파편", "name_fr_FR": "Fragment de cage d’âme", "name_de_DE": "Seelengefängnisfragment", "name_zh_CN": "灵魂牢笼碎片", "name_es_ES": "Fragmento de prisión de almas", "name_ru_RU": "Фрагмент клетки для душ", "name_it_IT": "Frammento di Gabbia dell'Anima", "name_pt_PT": "Fragmento de Jaula de Almas", "on_use": false, "id_encounter": 2456, "id_journal_instance": 1192, "id_map": 2559, "instance_type": 2}, {"id": 188252, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Chains of Domination", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 705006, "buy_price": 3525032, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Chains of Domination", "name_ko_KR": "지배의 사슬", "name_fr_FR": "Chaînes de domination", "name_de_DE": "Ketten der Herrschaft", "name_zh_CN": "统御之链", "name_es_ES": "Cadenas de Dominación", "name_ru_RU": "Цепи Господства", "name_it_IT": "Catene del Dominio", "name_pt_PT": "Correntes da Dominação", "on_use": true, "id_encounter": 2464, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188253, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scars of Fraternal Strife", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 707741, "buy_price": 3538708, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9574000239372253, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Scars of Fraternal Strife", "name_ko_KR": "형제 갈등의 흉터", "name_fr_FR": "Stigmates de lutte fratricide", "name_de_DE": "Narben der brüderlichen Zwietracht", "name_zh_CN": "阋墙伤痕", "name_es_ES": "Cicatrices de discordia fraternal", "name_ru_RU": "Раны братского раздора", "name_it_IT": "Cicatrici del Conflitto Fraterno", "name_pt_PT": "Cicatrizes da Contenda Fraterna", "on_use": true, "id_encounter": 2464, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188254, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grim Eclipse", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 710476, "buy_price": 3552384, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9610999822616577, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Grim Eclipse", "name_ko_KR": "음울한 월식", "name_fr_FR": "Sinistre éclipse", "name_de_DE": "Grimmige Finsternis", "name_zh_CN": "严酷星蚀", "name_es_ES": "Eclipse sombrío", "name_ru_RU": "Мрачное затмение", "name_it_IT": "Eclissi Tetra", "name_pt_PT": "Eclipse Sinistro", "on_use": true, "id_encounter": 2467, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188255, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of the Swarm", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 4, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 713212, "buy_price": 3566060, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9648000001907349, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Heart of the Swarm", "name_ko_KR": "벌레 군단의 심장", "name_fr_FR": "Cœur de l’essaim", "name_de_DE": "Das Herz des Schwarms", "name_zh_CN": "虫群之心", "name_es_ES": "Corazón del enjambre", "name_ru_RU": "Сердце роя", "name_it_IT": "Cuore dello Sciame", "name_pt_PT": "Coração do Enxame", "on_use": true, "id_encounter": 2457, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188261, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Intrusive Thoughtcage", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 749064, "buy_price": 3745323, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0132999420166016, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 233, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Intrusive Thoughtcage", "name_ko_KR": "침해의 사념 우리", "name_fr_FR": "Prison mentale intrusive", "name_de_DE": "Zudringlicher Gedankenkäfig", "name_zh_CN": "侵心牢笼", "name_es_ES": "Caja de pensamientos intrusiva", "name_ru_RU": "Клетка навязчивых идей", "name_it_IT": "Gabbia Intricata del Pensiero", "name_pt_PT": "Gaiola de Ideias Invasiva", "on_use": true, "id_encounter": 2457, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188262, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The Lion's Roar", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 748788, "buy_price": 3743943, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0169999599456787, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 5714, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "The Lion's Roar", "name_ko_KR": "사자의 포효", "name_fr_FR": "Le Rugissement du Lion", "name_de_DE": "Der Brüllende Löwe", "name_zh_CN": "雄狮之吼", "name_es_ES": "Rugido del León", "name_ru_RU": "Львиный рык", "name_it_IT": "Ruggito del Leone", "name_pt_PT": "Rugido do Leão", "on_use": true, "id_encounter": 2469, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reclaimer's Intensity Core", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 751439, "buy_price": 3757195, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0205999612808228, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Reclaimer's Intensity Core", "name_ko_KR": "되찾는 자의 격화 핵", "name_fr_FR": "Noyau d’intensité du récupérateur", "name_de_DE": "Intensitätskern des Rückgewinners", "name_zh_CN": "回收者的强度核心", "name_es_ES": "Núcleo de intensidad del Reivindicador", "name_ru_RU": "Заряженный сердечник Возвращающего", "name_it_IT": "Nucleo d'Intensità del Rivendicatore", "name_pt_PT": "Núcleo de Intensidade do Recuperador", "on_use": true, "id_encounter": 2463, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188264, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Earthbreaker's Impact", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 754163, "buy_price": 3770817, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Earthbreaker's Impact", "name_ko_KR": "대지파괴자의 충격", "name_fr_FR": "Impact du Brise-terre", "name_de_DE": "Einschlag des Erdbrechers", "name_zh_CN": "碎地者的冲击", "name_es_ES": "Impacto de rompetierra", "name_ru_RU": "Удар землелома", "name_it_IT": "Impatto dello Spaccaterra", "name_pt_PT": "Impacto do Rompe-terra", "on_use": true, "id_encounter": 2463, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188265, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cache of Acquired Treasures", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 3, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 756887, "buy_price": 3784438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027999997138977, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cache of Acquired Treasures", "name_ko_KR": "입수한 보물 보관함", "name_fr_FR": "Cache de trésors acquis", "name_de_DE": "Truhe mit erhaltenen Schätzen", "name_zh_CN": "博取财宝箱", "name_es_ES": "Alijo de tesoros adquiridos", "name_ru_RU": "Тайник с присвоенными сокровищами", "name_it_IT": "Scrigno di Tesori Acquisiti", "name_pt_PT": "Arca de Tesouros Adquiridos", "on_use": true, "id_encounter": 2470, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188266, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pulsating Riftshard", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 759611, "buy_price": 3798059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0317000150680542, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Pulsating Riftshard", "name_ko_KR": "고동치는 균열 파편", "name_fr_FR": "Éclat de faille palpitant", "name_de_DE": "Pulsierender Kluftsplitter", "name_zh_CN": "跳动的裂隙碎片", "name_es_ES": "Fragmento de falla palpitante", "name_ru_RU": "Пульсирующий осколок", "name_it_IT": "Scheggia di Fenditura Pulsante", "name_pt_PT": "Estilhaço de Fenda Pulsante", "on_use": true, "id_encounter": 2470, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188267, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bells of the Endless Feast", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 762262, "buy_price": 3811312, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0353000164031982, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Bells of the Endless Feast", "name_ko_KR": "끝없는 연회의 종", "name_fr_FR": "Cloches du festin éternel", "name_de_DE": "Glocken des endlosen Festmahls", "name_zh_CN": "无尽飨宴餐铃", "name_es_ES": "Campanas del festín infinito", "name_ru_RU": "Колокольчики вечного пира", "name_it_IT": "Campane del Banchetto Interminabile", "name_pt_PT": "Sinos do Festim sem Fim", "on_use": false, "id_encounter": 2465, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Architect's Ingenuity Core", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 686339, "buy_price": 3431698, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0390000343322754, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Architect's Ingenuity Core", "name_ko_KR": "설계사의 독창성 핵", "name_fr_FR": "Noyau d’ingéniosité de l’architecte", "name_de_DE": "Einfallsreichtumskern des Architekten", "name_zh_CN": "造物师的巧思之核", "name_es_ES": "Núcleo de ingenio del arquitecto", "name_ru_RU": "Сердечник изобретательного архитектора", "name_it_IT": "Nucleo dell'Ingegno dell'Architetto", "name_pt_PT": "Núcleo da Engenhosidade do Arquiteto", "on_use": true, "id_encounter": 2461, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188269, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pocket Protoforge", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 72, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767710, "buy_price": 3838554, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0427000522613525, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Pocket Protoforge", "name_ko_KR": "휴대용 원생제련소", "name_fr_FR": "Protoforge de poche", "name_de_DE": "Taschenprotoschmiede", "name_zh_CN": "迷你原生锻炉", "name_es_ES": "Protoforja de bolsillo", "name_ru_RU": "Карманная протокузня", "name_it_IT": "Protoforgia Tascabile", "name_pt_PT": "Protoforja de Bolso", "on_use": false, "id_encounter": 2461, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188270, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elegy of the Eternals", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 770435, "buy_price": 3852175, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0463999509811401, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Elegy of the Eternals", "name_ko_KR": "영원한 존재의 비가", "name_fr_FR": "Élégie des Éternels", "name_de_DE": "Elegie der Ewigen", "name_zh_CN": "永恒者的挽歌", "name_es_ES": "Elegía de los Eternos", "name_ru_RU": "Элегия Вечных", "name_it_IT": "Elegia degli Eterni", "name_pt_PT": "Elegia dos Eternos", "on_use": false, "id_encounter": 2460, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188271, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "The First Sigil", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 773085, "buy_price": 3865427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0499999523162842, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "The First Sigil", "name_ko_KR": "첫 번째 인장", "name_fr_FR": "Le premier cachet", "name_de_DE": "Das erste Siegel", "name_zh_CN": "原初印记", "name_es_ES": "El primer sigilo", "name_ru_RU": "Первая печать", "name_it_IT": "Primo Sigillo", "name_pt_PT": "Primeiro Signo", "on_use": true, "id_encounter": 2460, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188272, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Resonant Reservoir", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 629926, "buy_price": 3149632, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Resonant Reservoir", "name_ko_KR": "공명하는 저장소", "name_fr_FR": "Réservoir résonant", "name_de_DE": "Resonierender Kessel", "name_zh_CN": "共振贮藏", "name_es_ES": "Reserva resonante", "name_ru_RU": "Резервуар резонанса", "name_it_IT": "Bacino Risonante", "name_pt_PT": "Reservatório Ressonante", "on_use": true, "id_encounter": 2459, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188273, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Auxiliary Attendant Chime", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 5, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 704833, "buy_price": 3524166, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9573000073432922, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Auxiliary Attendant Chime", "name_ko_KR": "따르는 자 보조원의 풍경", "name_fr_FR": "Carillon de servant auxiliaire", "name_de_DE": "Glockenspiel des Bediensteten", "name_zh_CN": "助理侍从乐铃", "name_es_ES": "Campanilla de auxiliar complementaria", "name_ru_RU": "Колокольчик резервного служителя", "name_it_IT": "Campana Tubolare Ausiliaria dell'Attendente", "name_pt_PT": "Carrilhão de Atendente Auxiliar", "on_use": false, "id_encounter": 2458, "id_journal_instance": 1195, "id_map": 2481, "instance_type": 2}, {"id": 188282, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Auslese's Light Channeler", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7105, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 11867, "buy_price": 59339, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016800045967102, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 25, "inv_type": 12, "quality": 3, "name_en_US": "Auslese's Light Channeler", "name_ko_KR": "아우슬리즈의 빛 감응기", "name_fr_FR": "Canalisateur de lumière d’Auslese", "name_de_DE": "Ausleses Lichtkanalisierer", "name_zh_CN": "奥丝蕾的光芒护符", "name_es_ES": "Canalizador de luz de Auslese", "name_ru_RU": "Камень Света Ауслезе", "name_it_IT": "Incanalatore di Luce di Auslese", "name_pt_PT": "Canalizador de Luz de Auslese", "on_use": true, "id_encounter": 556, "id_journal_instance": 256, "id_map": 542, "instance_type": 1}, {"id": 188309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Icon of Unyielding Courage", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6250, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14828, "buy_price": 74144, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9688000082969666, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Icon of Unyielding Courage", "name_ko_KR": "굽히지 않는 용기의 상징", "name_fr_FR": "Icône du courage inflexible", "name_de_DE": "Ikone des unerschütterlichen Mutes", "name_zh_CN": "不屈勇气徽章", "name_es_ES": "Icono de coraje implacable", "name_ru_RU": "Хоругвь непреклонной отваги", "name_it_IT": "Icona del Coraggio Implacabile", "name_pt_PT": "Ícone da Coragem Obstinada", "on_use": true, "id_encounter": 557, "id_journal_instance": 256, "id_map": 542, "instance_type": 1}, {"id": 188352, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Argussian Compass", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 7500, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15287, "buy_price": 76438, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9796000123023987, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Argussian Compass", "name_ko_KR": "아르거시안 나침반", "name_fr_FR": "Boussole argusséenne", "name_de_DE": "Argusischer Kompass", "name_zh_CN": "阿古斯指南针", "name_es_ES": "Brújula de Argus", "name_ru_RU": "Аргуссианский компас", "name_it_IT": "Bussola Argussiana", "name_pt_PT": "Bússola Argussiana", "on_use": true, "id_encounter": 579, "id_journal_instance": 262, "id_map": 546, "instance_type": 1}, {"id": 188359, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Alembic of Infernal Power", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6875, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 14886, "buy_price": 74432, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0318000316619873, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Alembic of Infernal Power", "name_ko_KR": "지옥 마력 정화장치", "name_fr_FR": "Alambic de puissance infernale", "name_de_DE": "Alembik der höllischen Macht", "name_zh_CN": "恶魔能量萃取器", "name_es_ES": "Alambique de poder infernal", "name_ru_RU": "Перегонный куб мощи преисподней", "name_it_IT": "Alambicco del Potere Infernale", "name_pt_PT": "Alambique de Poder Infernal", "on_use": false, "id_encounter": 579, "id_journal_instance": 262, "id_map": 546, "instance_type": 1}, {"id": 188396, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bangle of Endless Blessings", "id_expansion": 1, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 15410, "buy_price": 77052, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0204999446868896, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 32, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 27, "inv_type": 12, "quality": 3, "name_en_US": "Bangle of Endless Blessings", "name_ko_KR": "끝없는 축복의 팔찌", "name_fr_FR": "Bracelet des bénédictions infinies", "name_de_DE": "Reif des unendlichen Segens", "name_zh_CN": "无尽祝福法链", "name_es_ES": "Broche de bendiciones sin fin", "name_ru_RU": "Браслет нескончаемого блаженства", "name_it_IT": "Ciondolo delle Benedizioni Infinite", "name_pt_PT": "Bracelete das Bênçãos sem Fim", "on_use": true, "id_encounter": 562, "id_journal_instance": 257, "id_map": 553, "instance_type": 1}, {"id": 188415, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Gossamer", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 10091, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 24717, "buy_price": 123588, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.016700029373169, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 3, "name_en_US": "Essence of Gossamer", "name_ko_KR": "섬세한 거미줄", "name_fr_FR": "Essence de tulle", "name_de_DE": "Samtige Essenz", "name_zh_CN": "蛛网精华", "name_es_ES": "Esencia de delicadez", "name_ru_RU": "Квинтэссенция паутины", "name_it_IT": "Essenza di Stoffa Finissima", "name_pt_PT": "Essência de Teia Diáfana", "on_use": false, "id_encounter": 586, "id_journal_instance": 272, "id_map": 601, "instance_type": 1}, {"id": 188478, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Needle-Encrusted Scorpion", "id_expansion": 2, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6706, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 113940, "buy_price": 455760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 35, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 30, "inv_type": 12, "quality": 4, "name_en_US": "Needle-Encrusted Scorpion", "name_ko_KR": "바늘 박힌 전갈", "name_fr_FR": "Scorpion incrusté d’aiguilles", "name_de_DE": "Nadelüberzogener Skorpion", "name_zh_CN": "钉壳毒蝎", "name_es_ES": "Escorpión incrustado de agujas", "name_ru_RU": "Покрытый иглами скорпион", "name_it_IT": "Scorpione dall'Aculeo Incrostato", "name_pt_PT": "Escorpião Incrustado de Agulhas", "on_use": false, "id_encounter": 616, "id_journal_instance": 280, "id_map": 632, "instance_type": 1}, {"id": 188490, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grace of the Herald", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 103, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 30620, "buy_price": 153104, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0242999792099, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Grace of the Herald", "name_ko_KR": "사자의 은총", "name_fr_FR": "Grâce du héraut", "name_de_DE": "Gunst des Herolds", "name_zh_CN": "先驱之握", "name_es_ES": "Gracia del Heraldo", "name_ru_RU": "Милость глашатая", "name_it_IT": "Grazia dell'Araldo", "name_pt_PT": "Graça do Arauto", "on_use": false, "id_encounter": 106, "id_journal_instance": 66, "id_map": 645, "instance_type": 1}, {"id": 188514, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Witching Hourglass", "id_expansion": 3, "dmg_range": 0.0, "item_limit_category": 104, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 32059, "buy_price": 160295, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0389000177383423, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 37, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 32, "inv_type": 12, "quality": 3, "name_en_US": "Witching Hourglass", "name_ko_KR": "마녀의 모래시계", "name_fr_FR": "Sablier ensorcelant", "name_de_DE": "Geisterstundenglas", "name_zh_CN": "巫术沙漏", "name_es_ES": "Reloj de arena de brujería", "name_ru_RU": "Ведьмовские песочные часы", "name_it_IT": "Clessidra delle Streghe", "name_pt_PT": "Ampulheta da Bruxaria", "on_use": false, "id_encounter": 109, "id_journal_instance": 66, "id_map": 645, "instance_type": 1}, {"id": 188524, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Fastidious Resolve", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 726724, "buy_price": 3633622, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0019999742507935, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Fastidious Resolve", "name_ko_KR": "우주적 검투사의 치밀한 결의", "name_fr_FR": "Résolution rigoureuse du gladiateur cosmique", "name_de_DE": "Akribische Entschlossenheit des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的严谨决心", "name_es_ES": "Resolución escrupulosa de Gladiador Cósmico", "name_ru_RU": "Взыскательная решимость космического гладиатора", "name_it_IT": "Risolutezza Scrupolosa del Gladiatore", "name_pt_PT": "Determinação Meticulosa do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188691, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Echoing Resolve", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 710478, "buy_price": 3552392, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9796000123023987, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Echoing Resolve", "name_ko_KR": "우주적 검투사의 메아리치는 결의", "name_fr_FR": "Résolution retentissante du gladiateur cosmique", "name_de_DE": "Hallende Entschlossenheit des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的回响决心", "name_es_ES": "Resolución resonante de Gladiador Cósmico", "name_ru_RU": "Отдающаяся эхом решимость космического гладиатора", "name_it_IT": "Risolutezza Echeggiante del Gladiatore Cosmico", "name_pt_PT": "Determinação Ecoante do Gladiador Cósmico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188766, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Resonator", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 715990, "buy_price": 3579952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872000217437744, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Resonator", "name_ko_KR": "우주적 검투사의 공명기", "name_fr_FR": "Résonateur du gladiateur cosmique", "name_de_DE": "Resonator des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的共振器", "name_es_ES": "Resonador de Gladiador Cósmico", "name_ru_RU": "Резонатор космического гладиатора", "name_it_IT": "Risonatore del Gladiatore Cosmico", "name_pt_PT": "Ressonador do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188775, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Eternal Aegis", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 759144, "buy_price": 3795721, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0467000007629395, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Eternal Aegis", "name_ko_KR": "우주적 검투사의 영원한 아이기스", "name_fr_FR": "Égide éternelle du gladiateur cosmique", "name_de_DE": "Ewige Aegis des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的永恒结界", "name_es_ES": "Égida eterna de Gladiador Cósmico", "name_ru_RU": "Вечная эгида космического гладиатора", "name_it_IT": "Egida Eterna del Gladiatore Cosmico", "name_pt_PT": "Égide Eterna do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188778, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cosmic Gladiator's Devouring Malediction", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 694594, "buy_price": 3472974, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9577000141143799, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Cosmic Gladiator's Devouring Malediction", "name_ko_KR": "우주적 검투사의 게걸스러운 악심", "name_fr_FR": "Malédiction dévorante du gladiateur cosmique", "name_de_DE": "Verschlingende Verwünschung des kosmischen Gladiators", "name_zh_CN": "宇宙角斗士的吞噬诅咒", "name_es_ES": "Maldición devoradora de Gladiador Cósmico", "name_ru_RU": "Пожирающее проклятие космического гладиатора", "name_it_IT": "Maledizione Divorante del Gladiatore Cosmico", "name_pt_PT": "Imprecação Devoradora do Gladiador Cósmico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188816, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emerald Winglord's Insignia", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9501000046730042, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 206, "class_mask": 4164, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Emerald Winglord's Insignia", "name_ko_KR": "에메랄드 날개군주의 인장", "name_fr_FR": "Insigne d’altesse-ailée d’émeraude", "name_de_DE": "Smaragdgrünes Insigne des Schwingenfürsten", "name_zh_CN": "翡翠翼尉徽章", "name_es_ES": "Insignia del señor alado esmeralda", "name_ru_RU": "Знак изумрудного властелина", "name_it_IT": "Fregio del Signore Alato di Smeraldo", "name_pt_PT": "Insígnia do Lorde-de-ala Esmeralda", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 188817, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Claw-Carved Figurine", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9537000060081482, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 206, "class_mask": 4096, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Claw-Carved Figurine", "name_ko_KR": "발톱에 긁힌 조각상", "name_fr_FR": "Figurine taillée à coups de griffes", "name_de_DE": "Klauengeschnitzte Figur", "name_zh_CN": "爪刻雕像", "name_es_ES": "Figura tallada con garras", "name_ru_RU": "Вырезанная когтями фигурка", "name_it_IT": "Statuetta Intagliata con Artigli", "name_pt_PT": "Estatueta Entalhada a Garra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190374, "race_mask": 18446744073709551615, "desc": "One of the few relics left behind that the guardians sought to protect.", "pad2": "", "pad1": "", "pad0": "", "name": "Gemstone of Prismatic Brilliance", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 476552, "buy_price": 2382760, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035599946975708, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 246, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Gemstone of Prismatic Brilliance", "name_ko_KR": "오색 광휘의 보석", "name_fr_FR": "Gemme de brillance prismatique", "name_de_DE": "Edelstein der prismatischen Brillanz", "name_zh_CN": "棱彩睿智宝石", "name_es_ES": "Gema de resplandor prismático", "name_ru_RU": "Самоцвет радужного сияния", "name_it_IT": "Gemma dell'Acume Prismatico", "name_pt_PT": "Gema de Inteligência Prismática", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190389, "race_mask": 18446744073709551615, "desc": "Good luck!", "pad2": "", "pad1": "", "pad0": "", "name": "Broker's Lucky Coin", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 468038, "buy_price": 2340194, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0170999765396118, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Broker's Lucky Coin", "name_ko_KR": "중개자의 행운 주화", "name_fr_FR": "Pièce porte-bonheur de négociant", "name_de_DE": "Mittlerglücksmünze", "name_zh_CN": "掮灵的幸运币", "name_es_ES": "Moneda de la suerte de los Especuladores", "name_ru_RU": "Счастливая монетка брокера", "name_it_IT": "Moneta Fortunata dell'Alienatore", "name_pt_PT": "Moeda da Sorte de Corretor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Protector's Diffusion Implement", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 469695, "buy_price": 2348477, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0206999778747559, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Protector's Diffusion Implement", "name_ko_KR": "수호병의 발산 기구", "name_fr_FR": "Instrument de dispersion du protecteur", "name_de_DE": "Diffusionsutensil des Beschützers", "name_zh_CN": "防御者的扩散器", "name_es_ES": "Instrumento de difusión de protector", "name_ru_RU": "Рассеивающий инструмент защитника", "name_it_IT": "Strumento di Diffusione del Protettore", "name_pt_PT": "Implemento de Difusão do Protetor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190582, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbol of the Vombata", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 480003, "buy_price": 2400016, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0430999994277954, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Symbol of the Vombata", "name_ko_KR": "봄바타의 상징", "name_fr_FR": "Symbole du vombata", "name_de_DE": "Symbol des Vombatas", "name_zh_CN": "元袋熊符记", "name_es_ES": "Símbolo de los vombatas", "name_ru_RU": "Знак вомбаты", "name_it_IT": "Simbolo di Vombatide", "name_pt_PT": "Símbolo do Vombate", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190597, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbol of the Lupine", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 471490, "buy_price": 2357451, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0246000289916992, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Symbol of the Lupine", "name_ko_KR": "원시늑대의 상징", "name_fr_FR": "Symbole du lupin", "name_de_DE": "Symbol des Lupins", "name_zh_CN": "元狼符记", "name_es_ES": "Símbolo de los lupinos", "name_ru_RU": "Знак люпина", "name_it_IT": "Simbolo di Lupino", "name_pt_PT": "Símbolo do Lupino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190602, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Symbol of the Raptora", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 430572, "buy_price": 2152862, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0428999662399292, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Symbol of the Raptora", "name_ko_KR": "육식조의 상징", "name_fr_FR": "Symbole du raptora", "name_de_DE": "Symbol des Raptoras", "name_zh_CN": "元鹰符记", "name_es_ES": "Símbolo de los accipítridos", "name_ru_RU": "Знак рапторы", "name_it_IT": "Simbolo di Falconide", "name_pt_PT": "Símbolo da Rapinante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190641, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Instructor's Divine Bell", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 541963, "buy_price": 2709818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965399980545044, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 148, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Instructor's Divine Bell", "name_ko_KR": "교관의 천상의 종", "name_fr_FR": "Cloche divine d’instructeur", "name_de_DE": "Heilige Glocke des Ausbilders", "name_zh_CN": "导师的圣钟", "name_es_ES": "Campana Divina de instructor", "name_ru_RU": "Божественный колокол инструктора", "name_it_IT": "Campana Divina dell'Istruttore", "name_pt_PT": "Sino Divino do Instrutor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190652, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ticking Sack of Terror", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 6666, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": 49, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 554044, "buy_price": 2770222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0058000087738037, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Ticking Sack of Terror", "name_ko_KR": "똑딱거리는 공포의 자루", "name_fr_FR": "Sac à tic-tac terrifiant", "name_de_DE": "Tickender Sack des Schreckens", "name_zh_CN": "滴答作响的恐慌之袋", "name_es_ES": "Saco terrorífico desgranador de segundos", "name_ru_RU": "Тикающий мешок ужаса", "name_it_IT": "Sacca Ticchettante del Terrore", "name_pt_PT": "Sacola de Tique-taque do Terror", "on_use": false, "id_encounter": 2436, "id_journal_instance": 1194, "id_map": 2441, "instance_type": 1}, {"id": 190726, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Extract of Prodigious Sands", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 464633, "buy_price": 2323168, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0096999406814575, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 226, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Extract of Prodigious Sands", "name_ko_KR": "경이의 모래 추출물", "name_fr_FR": "Échantillon de sable prodigieux", "name_de_DE": "Extrakt wundersamen Sands", "name_zh_CN": "无垠沙海提取物", "name_es_ES": "Extracto de arenas prodigiosas", "name_ru_RU": "Экстракт бескрайних песков", "name_it_IT": "Estratto di Sabbie Prodigiose", "name_pt_PT": "Extrato das Areias Prodigiosas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 190958, "race_mask": 18446744073709551615, "desc": "Lead with an open hand, not a closed fist.", "pad2": "", "pad1": "", "pad0": "", "name": "So'leah's Secret Technique", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542444, "buy_price": 2712222, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0318000316619873, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 155, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "So'leah's Secret Technique", "name_ko_KR": "소레아의 은밀한 기술", "name_fr_FR": "Technique secrète de So’leah", "name_de_DE": "So'leahs Geheimtechnik", "name_zh_CN": "索·莉亚的究极秘术", "name_es_ES": "Técnica secreta de So'leah", "name_ru_RU": "Тайный прием Со'леи", "name_it_IT": "Tecnica Segreta di So'leah", "name_pt_PT": "Técnica Secreta de So'leah", "on_use": true, "id_encounter": 2455, "id_journal_instance": 1194, "id_map": 2441, "instance_type": 1}, {"id": 191491, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Sustaining Alchemist Stone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 779488, "buy_price": 3897442, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Sustaining Alchemist Stone", "name_ko_KR": "존속의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste de soutien", "name_de_DE": "Nährender Alchemistenstein", "name_zh_CN": "维系炼金石", "name_es_ES": "Piedra de alquimista preservadora", "name_ru_RU": "Поддерживающий алхимический камень", "name_it_IT": "Pietra Alchemica Sostenitrice", "name_pt_PT": "Pedra do Alquimista Reforçante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 191492, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Alacritous Alchemist Stone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 782408, "buy_price": 3912041, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Alacritous Alchemist Stone", "name_ko_KR": "명민의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste empressée", "name_de_DE": "Lebhafter Alchemistenstein", "name_zh_CN": "活跃炼金石", "name_es_ES": "Piedra de alquimista de prontitud", "name_ru_RU": "Стремительный алхимический камень", "name_it_IT": "Pietra Alchemica Alacre", "name_pt_PT": "Pedra do Alquimista Álacre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192295, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718528, "buy_price": 3592644, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9620000123977661, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Badge of Ferocity", "name_ko_KR": "영원한 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Wildheitsabzeichen des ewigen Gladiators", "name_zh_CN": "永恒角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador eterno", "name_ru_RU": "Жетон свирепости вечного гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Eterno", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192296, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 721212, "buy_price": 3606062, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Insignia of Alacrity", "name_ko_KR": "영원한 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Inbrunstinsigne des ewigen Gladiators", "name_zh_CN": "永恒角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador eterno", "name_ru_RU": "Знак расторопности вечного гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Eterno", "name_pt_PT": "Insígnia de Diligência do Gladiador Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192297, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 723895, "buy_price": 3619479, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692999720573425, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Emblem", "name_ko_KR": "영원한 검투사의 문장", "name_fr_FR": "Emblème de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Emblem des ewigen Gladiators", "name_zh_CN": "永恒角斗士的纹章", "name_es_ES": "Emblema de Gladiador eterno", "name_ru_RU": "Эмблема вечного гладиатора", "name_it_IT": "Emblema del Gladiatore Eterno", "name_pt_PT": "Emblema do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192298, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 726579, "buy_price": 3632897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9729999899864197, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Medallion", "name_ko_KR": "영원한 검투사의 메달", "name_fr_FR": "Médaillon de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Medaillon des ewigen Gladiators", "name_zh_CN": "永恒角斗士的勋章", "name_es_ES": "Medallón de Gladiador eterno", "name_ru_RU": "Медальон вечного гладиатора", "name_it_IT": "Medaglione del Gladiatore Eterno", "name_pt_PT": "Medalhão do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192299, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 729190, "buy_price": 3645952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9767000079154968, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Relentless Brooch", "name_ko_KR": "영원한 검투사의 가혹한 브로치", "name_fr_FR": "Broche implacable de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Unerbittliche Brosche des ewigen Gladiators", "name_zh_CN": "永恒角斗士的无情垂饰", "name_es_ES": "Broche implacable de Gladiador eterno", "name_ru_RU": "Брошь непреклонности вечного гладиатора", "name_it_IT": "Spilla Implacabile del Gladiatore Eterno", "name_pt_PT": "Broche Incansável do Gladiador Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 731873, "buy_price": 3659369, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9803000092506409, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Sigil of Adaptation", "name_ko_KR": "영원한 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Siegel der Anpassung des ewigen Gladiators", "name_zh_CN": "永恒角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador eterno", "name_ru_RU": "Печать адаптации вечного гладиатора", "name_it_IT": "Suggello dell'Adattamento del Gladiatore Eterno", "name_pt_PT": "Signo de Adaptação do Gladiador Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Fastidious Resolve", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 726724, "buy_price": 3633622, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Fastidious Resolve", "name_ko_KR": "영원한 검투사의 치밀한 결의", "name_fr_FR": "Résolution rigoureuse de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Akribische Entschlossenheit des ewigen Gladiators", "name_zh_CN": "永恒角斗士的严谨决心", "name_es_ES": "Resolución escrupulosa de Gladiador eterno", "name_ru_RU": "Взыскательная решимость вечного гладиатора", "name_it_IT": "Risolutezza Scrupolosa del Gladiatore Eterno", "name_pt_PT": "Determinação Meticulosa do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Echoing Resolve", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 710478, "buy_price": 3552392, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9876999855041504, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Echoing Resolve", "name_ko_KR": "영원한 검투사의 메아리치는 결의", "name_fr_FR": "Résolution retentissante de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Hallende Entschlossenheit des ewigen Gladiators", "name_zh_CN": "永恒角斗士的回响决心", "name_es_ES": "Resolución resonante de Gladiador eterno", "name_ru_RU": "Отдающаяся эхом решимость вечного гладиатора", "name_it_IT": "Risolutezza Echeggiante del Gladiatore Eterno", "name_pt_PT": "Determinação Ecoante do Gladiador Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Resonator", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 715990, "buy_price": 3579952, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9912999868392944, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Resonator", "name_ko_KR": "영원한 검투사의 공명기", "name_fr_FR": "Résonateur de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Resonator des ewigen Gladiators", "name_zh_CN": "永恒角斗士的共振器", "name_es_ES": "Resonador de Gladiador eterno", "name_ru_RU": "Резонатор вечного гладиатора", "name_it_IT": "Risonatore del Gladiatore Eterno", "name_pt_PT": "Ressonador do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Eternal Aegis", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 759144, "buy_price": 3795721, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9950000047683716, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Eternal Aegis", "name_ko_KR": "영원한 검투사의 영원한 아이기스", "name_fr_FR": "Égide immuable de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Ewige Aegis des ewigen Gladiators", "name_zh_CN": "永恒角斗士的永恒结界", "name_es_ES": "Égida eterna de Gladiador eterno", "name_ru_RU": "Вечная эгида вечного гладиатора", "name_it_IT": "Egida Eterna del Gladiatore Eterno", "name_pt_PT": "Égide Eterna do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Gladiator's Devouring Malediction", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 694594, "buy_price": 3472974, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9987000226974487, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Eternal Gladiator's Devouring Malediction", "name_ko_KR": "영원한 검투사의 게걸스러운 악심", "name_fr_FR": "Malédiction dévorante de la gladiatrice ou du gladiateur éternel", "name_de_DE": "Verschlingende Verwünschung des ewigen Gladiators", "name_zh_CN": "永恒角斗士的吞噬诅咒", "name_es_ES": "Maldición devoradora de Gladiador eterno", "name_ru_RU": "Пожирающее проклятие вечного гладиатора", "name_it_IT": "Maledizione Divorante del Gladiatore Eterno", "name_pt_PT": "Imprecação Devoradora do Gladiador Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192352, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Badge of Ferocity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545276, "buy_price": 2726382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9505000114440918, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Badge of Ferocity", "name_ko_KR": "영원한 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Wildheitsabzeichen des ewigen Aspiranten", "name_zh_CN": "永恒候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante eterno", "name_ru_RU": "Жетон свирепости вечного претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Eterno", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192388, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Insignia of Alacrity", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0356999635696411, "flags_1": 528384, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Insignia of Alacrity", "name_ko_KR": "영원한 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Inbrunstinsigne des ewigen Aspiranten", "name_zh_CN": "永恒候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante eterno", "name_ru_RU": "Знак расторопности вечного претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Eterno", "name_pt_PT": "Insígnia de Diligência do Aspirante Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192392, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Emblem", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507920, "buy_price": 2539600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768000245094299, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Emblem", "name_ko_KR": "영원한 지원자의 문장", "name_fr_FR": "Emblème de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Emblem des ewigen Aspiranten", "name_zh_CN": "永恒候选者的纹章", "name_es_ES": "Emblema de aspirante eterno", "name_ru_RU": "Эмблема вечного претендента", "name_it_IT": "Emblema del Pretendente Eterno", "name_pt_PT": "Emblema do Aspirante Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192412, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Medallion", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Medallion", "name_ko_KR": "영원한 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Medaillon des ewigen Aspiranten", "name_zh_CN": "永恒候选者的勋章", "name_es_ES": "Medallón de aspirante eterno", "name_ru_RU": "Медальон вечного претендента", "name_it_IT": "Medaglione del Pretendente Eterno", "name_pt_PT": "Medalhão do Aspirante Eterno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192413, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Relentless Brooch", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 537370, "buy_price": 2686850, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9803000092506409, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Relentless Brooch", "name_ko_KR": "영원한 지원자의 가혹한 브로치", "name_fr_FR": "Broche implacable de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Unerbittliche Brosche des ewigen Aspiranten", "name_zh_CN": "永恒候选者的无情垂饰", "name_es_ES": "Broche implacable de aspirante eterno", "name_ru_RU": "Брошь непреклонности вечного претендента", "name_it_IT": "Spilla Implacabile del Pretendente Eterno", "name_pt_PT": "Broche Incansável do Aspirante Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Eternal Aspirant's Sigil of Adaptation", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 2000000, "buy_price": 8000000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984000027179718, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 158, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Eternal Aspirant's Sigil of Adaptation", "name_ko_KR": "영원한 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirante ou de l’aspirant éternel", "name_de_DE": "Siegel der Anpassung des ewigen Aspiranten", "name_zh_CN": "永恒候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante eterno", "name_ru_RU": "Печать адаптации вечного претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Eterno", "name_pt_PT": "Signo de Adaptação do Aspirante Eterno", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 192797, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gral's Discarded Tooth", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 606573, "buy_price": 3032867, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Gral's Discarded Tooth", "name_ko_KR": "그랄의 버려진 이빨", "name_fr_FR": "Dent tombée de Gral", "name_de_DE": "Grals abgelegter Zahn", "name_zh_CN": "格罗尔丢弃的牙", "name_es_ES": "Diente desechado de Gral", "name_ru_RU": "Выброшенный зуб Грала", "name_it_IT": "Dente Scartato di Gral", "name_pt_PT": "Dente Descartado de Gral", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193003, "race_mask": 18446744073709551615, "desc": "Tomorrow will bring you new challenges, and you must be ready to face them.", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of the Life-Binder", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 502, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0250999927520752, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Idol of the Life-Binder", "name_ko_KR": "생명의 어머니의 우상", "name_fr_FR": "Idole de la Lieuse-de-Vie", "name_de_DE": "Götze der Lebensbinderin", "name_zh_CN": "生命缚誓者的雕像", "name_es_ES": "Ídolo de la Protectora", "name_ru_RU": "Идол Хранительницы жизни", "name_it_IT": "Idolo della Protettrice della Vita", "name_pt_PT": "Ídolo da Mãe da Vida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193004, "race_mask": 18446744073709551615, "desc": "I have lost much in my time, mortal, too much in fact.", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of the Spell-Weaver", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 502, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0286999940872192, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Idol of the Spell-Weaver", "name_ko_KR": "마법의 지배자의 우상", "name_fr_FR": "Idole du Tisse-sort", "name_de_DE": "Götze des Spruchwirkers", "name_zh_CN": "织法者的雕像", "name_es_ES": "Ídolo del Tejehechizos", "name_ru_RU": "Идол Хранителя магии", "name_it_IT": "Idolo del Plasmamagie", "name_pt_PT": "Ídolo do Tecencantos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193005, "race_mask": 18446744073709551615, "desc": "Whatever comes, I know you will face it with courage.", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of the Dreamer", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 502, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Idol of the Dreamer", "name_ko_KR": "꿈꾸는 자의 우상", "name_fr_FR": "Idole de la Rêveuse", "name_de_DE": "Götze der Träumerin", "name_zh_CN": "沉睡者的雕像", "name_es_ES": "Ídolo de la Soñadora", "name_ru_RU": "Идол Дремлющей", "name_it_IT": "Idolo della Sognatrice", "name_pt_PT": "Ídolo do Sonhador", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193006, "race_mask": 18446744073709551615, "desc": "It is done. All have given that which must be given. I now seal the Dragon Soul forever.", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of the Earth-Warder", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 502, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 20000, "buy_price": 100000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0361000299453735, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Idol of the Earth-Warder", "name_ko_KR": "대지의 수호자의 우상", "name_fr_FR": "Idole du Gardeterre", "name_de_DE": "Götze des Erdwächters", "name_zh_CN": "大地守护者的雕像", "name_es_ES": "Ídolo del Guardián de la Tierra", "name_ru_RU": "Идол Хранителя Земли", "name_it_IT": "Idolo del Custode della Terra", "name_pt_PT": "Escama do Guardião da Terra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193477, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Battle-Scarred Scale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 610953, "buy_price": 3054765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0322999954223633, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 6, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Battle-Scarred Scale", "name_ko_KR": "전쟁의 흉터가 남은 비늘", "name_fr_FR": "Écaille marquée par le combat", "name_de_DE": "Kampferprobte Schuppe", "name_zh_CN": "战痕之鳞", "name_es_ES": "Escama dañada en batalla", "name_ru_RU": "Чешуйка со следами ран", "name_it_IT": "Scaglia Sfregiata dalla Battaglia", "name_pt_PT": "Escama com Cicatrizes de Batalha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193568, "race_mask": 18446744073709551615, "desc": "Sharp enough to cut chance. Balanced enough to cause life or death.", "pad2": "", "pad1": "", "pad0": "", "name": "Engraved Spearhead", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 505527, "buy_price": 2527636, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024999976158142, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Engraved Spearhead", "name_ko_KR": "각인된 창머리", "name_fr_FR": "Fer de lance gravé", "name_de_DE": "Gravierte Speerspitze", "name_zh_CN": "铭刻矛头", "name_es_ES": "Punta de lanza grabada", "name_ru_RU": "Гравированный наконечник копья", "name_it_IT": "Punta di Lancia Incisa", "name_pt_PT": "Ponta de Lança Gravada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193628, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Unstable Power", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9510999917984009, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Tome of Unstable Power", "name_ko_KR": "불안정한 마력의 고서", "name_fr_FR": "Tome de pouvoir instable", "name_de_DE": "Foliant der instabilen Macht", "name_zh_CN": "无常能量魔典", "name_es_ES": "Tomo de poder inestable", "name_ru_RU": "Фолиант ускользающего могущества", "name_it_IT": "Tomo del Potere Instabile", "name_pt_PT": "Tomo de Poder Instável", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193634, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burgeoning Seed", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 544758, "buy_price": 2723794, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9731000065803528, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Burgeoning Seed", "name_ko_KR": "급성장의 씨앗", "name_fr_FR": "Graine bourgeonnante", "name_de_DE": "Keimender Samen", "name_zh_CN": "元气之种", "name_es_ES": "Semilla floreciente", "name_ru_RU": "Прорастающее семя", "name_it_IT": "Seme Germogliante", "name_pt_PT": "Semente Florescente", "on_use": true, "id_encounter": 2492, "id_journal_instance": 1203, "id_map": 2515, "instance_type": 1}, {"id": 193639, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Umbrelskul's Fractured Heart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499540, "buy_price": 2497703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Umbrelskul's Fractured Heart", "name_ko_KR": "엄브렐스컬의 조각난 심장", "name_fr_FR": "Cœur fracturé de Krânombrel", "name_de_DE": "Umbrelskuls gebrochenes Herz", "name_zh_CN": "安布雷斯库的破裂之心", "name_es_ES": "Corazón fracturado de Umbracráneo", "name_ru_RU": "Расколотое сердце Мраскула", "name_it_IT": "Cuore Spezzato di Umbrelskul", "name_pt_PT": "Coração Fraturado de Umbracrânio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193652, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Treemouth's Festering Splinter", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540560, "buy_price": 2702801, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Treemouth's Festering Splinter", "name_ko_KR": "나무아귀의 썩어가는 가시", "name_fr_FR": "Esquille purulente d’Arbec", "name_de_DE": "Baummauls eitriger Splitter", "name_zh_CN": "树口的溃烂裂木", "name_es_ES": "Astilla degenerativa de Bocaárbol", "name_ru_RU": "Гниющая щепка Древорта", "name_it_IT": "Scheggia Putrescente di Ramobocca", "name_pt_PT": "Farpa Purulenta do Boca-de-árvore", "on_use": true, "id_encounter": 2473, "id_journal_instance": 1196, "id_map": 2520, "instance_type": 1}, {"id": 193660, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of Pure Decay", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 501304, "buy_price": 2506520, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9950000047683716, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Idol of Pure Decay", "name_ko_KR": "순수한 부패의 우상", "name_fr_FR": "Idole de putréfaction pure", "name_de_DE": "Götze des reinen Verfalls", "name_zh_CN": "纯净腐朽神像", "name_es_ES": "Ídolo de descomposición pura", "name_ru_RU": "Идол чистого разложения", "name_it_IT": "Idolo del Decadimento Puro", "name_pt_PT": "Ídolo da Decomposição Pura", "on_use": false, "id_encounter": 2474, "id_journal_instance": 1196, "id_map": 2520, "instance_type": 1}, {"id": 193672, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Frenzying Signoll Flare", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 540504, "buy_price": 2702521, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Frenzying Signoll Flare", "name_ko_KR": "광란의 놀신호탄", "name_fr_FR": "Fusée gnolle frénétique", "name_de_DE": "Aufwiegelndes Signollfeuer", "name_zh_CN": "狂乱豺明弹", "name_es_ES": "Bengala gnoll de frenesí", "name_ru_RU": "Мобилизующая сигнальная вспышка", "name_it_IT": "Bengala di Segnollazione", "name_pt_PT": "Archote de Signoll Frenético", "on_use": false, "id_encounter": 2471, "id_journal_instance": 1196, "id_map": 2520, "instance_type": 1}, {"id": 193677, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Furious Ragefeather", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 509062, "buy_price": 2545314, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0104000568389893, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Furious Ragefeather", "name_ko_KR": "분노한 성난깃털", "name_fr_FR": "Rageplume furieuse", "name_de_DE": "Wilde Rachfeder", "name_zh_CN": "癫狂怒羽", "name_es_ES": "Plumira furioso", "name_ru_RU": "Яростное перо", "name_it_IT": "Piumadura Furioso", "name_pt_PT": "Penabrava Furiosa", "on_use": false, "id_encounter": 2478, "id_journal_instance": 1198, "id_map": 2516, "instance_type": 1}, {"id": 193678, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Miniature Singing Stone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 567655, "buy_price": 2838277, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Miniature Singing Stone", "name_ko_KR": "초소형 노래하는 돌", "name_fr_FR": "Pierre chantante miniature", "name_de_DE": "Singender Stein als Miniatur", "name_zh_CN": "小型鸣歌之石", "name_es_ES": "Piedra cantarina en miniatura", "name_ru_RU": "Миниатюрный поющий камень", "name_it_IT": "Pietra Risonante in Miniatura", "name_pt_PT": "Pedra Canora em Miniatura", "on_use": true, "id_encounter": 2478, "id_journal_instance": 1198, "id_map": 2516, "instance_type": 1}, {"id": 193679, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Idol of Trampling Hooves", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 569726, "buy_price": 2848633, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.017699956893921, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Idol of Trampling Hooves", "name_ko_KR": "짓밟는 발굽의 우상", "name_fr_FR": "Idole de piaffement", "name_de_DE": "Götze der trampelnden Hufe", "name_zh_CN": "踏敌铁蹄人偶", "name_es_ES": "Ídolo de pezuñas pisoteadoras", "name_ru_RU": "Идол топчущих копыт", "name_it_IT": "Idolo degli Zoccoli Calpestanti", "name_pt_PT": "Ídolo dos Cascos Atropelantes", "on_use": false, "id_encounter": 2478, "id_journal_instance": 1198, "id_map": 2516, "instance_type": 1}, {"id": 193689, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Granyth's Enduring Scale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 534234, "buy_price": 2671171, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9542999863624573, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Granyth's Enduring Scale", "name_ko_KR": "그라니스의 인내하는 비늘", "name_fr_FR": "Écaille durable de Granyth", "name_de_DE": "Granyths robuste Schuppe", "name_zh_CN": "格拉尼斯的劲久之鳞", "name_es_ES": "Escama duradera de Granyth", "name_ru_RU": "Прочная чешуйка Гранита", "name_it_IT": "Scaglia Duratura di Granyth", "name_pt_PT": "Escama Perpétua de Granyth", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193697, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottle of Spiraling Winds", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 565528, "buy_price": 2827640, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Bottle of Spiraling Winds", "name_ko_KR": "소용돌이치는 바람의 병", "name_fr_FR": "Bouteille de vents tournoyants", "name_de_DE": "Flasche der Wirbelwinde", "name_zh_CN": "螺旋劲风之瓶", "name_es_ES": "Botella de vientos en espiral", "name_ru_RU": "Бутылка вьющихся вихрей", "name_it_IT": "Bottiglia di Venti a Spirale", "name_pt_PT": "Garrafa de Ventos Espiralantes", "on_use": false, "id_encounter": 2497, "id_journal_instance": 1198, "id_map": 2516, "instance_type": 1}, {"id": 193701, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Algeth'ar Puzzle Box", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 573757, "buy_price": 2868787, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Algeth'ar Puzzle Box", "name_ko_KR": "알게타르 수수께끼 상자", "name_fr_FR": "Boîte à secret d’Algeth’ar", "name_de_DE": "Rätselbox von Algeth'ar", "name_zh_CN": "艾杰斯亚谜题盒", "name_es_ES": "Caja de puzles de Algeth'ar", "name_ru_RU": "Алгет'арская шкатулка с секретом", "name_it_IT": "Scatola Rompicapo di Algeth'ar", "name_pt_PT": "Caixa-enigma de Algeth'ar", "on_use": true, "id_encounter": 2514, "id_journal_instance": 1201, "id_map": 2526, "instance_type": 1}, {"id": 193718, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Emerald Coach's Whistle", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 567543, "buy_price": 2837717, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013800024986267, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Emerald Coach's Whistle", "name_ko_KR": "에메랄드 감독의 호루라기", "name_fr_FR": "Sifflet d’entraînement d’émeraude", "name_de_DE": "Pfeife des Smaragdtrainers", "name_zh_CN": "翡翠教练的哨子", "name_es_ES": "Silbato de entrenador esmeralda", "name_ru_RU": "Свисток изумрудного тренера", "name_it_IT": "Fischietto dell'Allenatore di Smeraldo", "name_pt_PT": "Apito de Treinador Esmeralda", "on_use": true, "id_encounter": 2495, "id_journal_instance": 1201, "id_map": 2526, "instance_type": 1}, {"id": 193719, "race_mask": 18446744073709551615, "desc": "Here at Algeth'ar Academy, we bring nothing but our A-game.", "pad2": "", "pad1": "", "pad0": "", "name": "Dragon Games Equipment", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 569558, "buy_price": 2847794, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0174000263214111, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Dragon Games Equipment", "name_ko_KR": "용 경기 장비", "name_fr_FR": "Équipement des jeux draconiques", "name_de_DE": "Ausrüstung der Drachenspiele", "name_zh_CN": "巨龙竞技装备", "name_es_ES": "Equipamiento de los juegos dragónicos", "name_ru_RU": "Снаряжение для драконьего спорта", "name_it_IT": "Equipaggiamento da Gioco delle Isole dei Draghi", "name_pt_PT": "Equipamento de Jogos Dragônicos", "on_use": true, "id_encounter": 2495, "id_journal_instance": 1201, "id_map": 2526, "instance_type": 1}, {"id": 193732, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Globe of Jagged Ice", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555115, "buy_price": 2775577, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.991599977016449, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Globe of Jagged Ice", "name_ko_KR": "뾰족한 얼음 구체", "name_fr_FR": "Globe de glace tranchante", "name_de_DE": "Kugel aus gezacktem Eis", "name_zh_CN": "锯齿寒冰之球", "name_es_ES": "Globo de hielo dentado", "name_ru_RU": "Шар зубчатого льда", "name_it_IT": "Globo di Ghiaccio Scheggiato", "name_pt_PT": "Globo de Gelo Serrilhado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193736, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Water's Beating Heart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 563344, "buy_price": 2816724, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0062999725341797, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Water's Beating Heart", "name_ko_KR": "맥동하는 물의 심장", "name_fr_FR": "Cœur d’eau palpitant", "name_de_DE": "Schlagendes Herz des Wassers", "name_zh_CN": "流水脉动之心", "name_es_ES": "Corazón palpitante del agua", "name_ru_RU": "Бьющееся сердце воды", "name_it_IT": "Cuore Pulsante dell'Acqua", "name_pt_PT": "Coração Pulsante de Água", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193743, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Irideus Fragment", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536529, "buy_price": 2682648, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9584000110626221, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Irideus Fragment", "name_ko_KR": "이리데우스의 파편", "name_fr_FR": "Fragment d’Iridéus", "name_de_DE": "Irideusfragment", "name_zh_CN": "伊里度斯的碎片", "name_es_ES": "Fragmento de Irideus", "name_ru_RU": "Фрагмент Иридия", "name_it_IT": "Frammento di Irideus", "name_pt_PT": "Fragmento de Irideus", "on_use": true, "id_encounter": 2504, "id_journal_instance": 1204, "id_map": 2527, "instance_type": 1}, {"id": 193748, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kyrakka's Searing Embers", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 546830, "buy_price": 2734151, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768000245094299, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Kyrakka's Searing Embers", "name_ko_KR": "카이락카의 불타는 잿불", "name_fr_FR": "Braises ardentes de Kyrakka", "name_de_DE": "Kyrakkas sengende Glut", "name_zh_CN": "基拉卡的灼热余烬", "name_es_ES": "Ascuas abrasadoras de Kyrakka", "name_ru_RU": "Раскаленные угли Киракки", "name_it_IT": "Braci Roventi di Kyrakka", "name_pt_PT": "Brasas Calcinantes de Kyrakka", "on_use": false, "id_encounter": 2503, "id_journal_instance": 1202, "id_map": 2521, "instance_type": 1}, {"id": 193757, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ruby Whelp Shell", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 580139, "buy_price": 2900696, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0362999439239502, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Ruby Whelp Shell", "name_ko_KR": "루비 새끼용 알껍질", "name_fr_FR": "Coquille de Dragonnet rubis", "name_de_DE": "Rubinwelpenpanzer", "name_zh_CN": "红玉雏龙蛋壳", "name_es_ES": "Caparazón de vástago rubí", "name_ru_RU": "Пластина рубинового дракончика", "name_it_IT": "Guscio di Draghetto di Rubino", "name_pt_PT": "Casca de Dragonete Rubi", "on_use": true, "id_encounter": 2488, "id_journal_instance": 1202, "id_map": 2521, "instance_type": 1}, {"id": 193762, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blazebinder's Hoof", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 534402, "buy_price": 2672011, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9545999765396118, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Blazebinder's Hoof", "name_ko_KR": "불길결속자의 발굽", "name_fr_FR": "Sabot braselié", "name_de_DE": "Huf des Flammenbinders", "name_zh_CN": "缚炎者之蹄", "name_es_ES": "Pezuña de vinculador de las llamas", "name_ru_RU": "Копыто владыки пламени", "name_it_IT": "Zoccolo dell'Adepto del Fuoco", "name_pt_PT": "Casco de Ataflamas", "on_use": true, "id_encounter": 2485, "id_journal_instance": 1202, "id_map": 2521, "instance_type": 1}, {"id": 193769, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Erupting Spear Fragment", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 493897, "buy_price": 2469489, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9803000092506409, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Erupting Spear Fragment", "name_ko_KR": "분출하는 창 파편", "name_fr_FR": "Fragment de lance éruptive", "name_de_DE": "Explodierendes Speerfragment", "name_zh_CN": "爆发长矛裂片", "name_es_ES": "Fragmento de lanza en erupción", "name_ru_RU": "Взрывающийся фрагмент копья", "name_it_IT": "Frammento di Lancia Dirompente", "name_pt_PT": "Fragmento da Lança em Erupção", "on_use": true, "id_encounter": 2490, "id_journal_instance": 1199, "id_map": 2519, "instance_type": 1}, {"id": 193773, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spoils of Neltharus", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 571854, "buy_price": 2859270, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0214999914169312, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Spoils of Neltharus", "name_ko_KR": "넬타루스의 전리품", "name_fr_FR": "Butin de Neltharus", "name_de_DE": "Schätze von Neltharus", "name_zh_CN": "奈萨鲁斯战利品", "name_es_ES": "Botín de Neltharus", "name_ru_RU": "Добыча Нелтария", "name_it_IT": "Spoglie di Neltharus", "name_pt_PT": "Espólios de Neltharus", "on_use": true, "id_encounter": 2501, "id_journal_instance": 1199, "id_map": 2519, "instance_type": 1}, {"id": 193786, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mutated Magmammoth Scale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542575, "buy_price": 2712878, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692000150680542, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Mutated Magmammoth Scale", "name_ko_KR": "돌연변이 용암 매머드 비늘", "name_fr_FR": "Écaille de magmammouth muté", "name_de_DE": "Mutierte Magmammutschuppe", "name_zh_CN": "变异的岩浆猛犸鳞片", "name_es_ES": "Escama de magmamut mutada", "name_ru_RU": "Чешуйка мутировавшего магмамонта", "name_it_IT": "Scaglia di Magmammut Mutato", "name_pt_PT": "Escama de Magmamute Mutante", "on_use": false, "id_encounter": 2494, "id_journal_instance": 1199, "id_map": 2519, "instance_type": 1}, {"id": 193791, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time-Breaching Talon", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 510876, "buy_price": 2554383, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Time-Breaching Talon", "name_ko_KR": "시간 침투의 갈퀴발톱", "name_fr_FR": "Serre brèche-temps", "name_de_DE": "Zeitdurchdringende Kralle", "name_zh_CN": "时光破缺之爪", "name_es_ES": "Garfa perforatiempo", "name_ru_RU": "Пробивающий время коготь", "name_it_IT": "Artiglio Squarciatempo", "name_pt_PT": "Garra Transgressora do Tempo", "on_use": true, "id_encounter": 2479, "id_journal_instance": 1197, "id_map": 2451, "instance_type": 1}, {"id": 193805, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Resonator", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 9999, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 7, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555283, "buy_price": 2776417, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9919000267982483, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Inexorable Resonator", "name_ko_KR": "거침없는 공명기", "name_fr_FR": "Résonateur inexorable", "name_de_DE": "Unerbittlicher Schwinger", "name_zh_CN": "不屈共鸣器", "name_es_ES": "Resonador inexorable", "name_ru_RU": "Беспощадный резонатор", "name_it_IT": "Risonatore Inesorabile", "name_pt_PT": "Ressonador Inexorável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 193815, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Homeland Raid Horn", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 575828, "buy_price": 2879144, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Homeland Raid Horn", "name_ko_KR": "고향 습격의 뿔피리", "name_fr_FR": "Cor de raid du pays", "name_de_DE": "Schlachthorn des Heimatlandes", "name_zh_CN": "家园劫掠号角", "name_es_ES": "Cuerno de banda del hogar", "name_ru_RU": "Боевой рог родной земли", "name_it_IT": "Corno d'Incursione della Patria", "name_pt_PT": "Chifre de Raide da Terra Natal", "on_use": true, "id_encounter": 2475, "id_journal_instance": 1197, "id_map": 2451, "instance_type": 1}, {"id": 193914, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crystalline Lapis", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 509211, "buy_price": 2546059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506999850273132, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 216, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Crystalline Lapis", "name_ko_KR": "수정 청금석", "name_fr_FR": "Lapis cristallin", "name_de_DE": "Kristalliner Lapis", "name_zh_CN": "水晶矶", "name_es_ES": "Lapislázuli cristalino", "name_ru_RU": "Кристаллический лазурит", "name_it_IT": "Lapis Cristallino", "name_pt_PT": "Lápis Cristalino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194299, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Decoration of Flame", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 737248, "buy_price": 3686243, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9988999962806702, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 389, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 6, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Decoration of Flame", "name_ko_KR": "화염의 장식", "name_fr_FR": "Insigne des flammes", "name_de_DE": "Flammendekoration", "name_zh_CN": "烈焰彩饰", "name_es_ES": "Decoración de llama", "name_ru_RU": "Украшение пламени", "name_it_IT": "Decorazione di Fiamma", "name_pt_PT": "Enfeite de Chama", "on_use": true, "id_encounter": 2480, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Conjured Chillglobe", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 739979, "buy_price": 3699897, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 389, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Conjured Chillglobe", "name_ko_KR": "창조된 혹한구", "name_fr_FR": "Frimasphère invoquée", "name_de_DE": "Herbeigezauberte Frostkugel", "name_zh_CN": "咒启寒球", "name_es_ES": "Globohelado conjurado", "name_ru_RU": "Чародейская леденящая сфера", "name_it_IT": "Globo di Gelo Evocato", "name_pt_PT": "Globofrio Conjurado", "on_use": true, "id_encounter": 2486, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Whispering Incarnate Icon", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 745611, "buy_price": 3728057, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0062999725341797, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 395, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Whispering Incarnate Icon", "name_ko_KR": "속삭이는 현신의 징표", "name_fr_FR": "Icône d’Incarnation murmurante", "name_de_DE": "Flüsterndes Symbol der Inkarnation", "name_zh_CN": "低语化身圣像", "name_es_ES": "Icono de Encarnación susurrante", "name_ru_RU": "Знак воплощения шепота", "name_it_IT": "Icona dell'Incarnazione Sussurrante", "name_pt_PT": "Ícone Encarnado Sussurrante", "on_use": false, "id_encounter": 2486, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Storm-Eater's Boon", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 748353, "buy_price": 3741765, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0099999904632568, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 395, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Storm-Eater's Boon", "name_ko_KR": "폭풍포식자의 은혜", "name_fr_FR": "Faveur de la Mange-tempêtes", "name_de_DE": "Segen der Sturmfresserin", "name_zh_CN": "噬雷之龙的恩赐", "name_es_ES": "Favor de la Devoradora de Tormentas", "name_ru_RU": "Благословение Пожирательницы Бурь", "name_it_IT": "Dono della Mangiatempeste", "name_pt_PT": "Dom da Devoradora de Tempestade", "on_use": true, "id_encounter": 2502, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rumbling Ruby", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 748098, "buy_price": 3740491, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0135999917984009, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 389, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Rumbling Ruby", "name_ko_KR": "전율하는 루비", "name_fr_FR": "Rubis grondant", "name_de_DE": "Rasselnder Rubin", "name_zh_CN": "轰鸣红玉", "name_es_ES": "Rubí resonante", "name_ru_RU": "Рокочущий рубин", "name_it_IT": "Rubino Tremante", "name_pt_PT": "Rubi Tonitruante", "on_use": false, "id_encounter": 2500, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Iceblood Deathsnare", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 770387, "buy_price": 3851938, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0437999963760376, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 389, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Iceblood Deathsnare", "name_ko_KR": "얼음피 죽음덫", "name_fr_FR": "Piège mortel sang-de-glace", "name_de_DE": "Eisbluttodesfessel", "name_zh_CN": "冰血陨网", "name_es_ES": "Sangrehielo frenamuerte", "name_ru_RU": "Смертельные силки ледяной крови", "name_it_IT": "Trappola Mortale di Brinarossa", "name_pt_PT": "Ardil da Morte de Sanguefrio", "on_use": true, "id_encounter": 2482, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Controlled Current Technique", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 776138, "buy_price": 3880692, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0475000143051147, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 395, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Controlled Current Technique", "name_ko_KR": "전류 제어의 기술", "name_fr_FR": "Technique de contrôle des courants", "name_de_DE": "Kontrollierte Strömungstechnik", "name_zh_CN": "驭电之术", "name_es_ES": "Técnica de corriente controlada", "name_ru_RU": "Техника направленных течений", "name_it_IT": "Tecnica della Corrente Controllata", "name_pt_PT": "Técnica Atual Controlada", "on_use": false, "id_encounter": 2491, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "All-Totem of the Master", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 704637, "buy_price": 3523186, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509999752044678, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 395, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "All-Totem of the Master", "name_ko_KR": "대가의 만물 토템", "name_fr_FR": "Maint-totem magistral", "name_de_DE": "Alltotem des Meisters", "name_zh_CN": "大师的万物图腾", "name_es_ES": "Tótem multiusos del maestro", "name_ru_RU": "Всемогущий тотем повелителя", "name_it_IT": "Totem Totale del Maestro", "name_pt_PT": "Totem Total do Mestre", "on_use": false, "id_encounter": 2491, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Broodkeeper's Promise", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 708759, "buy_price": 3543796, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9546999931335449, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Broodkeeper's Promise", "name_ko_KR": "혈족지기의 약속", "name_fr_FR": "Promesse de la garde-couvée", "name_de_DE": "Versprechen der Bruthüterin", "name_zh_CN": "巢穴守护者的诺言", "name_es_ES": "Promesa de la vigilante de linaje", "name_ru_RU": "Обещание хранительницы стаи", "name_it_IT": "Promessa della Custode della Progenie", "name_pt_PT": "Promessa da Guarda-prole", "on_use": true, "id_encounter": 2493, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Manic Grieftorch", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 711506, "buy_price": 3557531, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9584000110626221, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Manic Grieftorch", "name_ko_KR": "광기 어린 회한의 횃불", "name_fr_FR": "Morneflamme psychotique", "name_de_DE": "Manische Trauerfackel", "name_zh_CN": "癫狂伤逝火炬", "name_es_ES": "Penarígneo demente", "name_ru_RU": "Одержимый светоч горя", "name_it_IT": "Fiocaluce Frenetica", "name_pt_PT": "Tocha Fúnebre Maníaca", "on_use": true, "id_encounter": 2493, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spiteful Storm", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 714253, "buy_price": 3571265, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9621000289916992, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Spiteful Storm", "name_ko_KR": "원한에 찬 폭풍", "name_fr_FR": "Tempête malveillante", "name_de_DE": "Boshafter Sturm", "name_zh_CN": "怨恨风暴", "name_es_ES": "Tormenta rencorosa", "name_ru_RU": "Злопамятный вихрь", "name_it_IT": "Tempesta Adirata", "name_pt_PT": "Tempestade Detestável", "on_use": false, "id_encounter": 2499, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Desperate Invoker's Codex", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 716925, "buy_price": 3584628, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9657000303268433, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Desperate Invoker's Codex", "name_ko_KR": "절박한 기원사의 전서", "name_fr_FR": "Codex d’invocation désespérée", "name_de_DE": "Kodex des verzweifelten Herbeirufers", "name_zh_CN": "渴念祷言者的法典", "name_es_ES": "Códice de invocador desesperado", "name_ru_RU": "Кодекс отчаявшегося заклинателя", "name_it_IT": "Codice dell'Invocatore Disperato", "name_pt_PT": "Códice do Invocador Desesperado", "on_use": true, "id_encounter": 2499, "id_journal_instance": 1200, "id_map": 2522, "instance_type": 2}, {"id": 194333, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ekrazathal's Colored Fang", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 523084, "buy_price": 2615422, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9765999913215637, "flags_1": 557056, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 216, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Ekrazathal's Colored Fang", "name_ko_KR": "에크라자탈의 색에 물든 송곳니", "name_fr_FR": "Croc coloré d’Ekrazathal", "name_de_DE": "Ekrazathals bunter Reißzahn", "name_zh_CN": "艾克拉扎泰的着色獠牙", "name_es_ES": "Colmillo de colores de Ekrazathal", "name_ru_RU": "Окрашенный клык Экразатала", "name_it_IT": "Zanna Colorata di Ekrazathal", "name_pt_PT": "Presa Colorida de Ekrazathal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194368, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Worldbreaker's Charm", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 410497, "buy_price": 2052486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.984499990940094, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Worldbreaker's Charm", "name_ko_KR": "세계파괴자의 부적", "name_fr_FR": "Charme de brise-monde", "name_de_DE": "Talisman des Weltenbrechers", "name_zh_CN": "灭世者护符", "name_es_ES": "Encantamiento de rompemundos", "name_ru_RU": "Амулет разрушителей миров", "name_it_IT": "Talismano del Devastamondi", "name_pt_PT": "Patuá do Quebramundo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194399, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lifegift Ruby", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 410497, "buy_price": 2052486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Lifegift Ruby", "name_ko_KR": "생명의 선물 루비", "name_fr_FR": "Rubis du don de vie", "name_de_DE": "Lebensgaberubin", "name_zh_CN": "生命赐福红玉", "name_es_ES": "Rubí regalavida", "name_ru_RU": "Рубин дара жизни", "name_it_IT": "Rubino Portavita", "name_pt_PT": "Rubi do Dom da Vida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194416, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Titan Lightning Generator", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 471473, "buy_price": 2357367, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0400999784469604, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Titan Lightning Generator", "name_ko_KR": "티탄 번개 생성기", "name_fr_FR": "Générateur d’éclairs titanesques", "name_de_DE": "Titanenblitzgenerator", "name_zh_CN": "泰坦闪电发生器", "name_es_ES": "Generador de relámpagos de titán", "name_ru_RU": "Генератор молний титанов", "name_it_IT": "Generatore di Fulmini Titanico", "name_pt_PT": "Gerador de Raios Titânico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194531, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Claw-Carved Figurine", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0475000143051147, "flags_1": 557056, "flags_2": 24576, "flags_3": 8388608, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 4096, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Claw-Carved Figurine", "name_ko_KR": "발톱에 긁힌 조각상", "name_fr_FR": "Figurine taillée à coups de griffes", "name_de_DE": "Klauengeschnitzte Figur", "name_zh_CN": "爪刻雕像", "name_es_ES": "Figura tallada con garras", "name_ru_RU": "Вырезанная когтями фигурка", "name_it_IT": "Statuetta Intagliata con Artigli", "name_pt_PT": "Estatueta Entalhada à Garra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194532, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blue Winglord's Insignia", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509999752044678, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 50, "class_mask": 4096, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Blue Winglord's Insignia", "name_ko_KR": "푸른 날개군주의 인장", "name_fr_FR": "Insigne d’altesse-ailée bleue", "name_de_DE": "Blaue Insigne des Schwingenfürsten", "name_zh_CN": "蓝龙翼尉徽章", "name_es_ES": "Insignia del señor alado azul", "name_ru_RU": "Синий знак крылатого властелина", "name_it_IT": "Fregio del Signore dello Stormo Blu", "name_pt_PT": "Insígnia do Lorde-de-ala Azul", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 194872, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck Box: Inferno", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9546999931335449, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 16908288, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck Box: Inferno", "name_ko_KR": "다크문 카드 한 벌 상자: 불지옥", "name_fr_FR": "Boîte de suite de Sombrelune : Inferno", "name_de_DE": "Dunkelmondkartensetschachtel: Inferno", "name_zh_CN": "暗月套牌盒:地狱火", "name_es_ES": "Caja de la colección de la Luna Negra: Inferno", "name_ru_RU": "Коробочка с картами Новолуния \"Преисподняя\"", "name_it_IT": "Scatola del Mazzo dell'Inferno di Lunacupa", "name_pt_PT": "Caixa de Baralho de Negraluna: Inferno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 195219, "race_mask": 18446744073709551615, "desc": "A bit of reclaimed red dragonflight magic remains.", "pad2": "", "pad1": "", "pad0": "", "name": "Magmasworn Spearhead", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 3650, "stat_alloc_4": 3350, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 40, "stat_type_4": 32, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9840999841690063, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 314, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Magmasworn Spearhead", "name_ko_KR": "용암서약 창촉", "name_fr_FR": "Fer de lance magmalige", "name_de_DE": "Magmagebundene Speerspitze", "name_zh_CN": "岩浆之誓枪头", "name_es_ES": "Punta de lanza juramagma", "name_ru_RU": "Наконечник копья магмарожденных", "name_it_IT": "Punta di Lancia dei Giuramagma", "name_pt_PT": "Ponta de Lança Devota do Magma", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 195220, "race_mask": 18446744073709551615, "desc": "Struck by a bolt of lightning and no longer able to tell time, its power nonetheless lingers.", "pad2": "", "pad1": "", "pad0": "", "name": "Uncanny Pocketwatch", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.014299988746643, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 314, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Uncanny Pocketwatch", "name_ko_KR": "기묘한 회중시계", "name_fr_FR": "Montre de gousset remarquable", "name_de_DE": "Unheimliche Taschenuhr", "name_zh_CN": "离奇怀表", "name_es_ES": "Reloj de bolsillo misterioso", "name_ru_RU": "Жутковатые карманные часы", "name_it_IT": "Orologio da Tasca Prodigioso", "name_pt_PT": "Relógio de Bolso Portentoso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 197846, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ohn'ahra's Carving", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 437974, "buy_price": 2189874, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9661999940872192, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Ohn'ahra's Carving", "name_ko_KR": "온아라의 조각품", "name_fr_FR": "Gravure d’Ohn’ahra", "name_de_DE": "Ohn'ahras Schnitzerei", "name_zh_CN": "欧恩哈拉雕像", "name_es_ES": "Talla de Ohn'ahra", "name_ru_RU": "Резное изображение Он'ары", "name_it_IT": "Incisione di Ohn'ahra", "name_pt_PT": "Entalhe de Ohn'ahra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 197934, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancestral Protector's Stone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0216000080108643, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Ancestral Protector's Stone", "name_ko_KR": "선조 수호자의 돌", "name_fr_FR": "Pierre de protection ancestrale", "name_de_DE": "Schutzstein der Ahnen", "name_zh_CN": "先祖保护者之石", "name_es_ES": "Piedra del protector ancestral", "name_ru_RU": "Камень предка-защитника", "name_it_IT": "Pietra del Protettore Ancestrale", "name_pt_PT": "Pedra do Protetor Ancestral", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 197960, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bag of Biscuits", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 439652, "buy_price": 2198260, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9699000120162964, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Bag of Biscuits", "name_ko_KR": "비스킷 가방", "name_fr_FR": "Sac de biscuits", "name_de_DE": "Beutel mit Keksen", "name_zh_CN": "一袋饼干", "name_es_ES": "Bolsa de galletas", "name_ru_RU": "Мешок с галетами", "name_it_IT": "Sacchetto di Biscotti", "name_pt_PT": "Saco de Biscoitos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198036, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spineripper's Fang", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 533729, "buy_price": 2668645, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Spineripper's Fang", "name_ko_KR": "허리파괴자의 송곳니", "name_fr_FR": "Croc de Brise-Échine", "name_de_DE": "Wirbelreißers Reißzahn", "name_zh_CN": "裂脊者之牙", "name_es_ES": "Colmillo de Rasgaespinazos", "name_ru_RU": "Клык Хребтодерки", "name_it_IT": "Zanna di Strappaschiena", "name_pt_PT": "Presa de Rasga-espinha", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198037, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brimming Arcanocrystal", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 446451, "buy_price": 2232257, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Brimming Arcanocrystal", "name_ko_KR": "충만한 비전수정", "name_fr_FR": "Arcanocristal saturé", "name_de_DE": "Überladener Arkanokristall", "name_zh_CN": "满溢的奥能水晶", "name_es_ES": "Arcanocristal rebosante", "name_ru_RU": "Переполненный чародейский кристалл", "name_it_IT": "Arcanocristallo Vibrante", "name_pt_PT": "Arcanocristal Transbordante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198081, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Caregiver's Charm", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0257999897003174, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Caregiver's Charm", "name_ko_KR": "간병인의 부적", "name_fr_FR": "Charme d’auxiliaire", "name_de_DE": "Amulett des Pflegers", "name_zh_CN": "看护者的护符", "name_es_ES": "Talismán de cuidador", "name_ru_RU": "Амулет пастыря", "name_it_IT": "Talismano dell'Assistente", "name_pt_PT": "Patuá do Cuidador", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198086, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Inferno", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0441999435424805, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 131072, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Inferno", "name_ko_KR": "다크문 카드 한 벌: 불지옥", "name_fr_FR": "Suite de Sombrelune : Inferno", "name_de_DE": "Dunkelmondkartenset: Inferno", "name_zh_CN": "暗月套牌:地狱火", "name_es_ES": "Colección de la Luna Negra: Inferno", "name_ru_RU": "Колода карт Новолуния \"Преисподняя\"", "name_it_IT": "Mazzo dell'Inferno di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Inferno", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198087, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Rime", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0477999448776245, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 131072, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Rime", "name_ko_KR": "다크문 카드 한 벌: 서리", "name_fr_FR": "Suite de Sombrelune : Frimas", "name_de_DE": "Dunkelmondkartenset: Raureif", "name_zh_CN": "暗月套牌:淞", "name_es_ES": "Colección de la Luna Negra: Helada blanca", "name_ru_RU": "Колода карт Новолуния \"Иней\"", "name_it_IT": "Mazzo della Brina di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Geada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198088, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Dance", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9513999819755554, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 131072, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Dance", "name_ko_KR": "다크문 카드 한 벌: 춤", "name_fr_FR": "Suite de Sombrelune : Danse", "name_de_DE": "Dunkelmondkartenset: Tanz", "name_zh_CN": "暗月套牌:舞", "name_es_ES": "Colección de la Luna Negra: Danza", "name_ru_RU": "Колода карт Новолуния \"Танец\"", "name_it_IT": "Mazzo della Danza di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Dança Revigorante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198089, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Watcher", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9550999999046326, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 131072, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Watcher", "name_ko_KR": "다크문 카드 한 벌: 감시자", "name_fr_FR": "Suite de Sombrelune : Veille", "name_de_DE": "Dunkelmondkartenset: Behüter", "name_zh_CN": "暗月套牌:看护者", "name_es_ES": "Colección de la Luna Negra: Vigía", "name_ru_RU": "Колода карт Новолуния \"Дозорный\"", "name_it_IT": "Mazzo del Guardiano di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Vigia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198407, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Azure Arcanic Amplifier", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9514999985694885, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Azure Arcanic Amplifier", "name_ko_KR": "하늘빛 비전 증폭기", "name_fr_FR": "Amplificateur arcanique azur", "name_de_DE": "Azurarkanverstärker", "name_zh_CN": "碧蓝奥术增幅器", "name_es_ES": "Amplificador Arcano azur", "name_ru_RU": "Лазурный чародейский усилитель", "name_it_IT": "Amplificatore Arcanico Azzurro", "name_pt_PT": "Amplificador Arcânico Lazúli", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198432, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crude Wind Charm", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 527528, "buy_price": 2637640, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9697999954223633, "flags_1": 65536, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Crude Wind Charm", "name_ko_KR": "조잡한 바람의 부적", "name_fr_FR": "Charme de vent brut", "name_de_DE": "Primitives Windamulett", "name_zh_CN": "粗制柔风护符", "name_es_ES": "Talismán de viento rudimentario", "name_ru_RU": "Грубый оберег ветра", "name_it_IT": "Talismano del Vento Rudimentale", "name_pt_PT": "Patuá do Vento Rudimentar", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198451, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Lifeflame Ampoule", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Lifeflame Ampoule", "name_ko_KR": "생명불꽃 유리병", "name_fr_FR": "Ampoule de flamme de vie", "name_de_DE": "Lebensflammenampulle", "name_zh_CN": "生命之火安瓿瓶", "name_es_ES": "Ampolleta de llama de vida", "name_ru_RU": "Флакон пламени жизни", "name_it_IT": "Ampolla di Fiamma Vitale", "name_pt_PT": "Ampola de Chama da Vida", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198477, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck Box: Rime", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0144000053405762, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 16908288, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck Box: Rime", "name_ko_KR": "다크문 카드 한 벌 상자: 서리", "name_fr_FR": "Boîte de suite de Sombrelune : Frimas", "name_de_DE": "Dunkelmondkartensetschachtel: Raureif", "name_zh_CN": "暗月套牌盒:淞", "name_es_ES": "Caja de la colección de la Luna Negra: Helada blanca", "name_ru_RU": "Коробочка с картами Новолуния \"Иней\"", "name_it_IT": "Scatola del Mazzo della Brina di Lunacupa", "name_pt_PT": "Caixa de Baralho de Negraluna: Geada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198478, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck Box: Dance", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0180000066757202, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 16908288, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck Box: Dance", "name_ko_KR": "다크문 카드 한 벌 상자: 춤", "name_fr_FR": "Boîte de suite de Sombrelune : Danse", "name_de_DE": "Dunkelmondkartensetschachtel: Tanz", "name_zh_CN": "暗月套牌盒:舞", "name_es_ES": "Caja de la colección de la Luna Negra: Danza", "name_ru_RU": "Коробочка с картами Новолуния \"Танец\"", "name_it_IT": "Scatola del Mazzo della Danza di Lunacupa", "name_pt_PT": "Caixa de Baralho de Negraluna: Dança Revigorante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198481, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck Box: Watcher", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 472, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.029099941253662, "flags_1": 64, "flags_2": 8192, "flags_3": 0, "flags_4": 16908288, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck Box: Watcher", "name_ko_KR": "다크문 카드 한 벌 상자: 감시자", "name_fr_FR": "Boîte de suite de Sombrelune : Veille", "name_de_DE": "Dunkelmondkartensetschachtel: Behüter", "name_zh_CN": "暗月套牌盒:看护者", "name_es_ES": "Caja de la colección de la Luna Negra: Vigía", "name_ru_RU": "Коробочка с картами Новолуния: \"Дозорный\"", "name_it_IT": "Scatola del Mazzo del Guardiano di Lunacupa", "name_pt_PT": "Caixa de Baralho de Negraluna: Vigia", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198489, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dreamscape Prism", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9848999977111816, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Dreamscape Prism", "name_ko_KR": "꿈결 분광경", "name_fr_FR": "Prisme du domaine des songes", "name_de_DE": "Traumlandschaftprisma", "name_zh_CN": "梦境之地棱镜", "name_es_ES": "Prisma de paisaje onírico", "name_ru_RU": "Призма сна", "name_it_IT": "Prisma Onirico", "name_pt_PT": "Prisma da Paisagem Onírica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198490, "race_mask": 18446744073709551615, "desc": "Veteran explorers know that a compass is the best way to get out of (and in to) trouble.", "pad2": "", "pad1": "", "pad0": "", "name": "Bushwhacker's Compass", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9884999990463257, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Bushwhacker's Compass", "name_ko_KR": "덤불잠복꾼의 나침반", "name_fr_FR": "Boussole de Papy Broussard", "name_de_DE": "Kompass des Buschräubers", "name_zh_CN": "丛林霸王的罗盘", "name_es_ES": "Brújula de Matagolpe", "name_ru_RU": "Компас первопроходца", "name_it_IT": "Bussola di Sfasciasiepi", "name_pt_PT": "Bússola do Atacamato", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198529, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wayfarer's Iron Torch", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9846000075340271, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Wayfarer's Iron Torch", "name_ko_KR": "길잡이의 강철 횃불", "name_fr_FR": "Torche de voyage en fer", "name_de_DE": "Eiserne Fackel des Wanderers", "name_zh_CN": "旅行者的钢铁火炬", "name_es_ES": "Antorcha de hierro de caminante", "name_ru_RU": "Железный факел странника", "name_it_IT": "Torcia di Ferro del Vagabondo", "name_pt_PT": "Tocha de Ferro do Viajante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198532, "race_mask": 18446744073709551615, "desc": "What separates a master cartographer from the rest is one thing: precision.", "pad2": "", "pad1": "", "pad0": "", "name": "The Cartographer's Calipers", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "The Cartographer's Calipers", "name_ko_KR": "지도제작자의 지름자", "name_fr_FR": "Compas de cartographe", "name_de_DE": "Die Messschieber des Kartografen", "name_zh_CN": "制图师的卡尺", "name_es_ES": "Calibradores del cartógrafo", "name_ru_RU": "Штангенциркуль картографа", "name_it_IT": "Calibri del Cartografo", "name_pt_PT": "Os Paquímetros do Cartógrafo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198539, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breath of the Plains", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0477999448776245, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Breath of the Plains", "name_ko_KR": "평야의 숨결", "name_fr_FR": "Souffle des plaines", "name_de_DE": "Atem der Ebenen", "name_zh_CN": "平原之息", "name_es_ES": "Aliento de las llanuras", "name_ru_RU": "Дыхание равнин", "name_it_IT": "Respiro delle Pianure", "name_pt_PT": "Sopro da Chapada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198542, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shikaari Huntress' Arrowhead", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9587000012397766, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Shikaari Huntress' Arrowhead", "name_ko_KR": "시카르 여사냥꾼의 화살촉", "name_fr_FR": "Pointe de flèche de chasseuse shikaar", "name_de_DE": "Pfeilspitze der Shikaarjägerin", "name_zh_CN": "席卡尔女猎手的箭头", "name_es_ES": "Punta de flecha de cazadora Shikaar", "name_ru_RU": "Наконечник стрелы шикаарской охотницы", "name_it_IT": "Punta di Freccia della Cacciatrice Shikaar", "name_pt_PT": "Ponta de Flecha da Caçadora Shikaari", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198627, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blood of the Khansguard", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0296000242233276, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Blood of the Khansguard", "name_ko_KR": "칸수호병의 피", "name_fr_FR": "Sang de la garde du khanat", "name_de_DE": "Blut der Khanswache", "name_zh_CN": "可汗卫队之血", "name_es_ES": "Sangre de la guardia del khan", "name_ru_RU": "Кровь кешиктена", "name_it_IT": "Sangue della Guardia del Khan", "name_pt_PT": "Sangue da Guardakhan", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 198695, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottomless Reliquary Satchel", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9850000143051147, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Bottomless Reliquary Satchel", "name_ko_KR": "바닥이 없는 성물회 주머니", "name_fr_FR": "Sacoche sans fond du Reliquaire", "name_de_DE": "Endloses Säckchen der Archäologischen Akademie", "name_zh_CN": "无底神圣遗物学会矿物包", "name_es_ES": "Bolsa del Relicario sin fondo", "name_ru_RU": "Бездонный мешок Реликвария", "name_it_IT": "Borsa del Reliquiario Senza Fondo", "name_pt_PT": "Algibeira de Relicário Sem Fundo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199029, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stonewatcher's Toe", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 408163, "buy_price": 2040818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9666000008583069, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Stonewatcher's Toe", "name_ko_KR": "바위감시자의 발가락", "name_fr_FR": "Orteil de guetteur de pierre", "name_de_DE": "Zeh der Steinwache", "name_zh_CN": "岩石看护者的脚趾", "name_es_ES": "Dedo del pie de vigía de piedra", "name_ru_RU": "Мизинец каменного стража", "name_it_IT": "Alluce della Guardia della Pietra", "name_pt_PT": "Dedão do Vigia de Pedra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199030, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stonewatcher's Thumb", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 408163, "buy_price": 2040818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.970300018787384, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Stonewatcher's Thumb", "name_ko_KR": "바위감시자의 엄지", "name_fr_FR": "Pouce de guetteur de pierre", "name_de_DE": "Daumen der Steinwache", "name_zh_CN": "岩石看护者的拇指", "name_es_ES": "Pulgar de vigía de piedra", "name_ru_RU": "Большой палец каменного стража", "name_it_IT": "Pollice della Guardia della Pietra", "name_pt_PT": "Polegar do Vigia de Pedra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199031, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stonewatcher's Eye", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 408163, "buy_price": 2040818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739999771118164, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Stonewatcher's Eye", "name_ko_KR": "바위감시자의 눈", "name_fr_FR": "Œil de guetteur de pierre", "name_de_DE": "Auge der Steinwache", "name_zh_CN": "岩石看护者之眼", "name_es_ES": "Ojo de vigía de piedra", "name_ru_RU": "Глаз каменного стража", "name_it_IT": "Occhio della Guardia della Pietra", "name_pt_PT": "Olho do Vigia de Pedra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199555, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Versatile Storm Lure", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044100046157837, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 252, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Versatile Storm Lure", "name_ko_KR": "다용도 폭풍 미끼", "name_fr_FR": "Appât tempétueux polyvalent", "name_de_DE": "Vielseitiger Sturmköder", "name_zh_CN": "万能风暴诱饵", "name_es_ES": "Cebo de tormenta versátil", "name_ru_RU": "Изменчивая приманка бури", "name_it_IT": "Esca della Tempesta Versatile", "name_pt_PT": "Isca Tempestuosa Versátil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199645, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Storm Hunter's Insignia", "id_expansion": 8, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0333000421524048, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 252, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Storm Hunter's Insignia", "name_ko_KR": "폭풍 사냥꾼의 인장", "name_fr_FR": "Insigne de chasse-tempêtes", "name_de_DE": "Insigne des Sturmjägers", "name_zh_CN": "风暴猎手的徽记", "name_es_ES": "Insignia de cazador de tormentas", "name_ru_RU": "Знак охотника бури", "name_it_IT": "Fregio del Cacciatore della Tempesta", "name_pt_PT": "Insígnia do Caçador da Tempestade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 199686, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Elemental Confluence", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0367000102996826, "flags_1": 134746176, "flags_2": 139264, "flags_3": 512, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2055, "id_curve": 956, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 0, "inv_type": 12, "quality": 7, "name_en_US": "Unstable Elemental Confluence", "name_ko_KR": "불안정한 정령 동화체", "name_fr_FR": "Confluence élémentaire instable", "name_de_DE": "Instabiler Elementarzusammenfluss", "name_zh_CN": "不稳定的元素汇流", "name_es_ES": "Confluencia elemental inestable", "name_ru_RU": "Нестабильное слияние стихий", "name_it_IT": "Confluenza Elementale Instabile", "name_pt_PT": "Confluência Elemental Instável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Razorwind Talisman", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 451929, "buy_price": 2259648, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9739999771118164, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 398, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Razorwind Talisman", "name_ko_KR": "칼끝바람 부적", "name_fr_FR": "Talisman de Tranchevent", "name_de_DE": "Klingenschluchttalisman", "name_zh_CN": "烈风护符", "name_es_ES": "Talismán del Ventajo", "name_ru_RU": "Талисман режущего ветра", "name_it_IT": "Talismano Fendivento", "name_pt_PT": "Talismã de Vento Cortante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200217, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Blazing Essence", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 4444, "stat_alloc_3": 2222, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": 36, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 517512, "buy_price": 2587562, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.958899974822998, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Blazing Essence", "name_ko_KR": "이글거리는 정수", "name_fr_FR": "Essence embrasée", "name_de_DE": "Brennende Essenz", "name_zh_CN": "燃焰精华", "name_es_ES": "Esencia llameante", "name_ru_RU": "Горящая сущность", "name_it_IT": "Essenza Fiammeggiante", "name_pt_PT": "Essência Fulgurante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200236, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Memory of Nulltheria", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 529763, "buy_price": 2648818, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9815999865531921, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Memory of Nulltheria", "name_ko_KR": "눌테리아의 기억", "name_fr_FR": "Souvenir de Néanthéria", "name_de_DE": "Erinnerung an Nulltheria", "name_zh_CN": "娜尔瑟莉亚的回忆", "name_es_ES": "Recuerdo de Nulltheria", "name_ru_RU": "Воспоминание о Нултерии", "name_it_IT": "Ricordo di Nulltheria", "name_pt_PT": "Lembrança de Nulltheria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200536, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tamed Eagle", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 517566, "buy_price": 2587832, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9589999914169312, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Tamed Eagle", "name_ko_KR": "길들인 독수리", "name_fr_FR": "Aigle apprivoisé", "name_de_DE": "Gezähmter Adler", "name_zh_CN": "驯服之鹰", "name_es_ES": "Águila domada", "name_ru_RU": "Прирученный орел", "name_it_IT": "Aquila Addomesticata", "name_pt_PT": "Águia Domada", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200542, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Breezy Companion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 543741, "buy_price": 2718708, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0075000524520874, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Breezy Companion", "name_ko_KR": "동반의 산들바람", "name_fr_FR": "Compagnon venteux", "name_de_DE": "Windiger Begleiter", "name_zh_CN": "轻风伙伴", "name_es_ES": "Compañero airoso", "name_ru_RU": "Ветреный спутник", "name_it_IT": "Compagno Ventoso", "name_pt_PT": "Mascote Jovial", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200549, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Restored Titan Artifact", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 557611, "buy_price": 2788059, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0332000255584717, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Restored Titan Artifact", "name_ko_KR": "복원된 티탄 유물", "name_fr_FR": "Artéfact des Titans restauré", "name_de_DE": "Restauriertes Titanenartefakt", "name_zh_CN": "修复的泰坦神器", "name_es_ES": "Artefacto titánico restaurado", "name_ru_RU": "Восстановленный артефакт титанов", "name_it_IT": "Manufatto dei Titani Restaurato", "name_pt_PT": "Artefato Titânico Recuperado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200552, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Torrent Caller's Shell", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 563602, "buy_price": 2818012, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0442999601364136, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Torrent Caller's Shell", "name_ko_KR": "격류 소환사의 껍질", "name_fr_FR": "Coquille de mande-torrent", "name_de_DE": "Hülle des Schwallrufers", "name_zh_CN": "洪流呼唤者之壳", "name_es_ES": "Caparazón de invocador de torrentes", "name_ru_RU": "Раковина призывателя ливней", "name_it_IT": "Guscio dell'Invocatore del Torrente", "name_pt_PT": "Casco do Evocador da Torrente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200563, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Primal Ritual Shell", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545684, "buy_price": 2728423, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0111000537872314, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Primal Ritual Shell", "name_ko_KR": "원시 의식 껍질", "name_fr_FR": "Carapace rituelle primordiale", "name_de_DE": "Urzeitliche Ritualmuschel", "name_zh_CN": "原始仪式甲壳", "name_es_ES": "Caparazón de ritual primigenio", "name_ru_RU": "Панцирь для изначального ритуала", "name_it_IT": "Guscio Rituale Primordiale", "name_pt_PT": "Casco de Ritual Primevo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200673, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beogoka's Tooth and Claw", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539748, "buy_price": 2698740, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000100016593933, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Beogoka's Tooth and Claw", "name_ko_KR": "비오고카의 이빨과 발톱", "name_fr_FR": "Griffes et crocs de Béogoka", "name_de_DE": "Beogokas Klauen und Zähne", "name_zh_CN": "贝欧戈卡的尖牙与利爪", "name_es_ES": "Garras y dientes de Beogoka", "name_ru_RU": "Зуб и коготь Беогоки", "name_it_IT": "Unghie e Denti di Beogoka", "name_pt_PT": "Unhas e Dentes de Beogoka", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200676, "race_mask": 18446744073709551615, "desc": "It's still sparking. What could go wrong?", "pad2": "", "pad1": "", "pad0": "", "name": "Static-Charged Scale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 746253, "buy_price": 3731265, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0111000537872314, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 389, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Static-Charged Scale", "name_ko_KR": "정전기로 충만해진 비늘", "name_fr_FR": "Écaille chargée d’électricité statique", "name_de_DE": "Statisch aufgeladene Schuppe", "name_zh_CN": "静电充能之鳞", "name_es_ES": "Escama cargada con electricidad estática", "name_ru_RU": "Наэлектризованная чешуйка", "name_it_IT": "Scaglia Caricata Staticamente", "name_pt_PT": "Escama Carregada de Estática", "on_use": false, "id_encounter": 2515, "id_journal_instance": 1205, "id_map": 2574, "instance_type": 2}, {"id": 200679, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Essence of Somnikus's Shade", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 551621, "buy_price": 2758106, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Essence of Somnikus's Shade", "name_ko_KR": "솜니쿠스의 그림자 정수", "name_fr_FR": "Essence d’ombre de Somnikus", "name_de_DE": "Essenz des Schattens von Somnikus", "name_zh_CN": "索姆尼库斯阴影精华", "name_es_ES": "Esencia de la sombra de Somnikus", "name_ru_RU": "Сущность тени Сомникуса", "name_it_IT": "Essenza dell'Ombra di Somnikus", "name_pt_PT": "Vulto da Essência de Somnikus", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200735, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magically Magical Faerie Flower", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 557773, "buy_price": 2788868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0334999561309814, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Magically Magical Faerie Flower", "name_ko_KR": "요사스러운 마법 페어리 꽃", "name_fr_FR": "Fleur féerique enchantée par magie", "name_de_DE": "Auf magische Weise magische Feenblume", "name_zh_CN": "神奇的魔法妖精之花", "name_es_ES": "Flor mágica de hada", "name_ru_RU": "По-волшебному волшебный цветок фей", "name_it_IT": "Fiore Fatato Magicamente Incantato", "name_pt_PT": "Flor de Fada Magicamente Mágica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200741, "race_mask": 18446744073709551615, "desc": "A.K.A. The P.P.P.P.", "pad2": "", "pad1": "", "pad0": "", "name": "Pipspark's Prestigious Pendant of Protection", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 515623, "buy_price": 2578118, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9553999900817871, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Pipspark's Prestigious Pendant of Protection", "name_ko_KR": "핍스파크의 명예로운 방어의 펜던트", "name_fr_FR": "Pendentif prestigieux de protection de Prestéclat", "name_de_DE": "Pipfunkes pfiffiges Pendant der Protektion", "name_zh_CN": "皮普斯巴克的显赫守护吊坠", "name_es_ES": "Colgante de custodia célebre de Chisparaz", "name_ru_RU": "Престижная подвеска истины Искрописка", "name_it_IT": "Pendente Prestigioso della Protezione di Sbrillpip", "name_pt_PT": "Pingente Prestigioso de Proteção de Chispipo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200755, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gruffy's Dented Horn", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 557719, "buy_price": 2788599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.033400058746338, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Gruffy's Dented Horn", "name_ko_KR": "걸걸이의 구부러진 뿔", "name_fr_FR": "Corne abîmée de Bêla", "name_de_DE": "Schroffis verbeultes Horn", "name_zh_CN": "格鲁菲的凹陷之角", "name_es_ES": "Cuerno mellado de Indomable", "name_ru_RU": "Сколотый рог Брыкуна", "name_it_IT": "Corno Ammaccato di Gruffy", "name_pt_PT": "Chifre Serrilhado de Grufoso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200760, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Arcane Cell", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 513572, "buy_price": 2567864, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9516000151634216, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Unstable Arcane Cell", "name_ko_KR": "불안정한 비전 전지", "name_fr_FR": "Cellule arcanique instable", "name_de_DE": "Instabile arkane Zelle", "name_zh_CN": "不稳定的奥术单元", "name_es_ES": "Célula Arcana inestable", "name_ru_RU": "Нестабильная чародейская ячейка", "name_it_IT": "Cella Arcana Instabile", "name_pt_PT": "Célula Arcana Instável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200858, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Plume of the Forgotten", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 523557, "buy_price": 2617785, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9700999855995178, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Plume of the Forgotten", "name_ko_KR": "잊힌 자의 깃털", "name_fr_FR": "Plume des Oubliés", "name_de_DE": "Feder der Vergessenen", "name_zh_CN": "被忘却者的飞羽", "name_es_ES": "Pluma de los olvidados", "name_ru_RU": "Плюмаж Забытых", "name_it_IT": "Piuma dei Dimenticati", "name_pt_PT": "Pluma dos Esquecidos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200859, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Seasoned Hunter's Trophy", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 525554, "buy_price": 2627770, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.973800003528595, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Seasoned Hunter's Trophy", "name_ko_KR": "숙련된 사냥꾼의 전리품", "name_fr_FR": "Trophée de chasseur émérite", "name_de_DE": "Trophäe des erfahrenen Jägers", "name_zh_CN": "老练猎人的战利品", "name_es_ES": "Trofeo de cazador avezado", "name_ru_RU": "Трофей опытного охотника", "name_it_IT": "Trofeo del Cacciatore Esperto", "name_pt_PT": "Troféu do Caçador Experiente", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200868, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Integrated Primal Fire", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 557719, "buy_price": 2788599, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.033400058746338, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Integrated Primal Fire", "name_ko_KR": "결합된 원시 화염", "name_fr_FR": "Feu primordial intégré", "name_de_DE": "Integriertes Urfeuer", "name_zh_CN": "整合原始火焰", "name_es_ES": "Fuego primigenio integrado", "name_ru_RU": "Интегрированный изначальный огонь", "name_it_IT": "Fuoco Primordiale Integrato", "name_pt_PT": "Fogo Primevo Integrado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 200880, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wind-Sealed Mana Capsule", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 541798, "buy_price": 2708994, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0039000511169434, "flags_1": 524288, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Wind-Sealed Mana Capsule", "name_ko_KR": "바람으로 봉인된 마나 용기", "name_fr_FR": "Capsule de mana scellée par le vent", "name_de_DE": "Windversiegelte Manakapsel", "name_zh_CN": "狂风封印的法力胶囊", "name_es_ES": "Cápsula de maná sellada por el viento", "name_ru_RU": "Запечатанная ветром капсула маны", "name_it_IT": "Capsula di Mana Sigillata dal Vento", "name_pt_PT": "Cápsula de Mana Selada pelo Vento", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Aspirant's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545276, "buy_price": 2726382, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0184999704360962, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 340, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Crimson Aspirant's Badge of Ferocity", "name_ko_KR": "진홍빛 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant écarlate", "name_de_DE": "Wildheitsabzeichen des blutroten Aspiranten", "name_zh_CN": "猩红候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante carmesí", "name_ru_RU": "Жетон свирепости багрового претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Cremisi", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201450, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Aspirant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 535406, "buy_price": 2677033, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 340, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Crimson Aspirant's Medallion", "name_ko_KR": "진홍빛 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant écarlate", "name_de_DE": "Medaillon des blutroten Aspiranten", "name_zh_CN": "猩红候选者的勋章", "name_es_ES": "Medallón de aspirante carmesí", "name_ru_RU": "Медальон багрового претендента", "name_it_IT": "Medaglione del Pretendente Cremisi", "name_pt_PT": "Medalhão do Aspirante Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201451, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Aspirant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539174, "buy_price": 2695871, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0259000062942505, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 340, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Crimson Aspirant's Insignia of Alacrity", "name_ko_KR": "진홍빛 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant écarlate", "name_de_DE": "Inbrunstinsigne des blutroten Aspiranten", "name_zh_CN": "猩红候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante carmesí", "name_ru_RU": "Знак расторопности багрового претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Cremisi", "name_pt_PT": "Insígnia de Diligência do Aspirante Carmesim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Aspirant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 507920, "buy_price": 2539600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0296000242233276, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 340, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Crimson Aspirant's Emblem", "name_ko_KR": "진홍빛 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant écarlate", "name_de_DE": "Emblem des blutroten Aspiranten", "name_zh_CN": "猩红候选者的纹章", "name_es_ES": "Emblema de aspirante carmesí", "name_ru_RU": "Эмблема багрового претендента", "name_it_IT": "Emblema del Pretendente Cremisi", "name_pt_PT": "Emblema do Aspirante Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201453, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Aspirant's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 539280, "buy_price": 2696401, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0332000255584717, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 340, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Crimson Aspirant's Sigil of Adaptation", "name_ko_KR": "진홍빛 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant écarlate", "name_de_DE": "Siegel der Anpassung des blutroten Aspiranten", "name_zh_CN": "猩红候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante carmesí", "name_ru_RU": "Печать адаптации багрового претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Cremisi", "name_pt_PT": "Signo de Adaptação do Aspirante Carmesim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201807, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Gladiator's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 815025, "buy_price": 4075129, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0147000551223755, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Crimson Gladiator's Badge of Ferocity", "name_ko_KR": "진홍빛 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur écarlate", "name_de_DE": "Wildheitsabzeichen des blutroten Gladiators", "name_zh_CN": "猩红角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador carmesí", "name_ru_RU": "Жетон свирепости багрового гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Cremisi", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201808, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Gladiator's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 817997, "buy_price": 4089989, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.018399953842163, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Crimson Gladiator's Insignia of Alacrity", "name_ko_KR": "진홍빛 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur écarlate", "name_de_DE": "Inbrunstinsigne des blutroten Gladiators", "name_zh_CN": "猩红角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador carmesí", "name_ru_RU": "Знак расторопности багрового гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Cremisi", "name_pt_PT": "Insígnia de Diligência do Gladiador Carmesim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201809, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Gladiator's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 820969, "buy_price": 4104848, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0220999717712402, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Crimson Gladiator's Emblem", "name_ko_KR": "진홍빛 검투사의 문장", "name_fr_FR": "Emblème du gladiateur écarlate", "name_de_DE": "Emblem des blutroten Gladiators", "name_zh_CN": "猩红角斗士的纹章", "name_es_ES": "Emblema de Gladiador carmesí", "name_ru_RU": "Эмблема багрового гладиатора", "name_it_IT": "Emblema del Gladiatore Cremisi", "name_pt_PT": "Emblema do Gladiador Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Gladiator's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764824, "buy_price": 3824123, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9521999955177307, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Crimson Gladiator's Medallion", "name_ko_KR": "진홍빛 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur écarlate", "name_de_DE": "Medaillon des blutroten Gladiators", "name_zh_CN": "猩红角斗士的勋章", "name_es_ES": "Medallón de Gladiador carmesí", "name_ru_RU": "Медальон багрового гладиатора", "name_it_IT": "Medaglione del Gladiatore Cremisi", "name_pt_PT": "Medalhão do Gladiador Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 201811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Gladiator's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767716, "buy_price": 3838581, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9557999968528748, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Crimson Gladiator's Sigil of Adaptation", "name_ko_KR": "진홍빛 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur écarlate", "name_de_DE": "Siegel der Anpassung des blutroten Gladiators", "name_zh_CN": "猩红角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador carmesí", "name_ru_RU": "Печать адаптации багрового гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Cremisi", "name_pt_PT": "Signo da Adaptação do Gladiador Carmesim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 202015, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sands of Temporal Perfection", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0221999883651733, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Sands of Temporal Perfection", "name_ko_KR": "무결한 찰나의 모래", "name_fr_FR": "Sables de perfection temporelle", "name_de_DE": "Sande der temporalen Perfektion", "name_zh_CN": "完美时光之沙", "name_es_ES": "Arenas de perfección temporal", "name_ru_RU": "Пески темпорального совершенства", "name_it_IT": "Sabbie della Perfezione Temporale", "name_pt_PT": "Areias da Perfeição Temporal", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 202116, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Alacritous Alchemist Stone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 782408, "buy_price": 3912041, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9781000018119812, "flags_1": 0, "flags_2": 8192, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 405, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 4, "name_en_US": "Alacritous Alchemist Stone", "name_ko_KR": "명민의 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste empressée", "name_de_DE": "Lebhafter Alchemistenstein", "name_zh_CN": "活跃炼金石", "name_es_ES": "Piedra de alquimista de prontitud", "name_ru_RU": "Стремительный алхимический камень", "name_it_IT": "Pietra Alchemica Alacre", "name_pt_PT": "Pedra do Alquimista Álacre", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 202264, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Defender of the Winterpelt", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 6, "req_spell": 0, "sell_price": 710935, "buy_price": 3554677, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595000147819519, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 395, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Defender of the Winterpelt", "name_ko_KR": "겨울가죽의 수호자", "name_fr_FR": "Ange gardien des Crins-d’Hiver", "name_de_DE": "Verteidiger der Winterpelze", "name_zh_CN": "冬裘防御者", "name_es_ES": "Defensor de los Pelaje Invernal", "name_ru_RU": "Защитник фурболгов Зимней Шкуры", "name_it_IT": "Difensore dei Mantogelido", "name_pt_PT": "Defensor dos Couro da Neve", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 202268, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Winterpelt Totem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 5, "req_spell": 0, "sell_price": 720421, "buy_price": 3602107, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9742000102996826, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 392, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Winterpelt Totem", "name_ko_KR": "겨울가죽 토템", "name_fr_FR": "Totem crin-d’hiver", "name_de_DE": "Winterpelztotem", "name_zh_CN": "冬裘图腾", "name_es_ES": "Tótem Pelaje Invernal", "name_ru_RU": "Тотем Зимней Шкуры", "name_it_IT": "Totem dei Mantogelido", "name_pt_PT": "Totem dos Couro da Neve", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 202610, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dragonfire Bomb Dispenser", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 742414, "buy_price": 3712074, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9851999878883362, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Dragonfire Bomb Dispenser", "name_ko_KR": "용숨결 폭탄 분배 장치", "name_fr_FR": "Distributeur de bombes de feu draconique", "name_de_DE": "Drachenfeuerbombenspender", "name_zh_CN": "龙火炸弹架", "name_es_ES": "Dispensador de bombas de fuego de dragón", "name_ru_RU": "Бомбомет драконьего огня", "name_it_IT": "Distributore di Bombe di Dragonfuoco", "name_pt_PT": "Distribuidor de Bombas de Fogo de Dragão", "on_use": true, "id_encounter": 2532, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202612, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Screaming Black Dragonscale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 747991, "buy_price": 3739956, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9926000237464905, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Screaming Black Dragonscale", "name_ko_KR": "울부짖는 검은용 비늘", "name_fr_FR": "Écaille de Dragon noir hurlante", "name_de_DE": "Schreiende schwarze Drachenschuppe", "name_zh_CN": "咆哮的黑龙之鳞", "name_es_ES": "Dragontina negra aullante", "name_ru_RU": "Кричащая чешуйка черного дракона", "name_it_IT": "Scaglia di Drago Nero Urlante", "name_pt_PT": "Escama de Dragão Negro Berrante", "on_use": true, "id_encounter": 2522, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202613, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zaqali Chaos Grapnel", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767674, "buy_price": 3838374, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0226999521255493, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Zaqali Chaos Grapnel", "name_ko_KR": "자칼리 혼돈 닻가지", "name_fr_FR": "Grappin zaqali du chaos", "name_de_DE": "Chaosgreifkette der Zaqali", "name_zh_CN": "扎卡利混沌抓钩", "name_es_ES": "Rezón de caos zaqali", "name_ru_RU": "Хаотичный крюк закали", "name_it_IT": "Ancora del Caos degli Zaqali", "name_pt_PT": "Gancho do Caos Zaqali", "on_use": true, "id_encounter": 2524, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202614, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rashok's Molten Heart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 771956, "buy_price": 3859780, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 418, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Rashok's Molten Heart", "name_ko_KR": "라소크의 용암 심장", "name_fr_FR": "Cœur fondu de Rashok", "name_de_DE": "Rashoks geschmolzenes Herz", "name_zh_CN": "莱修克的熔火心脏", "name_es_ES": "Corazón de magma de Rashok", "name_ru_RU": "Огненное сердце Рашока", "name_it_IT": "Cuore Fuso di Rashok", "name_pt_PT": "Coração Derretido de Rashok", "on_use": false, "id_encounter": 2525, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202615, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vessel of Searing Shadow", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 773229, "buy_price": 3866147, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0300999879837036, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Vessel of Searing Shadow", "name_ko_KR": "타오르는 어둠의 그릇", "name_fr_FR": "Calice d’ombre incendiaire", "name_de_DE": "Gefäß des sengenden Schattens", "name_zh_CN": "灼热之影法器", "name_es_ES": "Recipiente de sombra abrasadora", "name_ru_RU": "Сосуд жгучей тени", "name_it_IT": "Ricettacolo delle Ombre Roventi", "name_pt_PT": "Recipiente da Sombra Calcinante", "on_use": false, "id_encounter": 2529, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202616, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Enduring Dreadplate", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 776006, "buy_price": 3880034, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0338000059127808, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Enduring Dreadplate", "name_ko_KR": "인내의 공포판금", "name_fr_FR": "Plaque d’effroi fortifiée", "name_de_DE": "Robuste Schreckensplatte", "name_zh_CN": "劲久恐惧装甲", "name_es_ES": "Placas de tinieblas resistentes", "name_ru_RU": "Стойкие латы ужаса", "name_it_IT": "Piastre Oscure Resistenti", "name_pt_PT": "Medoplaca Durável", "on_use": true, "id_encounter": 2522, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 202617, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Elementium Pocket Anvil", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 778709, "buy_price": 3893545, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0374000072479248, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Elementium Pocket Anvil", "name_ko_KR": "엘레멘티움 휴대용 모루", "name_fr_FR": "Enclume de poche en élémentium", "name_de_DE": "Elementiumtaschenamboss", "name_zh_CN": "源质袖珍铁砧", "name_es_ES": "Yunque de bolsillo de elementium", "name_ru_RU": "Карманная элементиевая наковальня", "name_it_IT": "Incudine da Tasca d'Elementio", "name_pt_PT": "Bigorna de Bolso de Elemêntio", "on_use": true, "id_encounter": 2529, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 203375, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Combatant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 50331648, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Crimson Combatant's Medallion", "name_ko_KR": "진홍빛 전투원의 메달", "name_fr_FR": "Médaillon du combattant écarlate", "name_de_DE": "Medaillon des blutroten Kämpfers", "name_zh_CN": "猩红争斗者的勋章", "name_es_ES": "Medallón de combatiente carmesí", "name_ru_RU": "Медальон багрового бойца", "name_it_IT": "Medaglione del Combattente Cremisi", "name_pt_PT": "Medalhão do Combatente Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 203376, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Combatant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9670000076293945, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Crimson Combatant's Insignia of Alacrity", "name_ko_KR": "진홍빛 전투원의 기민 계급장", "name_fr_FR": "Insigne d’empressement du combattant écarlate", "name_de_DE": "Inbrunstinsigne des blutroten Kämpfers", "name_zh_CN": "猩红争斗者的活跃徽记", "name_es_ES": "Insignia de prontitud de combatiente carmesí", "name_ru_RU": "Знак расторопности багрового бойца", "name_it_IT": "Fregio dell'Alacrità del Combattente Cremisi", "name_pt_PT": "Insígnia de Diligência do Combatente Carmesim", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 203377, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Crimson Combatant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9706000089645386, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Crimson Combatant's Emblem", "name_ko_KR": "진홍빛 전투원의 문장", "name_fr_FR": "Emblème du combattant écarlate", "name_de_DE": "Emblem des blutroten Kämpfers", "name_zh_CN": "猩红争斗者的纹章", "name_es_ES": "Emblema de combatiente carmesí", "name_ru_RU": "Эмблема багрового бойца", "name_it_IT": "Emblema del Combattente Cremisi", "name_pt_PT": "Emblema do Combatente Carmesim", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 203680, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Totem Toss", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 548789, "buy_price": 2743948, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Totem Toss", "name_ko_KR": "투척용 토템", "name_fr_FR": "Lancer de totem", "name_de_DE": "Totemwurf", "name_zh_CN": "图腾投掷", "name_es_ES": "Lanzamiento de tótem", "name_ru_RU": "Бросок тотема", "name_it_IT": "Totem da Lancio", "name_pt_PT": "Arremesso de Totem", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 203714, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ward of Faceless Ire", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 727328, "buy_price": 3636641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 424, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Ward of Faceless Ire", "name_ko_KR": "얼굴 없는 노여움의 수호물", "name_fr_FR": "Sceau de colère sans-visage", "name_de_DE": "Schutz des gesichtslosen Zornes", "name_zh_CN": "无面忿怒结界", "name_es_ES": "Resguardo de ira ignota", "name_ru_RU": "Оберег безликой ярости", "name_it_IT": "Protezione dell'Ira Senzavolto", "name_pt_PT": "Proteção da Ira Sem-rosto", "on_use": true, "id_encounter": 2523, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 203729, "race_mask": 18446744073709551615, "desc": "The beauty of its swirling colors belies the cruel experiments that followed.", "pad2": "", "pad1": "", "pad0": "", "name": "Ominous Chromatic Essence", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 785869, "buy_price": 3929349, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0448999404907227, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 418, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Ominous Chromatic Essence", "name_ko_KR": "불길한 오색 정수", "name_fr_FR": "Essence chromatique menaçante", "name_de_DE": "Ominöse chromatische Essenz", "name_zh_CN": "噩兆多彩精华", "name_es_ES": "Esencia cromática ominosa", "name_ru_RU": "Зловещая разноцветная субстанция", "name_it_IT": "Essenza Cromatica Inquietante", "name_pt_PT": "Essência Cromática Agourenta", "on_use": true, "id_encounter": 2530, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 203963, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Beacon to the Beyond", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 755566, "buy_price": 3777833, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0006999969482422, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 424, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Beacon to the Beyond", "name_ko_KR": "저 너머로의 봉화", "name_fr_FR": "Fanal de l’Au-delà", "name_de_DE": "Leuchtfeuer ins Jenseits", "name_zh_CN": "彼岸道标", "name_es_ES": "Baliza al más allá", "name_ru_RU": "Маяк иного мира", "name_it_IT": "Faro sull'Aldilà", "name_pt_PT": "Foco de Luz para o Além", "on_use": true, "id_encounter": 2520, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 203996, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Igneous Flowstone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 734502, "buy_price": 3672511, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746999740600586, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Igneous Flowstone", "name_ko_KR": "화성암 흐름석", "name_fr_FR": "Pierre-de-coulée ignée", "name_de_DE": "Feuriger Flussstein", "name_zh_CN": "火成涌岩", "name_es_ES": "Piedraflujo ígnea", "name_ru_RU": "Огненный камень потока", "name_it_IT": "Pietra del Flusso Ignea", "name_pt_PT": "Rocha Fluida Ígnea", "on_use": false, "id_encounter": 2527, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 204064, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0302000045776367, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_ko_KR": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_fr_FR": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_de_DE": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_zh_CN": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_es_ES": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_ru_RU": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_it_IT": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "name_pt_PT": "PH 10.1 Raid - Black Dragon Labs - Boss 9 - Sarkareth - Accessory - Trinket - Omni", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204164, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Combatant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9559000134468079, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 50331648, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Obsidian Combatant's Medallion", "name_ko_KR": "흑요석 전투원의 메달", "name_fr_FR": "Médaillon du combattant d’obsidienne", "name_de_DE": "Medaillon des Obsidiankämpfers", "name_zh_CN": "黑曜争斗者的勋章", "name_es_ES": "Medallón de combatiente obsidiana", "name_ru_RU": "Медальон обсидианового бойца", "name_it_IT": "Medaglione del Combattente d'Ossidiana", "name_pt_PT": "Medalhão do Combatente Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204165, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Combatant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9595999717712402, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Obsidian Combatant's Insignia of Alacrity", "name_ko_KR": "흑요석 전투원의 기민 계급장", "name_fr_FR": "Insigne d’empressement du combattant d’obsidienne", "name_de_DE": "Inbrunstinsigne des Obsidiankämpfers", "name_zh_CN": "黑曜争斗者的活跃徽记", "name_es_ES": "Insignia de prontitud de combatiente obsidiana", "name_ru_RU": "Знак расторопности обсидианового бойца", "name_it_IT": "Fregio dell'Alacrità del Combattente d'Ossidiana", "name_pt_PT": "Insígnia de Diligência do Combatente Obsidiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Combatant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Obsidian Combatant's Emblem", "name_ko_KR": "흑요석 전투원의 문장", "name_fr_FR": "Emblème du combattant d’obsidienne", "name_de_DE": "Emblem des Obsidiankämpfers", "name_zh_CN": "黑曜争斗者的纹章", "name_es_ES": "Emblema de combatiente obsidiana", "name_ru_RU": "Эмблема обсидианового бойца", "name_it_IT": "Emblema del Combattente d'Ossidiana", "name_pt_PT": "Emblema do Combatente Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204201, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Neltharion's Call to Chaos", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 792460, "buy_price": 3962301, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.044800043106079, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 431, "class_mask": 6275, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Neltharion's Call to Chaos", "name_ko_KR": "넬타리온의 혼돈의 부름", "name_fr_FR": "Appel au chaos de Neltharion", "name_de_DE": "Neltharions Chaosruf", "name_zh_CN": "奈萨里奥的混沌之召", "name_es_ES": "Llamamiento al caos de Neltharion", "name_ru_RU": "Зов Хаоса Нелтариона", "name_it_IT": "Richiamo del Caos di Neltharion", "name_pt_PT": "Chamado ao Caos de Neltharion", "on_use": false, "id_encounter": 2523, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 204202, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Neltharion's Call to Dominance", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795190, "buy_price": 3975954, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0484000444412231, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 431, "class_mask": 836, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Neltharion's Call to Dominance", "name_ko_KR": "넬타리온의 지배의 부름", "name_fr_FR": "Appel à la domination de Neltharion", "name_de_DE": "Neltharions Vorherrschaftsruf", "name_zh_CN": "奈萨里奥的统御之召", "name_es_ES": "Llamamiento a la dominancia de Neltharion", "name_ru_RU": "Властный зов Нелтариона", "name_it_IT": "Richiamo della Supremazia di Neltharion", "name_pt_PT": "Chamado à Dominância de Neltharion", "on_use": false, "id_encounter": 2523, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 204211, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Neltharion's Call to Suffering", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764472, "buy_price": 3822362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0078999996185303, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 431, "class_mask": 1080, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Neltharion's Call to Suffering", "name_ko_KR": "넬타리온의 고통의 부름", "name_fr_FR": "Appel à la souffrance de Neltharion", "name_de_DE": "Neltharions Leidensruf", "name_zh_CN": "奈萨里奥的受难之召", "name_es_ES": "Llamamiento al sufrimiento de Neltharion", "name_ru_RU": "Зов страдания Нелтариона", "name_it_IT": "Richiamo della Sofferenza di Neltharion", "name_pt_PT": "Chamado ao Sofrimento de Neltharion", "on_use": false, "id_encounter": 2523, "id_journal_instance": 1208, "id_map": 2569, "instance_type": 2}, {"id": 204386, "race_mask": 18446744073709551615, "desc": "Even at this size, elemental cores can syphon enough of the surrounding Shadowflame energy to turn into a small but deadly explosive.", "pad2": "", "pad1": "", "pad0": "", "name": "Pocket Darkened Elemental Core", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 573790, "buy_price": 2868954, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0413000583648682, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Pocket Darkened Elemental Core", "name_ko_KR": "어둠에 물든 정력 핵 덩어리", "name_fr_FR": "Noyau élémentaire assombri de poche", "name_de_DE": "Verdunkelter Elementarkern im Taschenformat", "name_zh_CN": "袖珍黑化元素之核", "name_es_ES": "Núcleo elemental oscurecido de bolsillo", "name_ru_RU": "Карманное потемневшее ядро элементаля", "name_it_IT": "Nucleo Elementale Oscurato Tascabile", "name_pt_PT": "Núcleo de Elemental Escurecido de Bolso", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204387, "race_mask": 18446744073709551615, "desc": "This titan artifact stores energy that can be used to power the carrier's abilities.", "pad2": "", "pad1": "", "pad0": "", "name": "Buzzing Orb Core", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 574708, "buy_price": 2873542, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0449999570846558, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 379, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Buzzing Orb Core", "name_ko_KR": "윙윙거리는 보주 핵", "name_fr_FR": "Cœur d’orbe bourdonnant", "name_de_DE": "Summender Kugelkern", "name_zh_CN": "嗡鸣的宝珠之核", "name_es_ES": "Núcleo de orbe zumbador", "name_ru_RU": "Гудящее ядро сферы", "name_it_IT": "Nucleo di Globo Ronzante", "name_pt_PT": "Núcleo de Orbe Zumbidor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204388, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Cauterizing Magma", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 577868, "buy_price": 2889342, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.048699975013733, "flags_1": 524352, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 382, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Draconic Cauterizing Magma", "name_ko_KR": "용족 소작의 용암", "name_fr_FR": "Magma cautérisant draconique", "name_de_DE": "Drakonisches kauterisierendes Magma", "name_zh_CN": "巨龙烧灼岩浆", "name_es_ES": "Magma cauterizante dracónico", "name_ru_RU": "Драконья прижигающая магма", "name_it_IT": "Magma Cauterizzante Draconico", "name_pt_PT": "Magma Cauterizante Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204714, "race_mask": 18446744073709551615, "desc": "Only true wisdom can make the spores grow.", "pad2": "", "pad1": "", "pad0": "", "name": "Satchel of Healing Spores", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.974399983882904, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Satchel of Healing Spores", "name_ko_KR": "치유의 포자 주머니", "name_fr_FR": "Sacoche de spores guérisseuses", "name_de_DE": "Säckchen mit Heilsporen", "name_zh_CN": "一包治疗孢子", "name_es_ES": "Saquito de esporas de sanación", "name_ru_RU": "Сумка с целебными спорами", "name_it_IT": "Borsa di Spore Curative", "name_pt_PT": "Algibeira de Esporos Curativos", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204728, "race_mask": 18446744073709551615, "desc": "It smells awful to you, but to the niffen it smells like friend.", "pad2": "", "pad1": "", "pad0": "", "name": "Friendship Censer", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9523000121116638, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Friendship Censer", "name_ko_KR": "우정의 향로", "name_fr_FR": "Encensoir de l’amitié", "name_de_DE": "Räuchergefäß der Freundschaft", "name_zh_CN": "友谊香炉", "name_es_ES": "Incensario de amistad", "name_ru_RU": "Курильница дружбы", "name_it_IT": "Incensiere dell'Amicizia", "name_pt_PT": "Incensário da Amizade", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204736, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heatbound Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0081000328063965, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Heatbound Medallion", "name_ko_KR": "열기결속 메달", "name_fr_FR": "Médaillon ardent", "name_de_DE": "Hitzegebundenes Medaillon", "name_zh_CN": "热缚勋章", "name_es_ES": "Medallón vinculado al calor", "name_ru_RU": "Аксессуар скованного жара", "name_it_IT": "Medaglione Vincolato al Calore", "name_pt_PT": "Medalhão Vinculado ao Calor", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204797, "race_mask": 18446744073709551615, "desc": "I have faced many stronger foes than you, weakling!", "pad2": "", "pad1": "", "pad0": "", "name": "Djaradin Boasting Tablets", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0113999843597412, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Djaradin Boasting Tablets", "name_ko_KR": "자라딘 과시 서판", "name_fr_FR": "Tables de vantardise djaradines", "name_de_DE": "Prahltafeln der Djaradin", "name_zh_CN": "贾拉丁吹嘘石板", "name_es_ES": "Tablillas de fanfarronería djaradin", "name_ru_RU": "Джарадинские таблички с похвальбами", "name_it_IT": "Tavolette della Vanteria dei Djaradin", "name_pt_PT": "Tabuletas de Ostentação Djaradin", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204805, "race_mask": 18446744073709551615, "desc": "It burns AND it stinks!", "pad2": "", "pad1": "", "pad0": "", "name": "Suspended Sulfuric Droplet", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Suspended Sulfuric Droplet", "name_ko_KR": "굳어버린 유황 방울", "name_fr_FR": "Gouttelette sulfurique en suspension", "name_de_DE": "Schwebender Schwefeltropfen", "name_zh_CN": "悬浮的硫化液滴", "name_es_ES": "Gota sulfúrica suspendida", "name_ru_RU": "Застывшая сернистая капля", "name_it_IT": "Goccia Solforica Sospesa", "name_pt_PT": "Gotícula Sulfúrica Suspensa", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204810, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Drogbar Rocks", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1539, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Drogbar Rocks", "name_ko_KR": "드로그바 바위", "name_fr_FR": "Roches drogbars", "name_de_DE": "Drogbarfelsen", "name_zh_CN": "卓格巴尔岩石", "name_es_ES": "Rocas drógbar", "name_ru_RU": "Дрогбарские валуны", "name_it_IT": "Rocce dei Drogbar", "name_pt_PT": "Rochas Drogbares", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204811, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Drogbar Stones", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989300012588501, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1539, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Drogbar Stones", "name_ko_KR": "드로그바 돌멩이", "name_fr_FR": "Pierres drogbars", "name_de_DE": "Drogbarsteine", "name_zh_CN": "卓格巴尔石头", "name_es_ES": "Piedras drógbar", "name_ru_RU": "Дрогбарские камни", "name_it_IT": "Pietre dei Drogbar", "name_pt_PT": "Pedras Drogbares", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 204901, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Firecaller's Focus", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9783999919891357, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Firecaller's Focus", "name_ko_KR": "불꽃소환사의 집중 장치", "name_fr_FR": "Focalisateur de mandefeu", "name_de_DE": "Fokus des Feuerrufers", "name_zh_CN": "召火者的法器", "name_es_ES": "Foco de clamafuegos", "name_ru_RU": "Средоточие призывателя огня", "name_it_IT": "Focus dell'Invocatore del Fuoco", "name_pt_PT": "Foco do Bradachamas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205191, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Underlight Globe", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0191999673843384, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Underlight Globe", "name_ko_KR": "미명의 구", "name_fr_FR": "Globe terradiance", "name_de_DE": "Tiefenlichtglobus", "name_zh_CN": "幽光之球", "name_es_ES": "Globo Sondaluz", "name_ru_RU": "Беспросветный шар", "name_it_IT": "Globo di Sottoluce", "name_pt_PT": "Globo Telúmino", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205192, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Volatile Crystal Shard", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0227999687194824, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Volatile Crystal Shard", "name_ko_KR": "불안정한 수정 조각", "name_fr_FR": "Éclat de cristal instable", "name_de_DE": "Unbeständiger Kristallsplitter", "name_zh_CN": "易爆的水晶碎片", "name_es_ES": "Fragmento de cristal volátil", "name_ru_RU": "Нестабильный осколок кристалла", "name_it_IT": "Scheggia di Cristallo Instabile", "name_pt_PT": "Estilhaço de Cristal Volátil", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205193, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sturdy Deepflayer Scute", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0264999866485596, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Sturdy Deepflayer Scute", "name_ko_KR": "튼튼한 심연약탈자 갑각", "name_fr_FR": "Scutelle de flagelleur des profondeurs robuste", "name_de_DE": "Robuste Tiefenschinderhornschuppe", "name_zh_CN": "坚实的深岩剥石者鳞甲", "name_es_ES": "Caparazón de despellejador resistente", "name_ru_RU": "Прочный щиток глубинного живодера", "name_it_IT": "Squama di Fondovolo Robusto", "name_pt_PT": "Carapaça de Azorrague Resistente", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205194, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fractured Crystalspine Quill", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0302000045776367, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Fractured Crystalspine Quill", "name_ko_KR": "조각난 수정가시 깃", "name_fr_FR": "Épine de cristalépine fracturée", "name_de_DE": "Frakturierter Kristallrückenfederkiel", "name_zh_CN": "开裂的晶刺猪尖刺", "name_es_ES": "Espina de espinacristal fracturada", "name_ru_RU": "Расколотое перо кристаллошипа", "name_it_IT": "Spina di Vetraculeo Fratturata", "name_pt_PT": "Cálamo de Cristalospinha Fraturado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205195, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Drakeforged Magma Charm", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0339000225067139, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Drakeforged Magma Charm", "name_ko_KR": "비룡벼림 용암 부적", "name_fr_FR": "Amulette de magma drake-forgée", "name_de_DE": "Drachengeschmiedeter Magmaglücksbringer", "name_zh_CN": "龙锻岩浆护符", "name_es_ES": "Talismán de magma forjadraco", "name_ru_RU": "Выкованный драконами талисман магмы", "name_it_IT": "Talismano di Magma Forgiato dai Drachi", "name_pt_PT": "Patuá de Magma da Forja Dracônica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205196, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Zaqali Hand Cauldron", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.037500023841858, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Zaqali Hand Cauldron", "name_ko_KR": "자칼리 휴대용 가마솥", "name_fr_FR": "Chaudron à main zaqali", "name_de_DE": "Handkessel der Zaqali", "name_zh_CN": "扎卡利手提锅", "name_es_ES": "Caldera de mano zaqali", "name_ru_RU": "Котелок закали", "name_it_IT": "Calderone Portatile degli Zaqali", "name_pt_PT": "Caldeirão Portátil Zaqali", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205200, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stirring Twilight Ember", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9520999789237976, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Stirring Twilight Ember", "name_ko_KR": "아른거리는 황혼의 불씨", "name_fr_FR": "Braise du crépuscule attisée", "name_de_DE": "Keimende Zwielichtglut", "name_zh_CN": "轻快的暮光余烬", "name_es_ES": "Ascua crepuscular agitada", "name_ru_RU": "Колышущийся сумеречный уголь", "name_it_IT": "Brace Crepuscolare Vivace", "name_pt_PT": "Brasa do Crepúsculo Agitada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205201, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Howler Horn", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9822999835014343, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Smoldering Howler Horn", "name_ko_KR": "이글거리는 포효의 뿔피리", "name_fr_FR": "Corne de hurleur fumant", "name_de_DE": "Schwelendes Heulerhorn", "name_zh_CN": "焖燃的嗥角", "name_es_ES": "Cuerno de aullador humeante", "name_ru_RU": "Рог тлеющего ревуна", "name_it_IT": "Corno di Belva Infuocato", "name_pt_PT": "Chifre de Uivador Fumegante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205229, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magma Serpent Lure", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545954, "buy_price": 2729772, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0116000175476074, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Magma Serpent Lure", "name_ko_KR": "용암 독사 미끼", "name_fr_FR": "Appât à serpent de magma", "name_de_DE": "Magmaschlangenköder", "name_zh_CN": "岩浆蛇饵", "name_es_ES": "Cebo de serpiente de magma", "name_ru_RU": "Приманка для магмозмея", "name_it_IT": "Esca per Serpenti di Magma", "name_pt_PT": "Isca de Serpente de Magma", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205262, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Magmaclaw Lure", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Magmaclaw Lure", "name_ko_KR": "용암발톱 미끼", "name_fr_FR": "Appât à pince-de-magma", "name_de_DE": "Magmaklauenköder", "name_zh_CN": "岩浆爪诱饵", "name_es_ES": "Cebo de magmagarra", "name_ru_RU": "Приманка для магмохвата", "name_it_IT": "Esca per Magmagrinfia", "name_pt_PT": "Isca de Garra-de-magma", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205276, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deepflayer Lure", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9634000062942505, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 350, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 2, "name_en_US": "Deepflayer Lure", "name_ko_KR": "심연약탈자 미끼", "name_fr_FR": "Appât à flagelleur des profondeurs", "name_de_DE": "Tiefenschinderköder", "name_zh_CN": "深岩剥石者诱饵", "name_es_ES": "Cebo de despellejador", "name_ru_RU": "Приманка для глубинного живодера", "name_it_IT": "Esca per Fondovolo", "name_pt_PT": "Isca de Azorrague", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205708, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Gladiator's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 719955, "buy_price": 3599776, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9635000228881836, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 408, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Obsidian Gladiator's Badge of Ferocity", "name_ko_KR": "흑요석 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur d’obsidienne", "name_de_DE": "Wildheitsabzeichen des Obsidiangladiators", "name_zh_CN": "黑曜角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador obsidiana", "name_ru_RU": "Жетон свирепости обсидианового гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore d'Ossidiana", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205709, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Gladiator's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 722720, "buy_price": 3613600, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.967199981212616, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 408, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Obsidian Gladiator's Insignia of Alacrity", "name_ko_KR": "흑요석 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur d’obsidienne", "name_de_DE": "Inbrunstinsigne des Obsidiangladiators", "name_zh_CN": "黑曜角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador obsidiana", "name_ru_RU": "Знак расторопности обсидианового гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore d'Ossidiana", "name_pt_PT": "Insígnia de Diligência do Gladiador Obsidiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205710, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Gladiator's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 725484, "buy_price": 3627424, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9708999991416931, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 408, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Obsidian Gladiator's Emblem", "name_ko_KR": "흑요석 검투사의 문장", "name_fr_FR": "Emblème du gladiateur d’obsidienne", "name_de_DE": "Emblem des Obsidiangladiators", "name_zh_CN": "黑曜角斗士的纹章", "name_es_ES": "Emblema de Gladiador obsidiana", "name_ru_RU": "Эмблема обсидианового гладиатора", "name_it_IT": "Emblema del Gladiatore d'Ossidiana", "name_pt_PT": "Emblema do Gladiador Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205711, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Gladiator's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 728249, "buy_price": 3641248, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9746000170707703, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 408, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Obsidian Gladiator's Medallion", "name_ko_KR": "흑요석 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur d’obsidienne", "name_de_DE": "Medaillon des Obsidiangladiators", "name_zh_CN": "黑曜角斗士的勋章", "name_es_ES": "Medallón de Gladiador obsidiana", "name_ru_RU": "Медальон обсидианового гладиатора", "name_it_IT": "Medaglione del Gladiatore d'Ossidiana", "name_pt_PT": "Medalhão do Gladiador Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205712, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Gladiator's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 730939, "buy_price": 3654698, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9782000184059143, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 408, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Obsidian Gladiator's Sigil of Adaptation", "name_ko_KR": "흑요석 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur d’obsidienne", "name_de_DE": "Siegel der Anpassung des Obsidiangladiators", "name_zh_CN": "黑曜角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador obsidiana", "name_ru_RU": "Печать адаптации обсидианового гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore d'Ossidiana", "name_pt_PT": "Signo de Adaptação do Gladiador Obsidiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205778, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Aspirant's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 559731, "buy_price": 2798655, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0263999700546265, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 366, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Obsidian Aspirant's Badge of Ferocity", "name_ko_KR": "흑요석 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant d’obsidienne", "name_de_DE": "Wildheitsabzeichen des Obsidianaspiranten", "name_zh_CN": "黑曜候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante obsidiana", "name_ru_RU": "Жетон свирепости обсидианового претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente d'Ossidiana", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205779, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Aspirant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 521557, "buy_price": 2607788, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9563999772071838, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 366, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Obsidian Aspirant's Medallion", "name_ko_KR": "흑요석 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant d’obsidienne", "name_de_DE": "Medaillon des Obsidianaspiranten", "name_zh_CN": "黑曜候选者的勋章", "name_es_ES": "Medallón de aspirante obsidiana", "name_ru_RU": "Медальон обсидианового претендента", "name_it_IT": "Medaglione del Pretendente d'Ossidiana", "name_pt_PT": "Medalhão do Aspirante Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205780, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Aspirant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 523575, "buy_price": 2617877, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.960099995136261, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 366, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Obsidian Aspirant's Insignia of Alacrity", "name_ko_KR": "흑요석 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant d’obsidienne", "name_de_DE": "Inbrunstinsigne des Obsidianaspiranten", "name_zh_CN": "黑曜候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante obsidiana", "name_ru_RU": "Знак расторопности обсидианового претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente d'Ossidiana", "name_pt_PT": "Insígnia de Diligência do Aspirante Obsidiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205781, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Aspirant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 525593, "buy_price": 2627966, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638000130653381, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 366, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Obsidian Aspirant's Emblem", "name_ko_KR": "흑요석 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant d’obsidienne", "name_de_DE": "Emblem des Obsidianaspiranten", "name_zh_CN": "黑曜候选者的纹章", "name_es_ES": "Emblema de aspirante obsidiana", "name_ru_RU": "Эмблема обсидианового претендента", "name_it_IT": "Emblema del Pretendente d'Ossidiana", "name_pt_PT": "Emblema do Aspirante Obsidiano", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 205782, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Obsidian Aspirant's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 527610, "buy_price": 2638054, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674999713897705, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 366, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Obsidian Aspirant's Sigil of Adaptation", "name_ko_KR": "흑요석 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant d’obsidienne", "name_de_DE": "Siegel der Anpassung des Obsidianaspiranten", "name_zh_CN": "黑曜候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante obsidiana", "name_ru_RU": "Печать адаптации обсидианового претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente d'Ossidiana", "name_pt_PT": "Signo de Adaptação do Aspirante Obsidiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206475, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Seschenal", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 780867, "buy_price": 3904339, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0491000413894653, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Seschenal", "name_ko_KR": "인과를 벗어난 세스셰날의 파편", "name_fr_FR": "Fragment paracausal de Seschenal", "name_de_DE": "Parakausales Fragment des Seschenal", "name_zh_CN": "赛肖纳尔的超因果碎片", "name_es_ES": "Fragmento paracausal de Seschenal", "name_ru_RU": "Параказуальный фрагмент Сешеналя", "name_it_IT": "Frammento Imprevedibile di Seschenal", "name_pt_PT": "Fragmento Paracausal de Sesquenau", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206956, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Sulfuras", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 750573, "buy_price": 3752869, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0083999633789062, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Sulfuras", "name_ko_KR": "인과를 벗어난 설퍼라스의 파편", "name_fr_FR": "Fragment paracausal de Sulfuras", "name_de_DE": "Parakausales Fragment von Sulfuras", "name_zh_CN": "萨弗拉斯的超因果碎片", "name_es_ES": "Fragmento paracausal de Sulfuras", "name_ru_RU": "Параказуальный фрагмент Сульфураса", "name_it_IT": "Frammento Imprevedibile di Sulfuras", "name_pt_PT": "Fragmento Paracausal de Sulfuras", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206958, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Val'anyr", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 756007, "buy_price": 3780037, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0156999826431274, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Val'anyr", "name_ko_KR": "인과를 벗어난 발아니르의 파편", "name_fr_FR": "Fragment paracausal de Val’anyr", "name_de_DE": "Parakausales Fragment von Val'anyr", "name_zh_CN": "瓦兰奈尔的超因果碎片", "name_es_ES": "Fragmento paracausal de Val'Anyr", "name_ru_RU": "Параказуальный фрагмент Вал'анира", "name_it_IT": "Frammento Imprevedibile di Val'anyr", "name_pt_PT": "Fragmento Paracausal de Val'anyr", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206964, "race_mask": 12261800583900083122, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Doomhammer", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 772456, "buy_price": 3862284, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0377999544143677, "flags_1": 561152, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 207024, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Doomhammer", "name_ko_KR": "인과를 벗어난 둠해머의 파편", "name_fr_FR": "Fragment paracausal de Marteau-du-Destin", "name_de_DE": "Parakausales Fragment des Schicksalshammers", "name_zh_CN": "毁灭之锤的超因果碎片", "name_es_ES": "Fragmento paracausal de Martillo Maldito", "name_ru_RU": "Параказуальный фрагмент Молота Рока", "name_it_IT": "Frammento Imprevedibile di Martelfato", "name_pt_PT": "Fragmento Paracausal do Martelo da Perdição", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206972, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Azzinoth", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 739557, "buy_price": 3697789, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9936000108718872, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Azzinoth", "name_ko_KR": "인과를 벗어난 아지노스의 파편", "name_fr_FR": "Fragment paracausal d’Azzinoth", "name_de_DE": "Parakausales Fragment von Azzinoth", "name_zh_CN": "埃辛诺斯的超因果碎片", "name_es_ES": "Fragmento paracausal de Azzinoth", "name_ru_RU": "Параказуальный фрагмент Аззинота", "name_it_IT": "Frammento Imprevedibile di Azzinoth", "name_pt_PT": "Fragmento Paracausal de Azzinoth", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 206983, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Frostmourne", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 769628, "buy_price": 3848142, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034000039100647, "flags_1": 561216, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Frostmourne", "name_ko_KR": "인과를 벗어난 서리한의 파편", "name_fr_FR": "Fragment paracausal de Deuillegivre", "name_de_DE": "Parakausales Fragment von Frostgram", "name_zh_CN": "霜之哀伤的超因果碎片", "name_es_ES": "Fragmento paracausal de la Agonía de Escarcha", "name_ru_RU": "Параказуальный фрагмент Ледяной Скорби", "name_it_IT": "Frammento Imprevedibile di Gelidanima", "name_pt_PT": "Fragmento Paracausal da Gélido Lamento", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 207005, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Thunderfin, Humid Blade of the Tideseeker", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9675999879837036, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Thunderfin, Humid Blade of the Tideseeker", "name_ko_KR": "인과를 벗어난 천둥지느러미 - 파도추적자의 습기 찬 칼날의 파편", "name_fr_FR": "Fragment paracausal de Nage-tonnerre, épée humide du Cherche-marée", "name_de_DE": "Parakausales Fragment von Donnerflosse, Feuchtklinge des Gezeitensuchers", "name_zh_CN": "雷霆之鳍,逐潮者的湿润之刃的超因果碎片", "name_es_ES": "Fragmento paracausal de Aletatrueno, hoja húmeda del Buscamareas", "name_ru_RU": "Параказуальный фрагмент Громового Плавника, водного клинка Искателя Приливов", "name_it_IT": "Frammento Imprevedibile di Pinnatonante, Lama Umida del Cercamaree", "name_pt_PT": "Fragmento Paracausal de Pinatrom, Lâmina Embebida do Caça-marés", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 207024, "race_mask": 6130900294268439629, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Paracausal Fragment of Shalamayne", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 717377, "buy_price": 3586885, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9638000130653381, "flags_1": 561152, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 206964, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 402, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Paracausal Fragment of Shalamayne", "name_ko_KR": "인과를 벗어난 샬라메인의 파편", "name_fr_FR": "Fragment paracausal de Shalamayne", "name_de_DE": "Parakausales Fragment von Shalamayne", "name_zh_CN": "萨拉迈恩的超因果碎片", "name_es_ES": "Fragmento paracausal de Shalamayne", "name_ru_RU": "Параказуальный фрагмент Шаламейна", "name_it_IT": "Frammento Imprevedibile di Shalamayne", "name_pt_PT": "Fragmento Paracausal da Shalamayne", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 207165, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bandolier of Twisted Blades", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 778311, "buy_price": 3891559, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0195000171661377, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Bandolier of Twisted Blades", "name_ko_KR": "뒤틀린 칼날의 탄띠", "name_fr_FR": "Cartouchière des Lames perverties", "name_de_DE": "Bandolier der verdrehten Klingen", "name_zh_CN": "曲刃弹带", "name_es_ES": "Bandolera de cuchillas retorcidas", "name_ru_RU": "Перевязь изогнутых клинков", "name_it_IT": "Bandoliera delle Lame Distorte", "name_pt_PT": "Cartucheira de Lâminas Curvas", "on_use": true, "id_encounter": 2554, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cataclysmic Signet Brand", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 781136, "buy_price": 3905682, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0232000350952148, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Cataclysmic Signet Brand", "name_ko_KR": "대격변의 인장 낙인", "name_fr_FR": "Marque sigillaire cataclysmique", "name_de_DE": "Kataklymisches Signetbrandmal", "name_zh_CN": "灾变徽记烙印", "name_es_ES": "Marca de sello cataclísmico", "name_ru_RU": "Клеймо-печатка Катаклизма", "name_it_IT": "Marchio con Sigillo Cataclismico", "name_pt_PT": "Marca do Sinete Cataclísmico", "on_use": false, "id_encounter": 2563, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207167, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ashes of the Embersoul", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 783961, "buy_price": 3919805, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.026900053024292, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Ashes of the Embersoul", "name_ko_KR": "잿불혼의 재", "name_fr_FR": "Cendres de la braisâme", "name_de_DE": "Asche der Glutseele", "name_zh_CN": "烬魄之灰", "name_es_ES": "Cenizas del Ascuaalma", "name_ru_RU": "Прах души угля", "name_it_IT": "Ceneri dell'Anima Ardente", "name_pt_PT": "Cinzas da Brasalma", "on_use": true, "id_encounter": 2563, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207168, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pip's Emerald Friendship Badge", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 786785, "buy_price": 3933928, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0305999517440796, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Pip's Emerald Friendship Badge", "name_ko_KR": "핍의 에메랄드 우정 휘장", "name_fr_FR": "Badge d’amitié émeraude de Pip", "name_de_DE": "Pips smaragdgrünes Freundschaftsabzeichen", "name_zh_CN": "匹普的翡翠情谊徽章", "name_es_ES": "Distintivo de amistad esmeralda de Pip", "name_ru_RU": "Изумрудный значок дружбы Пипа", "name_it_IT": "Distintivo dell'Amicizia di Smeraldo di Pip", "name_pt_PT": "Distintivo de Amizade Esmeralda de Pip", "on_use": false, "id_encounter": 2555, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207169, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Branch of the Tormented Ancient", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 789534, "buy_price": 3947670, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0341999530792236, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Branch of the Tormented Ancient", "name_ko_KR": "고통받는 고대정령의 가지", "name_fr_FR": "Branche de l’Ancien tourmenté", "name_de_DE": "Ast des gequälten Urtums", "name_zh_CN": "苦痛古树残枝", "name_es_ES": "Rama del anciano atormentado", "name_ru_RU": "Ветвь измученного древа", "name_it_IT": "Ramo dell'Antico Tormentato", "name_pt_PT": "Galho do Anciente Atormentado", "on_use": true, "id_encounter": 2564, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207170, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Smoldering Seedling", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 792358, "buy_price": 3961794, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0378999710083008, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Smoldering Seedling", "name_ko_KR": "이글거리는 묘목", "name_fr_FR": "Bouture fumante", "name_de_DE": "Schwelender Setzling", "name_zh_CN": "焖燃幼苗", "name_es_ES": "Esqueje humeante", "name_ru_RU": "Тлеющий саженец", "name_it_IT": "Piantina Infuocata", "name_pt_PT": "Muda Fumegante", "on_use": true, "id_encounter": 2553, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207171, "race_mask": 18446744073709551615, "desc": "A bright future from the ashes.", "pad2": "", "pad1": "", "pad0": "", "name": "Blossom of Amirdrassil", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 795183, "buy_price": 3975917, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.041599988937378, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Blossom of Amirdrassil", "name_ko_KR": "아미드랏실의 꽃", "name_fr_FR": "Floraison d’Amirdrassil", "name_de_DE": "Erblühen von Amirdrassil", "name_zh_CN": "阿梅达希尔之花", "name_es_ES": "Flor de Amirdrassil", "name_ru_RU": "Цветок Амирдрассила", "name_it_IT": "Bocciolo di Amirdrassil", "name_pt_PT": "Flor de Amirdrassil", "on_use": false, "id_encounter": 2519, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207172, "race_mask": 18446744073709551615, "desc": "Enae elen'relos!", "pad2": "", "pad1": "", "pad0": "", "name": "Belor'relos, the Suncaller", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 798008, "buy_price": 3990040, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.045300006866455, "flags_1": 528448, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Belor'relos, the Suncaller", "name_ko_KR": "벨로렐로스 - 태양소환사", "name_fr_FR": "Belor’relos, le Mande-soleil", "name_de_DE": "Belor'relos, der Sonnenrufer", "name_zh_CN": "贝罗雷洛斯,阳炎之唤", "name_es_ES": "Belor'relos, invocador del sol", "name_ru_RU": "Белор'релос, зовущий солнце", "name_it_IT": "Belor'relos, l'Invocasole", "name_pt_PT": "Belor'relos, a Invocadora do Sol", "on_use": true, "id_encounter": 2565, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207173, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gift of Ursine Vengeance", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 800756, "buy_price": 4003782, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0489000082015991, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Gift of Ursine Vengeance", "name_ko_KR": "곰의 복수의 선물", "name_fr_FR": "Don de la vengeance ursine", "name_de_DE": "Geschenk der Bärenrache", "name_zh_CN": "熊灵复仇之赐", "name_es_ES": "Ofrenda de venganza osuna", "name_ru_RU": "Дар медвежьего отмщения", "name_it_IT": "Dono della Vendetta dell'Orso", "name_pt_PT": "Dádiva da Vingança Ursina", "on_use": false, "id_encounter": 2555, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207174, "race_mask": 18446744073709551615, "desc": "A fate of twisted blood.", "pad2": "", "pad1": "", "pad0": "", "name": "Fyrakk's Tainted Rageheart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 727162, "buy_price": 3635811, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9524999856948853, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Fyrakk's Tainted Rageheart", "name_ko_KR": "피락의 오염된 분노의 심장", "name_fr_FR": "Ragecœur souillé de Fyrakka", "name_de_DE": "Fyrakks besudeltes Zornesherz", "name_zh_CN": "菲莱克的秽怒之心", "name_es_ES": "Corazón colérico corrupto de Fyrakk", "name_ru_RU": "Оскверненное Яростное сердце Фиракка", "name_it_IT": "Cuordirabbia Contaminato di Fyrakk", "name_pt_PT": "Coração Maculado de Fyrakk", "on_use": true, "id_encounter": 2519, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207175, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Coiled Serpent Idol", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 729987, "buy_price": 3649935, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9562000036239624, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Coiled Serpent Idol", "name_ko_KR": "똬리를 튼 뱀 우상", "name_fr_FR": "Idole de serpent torsadé", "name_de_DE": "Ringelschlangengötze", "name_zh_CN": "盘曲蛇雕", "name_es_ES": "Ídolo de serpiente enroscada", "name_ru_RU": "Идол свернувшейся змеи", "name_it_IT": "Idolo della Serpe Avviluppata", "name_pt_PT": "Ídolo de Serpente Enroscada", "on_use": false, "id_encounter": 2557, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 207390, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Delve Ring", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 577868, "buy_price": 2889342, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0159000158309937, "flags_1": 528448, "flags_2": 8256, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 412, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 60, "inv_type": 12, "quality": 3, "name_en_US": "Delve Ring", "name_ko_KR": "구렁 반지", "name_fr_FR": "Anneau du Gouffre", "name_de_DE": "Tiefenring", "name_zh_CN": "地下堡之环", "name_es_ES": "Anillo de las profundidades", "name_ru_RU": "Кольцо из вылазки", "name_it_IT": "Anello delle Scorribande", "name_pt_PT": "Anel das Imersões", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 207528, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Prophetic Stonescales", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 779264, "buy_price": 3896321, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.03410005569458, "flags_1": 67633152, "flags_2": 73728, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Prophetic Stonescales", "name_ko_KR": "선지자의 돌비늘", "name_fr_FR": "Pierre-écailles prophétiques", "name_de_DE": "Prophetische Steinschuppen", "name_zh_CN": "先知石鳞", "name_es_ES": "Escamapiedras proféticas", "name_ru_RU": "Пророческая каменная чешуя", "name_it_IT": "Scaglie di Pietra Profetiche", "name_pt_PT": "Petrescamas Proféticas", "on_use": false, "id_encounter": 2537, "id_journal_instance": 1209, "id_map": 2579, "instance_type": 1}, {"id": 207552, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Echoing Tyrstone", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 734803, "buy_price": 3674018, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9750999808311462, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Echoing Tyrstone", "name_ko_KR": "메아리치는 티르의 돌", "name_fr_FR": "Pierre de Tyr résonnante", "name_de_DE": "Widerhallender Tyrstein", "name_zh_CN": "回波提尔石", "name_es_ES": "Piedra de Tyr resonante", "name_ru_RU": "Гулкий камень Тира", "name_it_IT": "Pietra di Tyr Echeggiante", "name_pt_PT": "Tyrita Ecoante", "on_use": true, "id_encounter": 2526, "id_journal_instance": 1209, "id_map": 2579, "instance_type": 1}, {"id": 207566, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Accelerating Sandglass", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 718074, "buy_price": 3590372, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9528999924659729, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Accelerating Sandglass", "name_ko_KR": "가속의 모래시계", "name_fr_FR": "Sable vitrifié d’accélération", "name_de_DE": "Beschleunigende Sanduhr", "name_zh_CN": "增速沙漏", "name_es_ES": "Reloj de arena acelerador", "name_ru_RU": "Ускоряющие песочные часы", "name_it_IT": "Clessidra Accelerante", "name_pt_PT": "Ampulheta Acelerante", "on_use": false, "id_encounter": 2528, "id_journal_instance": 1209, "id_map": 2579, "instance_type": 1}, {"id": 207579, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time-Thief's Gambit", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 754019, "buy_price": 3770098, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.000599980354309, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Time-Thief's Gambit", "name_ko_KR": "시간 도둑의 승부수", "name_fr_FR": "Gambit du voleur de temps", "name_de_DE": "Schachzug des Zeitdiebs", "name_zh_CN": "窃时者的谋略", "name_es_ES": "Gambito de ladrón temporal", "name_ru_RU": "Гамбит вора времени", "name_it_IT": "Azzardo del Ladro di Tempo", "name_pt_PT": "Gambito do Ladrão do Tempo", "on_use": true, "id_encounter": 2536, "id_journal_instance": 1209, "id_map": 2579, "instance_type": 1}, {"id": 207581, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mirror of Fractured Tomorrows", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 779565, "buy_price": 3897828, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034500002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 421, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Mirror of Fractured Tomorrows", "name_ko_KR": "부서진 미래의 거울", "name_fr_FR": "Miroir des lendemains fracturés", "name_de_DE": "Spiegel der gebrochenen Morgen", "name_zh_CN": "破碎翌日之镜", "name_es_ES": "Espejo del mañana fracturado", "name_ru_RU": "Зеркало разбитого будущего", "name_it_IT": "Specchio dei Domani Infranti", "name_pt_PT": "Espelho dos Amanhãs Fraturados", "on_use": true, "id_encounter": 2538, "id_journal_instance": 1209, "id_map": 2579, "instance_type": 1}, {"id": 208307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Combatant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9900000095367432, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 50331648, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Combatant's Medallion", "name_ko_KR": "녹빛 전투원의 메달", "name_fr_FR": "Médaillon du combattant verdoyant", "name_de_DE": "Medaillon des tiefgrünen Kämpfers", "name_zh_CN": "苍郁争斗者的勋章", "name_es_ES": "Medallón de Combatiente verdeante", "name_ru_RU": "Медальон изумрудного бойца", "name_it_IT": "Medaglione del Combattente Verdeggiante", "name_pt_PT": "Medalhão do Combatente Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Combatant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9937000274658203, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Combatant's Insignia of Alacrity", "name_ko_KR": "녹빛 전투원의 기민 계급장", "name_fr_FR": "Insigne d’empressement du combattant verdoyant", "name_de_DE": "Inbrunstinsigne des tiefgrünen Kämpfers", "name_zh_CN": "苍郁争斗者的活跃徽记", "name_es_ES": "Insignia de prontitud de Combatiente verdeante", "name_ru_RU": "Знак расторопности изумрудного бойца", "name_it_IT": "Fregio dell'Alacrità del Combattente Verdeggiante", "name_pt_PT": "Insígnia de Diligência do Combatente Verdejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Combatant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9973999857902527, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Combatant's Emblem", "name_ko_KR": "녹빛 전투원의 문장", "name_fr_FR": "Emblème du combattant verdoyant", "name_de_DE": "Emblem des tiefgrünen Kämpfers", "name_zh_CN": "苍郁争斗者的纹章", "name_es_ES": "Emblema de Combatiente verdeante", "name_ru_RU": "Эмблема изумрудного бойца", "name_it_IT": "Emblema del Combattente Verdeggiante", "name_pt_PT": "Emblema do Combatente Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208553, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timerunner's Chalice", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9898999929428101, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2905, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 10, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 6, "name_en_US": "Timerunner's Chalice", "name_ko_KR": "시간질주자의 성배", "name_fr_FR": "Calice du cours du temps", "name_de_DE": "Kelch des Zeitläufers", "name_zh_CN": "时空奔行者圣杯", "name_es_ES": "Cáliz de corredor temporal", "name_ru_RU": "Кубок путешественника во времени", "name_it_IT": "Calice del Corridore nel Tempo", "name_pt_PT": "Cálice do Trilha-tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208554, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timerunner's Beacon", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9936000108718872, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2905, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 13, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 7, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 4, "name_en_US": "Timerunner's Beacon", "name_ko_KR": "시간질주자의 봉화", "name_fr_FR": "Fanal du cours du temps", "name_de_DE": "Leuchtfeuer des Zeitläufers", "name_zh_CN": "时空奔行者的道标", "name_es_ES": "Baliza de asaltante temporal", "name_ru_RU": "Маяк путешественника во времени", "name_it_IT": "Segnalatore del Corridore nel Tempo", "name_pt_PT": "Sinalizador do Trilha-tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208555, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Timerunner's Idol", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 1, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 4096, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2905, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 13, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 7, "socket_color_2": 7, "socket_color_3": 7, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 4, "name_en_US": "Timerunner's Idol", "name_ko_KR": "시간질주자의 우상", "name_fr_FR": "Idole du cours du temps", "name_de_DE": "Götze des Zeitläufers", "name_zh_CN": "时空奔行者的神像", "name_es_ES": "Ídolo de asaltante temporal", "name_ru_RU": "Идол путешественника во времени", "name_it_IT": "Idolo del Corridore nel Tempo", "name_pt_PT": "Ídolo do Trilha-tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208556, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Flicker Blossom", "id_expansion": 4, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 2905, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 13, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 2, "name_en_US": "Flicker Blossom", "name_ko_KR": "명멸하는 꽃", "name_fr_FR": "Fleur vacillante", "name_de_DE": "Flackerblüte", "name_zh_CN": "闪现之花", "name_es_ES": "Floración creciente", "name_ru_RU": "Искрящийся цветок", "name_it_IT": "Bocciolo Sfarfallante", "name_pt_PT": "Botão Cintilante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 208614, "race_mask": 18446744073709551615, "desc": "A vision of endless flame.", "pad2": "", "pad1": "", "pad0": "", "name": "Augury of the Primal Flame", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 778464, "buy_price": 3892322, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.019700050354004, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Augury of the Primal Flame", "name_ko_KR": "원시 불꽃의 조짐", "name_fr_FR": "Augure de la flamme primordiale", "name_de_DE": "Weissagung der Urflamme", "name_zh_CN": "洪荒火焰预兆", "name_es_ES": "Augurio de la Llama primigenia", "name_ru_RU": "Предзнаменование изначального пламени", "name_it_IT": "Divinazione della Fiamma Primordiale", "name_pt_PT": "Augúrio da Chama Primeva", "on_use": false, "id_encounter": 2519, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 208615, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nymue's Unraveling Spindle", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 781212, "buy_price": 3906064, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.023300051689148, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 441, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Nymue's Unraveling Spindle", "name_ko_KR": "니무에의 풀어지는 물렛가락", "name_fr_FR": "Fuseau démêleur de Nymue", "name_de_DE": "Nymues entwirrende Spindel", "name_zh_CN": "尼穆威的拆解纺锤", "name_es_ES": "Huso desovillado de Nymue", "name_ru_RU": "Раскрывающее веретено Нимуэ", "name_it_IT": "Fuso Srotolato di Nymue", "name_pt_PT": "Fuso do Desenrolar de Nymue", "on_use": true, "id_encounter": 2556, "id_journal_instance": 1207, "id_map": 2549, "instance_type": 2}, {"id": 209343, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Gladiator's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 755830, "buy_price": 3779152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9861999750137329, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 447, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Verdant Gladiator's Badge of Ferocity", "name_ko_KR": "녹빛 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur verdoyant", "name_de_DE": "Wildheitsabzeichen des tiefgrünen Gladiators", "name_zh_CN": "苍郁角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador verdeante", "name_ru_RU": "Жетон свирепости изумрудного гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Verdeggiante", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209344, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Gladiator's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 758666, "buy_price": 3793331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9898999929428101, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 447, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Verdant Gladiator's Insignia of Alacrity", "name_ko_KR": "녹빛 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur verdoyant", "name_de_DE": "Inbrunstinsigne des tiefgrünen Gladiators", "name_zh_CN": "苍郁角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador verdeante", "name_ru_RU": "Знак расторопности изумрудного гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Verdeggiante", "name_pt_PT": "Insígnia de Diligência do Gladiador Verdejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209345, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Gladiator's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 761425, "buy_price": 3807126, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9934999942779541, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 447, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Verdant Gladiator's Emblem", "name_ko_KR": "녹빛 검투사의 문장", "name_fr_FR": "Emblème du gladiateur verdoyant", "name_de_DE": "Emblem des tiefgrünen Gladiators", "name_zh_CN": "苍郁角斗士的纹章", "name_es_ES": "Emblema de Gladiador verdeante", "name_ru_RU": "Эмблема изумрудного гладиатора", "name_it_IT": "Emblema del Gladiatore Verdeggiante", "name_pt_PT": "Emblema do Gladiador Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Gladiator's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764261, "buy_price": 3821305, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9972000122070312, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 447, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Verdant Gladiator's Medallion", "name_ko_KR": "녹빛 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur verdoyant", "name_de_DE": "Medaillon des tiefgrünen Gladiators", "name_zh_CN": "苍郁角斗士的勋章", "name_es_ES": "Medallón de Gladiador verdeante", "name_ru_RU": "Медальон изумрудного гладиатора", "name_it_IT": "Medaglione del Gladiatore Verdeggiante", "name_pt_PT": "Medalhão do Gladiador Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209347, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Gladiator's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767096, "buy_price": 3835484, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0009000301361084, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 447, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Verdant Gladiator's Sigil of Adaptation", "name_ko_KR": "녹빛 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur verdoyant", "name_de_DE": "Siegel der Anpassung des tiefgrünen Gladiators", "name_zh_CN": "苍郁角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador verdeante", "name_ru_RU": "Печать адаптации изумрудного гладиатора", "name_it_IT": "Suggello dell'Adattamento del Gladiatore Verdeggiante", "name_pt_PT": "Signo de Adaptação do Gladiador Verdejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209763, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Aspirant's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 571871, "buy_price": 2859358, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0157999992370605, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Aspirant's Badge of Ferocity", "name_ko_KR": "녹빛 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant verdoyant", "name_de_DE": "Wildheitsabzeichen des tiefgrünen Aspiranten", "name_zh_CN": "苍郁候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Aspirante verdeante", "name_ru_RU": "Жетон свирепости изумрудного претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Verdeggiante", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209764, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Aspirant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 573954, "buy_price": 2869773, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0195000171661377, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Aspirant's Medallion", "name_ko_KR": "녹빛 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant verdoyant", "name_de_DE": "Medaillon des tiefgrünen Aspiranten", "name_zh_CN": "苍郁候选者的勋章", "name_es_ES": "Medallón de Aspirante verdeante", "name_ru_RU": "Медальон изумрудного претендента", "name_it_IT": "Medaglione del Pretendente Verdeggiante", "name_pt_PT": "Medalhão do Aspirante Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209765, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Aspirant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576037, "buy_price": 2880188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0232000350952148, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Aspirant's Insignia of Alacrity", "name_ko_KR": "녹빛 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant verdoyant", "name_de_DE": "Inbrunstinsigne des tiefgrünen Aspiranten", "name_zh_CN": "苍郁候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de Aspirante verdeante", "name_ru_RU": "Знак расторопности изумрудного претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Verdeggiante", "name_pt_PT": "Insígnia de Diligência do Aspirante Verdejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209766, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Aspirant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536685, "buy_price": 2683427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9532999992370605, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Aspirant's Emblem", "name_ko_KR": "녹빛 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant verdoyant", "name_de_DE": "Emblem des tiefgrünen Aspiranten", "name_zh_CN": "苍郁候选者的纹章", "name_es_ES": "Emblema de Aspirante verdeante", "name_ru_RU": "Эмблема изумрудного претендента", "name_it_IT": "Emblema del Pretendente Verdeggiante", "name_pt_PT": "Emblema do Aspirante Verdejante", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209767, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Verdant Aspirant's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538712, "buy_price": 2693561, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9569000005722046, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 415, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Verdant Aspirant's Sigil of Adaptation", "name_ko_KR": "녹빛 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant verdoyant", "name_de_DE": "Siegel der Anpassung des tiefgrünen Aspiranten", "name_zh_CN": "苍郁候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de Aspirante verdeante", "name_ru_RU": "Печать адаптации изумрудного претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Verdeggiante", "name_pt_PT": "Signo de Adaptação do Aspirante Verdejante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209953, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Dancing Dream Blossoms", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 585239, "buy_price": 2926195, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0307999849319458, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Dancing Dream Blossoms", "name_ko_KR": "춤추는 꿈의 꽃", "name_fr_FR": "Floraisons de rêve dansantes", "name_de_DE": "Tanzende Traumblüten", "name_zh_CN": "翩舞梦花", "name_es_ES": "Flores del Sueño danzantes", "name_ru_RU": "Танец цветов Сна", "name_it_IT": "Boccioli del Sogno Danzanti", "name_pt_PT": "Florações Oníricas Dançantes", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209954, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Moragh's Favorite Rock", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 587339, "buy_price": 2936699, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.034500002861023, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Moragh's Favorite Rock", "name_ko_KR": "모라그가 아끼는 돌멩이", "name_fr_FR": "Rocher préféré de Moragh", "name_de_DE": "Moraghs Lieblingsstein", "name_zh_CN": "莫拉夫最喜欢的石头", "name_es_ES": "Roca favorita de Moragh", "name_ru_RU": "Любимый камень Морагха", "name_it_IT": "Roccia Preferita di Moragh", "name_pt_PT": "Rocha Favorita de Moragh", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209955, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Root of Fire", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 589383, "buy_price": 2946918, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.038100004196167, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Root of Fire", "name_ko_KR": "불꽃의 뿌리", "name_fr_FR": "Racine de feu", "name_de_DE": "Wurzel des Feuers", "name_zh_CN": "炽根", "name_es_ES": "Raíz de fuego", "name_ru_RU": "Огненный корень", "name_it_IT": "Radice di Fuoco", "name_pt_PT": "Raiz de Fogo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209956, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ori's Verdant Feather", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 591484, "buy_price": 2957422, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0418000221252441, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Ori's Verdant Feather", "name_ko_KR": "오리의 신록 깃털", "name_fr_FR": "Plume verdoyante d’Ori", "name_de_DE": "Oris tiefgrüne Feder", "name_zh_CN": "欧里的青翠之羽", "name_es_ES": "Pluma verdeante de Ori", "name_ru_RU": "Изумрудное перо Ори", "name_it_IT": "Piuma Verdeggiante di Ori", "name_pt_PT": "Pena Verdejante de Ori", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209957, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fang of the Frenzied Nightclaw", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 593585, "buy_price": 2967925, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0455000400543213, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Fang of the Frenzied Nightclaw", "name_ko_KR": "광포한 밤표범의 송곳니", "name_fr_FR": "Croc de griffenuit frénétique", "name_de_DE": "Reißzahn der rasenden Nachtkralle", "name_zh_CN": "狂乱夜爪之牙", "name_es_ES": "Colmillo del garranoche enloquecido", "name_ru_RU": "Клык разъяренного когтя ночи", "name_it_IT": "Zanna di Zannacupa Frenetico", "name_pt_PT": "Presa do Noctigarra Enfurecido", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209958, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Rune of the Umbramane", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 553899, "buy_price": 2769496, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.975600004196167, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Rune of the Umbramane", "name_ko_KR": "암영갈기의 룬", "name_fr_FR": "Rune de Criniombre", "name_de_DE": "Rune der Umbramähne", "name_zh_CN": "黯鬃符文", "name_es_ES": "Runa del umbramelena", "name_ru_RU": "Руна Темношкурого", "name_it_IT": "Runa di Crinierombra", "name_pt_PT": "Runa de Jubumbra", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 209959, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Pinch of Dream Magic", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555943, "buy_price": 2779715, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.979200005531311, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 428, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Pinch of Dream Magic", "name_ko_KR": "꿈 마법의 편린", "name_fr_FR": "Pincée de magie de Rêve", "name_de_DE": "Eine Prise Traummagie", "name_zh_CN": "一撮梦境魔法", "name_es_ES": "Pellizco de magia onírica", "name_ru_RU": "Капелька магии Сна", "name_it_IT": "Pizzico di Magia del Sogno", "name_pt_PT": "Pitada de Magia Onírica", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 210816, "race_mask": 18446744073709551615, "desc": "Can be used for transmutations in place of a Philosopher's Stone.", "pad2": "", "pad1": "", "pad0": "", "name": "Algari Alchemist Stone", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 130, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 2097152, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 88056, "buy_price": 440282, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027400016784668, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 12, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 544, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Algari Alchemist Stone", "name_ko_KR": "알가르 연금술사 돌", "name_fr_FR": "Pierre d’alchimiste algarie", "name_de_DE": "Algarischer Alchemistenstein", "name_zh_CN": "阿加炼金石", "name_es_ES": "Piedra de alquimista algariana", "name_ru_RU": "Алгарийский алхимический камень", "name_it_IT": "Pietra Alchemica Algari", "name_pt_PT": "Pedra do Alquimista Algari", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 211606, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Combatant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0236999988555908, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 50331648, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Combatant's Medallion", "name_ko_KR": "용족 전투원의 메달", "name_fr_FR": "Médaillon du combattant draconique", "name_de_DE": "Medaillon des drakonischen Kämpfers", "name_zh_CN": "腾龙争斗者的勋章", "name_es_ES": "Medallón de Combatiente dracónico", "name_ru_RU": "Медальон драконьего бойца", "name_it_IT": "Medaglione del Combattente Draconico", "name_pt_PT": "Medalhão do Combatente Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 211607, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Combatant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.027400016784668, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Combatant's Insignia of Alacrity", "name_ko_KR": "용족 전투원의 기민 계급장", "name_fr_FR": "Insigne d’empressement du combattant draconique", "name_de_DE": "Inbrunstinsigne des drakonischen Kämpfers", "name_zh_CN": "腾龙争斗者的活跃徽记", "name_es_ES": "Insignia de prontitud de Combatiente dracónico", "name_ru_RU": "Знак расторопности драконьего бойца", "name_it_IT": "Fregio dell'Alacrità del Combattente Draconico", "name_pt_PT": "Insígnia de Diligência do Combatente Dracônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 211608, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Combatant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 16506, "buy_price": 82532, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.031000018119812, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 330, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Combatant's Emblem", "name_ko_KR": "용족 전투원의 문장", "name_fr_FR": "Emblème du combattant draconique", "name_de_DE": "Emblem des drakonischen Kämpfers", "name_zh_CN": "腾龙争斗者的纹章", "name_es_ES": "Emblema de Combatiente dracónico", "name_ru_RU": "Эмблема драконьего бойца", "name_it_IT": "Emblema del Combattente Draconico", "name_pt_PT": "Emblema do Combatente Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 212449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sikran's Endless Arsenal", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 825648, "buy_price": 4128241, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9939000010490417, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Sikran's Endless Arsenal", "name_ko_KR": "시크란의 무한한 무기고", "name_fr_FR": "Arsenal infini de Sikran", "name_de_DE": "Sik'rans endloses Arsenal", "name_zh_CN": "席克兰的无穷军械", "name_es_ES": "Arsenal infinito de Sikran", "name_ru_RU": "Бесконечный арсенал Сикрана", "name_it_IT": "Arsenale Interminabile di Sikran", "name_pt_PT": "Arsenal Infinito de Sikran", "on_use": true, "id_encounter": 2599, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212450, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Swarmlord's Authority", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 850735, "buy_price": 4253679, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0240999460220337, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Swarmlord's Authority", "name_ko_KR": "무리군주의 권위", "name_fr_FR": "Autorité du seigneur de l’essaim", "name_de_DE": "Autorität des Schwarmfürsten", "name_zh_CN": "统群者的权威", "name_es_ES": "Autoridad de señor de enjambre", "name_ru_RU": "Власть повелителя роя", "name_it_IT": "Autorità del Signore dello Sciame", "name_pt_PT": "Autoridade do Senhor do Enxame", "on_use": true, "id_encounter": 2608, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212451, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Aberrant Spellforge", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 853809, "buy_price": 4269047, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0277999639511108, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Aberrant Spellforge", "name_ko_KR": "기괴한 주문가열로", "name_fr_FR": "Forgesort aberrante", "name_de_DE": "Anomale Zauberschmiede", "name_zh_CN": "畸变法炉", "name_es_ES": "Forjahechizos aberrante", "name_ru_RU": "Искаженный магический горн", "name_it_IT": "Forgiamagie Aberrante", "name_pt_PT": "Forja-encantos Aberrante", "on_use": true, "id_encounter": 2611, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212452, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Gruesome Syringe", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 856800, "buy_price": 4284000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0313999652862549, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Gruesome Syringe", "name_ko_KR": "섬뜩한 주사", "name_fr_FR": "Seringue macabre", "name_de_DE": "Grausame Spritze", "name_zh_CN": "阴森注射器", "name_es_ES": "Jeringuilla truculenta", "name_ru_RU": "Изуверский шприц", "name_it_IT": "Siringa Terrificante", "name_pt_PT": "Seringa Pavorosa", "on_use": false, "id_encounter": 2612, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212453, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skyterror's Corrosive Organ", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 859873, "buy_price": 4299368, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.035099983215332, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Skyterror's Corrosive Organ", "name_ko_KR": "하늘공포의 부식성 장기", "name_fr_FR": "Organe corrosif de terreur-du-ciel", "name_de_DE": "Ätzendes Himmelsschreckenorgan", "name_zh_CN": "天空恐魔的腐蚀腺体", "name_es_ES": "Órgano corrosivo de aterracielos", "name_ru_RU": "Разъедающий орган ужаса небес", "name_it_IT": "Organo Corrosivo del Terrore dei Cieli", "name_pt_PT": "Órgão Corrosivo do Celesterror", "on_use": true, "id_encounter": 2609, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212454, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mad Queen's Mandate", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 862947, "buy_price": 4314737, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0388000011444092, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Mad Queen's Mandate", "name_ko_KR": "미치광이 여왕의 칙령", "name_fr_FR": "Mandat de la reine folle", "name_de_DE": "Mandat der verrückten Königin", "name_zh_CN": "狂乱女王圣谕", "name_es_ES": "Mandato de la reina loca", "name_ru_RU": "Приказ безумной королевы", "name_it_IT": "Mandato della Regina Folle", "name_pt_PT": "Mandato da Rainha Louca", "on_use": true, "id_encounter": 2602, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212455, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "11.0 Raid Template - Physical DPS - Trinket", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 715102, "buy_price": 3575512, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0424000024795532, "flags_1": 524304, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 280, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "11.0 Raid Template - Physical DPS - Trinket", "name_ko_KR": "11.0 Raid Template - Physical DPS - Trinket", "name_fr_FR": "11.0 Raid Template - Physical DPS - Trinket", "name_de_DE": "11.0 Raid Template - Physical DPS - Trinket", "name_zh_CN": "11.0 Raid Template - Physical DPS - Trinket", "name_es_ES": "11.0 Raid Template - Physical DPS - Trinket", "name_ru_RU": "11.0 Raid Template - Physical DPS - Trinket", "name_it_IT": "11.0 Raid Template - Physical DPS - Trinket", "name_pt_PT": "11.0 Raid Template - Physical DPS - Trinket", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 212456, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void Reaper's Contract", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 869011, "buy_price": 4345058, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0461000204086304, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1613, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Void Reaper's Contract", "name_ko_KR": "공허 사신의 계약", "name_fr_FR": "Contrat de faucheuse du Vide", "name_de_DE": "Vertrag des Leerenschnitters", "name_zh_CN": "虚空收割者的合约", "name_es_ES": "Contrato de segador del Vacío", "name_ru_RU": "Контракт жнеца Бездны", "name_it_IT": "Contratto della Mietitrice del Vuoto", "name_pt_PT": "Contrato do Anjo do Caos", "on_use": false, "id_encounter": 2601, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 212457, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "11.0 Raid Template - INT - Trinket", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 720179, "buy_price": 3600895, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0498000383377075, "flags_1": 524304, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 280, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "11.0 Raid Template - INT - Trinket", "name_ko_KR": "11.0 Raid Template - INT - Trinket", "name_fr_FR": "11.0 Raid Template - INT - Trinket", "name_de_DE": "11.0 Raid Template - INT - Trinket", "name_zh_CN": "11.0 Raid Template - INT - Trinket", "name_es_ES": "11.0 Raid Template - INT - Trinket", "name_ru_RU": "11.0 Raid Template - INT - Trinket", "name_it_IT": "11.0 Raid Template - INT - Trinket", "name_pt_PT": "11.0 Raid Template - INT - Trinket", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 212682, "race_mask": 18446744073709551615, "desc": "When held the curio slowly pulses, as water begins enveloping and tightening around your heart, slowing your heartbeat.", "pad2": "", "pad1": "", "pad0": "", "name": "Water's Beating Heart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 563344, "buy_price": 2816724, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0461000204086304, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Water's Beating Heart", "name_ko_KR": "맥동하는 물의 심장", "name_fr_FR": "Cœur d’eau palpitant", "name_de_DE": "Schlagendes Herz des Wassers", "name_zh_CN": "流水脉动之心", "name_es_ES": "Corazón palpitante del agua", "name_ru_RU": "Бьющееся сердце воды", "name_it_IT": "Cuore Pulsante dell'Acqua", "name_pt_PT": "Coração Pulsante de Água", "on_use": false, "id_encounter": 2511, "id_journal_instance": 1204, "id_map": 2527, "instance_type": 1}, {"id": 212683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Globe of Jagged Ice", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555115, "buy_price": 2775577, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0498000383377075, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Globe of Jagged Ice", "name_ko_KR": "뾰족한 얼음 구체", "name_fr_FR": "Globe de glace tranchante", "name_de_DE": "Kugel aus gezacktem Eis", "name_zh_CN": "锯齿寒冰之球", "name_es_ES": "Globo de hielo dentado", "name_ru_RU": "Шар зубчатого льда", "name_it_IT": "Globo di Ghiaccio Scheggiato", "name_pt_PT": "Globo de Gelo Serrilhado", "on_use": true, "id_encounter": 2510, "id_journal_instance": 1204, "id_map": 2527, "instance_type": 1}, {"id": 212684, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Umbrelskul's Fractured Heart", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499540, "buy_price": 2497703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9534000158309937, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Umbrelskul's Fractured Heart", "name_ko_KR": "엄브렐스컬의 조각난 심장", "name_fr_FR": "Cœur fracturé de Krânombrel", "name_de_DE": "Umbrelskuls gebrochenes Herz", "name_zh_CN": "安布雷斯库的破裂之心", "name_es_ES": "Corazón fracturado de Umbracráneo", "name_ru_RU": "Расколотое сердце Мраскула", "name_it_IT": "Cuore Spezzato di Umbrelskul", "name_pt_PT": "Coração Fraturado de Umbracrânio", "on_use": false, "id_encounter": 2508, "id_journal_instance": 1203, "id_map": 2515, "instance_type": 1}, {"id": 212685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Unstable Power", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9570000171661377, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Tome of Unstable Power", "name_ko_KR": "불안정한 마력의 고서", "name_fr_FR": "Tome de pouvoir instable", "name_de_DE": "Foliant der instabilen Macht", "name_zh_CN": "无常能量魔典", "name_es_ES": "Tomo de poder inestable", "name_ru_RU": "Фолиант ускользающего могущества", "name_it_IT": "Tomo del Potere Instabile", "name_pt_PT": "Tomo de Poder Instável", "on_use": false, "id_encounter": 2505, "id_journal_instance": 1203, "id_map": 2515, "instance_type": 1}, {"id": 212756, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Inexorable Resonator", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555283, "buy_price": 2776417, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.949999988079071, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Inexorable Resonator", "name_ko_KR": "거침없는 공명기", "name_fr_FR": "Résonateur inexorable", "name_de_DE": "Unerbittlicher Schwinger", "name_zh_CN": "不屈共鸣器", "name_es_ES": "Resonador inexorable", "name_ru_RU": "Беспощадный резонатор", "name_it_IT": "Risonatore Inesorabile", "name_pt_PT": "Ressonador Inexorável", "on_use": false, "id_encounter": 2484, "id_journal_instance": 1197, "id_map": 2451, "instance_type": 1}, {"id": 212757, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Granyth's Enduring Scale", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 534234, "buy_price": 2671171, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9535999894142151, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Granyth's Enduring Scale", "name_ko_KR": "그라니스의 인내하는 비늘", "name_fr_FR": "Écaille durable de Granyth", "name_de_DE": "Granyths robuste Schuppe", "name_zh_CN": "格拉尼斯的劲久之鳞", "name_es_ES": "Escama duradera de Granyth", "name_ru_RU": "Прочная чешуйка Гранита", "name_it_IT": "Scaglia Duratura di Granyth", "name_pt_PT": "Escama Perpétua de Granyth", "on_use": true, "id_encounter": 2498, "id_journal_instance": 1198, "id_map": 2516, "instance_type": 1}, {"id": 213423, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bygone Weapon Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 200, "stat_alloc_2": 200, "stat_alloc_3": 400, "stat_alloc_4": 50, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9830999970436096, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Bygone Weapon Charm", "name_ko_KR": "지나간 시절의 무기 부적", "name_fr_FR": "Charme d’arme d’autrefois", "name_de_DE": "Vergangene Waffenverzauberung", "name_zh_CN": "昔时武器护符", "name_es_ES": "Talismán de arma pretérito", "name_ru_RU": "Ветхий талисман для оружия", "name_it_IT": "Talismano d'Arma del Passato", "name_pt_PT": "Patuá de Armadura Arcaico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 213533, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Weapon Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 400, "stat_alloc_2": 400, "stat_alloc_3": 800, "stat_alloc_4": 100, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972100019454956, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 5, "name_en_US": "Ancient Weapon Charm", "name_ko_KR": "고대 무기 부적", "name_fr_FR": "Charme d’arme ancienne", "name_de_DE": "Uralte Waffenverzauberung", "name_zh_CN": "远古武器护符", "name_es_ES": "Talismán de arma antiguo", "name_ru_RU": "Древний талисман для оружия", "name_it_IT": "Talismano d'Arma Antico", "name_pt_PT": "Patuá de Arma Antigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 213534, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bygone Armor Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 200, "stat_alloc_2": 200, "stat_alloc_3": 400, "stat_alloc_4": 50, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9757999777793884, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 4, "name_en_US": "Bygone Armor Charm", "name_ko_KR": "지나간 시절의 방어구 부적", "name_fr_FR": "Charme d’armure d’autrefois", "name_de_DE": "Vergangene Rüstungsverzauberung", "name_zh_CN": "昔时护甲护符", "name_es_ES": "Talismán de armadura pretérito", "name_ru_RU": "Ветхий талисман для брони", "name_it_IT": "Talismano d'Armatura del Passato", "name_pt_PT": "Patuá de Armadura Arcaico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 213535, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ancient Armor Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 400, "stat_alloc_2": 400, "stat_alloc_3": 800, "stat_alloc_4": 100, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9794999957084656, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 5, "name_en_US": "Ancient Armor Charm", "name_ko_KR": "고대 방어구 부적", "name_fr_FR": "Charme d’armure ancienne", "name_de_DE": "Uralte Rüstungsverzauberung", "name_zh_CN": "远古护甲护符", "name_es_ES": "Talismán de armadura antiguo", "name_ru_RU": "Древний талисман для брони", "name_it_IT": "Talismano d'Armatura Antico", "name_pt_PT": "Patuá de Armadura Antigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215169, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Everburning Lantern", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9761999845504761, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Everburning Lantern", "name_ko_KR": "영원히 타오르는 등불", "name_fr_FR": "Lanterne semperardente", "name_de_DE": "Ewig brennende Laterne", "name_zh_CN": "永燃灯笼", "name_es_ES": "Farol de llama perpetua", "name_ru_RU": "Вечногорящий светильник", "name_it_IT": "Lanterna Inestinguibile", "name_pt_PT": "Lanterna de Fogo Perene", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215170, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Abyssal Trap", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9797999858856201, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Abyssal Trap", "name_ko_KR": "심연의 덫", "name_fr_FR": "Piège abyssal", "name_de_DE": "Abgrundfalle", "name_zh_CN": "深渊陷阱", "name_es_ES": "Trampa abisal", "name_ru_RU": "Глубинная ловушка", "name_it_IT": "Trappola Abissale", "name_pt_PT": "Armadilha Abissal", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215171, "race_mask": 18446744073709551615, "desc": "Fungal Friends never truly die. Instead their spores seep back into the earth, birthing the Friend anew.", "pad2": "", "pad1": "", "pad0": "", "name": "Fungal Friend Flute", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9835000038146973, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Fungal Friend Flute", "name_ko_KR": "포자 친구 피리", "name_fr_FR": "Flûte d’ami fongique", "name_de_DE": "Flöte des Fungusfreunds", "name_zh_CN": "真菌之友长笛", "name_es_ES": "Flauta de amigo fúngico", "name_ru_RU": "Флейта грибных друзей", "name_it_IT": "Flauto dell'Amico Fungino", "name_pt_PT": "Flauta de Camaradinha Fúngico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215172, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Silken Chain Weaver", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872000217437744, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Silken Chain Weaver", "name_ko_KR": "비단 사슬 방직공", "name_fr_FR": "Tissage en soie", "name_de_DE": "Seidenkettenweber", "name_zh_CN": "绸缎织链器", "name_es_ES": "Tejido de anillas sedoso", "name_ru_RU": "Ткач шелковых цепей", "name_it_IT": "Nodo Inanellato di Seta", "name_pt_PT": "Tecelão de Corrente Sedosa", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215173, "race_mask": 18446744073709551615, "desc": "Side effects may include loss of balance, vomiting, extreme pain, short term memory loss, long term memory loss, loss of motor functions, hallucinations, and an insatiable appetite for small insects.", "pad2": "", "pad1": "", "pad0": "", "name": "Serum of Unconstrained Senses", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3333, "stat_alloc_2": 3333, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 14, "stat_type_2": 13, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499238, "buy_price": 2496191, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9908999800682068, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Serum of Unconstrained Senses", "name_ko_KR": "굴레를 벗어난 감각의 혈청", "name_fr_FR": "Sérum de sens débridés", "name_de_DE": "Serum der zügellosen Sinneseindrücke", "name_zh_CN": "无拘感官血清", "name_es_ES": "Sérum de sentidos desenfrenados", "name_ru_RU": "Сыворотка нескованных ощущений", "name_it_IT": "Siero dei Sensi Illimitati", "name_pt_PT": "Soro de Sentidos Irrestritos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215174, "race_mask": 18446744073709551615, "desc": "WARNING: Failure to administer the antidote shortly after consumption may result in death.", "pad2": "", "pad1": "", "pad0": "", "name": "Concoction: Kiss of Death", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9944999814033508, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Concoction: Kiss of Death", "name_ko_KR": "혼합물: 죽음의 입맞춤", "name_fr_FR": "Concoction : Baiser de la mort", "name_de_DE": "Mixtur: Kuss des Todes", "name_zh_CN": "制剂:死亡之吻", "name_es_ES": "Brebaje: beso de la muerte", "name_ru_RU": "Отвар: поцелуй смерти", "name_it_IT": "Mistura: Bacio della Morte", "name_pt_PT": "Concocção: Beijo da Morte", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215175, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Belt of Vials", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.998199999332428, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Belt of Vials", "name_ko_KR": "약병 허리띠", "name_fr_FR": "Ceinture de fioles", "name_de_DE": "Phiolengurt", "name_zh_CN": "瓶剂带", "name_es_ES": "Cinturón de viales", "name_ru_RU": "Пояс с фиалами", "name_it_IT": "Cintura di Fiale", "name_pt_PT": "Cinto de Ampolas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 215178, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadow-Binding Ritual Knife", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0091999769210815, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Shadow-Binding Ritual Knife", "name_ko_KR": "어둠결속 의식용 손칼", "name_fr_FR": "Couteau rituel liant les ombres", "name_de_DE": "Schattenbindendes Ritualmesser", "name_zh_CN": "影缚仪式刻刃", "name_es_ES": "Cuchillo de ritual vinculasombras", "name_ru_RU": "Ритуальный нож связи с Тьмой", "name_it_IT": "Coltello Rituale Vincolaombra", "name_pt_PT": "Faca Ritualística de Vínculo Sombrio", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216279, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Gladiator's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 755830, "buy_price": 3779152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9763000011444092, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 493, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Draconic Gladiator's Badge of Ferocity", "name_ko_KR": "용족 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur draconique", "name_de_DE": "Wildheitsabzeichen des drakonischen Gladiators", "name_zh_CN": "腾龙角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador dracónico", "name_ru_RU": "Жетон свирепости драконьего гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Draconico", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216280, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Gladiator's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 758666, "buy_price": 3793331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9800000190734863, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 493, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Draconic Gladiator's Insignia of Alacrity", "name_ko_KR": "용족 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur draconique", "name_de_DE": "Inbrunstinsigne des drakonischen Gladiators", "name_zh_CN": "腾龙角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador dracónico", "name_ru_RU": "Знак расторопности драконьего гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Draconico", "name_pt_PT": "Insígnia de Diligência do Gladiador Dracônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216281, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Gladiator's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 761425, "buy_price": 3807126, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836000204086304, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 493, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Draconic Gladiator's Emblem", "name_ko_KR": "용족 검투사의 문장", "name_fr_FR": "Emblème du gladiateur draconique", "name_de_DE": "Emblem des drakonischen Gladiators", "name_zh_CN": "腾龙角斗士的纹章", "name_es_ES": "Emblema de Gladiador dracónico", "name_ru_RU": "Эмблема драконьего гладиатора", "name_it_IT": "Emblema del Gladiatore Draconico", "name_pt_PT": "Emblema do Gladiador Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216282, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Gladiator's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764261, "buy_price": 3821305, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9872999787330627, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 493, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Draconic Gladiator's Medallion", "name_ko_KR": "용족 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur draconique", "name_de_DE": "Medaillon des drakonischen Gladiators", "name_zh_CN": "腾龙角斗士的勋章", "name_es_ES": "Medallón de Gladiador dracónico", "name_ru_RU": "Медальон драконьего гладиатора", "name_it_IT": "Medaglione del Gladiatore Draconico", "name_pt_PT": "Medalhão do Gladiador Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216283, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Gladiator's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767096, "buy_price": 3835484, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9909999966621399, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 493, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Draconic Gladiator's Sigil of Adaptation", "name_ko_KR": "용족 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur draconique", "name_de_DE": "Siegel der Anpassung des drakonischen Gladiators", "name_zh_CN": "腾龙角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador dracónico", "name_ru_RU": "Печать адаптации драконьего гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Draconico", "name_pt_PT": "Signo de Adaptação do Gladiador Dracônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216368, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Aspirant's Badge of Ferocity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 571871, "buy_price": 2859358, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0353000164031982, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 454, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Aspirant's Badge of Ferocity", "name_ko_KR": "용족 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant draconique", "name_de_DE": "Wildheitsabzeichen des drakonischen Aspiranten", "name_zh_CN": "腾龙候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Aspirante dracónico", "name_ru_RU": "Жетон свирепости драконьего претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Draconico", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216369, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Aspirant's Medallion", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 573954, "buy_price": 2869773, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0390000343322754, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 454, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Aspirant's Medallion", "name_ko_KR": "용족 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant draconique", "name_de_DE": "Medaillon des drakonischen Aspiranten", "name_zh_CN": "腾龙候选者的勋章", "name_es_ES": "Medallón de Aspirante dracónico", "name_ru_RU": "Медальон драконьего претендента", "name_it_IT": "Medaglione del Pretendente Draconico", "name_pt_PT": "Medalhão do Aspirante Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216370, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Aspirant's Insignia of Alacrity", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576037, "buy_price": 2880188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0427000522613525, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 454, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Aspirant's Insignia of Alacrity", "name_ko_KR": "용족 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant draconique", "name_de_DE": "Inbrunstinsigne des drakonischen Aspiranten", "name_zh_CN": "腾龙候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de Aspirante dracónico", "name_ru_RU": "Знак расторопности драконьего претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Draconico", "name_pt_PT": "Insígnia de Diligência do Aspirante Dracônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216371, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Aspirant's Emblem", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536685, "buy_price": 2683427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9726999998092651, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 454, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Aspirant's Emblem", "name_ko_KR": "용족 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant draconique", "name_de_DE": "Emblem des drakonischen Aspiranten", "name_zh_CN": "腾龙候选者的纹章", "name_es_ES": "Emblema de Aspirante dracónico", "name_ru_RU": "Эмблема драконьего претендента", "name_it_IT": "Emblema del Pretendente Draconico", "name_pt_PT": "Emblema do Aspirante Dracônico", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216372, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Draconic Aspirant's Sigil of Adaptation", "id_expansion": 9, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538712, "buy_price": 2693561, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764000177383423, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 454, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Draconic Aspirant's Sigil of Adaptation", "name_ko_KR": "용족 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant draconique", "name_de_DE": "Siegel der Anpassung des drakonischen Aspiranten", "name_zh_CN": "腾龙候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de Aspirante dracónico", "name_ru_RU": "Печать адаптации драконьего претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Draconico", "name_pt_PT": "Signo de Adaptação do Aspirante Dracônico", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 216657, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Test Item C", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 499540, "buy_price": 2497703, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9724000096321106, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 3, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Test Item C", "name_ko_KR": "시험용 아이템 C", "name_fr_FR": "Objet de test C", "name_de_DE": "Testgegenstand C", "name_zh_CN": "测试物品C", "name_es_ES": "Objeto de prueba C", "name_ru_RU": "Тестовый предмет C", "name_it_IT": "Oggetto Test C", "name_pt_PT": "Item de Teste C", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217041, "race_mask": 18446744073709551615, "desc": "Urtago gave you this horn. Using it would briefly share your knowledge with others around you.", "pad2": "", "pad1": "", "pad0": "", "name": "Horn of Declaration", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 712632, "buy_price": 3563164, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0169999599456787, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Horn of Declaration", "name_ko_KR": "선언의 뿔피리", "name_fr_FR": "Cor de déclaration", "name_de_DE": "Horn der Erklärung", "name_zh_CN": "宣言号角", "name_es_ES": "Cuerno de la declaración", "name_ru_RU": "Рог объявлений", "name_it_IT": "Corno della Dichiarazione", "name_pt_PT": "Trompa da Declaração", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217402, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Olden Armor Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 100, "stat_alloc_2": 100, "stat_alloc_3": 200, "stat_alloc_4": 50, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506000280380249, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Olden Armor Charm", "name_ko_KR": "낡은 방어구 부적", "name_fr_FR": "Charme d’armure de l’ancien temps", "name_de_DE": "Altertümliche Rüstungsverzauberung", "name_zh_CN": "往岁护甲护符", "name_es_ES": "Talismán de armadura de antaño", "name_ru_RU": "Былой талисман для брони", "name_it_IT": "Talismano d'Armatura Invecchiato", "name_pt_PT": "Patuá de Armadura Antigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217403, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Olden Weapon Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 100, "stat_alloc_2": 100, "stat_alloc_3": 200, "stat_alloc_4": 50, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": 36, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954200029373169, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 3, "name_en_US": "Olden Weapon Charm", "name_ko_KR": "낡은 무기 부적", "name_fr_FR": "Charme d’arme de l’ancien temps", "name_de_DE": "Altertümliche Waffenverzauberung", "name_zh_CN": "往岁武器护符", "name_es_ES": "Talismán de arma de antaño", "name_ru_RU": "Былой талисман для оружия", "name_it_IT": "Talismano d'Arma Invecchiato", "name_pt_PT": "Patuá de Arma Antigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217404, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time-Worn Armor Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 50, "stat_alloc_2": 50, "stat_alloc_3": 100, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Time-Worn Armor Charm", "name_ko_KR": "세월에 마모된 방어구 부적", "name_fr_FR": "Charme d’armure usée par le temps", "name_de_DE": "Von der Zeit gezeichnete Rüstungsverzauberung", "name_zh_CN": "陈年护甲护符", "name_es_ES": "Talismán de armadura desgastado por el tiempo", "name_ru_RU": "Обветшалый талисман для брони", "name_it_IT": "Talismano d'Armatura Consumato dal Tempo", "name_pt_PT": "Patuá de Armadura Desgastado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217405, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time-Worn Weapon Charm", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 50, "stat_alloc_2": 50, "stat_alloc_3": 100, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 38, "stat_type_2": 41, "stat_type_3": 7, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 98320, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 1, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Time-Worn Weapon Charm", "name_ko_KR": "세월에 마모된 무기 부적", "name_fr_FR": "Charme d’arme usée par le temps", "name_de_DE": "Von der Zeit gezeichnete Waffenverzauberung", "name_zh_CN": "陈年武器护符", "name_es_ES": "Talismán de arma desgastado por el tiempo", "name_ru_RU": "Обветшалый талисман для оружия", "name_it_IT": "Talismano d'Arma Consumato dal Tempo", "name_pt_PT": "Patuá de Arma Desgastado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 217894, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nerubian Pheromone Secreter", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9502999782562256, "flags_1": 561216, "flags_2": 12288, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 26, "socket_color_2": 26, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 3, "name_en_US": "Nerubian Pheromone Secreter", "name_ko_KR": "네루비안 페로몬 분비 장치", "name_fr_FR": "Sécréteur de phéromones nérubiennes", "name_de_DE": "Neruberpheromonabsonderer", "name_zh_CN": "蛛魔信息素分泌装置", "name_es_ES": "Glándula de feromonas nerubianas", "name_ru_RU": "Секретор нерубских феромонов", "name_it_IT": "Secretore di Feromoni Nerubiani", "name_pt_PT": "Secretor de Feromônios Nerubianos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Wildfire Wick", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 400623, "buy_price": 2003116, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.954200029373169, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Wildfire Wick", "name_ko_KR": "야생불 심지", "name_fr_FR": "Mèche de flambée", "name_de_DE": "Lauffeuerdocht", "name_zh_CN": "野火烛芯", "name_es_ES": "Mecha de fuego salvaje", "name_ru_RU": "Фитиль дикого огня", "name_it_IT": "Miccia di Fuocobrado", "name_pt_PT": "Pavio do Fogo Indômito", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218421, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Aspirant's Badge of Ferocity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 571871, "buy_price": 2859358, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9578999876976013, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Forged Aspirant's Badge of Ferocity", "name_ko_KR": "제련된 지원자의 맹위 휘장", "name_fr_FR": "Écusson de férocité de l’aspirant forgé", "name_de_DE": "Wildheitsabzeichen des geschmiedeten Aspiranten", "name_zh_CN": "炉铸候选者的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de aspirante forjado", "name_ru_RU": "Жетон свирепости кованого претендента", "name_it_IT": "Distintivo della Ferocia del Pretendente Forgiato", "name_pt_PT": "Distintivo de Ferocidade do Aspirante Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218422, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Aspirant's Medallion", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 573954, "buy_price": 2869773, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9616000056266785, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Forged Aspirant's Medallion", "name_ko_KR": "제련된 지원자의 메달", "name_fr_FR": "Médaillon de l’aspirant forgé", "name_de_DE": "Medaillon des geschmiedeten Aspiranten", "name_zh_CN": "炉铸候选者的勋章", "name_es_ES": "Medallón de aspirante forjado", "name_ru_RU": "Медальон кованого претендента", "name_it_IT": "Medaglione del Pretendente Forgiato", "name_pt_PT": "Medalhão do Aspirante Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218423, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Aspirant's Insignia of Alacrity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576037, "buy_price": 2880188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9653000235557556, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Forged Aspirant's Insignia of Alacrity", "name_ko_KR": "제련된 지원자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de l’aspirant forgé", "name_de_DE": "Inbrunstinsigne des geschmiedeten Aspiranten", "name_zh_CN": "炉铸候选者的活跃徽记", "name_es_ES": "Insignia de prontitud de aspirante forjado", "name_ru_RU": "Знак расторопности кованого претендента", "name_it_IT": "Fregio dell'Alacrità del Pretendente Forgiato", "name_pt_PT": "Insígnia de Diligência do Aspirante Forjado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Aspirant's Emblem", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 536685, "buy_price": 2683427, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9689000248908997, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Forged Aspirant's Emblem", "name_ko_KR": "제련된 지원자의 문장", "name_fr_FR": "Emblème de l’aspirant forgé", "name_de_DE": "Emblem des geschmiedeten Aspiranten", "name_zh_CN": "炉铸候选者的纹章", "name_es_ES": "Emblema de aspirante forjado", "name_ru_RU": "Эмблема кованого претендента", "name_it_IT": "Emblema del Pretendente Forgiato", "name_pt_PT": "Emblema do Aspirante Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218425, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Aspirant's Sigil of Adaptation", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 538712, "buy_price": 2693561, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.972599983215332, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Forged Aspirant's Sigil of Adaptation", "name_ko_KR": "제련된 지원자의 적응 인장", "name_fr_FR": "Cachet d’adaptation de l’aspirant forgé", "name_de_DE": "Siegel der Anpassung des geschmiedeten Aspiranten", "name_zh_CN": "炉铸候选者的适应魔印", "name_es_ES": "Sigilo de adaptación de aspirante forjado", "name_ru_RU": "Печать адаптации кованого претендента", "name_it_IT": "Sigillo dell'Adattamento del Pretendente Forgiato", "name_pt_PT": "Signo de Adaptação do Aspirante Forjado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218713, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Gladiator's Badge of Ferocity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 755830, "buy_price": 3779152, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.00600004196167, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Forged Gladiator's Badge of Ferocity", "name_ko_KR": "제련된 검투사의 맹위 휘장", "name_fr_FR": "Écusson de férocité du gladiateur forgé", "name_de_DE": "Wildheitsabzeichen des geschmiedeten Gladiators", "name_zh_CN": "炉铸角斗士的凶猛徽章", "name_es_ES": "Distintivo de ferocidad de Gladiador forjado", "name_ru_RU": "Жетон свирепости кованого гладиатора", "name_it_IT": "Distintivo della Ferocia del Gladiatore Forgiato", "name_pt_PT": "Distintivo de Ferocidade do Gladiador Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218714, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Gladiator's Insignia of Alacrity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 758666, "buy_price": 3793331, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0096999406814575, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Forged Gladiator's Insignia of Alacrity", "name_ko_KR": "제련된 검투사의 기민 계급장", "name_fr_FR": "Insigne d’empressement du gladiateur forgé", "name_de_DE": "Inbrunstinsigne des geschmiedeten Gladiators", "name_zh_CN": "炉铸角斗士的活跃徽记", "name_es_ES": "Insignia de prontitud de Gladiador forjado", "name_ru_RU": "Знак расторопности кованого гладиатора", "name_it_IT": "Fregio dell'Alacrità del Gladiatore Forgiato", "name_pt_PT": "Insígnia de Diligência do Gladiador Forjado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218715, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Gladiator's Emblem", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 761425, "buy_price": 3807126, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0133999586105347, "flags_1": 528384, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Forged Gladiator's Emblem", "name_ko_KR": "제련된 검투사의 문장", "name_fr_FR": "Emblème du gladiateur forgé", "name_de_DE": "Emblem des geschmiedeten Gladiators", "name_zh_CN": "炉铸角斗士的纹章", "name_es_ES": "Emblema de Gladiador forjado", "name_ru_RU": "Эмблема кованого гладиатора", "name_it_IT": "Emblema del Gladiatore Forgiato", "name_pt_PT": "Emblema do Gladiador Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218716, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Gladiator's Medallion", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 764261, "buy_price": 3821305, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0170999765396118, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Forged Gladiator's Medallion", "name_ko_KR": "제련된 검투사의 메달", "name_fr_FR": "Médaillon du gladiateur forgé", "name_de_DE": "Medaillon des geschmiedeten Gladiators", "name_zh_CN": "炉铸角斗士的勋章", "name_es_ES": "Medallón de Gladiador forjado", "name_ru_RU": "Медальон кованого гладиатора", "name_it_IT": "Medaglione del Gladiatore Forgiato", "name_pt_PT": "Medalhão do Gladiador Forjado", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 218717, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Forged Gladiator's Sigil of Adaptation", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 767096, "buy_price": 3835484, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0206999778747559, "flags_1": 4096, "flags_2": 8192, "flags_3": 0, "flags_4": 33554432, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Forged Gladiator's Sigil of Adaptation", "name_ko_KR": "제련된 검투사의 적응 인장", "name_fr_FR": "Cachet d’adaptation du gladiateur forgé", "name_de_DE": "Siegel der Anpassung des geschmiedeten Gladiators", "name_zh_CN": "炉铸角斗士的适应魔印", "name_es_ES": "Sigilo de adaptación de Gladiador forjado", "name_ru_RU": "Печать адаптации кованого гладиатора", "name_it_IT": "Sigillo dell'Adattamento del Gladiatore Forgiato", "name_pt_PT": "Signo de Adaptação do Gladiador Forjado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219014, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Vengeful Fire Spirit", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013700008392334, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Vengeful Fire Spirit", "name_ko_KR": "복수심에 타오르는 불의 정령", "name_fr_FR": "Esprit vengeur du feu", "name_de_DE": "Rachsüchtiger Feuergeist", "name_zh_CN": "怨仇烈焰之灵", "name_es_ES": "Espíritu de fuego vengativo", "name_ru_RU": "Мстительный дух огня", "name_it_IT": "Spirito del Fuoco Vendicativo", "name_pt_PT": "Espírito de Fogo Vingativo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219018, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Esteemed Earthen Emblem", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0283000469207764, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 3, "name_en_US": "Esteemed Earthen Emblem", "name_ko_KR": "존경받는 토석인 상징", "name_fr_FR": "Emblème terrestre estimé", "name_de_DE": "Hochverehrtes Emblem der Irdenen", "name_zh_CN": "尊贵土灵徽章", "name_es_ES": "Emblema de terráneo estimado", "name_ru_RU": "Знак заслуженного земельника", "name_it_IT": "Emblema di Stima dei Terrigeni", "name_pt_PT": "Emblema Terrano Estimado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219294, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charged Stormrook Plume", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 566056, "buy_price": 2830284, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9911999702453613, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Charged Stormrook Plume", "name_ko_KR": "충만한 폭풍떼까마귀 깃발", "name_fr_FR": "Plumet de freux de la tempête chargé", "name_de_DE": "Energiegeladene Sturmkrähenfeder", "name_zh_CN": "充能雷鸫飞羽", "name_es_ES": "Pluma de tormengrajo cargada", "name_ru_RU": "Заряженное перо буреклюва", "name_it_IT": "Piuma di Corvo della Tempesta Caricata", "name_pt_PT": "Pluma de Corventa Carregada", "on_use": true, "id_encounter": 2566, "id_journal_instance": 1268, "id_map": 2648, "instance_type": 1}, {"id": 219295, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Sigil of Algari Concordance", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 568169, "buy_price": 2840849, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9948999881744385, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Sigil of Algari Concordance", "name_ko_KR": "알가르 색인의 인장", "name_fr_FR": "Sceau de concordance algari", "name_de_DE": "Siegel der algarischen Einigkeit", "name_zh_CN": "阿加调谐魔印", "name_es_ES": "Sello de concordancia algariana", "name_ru_RU": "Печать алгарийского согласия", "name_it_IT": "Sigillo dell'Armonia Algari", "name_pt_PT": "Signo de Concórdia Algari", "on_use": false, "id_encounter": 2567, "id_journal_instance": 1268, "id_map": 2648, "instance_type": 1}, {"id": 219296, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Entropic Skardyn Core", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 570282, "buy_price": 2851414, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9986000061035156, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Entropic Skardyn Core", "name_ko_KR": "혼돈의 스카르딘 핵", "name_fr_FR": "Noyau de Skardyn entropique", "name_de_DE": "Entropischer Skardynkern", "name_zh_CN": "熵能斯卡丁之核", "name_es_ES": "Núcleo skardyn entrópico", "name_ru_RU": "Энтропический сердечник скардина", "name_it_IT": "Nucleo Entropico degli Skardyn", "name_pt_PT": "Núcleo Skardyn Entrópico", "on_use": false, "id_encounter": 2568, "id_journal_instance": 1268, "id_map": 2648, "instance_type": 1}, {"id": 219297, "race_mask": 18446744073709551615, "desc": "Watered down for consumption by lesser mortals.", "pad2": "", "pad1": "", "pad0": "", "name": "Cinderbrew Stein", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 587472, "buy_price": 2937362, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0286999940872192, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Cinderbrew Stein", "name_ko_KR": "커다란 잿불맥주 잔", "name_fr_FR": "Chope de Brassecendre", "name_de_DE": "Glutbräukrug", "name_zh_CN": "燧酿酒杯", "name_es_ES": "Jarra de Tragoceniza", "name_ru_RU": "Кружка искрохмеля", "name_it_IT": "Boccale di Idromele Cinereo", "name_pt_PT": "Caneco de Cinzagris", "on_use": false, "id_encounter": 2586, "id_journal_instance": 1272, "id_map": 2661, "instance_type": 1}, {"id": 219298, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ravenous Honey Buzzer", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 589585, "buy_price": 2947927, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Ravenous Honey Buzzer", "name_ko_KR": "게걸스러운 꿀 호출기", "name_fr_FR": "Bourdonneur de miel vorace", "name_de_DE": "Gefräßiger Honigbrummer", "name_zh_CN": "贪食蜂鸣器", "name_es_ES": "Zumbón de miel voraz", "name_ru_RU": "Прожорливый медовый жужжальщик", "name_it_IT": "Vespa del Miele Vorace", "name_pt_PT": "Zumbizão de Mel Voraz", "on_use": true, "id_encounter": 2588, "id_journal_instance": 1272, "id_map": 2661, "instance_type": 1}, {"id": 219299, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Synergistic Brewterializer", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 591698, "buy_price": 2958492, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0361000299453735, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Synergistic Brewterializer", "name_ko_KR": "상승성 맥주 실체화 장치", "name_fr_FR": "Biéraliseur synergétique", "name_de_DE": "Synergetischer Gebräuterialisator", "name_zh_CN": "协同化酒器", "name_es_ES": "Birraterializador sinergético", "name_ru_RU": "Синергичный хмелегенератор", "name_it_IT": "Materializzatore di Barili Sinergico", "name_pt_PT": "Fermentalizador Sinergético", "on_use": false, "id_encounter": 2589, "id_journal_instance": 1272, "id_map": 2661, "instance_type": 1}, {"id": 219300, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Skarmorak Shard", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 593811, "buy_price": 2969057, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0398000478744507, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Skarmorak Shard", "name_ko_KR": "스카모락 파편", "name_fr_FR": "Fragment de Skarmorak", "name_de_DE": "Skarmoraksplitter", "name_zh_CN": "斯卡莫拉克碎片", "name_es_ES": "Fragmento de Skarmorak", "name_ru_RU": "Осколок Скарморака", "name_it_IT": "Scheggia di Skarmorak", "name_pt_PT": "Estilhaço Skarmorak", "on_use": true, "id_encounter": 2579, "id_journal_instance": 1269, "id_map": 2652, "instance_type": 1}, {"id": 219301, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Overclocked Gear-a-Rang Launcher", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 595867, "buy_price": 2979337, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0434000492095947, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Overclocked Gear-a-Rang Launcher", "name_ko_KR": "과부하된 톱니바퀴 부메랑 발사기", "name_fr_FR": "Lanceur d’écroumerang suralimenté", "name_de_DE": "Übertakteter Zahnradbumerangwerfer", "name_zh_CN": "超频回旋齿轮发射器", "name_es_ES": "Lanzador de equiporang sobrecargado", "name_ru_RU": "Разогнанный метатель шестерангов", "name_it_IT": "Lanciatore di Ingranarang Velocizzato", "name_pt_PT": "Lança-engrenangue Turbinado", "on_use": true, "id_encounter": 2590, "id_journal_instance": 1269, "id_map": 2652, "instance_type": 1}, {"id": 219302, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scrapsinger's Symphony", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 597980, "buy_price": 2989901, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0470999479293823, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Scrapsinger's Symphony", "name_ko_KR": "고물노래꾼의 교향곡", "name_fr_FR": "Symphonie du chante-ferraille", "name_de_DE": "Symphonie des Schrottsängers", "name_zh_CN": "吟屑交响曲", "name_es_ES": "Sinfonía de cantachatarra", "name_ru_RU": "Симфония голоса хлама", "name_it_IT": "Sinfonia del Cantascarti", "name_pt_PT": "Sinfonia de Canta-sucata", "on_use": false, "id_encounter": 2590, "id_journal_instance": 1269, "id_map": 2652, "instance_type": 1}, {"id": 219303, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "High Speaker's Accretion", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 542928, "buy_price": 2714640, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9506999850273132, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "High Speaker's Accretion", "name_ko_KR": "고위 대변자의 부착물", "name_fr_FR": "Accrétion du haut-mandataire", "name_de_DE": "Zuwachs des Obersten Sprechers", "name_zh_CN": "高阶代言人的吸积水晶", "name_es_ES": "Acrecentamiento de alto orador", "name_ru_RU": "Срастание верховного глашатая", "name_it_IT": "Concrezione del Gran Oratore", "name_pt_PT": "Acreção do Grão-mensageiro", "on_use": true, "id_encounter": 2582, "id_journal_instance": 1269, "id_map": 2652, "instance_type": 1}, {"id": 219304, "race_mask": 18446744073709551615, "desc": "A hero's symbolic trophy, for the kobolds need not be summoned. The kobolds yearn for the catacombs.", "pad2": "", "pad1": "", "pad0": "", "name": "Conductor's Wax Whistle", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 545041, "buy_price": 2725205, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9544000029563904, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Conductor's Wax Whistle", "name_ko_KR": "지휘자의 밀랍 호루라기", "name_fr_FR": "Sifflet de conducteur en cire", "name_de_DE": "Wachspfeife des Wagenführers", "name_zh_CN": "矿车员的蜡哨", "name_es_ES": "Silbato de cera de conductor", "name_ru_RU": "Восковой свисток проводника", "name_it_IT": "Fischietto di Cera del Conduttore", "name_pt_PT": "Apito de Cera do Condutor", "on_use": false, "id_encounter": 2569, "id_journal_instance": 1210, "id_map": 2651, "instance_type": 1}, {"id": 219305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Carved Blazikon Wax", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 547096, "buy_price": 2735484, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9580000042915344, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Carved Blazikon Wax", "name_ko_KR": "조각된 블레지콘 밀랍", "name_fr_FR": "Cire de Blazikon sculptée", "name_de_DE": "Verziertes Lohenzarwachs", "name_zh_CN": "布雷炙孔琢蜡", "name_es_ES": "Cera del Llamakon tallada", "name_ru_RU": "Резной воск Пламекона", "name_it_IT": "Cera di Ardikon Intagliata", "name_pt_PT": "Cera de Brasikon Entalhada", "on_use": false, "id_encounter": 2559, "id_journal_instance": 1210, "id_map": 2651, "instance_type": 1}, {"id": 219306, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burin of the Candle King", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 549209, "buy_price": 2746049, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9617000222206116, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Burin of the Candle King", "name_ko_KR": "양초왕의 조각칼", "name_fr_FR": "Burin du roi-bougie", "name_de_DE": "Stichel des Kerzenkönigs", "name_zh_CN": "蜡烛之王的雕刀", "name_es_ES": "Punzón del Rey Vela", "name_ru_RU": "Резец Свечного Короля", "name_it_IT": "Bulino del Re delle Candele", "name_pt_PT": "Buril do Rei da Vela", "on_use": true, "id_encounter": 2560, "id_journal_instance": 1210, "id_map": 2651, "instance_type": 1}, {"id": 219307, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Remnant of Darkness", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 551322, "buy_price": 2756614, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965399980545044, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Remnant of Darkness", "name_ko_KR": "어둠의 잔재", "name_fr_FR": "Vestiges de ténèbres", "name_de_DE": "Fragment der Dunkelheit", "name_zh_CN": "黑暗之主残影", "name_es_ES": "Remanente de oscuridad", "name_ru_RU": "Частица Тьмы", "name_it_IT": "Residuo di Tenebra", "name_pt_PT": "Resquício da Escuridão", "on_use": false, "id_encounter": 2561, "id_journal_instance": 1210, "id_map": 2651, "instance_type": 1}, {"id": 219308, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Signet of the Priory", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 553378, "buy_price": 2766894, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.968999981880188, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Signet of the Priory", "name_ko_KR": "수도원의 인장", "name_fr_FR": "Chevalière du prieuré", "name_de_DE": "Siegel des Priorats", "name_zh_CN": "隐修院印章", "name_es_ES": "Sello del priorato", "name_ru_RU": "Перстень приората", "name_it_IT": "Anello con Sigillo della Prioria", "name_pt_PT": "Sinete do Priorado", "on_use": true, "id_encounter": 2571, "id_journal_instance": 1267, "id_map": 2649, "instance_type": 1}, {"id": 219309, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Tome of Light's Devotion", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 555491, "buy_price": 2777459, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9726999998092651, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Tome of Light's Devotion", "name_ko_KR": "빛의 헌신의 고서", "name_fr_FR": "Tome de dévotion à la lumière", "name_de_DE": "Foliant der Hingabe des Lichts", "name_zh_CN": "圣光虔敬魔典", "name_es_ES": "Tomo de devoción de la Luz", "name_ru_RU": "Фолиант благочестия Света", "name_it_IT": "Tomo della Devozione alla Luce", "name_pt_PT": "Devoção do Tomo da Luz", "on_use": true, "id_encounter": 2570, "id_journal_instance": 1267, "id_map": 2649, "instance_type": 1}, {"id": 219310, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bursting Lightshard", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 557604, "buy_price": 2788024, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9764000177383423, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Bursting Lightshard", "name_ko_KR": "폭발하는 빛조각", "name_fr_FR": "Fragment de lumière détonant", "name_de_DE": "Explodierender Lichtsplitter", "name_zh_CN": "爆裂圣光碎片", "name_es_ES": "Fragmento de luz detonante", "name_ru_RU": "Взрывающийся осколок Света", "name_it_IT": "Scheggialuce Esplosiva", "name_pt_PT": "Lascaluz Estilhaçante", "on_use": true, "id_encounter": 2573, "id_journal_instance": 1267, "id_map": 2649, "instance_type": 1}, {"id": 219311, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Void Pactstone", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 4, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 559717, "buy_price": 2798589, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9800999760627747, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Void Pactstone", "name_ko_KR": "공허 서약석", "name_fr_FR": "Pierre de pacte du Vide", "name_de_DE": "Leerenpaktstein", "name_zh_CN": "虚空契约石", "name_es_ES": "Piedra del pacto del Vacío", "name_ru_RU": "Камень договора с Бездной", "name_it_IT": "Pietra del Patto del Vuoto", "name_pt_PT": "Pedra-pacto do Caos", "on_use": false, "id_encounter": 2580, "id_journal_instance": 1270, "id_map": 2662, "instance_type": 1}, {"id": 219312, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Empowering Crystal of Anub'ikkaj", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 561773, "buy_price": 2808868, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9836999773979187, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Empowering Crystal of Anub'ikkaj", "name_ko_KR": "아눕이카즈의 강화의 수정", "name_fr_FR": "Cristal de renforcement d’Anub’ikkaj", "name_de_DE": "Ermächtigender Kristall von Anub'ikkaj", "name_zh_CN": "阿努布伊卡基强能水晶", "name_es_ES": "Cristal potenciador de Anub'ikkaj", "name_ru_RU": "Усиливающий кристалл Ануб'иккаджа", "name_it_IT": "Cristallo Potenziante di Anub'ikkaj", "name_pt_PT": "Cristal Potencializador of Anub'ikkaj", "on_use": false, "id_encounter": 2581, "id_journal_instance": 1270, "id_map": 2662, "instance_type": 1}, {"id": 219313, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Mereldar's Toll", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 579020, "buy_price": 2895102, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0139000415802002, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Mereldar's Toll", "name_ko_KR": "메렐다르의 종", "name_fr_FR": "Glas de Mereldar", "name_de_DE": "Mereldars Tribut", "name_zh_CN": "米雷达尔洪钟", "name_es_ES": "Campana de Mereldar", "name_ru_RU": "Благовест Мерельдара", "name_it_IT": "Rintocco di Mereldar", "name_pt_PT": "Dobre de Mereldar", "on_use": true, "id_encounter": 2593, "id_journal_instance": 1270, "id_map": 2662, "instance_type": 1}, {"id": 219314, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ara-Kara Sacbrood", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 581133, "buy_price": 2905667, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0176000595092773, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Ara-Kara Sacbrood", "name_ko_KR": "아라카라 낭충봉아", "name_fr_FR": "Essaim d’œufs d’Ara-Kara", "name_de_DE": "Kokonbrut von Ara-Kara", "name_zh_CN": "艾拉-卡拉卵囊", "name_es_ES": "Saco eclosionador de Ara-Kara", "name_ru_RU": "Кокон выводка Ара-Кары", "name_it_IT": "Sacca della Stirpe di Ara-Kara", "name_pt_PT": "Bolsa de Ninhada Ara-Kara", "on_use": false, "id_encounter": 2583, "id_journal_instance": 1271, "id_map": 2660, "instance_type": 1}, {"id": 219315, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Refracting Aggression Module", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 583246, "buy_price": 2916232, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.021299958229065, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Refracting Aggression Module", "name_ko_KR": "공격성 굴절 모듈", "name_fr_FR": "Module de réfraction des agressions", "name_de_DE": "Aggressionsablenkungsmodul", "name_zh_CN": "折转侵攻模组", "name_es_ES": "Módulo de agresión refractante", "name_ru_RU": "Модуль преломления агрессии", "name_it_IT": "Modulo d'Aggressione Rifrangente", "name_pt_PT": "Módulo de Agressão Refrator", "on_use": false, "id_encounter": 2572, "id_journal_instance": 1269, "id_map": 2652, "instance_type": 1}, {"id": 219316, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ceaseless Swarmgland", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 585302, "buy_price": 2926511, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.024899959564209, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Ceaseless Swarmgland", "name_ko_KR": "멈추지 않는 무리벌레샘", "name_fr_FR": "Glande de l’essaim perpétuel", "name_de_DE": "Endlose Schwarmdrüse", "name_zh_CN": "无休虫群腺体", "name_es_ES": "Glándula de enjambre incesante", "name_ru_RU": "Железа бесконечного роя", "name_it_IT": "Ghiandola di Sciame Incessante", "name_pt_PT": "Glândula de Enxame Incessante", "on_use": false, "id_encounter": 2584, "id_journal_instance": 1271, "id_map": 2660, "instance_type": 1}, {"id": 219317, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Harvester's Edict", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 587415, "buy_price": 2937076, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0285999774932861, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Harvester's Edict", "name_ko_KR": "수확자의 칙령", "name_fr_FR": "Édit de moissonneur", "name_de_DE": "Edikt des Ernters", "name_zh_CN": "收割者之诏", "name_es_ES": "Edicto de cosechador", "name_ru_RU": "Эдикт жнеца", "name_it_IT": "Editto del Mietitore", "name_pt_PT": "Édito do Ceifador", "on_use": false, "id_encounter": 2585, "id_journal_instance": 1271, "id_map": 2660, "instance_type": 1}, {"id": 219318, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Oppressive Orator's Larynx", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 589528, "buy_price": 2947641, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0322999954223633, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Oppressive Orator's Larynx", "name_ko_KR": "억압적인 웅변가의 후두", "name_fr_FR": "Larynx d’orateur oppresseur", "name_de_DE": "Kehlkopf des oppressiven Orators", "name_zh_CN": "暴虐演说者的喉头", "name_es_ES": "Laringe de orador opresivo", "name_ru_RU": "Гортань гнетущего оратора", "name_it_IT": "Laringe dell'Oratore Opprimente", "name_pt_PT": "Laringe do Orador Opressivo", "on_use": true, "id_encounter": 2594, "id_journal_instance": 1274, "id_map": 2669, "instance_type": 1}, {"id": 219319, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Twin Fang Instruments", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 591641, "buy_price": 2958206, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0360000133514404, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Twin Fang Instruments", "name_ko_KR": "쌍둥이 송곳니 기구", "name_fr_FR": "Instruments à doubles crocs", "name_de_DE": "Doppelfangbesteck", "name_zh_CN": "双牙军械", "name_es_ES": "Instrumentos de colmillos gemelos", "name_ru_RU": "Инструменты сдвоенных клыков", "name_it_IT": "Strumenti delle Zanne Gemelle", "name_pt_PT": "Instrumentos Presas Gêmeas", "on_use": true, "id_encounter": 2595, "id_journal_instance": 1274, "id_map": 2669, "instance_type": 1}, {"id": 219320, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Viscous Coaglam", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 593697, "buy_price": 2968486, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0396000146865845, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Viscous Coaglam", "name_ko_KR": "점성 응집물", "name_fr_FR": "Coaglam visqueux", "name_de_DE": "Zähflüssiges Koaglam", "name_zh_CN": "粘稠聚合物", "name_es_ES": "Coágulo viscoso", "name_ru_RU": "Вязкий сгусток", "name_it_IT": "Amalgama Coagulato Viscoso", "name_pt_PT": "Coágulo Viscoso", "on_use": true, "id_encounter": 2600, "id_journal_instance": 1274, "id_map": 2669, "instance_type": 1}, {"id": 219321, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Cirral Concoctory", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 595810, "buy_price": 2979051, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0433000326156616, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Cirral Concoctory", "name_ko_KR": "구름의 비약", "name_fr_FR": "Concoctoire de Cirral", "name_de_DE": "Rankendes Mixtorium", "name_zh_CN": "卷须调制器", "name_es_ES": "Brebaje cirroso", "name_ru_RU": "Щетинистый котелок", "name_it_IT": "Mistura Cirrale", "name_pt_PT": "Concoctório Cirral", "on_use": false, "id_encounter": 2596, "id_journal_instance": 1274, "id_map": 2669, "instance_type": 1}, {"id": 219672, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Radiance", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 845469, "buy_price": 4227345, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.013800024986267, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Radiance", "name_ko_KR": "다크문 카드 한 벌: 광휘", "name_fr_FR": "Suite de Sombrelune : brillance", "name_de_DE": "Dunkelmondkartenset: Glanz", "name_zh_CN": "暗月套牌:光辉", "name_es_ES": "Colección de la Luna Negra: Resplandor", "name_ru_RU": "Колода карт Новолуния \"Сияние\"", "name_it_IT": "Mazzo della Radiosità di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Resplendor", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219673, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "zzOld Do Not Use (DNT)", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0175000429153442, "flags_1": 80, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "zzOld Do Not Use (DNT)", "name_ko_KR": "zzOld Do Not Use (DNT)", "name_fr_FR": "zzOld Do Not Use (DNT)", "name_de_DE": "zzOld Do Not Use (DNT)", "name_zh_CN": "zzOld Do Not Use (DNT)", "name_es_ES": "zzOld Do Not Use (DNT)", "name_ru_RU": "zzOld Do Not Use (DNT)", "name_it_IT": "zzOld Do Not Use (DNT)", "name_pt_PT": "zzOld Do Not Use (DNT)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219674, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "zzOld Do Not Use (DNT)", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0211000442504883, "flags_1": 80, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "zzOld Do Not Use (DNT)", "name_ko_KR": "zzOld Do Not Use (DNT)", "name_fr_FR": "zzOld Do Not Use (DNT)", "name_de_DE": "zzOld Do Not Use (DNT)", "name_zh_CN": "zzOld Do Not Use (DNT)", "name_es_ES": "zzOld Do Not Use (DNT)", "name_ru_RU": "zzOld Do Not Use (DNT)", "name_it_IT": "zzOld Do Not Use (DNT)", "name_pt_PT": "zzOld Do Not Use (DNT)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219675, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "zzOld Do Not Use (DNT)", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0247999429702759, "flags_1": 80, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "zzOld Do Not Use (DNT)", "name_ko_KR": "zzOld Do Not Use (DNT)", "name_fr_FR": "zzOld Do Not Use (DNT)", "name_de_DE": "zzOld Do Not Use (DNT)", "name_zh_CN": "zzOld Do Not Use (DNT)", "name_es_ES": "zzOld Do Not Use (DNT)", "name_ru_RU": "zzOld Do Not Use (DNT)", "name_it_IT": "zzOld Do Not Use (DNT)", "name_pt_PT": "zzOld Do Not Use (DNT)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219915, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Foul Behemoth's Chelicera", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 832875, "buy_price": 4164377, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0025999546051025, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Foul Behemoth's Chelicera", "name_ko_KR": "부정한 거수의 칼리세라", "name_fr_FR": "Chélicère du béhémoth fétide", "name_de_DE": "Beißwerkzeug des besudelten Behemoths", "name_zh_CN": "邪污巨兽的螫肢", "name_es_ES": "Quelícera de behemoth infecto", "name_ru_RU": "Хелицера гнусного чудища", "name_it_IT": "Chelicera del Behemoth Corrotto", "name_pt_PT": "Quelícera do Beemote Repugnante", "on_use": true, "id_encounter": 2607, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 219916, "race_mask": 18446744073709551615, "desc": "A symbol of adventure, discovery, and camaraderie. Intrusted to you by Brann Bronzebeard himself.", "pad2": "", "pad1": "", "pad0": "", "name": "Bronzebeard Family Compass", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0062999725341797, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 597, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 5, "name_en_US": "Bronzebeard Family Compass", "name_ko_KR": "브론즈비어드 가문 나침반", "name_fr_FR": "Boussole de la famille Barbe-de-Bronze", "name_de_DE": "Kompass der Familie Bronzebart", "name_zh_CN": "铜须家传罗盘", "name_es_ES": "Brújula de la familia Barbabronce", "name_ru_RU": "Фамильный компас Бронзобородов", "name_it_IT": "Bussola di Famiglia dei Barbabronzea", "name_pt_PT": "Bússola da Família Barbabronze", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219917, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Creeping Coagulum", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 839022, "buy_price": 4195113, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0099999904632568, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Creeping Coagulum", "name_ko_KR": "엄습하는 응혈", "name_fr_FR": "Coagulation rampante", "name_de_DE": "Kriechendes Koagulum", "name_zh_CN": "蠕行凝块", "name_es_ES": "Coágulo reptante", "name_ru_RU": "Ползучий коагулят", "name_it_IT": "Coagulo Strisciante", "name_pt_PT": "Coágulo Crescente", "on_use": true, "id_encounter": 2611, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 219931, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Algari Competitor's Medallion", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 474, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 450508, "buy_price": 2252540, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9878000020980835, "flags_1": 0, "flags_2": 24576, "flags_3": 0, "flags_4": 50331648, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Algari Competitor's Medallion", "name_ko_KR": "알가르 경쟁자의 메달", "name_fr_FR": "Médaillon de compétition algari", "name_de_DE": "Medaillon des Algariwettkämpfers", "name_zh_CN": "阿加竞争者的勋章", "name_es_ES": "Medallón de competidor algariano", "name_ru_RU": "Медальон алгарийского бойца", "name_it_IT": "Medaglione del Concorrente Algari", "name_pt_PT": "Medalhão do Competidor Algari", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219932, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Algari Competitor's Insignia of Alacrity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 516794, "buy_price": 2583970, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9915000200271606, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Algari Competitor's Insignia of Alacrity", "name_ko_KR": "알가르 경쟁자의 기민 계급장", "name_fr_FR": "Insigne d’empressement de compétition algari", "name_de_DE": "Inbrunstinsigne des Algariwettkämpfers", "name_zh_CN": "阿加竞争者的活跃徽记", "name_es_ES": "Insignia de prontitud de competidor algariano", "name_ru_RU": "Знак расторопности алгарийского бойца", "name_it_IT": "Fregio dell'Alacrità del Concorrente Algari", "name_pt_PT": "Insígnia de Diligência do Competidor Algari", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 219933, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Algari Competitor's Emblem", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 6666, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": 71, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 518671, "buy_price": 2593355, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9951000213623047, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 16777216, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 1458, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Algari Competitor's Emblem", "name_ko_KR": "알가르 경쟁자의 문장", "name_fr_FR": "Emblème de compétition algari", "name_de_DE": "Emblem des Algariherausforderers", "name_zh_CN": "阿加竞争者的纹章", "name_es_ES": "Emblema de competidor algariano", "name_ru_RU": "Эмблема алгарийского бойца", "name_it_IT": "Emblema del Concorrente Algari", "name_pt_PT": "Emblema do Competidor Algari", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 220118, "race_mask": 18446744073709551615, "desc": "When the fuse is lit, consider Sir Demolitions an outsider. - heard in the halls of Lightspark Academy", "pad2": "", "pad1": "", "pad0": "", "name": "Arathi Demolition Charge", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9916999936103821, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 506, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Arathi Demolition Charge", "name_ko_KR": "아라시 폭발물", "name_fr_FR": "Charge explosive arathie", "name_de_DE": "Detonationsladung der Arathi", "name_zh_CN": "阿拉希爆破火药桶", "name_es_ES": "Carga de demolición arathi", "name_ru_RU": "Аратийский заряд взрывчатки", "name_it_IT": "Carica per Demolizione degli Arathi", "name_pt_PT": "Carga de Demolição Arathi", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 220171, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "zzOld Do Not Use (DNT)", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 50000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9656000137329102, "flags_1": 80, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 0, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "zzOld Do Not Use (DNT)", "name_ko_KR": "zzOld Do Not Use (DNT)", "name_fr_FR": "zzOld Do Not Use (DNT)", "name_de_DE": "zzOld Do Not Use (DNT)", "name_zh_CN": "zzOld Do Not Use (DNT)", "name_es_ES": "zzOld Do Not Use (DNT)", "name_ru_RU": "zzOld Do Not Use (DNT)", "name_it_IT": "zzOld Do Not Use (DNT)", "name_pt_PT": "zzOld Do Not Use (DNT)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 220202, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spymaster's Web", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 857630, "buy_price": 4288154, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0324000120162964, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Spymaster's Web", "name_ko_KR": "첩보단장의 거미줄", "name_fr_FR": "Toile de la maîtresse de l’espionnage", "name_de_DE": "Netz des Meisterspions", "name_zh_CN": "间谍大师裹网", "name_es_ES": "Red de maestro de espías", "name_ru_RU": "Тенета мастера шпионажа", "name_it_IT": "Ragnatela del Maestro delle Spie", "name_pt_PT": "Teia da Mestre Espiã", "on_use": true, "id_encounter": 2608, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 220304, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Weathered Northrend Sigil", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 2222, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 6375, "buy_price": 25500, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.965499997138977, "flags_1": 561152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 20, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 2, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Weathered Northrend Sigil", "name_ko_KR": "마모된 노스렌드 인장", "name_fr_FR": "Sceau du Norfendre usé", "name_de_DE": "Verwittertes Nordendsiegel", "name_zh_CN": "风化的诺森德纹章", "name_es_ES": "Sigilo de Rasganorte curtido", "name_ru_RU": "Потертая печать Нордскола", "name_it_IT": "Sigillo di Nordania Logoro", "name_pt_PT": "Signo de Nortúndria Desgastado", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 220305, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Ovi'nax's Mercurial Egg", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 805129, "buy_price": 4025647, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9692000150680542, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Ovi'nax's Mercurial Egg", "name_ko_KR": "오비낙스의 변화성 알", "name_fr_FR": "Œuf mercurien d’Ovi’nax", "name_de_DE": "Ovi'nax' quecksilbriges Ei", "name_zh_CN": "欧维纳克斯的嬗变之卵", "name_es_ES": "Huevo volátil de Ovi'nax", "name_ru_RU": "Переменчивое яйцо Ови'накса", "name_it_IT": "Uovo Mercuriale di Ovi'nax", "name_pt_PT": "Ovo Mercurial de Ovi'nax", "on_use": true, "id_encounter": 2612, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 221023, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Treacherous Transmitter", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 36, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 826894, "buy_price": 4134471, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9954000115394592, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Treacherous Transmitter", "name_ko_KR": "위험한 송출기", "name_fr_FR": "Transmetteur traître", "name_de_DE": "Verräterischer Transmitter", "name_zh_CN": "奸邪发射机", "name_es_ES": "Transmisor traicionero", "name_ru_RU": "Вероломный передатчик", "name_it_IT": "Trasmittente Infida", "name_pt_PT": "Transmissor Traiçoeiro", "on_use": true, "id_encounter": 2601, "id_journal_instance": 1273, "id_map": 2657, "instance_type": 2}, {"id": 221233, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Deephunter's Bloody Hook", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576907, "buy_price": 2884537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010200023651123, "flags_1": 134742016, "flags_2": 139264, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Deephunter's Bloody Hook", "name_ko_KR": "심연사냥꾼의 핏빛 갈고리", "name_fr_FR": "Crochet ensanglanté de chasseur des profondeurs", "name_de_DE": "Blutiger Haken des Tiefenjägers", "name_zh_CN": "深渊猎人的殷红肉钩", "name_es_ES": "Garfio sangriento de cazador de lo profundo", "name_ru_RU": "Кровавый крюк глубинного охотника", "name_it_IT": "Gancio Insanguinato del Cacciatore delle Profondità", "name_pt_PT": "Gancho Sangrento do Caçador das Profundezas", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 221263, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Nerubian Venom-Tipped Dart", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 73, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576907, "buy_price": 2884537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9732000231742859, "flags_1": 134742016, "flags_2": 139264, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Nerubian Venom-Tipped Dart", "name_ko_KR": "네루비안 맹독 화살", "name_fr_FR": "Fléchette venimeuse nérubienne", "name_de_DE": "Nerubischer Giftpfeil", "name_zh_CN": "蛛魔淬毒飞镖", "name_es_ES": "Dardo nerubiano de punta envenenada", "name_ru_RU": "Нерубский дротик с отравленным острием", "name_it_IT": "Dardo Avvelenato dei Nerubiani", "name_pt_PT": "Dardo Envenenado Nerubiano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 221264, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fungarian Mystic's Cluster", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576907, "buy_price": 2884537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9768999814987183, "flags_1": 134742016, "flags_2": 139264, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Fungarian Mystic's Cluster", "name_ko_KR": "버섯전사 비술사의 군집체", "name_fr_FR": "Grappe de mystique fongicien", "name_de_DE": "Bündel des Fungianermystikers", "name_zh_CN": "真菌人秘术师的聚簇", "name_es_ES": "Racimo de místico fungárico", "name_ru_RU": "Грибница мистика-грибостража", "name_it_IT": "Aggregato del Fungariano Mistico", "name_pt_PT": "Aglomerado do Místico Fungoriano", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 221265, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Charm of the Underground Beast", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 576907, "buy_price": 2884537, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9805999994277954, "flags_1": 134742016, "flags_2": 139264, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 437, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 3, "name_en_US": "Charm of the Underground Beast", "name_ko_KR": "지하 야수의 부적", "name_fr_FR": "Charme de la bête souterraine", "name_de_DE": "Amulett der Untergrundbestie", "name_zh_CN": "地下野兽护符", "name_es_ES": "Encanto de la bestia del subsuelo", "name_ru_RU": "Талисман подземного чудища", "name_it_IT": "Talismano della Bestia del Sottosuolo", "name_pt_PT": "Patuá da Fera Subterrânea", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222213, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "zzOld Do Not Use (DNT)", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0214999914169312, "flags_1": 80, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 1, "name_en_US": "zzOld Do Not Use (DNT)", "name_ko_KR": "zzOld Do Not Use (DNT)", "name_fr_FR": "zzOld Do Not Use (DNT)", "name_de_DE": "zzOld Do Not Use (DNT)", "name_zh_CN": "zzOld Do Not Use (DNT)", "name_es_ES": "zzOld Do Not Use (DNT)", "name_ru_RU": "zzOld Do Not Use (DNT)", "name_it_IT": "zzOld Do Not Use (DNT)", "name_pt_PT": "zzOld Do Not Use (DNT)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222222, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "zzOld Do Not Use (DNT)", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9810000061988831, "flags_1": 80, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 1, "name_en_US": "zzOld Do Not Use (DNT)", "name_ko_KR": "zzOld Do Not Use (DNT)", "name_fr_FR": "zzOld Do Not Use (DNT)", "name_de_DE": "zzOld Do Not Use (DNT)", "name_zh_CN": "zzOld Do Not Use (DNT)", "name_es_ES": "zzOld Do Not Use (DNT)", "name_ru_RU": "zzOld Do Not Use (DNT)", "name_it_IT": "zzOld Do Not Use (DNT)", "name_pt_PT": "zzOld Do Not Use (DNT)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222231, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "zzOld Do Not Use (DNT)", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0140000581741333, "flags_1": 80, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 1, "name_en_US": "zzOld Do Not Use (DNT)", "name_ko_KR": "zzOld Do Not Use (DNT)", "name_fr_FR": "zzOld Do Not Use (DNT)", "name_de_DE": "zzOld Do Not Use (DNT)", "name_zh_CN": "zzOld Do Not Use (DNT)", "name_es_ES": "zzOld Do Not Use (DNT)", "name_ru_RU": "zzOld Do Not Use (DNT)", "name_it_IT": "zzOld Do Not Use (DNT)", "name_pt_PT": "zzOld Do Not Use (DNT)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222240, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "zzOld Do Not Use (DNT)", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9735000133514404, "flags_1": 80, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 372, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 1, "name_en_US": "zzOld Do Not Use (DNT)", "name_ko_KR": "zzOld Do Not Use (DNT)", "name_fr_FR": "zzOld Do Not Use (DNT)", "name_de_DE": "zzOld Do Not Use (DNT)", "name_zh_CN": "zzOld Do Not Use (DNT)", "name_es_ES": "zzOld Do Not Use (DNT)", "name_ru_RU": "zzOld Do Not Use (DNT)", "name_it_IT": "zzOld Do Not Use (DNT)", "name_pt_PT": "zzOld Do Not Use (DNT)", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222653, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Symbiosis", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 16, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 793012, "buy_price": 3965064, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9509000182151794, "flags_1": 524352, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Symbiosis", "name_ko_KR": "다크문 카드 한 벌: 공생", "name_fr_FR": "Suite de Sombrelune : Symbiose", "name_de_DE": "Dunkelmondkartenset: Symbiose", "name_zh_CN": "暗月套牌:共生", "name_es_ES": "Colección de la Luna Negra: Simbiosis", "name_ru_RU": "Колода карт Новолуния \"Симбиоз\"", "name_it_IT": "Mazzo della Simbiosi di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Simbiose", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222671, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Vivacity", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 16, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 870237, "buy_price": 4351188, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0434999465942383, "flags_1": 525376, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Vivacity", "name_ko_KR": "다크문 카드 한 벌: 생기", "name_fr_FR": "Suite de Sombrelune : Vivacité", "name_de_DE": "Dunkelmondkartenset: Lebhaftigkeit", "name_zh_CN": "暗月套牌:盎溢", "name_es_ES": "Colección de la Luna Negra: Vivacidad", "name_ru_RU": "Колода карт Новолуния \"Бодрость\"", "name_it_IT": "Mazzo della Vivacità di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Vivacidade", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 222680, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Darkmoon Deck: Ascension", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 16, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 836462, "buy_price": 4182311, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003000020980835, "flags_1": 525376, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 577, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 7, "page_mat": 0, "bonding": 2, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 4, "name_en_US": "Darkmoon Deck: Ascension", "name_ko_KR": "다크문 카드 한 벌: 승천", "name_fr_FR": "Suite de Sombrelune : Sublimation", "name_de_DE": "Dunkelmondkartenset: Aszendenz", "name_zh_CN": "暗月套牌:扬升", "name_es_ES": "Colección de la Luna Negra: Ascensión", "name_ru_RU": "Колода карт Новолуния \"Вознесение\"", "name_it_IT": "Mazzo dell'Ascensione di Lunacupa", "name_pt_PT": "Baralho de Negraluna: Ascensão", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223507, "race_mask": 18446744073709551615, "desc": "A good Alliance soldier is always on time.", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Pocket Watch", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 345532, "buy_price": 1727662, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9879999756813049, "flags_1": 557056, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 223508, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Recruit's Pocket Watch", "name_ko_KR": "훈련생용 회중시계", "name_fr_FR": "Montre de gousset de recrue", "name_de_DE": "Taschenuhr des Rekruten", "name_zh_CN": "新兵的怀表", "name_es_ES": "Reloj de bolsillo de recluta", "name_ru_RU": "Карманные часы новобранца", "name_it_IT": "Orologio da Tasca della Recluta", "name_pt_PT": "Relógio de Bolso de Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223508, "race_mask": 18446744073709551615, "desc": "Blades, tusks, nails. Everything needs a good sharpening.", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Whetstone", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 356094, "buy_price": 1780471, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0182000398635864, "flags_1": 557056, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 223507, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Recruit's Whetstone", "name_ko_KR": "훈련생용 숫돌", "name_fr_FR": "Pierre à aiguiser de recrue", "name_de_DE": "Schleifstein des Rekruten", "name_zh_CN": "新兵的磨石", "name_es_ES": "Piedra de afilar de recluta", "name_ru_RU": "Точильный камень новобранца", "name_it_IT": "Cote della Recluta", "name_pt_PT": "Pedra de Amolar de Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223509, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shriveled Ancient Tentacle", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 108030, "buy_price": 432121, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219000577926636, "flags_1": 561152, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 30, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 4, "name_en_US": "Shriveled Ancient Tentacle", "name_ko_KR": "쪼그라든 고대 촉수", "name_fr_FR": "Tentacule antique flétri", "name_de_DE": "Verschrumpelter antiker Tentakel", "name_zh_CN": "干瘪的上古触须", "name_es_ES": "Tentáculo ancestral marchito", "name_ru_RU": "Иссохшее древнее щупальце", "name_it_IT": "Tentacolo Antico Raggrinzito", "name_pt_PT": "Tentáculo Ancestral Encolhido", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223513, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Faded Ebony Scale", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 362529, "buy_price": 1812646, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0365999937057495, "flags_1": 561152, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Faded Ebony Scale", "name_ko_KR": "흐릿한 칠흑빛 비늘", "name_fr_FR": "Écaille d’ébène passée", "name_de_DE": "Verblasste kohlschwarze Schuppe", "name_zh_CN": "褪色乌鳞", "name_es_ES": "Escama de ébano desvanecida", "name_ru_RU": "Потускневшая черная чешуйка", "name_it_IT": "Scaglia d'Ebano Scomparsa", "name_pt_PT": "Escama de Ébano Desvanecida", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223516, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Trumpet", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 366376, "buy_price": 1831881, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0476000308990479, "flags_1": 557056, "flags_2": 8194, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 223517, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Recruit's Trumpet", "name_ko_KR": "훈련생용 트럼펫", "name_fr_FR": "Trompette de recrue", "name_de_DE": "Trompete des Rekruten", "name_zh_CN": "新兵的小号", "name_es_ES": "Trompeta de recluta", "name_ru_RU": "Труба новобранца", "name_it_IT": "Tromba della Recluta", "name_pt_PT": "Trompete de Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 223517, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Recruit's Warhorn", "id_expansion": -3, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 332662, "buy_price": 1663312, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.951200008392334, "flags_1": 557056, "flags_2": 8193, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 223516, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 10, "inv_type": 12, "quality": 3, "name_en_US": "Recruit's Warhorn", "name_ko_KR": "훈련생용 전쟁 뿔피리", "name_fr_FR": "Cor de guerre de recrue", "name_de_DE": "Kriegshorn des Rekruten", "name_zh_CN": "新兵的军号", "name_es_ES": "Cuerno de guerra de recluta", "name_ru_RU": "Боевой рог новобранца", "name_it_IT": "Corno da Guerra della Recluta", "name_pt_PT": "Trompa de Guerra de Recruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 224161, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Stormrider Flight Badge", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9735000133514404, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 545, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Stormrider Flight Badge", "name_ko_KR": "폭풍기수 비행 휘장", "name_fr_FR": "Insigne de vol de chevaucheur de tempête", "name_de_DE": "Sturmreiterflugabzeichen", "name_zh_CN": "驭雷者的飞行徽章", "name_es_ES": "Distintivo de vuelo de jinete de la tormenta", "name_ru_RU": "Летный жетон странника бурь", "name_it_IT": "Distintivo di Volo del Cavalcatempesta", "name_pt_PT": "Distintivo de Voo do Cavalgaventos", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 224449, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Fearbreaker's Echo", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0068999528884888, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 200, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 1, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Fearbreaker's Echo", "name_ko_KR": "공포파괴자의 메아리", "name_fr_FR": "Écho du Brise-peur", "name_de_DE": "Furchtbrechers Echo", "name_zh_CN": "碎惧者的回响", "name_es_ES": "Eco de Domamiedo", "name_ru_RU": "Эхо Страхобоя", "name_it_IT": "Eco di Spezzapaura", "name_pt_PT": "Eco do Quebra-medo", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225638, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Spelunker's Waning Candle", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 593585, "buy_price": 2967925, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0292999744415283, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 8, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Spelunker's Waning Candle", "name_ko_KR": "동굴탐험가의 줄어드는 양초", "name_fr_FR": "Bougie mourante de spéléologue", "name_de_DE": "Schwindende Kerze des Höhlenforschers", "name_zh_CN": "探洞者的蜡烛残端", "name_es_ES": "Vela menguante de espeleólogo", "name_ru_RU": "Угасающая свеча спелеолога", "name_it_IT": "Candela Consumata dello Speleologo", "name_pt_PT": "Vela Minguante do Espeleologista", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225647, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shining Arathor Insignia", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9887999892234802, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Shining Arathor Insignia", "name_ko_KR": "빛나는 아라소르 휘장", "name_fr_FR": "Insigne éclatant d’Arathor", "name_de_DE": "Leuchtende Arathorinsignie", "name_zh_CN": "闪耀的阿拉索徽记", "name_es_ES": "Insignia de Arathor brillante", "name_ru_RU": "Сияющий араторский знак отличия", "name_it_IT": "Fregio Lucente di Arathor", "name_pt_PT": "Insígnia de Arathor Rutilante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225648, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Candle Confidant", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9925000071525574, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Candle Confidant", "name_ko_KR": "양초 친구", "name_fr_FR": "Confident bougie", "name_de_DE": "Kerzenvertrauter", "name_zh_CN": "烛友", "name_es_ES": "Confidente de vela", "name_ru_RU": "Свечной ассистент", "name_it_IT": "Confidente Candeloso", "name_pt_PT": "Confidente de Vela", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225649, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Quickwick Candlestick", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 0, "buy_price": 0, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9961000084877014, "flags_1": 589888, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Quickwick Candlestick", "name_ko_KR": "날렵심지 양초막대", "name_fr_FR": "Bougeoir mèchevive", "name_de_DE": "Schnelldochtkerzenhalter", "name_zh_CN": "迅芯烛台", "name_es_ES": "Palmatoria de Mechaveloz", "name_ru_RU": "Подсвечник быстросвеча", "name_it_IT": "Candela di Micciaspiccia", "name_pt_PT": "Candelabro Paviligeiro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225651, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Kaheti Shadeweaver's Emblem", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 656653, "buy_price": 3283269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003499984741211, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Kaheti Shadeweaver's Emblem", "name_ko_KR": "카테히 암흑술사의 문장", "name_fr_FR": "Emblème de tissombre kaheti", "name_de_DE": "Emblem der Schattenweberin der Kaheti", "name_zh_CN": "卡赫提织影者的纹章", "name_es_ES": "Emblema de tejesombras kaheti", "name_ru_RU": "Эмблема кахети-тенеплета", "name_it_IT": "Emblema del Tessiombre Kaheti", "name_pt_PT": "Emblema do Criassombras Kaheti", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225653, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Siphoning Lightbrand", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0108000040054321, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Siphoning Lightbrand", "name_ko_KR": "흡수의 빛낙인", "name_fr_FR": "Marque de lumière de siphonnage", "name_de_DE": "Entziehendes Lichtbrandzeichen", "name_zh_CN": "虹吸光印", "name_es_ES": "Marca de luz succionadora", "name_ru_RU": "Иссушающее клеймо Света", "name_it_IT": "Marchio di Luce del Prosciugamento", "name_pt_PT": "Marca da Luz Drenante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225654, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Imperfect Ascendancy Serum", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 3333, "stat_alloc_2": 3333, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": 36, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0145000219345093, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Imperfect Ascendancy Serum", "name_ko_KR": "불완전한 승천 혈청", "name_fr_FR": "Sérum de Sublimation imparfait", "name_de_DE": "Imperfektes Aufstiegsserum", "name_zh_CN": "不完美的扬升血清", "name_es_ES": "Suero de elevación imperfecto", "name_ru_RU": "Несовершенная сыворотка вознесения", "name_it_IT": "Siero dell'Ascendenza Imperfetta", "name_pt_PT": "Soro de Ascendência Imperfeito", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225656, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Goldenglow Censer", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 68981, "buy_price": 137962, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0219000577926636, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Goldenglow Censer", "name_ko_KR": "황금광채 향로", "name_fr_FR": "Encensoir lumaurique", "name_de_DE": "Goldleuchten-Weihrauchschwenker", "name_zh_CN": "金辉香炉", "name_es_ES": "Incensario de brillo dorado", "name_ru_RU": "Кадильница золотого сияния", "name_it_IT": "Incensiere di Luce Dorata", "name_pt_PT": "Incensário Brilhodouro", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225657, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Detachable Fang", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0255000591278076, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Detachable Fang", "name_ko_KR": "탈착식 송곳니", "name_fr_FR": "Croc amovible", "name_de_DE": "Abnehmbarer Zahn", "name_zh_CN": "可拆卸的獠牙", "name_es_ES": "Colmillo desmontable", "name_ru_RU": "Съемный клык", "name_it_IT": "Zanna Staccabile", "name_pt_PT": "Presa Removível", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225668, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Unstable Power Suit Core", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 656653, "buy_price": 3283269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9922999739646912, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Unstable Power Suit Core", "name_ko_KR": "불안정한 동력복 핵", "name_fr_FR": "Noyau de combinaison de puissance instable", "name_de_DE": "Instabiler Machtanzugkern", "name_zh_CN": "不稳定的能量装甲核心", "name_es_ES": "Núcleo de traje de poder inestable", "name_ru_RU": "Нестабильный сердечник экзоскелета", "name_it_IT": "Nucleo di Armatura del Potere Instabile", "name_pt_PT": "Núcleo de Supertraje Instável", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225669, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Brute Force Idol", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9959999918937683, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Brute Force Idol", "name_ko_KR": "괴력의 우상", "name_fr_FR": "Idole de force brute", "name_de_DE": "Götze der brutalen Kraft", "name_zh_CN": "蛮力神像", "name_es_ES": "Ídolo de fuerza bruta", "name_ru_RU": "Идол грубой силы", "name_it_IT": "Idolo della Forza Bruta", "name_pt_PT": "Ídolo da Força Bruta", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225682, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Time Lost Relic", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9702000021934509, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Time Lost Relic", "name_ko_KR": "잊힌 세월의 유물", "name_fr_FR": "Relique perdue dans le temps", "name_de_DE": "Zeitverlorenes Relikt", "name_zh_CN": "迷时圣物", "name_es_ES": "Reliquia de tiempo perdido", "name_ru_RU": "Затерянная во времени реликвия", "name_it_IT": "Reliquia del Tempo Perduto", "name_pt_PT": "Relíquia Perdida no Tempo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225683, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Grasping Necrotic Relic", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.973800003528595, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Grasping Necrotic Relic", "name_ko_KR": "휘감는 괴저의 유물", "name_fr_FR": "Relique de saisie nécrotique", "name_de_DE": "Greifendes Relikt der Nekrotischen Fäulnis", "name_zh_CN": "贪念通灵圣物", "name_es_ES": "Reliquia necrótica aferrante", "name_ru_RU": "Реликвия некротической хватки", "name_it_IT": "Reliquia Necrotica Ghermitrice", "name_pt_PT": "Relíquia Necrótica Agarrante", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225684, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relicblood of Zekvir", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9775000214576721, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Relicblood of Zekvir", "name_ko_KR": "제크비르의 성혈", "name_fr_FR": "Relique sanguinaire de Zekvir", "name_de_DE": "Reliktblut von Zekvir", "name_zh_CN": "泽克维尔的残血", "name_es_ES": "Reliquia de sangre de Zekvir", "name_ru_RU": "Древняя кровь Зеквира", "name_it_IT": "Reliquia di Sangue di Zekvir", "name_pt_PT": "Relíquia Sanguínea de Zekvir", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225685, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Relic of Sentience", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9811999797821045, "flags_1": 524368, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 250, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Relic of Sentience", "name_ko_KR": "인지의 성물", "name_fr_FR": "Relique de sentience", "name_de_DE": "Relikt der Empfindungsfähigkeit", "name_zh_CN": "知觉圣物", "name_es_ES": "Reliquia de consciencia", "name_ru_RU": "Реликвия разума", "name_it_IT": "Reliquia della Senzienza", "name_pt_PT": "Relíquia de Senciência", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225693, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Shadowed Essence", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 0, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": -1, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 612728, "buy_price": 3063643, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.010599970817566, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 571, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 3, "name_en_US": "Shadowed Essence", "name_ko_KR": "어둠에 물든 정수", "name_fr_FR": "Essence ombreuse", "name_de_DE": "Schattige Essenz", "name_zh_CN": "缀影精华", "name_es_ES": "Esencia ensombrecida", "name_ru_RU": "Затененная сущность", "name_it_IT": "Essenza Adombrata", "name_pt_PT": "Essência Sombria", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225891, "race_mask": 18446744073709551615, "desc": "The vial shimmers, brought to life by forgotten magics. Its intent, to harm. Its contents, a potent curative.", "pad2": "", "pad1": "", "pad0": "", "name": "Vile Vial of Kaheti Bile", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 656653, "buy_price": 3283269, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9812999963760376, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 80, "inv_type": 12, "quality": 2, "name_en_US": "Vile Vial of Kaheti Bile", "name_ko_KR": "카헤티 담즙이 든 더러운 병", "name_fr_FR": "Fiole infâme de bile kaheti", "name_de_DE": "Üble Phiole voll Kahetigalle", "name_zh_CN": "一瓶肮脏的卡赫提胆汁", "name_es_ES": "Vial vil de bilis kaheti", "name_ru_RU": "Омерзительный флакон кахетской желчи", "name_it_IT": "Fiala Vile di Bile dei Kaheti", "name_pt_PT": "Ampola Torpe de Bile Kaheti", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 225970, "race_mask": 18446744073709551615, "desc": "He was probably done with it.", "pad2": "", "pad1": "", "pad0": "", "name": "Nizrek's Holographic Manipulator", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 464039, "buy_price": 2320196, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.003600001335144, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 70, "inv_type": 12, "quality": 2, "name_en_US": "Nizrek's Holographic Manipulator", "name_ko_KR": "니즈레크의 홀로그램 조작 장치", "name_fr_FR": "Manipulateur holographique de Nizrek", "name_de_DE": "Nizreks holografischer Manipulator", "name_zh_CN": "尼兹雷克的全息影像操纵器", "name_es_ES": "Manipulador holográfico de Nizrek", "name_ru_RU": "Манипулятор голограмм Низрека", "name_it_IT": "Manipolatore Olografico di Nizrek", "name_pt_PT": "Manipulador Holográfico de Nizrek", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 226166, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Message-Imprinted Silken Square", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0405999422073364, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 506, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 58, "inv_type": 12, "quality": 2, "name_en_US": "Message-Imprinted Silken Square", "name_ko_KR": "전언 각인 비단 광장", "name_fr_FR": "Carré de soie à message imprimé", "name_de_DE": "Seideneinstecktuch mit eingeprägter Botschaft", "name_zh_CN": "刻印了信息的丝绸方巾", "name_es_ES": "Cuadrado de seda con mensaje impreso", "name_ru_RU": "Шелковый платок с отпечатавшимся посланием", "name_it_IT": "Piazza della Seta con Messaggio Stampato", "name_pt_PT": "Quadrado Sedoso Marcado com Mensagem", "on_use": true, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 226521, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Reinforced-Wax Plating", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0257999897003174, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Reinforced-Wax Plating", "name_ko_KR": "강화 밀랍 장갑판", "name_fr_FR": "Blindage en cire renforcée", "name_de_DE": "Verstärkte Wachspanzerung", "name_zh_CN": "蜡油加固装甲", "name_es_ES": "Blindaje de cera reforzado", "name_ru_RU": "Защита из укрепленного воска", "name_it_IT": "Rivestimento di Cera Rinforzato", "name_pt_PT": "Revestimento de Cera Reforçada", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 226539, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Scroll of Momentum", "id_expansion": 10, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 3, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 532442, "buy_price": 2662214, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0183000564575195, "flags_1": 524352, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 400, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 68, "inv_type": 12, "quality": 2, "name_en_US": "Scroll of Momentum", "name_ko_KR": "가속도의 두루마리", "name_fr_FR": "Parchemin d’inertie", "name_de_DE": "Schriftrolle des Momentums", "name_zh_CN": "势能卷轴", "name_es_ES": "Pergamino de inercia", "name_ru_RU": "Свиток импульса", "name_it_IT": "Pergamena dell'Impeto", "name_pt_PT": "Pergaminho de Impulso", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 231414, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Force of Will", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 863046, "buy_price": 4315232, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0298999547958374, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Force of Will", "name_ko_KR": "의지의 힘", "name_fr_FR": "Force de volonté", "name_de_DE": "Willensstärke", "name_zh_CN": "意志之力", "name_es_ES": "Fuerza de voluntad", "name_ru_RU": "Сила воли", "name_it_IT": "Forza di Volontà", "name_pt_PT": "Força de Vontade", "on_use": false, "id_encounter": 2668, "id_journal_instance": 1301, "id_map": 2792, "instance_type": 2}, {"id": 231417, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Hand of Justice", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9674000144004822, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Hand of Justice", "name_ko_KR": "정의의 손길", "name_fr_FR": "Main de justice", "name_de_DE": "Hand der Gerechtigkeit", "name_zh_CN": "正义之手", "name_es_ES": "Mano de la Justicia", "name_ru_RU": "Рука правосудия", "name_it_IT": "Mano della Giustizia", "name_pt_PT": "Mão da Justiça", "on_use": false, "id_encounter": 2670, "id_journal_instance": 1301, "id_map": 2792, "instance_type": 2}, {"id": 231420, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Second Wind", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9783999919891357, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Second Wind", "name_ko_KR": "재기의 바람", "name_fr_FR": "Second souffle", "name_de_DE": "Kräfte sammeln", "name_zh_CN": "复苏之风", "name_es_ES": "Segundo aliento", "name_ru_RU": "Второе дыхание", "name_it_IT": "Aria di Sfida", "name_pt_PT": "Fôlego Renovado", "on_use": true, "id_encounter": 2666, "id_journal_instance": 1301, "id_map": 2792, "instance_type": 2}, {"id": 231424, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Burst of Knowledge", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 49, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9930999875068665, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Burst of Knowledge", "name_ko_KR": "지식의 홍수", "name_fr_FR": "Bijou de connaissance", "name_de_DE": "Explosion des Wissens", "name_zh_CN": "学识爆发", "name_es_ES": "Ráfaga de conocimiento", "name_ru_RU": "Амулет Озарения", "name_it_IT": "Scarica di Conoscenza", "name_pt_PT": "Explosão de Conhecimento", "on_use": true, "id_encounter": 2669, "id_journal_instance": 1301, "id_map": 2792, "instance_type": 2}, {"id": 231456, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Heart of Roccor", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 32, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9634000062942505, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Heart of Roccor", "name_ko_KR": "록코르의 심장", "name_fr_FR": "Cœur de Roccor", "name_de_DE": "Herz von Roccor", "name_zh_CN": "洛考尔之心", "name_es_ES": "Corazón de Roccor", "name_ru_RU": "Сердце Роккора", "name_it_IT": "Cuore di Roccor", "name_pt_PT": "Coração de Pétror", "on_use": false, "id_encounter": 2663, "id_journal_instance": 1301, "id_map": 2792, "instance_type": 2}, {"id": 231457, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Bottled Magma", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9671000242233276, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Bottled Magma", "name_ko_KR": "병에 담긴 용암", "name_fr_FR": "Magma en bouteille", "name_de_DE": "Abgefülltes Magma", "name_zh_CN": "瓶装岩浆", "name_es_ES": "Magma embotellado", "name_ru_RU": "Бутылка с магмой", "name_it_IT": "Magma Imbottigliato", "name_pt_PT": "Magma Engarrafado", "on_use": false, "id_encounter": 2663, "id_journal_instance": 1301, "id_map": 2792, "instance_type": 2}, {"id": 231462, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Molten Furnace", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 40, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 825839, "buy_price": 4129198, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9854999780654907, "flags_1": 524288, "flags_2": 8192, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Molten Furnace", "name_ko_KR": "용암 가열로", "name_fr_FR": "Fournaise en fusion", "name_de_DE": "Geschmolzener Ofen", "name_zh_CN": "熔火锻炉", "name_es_ES": "Horno de magma", "name_ru_RU": "Расплавленный горн", "name_it_IT": "Fornace Fusa", "name_pt_PT": "Fornalha Derretida", "on_use": true, "id_encounter": 2664, "id_journal_instance": 1301, "id_map": 2792, "instance_type": 2}, {"id": 231471, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Golem Gearbox", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 72, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 1.0449999570846558, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Golem Gearbox", "name_ko_KR": "골렘 기어박스", "name_fr_FR": "Boîte à outils de golem", "name_de_DE": "Golemgetriebe", "name_zh_CN": "傀儡齿轮箱", "name_es_ES": "Caja mecanizada de gólem", "name_ru_RU": "Редуктор голема", "name_it_IT": "Golem in Scatola", "name_pt_PT": "Caixa de Câmbio de Golem", "on_use": false, "id_encounter": 2666, "id_journal_instance": 1301, "id_map": 2792, "instance_type": 2}, {"id": 231476, "race_mask": 18446744073709551615, "desc": "Dope'rel gave these runes to the caster members of the Seven to setup ambushes.", "pad2": "", "pad1": "", "pad0": "", "name": "Dope'rel's Calling Rune", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6666, "stat_alloc_2": 0, "stat_alloc_3": 0, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 5, "stat_type_2": -1, "stat_type_3": -1, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 10000, "buy_price": 40000, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9632999897003174, "flags_1": 524288, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 584, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 4, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 22, "inv_type": 12, "quality": 4, "name_en_US": "Dope'rel's Calling Rune", "name_ko_KR": "최면의 문지기의 부름의 룬", "name_fr_FR": "Rune d’appel de Demeu’rel", "name_de_DE": "Trott'rels Rufrune", "name_zh_CN": "多普雷尔的召唤符文", "name_es_ES": "Runa invocadora de Drog'rel", "name_ru_RU": "Руна призыва Радо'рела", "name_it_IT": "Runa del Richiamo di Celen'rel", "name_pt_PT": "Runa do Chamado de Droga-rel", "on_use": false, "id_encounter": 2667, "id_journal_instance": 1301, "id_map": 2792, "instance_type": 2}, {"id": 232346, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Creche-Waker's Figurine", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": 36, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.9855999946594238, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 206, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Creche-Waker's Figurine", "name_ko_KR": "요람을 깨우는 자의 조각상", "name_fr_FR": "Figurine de réveille-couvoir", "name_de_DE": "Figur des Hortweckers", "name_zh_CN": "育幼所苏醒者的雕像", "name_es_ES": "Figurilla de despiertanidos", "name_ru_RU": "Статуэтка пробудившегося в колыбели", "name_it_IT": "Statuetta del Risveglio dell'Asilo", "name_pt_PT": "Estatueta do Avivador do Abrigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}, {"id": 232347, "race_mask": 18446744073709551615, "desc": "", "pad2": "", "pad1": "", "pad0": "", "name": "Creche-Waker's Insignia", "id_expansion": 0, "dmg_range": 0.0, "item_limit_category": 0, "duration": 0, "item_damage_modifier": 0.0, "bag_family": 0, "start_quest": 0, "id_lang": 0, "ranged_mod_range": 0.0, "stat_socket_mul_1": 0.0, "stat_socket_mul_2": 0.0, "stat_socket_mul_3": 0.0, "stat_socket_mul_4": 0.0, "stat_socket_mul_5": 0.0, "stat_socket_mul_6": 0.0, "stat_socket_mul_7": 0.0, "stat_socket_mul_8": 0.0, "stat_socket_mul_9": 0.0, "stat_socket_mul_10": 0.0, "stat_alloc_1": 6667, "stat_alloc_2": 0, "stat_alloc_3": 6667, "stat_alloc_4": 0, "stat_alloc_5": 0, "stat_alloc_6": 0, "stat_alloc_7": 0, "stat_alloc_8": 0, "stat_alloc_9": 0, "stat_alloc_10": 0, "stat_type_1": 71, "stat_type_2": -1, "stat_type_3": 32, "stat_type_4": -1, "stat_type_5": -1, "stat_type_6": -1, "stat_type_7": -1, "stat_type_8": -1, "stat_type_9": -1, "stat_type_10": -1, "stackable": 1, "max_count": 0, "req_rep_rank": 0, "req_spell": 0, "sell_price": 1, "buy_price": 3, "vendor_stack": 1, "unk_2": 1.0, "unk_1": 0.989300012588501, "flags_1": 557056, "flags_2": 24576, "flags_3": 0, "flags_4": 0, "flags_5": 0, "faction_conv_id": 0, "id_modified_crafting_reagent_item": 0, "id_content_tuning": 0, "id_curve": 0, "id_name_desc": 0, "id_xmog_holiday": 0, "id_holiday": 0, "gem_props": 0, "socket_bonus": 0, "totem_category": 0, "map": 0, "area_1": 0, "area_2": 0, "item_set": 0, "id_lock": 0, "id_page": 0, "delay": 0, "req_rep_faction": 0, "req_skill_rank": 0, "req_skill": 0, "ilevel": 206, "class_mask": 65535, "id_artifact": 0, "unk_6": 0, "unk_7": 0, "socket_color_1": 0, "socket_color_2": 0, "socket_color_3": 0, "sheath": 0, "material": 5, "page_mat": 0, "bonding": 1, "damage_type": 0, "container_slots": 0, "unk_5": 0, "unk_4": 0, "req_level": 1, "inv_type": 12, "quality": 2, "name_en_US": "Creche-Waker's Insignia", "name_ko_KR": "요람을 깨우는 자의 휘장", "name_fr_FR": "Insigne de réveille-couvoir", "name_de_DE": "Insigne des Hortweckers", "name_zh_CN": "育幼所苏醒者的徽章", "name_es_ES": "Insignia de despiertanidos", "name_ru_RU": "Знак различия пробудившегося в колыбели", "name_it_IT": "Fregio del Risveglio dell'Asilo", "name_pt_PT": "Insígnia do Avivador do Abrigo", "on_use": false, "id_encounter": null, "id_journal_instance": null, "id_map": null, "instance_type": null}] \ No newline at end of file diff --git a/simc_support/update/trinkets.py b/simc_support/update/trinkets.py index e603122..3f69310 100644 --- a/simc_support/update/trinkets.py +++ b/simc_support/update/trinkets.py @@ -141,11 +141,11 @@ def combine_into_json(self, data: typing.Dict[str, LOCALE_TABLES]) -> None: if isinstance(effect["id_parent"], int): if effect["id_parent"] in itemxitemeffects: itemxitemeffects[effect["id_parent"]].append( - itemeffects[effect["id_item_effect"]][0] + itemeffects.get(effect["id_item_effect"], [-1])[0] ) else: itemxitemeffects[effect["id_parent"]] = [ - itemeffects[effect["id_item_effect"]][0] + itemeffects.get(effect["id_item_effect"], [-1])[0] ] logger.info("id_dict: JournalEncounterItem")